/*
Theme Name: Cosmeticsm Theme
Text Domain: Cosmeticsm Theme
Version: 1.9.2
Description: Cosmeticsm Theme by Ad2sky
Tags: responsive, custom
Author: Ad2sky
Author URI: https://ad2sky.com
*/


@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700&display=swap');

:root {
    /*----Global Colors
    --grey-color: #D9D9D9;FFEDD7
    --gold-color: #F7C094;
    --black-color: #000000;
    --orange-color: #C76B66;
    --button-light-color: #BABABA;
    --button-highlight-color: #C76B66;
    ----*/
    --white-color: #ffff;
    --grey-color: #FFEDD7;
    --gold-color: #F7C094;
    --black-color-font: #000000;
    --black-color: #82813D;
    --orange-color: #82813D;
    --button-light-color: #FFEDD7;
    --button-highlight-color: #82813D;
    /*----Global Typography----*/
    --fontFamily-urbanist: 'Manrope', sans-serif;

    --fontSize-display-1: calc(1.3rem + 6.7vw);
    --fontSize-headline-1: calc(2rem + 2.5vw);
    --fontSize-headline-2: calc(1.3rem + 2.4vw);
    --fontSize-title-1: calc(1.6rem + 1.2vw);
    --fontSize-title-2: 2.2rem;
    --fontSize-title-3: 2.1rem;
    --fontSize-title-4: calc(1.6rem + 1.2vw);
    --fontSize-body-1: 2.4rem;
    --fontSize-body-2: 1.6rem;
    --fontSize-body-3: 1.8rem;
    --fontSize-body-4: 1.6rem;
    --fontSize-label-1: 1.4rem;
    --fontSize-label-2: 1.2rem;

    --weight-regular: 400;
    --weight-medium: 500;
    --weight-bold: 700;

    --lineHeight-1: 1em;
    --lineHeight-2: 1.2em;
    --lineHeight-3: 1.5em;
    --lineHeight-4: 1.6em;
    --lineHeight-5: 1.85em;
    --lineHeight-6: 1.4em;

    --letterSpacing-1: 0.15em;
    --letterSpacing-2: 0.4em;
    --letterSpacing-3: 0.2em;
    --letterSpacing-4: 0.3em;
    --letterSpacing-5: 3px;

    /*---Border Radius---*/
    --radius-8: 8px;
    --radius-24: 24px;
    --radius-16: 16px;
    --radius-circle: 50%;
    --border-radius-main: 8px;


    /*---Transition Times---*/
    --transition-1: 250ms ease;
    --transition-2: 500ms ease;
    --transition-3: 1000ms ease;

    /*---Section Space---*/
    --section-space: 70px;

    /*---Shadow---*/
    --shadow-default:rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;

}

/*---Reset---*/

*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*border: 1px solid black;*/
}

li {list-style: none;}

a,
img,
data,
span,
input,
button,
select,
textarea { display: block;}

a {
    color: inherit;
    text-decoration: none;
}

img { height: auto;}

input,
button,
select,
textarea {
    background: none;
    border: none;
    font: inherit;
}

input,
select,
textarea {
    width: 100%;
    outline: none;
}

button { cursor: pointer;}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white-color);
    color: var(--black-color-font);
    font-family: var(--fontFamily-urbanist);
    font-size: var(--fontSize-body-4);
    font-weight: var(--weight-regular);
    line-height: var(--lineHeight-5);
    overflow: hidden;
    overflow-y: scroll;
}


body.loaded {overflow: overlay;}





/*--------MAIN CSS--------*/

/*----Default Stuff----*/
@media only screen and (max-width: 600px) {
    .container {
        padding: 1em;
    }
}
@media only screen and (min-width: 600px) {
    .container {
        padding-inline: 8em;
    }
}

.logo_image {
    position: absolute;
    top: 0px;
    height: auto;
    width: 15em;

}






.seperator {
    width: 8px;
    height: 8px;
    border: 1px solid var(--black-color);
    transform: rotate(45deg);
}

.hover_underline {
    position:relative;
    max-width: max-content;

}
.hover_underline::after {
    content:"";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    border-block: 1px solid var(--gold-color);
    transform: scaleX(0.2);
    opacity: 0;
    transition: var(--transition-2);
}
.hover_underline:is(:hover, :focus-visible)::after {
    transform: scaleX(1);
    opacity: 1;

}
.btn {
    background-color: var(--black-color);
    box-sizing: border-box;
    padding: 3px 16px;
    color:#FFFFFF;
    border-radius: var(--border-radius-main);
    font-weight: var(--weight-bold);
    font-size: var(--fontSize-body-4);
    width: fit-content;
    transition: var(--transition-2);
}
.btn:hover {
    background-color: var(--button-light-color);
    color:black;
}

.btn_gold {
    background-color: var(--gold-color);
    box-sizing: border-box;
    padding: 3px 16px;
    color: #FFFFFF;
    border-radius: var(--border-radius-main);
    font-weight: var(--weight-bold);
    font-size: var(--fontSize-body-4);
    width: fit-content;
    transition: var(--transition-2);
}
.btn_gold:hover {
    background-color: var(--button-light-color);
    color: var(--black-color-font);
}

.btn_orange {
    background-color: var(--orange-color);
    box-sizing: border-box;
    padding: 3px 16px;
    color: #FFFFFF;
    border-radius: var(--border-radius-main);
    font-weight: var(--weight-bold);
    font-size: var(--fontSize-body-4);
    width: fit-content;
    transition: var(--transition-2);
}
.btn_orange:hover {
    background-color: var(--button-light-color);
    color:black;
}

