@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inria+Serif:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;1,100;1,300;1,400;1,700&display=swap");

:root {
    --primary__color: #4d0015;
    --secondary__color: #ffb700;
    --primary__font: "Cormorant", serif;
    --secondary__font: "Lato", sans-serif;
    --pure__white: #fff;
    --link__color: #1d1d1d;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Cormorant", serif;
    font-family: "Lato", sans-serif;
}

/* header section css */

.parent__category {
    position: relative;
}

.sub__menu {
    background-color: #ffffff;
    border: 1px solid #f4f4f4;
    display: block;
    left: 0;
    list-style: none;
    margin: 20px 0 0;
    opacity: 0;
    padding: 0px;
    position: absolute;
    visibility: hidden;
    width: 220px;
    z-index: 10;
}

.sub__menu li a {
    text-decoration: none;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    text-transform: capitalize;
    transition: all 0.3s ease-in;
    color: var(--link__color);
}

.sub__menu li a:hover {
    margin-left: 10px;
    color: var(--secondary__color);
}

.sub__menu li {
    border-bottom: 1px solid #f4f4f4;
}

.sub__menu li:last-child {
    border-bottom: 0;
}

.parent__category:hover > .sub__menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

header .header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .social__media {
    display: flex;
    align-items: center;
}

header .header__top--content {
    display: flex;
    gap: 0.5rem;
}

.social__media a,
.header__top--content a {
    color: #1d1d1d;
    border: 1px solid #dedede;
    display: block;
    height: 30px;
    width: 30px;
    border: 1px solid #dedede;
    color: var(--link__color);
    line-height: 32px;
    text-align: center;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    font-size: 14px;
}

.header__top--content a:hover,
.social__media a:hover {
    background-color: var(--primary__color);
    color: var(--pure__white);
}

.header__top--logo img {
    width: 120px;
    height: auto;
    padding: 10px;
}

header nav {
    background: #4d0015;
    display: flex;
    align-items: center;
    justify-content: center;
}

header nav ul li a {
    padding: 16px 20px;
    display: inline-block;
}

header nav ul li a {
    color: white;
    text-transform: uppercase;
    font-size: 15px;
}

header nav ul li a:hover,
header nav ul li.active > a {
    color: var(--secondary__color);
}

.header__top-mobile {
    display: none;
}

.header__top-btn a {
    border: 1px solid var(--primary__color);
    width: max-content;
    padding: 4px 12px;
    height: auto;
    text-transform: uppercase;
    font-family: var(--primary__font);
    font-weight: 700;
    font-style: italic;
    background-color: var(--primary__color);
    color: var(--pure__white);
}

.header__top-btn a:hover {
    background-color: var(--secondary__color);
    border-color: var(--pure__white);
}

@media only screen and (max-width: 900px) {
    header nav,
    header .social__media,
    header .header__top--content {
        display: none;
    }

    .header__top-mobile {
        font-size: 24px;
        display: inline-flex;
        gap: 10px;
    }
}

@media only screen and (max-width: 568px) {
    header {
        position: fixed;
        height: 60px;
        width: 100%;
        z-index: 9999;
        background-color: white;
        box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
            rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    }

    .banner {
        padding-top: 60px;
    }

    .header__top--logo {
        text-align: left;
    }

    .header__top--logo img {
        width: 80px;
        object-fit: contain;
    }
}

/* swiper css  */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    object-fit: cover;
}

/* responsive css */
.about {
    padding: 130px 0px 120px;
}

@media only screen and (max-width: 1200px) {
    .about {
        padding: 40px 0 20px;
    }
}

.heading {
    position: relative;
}

.heading h2 {
    font-family: var(--primary__font);
    font-size: 24px;
    font-weight: 600;
    color: #8b6913;
    font-style: italic;
}

.heading p {
    font-size: 32px;
}

.heading p span {
    color: var(--primary__color);
}

.heading svg {
    position: absolute;
    left: 204px;
    top: -4px;
    width: 50px;
    height: 50px;
}

.quote {
    font-size: 14px;
    color: #555252;
}

.about__content p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #555252;
}

.about__content strong {
    font-weight: 300;
    font-style: italic;
    font-size: 22px;
    color: #8b6913;
}

.button-1 {
    display: inline-block;
    background: var(--primary__color);
    color: #fff;
    padding: 7px 20px;
    border-top-left-radius: 17px;
    border-bottom-right-radius: 17px;
    transition: 0.3s all ease-in-out;
}

.button-1 a {
    color: #fff;
    font-size: 15px;
}

.button-1:hover {
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-right-radius: 17px;
    border-bottom-left-radius: 17px;
    transition: 0.3s all ease-in-out;
    background-color: var(--secondary__color);
}

@media screen and (max-width: 767px) {
    .about__content p {
        font-weight: 300;
    }
}

/* offer section css */
.offer {
    position: relative;
    background-image: url(../images/img/offer/background_1575475339.jpg);
    padding: 100px 0px 100px 0px;
}

.offer__image {
    position: absolute;
    right: 0px;
    top: -150px;
}

.offer__image img {
    height: 320px;
}

.offer__heading {
    margin-right: 160px;
}

.offer ul {
    margin-top: 50px;
}

.offer__heading h3 {
    font-family: var(--primary__font);
    color: #ac8c19;
    font-style: italic;
}

.offer__heading h2 span {
    color: #ffbc13 !important;
    font-size: 50px;
}

.offer__heading p {
    font-size: 14px;
    font-weight: 400;
    color: #555252;
}

.icon-sm svg {
    height: 30px;
    width: 30px;
    fill: var(--primary__color);
}

.icon-content {
    color: var(--primary__color);
}

