@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');
/*
=====================================
            PRELOADER
=====================================
*/
.preloader {
  /*фиксированное позиционирование*/
  position: fixed;
  /* координаты положения */
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /* фоновый цвет элемента */
  background: #00000078;
  /* размещаем блок над всеми элементами на странице (это значение должно быть больше, чем у любого другого позиционированного элемента на странице) */
  z-index: 1001;
}

.preloader__row {
  position: relative;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  text-align: center;
  animation: preloader-rotate 2s infinite linear;
}

.preloader__item {
  position: absolute;
  display: inline-block;
  top: 0;
  background-color: #024e44;
  border-radius: 100%;
  width: 35px;
  height: 35px;
  animation: preloader-bounce 2s infinite ease-in-out;
}

.preloader__item:last-child {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

@keyframes preloader-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes preloader-bounce {

  0%,
  100% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}

.loaded_hiding .preloader {
  transition: 0.3s opacity;
  opacity: 0;
}

.loaded .preloader {
  display: none;
}
/*
=====================================
            PRE STYLES
=====================================
*/

body {
	font-family: var(--main-font);
	background: #fff;
}
main {
	max-width: 1400px;
	margin: auto;
	background: #fff;
}
.relative {
	position: relative;
}
.absolute {
	position: absolute;
}
.text-justify {
	text-align: justify;
}
.font-main {
    font-family: 'Nunito', sans-serif;
}
/*
=====================================
            TOP NAV
=====================================
*/
.navbar {
  font-family: 'Nunito', sans-serif;
  height: 56px;
  background: #024e44;
}
.link-line {
    background: #03362f;
}
.header {
  z-index: 12;
  width: 100%;
}
.logo-img {
	width: 100px;
  transform: translate(0px, -10px);
  margin-right: 50px;
}
.top-nav-link {
  padding: 10px;
  text-decoration: none;
}
.dropdown-menu {
  border-radius: 0;
  border: none;
  min-width: 15rem;
}
.dropdown-item-link {
  color: #333 !important;
}
.border-2 {
  border-bottom: 2px solid #fff;
}
.nav-link {
  color: #fff;
  font-weight: 500;
  padding: 0;
  height: 56px;
  display: flex;
  align-items: center;
  font-size: 15px;
}
.navbar-nav .nav-link.active {
  color: #fff;
}
.nav-link:focus, .nav-link:hover {
  color: var(--main-color);
}
.cart-count {
	top: -10px;
   right: -10px;
   background: var(--main-color);
   width: 20px;
   height: 20px;
   border-radius: 150px;
   font-size: .80rem;
}
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* remove the gap so it doesn't close */
}
.navbar-brand img {
  width: 56px;
}
/*
=====================================
            SLIDER
=====================================
*/

.slider-link {
	color: #fff;
  text-decoration: none;
  border-bottom: 1px dotted;
  font-weight: 600;
}
.slider-item {
  height: 100vh;
  position: relative;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.slider-item img {
  height: 100%;
  position: absolute;
  width: 100%;
  object-fit: cover;
  object-fit: cover;
}
.slider-content {
  position: absolute;
  color: #fff;
}
.slider-header {
  font-size: 76px;
  font-family: TT Rounds Neue;
}
.slider-header-mobile {
  font-size: 70px;
  font-family: TT Rounds Neue;
}
.mainslider-mobile>ul {
  top: 90%;
  left: 0;
  bottom: 0;
  display: flex;
  width: 100%;
  justify-content: center;
}
.mainslider-mobile>ul li {
  margin-right: 8px;
}
.static-slide {
  background-image: url('../images/mainslider/slide_bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: TT Rounds Neue;
}
.small-slider-header{
  font-family: TT Rounds Neue;
}
.small-slider-header:after {
  content: '';
  display: block;
  height: 5px;
  background: #ffc107;
  width: 15%;
  margin-top: 5px;
}
.modalForm {
  border: none;
  padding: 10px 35px;
  background: #ffc107;
  font-weight: 700;
}
.modal-header {
  font-family: TT Rounds Neue;
}
.intro-card {
  border: 3px solid #024e44;
  min-height: 350px;
}
.intro-header {
    
}
.intro-desc {
   font-size: 14px;
   text-align: justify; 
}
/*
=====================================
         BUTTONS
=====================================
*/
.pulse-button{
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;

}
.pulse-button:before {
  content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
  }
.pulse-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
  }
  .pulse-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #333;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
  }
  @keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}
