@import url(flaticon.css);
@import url(bootstrap.min.css);
@import url(main-support.css);
@import url(swiper-bundle.min.css);
@import url(support.css);
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --main-color: #4e7661;
    --font: 'Urbanist', sans-serif;
    --font-weight: 400;
    --black: #000000;
    --white: #ffffff;
    --text: #7e7e7e;
    --transition: .3s ease-in-out;
}

body {
    overflow-x: hidden;
}

.visibleMobile {
    display: none;
}

.visibleDestop {
    display: block;
}

.primaryButton {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 25px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: var(--main-color);
    border: 1px solid transparent;
    font-size: 1rem;
    line-height: 1.65;
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;

}

.primaryButton:hover {
    color: var(--text);
    transition: var(--transition);
}

.buttonDark {
    background: var(--black);
    color: var(--white);
}

.buttonDark:hover {
    background: var(--main-color);
    color: var(--white);
    transition: var(--transition);
}

.buttonLight {
    background: var(--white);
    color: var(--black);
}

.buttonLight:hover {
    background: var(--black);
    color: var(--white);
    transition: var(--transition);
}

.buttonDelete {
    background: #e32b2b !important;
    color: var(--white) !important;
}

.buttonDelete:hover {
    background: #d51717 !important;
    color: var(--white) !important;
    transition: var(--transition) !important;
}

.buttonBuyying {
    background: #FF7F00 !important;
    color: var(--white) !important;
}

.buttonDelete:hover {
    background: #cc6a09 !important;
    color: var(--white) !important;
    transition: var(--transition) !important;
}

.innerTitle {
    color: var(--black);
    font-weight: 600;
    font-size: 40px;
    width: 100%;
    text-align: center;
}

.innerText {
    color: var(--text);
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    text-align: center;
}

@media only screen and (min-width: 900px) {
    .innerText {
        width: 60%;
    }
}

@media only screen and (min-width: 1100px) {
    .innerText {
        width: 50%;
    }
}

@media only screen and (min-width: 1300px) {
    .innerText {
        width: 40%;
    }
}

@media only screen and (min-width: 1400px) {
    .innerText {
        width: 35%;
    }
}

body {
    font-family: var(--font);
    font-weight: var(--font-weight);
}

.headerTopArea {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    background: var(--main-color);
    height: 40px;
    color: #fff;
}

.headerBodyAreaMenu {
    display: flex;
}

.headerBodyAreaMenu > ul {
    padding: 0;
    margin: 0;
    display: flex;
}

.headerBodyAreaMenu > ul > li {
    position: relative;
    list-style-type: none;
    padding: 0;
    margin: 0;
    padding: 2.5rem 1.5rem;
}

.headerBodyAreaMenu > ul > li > a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: black;
    letter-spacing: .1em;
    text-decoration: none;
    position: relative;
}

.headerBodyAreaMenu > ul > li > a.subMenu::after {
    display: inline-block;
    margin-left: 0.25rem;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;

}

.headerBodyAreaMenu > ul > li > a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 1px;
    width: 0;
    background: black;
    transition: var(--transition);
}

.headerBodyAreaMenu > ul > li:hover > a::before {
    width: 100%;
    transition: var(--transition);
}

.headerBodyAreaMenu > ul > li > ul {
    position: absolute;
    margin-top: 3.5rem;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    z-index: 99;
    min-width: 240px;
    visibility: hidden;
    opacity: 0;
    background: #fff;
}

.headerBodyAreaMenu > ul > li:hover > ul {
    visibility: visible;
    opacity: 1;
    transition: var(--transition);
    margin-top: 2.5rem;
}

.headerBodyAreaMenu > ul > li > ul li {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.headerBodyAreaMenu > ul > li > ul li a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 5px;
}

.headerBodyAreaMenu > ul > li > ul li:last-child a {
    margin-bottom: 0;
}

.headerBodyAreaMenu > ul > li > ul li a:hover {
    color: black;
    transition: var(--transition);
}

.headerBodyAreaLogo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.headerBodyAreaLogo img {
    width: 100%;
}

.headerBodyAreaIcons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 2.5rem;

}