/* site info section css */
.info {
    background-image: url(../images/img/offer/background_1575506678.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: bottom center;
    padding-bottom: 100px;
    padding-top: 100px;
}

.section-head h2 {
    font-family: var(--primary__font);
    font-style: italic;
    font-size: 40px;
}

.section-head h2 span {
    font-family: var(--primary__font);
    font-style: italic;
    color: #ffbc12 !important;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .offer__heading {
        margin: 0;
    }

    .offer__heading h2 span,
    .section-head h2 {
        font-size: 38px;
    }
}

/* title separator */
.wt-separator-outer {
    overflow: hidden;
}

/*Separator defualt*/
.wt-separator {
    display: inline-block;
    height: 3px;
    width: 50px;
    position: relative;
}

.wt-separator .separator-left,
.wt-separator .separator-right {
    position: absolute;
    top: 50%;
    width: 70px;
    height: 2px;
    margin-top: -1px;
    background-color: #ac8c19;
}

.wt-separator .separator-left {
    left: -80px;
}

.wt-separator .separator-right {
    right: -80px;
}

/*Separator icon*/
.wt-separator.style-icon {
    width: 30px;
    height: 30px;
    line-height: 20px;
    text-align: center;
    font-size: 18px;
}

.wt-separator.style-icon svg {
    width: 25px;
    height: 25px;
    fill: var(--primary__color);
}

.section-head p {
    padding-top: 10px;
    font-size: 15px;
    color: #555252;
}

.right {
    text-align: right;
}

.wt-icon-box-wraper {
    position: relative;
}

.m-b20 {
    margin-bottom: 20px;
}

.p-a10 {
    padding: 10px;
}

.wt-icon-box-wraper.right .icon-xld,
.wt-icon-box-wraper.right .icon-xl,
.wt-icon-box-wraper.right .icon-lg,
.wt-icon-box-wraper.right .icon-md,
.wt-icon-box-wraper.right .icon-sm,
.wt-icon-box-wraper.right .icon-xs {
    float: right;
    margin-left: 10px;
}

.icon-md img {
    height: 50px;
}

.icon-xld img,
.icon-xl img,
.icon-lg img,
.icon-md img,
.icon-sm img,
.icon-xs img {
    vertical-align: middle;
    max-width: 100%;
    width: auto;
}

h4 {
    font-size: 18px;
    line-height: 24px;
    color: var(--primary__color);
    font-weight: normal;
    margin-bottom: 15px;
}

.icon-content p {
    word-break: break-all;
    margin-right: 0px;
    line-height: 24px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #555252;
}

.wt-icon-box-wraper.right {
    text-align: right;
}

.wt-icon-box-wraper.left .icon-xld,
.wt-icon-box-wraper.left .icon-xl,
.wt-icon-box-wraper.left .icon-lg,
.wt-icon-box-wraper.left .icon-md,
.wt-icon-box-wraper.left .icon-sm,
.wt-icon-box-wraper.left .icon-xs {
    float: left;
    margin-right: 10px;
}

.wt-icon-box-wraper.left .icon-content p {
    margin-left: 60px;
}

/* blog section css */
.bg-white {
    background-color: #fff;
}

.p-b50 {
    padding-bottom: 40px;
}

.p-t80 {
    padding-top: 40px;
}

.blog-post {
    position: relative;
    margin-bottom: 24px;
}

.blog-post:last-child {
    margin-bottom: 0;
}

.latest-blog-3.blog-md .wt-post-media {
    width: 230px;
    float: left;
    margin-right: 30px;
}

.wt-img-effect.zoom-slow img {
    transition: all 10s;
    -moz-transition: all 10s;
    -webkit-transition: all 10s;
    -o-transition: all 10s;
}

.wt-img-effect img {
    display: block;
    margin: 0;
    width: 100%;
    height: auto;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: all 0.25s;
    -moz-transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
}

.blog-post {
    text-decoration: none;
}

.blog-post h4 a {
    font-size: 18px;
    line-height: 24px;
    color: var(--primary__color);
    font-weight: normal;
    margin-bottom: 15px;
    transition: all 0.3s ease-in;
}

.blog-post h4 a:hover {
    color: var(--secondary__color);
}

.wt-post-meta ul li {
    list-style-type: none;
    color: #555252;
    font-size: 14px;
}

.wt-post-text p {
    color: #555252;
}

