*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul{
    padding-left: 0;
}
ul li{
    list-style: none;
}
a{
    text-decoration: none;
    transition: .5s ease;
}
h1,h2,h3,h4,h5,h6,p,ul{
    margin-bottom: 0;
}
@font-face {
    font-family: 'AktivGrotesk-Regular';
    src: url(../fonts/AktivGrotesk-Regular.ttf);
}
@font-face {
    font-family: 'AktivGrotesk-Light';
    src: url(../fonts/AktivGrotesk-Light.ttf);
}
@font-face {
    font-family: 'AktivGrotesk-Thin';
    src: url(../fonts/AktivGrotesk-Thin.ttf);
}
@font-face {
    font-family: 'ChronicleDisplay Light';
    src: url(../fonts/Chronicle\ Display\ Light.otf);
}
@font-face {
    font-family: 'ChronicleDisplay Roman';
    src: url(../fonts/Chronicle\ Display\ Roman.otf);
}
@font-face {
    font-family: 'ChronicleDisplay XLight';
    src: url(../fonts/Chronicle\ Display\ Extra\ Light.otf);
}
@font-face {
    font-family: 'Montserrat-Regular';
    src: url(../fonts/Montserrat-Regular.ttf);
}
@font-face {
    font-family: 'Montserrat-Light';
    src: url(../fonts/Montserrat-Light.ttf);
}
@font-face {
    font-family: 'Montserrat-Medium';
    src: url(../fonts/Montserrat-Medium.ttf);
}
@font-face {
    font-family: 'Montserrat-SemiBold';
    src: url(../fonts/Montserrat-SemiBold.ttf);
}
@font-face {
    font-family: 'BigCaslon-Medium';
    src: url(../fonts/BigCaslon-Medium.ttf);
}

.container-main {
    max-width: 1440px;
    margin: 0 auto;
}
.main_header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 3;
    padding: 21px 0px;
}
.nav-link:focus, .nav-link:hover {
    color: #ffffff;
}
.main_header  .container_full {
    max-width: 1560px;
    margin: 0 auto;
}
.header_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav_part {
    width: 30%;
    margin-left: -18px;
}
.header_block a.navbar-brand img {
    width: 212px;
}
.nav_part ul {
    display: flex;
    align-items: center;
}
.nav_part ul li a {
    font-size: 12px;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 2.4px;
    font-family: 'AktivGrotesk-Regular';
    padding: 0px 18px;
}
a.navbar-brand {
    margin: 0 auto;
}
.inner-logo {
    display: none;
}
.nav_part.right_side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.mob-header {
    display: none;
}
body.inner-page .main_header {
    position: unset;
    background: #fbf9f7;
}
body.inner-page a.navbar-brand img {
    filter: invert(1);
}
body.inner-page .nav_part ul li a {
    color: #000;
}
a.hover-btn {
    transition: .5s ease;
}
a.hover-btn:hover {
    background-color: #000000;
    color: #fff;
    border-color: #000000;
}
.cart-icon img {
    filter: invert(1);
    width: 20px;
    height: 20px;
    object-fit: cover;
    margin-top: -10px;
}

body.inner-page .cart-icon img{
    filter: unset;
}

