:root{
    --Dana_Medium:"Dana_Medium";
    --Dana_Regular:"Dana_Regular";
    --American:"Fantzi-font";
    --Graphic:"Graphic";
    --Dana-Bold:"Dana-Bold";
    --bg: #ffffff;
    --Gray: #f3f3f3;
    --soft-green: #DFF3E4;
    --accent-green: #6BBF8D;
    --Dark-Green:#2b503b;
    --text: #363636;
    --muted: #6b6b6b;
}
html{
    box-sizing: border-box;
    font-size: 62.5%;
    scroll-behavior: smooth;
}
*,
*::before,
*::after{
    box-sizing: inherit;
}
body{
    font-family:var(--Dana_Medium);
    font-size: 1.6rem;
    line-height: 1.6;
    background-color: var(--soft-green);
}
a{
    text-decoration: none;
}
/* 
================================
    Header
================================
 */
.header{
    width: 100%;
    height: 55rem;
    background-color: var(--accent-green);
    /* border-radius: 0 0 10rem 10rem;
    -webkit-border-radius: 0 0 10rem 10rem;
    -moz-border-radius: 0 0 10rem 10rem;
    -ms-border-radius: 0 0 10rem 10rem;
    -o-border-radius: 0 0 10rem 10rem; */
}
.nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 3rem;
}
.header__logo{
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50rem;
    -webkit-border-radius: 50rem;
    -moz-border-radius: 50rem;
    -ms-border-radius: 50rem;
    -o-border-radius: 50rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--American);
    font-size: 5.5rem;
    color: var(--bg);
}
.logo{
    width: 100%;
}
/* 
================================
    Menu
================================
 */
.wrapper_menu{
    width: 30rem;
    position: fixed;
    background-color: var(--soft-green);
    color: var(--text);
    top: 0;
    bottom: 0;
    right: -30rem;
    transition: all 150ms ease-in-out;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    border-radius: 5rem 0 0 5rem;
    -webkit-border-radius: 5rem 0 0 5rem;
    -moz-border-radius: 5rem 0 0 5rem;
    -ms-border-radius: 5rem 0 0 5rem;
    -o-border-radius: 5rem 0 0 5rem;
    z-index: 1000;
}
.wrapper_menu--opne{
    right: 0;
}
.menu__list{
    padding: 1rem 3rem 3rem;
    margin-top: 2rem;
}
.menu__item{
    margin: 2rem 0 2rem;
    
}
.menu__item__link{
    color: var(--text);
    font-size: 2rem;
    position: relative;
    transition: all 150ms ease-in-out;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
}
.menu__item__link::before{
    content: "";
    display: block;
    background-color: var(--accent-green);
    width: 0rem;
    height: .3rem;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    border-radius: 10rem;
    -webkit-border-radius: 10rem;
    -moz-border-radius: 10rem;
    -ms-border-radius: 10rem;
    -o-border-radius: 10rem;
    transition: all 150ms ease-in-out;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;

}
.menu__item__link:hover{
    padding: 2.2rem;
}

.menu__item__link:hover::before{
    width: 2rem;
}
.menu__item__link--active{
    padding-right: 2.2rem;
}
.menu__item__link--active::before{
    content: "";
    display: block;
    background-color: var(--accent-green);
    width: 2rem;
    height: .3rem;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    border-radius: 10rem;
    -webkit-border-radius: 10rem;
    -moz-border-radius: 10rem;
    -ms-border-radius: 10rem;
    -o-border-radius: 10rem;
}
.title__menu{
    font-family: var(--American);
    font-size: 5rem;
    text-align: center;
    margin-top: 2rem;
    

}
.title__menu::before{
    content: "";
    display: block;
    width: calc(100% - 30px);
    height: .15rem;
    background-color: var(--accent-green);
    position: absolute;
    top: 10rem;
    left: 0;
    right: 0;
    margin: 0 auto;

}
/* 
================================
    Navigtion-BTN
================================
 */