.latest-blog-3.post-overlay {
    height: 526px;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.bg-cover {
    background-size: cover;
}

.bg-top-center {
    background-position: top center;
}

.primary-gradi {
    background: -moz-linear-gradient(
        top,
        rgba(125, 185, 232, 0) 0%,
        rgba(230, 63, 117, 1) 100%
    );
    background: -webkit-linear-gradient(
        top,
        rgba(125, 185, 232, 0) 0%,
        rgba(230, 63, 117, 1) 100%
    );
    background: linear-gradient(
        to bottom,
        rgba(125, 185, 232, 0) 0%,
        rgba(230, 63, 117, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#007db9e8', endColorstr='#e63f75', GradientType=0);
}

.opacity-07 {
    opacity: 0.7;
}

.opacity-08 {
    opacity: 0.8;
}

.wt-bnr-inr {
    height: 300px;
    background-size: cover;
    background-position: center center;
    display: table;
    width: 100%;
}

.wt-bnr-inr-entry {
    display: table-cell;
    vertical-align: middle;
}

.wt-bnr-inr .container {
    display: table;
    height: 100%;
    position: relative;
    z-index: 1;
}

.p-tb20 {
    padding-bottom: 20px;
    padding-top: 20px;
}

.wt-breadcrumb a {
    color: var(--primary__color);
    text-decoration: none;
}

.overlay-main {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.overlay-wraper {
    position: relative;
}

.latest-blog-3.post-overlay .wt-post-info .post-overlay-position {
    display: table-cell;
    vertical-align: bottom;
}

.latest-blog-3.post-overlay .wt-post-info {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: table;
}

.p-b20 {
    padding-bottom: 20px;
}

.p-a30 {
    padding: 30px;
}

.wt-post-title {
    margin-bottom: 10px;
}

.wt-post-title .post-title {
    margin: 0;
    font-weight: normal;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white .title-small {
    color: #fff;
}

.post-title a {
    font-size: 22px;
    line-height: 32px;
    color: #3f3e3e;
    font-weight: normal;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s ease-in;
}

.post-title a:hover {
    color: #4d0015 !important;
}

.tab__image img {
    width: 100%;
    border-radius: 50%;
}

.section-content .nav-pills .nav-link.active,
.section-content .nav-pills .show > .nav-link {
    background: transparent;
    transition: ease-in;
}

.section-content .nav-pills .nav-link:hover {
    background-color: #fff;
    cursor: pointer;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.wt-title {
    font-size: 18px;
    line-height: 24px;
    color: var(--primary__color);
    font-weight: normal;
    margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
    .latest-blog-3.blog-md .wt-post-media {
        width: 100%;
    }

    .post-title a {
        font-size: 18px;
        line-height: 1;
    }

    .wt-post-meta ul {
        padding: 0;
    }

    .wt-post-text p {
        font-weight: 300;
    }
}

/* testimonial section css */
.testimonial {
    background-image: url("../images/img/testimonial/countr-bg-img.jpg");
    background-position: 100% 10%;
    background-repeat: no-repeat;
    background-size: 35% auto;
    opacity: 1;
    position: relative;
    mix-blend-mode: multiply;
}

.testimonial__background--image {
    position: absolute;
    left: 0;
    top: -30px;
    width: 200px;
}

.testimonial__container {
    border: 1px solid #e7e7e7;
    padding: 30px 40px;
    background-color: var(--pure__white);
    border-radius: 10px;
    height: 100%;
}

.testimonial__image a {
    position: relative;
    width: 100%;
    max-width: 150px;
    height: 100%;
    display: block;
    border-radius: 50%;
}

.testimonial__image {
    width: 150px;
    height: 150px;
}

.testimonial__image a img {
    border-radius: 50%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border: 4px solid var(--primary__color);
}

.testimonial__image a::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 55px;
    mask-image: url(https://spalabele.wpengine.com/wp-content/uploads/2023/07/bg-team-mask-image.png);
    -webkit-mask-image: url(https://spalabele.wpengine.com/wp-content/uploads/2023/07/bg-team-mask-image.png);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    mask-position: left top;
    -webkit-mask-position: left top;
    background-color: var(--primary__color);
    top: auto;
    left: -19px;
    right: auto;
    bottom: -5px;
    margin: auto;
    z-index: 100;
}

.testimonial__content a {
    color: #1a1a1a;
}

.testimonial__content p {
    color: #868686;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.separator {
    position: relative;
}

.separator::after {
    position: absolute;
    content: "";
    background-color: #d6d6d6;
    height: 1px;
    width: 45%;
    right: 0;
    top: 50%;
}

.separator::before {
    position: absolute;
    content: "";
    background-color: #d6d6d6;
    height: 1px;
    width: 45%;
    left: 0;
    top: 50%;
}

.separator__content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.separator__content img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.separator__border {
    border-bottom: 2px solid #d6d6d6;
    height: 20px;
}

.testimonial__name {
    color: var(--primary__color);
}

.tetimonial__position {
    font-size: 13px;
    color: #555252;
}

.position:after {
    top: 7px;
    left: 7px;
}

.details-heading-title h2 {
    color: var(--primary__color);
    font-size: 35px;
    font-family: var(--primary__font);
    font-style: italic;
}

@keyframes text-change {
    0% {
        content: "Step into the spotlight with Our Model Agency:";
    }

    50% {
        content: "Discover Your Inner Beauty with Us: The Modeling Agency";
    }
}

.animation::before {
    content: "Join the Ranks of the Elite: Our Model Agency Brings Your Dreams to Life";
    display: inline-block;
    animation-name: text-change;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

.details-vector-images img {
    width: 100%;
    height: 251px;
    object-fit: cover;
    transition: all 0.3s ease-in;
}

.details-vector-images {
    transition: all 0.3s ease-in;
    overflow: hidden;
}

.details-vector-images:hover {
    cursor: pointer;
    /* box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px; */
}

.details-vector-images:hover > img {
    transform: scale(1.05);
}

.details-format {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
}

.contact {
    background: url(../images/img/testimonial/landing-background.png);
    background-position: top center;
    background-size: cover;
}

@media only screen and (max-width: 568px) {
    .details-grid {
        margin-top: 3rem;
    }
    .details-format {
        display: flex;
        overflow-x: scroll;
        overflow-y: hidden;
        gap: 10px;
    }

    .details-vector-images {
        width: max-content;
    }

    .details {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .section-content {
        overflow: hidden;
    }

    .testimonial__container {
        padding: 10px 20px;
    }
}

/*---------------------
  Footer
-----------------------*/
.hidden-text {
    position: absolute;
    top: -10000em;
    width: 1px;
    height: 1px px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.footer-section {
    background: #eeeeee;
    padding-top: 60px;
    padding-bottom: 50px;
    background-position: top center;
    background-size: cover;
}

.footer-option {
    margin-bottom: 30px;
}

.footer-option ul {
    padding-left: 0;
}

.footer-option .fo-logo {
    margin-bottom: 15px;
}

.footer-option .fo-logo a div img {
    width: 120px;
}

.footer-option .fo-logo a {
    display: inline-block;
}

.footer-option ul {
    margin-bottom: 12px;
}

.footer-option ul li {
    list-style: none;
    font-size: 16px;
    color: #3f3e3e;
    line-height: 30px;
}

.footer-social .fo-social a {
    display: inline-block;
    font-size: 16px;
    color: var(--pure__white);
    width: 38px;
    height: 38px;
    background: var(--primary__color);
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin-right: 3px;
    text-decoration: none;
}

.footer-social .fo-social a:hover {
    background: #ffbc13;
}

hr {
    color: #fdfdfd;
}

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

.footer-widget.fw-links {
    padding-left: 35px;
}

.footer-widget h5 {
    font-size: 24px;
    font-family: var(--primary__font);
    font-style: italic;
    color: var(--primary__color);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-widget ul li {
    list-style: none;
}

.footer-widget ul li a {
    font-size: 15px;
    color: #555252;
    text-decoration: none;
    line-height: 36px;
    display: flex;
    align-items: center;
}

.footer-widget ul li a img {
    width: 13px;
    height: auto;
    margin-right: 10px;
}

.footer-widget ul li a span {
    transition: all 0.5s ease-in;
}

.footer-widget ul li a:hover > span {
    margin-left: 10px;
    color: #4d0015;
}

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

.footer-widget .news-form {
    display: flex;
}

.footer-widget .news-form input {
    font-size: 14px;
    height: 46px;
    color: #b3b3b3;
    border: 1px solid var(--primary__color);
    padding-left: 25px;
    background: transparent;
    width: calc(100% - 50px);
    margin-bottom: 10px;
}

.footer-widget .news-form input::-webkit-input-placeholder {
    color: #b3b3b3;
}

.footer-widget .news-form input::-moz-placeholder {
    color: #b3b3b3;
}

.footer-widget .news-form input:-ms-input-placeholder {
    color: #b3b3b3;
}

.footer-widget .news-form input::-ms-input-placeholder {
    color: #b3b3b3;
}

.footer-widget .news-form input::placeholder {
    color: #b3b3b3;
}

.footer-widget .news-form button {
    font-size: 16px;
    color: #ffffff;
    font-weight: 300;
    display: block;
    background: #4d0015;
    border: none;
    padding: 12px 0;
    width: 100%;
    height: 46px;
    width: 50px;
    border: 1px solid var(--primary__color);
    border-left: 0;
    transition: all 0.3s ease-in;
}

.footer-widget .news-form button:hover {
    background-color: var(--secondary__color);
}

.footer-widget .insta-pic img {
    margin-right: 5px;
    width: calc(33.33% - 5px);
    float: left;
    margin-bottom: 5px;
}

.copyright-text {
    padding-top: 20px;
    padding-bottom: 20px;
    color: #dedede;
    text-align: center;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.copyright-text div:first-child {
    color: #dedede;
}

.copyright-text i {
    color: #e32879;
}

.copyright-text a {
    color: #dedede;
    cursor: pointer;
}

.copyright-text a:hover {
    color: #f2e4de;
}

.constrot-strip {
    /* background-image: url(../images/img/footer/footer-strip-spalon.png); */
    background-color: #4d0015;
}

.constrot-strip {
    position: relative;
    width: 100%;
    background-repeat: repeat-x;
    background-position: center top;
}

.wt-breadcrumb li {
    padding: 0;
    margin-right: 3px;
    color: #333333;
    position: relative;
    display: inline-block;
}

.bg-gray-light {
    background-color: #f1f1f1;
}

.breadcrumb-style-2 li:after {
    content: "/";
    margin-left: 7px;
}

.breadcrumb-style-2 li.active:after {
    content: "";
}

.breadcrumb__container {
    padding: 20px 0;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item a {
    text-decoration: none;
}

.footer__widget-menu div:last-child,
.contact__details {
    display: none;
}

.collapse:not(.show) {
    display: inline-block;
}

@media only screen and (max-width: 568px) {
    .footer-section {
        padding-top: 50px;
        padding-bottom: 90px;
    }

    .footer-option {
        margin-bottom: 0;
    }

    .footer-option .fo-logo {
        display: none;
    }

    .footer-option .fo-logo a div img {
        width: 120px;
    }

    .footer-option ul {
        padding: 0;
        /* padding-left: 10px; */
    }

    .footer-widget.fw-links {
        padding: 0;
        /* padding-left: 10px; */
    }

    .footer__widget-menu {
        display: flex;
        justify-content: space-between;
    }

    .footer-widget h5 {
        margin-bottom: 10px;
    }

    .footer__widget-menu div:last-child {
        display: block;
        font-size: 24px;
    }

    .footer__widget .usefull__item {
        display: none;
        padding-left: 20px !important;
    }

    .contact__details {
        display: inline-block;
        width: 100%;
    }

    .collapse:not(.show) {
        display: none;
    }

    .copyright-text {
        flex-direction: column;
    }

    .bg-gray-light {
        padding-top: 80px;
    }
}

/* Blog Item */
.blog__item {
    display: flex;
    margin-bottom: 40px;
}

.blog__item-image {
    width: 350px;
    float: left;
    margin-right: 30px;
    position: relative;
    overflow: hidden;
    display: block;
}

.blog__item-image img {
    transition: all 10s;
    -moz-transition: all 10s;
    -webkit-transition: all 10s;
    -o-transition: all 10s;
    display: block;
    margin: 0;
    width: 100%;
    height: auto;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: all 0.25s;
    -moz-transition: all 0.25s;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
}

.blog__item-content {
    border: none;
    width: calc(100% - 350px);
}

.blog__item-date ul {
    padding: 0;
    list-style: none;
    font-style: italic;
    color: #555252;
    font-weight: 300;
    margin-bottom: 5px;
}

.blog__item-title {
    margin-bottom: 0px;
}

.blog__item-title .post-title {
    margin: 0;
    font-weight: normal;
    font-size: 22px;
    line-height: 32px;
    color: #3f3e3e;
}

.social-icons {
    list-style: none;
    margin-left: -3px;
    margin-right: -3px;
    font-size: 12px;
    /* margin-bottom: 0; */
}

.social-icons li {
    display: inline-block;
    text-align: center;
}

.social-icons.social-square a,
.social-icons.social-radius a {
    border: 1px solid rgba(0, 0, 0, 0.2);
    width: 24px;
    height: 24px;
    line-height: 24px;
    padding: 0;
    border-radius: 50%;
    text-decoration: none;
    color: #777;
}

.wt-post-readmore a {
    font-family: "Crete Round", serif;
    font-size: 16px;
    font-style: italic;
    text-decoration: underline;
    color: #4d0015;
    font-weight: 600;
}

.social-icons.social-square.social-dark a:hover,
.social-icons.social-radius.social-dark a:hover {
    background-color: #4b3941;
    color: #fff;
}

/* Widget Category */
.widget__category ul {
    padding: 0;
    list-style: none;
}

.widget__category ul li a {
    color: #3d474a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    margin-bottom: 5px;
    background-color: #f5f6f6;
    padding: 10px;
}

.widget__category ul li a:hover {
    color: #4d0015;
}

/* Widget Post */
.widget-post {
    background-color: #f5f6f6;
    display: flex;
    margin: 10px;
    padding: 5px 10px;
    gap: 10px;
}

.widget__item-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.widget__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wt-post-header .blog__title a {
    font-size: 15px;
    text-decoration: none;
    color: #3d474a;
}

.widget__item-meta ul {
    padding: 0;
    list-style: none;
    font-style: italic;
    color: #555252;
    font-size: 13px;
}

.tab-content .widget__content {
    width: calc(100% - 80px) !important;
}

.blog__title a {
    transition: all 0.3s ease-in;
}

.blog__title a:hover {
    color: #4d0015;
}

/* About Us */
@import url("https://fonts.googleapis.com/css2?family=Gruppo&display=swap");

.about__container {
    padding: 0rem 0 3rem;
}
.about__section-image {
    position: relative;
    z-index: 1;
}

.about__section-image img {
    width: 100%;
    display: block;
    max-width: 100%;
    height: auto;
}

.about__section-image::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 10px;
    left: -10px;
    background-color: #4d0015;
    z-index: -1;
}

.about__info {
    margin-top: 3rem;
}

.about__info-content {
    padding: 20px;
    background-color: #eeeeee;
}

.about__info-content h2 {
    font-family: var(--primary__font);
    color: var(--primary__color);
}

.about__info-content p {
    font-family: "Gruppo", sans-serif;
    text-align: justify;
}

@media only screen and (max-width: 568px) {
    .about__container {
        padding: 2rem 0 8rem;
    }

    .about__image {
        margin: auto;
        text-align: center;
    }

    .about__image img {
        height: 240px;
        object-fit: contain;
    }
}

/* Faq */
.faq__container {
    margin: 3rem 0;
}

.widget,
.side-bar {
    position: sticky;
    top: 20px;
}

.widget .widget__content {
    width: 100%;
}

.widget .widget__content .blog__title {
    font-size: 1rem;
}
.widget__content .form-control {
    box-shadow: none;
    background-color: #eeeeee;
}

.widget__content button {
    font-size: 16px;
    color: #ffffff;
    font-weight: 300;
    background: #4d0015;
    border: none;
    padding: 12px 30px;
    transition: all 0.3s ease-in;
}

.widget__content button:hover {
    background-color: var(--secondary__color);
}

.faq__container .accordion-button:focus {
    box-shadow: none;
}

.faq__container .accordion {
    background-color: #eeeeee;
    padding: 20px 16px;
    margin-bottom: 30px;
}

.faq__content-title {
    font-size: 22px;
    margin-bottom: 20px;
}

/* Gallery */
.gallery__filter-container {
    padding-bottom: 15px;
}

.gallery__filter-container a {
    color: #666666;
}

.gallery__filter-container .active a {
    color: var(--primary__color);
}

.gallery__filter {
    display: table;
    margin: 0;
}

.gallery__filter > li {
    display: inline-block;
    margin-right: 30px;
    position: relative;
}

.gallery__filter li a {
    text-decoration: none;
}

.gallery__filter > li:after {
    content: "|";
    position: relative;
    right: -18px;
    opacity: 0.3;
}

.gallery__filter > li.last:after {
    content: "" !important;
}

.gallery__item-content {
    position: relative;
    transition: all 0.3s linear;
}

.gallery__item-content img {
    width: 100%;
    height: 100%;
}

.gallery__item-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    opacity: 0.3;
    transition: all 0.3s linear;
}

.gallery__item-overlay a i {
    font-size: 24px;
    color: white;
    opacity: 0;
    visibility: visible;
    /* transition: all 0.3s ease-in; */
    line-height: 40px;
    display: table;
    height: 40px;
    width: 40px;
}

.gallery__item-icon {
    list-style: none;
    width: 160px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -20px -75px;
    z-index: 1 !important;
}

.gallery__item-icon a {
    display: inline-block;
    padding: 0;
    margin: 0 2px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s linear;
}

.gallery__item-icon a:hover {
    background-color: var(--primary__color);
}

.gallery__item-content:hover > .gallery__item-overlay,
.gallery__item-content:hover > .gallery__item-overlay a i {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease-in-out;
}

.gallery__item-content img {
    transition: all 0.2s;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
}

.gallery__item-content:hover img {
    filter: blur(3px);
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
    -ms-filter: blur(3px);
}

/* Blog Details */
.blog__content {
    padding: 10px 10px 20px;
}

.blog__content p {
    text-align: justify;
}

.blog__content table {
    margin-bottom: 24px;
}

.blog__content table td {
    width: 50%;
    padding: 15px 10px;
}

.blog__content table tr {
    border-color: #eeeeee;
}

.blog__content table > :not(caption) > * {
    border-width: 1px 0;
}

.blog__content table > :not(caption) > * > * {
    border-width: 0 1px;
}

.share__post {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding-top: 24px;
    padding-bottom: 16px;
}

/* Privacy Policy */
.privacy__container {
    background-color: #eee;
    padding: 20px;
}

.privacy__container p {
    text-align: justify;
}

/* Contact Page */
.contact__container .form-control {
    box-shadow: none;
}

.submit__button {
    font-size: 16px;
    color: #ffffff;
    font-weight: 300;
    background: #4d0015;
    border: none;
    padding: 12px 30px;
    transition: all 0.3s ease-in;
}

.submit__button:hover {
    background-color: var(--secondary__color);
}

.contact__content-item {
    background-color: #eee;
    text-align: center;
    padding: 30px;
}

.contact__content-top {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__content-icon {
    height: 80px;
    width: 80px;
    font-size: 30px;
    color: var(--pure__white);
    margin-bottom: 10px;
    background-color: #ac8c19 !important;
}

.contact__content-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close {
    --bs-btn-close-color: var(--pure__white);
    --bs-btn-close-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFF'><path d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/></svg>");
}

.btn-close:focus {
    box-shadow: none;
}

/* Team */
.team__content {
    background-color: #f5f6f6;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team__content-image {
    margin: auto;
    height: 360px;
    text-align: center;
}

.team__content-image a {
    display: inline-block;
}

.team__content-info a {
    color: var(--primary__color);
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease-in;
    font-family: var(--secondary__font);
}

.team__content-info a span {
    font-size: 20px;
    font-family: var(--primary__font);
}

.team__content-info a:hover {
    color: var(--secondary__color);
}

/* Service */
.service__item {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.animate_line {
    position: relative;
    z-index: 0;
}

.animate_line:after,
.animate_line:before {
    content: "";
    height: 4px;
    width: 0px;
    position: absolute;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    z-index: -1;
}

.animate_line:before {
    right: 0;
    top: 0;
}

.animate_line:after {
    left: 0;
    bottom: 0;
}

.animate_line:hover:after,
.animate_line:hover:before {
    width: 50%;
    height: 50%;
    background: #4d0015;
}

.service__item-image img {
    width: 100%;
}

.service__item-title a {
    color: var(--primary__color);
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease-in;
}

.service__item-title a:hover {
    color: var(--secondary__color);
}

.service__item-content {
    padding: 30px;
}

.service__item-content p {
    color: #555252;
    font-size: large;
    font-style: italic;
    font-family: var(--primary__font);
}

.pagination__content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.pagination__content .page-link {
    color: var(--primary__color);
}

.pagination__content .active > .page-link,
.pagination__content .page-link.active {
    background-color: var(--primary__color);
    border-color: var(--primary__color);
    color: var(--pure__white);
}

/* Offer */
.offer__item-image img {
    width: 100%;
}

.offer__item {
    display: flex;
    flex-direction: column;
    text-align: left;
    background-color: #eee;
    height: 100%;
}

.offer__item-content {
    font-family: var(--primary__font);
    margin-bottom: 20px;
    font-style: italic;
    font-size: large;
    text-align: justify;
}

.form-control:focus {
    box-shadow: none;
}

@media only screen and (max-width: 568px) {
    .offer {
        padding: 50px 0;
    }
    .g-5 {
        --bs-gutter-y: 0;
        --bs-gutter-x: 0;
    }

    .offer ul {
        display: flex;
        overflow-x: scroll;
        overflow-y: hidden;
        padding-bottom: 10px;
    }

    .offer ul .wt-icon-box-wraper {
        width: max-content;
    }
}

/* Search */
/*-------------------------------------
	1. Top Part Search Bar
-------------------------------------*/
.site-search-btn {
    background: none;
    padding: 10px 15px;
    border: none;
    outline: none;
    color: #555;
}
#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    display: none;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    z-index: 999;
    display: block;
}

#search form {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -51px;
    width: 60%;
    margin-left: 20%;
    color: #ffffff80;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 40px;
    font-family: Roboto;
    font-weight: 300;
    text-align: left;
    outline: none;
    padding: 10px;
    border-radius: 40px;
}
#search input[type="search"] {
    width: 100%;
    background: none;
    border: none;
    padding: 0px 30px;
    font-size: 20px;
    color: #555252;
}

#search .search-btn {
    border: none;
    background: none;
    padding: 0px 30px;
}

#search input[type="search"]:focus-visible {
    border: 0;
    outline: none;
}

#search .search-btn i {
    font-size: 36px;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    opacity: 1;
    font-size: 27px;
    color: #fff;
    width: 30px;
    height: 30px;
}

#search .close:after,
#search .close:before {
    content: "";
    position: absolute;
    width: 2px;
    height: 32px;
    background-color: #fff;
    right: 20px;
    top: 0px;
}

#search .close:after {
    -ms-transform: rotate(45deg); /* IE 9 */
    -webkit-transform: rotate(45deg); /* Safari */
    transform: rotate(45deg);
}

#search .close:before {
    -ms-transform: rotate(-45deg); /* IE 9 */
    -webkit-transform: rotate(-45deg); /* Safari */
    transform: rotate(-45deg);
}

#search .close:hover:after,
#search .close:hover:before {
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    #search form {
        width: 90%;
        margin-left: 5%;
        font-size: 26px;
    }

    #search input[type="search"] {
        padding: 0px 0px 0px 30px;
    }
    #search .search-btn {
        padding: 0px 15px;
    }
    #search .search-btn i {
        font-size: 24px;
    }
}