.submit-btn {
  background: #056639;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  border: none;
  padding: 10px 25px;
  color: #fff;
}
/*
=====================================
         POPULAR CATEGORY
=====================================
*/
.category-card {
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #00000054;
	flex-direction: column;
}
.section-header {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}
.post-wrap {
   max-width: 1120px;
   margin: 0 auto;
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
}
.post-item {
   cursor: pointer;
}
.post-item * {
   transition: .3s linear;
}
.item-content {
  background: #024e44c4;
  padding: 25px;
  
}
.item-icon {
  margin-bottom: 20px;
  font-size: 5rem;
  font-family: 'Nunito', sans-serif;
  color: transparent;
  -webkit-text-stroke: 2px #ffc107;
  text-stroke: 2px #ffc107;
}
.item-icon:before {
   content: "";
   font-family: FontAwesome;
   color: #F09EA3;
   font-size: 50px;
   line-height: 1;
}
.item-icon.photo:before {
   content: "\f030";
}
.item-icon.video:before {
   content: "\f03d";
}
.item-icon.gift:before {
   content: "\f06b";
}
.item-icon.group:before {
   content: "\f0c0";
}
.item-icon.tree:before {
   content: "\f1bb";
}
.item-icon.anchor:before {
   content: "\f13d";
}
.post-item:hover .item-icon, .post-item:hover .item-body h3, .post-item:hover .item-body p {
   transform: translateY(-8px);
}
.item-body {
   color: #f7f2e3;
  font-size: 14px;
  min-height: 340px;
}
.item-body h3 {
  font-weight: 500;
  margin-bottom: 15px;
  transition-delay: .05s;
  font-family: 'Nunito', sans-serif;
  color: #fff;
  font-size: 1.9rem;
}
.item-body p {
   transition-delay: .1s;
}
.item-footer {
   padding-top: 15px;
}
.link {
   text-decoration: none;
   display: inline-block;
   overflow: hidden;
   position: relative;
   padding-right: 30px;
   font-size: 12px;
   text-transform: uppercase;
   font-weight: 600;
   color: #F5E2CD;
}
.link:before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   bottom: 0;
   height: .125rem;
   margin: auto;
   background: #ffc107;
   transform: scaleX(.2);
   transform-origin: left center;
   z-index: 0;
   transition: .6s cubic-bezier(.6, .01, 0, 1);
}
.link span {
   display: inline-block;
   position: relative;
   transform: translateX(-200%);
   transition: .6s cubic-bezier(.6, .01, 0, 1);
}
.post-item:hover .link span {
   transform: translateX(0%);
}
.post-item:hover .link:before {
   transform-origin: right center;
}
@media (min-width: 768px) {
   .post-item {
      flex-basis: 50%;
      flex-shrink: 0;
   }
}
@media (min-width: 960px) {
   .post-item {
      flex-basis: 33.333333333%;
   }
}
.massage {
  background-image: url(../images/catalog/massage.jpg);
  background-size: cover;
  margin: 10px;
}
.shugaring {
  background-image: url(../images/catalog/shugaring.jpg);
  background-size: cover;
  margin: 10px;
}
.giruda {
  background-image: url(../images/catalog/giruda.jpg);
  background-size: cover;
  margin: 10px;
}
.permanent {
  background-image: url(../images/catalog/permanent.jpg);
  background-size: cover;
  margin: 10px;
}
.kedr {
  background-image: url(../images/catalog/kedr.jpg);
  background-size: cover;
  margin: 10px;
}
.figure {
  background-image: url(../images/catalog/figure.jpg);
  background-size: cover;
  margin: 10px;
}
/**/
.count {
  background-image: url('../images/count_bg.jpg');
  background-position: center;
  background-attachment: fixed;
}
.count-wrap {
  background: #333333bd;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  padding-bottom: 70px;
  padding-top: 70px;
}
.section-btn {
    background: linear-gradient(178deg, #2f998d, #1f6c64);
    border: none;
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 600;
    padding: 7px 25px;
    border-radius: 7px;
    transition-duration: .9s;
}
.section-btn:hover {
    background: linear-gradient(178deg, #2f998d, #1a504b);
    transition-duration: .9s;
}
/*.img-about:after {
  position: absolute;
  content: "";
  width: 255px;
  height: 217px;
  background-image: url(../images/dots-green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translate(-40%, -40%);
  -ms-transform: translate(-40%, -40%);
  transform: translate(-40%, -40%);
  z-index: -1;
}*/
.img-border {
  position: relative;
  height: 100%;
  min-height: 400px;
}
.img-border::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 3rem;
  bottom: 3rem;
  border: 5px solid #024e44;
}
.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
}
.list-card {
     background: #024e44;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 130px;
    display: flex;
    align-items: center;
}
.list-header {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
}
.list-description {
  font-size: 12px;
}
.animal-item {
    position: relative;
    display: block;
    overflow: hidden;
    transition-duration: .6s;
    cursor: pointer;
}
.animal-item:hover img {
  scale: 1.2;
  transition-duration: .6s;
}
.img-fluid {
    max-width: 100%;
    height: auto;
    transition-duration: .6s;
}
.animal-text {
    position: absolute;
    font-family: 'Nunito', sans-serif;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 1;
    transition: .5s;
}
.owl-nav {
  position: absolute;
  z-index: 1;
  top: -35px;
  right: 13px;
}
.owl-nav button {
  background: #024e44 !important;
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  color: #fff !important;
}
.master-card {
  position: relative;
}
.master-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.master-description {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  background: #0000007a;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  transform: translate(0px, 260px);
  transition-duration: .6s;
}
.master-description h5 {
    padding: 10px;
}
.master-img img {
  border-radius: 10px;
}
.master-img:hover .master-description{
  transform: translate(0px, 0px);
  transition-duration: .6s;
  cursor: pointer;
}
.map-wrapper {
  background-image: url('../images/main.jpg');
}
.sert-modal {
  color: #024e44;
  border-bottom: 1px dotted;
  cursor: pointer;
}
.big-banner img {
  box-shadow: 0 0 10px #c0c0c0;
  border-radius: 10px;
}
.trigger {
  background: #024e44;
}
.trigger-header-text {
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
}
.trigger-small {
  font-family: 'Nunito', sans-serif;
}
.trigger-btn {
  background: #ffc107;
    border: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 10px;
}
.counter {
  font-weight: 700;
}
/*
=====================================
              TABS
=====================================
*/
.tab-btn {
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: .9rem;
  background: #fff;
  padding: 10px 20px;
}
.tab-btn.active {
  background: var(--main-color);
  color: #fff;
}
/*
=====================================
         PRODUCT CARD
=====================================
*/
.product-card {
	border: 1px solid #f1f1f1;
	transition-duration: .6s;
}
.product-card:hover {
	box-shadow: 0 0 10px #d0d0d0;
	transition-duration: .6s;
	cursor: pointer;
}
.card-label {
	top: -20px;
  left: 0;
  background: yellowgreen;
  padding: 7px;
  font-weight: bold;
  color: #fff;
}
.cart-card {
	right: 0;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  bottom: 0;
}
.product-card-img img {
	width: 150px;
}
.product-card-variants-img {
	width: 30px;
	border: 1px solid #333;
}