.btn_grey {
    background-color: var(--button-light-color);
    box-sizing: border-box;
    padding: 3px 16px;
    color:black;
    border-radius: var(--border-radius-main);
    font-weight: var(--weight-bold);
    font-size: var(--fontSize-body-4);
    width: fit-content;
    transition: var(--transition-2);
}

.btn_grey:hover {
    background-color: var(--black-color);
    color:white;
}
.text_center {
    text-align: center;
}

/*--Default Typography--*/

.body-1 {
    font-size: var(--fontSize-body-1);
}
.body-2 {
    font-size: var(--fontSize-body-2);
}
.body-3 {
    font-size: var(--fontSize-body-3);
}
.body-4 {
    font-size: var(--fontSize-body-4);
}

.title-1 {
    font-size: var(--fontSize-title-1);
    font-weight: var(--weight-bold);
    line-height: var(--lineHeight-2);
}
.title-2 {
    font-size: var(--fontSize-title-2);
    font-weight: var(--weight-bold);
    line-height: var(--lineHeight-2);
}
.title-3 {
    font-size: var(--fontSize-title-3);
    font-weight: var(--weight-bold);
    line-height: var(--lineHeight-2);
}
.title-4 {
    font-size: var(--fontSize-title-4);
    font-weight: var(--weight-bold);
    line-height: var(--lineHeight-2);
}

.label-1 {
    font-size: var(--fontSize-label-1); 
}
.label-2 {
    font-size: var(--fontSize-label-2); 
}

.display-1 {
    font-size: var(--fontSize-display-1); 
    font-weight: var(--weight-medium);
}

.headline-1 {
    font-size: var(--fontSize-headline-1); 
    font-weight: var(--weight-medium);
}
.headline-2 {
    font-size: var(--fontSize-headline-2); 
    font-weight: var(--weight-medium);
}



.section {
    padding-block:3em;
    
}
.container {
    max-width: 1440px;
    margin-inline: auto;
}

.paper_service {
    padding-block:1em;
}

.paper_main_header {
    padding-bottom: 0em;
}

.paper_service_header {
    padding-top: 2em;
}

.paper_list {
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    
    padding-block: 0.5em;
}

.paper_list_border {
    border-bottom: solid var(--orange-color) 1px;

}
.service_addons {
    padding-left:1em;
}







/*----Header----*/
@media only screen and (max-width: 600px) {
    .header_banner {
        background-color: var(--grey-color);
        display: none;
    }
    .inner_header {
        border-bottom: solid;
        border-color:var(--gold-color);
    }
}
@media only screen and (min-width: 600px) {
    .header_banner {
    }
}


/*.header .btn {display: none;}*/

.header {
    display: block;
    
    position:relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    /*padding-block: 40px;*/
    z-index: 4;
    
    transition: var(--transition-1);
}

.header.active {
    padding-block: 20px;
    background-color: var(--white-color);
    border-color: var(--black-color);
}

.header .hide {
    transform: translateY(-100%);
    transition-delay: 250ms;
}

.header .container {
    padding-inline: 8em;
    display: flex;
    align-items: center;
}

.nav_open_btn {
    padding: 12px;
    padding-inline-end: 0;
}

.nav_open_btn .line {
    width: 30px;
    height: 2px;
    background-color: var(--black-color);
    margin-block: 4px;
    transform-origin: left;
    visibility: hidden;
    animation: menuBtn 400ms forwards ease-in;
}

@keyframes menuBtn {
    0% {transform: scaleX(0); visibility: visible;}
    50% {transform: scaleX(0.5); visibility: visible;}
    100% {transform: scaleX(1); visibility: visible;}
}

.contact_number {
    padding-top:1em;
    color: var(--gold-color);
    max-width: max-content;
    margin-inline: auto;
    font-weight: var(--weight-bold);
}
.nav_open_btn .line_1 { animation-delay: 200ms;}

.nav_open_btn .line_2 { animation-delay: 300ms;}

.nav_open_btn .line_3 { animation-delay: 400ms;}

.navbar {
    position: fixed;
    background-color: var(--white-color);
    top: 0;
    left: -360px;
    bottom: 0;

    width: 360px;
    padding-inline: 30px;
    overflow-y: auto;
    visibility: hidden;
    z-index: 2;
    transition: var(--transition-2);

}

.navbar.active {
    visibility: visible;
    transform: translateX(360px);
}

.navbar .close_nav_btn {
    color: var(--black-color-font);
    padding: 4px;
    margin-inline-start: auto;
    margin-block: 20px 20px;

}

.navbar .close_nav_btn ion-icon { --ionicon-stroke-width: 30px;}

.logo_text {
    width: 40%;
}

.navbar .logo_text {
    margin-block-end: 30px;
}

.navbar_list {
    border-block-end: 1px solid var(--black-color);
    margin-block-end: 3em;
}

.navbar_item {
    border-block-start: 1px solid var(--black-color);
}

.navbar_link {
    position: relative;
    text-transform: uppercase;
    padding-block: 10px;
    max-width: unset;
}
    
.navbar_link::after { display: none;}

.navbar_link .span { transition: var(--transition-1);}

.navbar_link:is(:hover, :focus-visible, .active) .span {
    color: var(--gold-color);
    transform: translateX(20px);
    font-weight: var(--weight-bold);
}

