/* Developers: Kənan Mammadov, Nəzakət Məmmədova*/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif !important;
}
:root {
  --color-white: white;
  --color-black: black;
  --color-F178EE: #f178ee;
  --color-F4D01A: #f4d01a;
  --color-white: white;
  --color-fefdff: #fefdff;
  --color-faf1fa: #faf1fa;
  --color-ddd0e5: #ddd0e5;
  --color-4b194b: #4b194b;
  --color-purple: purple;
  --color-black: black;
  --color-f2f2f2: #f2f2f2;
  --color-555: #555;

}
a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  outline: none;
}
ul {
  list-style: none;
  margin-bottom: 0 !important;
}
.button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  color: var(--color-white);
  background-color: var(--color-F178EE);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: .4s;
}
.button-onlyIcon{
    border-radius: 100%;
    width: 50px;
    height: 50px;
    background: transparent;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.border-F178EE{
    border: 1px solid var(--color-F178EE);
    color: var(--color-F178EE);
    
}
.bg-F178EE{
  background-color: var(--color-F178EE);
  color: var(--color-white);
}
.bg-4b194b{
  background-color: var(--color-4b194b);
}
.bg-f2f2f2{
  background-color: var(--color-f2f2f2) ;
  color: var(--color-4b194b);
}
.border-socialNtw{
  border: 1px solid rgba(241, 120, 239, 0.137);
  color: var(--color-white);
}
.border-F178EE:hover{
    background-color: var(--color-F178EE);
    color: var(--color-white);
}
.section{
    padding: 100px 0;
    position: relative;
}

/* Navbar css */

.main--navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: var(--color-white);
  box-shadow: 0 0 10px #ddd;
  padding: 20px 0;
}
.nav--logo{
  font-size: 26px;
  color: var(--color-F178EE) !important;
  font-weight: 600;
}
.phone--number i{
  font-size: 14px;
  width: 25px;
  height: 25px;
  background-color: var(--color-F178EE);
  border-radius: 100%;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone--number span{
  font-size: 14px;
  font-weight: 500;
  color: var(--color-555);
  color: var(--color-F178EE);
  
}
 .navbar-nav{
  gap: 20px;
 }
.nav-link{
  font-size: 16px;
  color: var(--color-black);
  font-weight: 500;
  position: relative;
  padding: 0 !important;
}
 .nav-link::after{
  content: "";
  height: 2px;
  width: 100%;
  background-color: var(--color-F178EE);
  position: absolute;
  left: 0;
  bottom: -2px;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  transition: .4s;
 }
 .nav-link:hover::after{
  transform: scaleX(100%);
 }
 .nav-link.active::after{
  transform: scaleX(100%);

 }

/* Header css */
.main-header--img {
  height: 90vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.main-header--img img {
  object-fit: cover;
}
.header-title-container {
  position: relative;
  
}
.header-title {
  font-size: 52px;
  font-weight: 600;
  color: var(--color-F178EE);
  position: absolute;
  top: -100px;
  width: 100%;
  transform: translateY(100%);
  opacity: 0;
  animation: slideUp 9s infinite;
  animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
  animation-delay: var(--delay);
  
  
  
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  30% {
    transform: translateY(0);
    opacity: 1;
  }
  40% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}
/*  About section css */

.about--section, .main--footer{
    background-color: var(--color-4b194b);
    color: var(--color-white);
}
.about-section--img{
    position: relative;
    min-height: 460px;
}
.about-section--img img{
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    position: absolute;
}
.about-section--img img:last-child{
    right: 80px;
    top: 160px;
}
.about-section--description span{
    font-size: 14px;
    padding-bottom: 5px;
    color: var(--color-F4D01A);
}
.about-section-description--title{
    font-size: 40px;
    margin-bottom: 20px;
}
.about-section-description--content{
    font-size: 18px;
}
/* Services css */
.services-section--header{
    margin-bottom: 30px;
    padding-bottom: 10px;
    position: relative;
}
.services-section--header::before, .services-section--header::after{
    content: "";
    height: 2.8px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.services-section--header::before{
    z-index: 1;
    width: 30%;
    background-color: var(--color-F178EE);
}
.services-section--header::after{
    width: 100%;
    background-color: var(--color-f2f2f2);
}
.services-section--title{
    font-size: 30px;
    margin-bottom: 0 !important;
}
.service--item{
    margin: 0 20px;
    border-radius: 20px;
    
    position: relative;
}
.service-item--img{
    border-radius: 20px;
    height: 450px;
    overflow: hidden;
}
.service-item--img img{
    object-fit: cover;
    object-position: center;
}
.servive-item--description{
    border-radius: 20px; 
    padding: 20px;
    transform: translateY(-50%);
    width: 90%;
    margin: auto;
    background-image: url(../images/bg-services.png);
}
.servive-item--description h2{
    font-size: 21px;
    margin-bottom: 10px;
    font-weight: 600;
}
.servive-item--description p{
    color: var(--color-555);
    font-size: 14px;
    display: -webkit-box;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Footer css */
.contact-info-row{
    padding: 30px;
    border: 1px solid rgba(241, 120, 239, 0.137);
    border-radius: 20px;
}
.contact-info-row .col-lg-6:not(:last-child){
    border-right: 1px solid rgba(241, 120, 239, 0.137);
}
.contact-info--icon{
    width: 60px;
    height: 60px;
    background-color: var(--color-f2f2f2);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--color-4b194b);
}
.contact-info-content p{
    font-weight: 600;
    margin-bottom: 5px !important;
}
.contact-info-content a{
    font-size: 14px;
    font-weight: 300;
}
.social--networks{
  border-bottom: 1px solid rgba(241, 120, 239, 0.137);
}
.footer-end p{
  color: var(--color-ddd0e5);
}
.footer-end--content a{
  color: var(--color-F4D01A);
}
.social-network-item{
  border-radius: 6px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--color-f2f2f2);
}
.social-network-item i{
  width: 25px;
  height: 25px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-f2f2f2);
  color: var(--color-4b194b);
  border-radius: 6px;
}

/* Services page css */
/* Services page header */
.services--header{
  background-image: url(../images/pages-header-bg.png);
  background-position: center;
  background-size: cover;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.services-header--title{
  font-size: 60px;
  font-weight: 600;
}
.services-header--desc{
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.services-header--desc span{
  color: var(--color-F178EE);
}
.services-header--desc a:hover{
  color: var(--color-F178EE);
}
/* Services page section */
.services-categories-left--header{
  padding: 30px;
  border-radius: 20px 20px 0 0;
  background-color: var(--color-4b194b);
  color: white;
}
.services-categories-left--header h3{
  font-size: 24px;
  font-weight: 600;
}
.services-categories-left--list{
  padding: 30px;
  border-radius:0 0 20px 20px;
  background-color: var(--color-f2f2f2);
}
.services-categories-left-item{
  font-size: 18px;
  color: var(--color-555);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.756);
  font-weight: 500;
}
.services-categories-left-item:first-child{
  padding-top: 0;
}
.services-categories-right-item{
  scroll-margin-top: 150px;
}
.services-categories-right-item .service--item{
  margin: 0;
}
.services-categories--left{
  position: sticky;
  top: 150px;
}

/* Service single page css */

.service-single-img{
  max-height: 700px;
  position: relative;
  border-radius: 30px;
  max-width: 600px;
  margin: auto;
}
.service-single-img img{
  object-fit: cover;
  border-radius: inherit;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.06);
  max-height: inherit;
}
.service-single-description-title{
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-F178EE);
}
.service-single-description-text{
  font-size: 18px;
  font-weight: 500;
}
.service-single-description strong{
  font-size: 20px;
}
.service-single-desc-list{
  font-size: 18px;
  font-weight: 500;
}
.service-single-desc-list li i{
  color: #f178ee;
}
.section-title{
  font-size: 34px;
  font-weight: 600;
}
.single-section-card{
  padding: 30px;
  background-color: #f2f2f261;
  border-radius: 40px 0 40px 0;
}
.single-section-card-title{
  font-size: 22px;
  font-weight: 600;
  color: var(--color-F178EE);
}
.single-section-card-content{
  font-size: 18px;
  color: var(--color-555);
}
.service-detail-pricing-part p{
  font-size: 26px;
  font-weight: 600;
  width: 85%;
  margin: auto;
}
.detail-pricing-part-dateandpricing{
  padding: 30px;
  border: 1px solid rgba(241, 120, 239, 0.137);
  border-radius: 20px;
  max-width: 900px;
  margin: auto;
}
.detail-pricing-part-dateandpricing div{
  width: 50%;
  text-align: center;
  font-size: 22px;
}
.detail-pricing-part-dateandpricing div:not(:last-child){
  border-right: 1px solid rgba(241, 120, 239, 0.137);
}