/* BANNER */
.home-banner-main {
    position: relative;
}
.home-banner-img {
    height: 100vh;
}
.home-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-banner-main .home-banner-info {
    padding-top: 113px;
}
.home-banner-info {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00000008;
	z-index: 2;
}
.home-banner-content h1 {
    font-size: 40px;
    letter-spacing: 8px;
    color: #ffffff;
    text-transform: uppercase;
    /*font-family: 'ChronicleDisplay Light';*/
    font-family: 'Montserrat-Regular';
}
.home-welcome {
    padding-top: 95px;
    padding-bottom: 105px;
    background: #fbf9f7;
}
.welcome-title {
    text-align: center;
    padding-bottom: 105px;
}
.welcome-title h6 {
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    font-family: 'AktivGrotesk-Light'; 
    padding-bottom: 21px;
}
.welcome-title h2 {
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 4.8px;
    text-transform: uppercase;
    color: #000000;
    font-family: 'ChronicleDisplay Light';
    padding-bottom: 22px;
}
.welcome-title p {
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    font-family: 'AktivGrotesk-Thin';
    max-width: 960px;
    margin: 0 auto;
}
.home-welcome-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -3px;
}
.home-welcome-block {
    width: 33.33%;
    padding: 0 3px;
}
.home-welcome-block-inner {
    position: relative;
    overflow: hidden;
}
.home-welcome-img img {
    width: 100%;
    transition: 0.3s;
}
.home-welcome-img img:hover{
    transform: scale(1.1);
    filter: brightness(0.7);
}
.home-welcome-info {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding-bottom: 27px;
    padding-left: 40px;
    height: 100%;
    display: flex;
    align-items: end;
    pointer-events: none;

}
/*.home-welcome-block-inner:before {*/
/*    position:absolute;*/
/*    content:'';*/
/*    background:#000;*/
/*    height:100%;*/
/*    width:100%;*/
/*    opacity:0;*/
/*    transition:.3s ease;*/
/*}*/
.home-welcome-block-inner:hover:before {
    opacity:1;
}
.home-welcome-info h4 {
    font-size: 40px;
    color: #ffffff;
    font-family: 'ChronicleDisplay Light';
}
.home-welcome-info h4 a {
    color: #ffffff;
}
.home-featured {
    position: relative;
    margin-top: 82px;
    margin-bottom: 94px;
}
.home-featured .welcome-title {
    padding-bottom: 43px;
}
.home-featured .welcome-title p {
    max-width: 982px;
}
.home-featured-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 100%;
    left: 0;
}
.home-featured-arrow-flex {
    display: flex;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 12px;
}
.home-featured-arrow-flex button {
    border: unset;
    background: unset;
}
.home-feat-slider-block-main {
    position: relative;
}
.home-feat-slider-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    padding-bottom: 50px;
    padding-left: 55px;
    padding-right:55px;
    background: linear-gradient(to bottom, #ffffff00 0%, #0000009e 50%);
}
.home-feat-slider-info h6 {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: 'AktivGrotesk-Light'; 
    padding-bottom: 21px;
}
.home-feat-slider-info h4 {
    font-size: 40px;
    line-height: 28px;
    color: #fff;
    font-family: 'ChronicleDisplay Light';
    padding-bottom: 28px;
}
.home-feat-slider-info h4 a {
    color: #fff;
}
.home-feat-slider-info p {
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    font-family: 'AktivGrotesk-Light'; 
}
.home-feat-all-btn {
    display: flex;
    justify-content: center;
    padding-top: 46px;
}
.home-feat-all-btn a {
    font-size: 14px;
    letter-spacing: 0.7px;
    color: #000000;
    text-transform: uppercase;
    font-family: 'AktivGrotesk-Regular';
    width: 232px;
    height: 56px;
    border: 1px solid #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-testimonial {
    padding-top: 135px;
    padding-bottom: 133px;
    background: #0f0f0f !important;
}
.home-testimonial-main {
    text-align: center;
}
.home-testimonial-main h6 {
    font-size: 16px;
    letter-spacing: 3.2px;
    color: #fff;
    font-family: 'AktivGrotesk-Regular';
    text-transform: uppercase;
    padding-bottom: 25px;
}
.home-testimonial-main h2 {
    font-size: 54px;
    line-height: 66px;
    color: #fff;
font-family: 'ChronicleDisplay Light';
    max-width: 1022px;
    margin: 0 auto;
    padding-bottom: 16px;
}
.home-testimonial-main p {
    font-size: 24px;
    line-height: 58px;
    color: #fff;
    font-family: 'ChronicleDisplay XLight';
    padding-bottom: 16px;
}
.home-testimonial-main span {
    font-size: 16px;
    color: #fff;
    font-family: 'AktivGrotesk-Light';
}
.home-acc {
    padding: 115px 0;
}
.home-acc-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.home-acc-left {
    width: 57.3%;
}
.home-acc-left img {
    width: 100%;
}
.home-acc-right {
    width: 42.7%;
    padding-left: 103px;
} 
.home-acc-right .welcome-title {
    padding-bottom: 0;
    text-align: unset;
}
.home-acc-right .welcome-title h2 {
    line-height: 50px;
    padding-bottom: 31px;
}
.home-acc-right .welcome-title p {
    max-width: 480px;
    margin: unset;
}
.home-right-acc-main {
    padding-top: 20px;
}
.home-right-acc-main .accordion-item{
    border-color: #dddddd;
}
.accordion-button:focus {
    z-index: unset;
    border: unset;
    box-shadow: unset;
}
.accordion-button:not(.collapsed) {
    background: unset;
    box-shadow: unset;
}
.home-right-acc-main .accordion-button {
    font-size: 24px;
    color: #000000;
    padding: 13px 0;
    padding-left: 0;
    padding-right: 0;
    font-family: 'ChronicleDisplay Light';
}
.home-right-acc-main .accordion-body {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}
.home-right-acc-main .accordion-body p {
    font-size: 16px;
    line-height: 24px;
    color: #000;
    font-family: 'AktivGrotesk-Light'; 
}
.home-right-acc-main  .accordion-button::after {
    background: url(../images/home-acc-plus.webp) no-repeat;
    width: 11px;
    height: 12px;
    background-size: 11px 12px;
}
.home-right-acc-main .accordion-button:not(.collapsed)::after {
    background: url(../images/minus-icon.webp);
    width: 11px;
    height: 2px;
    background-size: 11px 2px;
}
.home-acc-btn {
    padding-top: 52px;
}
.home-acc-btn a {
    font-size: 14px;
    letter-spacing: 0.7px;
    color: #000000;
    text-transform: uppercase;
    font-family: 'AktivGrotesk-Regular';
    width: 206px;
    height: 56px;
    border: 1px solid #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ready-main {
    position: relative;
}
.ready-img img {
    width: 100%;
}
.ready-info {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ready-content {
    text-align: center;
}
.ready-content h2 {
    font-size: 56px;
    line-height: 56px;
    letter-spacing: 5.6px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'ChronicleDisplay Light';
    padding-bottom: 28px;
}
.ready-content p {
    font-size: 20px;
    line-height: 28px;
    color: #ffffff;
    font-family: 'AktivGrotesk-Thin';
    padding-bottom: 29px;
}
.ready-btn {
    display: flex;
    justify-content: center;
}
.ready-btn a {
    font-size: 14px;
    letter-spacing: 0.7px;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'AktivGrotesk-Regular';
    width: 206px;
    height: 56px;
    border: 1px solid #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ready-btn a:hover {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
}
.footer-main {
    background-color: #0f0f0f;
    padding-top: 80px;
    padding-bottom: 60px;
}
.footer-top-flex {
    display: flex;
}
.footer-top-left {
    width: 73.6%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-right: 260px;
}
.footer-info{
    padding-top: 28px;
}
.footer-info ul li , .footer-info ul li a {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-family: 'AktivGrotesk-Light';
}
.footer-link-block ul li a {
    font-size: 12px;
    letter-spacing: 2.4px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'AktivGrotesk-Regular';
}
.footer-link-block ul li {
    padding-bottom: 10px;
}
.footer-link-block ul li:last-child {
    padding-bottom: 0;
}
.footer-top-right {
    width: 26.4%;
}
.footer-newsletter h2 {
    font-size: 42px;
    line-height: 56px;
    letter-spacing: 3.15px;
    color: #fff;
    font-family: 'ChronicleDisplay Light';
    margin-top: -5px;
    padding-bottom: 16px;
}
.footer-newsletter p {
    font-size: 14px;
    line-height: 28px;
    color: #fff;
    font-family: 'AktivGrotesk-Thin';
}
.footer-news-flex {
    position: relative;
    border-bottom: 1px solid #acacac;
    padding-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
}
.footer-news-input input {
    font-size: 16px;
    color: #fff;
    font-family: 'AktivGrotesk-Light'; 
    border: unset;
    background: transparent;
}
.footer-news-input input::placeholder {
    color: #fff;
}
input:focus {
    outline: none;
}
.footer-news-submit input{
    font-size: 0;
    background-color: unset;
    background-image: url(../images/footer-submit-arrow.webp);
    background-repeat: no-repeat;
    width: 15px;
    height: 12px;
    border: unset;
    filter: invert(1);
}
.footer-bottom-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 70px;
}
.footer-bottom-left {
    width: 73.6%;
}
.footer-bottom-left ul {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.footer-bottom-left ul li ,.footer-bottom-left ul li a {
    font-size: 12px;
    color: #fff;
    font-family: 'AktivGrotesk-Light'; 
}
.footer-bottom-right {
    width: 26.4%;
}
.footer-bottom-right ul {
    display: flex;
    align-items: center;
    column-gap: 8px;
}
.footer-news-submit {
    display: flex;
}
.mob-banner-img {
    display: none;
}
.inner-banner-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-bottom: 110px;
}
.inner-banner-content {
    text-align: center;
}
.inner-banner-content h6 {
    font-size: 24px;
    line-height: 50px;
    letter-spacing: 4.8px;
    color: #ffffff;
    font-family: 'AktivGrotesk-Regular';
    text-transform: uppercase;
}
.inner-banner-content h1 {
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 4.8px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: 'ChronicleDisplay Light';
    padding-top: 24px;
}
.inner-banner-content h1 span {
    font-family: 'ChronicleDisplay XLight';
    color: #f2dac3;
}
.about-main {
    background-color: #fbf9f7;
}
.about-founders-flex {
    display: flex;
    flex-wrap: wrap;
    align-items:center;
}
.about-founders-left {
    width: 49.8%;
/*     position: sticky; */
    height: 100%;
    top: 0;
}
.about-founders-left img{
    width: 100%;
} 
.about-founders-right {
    width: 50.2%;
    padding-left: 90px; 
	/*max-width: 1316px;*/
 /*   margin: 0 auto;*/
	/*text-align: center;*/
}
.about-title h2 {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 4px;
    color: #000000;
    text-transform: uppercase;
    font-family: 'ChronicleDisplay Light';
    padding-bottom: 25px;
}
.about-title p , .about-title , .about-title p , .about-title span{
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    font-family: 'AktivGrotesk-Thin';
    max-width: 1316px;
	padding-top: 12px;
}
.read-more-main {
	padding-top:10px;
}
.about-title p+p {
    padding-top: 12px;
}
.about-title-content a.read-more {
	font-size: 14px;
    letter-spacing: 0.7px;
    color: #000;
    text-transform: uppercase;
    font-family: 'AktivGrotesk-Regular';
}
.about-title h6 {
    font-size: 16px;
    letter-spacing: 1.6px;
    color: #9a9a9a;
    text-transform: uppercase;
    font-family: 'AktivGrotesk-Regular';
    padding-bottom: 21px;
}
.about-essence {
    padding-bottom: 115px;
}
.about-essence-title-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    padding-bottom: 55px;
}
.about-essence-title-flex .about-title {
    width: 80%;
    padding-right: 137px;
}
.about-essence p {
    max-width: unset;
}
.about-essence-btn {
    width: 20%;
    display: flex;
    justify-content: end;
}
.about-essence-btn a{
    font-size: 14px;
    letter-spacing: 0.7px;
    color: #000000;
    text-transform: uppercase;
    font-family: 'AktivGrotesk-Regular';
    width: 232px;
    height: 56px;
    border: 1px solid #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-essence-width {
    padding-left: 231px;
}
.about-process {
    padding-top: 108px;
    padding-bottom: 115px;
}
.about-process .about-title {
    text-align: center;
	max-width:unset;
}
.about-process .about-title p {
    max-width: unset;
}
.about-process .about-title h2 {
    padding-bottom: 12px;
}
.about-process .about-title p span {
    font-family: 'AktivGrotesk-Regular';
}
.about-process-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    padding-top: 45px;
}
.about-process-block {
    width: 33.33%;
    padding: 0 15px;
}
.about-process-block-inner {
    padding-top: 45px;
    padding-left: 48px;
    padding-right: 52px;
    padding-bottom: 38px;
    border: 2px solid #efefef;
    height: 100%;
}
.about-process-block-inner-top-flex {
    display: flex;
    align-items: center;
}
.about-process-block-inner-top-flex span {
    font-size: 40px;
    line-height: 40px;
    color: #000000;
    /* letter-spacing: 4px; */
    font-family: 'ChronicleDisplay Light';
    width: 79px;
    height: 79px;
    border-radius: 50%;
    border: 1px solid #dedede;
    background-color: #fbf9f7;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-process-block-inner-top-flex h6 {
    font-size: 16px;
    letter-spacing: 3.2px;
    color: #000000;
    text-transform: uppercase;
    font-family: 'AktivGrotesk-Regular';
    padding-left: 15px;
}
.about-process-block-inner-bottom {
    padding-top: 20px;
}
.about-process-block-inner-bottom p {
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    font-family: 'AktivGrotesk-Thin';
}
.about-contact-btn {
    display: flex;
    justify-content: center;
    padding-top: 40px;
}
.about-contact-btn a {
    font-size: 14px;
    letter-spacing: 0.7px;
    color: #000000;
    text-transform: uppercase;
    font-family: 'AktivGrotesk-Regular';
    width: 232px;
    height: 56px;
    border: 1px solid #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-find {
    padding-top: 140px;
    padding-bottom: 131px;
    background: #0f0f0f;
}
.about-find .about-title h2 {
    color: #fff;
}
.about-find .about-title {
    text-align: center;
}
.about-find-info {
    padding-top: 40px;
}
.about-find-info h6 {
    font-size: 24px;
    line-height: 46px;
    letter-spacing: 2.4px;
    color: #838383;
    text-transform: uppercase;
    font-family: 'ChronicleDisplay XLight';
    text-align: center;
    max-width: 1316px;
    margin: 0 auto;
}
.about-find-info h6 span {
   color: #fff;
}
.services-passion {
    background: #fbf9f7;
    padding-top: 53px;
}
.services-passion .welcome-title {
    padding-bottom: 85px;
    max-width: 580px;
    margin: 0 auto;
}
.services-passion .welcome-title img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services-passion .welcome-title h6 {
    font-family: 'AktivGrotesk-Regular';
    color: #9a9a9a;
    padding-bottom: 16px;
}
.services-passion .welcome-title p {
    max-width: 806px;
}
.services-grid {
    background: #fbf9f7;
}
.service-grid-part {
    position: relative;
}
.service-grid-img {
    width: 50%;
}
.service-grid-info {
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
}
.service-grid-info .container-main {
    height: 100%;
    display: flex;
    justify-content: flex-end;
}
.service-grid-img img{
    width: 100%;
}
.service-grid-content {
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 50%;
    padding-left: 140px;
}
.service-grid-content .welcome-title {
    padding-bottom: 0;
    text-align: unset;
}
.service-grid-content .welcome-title h6 {
    font-family: 'AktivGrotesk-Regular';
    color: #9a9a9a;
    padding-bottom: 16px;
}
.service-grid-content .welcome-title h2 {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 4px;
}
.service-grid-content .welcome-title h2 span {
    color: #9a9a9a;
    /* display: block; */
}
.service-grid-content .welcome-title p {
    max-width: 547px;
    margin: unset;
}
.service-btn {
    padding-top: 28px;
}
.service-btn a {
    font-size: 14px;
    letter-spacing: 0.7px;
    color: #000000;
    text-transform: uppercase;
    font-family: 'AktivGrotesk-Regular';
    width: 232px;
    height: 56px;
    border: 1px solid #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-grid-rev .service-grid-flex {
    display: flex;
    justify-content: end;
}
.service-grid-rev .service-grid-info .container-main {
    justify-content: flex-start;
}
.service-grid-rev .service-grid-content {
    padding-left: 0;
    padding-right: 140px;
}
.service-bottom-grid {
    padding: 95px 0;
    background-color: #f5f2f0;
}
.service-bottom-grid .container-main {
    max-width: 1180px;
}
.service-bottom-grid .service-grid-info {
    position: unset;
    width: 50%;
    height: unset;
}
.service-bottom-grid .service-grid-content {
    width: 100%;
    padding-left: 90px;
}
.service-bottom-grid .service-grid-flex {
    display: flex;
    flex-wrap: wrap;
}
.about-find.service-testional .home-testimonial-main h2 {
    max-width: 1039px;
}
.about-find.service-testional .home-testimonial-main p {
    font-family: 'AktivGrotesk-Light';
    padding-bottom: 0;
}
.contact-main {
    background: #fbf9f7;
    padding-top: 81px;
    padding-bottom: 105px;
}
.contact-main .container-main {
    max-width: 1395px;
}
.contact-flex {
    display: flex;
    flex-wrap: wrap;
    /* align-items: flex-end; */
    align-items: center;
}
.contact-left {
    width: 51.4%;
	height: 880px;
}
.contact-left img {
    width: 100%;
	height: 100%;
    object-fit: cover;
}
.contact-right {
    width: 48.6%;
    padding-left: 87px;
}
.contact-right .welcome-title {
    text-align: unset;
    padding-bottom: 0;
}
.contact-right .welcome-title h2 {
    padding-bottom: 0;
    margin-top: -10px;
}
.contact-info {
    padding-top: 14px;
    padding-bottom: 25px;
}
.contact-info ul li , .contact-info ul li a {
    font-size: 20px;
    line-height: 36px;
    color: #000000;
    font-family: 'AktivGrotesk-Thin';
}
.contact-form img {
    width: 100%;
}
.before-after-tab-main {
    background: #fbf9f7;
    padding-top: 64px;
}
.before-after-tab-flex {
    display: flex;
    align-items: center;
}
.before-after-tab-left span {
    font-size: 16px;
    color: #000000;
    font-family: 'AktivGrotesk-Light';
}
.before-after-tab-right {
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.before-after-tab-right .nav-pills .nav-link.active {
    background: unset;
} 
.before-after-tab-right .nav-pills .nav-link {
    font-size: 12px;
    letter-spacing: 2.4px;
    color: #000000;
    border-radius: unset;
    padding: 0;
    font-family: 'AktivGrotesk-Regular';
    text-transform: uppercase;
    margin-right: 40px;
    position: relative;
}
.before-after-tab-right .nav-pills .nav-link.active::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 3px;
    background: #c1c1c1;
    bottom: -5px;
}
.gallery-tab .before-after-tab-right .nav-pills .nav-link.active::before {
    bottom: -14px;
}
.before-after-tab-right .nav-item:last-child .nav-link {
    margin-right: 0;
}
.before-after-tab-border {
    padding-bottom: 12px;
    border-bottom: 1px solid #eae4df;
}
.before-after-tab {
    padding-top: 108px;
    padding-bottom: 115px;
}
.before-after-tab-title h1{
    font-size: 32px;
    line-height: 44px;
    letter-spacing: 3.2px;
    color: #000000;
    text-transform: uppercase;
    font-family: 'ChronicleDisplay Light';
    text-align: center;
    max-width: 810px;
    margin: 0 auto;
}   
.before-after-tab-title h1 span {
    color: #9a9a9a;
}
.before-after-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -34px;
    padding-top: 60px;
}
.before-after-block {
    width: 50%;
    padding: 0 34px;
    padding-bottom: 68px;
}
.before-after-block img {
    width: 100%;
}
.looking-more {
    padding-top: 60px;
    text-align: center;
}
.looking-more h2 {
    font-size: 48px;
    line-height: 50px;
    letter-spacing: 4.8px;
    color: #000000;
    font-family: 'ChronicleDisplay Light';
    text-transform: uppercase;
}
.looking-more h2 span {
    color: #9a9a9a;
}
.looking-more a {
    font-size: 14px;
    letter-spacing: 0.7px;
    color: #000000;
    text-transform: uppercase;
    font-family: 'AktivGrotesk-Regular';
    width: 232px;
    height: 56px;
    border: 1px solid #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: 45px;
}
.before-testimonial.home-testimonial {
    background: #fff;
    padding-top: 118px;
    padding-bottom: 125px;
}
.before-testimonial.home-testimonial .home-testimonial-main h2 {
    padding-bottom: 27px;
}
.before-testimonial.home-testimonial .home-testimonial-main p {
    max-width: 839px;
    line-height: 34px;
    margin: 0 auto;
    padding-bottom: 37px;
}
.before-testimonial.home-testimonial .home-testimonial-main span {
    font-size: 18px;
}
.portfolio-tab-inner .before-after-flex {
    padding-top: 0;
}
.before-after-tab-main.portfolio-tab-main .before-after-tab-right {
    position: unset;
    transform: unset;
}
.before-after-tab-main .before-after-tab {
    padding: 90px 0;
}
.portfolio-block-info {
    padding-top: 14px;
}
.portfolio-block-info h2 {
    font-size: 30px;
    color: #000000;
    font-family: 'ChronicleDisplay Light';
}
.portfolio-block-info h2 a {
    color: #000000;
}
.portfolio-tab-inner .looking-more a {
    width: 205px;
}
.portfolio-testimonial .home-testimonial-main p {
    max-width: 852px !important;
}
.pd-main {
    background-color: #fbf9f7;
    border-top: 1px solid #d2c6ba;
}
.pd-back-btn {
    padding-top: 25px;
}
.pd-back-btn a {
    font-size: 16px;
    color: #000000;
    font-family: 'AktivGrotesk-Thin';
    display: inline-flex;
    align-items: center;
    column-gap: 7px;
}
.pd-info-main {
    padding-top: 69px;
}
.pd-info-main h1 {
    font-size: 30px;
    color: #000000;
    font-family: 'ChronicleDisplay Light';
    padding-bottom: 8px;
}
.pd-info-main h6 {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    font-family: 'AktivGrotesk-Thin';
    color: #000000;
    padding-bottom: 10px;
}
.pd-info-main p {
    font-size: 18px;
    line-height: 26px;
    font-family: 'AktivGrotesk-Thin';  
    color: #000000;
    max-width: 455px;
}
.pd-slider {
    position: relative;
    margin-top: 45px;
}
.pd-slider .owl-carousel .owl-item {
    opacity: 0.5; 
    transition: opacity 0.3s ease; 
}
.pd-slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
}
.pd-slider-arrows-flex {
    display: flex;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}