.navbar_link .seperator {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(45deg);
    opacity: 0;
    transition: var(--transition-1);
}

.navbar_link:is(:hover, :focus-visible, .active) .seperator {
    opacity: 1;
}

.navbar_title {margin-block-end: 15px;}

.navbar_text { margin-block: 10px;}

.sidebar_link { transition: var(--transition-1);}

.sidebar_link:is(:hover, :focus-visible) { color: var(--orange-color);}

.navbar .text_center .seperator {
    margin-block: 30px;
    margin-inline: auto;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-2);
    z-index: 1;
}

.overlay.active {
    opacity: 1;
    pointer-events: all;

}

.nav_button {
    display: block;
    width: 100%;
    margin-block: 30px;
}



/*---Header Banner---*/

.banner_container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-inline: 8em;
    padding-block: 0.5em;
    max-width: 1440px;
    margin-inline: auto;
    

}

.banner_item {
    display: flex;
    justify-content: space-between;
    vertical-align: middle;
    align-items: center;
}

.banner_left {
    font-weight: var(--weight-bold);
    display: flex;
    gap: 15px;
    align-items: center;
}

.banner_right {
    gap: 15px;
}

/*---Header Banner MOBILE---*/
@media only screen and (max-width: 600px) {
    .banner_left {
        width: 100%;
    }
    .banner_right {
        display:none;
        width: 0%;
    }
}

/*--Top Banner Section--*/
.slide-container {
  display: flex;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
}
.service_page.top_banner_header {
    padding-bottom: 1em;
}

.top_banner_left .top_banner_header{
    text-align:center;
    padding-inline: 1em;
	padding-bottom: 10px;
}
.top_banner_text {
    padding-bottom:2em;
    text-align:center;

}


/*--Service slider section--*/

.slider-header {
    text-align:center;
}



.card-service {
    font-weight: var(--weight-bold);
    color: var(--white-color);
    line-height: var(--lineHeight-1);
}

.card-price {
    font-weight: var(--weight-bold);
    color: var(--white-color);
}

.card {
    border-radius: var(--border-radius-main);
    background-color: var(--gold-color);
    max-height: auto;
    padding-inline: 0.7em;
    padding-block: 0.7em;
    margin-inline: 4em;
    max-width: 300px;
    
}
.top-card-content {
    display: flex;
    padding-bottom: 0.5em;
}

.bottom-card-content {
    text-align: right;
}

.image-content {
    margin-top: -50px;
}

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

.card-image {
    position: relative;
    height: 150px;
    width: 150px;
}

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

}


/* RANDOM SHIT */

.wrapper {
    max-width: 1100px;
    width: 100%;
    position: relative;
  }
  .wrapper i {
    top: 50%;
    height: 10px;
    width: 50px;
    cursor: pointer;
    font-size: 2rem;
    position: absolute;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: transform 0.1s linear;
  }
  .wrapper i:active{
    transform: translateY(-50%) scale(0.85);
  }
  .wrapper i:first-child{
    left: -22px;
  }
  .wrapper i:last-child{
    right: -22px;
  }
  .wrapper .carousel{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    border-radius: var(--border-radius-main);
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .carousel::-webkit-scrollbar {
    display: none;
  }
  .carousel.no-transition {
    scroll-behavior: auto;
  }
  .carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }
  .carousel.dragging .card {
    cursor: grab;
    user-select: none;
  }
  .carousel :where(.card, .img) {
    display: flex;
    flex-direction: column;
  }
  .carousel .card_li {
    scroll-snap-align: start;
    height: auto;
    list-style: none;
    background: #fff;
    cursor: pointer;
    flex-direction: column;
    border-radius: var(--border-radius-main);
    padding-top:40px;
  }
  
  
  @media screen and (max-width: 900px) {
    .wrapper .carousel {
      grid-auto-columns: calc((100% / 2) - 9px);
    }
  }
  @media screen and (max-width: 600px) {
    .wrapper .carousel {
      grid-auto-columns: 100%;
    }
  }
  @media screen and (min-width: 1200px) {
    .wrapper .carousel {
      grid-auto-columns: 100%;
    }
    .navbar {
        display: none;
    }
    .nav_open_btn {
        display: none;
    }
    .desktop_nav {
        display: none;
    }
  }

.block_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
} 

.block {
    flex: 0 0 calc(30.66% - 1px);
    padding: 1em;
    display: flex;
    gap:5px;
    align-items: center;
    flex-direction: column;
    text-align: center;
    
}
.block .block_header {
    max-width: 200px;
}

.trust_icon {
    font-size:30px;
    flex: 0 0 1.5em;
    color: var(--white-color);
}

.top_banner_header {
    text-align:center;

    
}

.top_banner_header.title-2 {
    font-size:32px;
}

.banner_item.banner_left .banner_text {
    display: none;
}
.banner_item.banner_left button {
    display: none;
}



.arrows_big {
    height:50px;
}

.desktop_nav {
    width: 60%;
    display: flex;
    gap:15px;
    align-items: center;
    background-color: var(--grey-color);

    border-top-left-radius: var(--border-radius-main);
    border-top-right-radius: var(--border-radius-main);
    padding:0.3em;
    padding-inline: 0.5em;
    justify-content: space-evenly;
}

.top_banner_grid {
    display:flex;
}

.service_page.top_banner_left {
    display:flex;
    width:40%;
    flex-direction: column;
    justify-content: center;
    padding-top:4em;
}