.detail-consulting-services--item{
  position: relative;
  padding:0 0 30px 30px;
}
.detail-consulting-services--item::before{
  content: "";
  width: 3px;
  height: calc(100% - 50px);
  background: linear-gradient(180deg, #f178ee 0%, rgba(255, 255, 255, 0) 100%) ;
  position: absolute;
  left: 0;
  top: 40px;
  transform: translateX(-50%);
}
.detail-consulting-services-item--icon{
  width: 30px;
  height: 30px;
  background-color: var(--color-F178EE);
  color: var(--color-white);
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-50%);
}
.detail-consulting-services--item h3{
  font-size: 26px;
  font-weight: 600;
}
.detail-consulting-services--item p{
  color: var(--color-555);
  font-size: 18px;
}
.consulting-card{
  border-radius: 80px 0 80px 0;
  padding: 50px;
}
.consulting-card *{
  font-size: 18px;
}
.consulting-card .single-section-card-title{
  font-size: 22px;
}
.single-section-card .detail-pricing-part-dateandpricing div{
  font-size: 20px !important;
}
.single-section-card .detail-pricing-part-dateandpricing, .single-section-card .detail-pricing-part-dateandpricing div{
  border-color: #55555520;
}

.accordion-item{
  border: none;
  margin-bottom: 20px;
  background-color: var(--color-f2f2f2);
  border-radius: 20px !important;
}