.headerBodyAreaIcons a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: inherit;
    margin-right: 30px;
    position: relative;
}

.headerBodyAreaIcons a span {
    position: absolute;
    width: 18px;
    height: 18px;
    background: black;
    color: white;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    right: -5px;
    top: 0;
}

.headerBodyAreaIcons a:last-child {
    margin-right: 0;
}

.headerBodyAreaIcons a svg {
    width: 28px;
    height: 28px;
}

.basketSidebar {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}

.basketSidebar.active {
    visibility: visible;
    opacity: 1;
    transition: var(--transition);
}

.basketOverlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.basketDetail {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 450px;
    background: white;
    padding: 1.5rem;
    z-index: 99999;
}

.closeBasket {
    display: flex;
    justify-content: flex-end;
}

.closeBasket i {
    cursor: pointer;
    color: var(--main-color);
    display: flex;
    font-size: 18px;
    line-height: 15px;

}

.basketDetailTitle {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, .125);

}

.basketDetailRow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.basketDetailRowDelete {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.basketDetailRowTitle a {
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

.basketDetailRowTitle:hover {
    text-decoration: double;
    transition: var(--transition);
}

.basketDetailRowPrice {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.basketDetailRowDelete a {
    text-decoration: none;
}

.basketDetailRowDelete a i {
    color: var(--main-color);
    font-size: 15px;
    line-height: 12px;
    display: flex;
}

.basketDetailRow {
    margin-bottom: 15px;
}

.basketDetailRow:last-child {
    margin-bottom: 0;
}

.basketButton {
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    color: white;
    background: black;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    transition: var(--transition);
}

.basketFooter {
    margin-top: 20px;
}

.basketFooterTotalPrice {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.basketButton:hover {
    background: var(--main-color);
    transition: var(--transition);
}

.swiperAreaInner {
    position: relative;
}

.swiperAreaContent {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.swiperAreaContenTopTitle {
    color: var(--black);
    font-weight: bold;
    font-size: 15px;
}

.swiperAreaContenTitle {
    color: var(--black);
    font-weight: bold;
    font-size: 56px;
    line-height: 72px;
}

.swiperAreaContenText {
    color: var(--text);
    font-size: 18px;
    font-weight: 500;
}

.swiperAreaArrows {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    transition: var(--transition);
}

.swiperAreaArrows > div {
    opacity: 0;
    visibility: hidden;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--black);
    background: var(--white);
    cursor: pointer;
    border: 1px solid #e1e1e1;
    transition: var(--transition);
}

.sliderArea:hover .swiperAreaArrows > div {
    opacity: 1;
    visibility: visible;
}

.sliderArea:hover .swiperAreaArrows {
    width: 94%;
    transition: var(--transition);
}

.swiperAreaArrows > div:hover {
    color: var(--white);
    background: var(--black);
    transition: var(--transition);
}

.swiperAreaArrows > div i {
    display: flex;
    font-size: 18px;
    line-height: 15px;
}

.swiperAreaPagination {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    z-index: 99 !important;
    bottom: 30px !important;
    display: flex;
    justify-content: center;
}


.swiperAreaPagination .swiper-pagination-bullet {
    width: 15px;
    height: 4px;
    border-radius: 6px;
}

.swiperAreaPagination .swiper-pagination-bullet-active {
    background: var(--main-color);
}

.productBox {
    position: relative;
}

.productBoxButton {
    position: absolute;
    gap: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
    bottom: 0;
}

.productBox:hover .productBoxButton {
    visibility: visible;
    opacity: 1;
    transition: var(--transition);
    bottom: 15px;
}

.productBoxButton a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 50%;
    border: 1px solid #e1e1e1;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 0 12px rgba(63, 63, 63, 0.1);
}

.productBoxButton a:hover {
    transition: var(--transition);
    background: var(--black) !important;
    color: var(--white) !important;
}

.productBoxButton a i {
    display: flex;
    line-height: 14px;
}

.productBoxImage {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    padding: 15px;
    background: #F8F8F8;
}

.productBoxImage img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;

}

.productBoxPrice {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
}

.productBoxPrice strike {
    margin-right: 5px;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
}

.productBoxTitle a {
    text-align: center;
    font-size: 15px;
    color: var(--black);
    font-weight: 500;
    display: block;
    text-decoration: none;
}

.informationBoxIcon {
    display: flex;
    justify-content: center;
}

.informationBoxIcon svg {
    width: 1em;
    height: 1em;
    fill: var(--black);

}

.informationBoxIcon svg use {
    fill: var(--black);
}

.informationBoxTitle {
    margin-top: 20px;
    text-align: center;
    font-size: 20px;
    color: var(--black);
    font-weight: 600;
}

.informationBoxText {
    margin-top: 10px;
    text-align: center;
    font-weight: 500;
    color: var(--text);
    font-size: 18px;
}

.bannerArea {
    position: relative;
}

.bannerArea img {
    max-height: 600px;
    object-fit: cover;
}

.bannerAreaContent {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.blogBox {
    position: relative;
}

.blogBoxImage {
    border-radius: 15px;
    overflow: hidden;
}

.blogBoxImage img {
    max-height: 450px;
    object-fit: cover;
}


.blogBoxImage::after {
    position: absolute;
    top: 0;
    left: -50%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    visibility: hidden;
    opacity: 0;
}

.blogBoxImage:hover::after {
    -webkit-animation: shine 2s;
    animation: shine 2s;
}

.blogBoxTitle {
    margin-top: 25px;
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    text-align: center;
}

.blogBoxButton a {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.blogBoxButton a:hover i {
    right: -15px;
    transition: var(--transition);
}

.blogBoxButton a i {
    right: 0;
    position: relative;
    display: flex;
    margin-left: 10px;
    transition: var(--transition);
}

.instagramBox {
    border-radius: 15px;
    overflow: hidden;
}

.instagramBox:hover img {
    transform: scale(1.15);
    transition: var(--transition);
}

.instagramBox img {
    transition: var(--transition);
}

.instagramBox::after {
    position: absolute;
    top: 0;
    left: -50%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    visibility: hidden;
    opacity: 0;
}

.instagramBox:hover::after {
    -webkit-animation: shine 2s;
    animation: shine 2s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
        visibility: visible;
        opacity: 1;
    }
}

@keyframes shine {
    100% {
        left: 125%;
        visibility: visible;
        opacity: 1;
    }
}

.footerArea {
    background: #f8f8f8;
    padding: 75px 0;
}

.footerTitle {
    color: var(--black);
    font-weight: 600;
    font-size: 20px;
}

.footerText {
    margin-top: 30px;
    font-weight: 500;
    color: var(--text);
    font-size: 15px;
}

.footerList {
    margin-top: 30px;
}

.footerList ul {
    padding: 0;
    margin: 0;
}

.footerList ul li {
    list-style-type: none;
}

.footerList ul li a {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 10px;
}

.footerList ul li:last-child a {
    margin-bottom: 0;
}

.footerForm form {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.footerForm input {
    all: unset;
    width: 100%;
    height: 50px;
    background: white;
    padding: 0 20px;
    border-radius: 5px 0 0 5px;
    border: 1px solid rgba(63, 74, 60, .2);
}

.footerForm button {
    all: unset;
    height: 50px;
    flex: none;
    cursor: pointer;
    background: var(--black);
    color: var(--white);
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footerForm button:hover {
    transition: var(--transition);
    background: var(--main-color);
    color: var(--white);
}


.copyright {
    font-weight: 500;
    color: var(--text);
    font-size: 15px;
}

.footerSocial {
    color: var(--black);
    display: flex;
}

.footerSocial a {
    width: 30px;
    height: 30px;
    font-size: 20px;
    color: var(--black);
    text-decoration: none;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footerSocial a i {
    display: flex;
}

.mobileMenuLogo {
    display: none;
}

.mobileMenuClose {
    display: none;
}

.basketDetailRowIamge {
    width: 50px;
    flex: none;
}

@media only screen and (max-width: 767px) {
    .basketDetailRows {
        height: calc(100vh - 260px);
        overflow-y: scroll;
    }
}



.buying__box-body select {
    width: 100%;
    height: 40px;
    border: 1px solid #bdbdbd;
    border-radius: 6px;
    padding: 0 10px;
}

.basket-content {
    border: 1px solid #e1e1e1;
    padding: 15px;
    height: 100%;
}

.basket-content .sumary:not(:last-child) {
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

@media only screen and (max-width: 879px) {
    .headerBodyAreaLogo {
        display: flex;
        justify-content: center;
    }

    .headerBodyAreaLogo img {
        width: 90%;
    }

    .visibleMobile {
        display: block;
    }

    .visibleDestop {
        display: none;
    }

    .headerBodyAreaMenu::after {
        content: '';
        position: absolute;
        width: 100%;
        left: 100%;
        top: 0;
        height: 100%;
        background: rgba(0, 0, 0, .6);
    }

    .headerBodyAreaMenu {
        position: fixed;
        width: 80%;
        height: 100%;
        background: var(--white);
        left: 0;
        top: 0;
        z-index: 999;
        padding: 30px;
        display: block;
        visibility: hidden;
        opacity: 0;
    }

    .headerBodyAreaMenu.active {
        visibility: visible;
        opacity: 1;
        transition: var(--transition);
    }

    .headerBodyAreaMenu > ul {
        display: block;
        width: 100%;
    }

    .headerBodyAreaMenu > ul > li {
        width: 100%;
        padding: 0;
    }

    .headerBodyAreaMenu > ul > li > a {
        padding: 15px;
    }

    .headerBodyAreaMenu > ul > li > ul {
        margin: 0;
        visibility: hidden;
        opacity: 0;
        background: none;
        box-shadow: none;
        padding: 15px;
        height: 0;
    }

    .headerBodyAreaMenu > ul > li:hover > ul {
        visibility: visible;
        opacity: 1;
        transition: var(--transition);
        height: 100%;
        position: relative;
    }

    .headerBodyAreaMenu > ul > li > ul > li > a {
        margin-bottom: 10px;
    }

    .headerBodyAreaMenu > ul > li > ul > li:last-child > a {
        margin-bottom: 0;
    }

    .headerBodyAreaMenu > ul > li:hover > ul {
        margin-top: 0;
    }

    .headerBodyAreaMenu > ul > li:hover > a::before {
        width: calc(100% - 30px);
    }

    .headerBodyAreaMenu > ul > li > a::before {
        bottom: 0;
        left: 15px;
    }

    .mobileMenuLogo {
        display: block;
        margin-left: 15px;
        margin-bottom: 30px;
    }

    .mobileMenuLogo img {
        width: 120px;
    }

    .mobileMenuClose {
        position: absolute;
        top: 34px;
        display: flex;
        right: 30px;
        font-size: 17px;
        line-height: 10px;
    }

    .headerBodyAreaIcons a {
        margin-right: 10px;
    }

    .headerBodyAreaIcons {
        padding-right: 0;
    }

    .mobileMenuOpen i {
        display: flex;
        font-size: 25px;
        line-height: 20px;
    }

    .swiperArea img {
        width: 100%;
        object-fit: cover;
    }

    .swiperAreaContenText {
        display: none;
    }

    .swiperAreaContenTitle {
        font-size: 36px;
        line-height: 46px;
        text-shadow: 0px 4px 4px #e1e1e1;
    }

    .pb-50 {
        padding-bottom: 25px;
    }

    .pt-50 {
        padding-top: 25px;
    }

    .pb-75 {
        padding-bottom: 37.5px;
    }

    .pt-75 {
        padding-top: 37.5px;
    }

    .bannerArea img {
        height: auto;
        max-height: 500px;
        width: 100%;
        object-fit: contain;
    }

    .innerTitle {
        font-size: 32px;
    }

    .innerText {
        width: 85%;
    }

    .instagramArea {
        padding: 0 15px;
    }

    .footerArea {
        padding: 37.5px 0;
    }

    .productBoxButton {
        visibility: visible;
        opacity: 1;
        bottom: 15px;
    }

    .basketDetail {
        width: 100%;
    }
}

@media only screen and (min-width: 880px) {
    .productSwiper2 .swiper-wrapper {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .productSwiper2 .swiper-slide {
        width: calc(100% / 4 - 15px);
        height: auto;
        margin-bottom: 30px;
    }
}