.top_banner_left {
    display:flex;
    width:40%;
    flex-direction: column;
    justify-content: center;
    
}
.service_page.top_banner_right {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;

    
}

.section_top_banner .container .top_banner_grid .top_banner_right {
    padding: 1em;
}

.top_banner_right {
    width:60%;
    background-color:var(--grey-color);
    display:flex;
	align-items:end;
    border-bottom-left-radius: var(--border-radius-main);
    border-bottom-right-radius: var(--border-radius-main);
}

.service_page.top_banner_img {
    max-width: 50%;
    width: 45%;
    height: auto;
    border-radius: var(--border-radius-main);
}

.service_page .top_banner_image_solo {
    width: 95%;
    margin-bottom: 1em;
    border-radius: var(--border-radius-main);
}
.top_banner_img {
    max-width: 100%;
    height: auto;
    border-radius:var(--border-radius-main);
}

.left_hero_buttons {
    display:flex;
    gap: 15px;
    padding-bottom: 3em;
    justify-content:center;
}

.section-trust {
    
    padding-block: 3em;
    background-color: #FFFBF5;
    
}

.block_header {
    color:var(--black-color);
}
.diamond_behind {
        background-color: var(--button-light-color);
        width: 100px;
        height: 100px;
        margin: 25px;
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        border-radius: 20px;
        
      
}