.navigition__menu{
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50rem;
    -webkit-border-radius: 50rem;
    -moz-border-radius: 50rem;
    -ms-border-radius: 50rem;
    -o-border-radius: 50rem;
    background-color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;

}
.line__menu{
    width: 3rem;
    height: .3rem;
    background-color: var(--accent-green);
    border-radius: 55rem;
    -webkit-border-radius: 55rem;
    -moz-border-radius: 55rem;
    -ms-border-radius: 55rem;
    -o-border-radius: 55rem;
    position: relative;
}
.line__menu::before ,.line__menu::after{
    content: "";
    display: block;
    width: 3rem;
    height: .3rem;
    background-color: var(--accent-green);
    border-radius: 55rem;
    -webkit-border-radius: 55rem;
    -moz-border-radius: 55rem;
    -ms-border-radius: 55rem;
    -o-border-radius: 55rem;
    position: absolute;
    transition: all 150ms ease-in-out;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
}
.line__menu::before{
    top:.7rem ;
}
.line__menu::after{
    top:-.7rem ;
}
.navigition__menu--opne .line__menu{
    background: transparent;
}
.navigition__menu--opne .line__menu::before{
    transform: translateY(-.7rem) rotate(45deg) ;
    -webkit-transform: translateY(-.7rem) rotate(45deg) ;
    -moz-transform: translateY(-.7rem) rotate(45deg) ;
    -ms-transform: translateY(-.7rem) rotate(45deg) ;
    -o-transform: translateY(-.7rem) rotate(45deg) ;
}
.navigition__menu--opne .line__menu::after{
    transform: translateY(.7rem) rotate(-45deg) ;
    -webkit-transform: translateY(.7rem) rotate(-45deg) ;
    -moz-transform: translateY(.7rem) rotate(-45deg) ;
    -ms-transform: translateY(.7rem) rotate(-45deg) ;
    -o-transform: translateY(.7rem) rotate(-45deg) ;
}

/* 
================================
    Titel-Header
================================
 */

.header__title__wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-top: 5rem;
}
.title__header{
    font-size: 5rem;  
    font-family: var(--Graphic);  
    color: var(--bg);
    margin-bottom: 2.5rem;
}
.header__caption{
    max-width: 68rem;
    color: var(--Gray);
}
.header__btn{
    display: block;
    width: 15rem;
    height: 6rem;
    background-color: var(--bg);
    border-radius: 20rem;
    -webkit-border-radius: 20rem;
    -moz-border-radius: 20rem;
    -ms-border-radius: 20rem;
    -o-border-radius: 20rem;
    transition: all 150ms ease-in-out;
    line-height: 6rem;
    font-size: 2rem;
    font-family: var(--Dana-Bold);
    color: var(--muted);
    margin-top: 5rem;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
}
.header__btn:hover{
    background-color: #dbdbdb;
}
/* 
================================
    main
================================
 */

 .main{

 }
 .title__services{
    font-size: 2.6rem;
    font-family: var(--Dana-Bold);
    color: var(--Dark-Green);
    margin-top : 3rem;
    padding-right: 2.5rem;
    position: relative;
 }
 .title__services::before{
    content: "";
    display: block;
    position: absolute;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 10rem;
    background-color: var(--accent-green);
    top: 0;
    bottom: 04px;
    right: 0;
    margin: auto 0;
    -webkit-border-radius: 10rem;
    -moz-border-radius: 10rem;
    -ms-border-radius: 10rem;
    -o-border-radius: 10rem;
}
.title__price__tip{
    color: var(--text);
}

.services{
display: flex;
align-items: center;
flex-wrap: wrap;
margin-top: 3rem;
margin-left: -1rem;
margin-right: -1rem;
}
.services__btn{
    width: 15rem;
    height: 5.5rem;
    line-height: 5.5rem;
    margin: 1rem;
    background-color:var(--accent-green);
    flex-grow: 1;
    border: .2rem solid var(--accent-green);
    border-radius:2rem ;
    -webkit-border-radius:2rem ;
    -moz-border-radius:2rem ;
    -ms-border-radius:2rem ;
    -o-border-radius:2rem ;
    text-align: center;
    color: var(--accent-green);
    font-family: var(--Dana-Bold);
    transition: all 150ms ease-in-out;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
}
.services__btn:hover {
    background-color:#2b503b;
    border: .2rem solid #2b503b ;
}
.services__btn__link{
    color: var(--soft-green);
    display: block;
    width: 100%;
    height: 100%;
    transition: color 150ms ease-in-out;
    -webkit-transition: color 150ms ease-in-out;
    -moz-transition: color 150ms ease-in-out;
    -ms-transition: color 150ms ease-in-out;
    -o-transition: color 150ms ease-in-out;
}
/* 
================================
    Services__price
================================
 */
 .title__price{
    text-align: center;
    font-size: 4rem;
    font-family: var(--Dana-Bold);
    color:var(--Dark-Green);
    margin-top: 4rem;

 }