.about {
  }
.about-row {
  background: #024e44;
  color: #fff;
}
/*
=====================================
         COLLECTION CARD
=====================================
*/
.col-card {
  position: relative;
}
.col-card img {
  transition-duration: 1s;
}
.col-card img:hover {
  transform: scale(1.2);
}
/*
=====================================
         ABOUT
=====================================
*/

.callback-form {
  color: #fff;
  background: linear-gradient(180deg, #ffc107, #ffb307);
  padding: 15px 20px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  margin-top: 30px;
  text-align: center;
  transition-duration: .6s;
  border-radius: 8px;
  transform: translate(0px, 10px);
}
.callback-form:hover {
    color: #fff;
    transition-duration: .6s;
    transform: translate(0px, 0px);
}
.about-img img {
  max-height: 580px;
}
/*
=====================================
         FOOTER
=====================================
*/
footer {
	background-image: url('../images/footer/footer_bg.jpg');
}
.footer-logo img {
	width: 250px;
}
.fooler_nav {
	column-count: 2;
}
.footer-desc {
	font-size: .8rem;
}
.container-xxxl {
	max-width: 1400px;
	margin: auto;
}
.copyright {
	border-top: 2px solid;
}
.footer-sprite i {
	display: block;
  font-size: 1.4rem;
  margin-right: 10px;
}
.footer-header:after {
	content: '';
	display: block;
	height: 3px;
	background: #ffc107;
	width: 15%;
	margin-top: 5px;
}
.footer-header small {
  font-size: 11px;
  border-bottom: 1px dashed;
  margin-left: 15px;
}
/*
=====================================
         PAGE
=====================================
*/
.page-wrapper {
    background-image: url('../images/page-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.massage-card {
    position:relative;
    overflow: hidden;
    padding: 15px;
    border: 1px solid #e5e5e5;
    transition-duration: .5s;
}
.massage-card:hover {
    box-shadow: 0 0 10px #545454;
    transition-duration: .5s;
}
.massage-desc p {
    text-align: justify;
    font-size: 13px;
    min-height: 100px;
    display: flex;
    align-items: center;
}
.massage-desc h5 {
    min-height: 50px;
    display: flex;
    align-items: center;
}
.action-button {
    background: #024e44;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}
.price {
    font-size: 1.5rem;
}
.page-img {
    max-width: 550px;
    float: left;
    margin-right: 20px;
}
.fs-15 {
    font-size: 15px;
}
.price-bg {
    background-image: url(../images/sugaring-price.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.count-2 {
    column-count: 2;
}
.text-modal {
    border-bottom: 1px dashed;
    color: #024e44;
    font-weight: 600;
    cursor: pointer;
}
.m-count-d {
    font-size: 3rem;
    font-family: 'Nunito', sans-serif;
    color: transparent;
    -webkit-text-stroke: 2px #024e44;
}
.count-info {
    
}
.breadcrumb {
    font-size: 12px;
    padding: 5px 15px;
}
.fs-12 {
    font-size: 12px;
}
.modal-img {
    background-image: url('../images/form-img.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.btn-santorini {
    background: #024e44;
    color: #fff;
}
.mobile-callback {
    color: #333;
    text-transform: uppercase;
    text-decoration: none;
    background: #ffc107;
    padding: 10px 10px;
    border-radius: 7px;
    font-weight: bold;
}
.card-btn {
    border: none;
    background: #024e44;
    color: #fff;
    border-radius: 7px;
    padding: 7px 10px;
}
.comlex-list {
  min-height: 330px;  
}
.fs-14 {
    font-size: 14px;
}
.action-bg {
    background-image: url('../images/action-bg.jpg');
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
}
.action-btn {
    background: linear-gradient(178deg, #2f9c26, #045108);
    border: none;
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 600;
    padding: 7px 25px;
    border-radius: 7px;
    transition-duration: .9s;
    border: 1px solid;
}
.action-btn:hover {
    transform: scale(1.05);
    transition-duration: .9s;
}
.action-block {
    background: #FFC107;
    padding: 25px;
    position: relative;
}
.action-price-wrap {
    position: absolute;
    top: 30px;
    right: 50px;
}
.action-price span {
    font-size: 1.6rem;
}
.action-price del {
    font-size: 1.3rem;
}
.sert {
    background: #b3e1db;
}
.promo-block{
    position: relative;
}
.promo-link {
        position: absolute;
    top: 0;
    z-index: 1;
    color: #fff;
    width: 100%;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.intro-bg {
   background-image: url('../images/into.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 7px;
    background-position: center;
}
.complex-link {
    font-family: 'Nunito', sans-serif;
    color: #024e44;
}
.iwhatsapp {
    display: block;
    margin-right: 15px;
    border: 1px solid;
    padding: 7px;
    font-size: 2rem;
    border-radius: 7px;
    background: linear-gradient(354deg, #2BB741, #25D366);
    color: #fff;
}
.itelegramm {
    display: block;
    margin-right: 15px;
    border: 1px solid;
    padding: 7px;
    font-size: 2rem;
    border-radius: 7px;
    background: linear-gradient(354deg,  #2AABEE, #229ED9);
    color: #fff;
}
.ivk {
    display: block;
    border: 1px solid;
    padding: 7px;
    font-size: 2rem;
    border-radius: 7px;
    background: linear-gradient(354deg, #0077FF, #0077FF);
    color: #fff;
}
.c-button {
    border-radius: 7px;
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
    background: #009688;
    padding: 8px;
    color: #fff;
    border: 3px solid;
}
.navbar-toggler {
    background: #fff !important;
}