@media only screen and (max-width: 400px) {
    #search form {
        font-size: 16px;
    }
    #search input[type="search"] {
        padding: 0px 0px 0px 10px;
    }
    #search .search-btn {
        padding: 0px 15px;
    }
    #search .search-btn i {
        font-size: 18px;
    }
}
.wt-quik-search .form-control::-moz-placeholder {
    color: #fff;
}
.wt-quik-search .form-control:-moz-placeholder {
    color: #fff;
}
.wt-quik-search .form-control:-ms-input-placeholder {
    color: #fff;
}
.wt-quik-search .form-control::-webkit-input-placeholder {
    color: #fff;
}

.input-group {
    flex-wrap: nowrap;
}

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
}

@media only screen and (max-width: 767px) {
    .site-search {
        width: 100%;
    }
    .site-search .site-button {
        padding: 0;
    }
    .site-search form {
        padding-left: 0;
    }
}

/* Mobile Menu */
.mobile__menu {
    display: none;
}

.offcanvas-end {
    z-index: 999999999;
}

.offcanvas-backdrop.fade.show {
    z-index: 99999999;
}

.offcanvas-header {
    background-color: var(--primary__color);
}

.offcanvas-header .offcanvas-title {
    color: var(--pure__white);
    font-family: var(--secondary__font);
}