.accordion-button:focus{
  box-shadow: none;
}
.accordion-button{
  font-weight: 600;
  background-color: var(--color-f2f2f2);
  border-radius: 20px !important;
  padding: 30px;
  font-size: 18px;
}
.accordion-button:not(.collapsed){
  background-color: var(--color-F178EE);
  color: var(--color-white);
  border-radius: 20px 20px 0 0 !important;
}
.accordion-body{
  padding: 30px;
  color: var(--color-555);
  font-size: 16px;
  font-weight: 400;
}
.detail-video{
  border-radius: 30px;
  overflow: hidden;
  height: 400px;
}
.detail-video video{
  object-fit: cover;
}
del{
  color: var(--color-555);
  font-weight: 500;
  position: relative;
  font-size: 26px;
  /* margin-left: 20px; */
}

.venera-consulting-section h2{
  font-size: 36px;
}
.venera-consulting-section p{
  font-size: 16px;
}
.pricing--item{
  padding: 40px;
  border-radius: 24px;
  background-color: var(--color-white);
  box-shadow: 0px 2px 12px 0px rgba(20, 20, 43, 0.08);

}
.pricing--title{
  font-size: 24px;
  font-weight: 700;
}
.price--list i{
  width: 26px;
  height: 26px;
  background-color: var(--color-F178EE);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 14px;
  flex-shrink: 0;
}
.price--list p{
  color: var(--color-555);
  font-size: 16px;
}
.pricing-body--title{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.pricing-value{
  font-size: 36px;
  font-weight: 700;
}

.packet-gift i{
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-white);
  background-color: var(--color-F178EE);
  border-radius: 100%;
  flex-shrink: 0;
}
.packet-gift p{
  font-size: 16px;
  color: var(--color-555);
  font-weight: 500;
}
.meditation--item{
  background-image: url(../images/bg-services.png);
  padding: 20px;
  border-radius: 20px;
}
.meditation-item--img{
  width: 100%;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
}
.meditation-item--img img{
  object-fit: cover;

}
.meditation-item--description{
  padding: 15px;
}
.meditation-item--description strong{
  font-size: 20px;
}
.meditation-item--description h2{
  font-size: 28px;
  font-weight: 700;
}