.diamond_behind img {
    -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.section_header {
    text-align: center;
    padding-bottom: 2em;
}
.section_header h3::after {
    content: '';
    background: var(--gold-color);
    width:100px;
    height:5px;
    position: relative;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.service_about_header::after {
    content: '';
    background: var(--gold-color);
    width:100px;
    height:5px;
    position: relative;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.swiper-card-image {
    width:300px;
    height: auto;
    margin-bottom: 1em;
}
.swiper-card-image img {
    width:100%;
    height: 100%;
    object-fit: cover;
    display:none;
    
}

.cky-btn-revisit-wrapper{
    display:none !important;
}

.swiper-slide { 
    width: 20em !important;
    min-height: 197px;
}

.swiper {
    width: 100%;
}

.swiper-wrapper {
    width: 100%;
    height: 35em;
    display:flex;
    align-items: center;
}

.swiper-card {
    width: 10em;
    height: 90%;
    background-color: var(--grey-color);
    border-radius: var(--border-radius-main);
    padding: 2em 1em;

    display: flex;
    align-items: center;
    flex-direction: column;
    box-shadow: var(--shadow-default);
    margin: 0 2em;
}

.swiper-card-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    
}

.swiper-card-name {
    position:relative;
    font-weight: var(--weight-bold);
    font-size: 20px;
}

.swiper-card-text {
    text-align: center;
}


.banner_color_black {
    background-color: #0A011F;
}

.banner_color_grey {
    background-color: #F6F9F8;
}


.full_banner_title_white {
    color:var(--white-color);
    padding-bottom: 1em;

}

.full_banner_text_white {
    color:var(--white-color);
    padding-bottom: 1em;
}

.full_banner_title_black {
    color:var(--black-color-font);
    padding-bottom: 1em;

}

.full_banner_text_black {
    color:var(--black-color-font);
    padding-bottom: 1em;
}

.full_banner_grid {
    display: flex;
    padding-inline: 10em;
    justify-content: row;
    align-items: center;
    max-height: 100%;
    gap: 30px;

}
.full_banner_grid_mobile {
    position: relative;
    overflow: hidden;
    height: 380px;
    
}
.full_banner_grid_mobile .banner_mobile_content{
    position: absolute;
    top: 69px;
    left: 32px;
    width:275px;
    padding: 1em;
    border-radius: var(--border-radius-main);
    background-color:#ffedd7d4;
}
.full_banner_btn_mobile.btn_gold {
    background-color: var(--black-color);
    box-sizing: border-box;
    padding: 3px 16px;
    color: white;
    border-radius: var(--border-radius-main);
    font-weight: var(--weight-bold);
    font-size: var(--fontSize-body-4);
    width: fit-content;
    transition: var(--transition-2);
    margin-top: 0.5em;
}
.full_banner_next_button {
    position:absolute;
    top: 46%;
    right: 10px;
    font-size: 30px;
    color:black;
    cursor: pointer;
}
.banner_mobile_transition {
    transition: .6s ease opacity,.6s ease transform;
}
.margarita_photos {

    line-height: 0;
    -webkit-column-count: 2;
    -webkit-column-gap: 5px;
    -moz-column-count: 2;
    -moz-column-gap: 5px;
    column-count: 2;
    column-gap: 5px;
    align-items: center;
}
.margarita_photos img {
    
    margin-bottom: 5px;

}
.section_header.instagram_header_top {
    padding-bottom: 1em;
}
.full_banner_text_black_mobile {
    margin-top: 0.3em;
    line-height: var(--lineHeight-4);
}
.full_banner_img_mobile {
    width: 200%;
    margin-top: -466px;
    margin-left: -117px;
}
.full_banner_left {
    padding-block: 3em;
    width: 50%;
    position: relative;

}

.full_banner_right {
    width: 50%;
    position: relative;
}

.full_banner_img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.full_banner_img.right_img {
    width: 773px;
    height: 1060px;
    object-fit: contain;
    position: absolute;
    top: -602px;
    left: -149px;

}

.full_banner_img.left_img {
    width: 773px;
    height: 1060px;
    object-fit: contain;
    position: absolute;
    top: -552px;
    left: -247px;

}
.full_banner_img_mobile.motus_iranga {
    margin-top: -598px;
    margin-left: -60px;
}
.full_banner_img.left_img.motus_iranga {
    width: 747px;
    height: 717px;
    object-fit: contain;
    position: absolute;
    top: -470px;
    left: -247px;

}

.full_banner_img.rounder_image {
    border-radius: var(--border-radius-main);
    
}

.instagram_header_bottom {
    text-align: center;
    letter-spacing: var(--letterSpacing-1);
    font-size: var(--fontSize-body-4);
    color: white;
    background-color: black;
    width: 300px;
    border-radius: var(--border-radius-main);
    transition: var(--transition-2);
}
.instagram_header_bottom:hover {
    color: black;
    background-color: var(--gold-color);
}

.instagram_header {
    margin-inline: 25em;
}

.instagram_image {
    width: 10em;
    height: auto;
}
.instagram_grid {
    display: flex;
    flex-direction: row;
}

.instagram_post_text {
    margin-inline: 3em;
    text-align: center;
    margin-top: 1em;
    line-height: 1.3em;
}

.instagram_post {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.newsletter-section {
    background-color: var(--gold-color);
}

.newsletter_header {
    padding-bottom: 2em;
    color:var(--white-color);

}

.newsletter_form_form {
    display:flex;
    flex-direction: column;
    margin-left: 10em;


}

.newsletter_form_top p {
    display: flex;
    flex-direction: row;
    gap:15px;
}
.newsletter_form_bot {
    display: flex;
    flex-direction: row;
    gap:15px;
    color:var(--white-color);
    font-weight: var(--weight-bold);
}
.newsletter_form_bot input {
    width: auto;
}

.newsletter_form_form .newsletter_form_top p span input {
    flex: 1;
    box-sizing: border-box;
    color: var(--white-color);
    font-size:var(--fontSize-body-2);
    font-weight: var(--weight-bold);
}
.newsletter_form_form .newsletter_form_top p span input::placeholder {
    color: var(--white-color);
    font-size:var(--fontSize-body-2);
    font-weight: var(--weight-bold);
}

.newsletter_form {
    padding-bottom: 2em;
}

.newsletter_input {
    border: 1px solid #FFFFFF;
    background-color:#f7caa5;
    border-radius: var(--border-radius-main);
    padding: 0.5em;
    padding-inline: 1em;
    max-width: 20em;
}

.newsletter_submit {
    max-width: 12em;
    cursor:pointer;
    max-height: 48px;
}

.black_footer {
    background-color:var(--black-color-font);

}

.footer_text {
    color:var(--white-color);
    padding-bottom: 1em;
}

.footer_grid {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: space-around;
}

.footer_left {
    width: 50%;
    padding-right: 8em;
}

.footer_right {
    width: 16.7%;
}

.footer_header {
    color:var(--gold-color);
    font-weight: var(--weight-bold);
}

.footer_nav {
    color:var(--white-color);
}

.service_about_grid {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 30px;
}

.service_about_left {
    background-color:var(--white-color);
    border-radius: var(--border-radius-main);
    box-shadow: var(--shadow-default);
    width: 50%;
    padding: 1em;
}
.service_about_right {
    padding: 1em;
    box-shadow: var(--shadow-default);
    background-color:var(--white-color);
    border-radius: var(--border-radius-main);
    width: 50%
}

.service_about_header {
    text-align: center;
}

.pricing_grid {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 1em;
    border-radius: var(--border-radius-main);
    box-shadow: var(--shadow-default);
    overflow:hidden;
    justify-content: center;
    height: 550px;
}

.pricing_buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left:3em;
    padding-top: 2em;

}

.pricing_buttons_table {
    width: 40%;
    border-right: solid 3px var(--gold-color);
	
}

.pricing_model {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.pricing_model img {
    object-fit: contain;
    width: 100%;
    
}

.model_choose img {
    cursor: pointer;
}

.main_model_choose_gender img {
    cursor: pointer;

}
.main_model_choose_gender {
    position:relative;
    color:var(--black-color);
}
.gender_icon_magic {
    position: absolute;
    top: 24px;
    right: 0;
    font-size: 40px;
}
    
.main_model_choose_gender:hover {
    color:var(--button-light-color);
}
.model_choose img {
    width:auto;
}

.woman-front {
    width: auto;
    height: 30em;
}

.section-price-table {
    height: 3vn;
}

.pricing_button {
    min-width: 15em;
    margin-block: 0.5em;
}

.woman-choose {
    width: auto;
    height: 200px;
}

.model_choose {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    justify-content: space-between;
}
.model_choose_main {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: end;
    text-align: center;
}
.model_choose_head {
    padding-top: 30px;
}

.model_small_big {
    display: flex;
    flex-direction: row;
    gap: 0px;
    padding-left: 2em;
}

.container.container_pricing {
    padding-inline: 14em;
}

.block_inactive {
    display: none !important;
}

.model_male_female {
    display: flex;
    flex-direction: column;
    justify-content:center;
}
.header_male_female {
    text-align: center;
    margin-bottom: 0.5em;
    font-size: 20px;
    
    text-transform: uppercase;
    
}
.models_male_fema_choose_stuff {
    display: flex;
    flex-direction: row;
    gap: 120px;
    justify-content:center;
}

.button_toggle_active {
    background-color: var(--button-light-color) !important;
    color: black !important
}

.model_with_places {
    position: relative;
    display: flex;
    justify-content: center;
}
.full-banner-section-mobile {
    display: none;
}

.circle_pricing {
    background-color: transparent;
    border:5px solid;
    border-color: var(--orange-color);   
    height:40px;
    border-radius:50%;
    -moz-border-radius:50%;
    -webkit-border-radius:50%;
    width:40px;

    position: absolute;
    cursor:pointer;
}

.circle_pricing.head {
    top: 10px;
    left: 60px;
}

.circle_pricing.stomach {
    top: 160px;
    left: 30px;
}

.circle_pricing.thights {
    top: 250px;
    left: 15px;
}

.circle_pricing.side {
    top: 180px;
    left: 20px;
}

.circle_pricing.back {
    top: 160px;
    left: 55px;
}

.circle_pricing.head_cheek {
    top: 255px;
    left: 287px;
}

.main_model {
    width: 100%;
    display: flex;
    justify-content: center;
}

.services_row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
}

.services_box {
    height: auto;
    display: flex;
    flex-direction: column;

    text-align: center;
    padding-top: 1em;
    padding-inline: 1em;
    border-radius: var(--border-radius-main);
    box-shadow: var(--shadow-default);
    cursor: pointer;
    transition: var(--transition-2);
}

.services_box:hover {
    background-color: var(--gold-color);
    color:var(--white-color);

}

.services_box img {
    object-fit: contain;
    border-radius: var(--border-radius-main);
}

.services_box a {

}

.pricing_register_buttons {
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 2em;
    margin-right: 1em;
}

.swiper-pagination {
    top: 355px !important;
}
.swiper-pagination-bullet-active {
    background: #828147 !important;
}
.services_box_text {
    font-weight: var(--weight-medium);
}

.services_box_text_owl {
    height: 111px;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: row;
    justify-content: center;
	font-size: 15px;
}

.services_box_text {
    height: 90px;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: row;
    justify-content: center;
}

.registration_banner_grid {
    display: flex;
    flex-direction: row;
    height: 12em;
    width: 100%;
    border-radius: var(--border-radius-main);
    margin: auto;
    padding: 1em;
    box-shadow: var(--shadow-default);
    background-size: 1600px 2400px;
    background-repeat: no-repeat;
    background-position: right 55%;
    background-color: grey;
    background-blend-mode: multiply;
    
}
.registration_banner_left {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.registration_banner_right {
    align-items: center;
    width: 65%;
    display: flex;
}

.registration_banner_left_column a {
    color:var(--white-color);
    font-weight: var(--weight-bold);
    font-size:var(--fontSize-body-1);
    padding-bottom: 1em;
    padding-inline: 3em;
}

.service_info {
    border-bottom: solid 1px var(--grey-color);
    padding-block: 1em;
    display:flex;
    flex-direction: row;
    gap:15px;
    align-items: center;
}

.service_price {
    border-bottom: solid 1px var(--grey-color);
    padding-block: 1em;
    display:flex;
    flex-direction: row;
    gap:15px;
    align-items: center;
    justify-content: space-between;
}

.service_info_grid {
    display: flex;
    flex-direction: row;
    box-shadow: var(--shadow-default);
    border-radius: var(--border-radius-main);
    padding: 1em;
    gap: 15px;
}


.product_info_grid {
    display: flex;
    flex-direction: row;
    box-shadow: var(--shadow-default);
    border-radius: var(--border-radius-main);
    padding: 1em;
    gap: 15px;
    margin-bottom: 1em;
}

.product_image_full {
    width: 100%;
}


.product_info_right {
    width: 60%;
}
.product_info_left {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service_info_left {
    padding-top:1.5em;
    width:100%;
}
.service_info_right {
    width:100%;
}

.contact_grid {
    display: flex;
    flex-direction: row;
    box-shadow: var(--shadow-default);
    border-radius: var(--border-radius-main);
    padding: 1em;
    gap: 15px;
}

.contact_left {
    
    width:50%;
    align-items: left;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding-left: 1em;
}

.contact_right {
    width:50%;
}

.contact_info {
    border-bottom: solid 1px var(--grey-color);
    padding-block: 1em;
    display: flex;
    flex-direction: row;
    font-size: var(--fontSize-body-3);
}
.carousel_services {
    position: relative;

}
.carousel_services .services_box {
    max-width: 300px;
    margin-inline:auto;
}

.carousel_services .services_box a{
    padding-inline: 1em !important;
}


.aboutus_grid {
    display: flex;
    flex-direction: row;
    padding-bottom:2em;
    
    padding: 2em;
    gap: 30px;
}
.aboutus_first_blocker {
    
    padding-bottom:2em;
    box-shadow: var(--shadow-default);
    border-radius: var(--border-radius-main);
    padding: 2em;
    
}

.aboutus_grid.first_grid .aboutus_left {
    width: 70%;
}

.aboutus_grid.first_grid .aboutus_right {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aboutus_grid.second_grid .aboutus_left {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aboutus_grid.second_grid .aboutus_right {
    width: 70%;
}

.service_page .top_banner_header {
    min-height: 105px;
    max-width: 465px;
}

.owl-nav {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    max-width: 450px;
}

.owl-nav .owl-prev, .owl-next {
    position: absolute;
                height: 100px;
                color: inherit;
                background: none;
                border: none;
                z-index: 100;
}

.owl-nav .owl-prev {
    left: 45px;
}

.owl-nav .owl-next {
    right: 25px;
}

.owl-carousel .owl-stage {
    padding-bottom: 12px;
}

.booknetic_appointment {
    margin-inline: auto;
}

.aboutus_seperator {
    background-color:var(--gold-color);
    color: var(--white-color);
    text-align: center;
    padding-block: 1em;
    font-size:var(--fontSize-title-3);
    font-weight: var(--weight-bold);
}

.service-duk-section {
    
}
.full_banner_img.product_img {
    width: 418px;
    height: 1360px;
    object-fit: contain;
    position: absolute;
    top: -682px;
    left: 38px;
  }

.full-banner-section-left {
    min-height: 400px;
    overflow: hidden;
    align-items: center;
    display: flex;
    justify-content: center;
}

.full-banner-section-products {
    min-height: 400px;
    overflow: hidden;
    align-items: center;
    display: flex;
    justify-content: center;
}

.full-banner-section-right {
    min-height: 400px;
    overflow: hidden;
    align-items: center;
    display: flex;
    justify-content: center;
}

.footer_padding_min {
    padding-bottom: 0.5em;
}
.google_map {
    width: 550px;
    height: 450px;
}


/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: var(--black-color);
    color: var(--white-color);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    border-radius: var(--border-radius-main);
    position: relative;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active-accordion, .accordion:active {
    background-color: var(--button-light-color);
    color: var(--black-color-font);
  }

 
  
  /* Style the accordion panel. Note: hidden by default */
  .panel {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
  }

  

  .accordion:after {
    content: '\02795';
    font-size: 10px;
    color: #fff;
    position: absolute;
    right: 32px;
  }
  
  .active-accordion:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
    color: #000000;
  }


  .pricing_buttons_table.other_pricing {
    width: 100%;
    border-right: none;
  }

  .pricing_table {
    height: 450px;
  }
  .pricing_table_service {

  }
  .pricing_table_price {
    padding-inline: 1em;
    padding-bottom: 1em;
    height: 450px;
    overflow: auto;
  }
  .pricing_table_price_service {
    padding-inline: 1em;
    padding-bottom: 1em;
  }
  .pricing_table_price_service h1 {
    padding-top:1em;
  }

  .pricing_table_price h1 {
    padding-top:1em;
  }
  .pricing_paper {
    display:none;
  }

  .nav_link a, .banner_number a, .banner_email a {
    position: relative;
    text-decoration: none;

  }
  .nav_link a::before, .banner_number a::before, .banner_email a::before{
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--black-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  .nav_link a:hover::before, .banner_number a:hover::before, .banner_email a:hover::before {
    transform: scaleX(1);
  }
  .footer_nav {
    width:fit-content;
    position: relative;
    text-decoration: none;
  }
  .footer_nav::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--black-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  .footer_nav:hover::before {
    transform: scaleX(1);
  }

  .duk_block {

  }

  .duk_block .duk_name {
    color: white;
    cursor: pointer;
    margin-top: 2em;
    padding: 1em;
    background-color: var(--black-color);
    border-radius: var(--border-radius-main);
    font-weight: var(--weight-bold);

  }

  .duk_block .duk_text {
    padding: 1em;
    font-weight: var(--weight-medium);

  }

  #gallery {
    line-height:0;
    -webkit-column-count:2; /* split it into 5 columns */
    -webkit-column-gap:5px; /* give it a 5px gap between columns */
    -moz-column-count:2;
    -moz-column-gap:5px;
    column-count:2;
    column-gap:5px;
    align-items: center;
 }

 #gallery img {
    width: 100% !important;
    height: auto !important;
    margin-bottom:5px; /* to match column gap */
 }


 .img_border_default {
    border-radius: var(--border-radius-main);
 }

.instagram_header_bottom {
    margin-top: 1em;
}


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














 

 @media (max-width: 1200px) {
    #gallery {
     -moz-column-count:    4;
     -webkit-column-count: 4;
     column-count:         4;
    }
 }
 @media (max-width: 1000px) {
    #gallery {
     -moz-column-count:    3;
     -webkit-column-count: 3;
     column-count:         3;
    }
 }
 @media (max-width: 800px) {
    #gallery {
     -moz-column-count:    2;
     -webkit-column-count: 2;
     column-count:         2;
    }
 }
 @media (max-width: 400px) {
    #gallery {
     -moz-column-count:    1;
     -webkit-column-count: 1;
     column-count:         1;
    }
 }