@media only screen and (max-width: 900px) {
    .mobile__menu {
        position: fixed;
        display: block;
        bottom: 0;
        background-color: white;
        width: 100%;
        z-index: 99999999;
        padding: 10px 30px;
        box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
            rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    }

    .mobile__menu ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0;
        padding: 0;
    }

    .mobile__menu ul li {
        display: inline-block;
        text-align: center;
    }

    .mobile__menu ul li a {
        text-decoration: none;
    }

    .mobile__menu ul li a i,
    .mobile__menu ul li a img {
        font-size: 16px;
        background-color: #4d0015;
        color: white;
        padding: 10px;
        fill: white;
        border-radius: 50%;
    }

    .mobile__menu ul li a.active i {
        background-color: var(--secondary__color);
    }

    .mobile__menu ul li a img {
        height: 40px;
        width: 40px;
    }

    .mobile__menu-title {
        color: #1a1a1a;
        font-size: 13px;
    }
}

/* Mobile Menu */
.offcanvas__inner {
    position: relative;
    height: 100%;
}

.offcanvas__menu {
    overflow-y: auto;
    height: 100%;
}

.offcanvas__menu_ul {
    overflow: auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

.offcanvas__menu_li {
    position: relative;
    border-bottom: 1px solid #e4e4e4;
}

.offcanvas__menu_li:first-child {
    border-top: 1px solid #e4e4e4;
}

.offcanvas__menu_item {
    line-height: 1;
    display: block;
    padding: 15px 20px;
    color: #666666;
    text-decoration: none;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.offcanvas__menu_item .offcanvas__menu_item-title {
    /* padding-left: 20px; */
}

.offcanvas__sub_menu_li:hover > .offcanvas__sub_menu_item,
.offcanvas__menu_li:hover > .offcanvas__menu_item {
    background: #fab661;
}

.offcanvas__sub_menu_li:hover > .offcanvas__sub_menu_item,
.offcanvas__menu_li:hover > .offcanvas__menu_item {
    color: white;
}

.offcanvas__sub_menu {
    display: none;
    margin: 0;
    padding: 0;
    list-style: none;
}

.offcanvas__sub_menu_li {
    position: relative;
    border-top: 1px solid #e4e4e4;
}

.offcanvas__sub_menu_item {
    line-height: 1;
    display: block;
    padding: 15px 0 15px 40px;
    color: #666666;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.offcanvas__sub_menu_item ~ .offcanvas__sub_menu .offcanvas__sub_menu_item {
    padding-left: 40px;
}

.offcanvas__sub_menu_toggle {
    font-size: 20px;
    position: absolute;
    z-index: 9;
    top: 6px;
    right: 0;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
}

.offcanvas__sub_menu_toggle::after,
.offcanvas__sub_menu_toggle::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-color: #000000;
}

.offcanvas__sub_menu_toggle:not(.active)::after {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
}

@media only screen and (max-width: 768px) {
    /* Scrollbar */
    .offcanvas__menu::-webkit-scrollbar {
        height: 6px;
        width: 6px;
    }

    .offcanvas__menu::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 6px;
    }

    .offcanvas__menu::-webkit-scrollbar-thumb {
        background: #d11e27;
        border-radius: 6px;
        transition: 2s easy;
    }

    .offcanvas__menu::-webkit-scrollbar-thumb:hover {
        background: #fab661;
    }
}