.detail--description{
  margin-top: 60px;
  max-width: 600px;
  margin: auto;
  margin-top: 70px;
}
.detail--description::-webkit-scrollbar {
  display: none;
}
.detail-description--item{
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.detail-description--item p{
  font-size: 20px;
  margin-bottom: 0 !important;
  text-align: center;
  padding: 20px 0;
}
.detail-description-item--icon{
  min-width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: var(--color-F178EE);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transform: translateX(-50%);

}
.detail-description-line{
  width: 3px;
  background: linear-gradient(180deg, #f178ee 0%, rgba(255, 255, 255, 0) 100%) ;
 min-height: 70px;

}
.about-section-description-content{
  font-size: 18px;
}
.bg-del{
  color: var(--color-f2f2f2);
  font-size: 18px;
}


/* Chat box css */
.hidden {
  display: none;
}

.sticky-button {
  position: fixed;
  background-color: #25D366;
  bottom: 40px;
  right: 20px;
  border-radius: 50px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
  z-index: 20;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.sticky-button svg {
  margin: auto;
  fill: #fff;
  width: 35px;
  height: 35px;
}

.sticky-button a,
.sticky-button label {
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 55px;
  height: 55px;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.sticky-button label svg.close-icon {
  display: none;
}

.sticky-chat {
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 320px;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  z-index: 21;
  opacity: 0;
  visibility: hidden;
}

.sticky-chat a {
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  color: #505050;

}

.sticky-chat svg {
  width: 35px;
  height: 35px;
}

.sticky-chat .chat-content {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .25);
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.sticky-chat .chat-header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background-color: #25D366;
  overflow: hidden;
}

.sticky-chat .chat-header:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 75px;
  background: rgba(0, 0, 0, .040);
  border-radius: 70px 0 5px 0;
}

.sticky-chat .chat-header svg {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  fill: #fff;
}

.sticky-chat .chat-header .title {
  padding-left: 15px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  color: #fff;
}

.sticky-chat .chat-header .title span {
  font-size: 11px;
  font-weight: 400;
  display: block;
  line-height: 1.58em;
  margin: 0;
  color: #f4f4f4;
}

.sticky-chat .chat-text {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 20px;
  font-size: 12px;
}

.sticky-chat .chat-text span {
  display: inline-block;
  margin-right: auto;
  padding: 10px;
  background-color: #f0f5fb;
  border-radius: 0px 15px 15px;
}

.sticky-chat .chat-text span:after {
  content: 'indicə';
  display: inline-block;
  margin-left: 10px;
  font-size: 9px;
  color: #989b9f;
}

.sticky-chat .chat-text span.typing {
  margin: 15px 0 0 auto;
  padding: 10px;
  border-radius: 15px 0px 15px 15px;
}

.sticky-chat .chat-text span.typing:after {
  display: none;
}

.sticky-chat .chat-text span.typing svg {
  height: 13px;
  fill: #505050;
}

.sticky-chat .chat-button {
  display: flex;
  align-items: center;
  margin-top: 15px;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .25);
  overflow: hidden;
  font-size: 12px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.sticky-chat .chat-button svg {
  width: 20px;
  height: 20px;
  fill: #505050;
  margin-left: auto;
  transform: rotate(40deg);
  -webkit-transform: rotate(40deg);
}

.chat-menu:checked+.sticky-button label {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.chat-menu:checked+.sticky-button label svg.chat-icon {
  display: none;
}

.chat-menu:checked+.sticky-button label svg.close-icon {
  display: table-cell;
}

.chat-menu:checked+.sticky-button+.sticky-chat {
  bottom: 120px;
  opacity: 1;
  visibility: visible;
}

#bg-4b194b h2,#bg-4b194b h3,#bg-4b194b p {
  color: var(--color-white) !important;
}
.f-20{
  font-size: 20px;

}
.bg-f2f2f261{
  background-color: #f2f2f261;
}
.b-gray{
border-color: #55555520 !important;
}