.services_price{
   
}
.wrapper__service__price{
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 2rem;
    margin: 3rem 0;
    -webkit-border-radius: 2rem;
    -moz-border-radius: 2rem;
    -ms-border-radius: 2rem;
    -o-border-radius: 2rem;
    box-shadow: 0px 0px 10px 2px #46815e38;
    scroll-margin-top: 5rem;
}
.service__title{
    font-size: 2.4rem;
    font-family: var(--Dana-Bold);
    color: var(--Dark-Green);
    margin-bottom: 1.5rem;
}
.wrapper__price{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 2;
    margin-bottom: 1.5rem;
}
.wrapper__price__title{
    color: var(--Dark-Green);
}
.wrapper__price__price{
    color: var(--accent-green);
    font-weight: 800;
    font-size: 1.7rem;
}
.tips{
    color: var(--Dark-Green);
}
.tips__laser{
    margin-bottom: 1.5rem;
    margin-top: -.5rem;
    position: relative;
}
.tipsbb{
    color: var(--Dark-Green);
    position: relative;
    padding-right: 1.8rem;
    margin-bottom: 1rem;
    font-family: var(--Dana-Bold);
    font-size: 2rem;
}
.tipsbb::before{
    content: "";
    display: block;
    position: absolute;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 10rem;
    background-color:#6100fd;
    top: 0;
    bottom: 04px;
    right: 0;
    margin: auto 0;
    -webkit-border-radius: 10rem;
    -moz-border-radius: 10rem;
    -ms-border-radius: 10rem;
    -o-border-radius: 10rem;
}
/* 
================================
    Video & Photo
================================
 */
 .section_video_photo{
    margin-bottom: 5rem;
 }
.section_video_photo__title{
    margin: 6rem 0 2rem;
}
.wrapper_video_photo{
    display: flex;
    overflow-x: auto;
}
.wrapper_video_photo::-webkit-scrollbar{
    width: 0;
}
.wrapper_video_photo__box{
    min-width: 18rem;
    height: 32rem;
    background: url(../image/photo/1.jpg);
    background-position: center;
    background-size: cover;
    margin-left: .5rem;
    margin-right: .5rem;
    border-radius: 2rem;
}
.wrapper_video_photo__box a{
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
}
.wrapper_video_photo__box:nth-child(odd){
    background: url(../image/photo/2.jpg);
    background-position: center;
    background-size: cover;
}
/* 
================================
            footer    
================================
 */
 .footer{
    width: 100%;
    height: 55rem;
    background-color: var(--accent-green);
    padding: 2rem;
 }
 .footer_wrapper{
    text-align: center;
    color: var(--bg);
 }
 .footer__title{
    font-family: var(--American);
    font-size: 6rem;
 }
 .footer__Contactsus{
    margin-top: 4rem;
    font-size: 2rem;
 }
.footer__Contactsus__title{
    font-size: 3rem;
    color: var(--bg);
    font-family: var(--Dana-Bold);
    margin-bottom: 2rem;
}
.footer__Contactsus--styles{
    color: var(--Gray);
    margin-bottom: 1rem;
    display: block;
}
.footer__locaition{
    display: flex;
    justify-content: center;
    gap: 2px;
}
.footer__locaition__icon{
    width: 2.2rem;
    height: 2.2rem;

}
.footer__locaition__address{
    text-align: center;
}
.footer__copyright{
    direction: ltr;
    margin-top: 8rem;
    font-size: 1.4rem;
    color: #ffffffb6;
}
.desing{
    direction: ltr;
    font-size: 1.4rem;
    color: #ffffffb6;
}