.pd-slider-arrows-flex button {
    background: unset;
    border: unset;
}
.pd-slider-arrows-flex button.prev-btn1.disabled {
    opacity: 0;
}
.pd-slider-arrows-flex button.next-btn1.disabled {
    opacity: 0;
}
/* .pd-slider-arrows-flex button.prev-btn1 {
    opacity: 0;
} */
.pd-next-prev {
    padding: 55px 0;
}
.pd-next-prev-flex {
    display: flex;
    justify-content: center;
    column-gap: 110px;
}
.pd-next-prev-flex a {
    font-size: 12px;
    letter-spacing: 2.4px;
    color: #000000;
    font-family: 'AktivGrotesk-Thin';
    text-transform: uppercase;
    display: flex;
    align-items: center;
    column-gap: 7px;
}
#home-acc.accordion .collapsing {
    transition: height 0.45s ease;
}
.home-before-after-img img {
    width: 100%;
}
.contact-map {
    height: 404px;
}
.contact-map iframe {
	width:100%;
	height:100%;
}
.contact-map p {
    height: 100%;
}
.contact-map img {
    width: 100%;
}
.portfolio-block-info p {
    font-size: 18px;
    line-height: 26px;
    color: #000;
    font-family: 'AktivGrotesk-Thin';
    max-width: 455px;
    padding-top: 6px;
}
.about-banner-main .inner-banner-info {
    padding-bottom: 170px;
}
.about-wow-logo {
    padding-top: 154px;
    padding-bottom: 142px;
    background: #fbf9f7;
}
.about-wow-logo-main {
    text-align: center;
}
.about-wow-logo-main h2 {
    font-size: 70px;
    line-height: 40px;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: #000000;
    font-family: 'ChronicleDisplay Light';
    padding-bottom: 16px;
}
.about-wow-logo-main h6 {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: #000000;
    font-family: 'AktivGrotesk-Regular';
}
.about-wow-logo-main p {
    font-size: 24px;
    line-height: 40px;
    color: #000000;
    font-family: 'ChronicleDisplay Light';
}
.about-founders.home-acc {
    padding-top: 0;
}
.about-team-main {
    padding-top: 125px;
    padding-bottom: 122px;
}
.about-team-width {
    max-width: 1018px;
    margin: 0 auto;
}
.about-team-img img {
    width: 100%;
}
.about-team-main .about-title {
    text-align: center;
    padding-top: 60px;
}
.about-team-main .about-title h2 {
    padding-bottom: 25px;
}
.about-team-main .about-title p {
    max-width: unset;
}
.service-details {
    position: relative;
}
.service-details-img img {
    width: 100%;
}
.service-details-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.service-details-content .welcome-title {
    padding-bottom: 0;
}
.service-details-content .welcome-title h2 {
    color: #fff;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 4px;
    padding-bottom: 31px;
}
.service-details-content .welcome-title p {
    color: #fff;
    max-width: 710px;
}
/* .about-find.service-testional {
    background: unset;
}
.service-process {
    padding-bottom: 0 !important; 
} */
.gallery-tab-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -22px;
    row-gap: 44px;
}
.gallery-tab-block {
    width: 33.33%;
    padding: 0 22px;
}
.gallery-tab-img img {
    width: 100%;
}
.gallery-tab ul {
    justify-content: center;
}
.gallery-tab .looking-more {
    padding-top: 120px;
}