/* Product Page */
.product__content {
    margin: 30px 0px;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product__item {
    background-color: #f3f3f3;
    padding-bottom: 20px;
}

.product__item-image {
    overflow: hidden;
}

.product__item-image img {
    width: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product__item-image:hover img {
    transform: scale(1.1);
}

.product__item-image img a {
    display: inline-block;
}

.product__item-title {
    font-family: var(--primary__font);
    font-size: 24px;
    font-style: italic;
    font-weight: 500;
    text-decoration: none;
    color: var(--link__color);
    display: inline-block;
    text-align: center;
    width: 100%;
}

.product-price {
    text-align: center;
    width: 100%;
}

.product-price del {
    color: #ac8c19;
    margin-right: 5px;
}

.product-price span {
    color: #4d0015;
    font-size: 18px;
}

.brand__section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    overflow-x: auto;
}

.brand__image img {
    width: 100%;
    height: 100%;
    padding: 10px;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.brand__image {
    min-width: 200px;
    background-color: #f3f3f3;
    height: 120px;
}

.category__filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category__filter-category button {
    border: 2px solid var(--primary__color);
    /* background-color: var(--primary__color); */
    background-color: transparent;
    color: var(--link__color);
    padding: 6px 20px;
}

.form-select:focus {
    box-shadow: none;
}

.category__filter-sort select {
    border: 1px solid var(--primary__color);
    border-radius: 0;
}

@media screen and (max-width: 1200px) {
    .product__content {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 568px) {
    .product__content {
        margin: 30px 0px;
        display: grid;
        grid-gap: 20px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product__item {
        background-color: #f3f3f3;
        padding: 20px 10px;
    }

    .product__item-title {
        font-size: 20px;
    }

    .wt-bnr-inr.overlay-wraper {
        display: none;
    }
}

/* Product Detail */
.product__image {
    display: flex;
    padding: 20px;
    width: 100%;
    background-color: #f4f4f4;
}

.product__detail-image {
    width: calc(100% - 300px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
}

.product__detail-image img {
    width: 100%;
}

.product__detail-thumbnail {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product__thumbnail-image {
    width: 120px;
    height: 120px;
    border: 1px solid var(--primary__color);
}

.product__thumbnail-image img {
    width: 100%;
    height: 100%;
}

.product__detail-title {
    font-size: 32px;
    font-family: var(--primary__font);
    font-style: italic;
    font-weight: 500;
}

.product__additional {
    margin-top: 20px;
}

.product__button a {
    background-color: var(--primary__color);
    text-decoration: none;
    color: var(--pure__white);
    padding: 10px 20px;
    display: inline-block;
}

.product__recommendation-title {
    padding: 20px 0;
    margin-top: 3rem;
    text-align: center;
    color: var(--primary__color);
    font-family: var(--primary__font);
    font-weight: 500;
    font-style: italic;
    font-size: 32px;
}

/* Package Page */
.package__content {
    margin: 30px 0px;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package__item {
    background-color: #f3f3f3;
    position: relative;
}

.package__item-image img {
    width: 100%;
}

.package__item-details {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.package__item-btn {
    font-family: var(--primary__font);
    font-size: 24px;
    font-style: italic;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid var(--primary__color);
    color: var(--pure__white);
    background-color: var(--primary__color);
    padding: 5px 20px;
    transition: all 0.3s ease-in;
}

.package__item-btn:hover {
    background-color: var(--secondary__color);
    border-color: var(--secondary__color);
}

@media only screen and (max-width: 568px) {
    .package__content {
        margin: 30px 0px;
        display: grid;
        grid-gap: 20px;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* Appointment */
.appointment__content .form-control,
.appointment__content .form-select {
    border-radius: 0;
    padding-left: 20px;
}

.appointment__content .form-control::placeholder,
.appointment__content .form-select::placeholder,
.appointment__content .form-control::-ms-input-placeholder,
.appointment__content .form-select::-ms-input-placeholder {
    color: #5d5959;
}

.appointment__content-header {
    margin-bottom: 20px;
}

.appointment__content-title {
    font-weight: 300;
    font-style: italic;
    font-size: 42px;
    font-family: var(--primary__font);
    letter-spacing: 2px;
}

.appointment__content-subtitle {
    color: #8b6913;
    letter-spacing: 1px;
    font-size: 13px;
}

.appointment__background {
    position: relative;
    text-align: right;
}

.appointment__background .first {
    border-radius: 250px 250px 0 0;
}

/* Career Page */
.career__image-content {
    position: relative;
}

.career__image img {
    width: 100%;
}

.career__image-second {
    position: absolute;
    bottom: -25%;
    left: -26%;
    max-width: 320px;
    transform: skewX(-10deg);
}

.career__content {
    padding-top: 20px;
}

.career__content-title h2 {
    font-family: var(--primary__font);
    font-style: italic;
    font-weight: 600;
    color: var(--primary__color);
    letter-spacing: 2px;
}

.career__content-title p {
    font-family: var(--primary__font);
    font-weight: 500;
    font-size: 18px;
    color: var(--link__color);
}

.career__item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.career__content-description h3 {
    font-family: var(--primary__font);
    font-size: 20px;
    font-style: italic;
    color: var(--secondary__color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.career__content-description ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.career__content-description ul li a {
    text-decoration: none;
    color: var(--link__color);
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease-in;
    background-color: #f5f6f6;
    padding: 10px;
}

.career__content-description ul li a:hover {
    color: var(--secondary__color);
}

.career__item-image svg {
    width: 24px;
    fill: var(--primary__color);
    height: 24px;
}

/* Filter Product */
.category__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin: 0;
    padding-left: 17px !important;
    grid-gap: 10px;
    /* padding-bottom: 20px; */
    margin-top: 15px;
    /* border-bottom: 1px solid #d4d5d9; */
}

.category__list li {
    list-style: none;
}

.category__item {
    position: relative;
    background-color: #fff;
    text-transform: capitalize;
    color: #3e4152;
    cursor: default;
    font-size: 14px;
    padding: 6px 36px 6px 20px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    border-radius: 20px;
    border: 1px solid #d4d5d9;
}

.filter-summary-removeFilter {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 18px;
    height: 20px;
    z-index: 1;
    text-align: center;
    cursor: pointer;
    right: 10px;
    top: 6px;
}

.filter-summary-removeIcon {
    vertical-align: middle;
    opacity: 0.7;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
}

/* Filter By */
.position__relative {
    position: relative;
    color: #575759;
    background: white;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid #ddd;
    margin-bottom: 16px;
}

.filter__container {
    display: flex;
    margin-top: 2rem;
    margin-bottom: 2rem;
    justify-content: space-between;
    align-items: center;
    background: #f2f2f2;
    padding: 8px 12px;
}

.filter__container div:first-child {
    font-size: 18px;
}

.filter__container .form-select {
    width: 200px;
    padding: 4px 10px;
    background-color: #fff;
    color: #575759;
    font-size: 14px;
    box-shadow: none;
}

#priceFilter {
    display: flex;
}

#priceFilter button {
    border: none;
    background: #ec5323;
    padding: 4px 15px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    margin-right: 15px;
    font-size: 16px;
}

.desktop__filter {
    display: inline-block;
}

.mobile__filter {
    display: none;
}

@media only screen and (max-width: 768px) {
    .desktop__filter {
        display: none;
    }

    /* .filter__content-body {
        display: none;
    } */

    .mobile__filter {
        display: block;
        /* width: 100%; */
    }

    .mobile__filter-content {
        padding: 10px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #ecf2ee;
        border-radius: 5px;
    }

    .mobile__filter-btn {
        width: fit-content;
        padding: 4px 10px;
        border-radius: 5px;
        border: 1px solid #e4e4e4;
        background-color: white;
        color: #343538;
    }
}