.sbi_follow_btn.sbi_custom a {
    display: flex !important;
    align-items: center !important;


}
#sb_instagram svg:not(:root).svg-inline--fa {
    height: 1.4em !important;
}

.wpcf7-list-item label {
    display: flex;
    gap: 15px;
}

.wpcf7 form .wpcf7-response-output {
    width: fit-content;
    color: white;
    font-weight: 600;
}

.paper_list_price {
    margin-block: auto;
    text-align: end;
}

.paper_list_name {
    max-width: 80%;
  }



  .instagram_header_top {
    padding-top: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}





@media only screen and (max-width: 600px) {
    
    .pricing_paper {
        display:block;
      }
    .section-trust {
        margin-bottom: 2em;
        padding-block: 0em;
    }
    .block_header.title-3 {
        font-size: 16px;
        max-width: 135px;
    }
    .block {
        flex: 0 0 calc(1% - 500px);
        padding: 0.3em;
        display: flex;
        gap: 5px;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
    .container {
        padding: 1em;
    }

    .section {
        padding-top: 0em;
        padding-bottom: 1em;
    }
    .full-banner-section-left {
        display: none;


    }
    .full-banner-section-right {
        display: none;
    }

    .full-banner-section-mobile {
        display:block;
        
        overflow: hidden;
        align-items: center;
        display: flex;
        justify-content: center;
    }
    .desktop_nav {
        display: none;
    }
    .header .container {
        padding-inline: 0em;
        flex-direction: row;
        justify-content: space-between;
        padding-right: 1em;

    }

    .logo_text {
        width:auto;
    }
    .logo_image {
        position: static;
		padding:1em;
    }
    .block_grid {
        padding-left: 0em;
    }
    .top_banner_grid {
        display:block;
    }
    .top_banner_left {
        width:auto;
    }
    .top_banner_right {
        width: auto;
        display: none;
    }
    .owl-nav .owl-prev {
        left:0;
    }
    .owl-nav .owl-next {
        right:0;
    }
    .full_banner_grid {
        padding-inline: 0em;
    }
    .full_banner_img.right_img {
        left:-302px;
    }
    .full_banner_img.left_img {
        left:-351px;
    }
    .newsletter_header {
        margin-inline: 0em;
    }
    .newsletter_form_form {
        margin-left: 0em;
        align-items:center;
        flex-direction: column;
    }
    .newsletter_form_form .newsletter_submit.btn_orange {
        width:100%;
        max-width: none;
    }
    .newsletter_input {
        max-width: 100%;
    }
    .footer_grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 45px;

    }
    .footer_left {
        width: 100%;
        align-items: center;
        padding-right: 0em;
        flex-direction: column;
        display: flex;
        text-align: center;
    }
    .footer_right {
        width:40%;
    }
    .footer_navbar {
        display:flex;
        align-items: center;
        flex-direction: column;
    }
    .footer_header {
        text-align: center;
    }
    .carousel_services .services_box {
        max-width: 300px;
    }
    .registration_banner_left {
        width:50%;
    }
    .registration_banner_right {
        width: 50%;
    }
    .header {
        padding-bottom: 1em;
    }
    .services_box a {
        padding-inline: 0em;
    }
    .services_row {
        grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
    }
    .aboutus_grid {
        flex-direction: column;
		padding: 0em;
    }
    .aboutus_grid.first_grid .aboutus_left {
        width:auto;
    }
    .aboutus_grid.first_grid .aboutus_right {
        width: auto;
    }
    .aboutus_grid.second_grid .aboutus_left {
        width:auto;
    }
    .aboutus_grid.second_grid .aboutus_right {
        width: auto;
    }
    .contact_grid {
        flex-direction: column;
    }
    .contact_left {
        width:100%;
    }
    .google_map {
        width:100%;
        height: 450px;
    }
    .contact_right {
        width:100%;
    }
    .container.container_pricing {
        padding-inline: 1em;
    }
    .paper_list_name {
        width: 60%;
    }
    .paper_list {
        align-items: center;
        padding-block: 0.5em;
    }
    .pricing_grid {
        display:none;
    }

    .paper_service {
        padding-block:1em;
    }
    .accordion:after {
        content: '\02795'; /* Unicode character for "plus" sign (+) */
        font-size: 10px;
        color: #fff;
        position:absolute;
        top: 30%;
        right: 4%;
      }
      .newsletter_form_top p {
        display: flex;
        flex-direction: column;
        gap:15px;
        width:100%;
    }
    .registration_banner_grid {
        background-size: 800px 1200px;

    }
    .service_page.top_banner_left {
        width:100%;
        padding-top: 1em;
    }

    .product_info_left {
        width: 100%;
    }
    .product_info_right {
        width: 100%;
    }

    .product_info_grid {
        display: flex;
        flex-direction: column;
        box-shadow: var(--shadow-default);
        border-radius: var(--border-radius-main);
        padding: 1em;
        gap: 15px;
        margin-bottom: 1em;
    }
    .service_page.top_banner_right {
        flex-direction: column;
        gap: 10px;
    }
    .service_page.top_banner_img {
        max-width: 100%;
        width:100%;
    }
    .service_about_grid {
        flex-direction: column;
    }
    .service_about_left {
        width: 100%;
    }
    .service_about_right {
        width: 100%;
    }
    .swiper-slide {
        width: 17em !important;
    }
    .instagram_header {
        margin-inline: 0em;
    }
    .instagram_header_bottom {
        padding-block:0.5em;
        justify-content: center;
        font-size: 14px;
    }
    .service_page .top_banner_image_solo {
        width:100%;
        margin-block: 0em;
    }
    .title-2 {
        font-size: 15px;
    }
    .instagram_header_top {
        padding-top: 1em;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .left_hero_buttons {
        flex-direction: column;
        align-items: center;
    }
    .service_page.top_banner_header {
        padding-bottom: 1em;
    }
    .full_banner_img.product_img {
        width: 418px;
        height: 1360px;
        object-fit: contain;
        position: absolute;
        top: -682px;
        left: -75px;
      }
	.aboutus_first_blocker {
		padding: 1em;
	}
	.aboutus_seperator {
		font-size:unset;
	}
	.aboutus_image {
		margin-bottom: 1px;
	}
	.margarita_photos {
		column-count: 1;
	}
	.body-3.services_box_text {
		font-size: unset;
	}
	
}

@media only screen and (max-width: 376px) {
    .left_hero_buttons {
        flex-direction: column;
        align-items: center;
    }
    .registration_banner_left_column a {
        font-size:20px;
    }
    .full_banner_img.left_img {
        left: -372px;
    }

}