.home-banner-main.about-banner-main .home-banner-content h1 {
    font-size: 32px;
    text-align: center;
    line-height: 55px;
}
.home-banner-main.about-banner-main .home-banner-content h1 span {
    display: block;
    font-size: 75px;
    font-family: serif;
}

/* 23-07-2024 product-detail css */

.breadcrumbs {
    border-top: 2px solid #f1f1f1;
    padding-top: 4px;
}
.breadcrumbs-main ul li {
    display: inline-block;
    padding-left: 5px;
    font-size: 12px;
    line-height: 46px;
    letter-spacing: 0.3px;
    font-family: 'Montserrat-Regular';
}
.breadcrumbs-main ul li a{
    font-family: 'Montserrat-Medium';
    color: #000000;
}
.product-details-flex {
    display: flex;
    padding-top: 5px;
    justify-content: space-between;
    padding-bottom: 105px;
    border-bottom: 1px solid #d0d0d0;
}
.product-details-left {
    width: 6.1%;
}
.product-detail-left-block {
    width: 90px;
    height: 80px;
    border: 2px solid #e7e7e7;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}
.product-detail-left-block:last-child{
    margin-bottom: 0;
}
.product-detail-center {
    width: 58.2%;
}
.product-detail-center img {
    width: 100%;
}
.product-detail-right {
    width: 33%;
    padding-left: 29px;
}
.product-detail-right-heading h4{
    font-size: 22px;
    line-height: 46px;
    letter-spacing: 0px;
    color: #000000;
    font-weight: 500;
    font-family: 'BigCaslon-Medium';
    margin-top: -14px;
}
.product-detail-right-heading span{
    font-size: 14px;
    line-height: 46px;
    letter-spacing: 1px;
    color: #000000;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Montserrat-Medium';
}
.product-counter-flex {
    display: flex;
    justify-content: space-between;
    padding-top: 22px;
    padding-bottom: 45px;
}
.product-count {
    width: 35%;
    display: flex;

}
.product-count button{
    /* font-size: 12px;
    font-family:Montserrat-SemiBold; */
    background: transparent;
    border: 1px solid #c9c9c9;
    width: 53px;
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-count input {
    width: 53px;
    height: 47px;
    display: flex;
    text-align: center;
    border: 1px solid #c9c9c9;
    font-family: 'Montserrat-Medium';
    font-size: 14px;
    letter-spacing: 1px;
    color: #000000;
    font-weight: 500;
}
.add-cart-btn {
    width: 65%;
    padding-left: 8px;
}
.add-cart-btn a {
    font-size: 12px;
    letter-spacing: 2px;
    width: 100%;
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Montserrat-SemiBold';
}
.product-accordion .accordion-button{
    padding: 0;
    border-radius: unset !important;
    border: unset;
    box-shadow: unset;
    /* border-top: 1px solid #d0d0d0; */
    font-family: 'Montserrat-SemiBold';
    font-size: 14px;
    line-height: 34px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-top: 12px;
    padding-bottom: 12px;
    color: #000000;
    font-weight: 600;
}
/* .product-accordion .accordion-item:last-child .accordion-button{
    border-bottom: 1px solid #d0d0d0;
} */

.product-accordion .accordion-button:not(.collapsed) {
    /* color: unset !important; */
    background-color: unset !important;
    box-shadow: unset !important;
}
.product-accordion .accordion-item{
    border-bottom: 1px solid #d0d0d0;
    border-left: 0;
    border-right: 0;
    border-radius: unset;
}
.product-accordion .accordion-body{
    padding: 0;
    font-family: 'Montserrat-Regular';
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
    padding-bottom: 22px;
    padding-top: 10px;
    color: #2c2c2c;
    font-weight: 400;
}
.product-accordion .accordion-button:not(.collapsed)::after{
    background: unset;
    content: '-';
    font-size: 30px;
    color: #525252;
    font-family: 'Montserrat-Light';
    height: unset;
    width: unset;
}
.product-accordion .accordion-button::after{
    background: unset;
    content: '+';
    font-size: 30px;
    color: #525252;
    font-family: 'Montserrat-Light';
    height: unset;
    width: unset;
}
.content-carousel {
	width:66%;

    padding-left: 110px;
}
.content-carousel .owl-carousel div {
	width: 100%;
}
.content-carousel .owl-carousel .owl-controls .owl-dot {
	background-size: cover;
	margin-top: 10px;
}
.content-carousel .owl-carousel .owl-dots {
    position: absolute;
    top: 0;
    left: -110px;
    width: 90px;
    /* height: 80px; */
}
.content-carousel .owl-carousel .owl-dot {
    background-repeat: round;
    background-size: cover;
}
.content-carousel button.owl-dot.dotnumber1 {
    width: 90px     !important;
    height: 80px !important;
    margin-bottom: 20px;
    border: 2px solid #e7e7e7;
}
.content-carousel button.owl-dot.dotnumber2 {
    width: 90px     !important;
    height: 80px !important;
    margin-bottom: 20px;
    border: 2px solid #e7e7e7;
}
.content-carousel button.owl-dot.dotnumber3 {
    width: 90px     !important;
    height: 80px !important;
    margin-bottom: 20px;
    border: 2px solid #e7e7e7;
}
.content-carousel button.owl-dot.dotnumber4 {
    width: 90px     !important;
    height: 80px !important;
    margin-bottom: 20px;
    border: 2px solid #e7e7e7;
}
.content-carousel button.owl-dot.dotnumber5 {
    width: 90px     !important;
    height: 80px !important;
    margin-bottom: 20px;
    border: 2px solid #e7e7e7;
}
.content-carousel button.owl-dot.dotnumber6 {
    width: 90px     !important;
    height: 80px !important;
    border: 2px solid #e7e7e7;
}
.also-like{
    /* padding: 70px 0; */
    padding-bottom: 100px;
    padding-top: 58px;
}
.also-like-heading h2{
    font-size: 26px;
    line-height: 46px;
    letter-spacing: 0px;
    color: #000000;
    font-weight: 500;
    font-family: 'BigCaslon-Medium';
}
.also-like-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -17px;
    padding-top: 10px;
}
.also-like-flex-block {
    width: 25%;
    padding: 0 17px;
}
/* .also-like-flex-block-img{
    height: 294px;
    background: #eeeeee;
    width: 100%;
    border: none;
} */
.also-like-flex-block-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.also-like-flex-info h4{
    font-size: 22px;
    line-height: 46px;
    letter-spacing: 0px;
    color: #000000;
    font-weight: 500;
    font-family: 'BigCaslon-Medium';
}
.also-like-flex span{
    font-size: 14px;
    letter-spacing: 1px;
    color: #000000;
    font-weight: 500;
    font-family: 'Montserrat-Medium';
    display: block;
}
.also-like-flex a.add_to_cart_a{
    font-size: 12px;
    letter-spacing: 2px;
    font-family: 'Montserrat-SemiBold';
    color: #010101;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    height: 42px;
    border: 1px solid #000;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* shop css */

.shop-banner {
    /*padding-top: 67px;*/
    /*padding-bottom: 62px;*/
    border-top: 2px solid #f1f1f1;
}

.shop-banner-heading h1{
    font-size: 66px;
    line-height: 70px;
    font-family: 'BigCaslon-Medium';
    text-transform: uppercase;
    text-align: center;
    color: #000000;
    font-weight: 500;
}

.shop-page-links-flex-main {
    white-space: nowrap;
}

.shop-page-links-flex-main a{
    font-size: 14px;
    letter-spacing: 1.4px;
    line-height: 46px;
    font-family: 'Montserrat-Medium';
    color: #000000;
    text-transform: uppercase;
    padding-right: 24px;
}
.shop-page-links-main {
    overflow-x: scroll;
    white-space: nowrap;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    cursor: grab;
}
.shop-page-links-main::-webkit-scrollbar {
    height: 6px;
}
.shop-page-links-main::-webkit-scrollbar-track {
    -webkit-box-shadow: inset -2px -1px 0px 5px rgba(241,241,241,1);
    -moz-box-shadow: inset -2px -1px 0px 5px rgba(241,241,241,1);
    box-shadow: inset -2px -1px 0px 5px rgba(241,241,241,1);
}
.shop-page-links-main::-webkit-scrollbar-thumb {
    height: 6px;
    background-color: #cbcbcb;
}
.shop-page-links-main ul{
    padding: 0;
}
.shop-page-links-main ul li {
    list-style: none;
    display: inline-block;
}
.shop-page-links-main ul li a{
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 46px;
    font-weight: 500;
    font-family: 'Montserrat-Medium';
    color: #000000;
    text-transform: uppercase;
    padding-right: 24px;
}
.shop-page-links-main ul li:last-child a{
    padding-right: 0;
}
.shop-page-main-top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 43px;
}
.shop-page-main-top-block span, .shop-page-main-top-block label{
    font-size: 16px;
    letter-spacing: 2px;
    color: #000000;
    font-weight: 500;
    font-family: 'Montserrat-Medium';
}
.shop-page-main-top-block label{
    color: #818181;
}
.shop-page-main-top-block select{
    font-size: 16px;
    letter-spacing: 2px;
    color: #000000;
    font-weight: 500;
    font-family: 'Montserrat-Medium';
    margin-left: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearence: none;
    border: unset;
    background: transparent;
    background: url(../images/drop-down-arrow.webp);
    background-repeat: no-repeat;
    background-position: calc(100% - 0px) 8px;
    width: 145px;
    padding: 0px;
}
.shop-page-main-top-block select:focus{
    outline: 0;
}
.shoppage-flex {
    row-gap: 65px;
    padding-top: 40px;
}
.shoppage-list {
    padding-bottom: 100px;
}
.also-like-flex-info a {
    border-radius: unset !important;
}

.shop-banner-heading{
    max-width: 580px;
    margin:0 auto;
}

.shop-banner-heading img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
