/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------

CSS STRUCTURE:

1. VARIABLES

2. GENERAL TYPOGRAPHY
  2.1 General Styles
  2.2 Floating & Alignment
  2.3 Forms
  2.4 Lists
  2.5 Code
  2.6 Tables
  2.7 Spacing
  2.8 Utilities
  2.9 Misc
    - Row Border
    - Zoom Effect
  2.10 Buttons
    - Button Sizes
    - Button Shapes
    - Button Color Scheme
    - Button Aligns
  2.11 Section
    - Hero Section
    - Section Title
    - Section Paddings
    - Section Margins
    - Section Bg Colors
    - Content Colors
    - Content Borders

3. EXTENDED TYPOGRAPHY
  3.1 Blockquote / Pullquote
  3.2 Text Highlights

4. CONTENT ELEMENTS
  4.1 Tabs
  4.2 Accordions
  4.3 Brand Carousel
  4.4 Category Carousel

5. BLOG STYLES
  5.1 Blog Single Post
  5.2 About Author
  5.3 Comments List
  5.4 Comments Form3

6. SITE STRUCTURE
  6.1 Header
    - Header Menu
    - Nav Sidebar
  6.2 Billboard
  6.3 About Us Section
  6.4 Video Section
  6.5 Selling Products Section
  6.6 Quotation Section
  6.7 Latest Blogs Section
  6.8 Newsletter Section
  6.9 Instagram Section
  6.10 Footer
    - Footer Top
    - Footer Bottom

7. OTHER PAGES
  7.1 Product detail
  7.2 Shop page

    
/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  /* widths for rows and containers
     */
  --header-height: 160px;
  --header-height-min: 80px;
}

/* on mobile devices below 600px
 */
@media screen and (max-width: 600px) {
  :root {
    --header-height: 100px;
    --header-height-min: 80px;
  }
}

/* Theme Colors */
:root {
  --primary-color: #4CC082;
  --light-primary-color: #E2F3F0;
  --secondary-color: #EC6C5A;
  --light-secondary-color: #FFE9E5;
  --tertiary-color: #FFEED3;
  --dark-color: #31333A;
  --light-color: #FFFFFF;
  --grey-color: #BBC7D4;
  --light-dark-color: #727272;
  --light-grey-color: #f5f5f5;
}

/* Fonts */
:root {
  --body-font: 'Inter', sans-serif;
  --heading-font: 'Inter', sans-serif;
}

body {

  --bs-link-color: var(--dark-color);
  --bs-link-hover-color: var(--dark-color);

  --bs-link-color-rgb: 40, 40, 40;
  --bs-link-hover-color-rgb: 0, 0, 0;

  --bs-light-rgb: 248, 248, 248;

  --bs-font-sans-serif: var(var(--body-font));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.3rem;
  --bs-body-color: var(--dark-color);

  --bs-primary: #4CC082;
  --bs-primary-rgb: 76, 192, 130;
  --bs-primary-bg-subtle: #E2F3F0;

  --bs-border-color: #F7F7F7;

  --bs-secondary: #EC6C5A;
  --bs-secondary-rgb: 236, 108, 90;
  --bs-secondary-bg-subtle: #FFE9E5;

  --bs-tertiary: #f8be60;
  --bs-tertiary-bg-subtle: #FFEED3;

}

.btn {
  --bs-btn-font-family: var(--heading-font);
}

.btn-primary {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 60px;
  transition: all 0.3s ease-in;
  --bs-btn-color: var(--light-color);
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #46ad76;
  --bs-btn-hover-border-color: #46ad76;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--light-color);
  --bs-btn-active-bg: var(--primary-color);
  --bs-btn-active-border-color: var(--primary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--light-color);
  --bs-btn-disabled-bg: #d3d7dd;
  --bs-btn-disabled-border-color: var(--primary-color);
}

.btn-outline-primary {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 60px;
  transition: all 0.3s ease-in;
  --bs-btn-color: var(--primary-color);
  --bs-btn-bg: #ffffff;
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: var(--primary-color);
  --bs-btn-hover-border-color: var(--primary-color);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--primary-color);
  --bs-btn-active-bg: var(--primary-color);
  --bs-btn-active-border-color: var(--primary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--primary-color);
  --bs-btn-disabled-bg: #d3d7dd;
  --bs-btn-disabled-border-color: var(--primary-color);
  --bs-gradient: none;
}

.btn-outline-dark {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease-in;
}

.btn-dark {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease-in;
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--dark-color);
  --bs-btn-border-color: var(--dark-color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #212529;
  --bs-btn-hover-border-color: #212529;
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--dark-color);
  --bs-btn-active-border-color: var(--dark-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--dark-color);
  --bs-btn-disabled-border-color: var(--dark-color);
}

/* body {
  letter-spacing: 0.01625rem;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--bs-body-color);
  font-weight: 700;
}

a {
  text-decoration: none;
}

.breadcrumb {
  --bs-breadcrumb-item-active-color: var(--dark-color);
}

.form-control {
  border: 1px solid #e4e3e3;
}

.form-control:focus {
  border-color: #949494;
  outline: 0;
  box-shadow: none;
}

.padding-large {
  padding-top: 18rem;
  padding-bottom: 14rem;
}

.padding-medium {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.padding-medium-2 {
  padding-top: 11rem;
  padding-bottom: 8rem;
}

@media only screen and (max-width: 768px) {
  .padding-large {
    padding-top: 10rem;
    padding-bottom: 5rem;
  }

  .padding-medium {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .padding-medium-2 {
    padding-top: 12rem;
    padding-bottom: 6rem;
  }
}


/*----------------------------------------------*/
/* 6. SITE STRUCTURE */
/*----------------------------------------------*/
/* 6.1 Header
--------------------------------------------------------------*/
/* Preloader */
.preloader-wrapper {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 111;
  background: #fff;
}

.preloader-wrapper .preloader {
  margin: 20% auto 0;
  transform: translateZ(0);
}

.preloader:before,
.preloader:after {
  content: '';
  position: absolute;
  top: 0;
}

.preloader:before,
.preloader:after,
.preloader {
  border-radius: 50%;
  width: 2em;
  height: 2em;
  animation: animation 1.2s infinite ease-in-out;
}

.preloader {
  animation-delay: -0.16s;
}

.preloader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}

.preloader:after {
  left: 3.5em;
}

@keyframes animation {

  0%,
  80%,
  100% {
    box-shadow: 0 2em 0 -1em var(--primary-color);
  }

  40% {
    box-shadow: 0 2em 0 0 var(--primary-color);
  }
}


@media screen and (max-width: 991px) {

  /* offcanvas menu */
  .offcanvas-body .nav-item {
    font-weight: 700;
    border-bottom: 1px solid #d1d1d1;
  }

  /* dropdown-menu */
  .dropdown-menu {
    padding: 0;
    border: none;
    line-height: 1.4;
    font-size: 0.9em;
  }

}



/*----- Nav Section Style -------------------------*/
/* nav bar style  */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:active,
.navbar-nav .nav-link:hover {
  color: #1F5A45;
}

.nav-link {
  color: var(--dark-color);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* dropdown style */
.dropdown-item {
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.5rem 1rem;

}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--body-text-color);
}

.dropdown-menu {
  --bs-dropdown-link-active-bg: var(--light-grey-color);
}


/*----- Feature Section Style -------------------------*/

.feature-item {
  box-shadow: 4px 4px 10px rgba(150, 150, 150, 0.192);
  background: var(--light-color);
  cursor: pointer;
}

.feature-item:hover {
  background: #1F5A45;
  transition: all 0.3s ease-in;
}

.feature-title {
  font-weight: 900;
  text-transform: uppercase;
  color: #d25c66;
  transition: all 0.3s ease-in;
}

.feature-info {
  transition: all 0.3s ease-in;
}

.feature-item:hover .feature-info,
.feature-item:hover .feature-title {
  color: var(--light-color);
}

@media only screen and (min-width: 1400px) {
  #features {
    position: relative;
  }

  .feature-box {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media only screen and (max-width: 1399px) {
  .feature-box {
    margin-top: 120px;
  }
}


/*----- catergory Section Style -------------------------*/
.category-paragraph {
  transition: all 0.3s ease-in;
}

.primary {
  background: var(--bs-primary-bg-subtle);
  transition: all 0.3s ease-in;
}

.svg-primary {
  color: var(--primary-color);
  transition: all 0.3s ease-in;
}

.primary:hover {
  background: var(--bs-primary);
}

.secondary {
  background: var(--bs-secondary-bg-subtle);
  transition: all 0.3s ease-in;
}

.svg-secondary {
  color: var(--secondary-color);
  transition: all 0.3s ease-in;
}

.secondary:hover {
  background: var(--bs-secondary);
}

.tertiary {
  background: var(--bs-tertiary-bg-subtle);
  transition: all 0.3s ease-in;
}

.svg-tertiary {
  color: var(--bs-tertiary);
  transition: all 0.3s ease-in;
}

.tertiary:hover {
  background: var(--bs-tertiary);
}

.gray {
  background: #e0e5eb;
  transition: all 0.3s ease-in;
}

.svg-gray {
  color: var(--bs-gray);
  transition: all 0.3s ease-in;
}

.gray:hover {
  background: var(--bs-gray);
}

.primary:hover .svg-primary,
.primary:hover .category-paragraph,
.secondary:hover .svg-secondary,
.secondary:hover .category-paragraph,
.tertiary:hover .svg-tertiary,
.tertiary:hover .category-paragraph,
.gray:hover .svg-gray,
.gray:hover .category-paragraph {
  color: var(--light-color);
}

/*----- courses Section Style -------------------------*/
h5.course-title {
  transition: all 0.3s ease-in;
}

h5.course-title:hover {
  color: var(--primary-color);
}


/*----- testimonial Section Style -------------------------*/
.swiper-pagination {
  position: unset;
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 10px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--bs-primary);
  background: var(--bs-primary);
}


/*----- teacher Section Style -------------------------*/
.team-member ul.social-links {
  top: 0;
}

.team-member ul li {
  padding: 5px;
  transform: rotatey(-90deg) perspective(100px);
  transform-origin: left;
  cursor: pointer;
  transition: .5s ease-in-out;
  background-color: var(--primary-color);
}

.team-member ul li:first-of-type {
  transition-delay: .3s;
}

.team-member ul li:nth-of-type(2) {
  transition-delay: 0.6s;
}

.team-member ul li:nth-of-type(3) {
  transition-delay: 0.9s;
}

.team-member ul li:last-of-type {
  transition-delay: 1.3s;
}

.team-member:hover ul li {
  transform: rotatey(0deg);
}


/* Zoom Effect*/
.zoom-effect {
  position: relative;
  overflow: hidden;
}

.zoom-effect img {
  max-width: 100%;
  -webkit-transition: 0.6s ease-out;
  -moz-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}

.zoom-effect:hover img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.zoom-effect:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 2;
  opacity: 0;
  -moz-transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.zoom-effect:hover:before {
  opacity: 1;
  cursor: pointer;
}


/*----- register Section Style -------------------------*/
#register {
  background: var(--tertiary-color);
}


/*----- footer Section Style -------------------------*/
a.footer-link:hover {
  color: var(--primary-color);
}

svg.social-icon {
  color: var(--light-dark-color);
  transition: all 0.3s ease-in;
}

svg.social-icon:hover {
  color: var(--primary-color);
}




/*--------------------------------------------------------------
faqs page style start
--------------------------------------------------------------*/
.accordion-button:not(.collapsed) {
  color: var(--body-text-color);
  background-color: transparent;
  box-shadow: none;
}

.accordion {
  --bs-accordion-color: var(--light-text-color);
  --bs-accordion-bg: none;
  --bs-accordion-btn-color: var(--body-text-color);
}

.accordion-button:not(.collapsed)::after {
  background-image: url('https://api.iconify.design/eva/arrow-down-fill.svg?color=%234cc082');

}

.accordion-button::after {
  background-image: url('https://api.iconify.design/eva/arrow-down-fill.svg?color=%234cc082');
}

.accordion-button:focus {
  z-index: 3;
  border-color: none;
  box-shadow: none;
}



/*--------------------------------------------------------------
Checkout page style start
--------------------------------------------------------------*/
.form-check-input {
  border: 1px solid var(--primary-color);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-input:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}


/*--------------------------------------------------------------
Styles page style start
--------------------------------------------------------------*/
.chocolat-wrapper {
  z-index: 9999;
}



/*--------------------------------------------------------------
Account page style start
--------------------------------------------------------------*/
.nav-tabs .nav-item.show .nav-link.account-tab,
.nav-tabs .nav-link.account-tab {
  color: var(--light-dark-color);
}

.nav-tabs .nav-item.show .nav-link.account-tab,
.nav-tabs .nav-link.account-tab.active {
  color: var(--primary-color);
}



/*--------------------------------------------------------------
Blog page style start
--------------------------------------------------------------*/

/* ------ Pagination ------*/
.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-width: 0;
  --bs-pagination-border-color: var(--bs-border-color);
  --bs-pagination-border-radius: 0;
  --bs-pagination-hover-color: var(--light-color);
  --bs-pagination-hover-bg: var(--bs-primary);
  --bs-pagination-hover-border-color: var(--bs-border-color);
  --bs-pagination-focus-color: var(--light-color);
  --bs-pagination-focus-bg: var(--bs-primary);
  --bs-pagination-focus-box-shadow: none;
  --bs-pagination-active-color: var(--light-color);
  --bs-pagination-active-bg: var(--bs-primary);
  --bs-pagination-active-border-color: var(--bs-primary);
  --bs-pagination-disabled-color: var(--bs-primary-color);
  --bs-pagination-disabled-bg: var(--bs-primary-bg);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  display: flex;
  padding-left: 0;
  list-style: none;
}



/*--------------------------------------------------------------
Single Product page style start
--------------------------------------------------------------*/
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: var(--bs-body-color);
  background-color: var(--primary-color);
}

/* product-thumbnail-slider */
.product-thumbnail-slider {
  height: 660px;
}




/*--------------------------------------------------------------
  Shop page style
  --------------------------------------------------------------*/
.product-box {
  width: 25%;
}

@media screen and (max-width: 800px) {
  .product-box {
    width: 50%;
  }
}

.product-store .product-item {
  position: relative;
}

.product-item .cart-concern {
  background: var(--light-color);
  width: 80%;
  text-align: center;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 180px;
  z-index: 9;
  transition: 0.5s ease-out;
  padding: 20px 30px;
  opacity: 0;
}

.product-item:hover .cart-concern {
  bottom: 150px;
  opacity: 1;
}

.cart-concern .cart-button button {
  background: none;
  color: var(--dark-color);
  height: auto;
  padding: 0;
  margin: 0;
}

.cart-concern .cart-button button i.icon {
  font-size: 15px;
}

.product-item .wishlist-btn i.icon.icon-heart {
  font-size: 20px;
}

.product-item .item-price {
  font-size: 1.8em;
}




/*--------------------------------------------------------------
  course detail page style
  --------------------------------------------------------------*/
.nav-tabs .nav-item {
  transition: all 0.1s ease-in;
  border-radius: 0px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--bs-primary);
  background-color: transparent;
  border-color: transparent;
  border-bottom: 4px solid var(--bs-primary);
  transition: all 0.1s ease-in;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  color: var(--bs-primary);
  isolation: isolate;
  border-color: transparent;
  border-bottom: 4px solid var(--bs-primary);
  transition: all 0.1s ease-in;
}

/*---- video section style start ----*/

/* color box style */
div#cboxOverlay {
  opacity: 0.8 !important;
}

.video .video-player {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

iconify-icon.video-icon {
  font-size: 30px;
  color: var(--bs-light);
  border-radius: 6.25rem;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.4s ease-in-out;
}

iconify-icon.video-icon:hover {
  font-size: 35px;
}

.logo-naming {
	margin-right: 10px;
}

.indicators {
	font-size: 1.7rem;
}

.welcome_message {
	background-color: #d25c66;
	color: white;
	padding: 0px;
	line-height: 1.4;
	padding-bottom: 3px;
	padding-top: 3px;
}

.welcome_h2_message {
	font-size:3.4rem;
	font-family: 'Ubuntu';
}

.welcome_p_message {
	font-family: 'Ubuntu';
}

.welcome_hero {
	background-image:url(images/billboard-bg.webp);
	background-repeat: no-repeat;
}

.whom_join {
	margin-top: 50px !important;
}

.about_top {
	margin-top: -100px;
	margin-bottom: -55px;
}

.about_svg {
	min-width: 22px;
}

.points_border {
	padding-bottom: 6rem;
	padding-top: 0rem;
}

.big_button {
	width:100%;
}

.price_color {
	color: #222 !important;
}

.get_button {
	margin-bottom: 30px;
	margin-top: 20px !important;
}

.bg-first-row {
	background-color: #d25c66 !important;
}

.about_video {
	display:flex;
	justify-content:center;
}

.about_header {
	margin-top: 30px;
}

.about_pretext {
	color: #d25c66 !important;
}

.about_top_whom {
	margin-top: -170px;
}

/* Смартфоны */
@media (max-width: 575.98px) {
	footer#footer {
		margin-top: -0px;
		margin-bottom: -145px;
	}
	
	.welcome_h2_message {
		font-size: 33px;
	}
	
	.irina {
		margin-top: -10px !important;
	}
	
	.features_top {
		margin-top: -62px;
	}
	
	.padding-medium {
        padding-top: 1rem;
        padding-bottom: 10rem;
    }
    
    .revews_bottom {
		padding-bottom: 5rem;
    }
    
    .about_top {
		margin-bottom: -115px;
	}
	
	.points_border {
		margin-bottom: -100px;
	}
	
	.our_prices {
		padding-bottom: 5rem;
	}
	
.about_top_whom {
	margin-top: -135px;
	}

}

/* Планшеты */
@media (min-width: 576px) and (max-width: 1399px) {
	.welcome_h2_message {
	  font-size: 35px;
	}
	  
	.indicators {
		font-size: 1.2rem;
	}
		
	.sub_indicators {
		font-size: 1rem;
	}
	
	.features_top {
		margin-top: -50px;
	}
	
	.padding-medium {
		padding-top: 4rem;
		padding-bottom: 11rem;
	}
	
    .about_top {
		margin-bottom: -165px;
	}
	
	.points_border {
		margin-bottom: -100px;
	}
	
	.revews_bottom {
		padding-bottom: 70px;
	}
	
	.our_prices {
		padding-bottom: 5rem;
	}
	
	.footer_bottomer {
		padding-bottom: 5rem;
	}
	
	.about_top_teacher {
		margin-top: -140px;
	}
	
	.about_top_format {
		margin-top: -120px;
	}
	
	.about_top_about {
		margin-top: -20px;
	}
}

/* Патч под секцию нового 2-дневного интенсива */
.intensive-cards-2days .card-body p.fw-bold {
  line-height: 1.35;
}

.intensive-cards-2days .card {
  overflow: hidden;
}

.intensive-cards-2days .card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (min-width: 992px) {
  .intensive-cards-2days {
    align-items: stretch;
  }
}


/* ============================================================
   TAROT LANDING OVERRIDES
   Тема: "Таро как навигатор"
   ============================================================ */

:root {
  --primary-color: #57307d;
  --light-primary-color: #efe8f8;
  --secondary-color: #b46b4b;
  --light-secondary-color: #faeee7;
  --tertiary-color: #f5dfb6;
  --dark-color: #241b2f;
  --light-color: #ffffff;
  --grey-color: #c8bccf;
  --light-dark-color: #6f6578;
  --light-grey-color: #f7f2f8;
}

body {
  --bs-primary: #57307d;
  --bs-primary-rgb: 87, 48, 125;
  --bs-primary-bg-subtle: #efe8f8;
  --bs-secondary: #b46b4b;
  --bs-secondary-rgb: 180, 107, 75;
  --bs-secondary-bg-subtle: #faeee7;
  --bs-tertiary: #d6a74b;
  --bs-tertiary-bg-subtle: #f7ebd2;
  background: #fffaf4;
}

.btn-primary {
  --bs-btn-bg: #57307d;
  --bs-btn-border-color: #57307d;
  --bs-btn-hover-bg: #44245f;
  --bs-btn-hover-border-color: #44245f;
  --bs-btn-active-bg: #57307d;
  --bs-btn-active-border-color: #57307d;
  box-shadow: 0 14px 30px rgba(87, 48, 125, 0.18);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:active,
.navbar-nav .nav-link:hover {
  color: #57307d;
}

.bg-first-row {
  background: linear-gradient(90deg, #3b2255, #57307d, #b46b4b) !important;
}

.welcome_hero.tarot_hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(214, 167, 75, 0.25) 0, rgba(214, 167, 75, 0) 28%),
    radial-gradient(circle at 86% 12%, rgba(87, 48, 125, 0.25) 0, rgba(87, 48, 125, 0) 32%),
    linear-gradient(135deg, #fff7ec 0%, #f5eef8 54%, #f8ead7 100%);
}

.welcome_hero.tarot_hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(87,48,125,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87,48,125,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), rgba(0,0,0,0));
  pointer-events: none;
}

.tarot_hero .container {
  position: relative;
  z-index: 2;
}

.tarot_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(87, 48, 125, 0.09);
  color: #57307d;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.tarot_eyebrow::before {
  content: "✦";
  color: #b46b4b;
}

.welcome_message {
  background: linear-gradient(90deg, #57307d, #7b4aa1);
  color: #fff;
  padding: 0 8px 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.welcome_h2_message {
  color: #241b2f;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero_subtitle {
  margin: 18px 0 0;
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
  line-height: 1.18;
  font-weight: 800;
  color: #b46b4b;
  font-family: 'Ubuntu', Inter, sans-serif;
}

.tarot_hero_visual {
  position: relative;
}

.tarot_hero_visual img {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 38px rgba(36, 27, 47, .18));
}

.tarot_orbit {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 152px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.6);
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(245,223,182,.82));
  color: #57307d;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 20px 50px rgba(87,48,125,.16);
}

.tarot_orbit::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(87,48,125,.2);
  border-radius: 12px;
}

.tarot_orbit_1 {
  top: 16%;
  left: -2%;
  transform: rotate(-8deg);
}

.tarot_orbit_2 {
  right: 2%;
  top: 34%;
  transform: rotate(10deg);
}

.tarot_orbit_3 {
  left: 10%;
  bottom: 10%;
  transform: rotate(6deg);
}

.feature-item {
  border: 1px solid rgba(87,48,125,.07);
  box-shadow: 0 18px 42px rgba(36, 27, 47, 0.09);
}

.feature-item:hover {
  background: #57307d;
}

.feature-title {
  color: #b46b4b;
}

.about_pretext {
  color: #b46b4b !important;
}

.about_header {
  font-size: 1.22rem;
  line-height: 1.55;
}

.tarot_card_stack {
  min-height: 410px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tarot_card {
  position: absolute;
  width: 210px;
  height: 310px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  font-weight: 900;
  color: #fff;
  background:
    radial-gradient(circle at 50% 30%, rgba(245,223,182,.5), transparent 34%),
    linear-gradient(145deg, #57307d, #2f1946);
  border: 2px solid rgba(245,223,182,.55);
  box-shadow: 0 32px 80px rgba(36, 27, 47, .23);
}

.tarot_card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.35);
}

.tarot_card::after {
  content: "✦";
  position: absolute;
  bottom: 26px;
  font-size: 1.5rem;
  color: #f5dfb6;
}

.card_a {
  transform: translateX(-64px) rotate(-13deg);
}

.card_b {
  transform: translateX(12px) rotate(2deg);
  background:
    radial-gradient(circle at 50% 30%, rgba(245,223,182,.45), transparent 34%),
    linear-gradient(145deg, #7b4aa1, #3b2255);
}

.card_c {
  transform: translateX(84px) rotate(12deg);
  background:
    radial-gradient(circle at 50% 30%, rgba(245,223,182,.45), transparent 34%),
    linear-gradient(145deg, #b46b4b, #57307d);
}

.tarot-program-cards .card {
  min-height: 275px;
}

.tarot-program-card {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
  border: 1px solid rgba(87,48,125,.08) !important;
}

.tarot-program-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background: rgba(87,48,125,.08);
}

.tarot_step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: #57307d;
  color: #fff;
  font-weight: 900;
}

.tarot_note {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #faeee7;
  color: #7c432d;
  font-weight: 800;
}

.primary {
  background: #efe8f8;
}

.secondary {
  background: #faeee7;
}

.tertiary {
  background: #f7ebd2;
}

.gray {
  background: #eee7f0;
}

.primary:hover {
  background: #57307d;
}

.secondary:hover {
  background: #b46b4b;
}

.tertiary:hover {
  background: #d6a74b;
}

.gray:hover {
  background: #6f6578;
}

.svg-primary {
  color: #57307d;
}

.svg-secondary {
  color: #b46b4b;
}

.svg-tertiary {
  color: #d6a74b;
}

#register {
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,.55) 0, transparent 28%),
    linear-gradient(135deg, #f5dfb6 0%, #efe8f8 100%);
}

#register .register-form .form-control{
  border-radius: 14px;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  border-color: rgba(87,48,125,.16);
}

#register .register-form .form-control:focus{
  box-shadow: 0 0 0 .2rem rgba(87,48,125,.15);
  border-color: rgba(87,48,125,.55);
}

#register .register-form .register-consent{
  display: flex;
  gap: .6rem;
  align-items: flex-start;
}

#register .register-form .register-consent .form-check-input{
  margin-top: .35rem;
  border-radius: .35rem;
}

#register .register-form .register-consent .form-check-input:focus{
  box-shadow: 0 0 0 .2rem rgba(87,48,125,.15);
  border-color: rgba(87,48,125,.55);
}

#register .register-form .register-consent .form-check-label{
  font-size: .95rem;
  line-height: 1.35;
}

.form-check-input {
  border-color: #57307d;
}

.form-check-input:checked {
  background-color: #57307d;
  border-color: #57307d;
}

@media (max-width: 575.98px) {
  .tarot_eyebrow {
    font-size: .78rem;
  }

  .hero_subtitle {
    font-size: 1.35rem;
  }

  .tarot_orbit {
    width: 84px;
    height: 118px;
    font-size: .72rem;
  }

  .tarot_orbit_1 {
    left: 0;
    top: 6%;
  }

  .tarot_orbit_2 {
    right: 0;
    top: 24%;
  }

  .tarot_orbit_3 {
    left: 5%;
    bottom: 0;
  }

  .tarot_card_stack {
    min-height: 330px;
    margin-top: -10px;
  }

  .tarot_card {
    width: 150px;
    height: 230px;
    border-radius: 22px;
  }

  .card_a {
    transform: translateX(-46px) rotate(-13deg);
  }

  .card_b {
    transform: translateX(6px) rotate(2deg);
  }

  .card_c {
    transform: translateX(54px) rotate(12deg);
  }
}

@media (min-width: 576px) and (max-width: 1399px) {
  .tarot_card_stack {
    min-height: 360px;
  }

  .tarot_card {
    width: 175px;
    height: 260px;
  }
}

/* Desktop hero fixes: image stays behind the feature cards, date/time does not collapse */
.hero_meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-size: 1.35rem;
  line-height: 1.35;
}

.hero_meta_date,
.hero_meta_time {
  display: block;
}

.hero_meta a {
  display: inline-block;
  margin-top: 14px;
}

#features {
  position: relative;
  z-index: 20;
}

#features .feature-box {
  position: relative;
  z-index: 25;
}

.tarot_hero_visual img {
  z-index: 1;
}

.tarot_orbit {
  z-index: 2;
}

@media (min-width: 992px) {
  .welcome_hero.tarot_hero {
    padding-bottom: 92px;
  }

  .tarot_hero_visual {
    z-index: 1;
  }

  .tarot_hero .col-md-6:first-child {
    position: relative;
    z-index: 4;
  }

  #features .feature-box {
    margin-top: -74px;
  }
}

@media (max-width: 991.98px) {
  .hero_meta {
    font-size: 1.15rem;
  }
}


/* Final desktop hero composition: Irina should rise from behind the four cards */
.welcome_hero.tarot_hero {
  overflow: visible;
  z-index: 2;
}

.hero_meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.35;
}

.hero_meta_date,
.hero_meta_time {
  display: block;
}

.hero_meta a {
  display: inline-block;
  margin-top: 14px;
}

@media (min-width: 992px) {
  .welcome_hero.tarot_hero {
    padding-bottom: 0 !important;
  }

  .tarot_hero .container {
    position: relative;
    z-index: 2;
  }

  .tarot_hero .row {
    min-height: 680px;
    align-items: center !important;
  }

  .tarot_hero .col-md-6:first-child {
    position: relative;
    z-index: 6;
  }

  .tarot_hero_visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-self: stretch;
    align-items: flex-end;
    justify-content: center;
    margin-top: 0 !important;
    pointer-events: none;
  }

  .tarot_hero_visual img {
    position: relative;
    z-index: 1;
    width: auto;
    max-height: 585px;
    object-fit: contain;
    object-position: bottom center;
    transform: translateY(28px);
    filter: drop-shadow(0 24px 38px rgba(36, 27, 47, .18));
  }

  .tarot_orbit {
    z-index: 2;
  }

  #features {
    position: relative;
    z-index: 30;
    margin-top: -78px;
  }

  #features .feature-box {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    z-index: 35;
    margin-top: 0 !important;
    margin-left: auto;
    margin-right: auto;
  }

  #features .row {
    justify-content: center;
  }

  #features .feature-item {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 1400px) {
  #features .feature-box {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
  }
}

/* === Hero desktop fine tuning: Irina should slightly enter behind cards, not sink too low === */
@media only screen and (min-width: 1200px) {
  .welcome_hero {
    overflow: visible;
  }

  .welcome_hero .irina {
    position: relative;
    z-index: 1;
  }

  .welcome_hero .irina img {
    position: relative;
    z-index: 1;
    transform: translateY(42px) !important;
  }

  #features {
    position: relative;
    z-index: 10;
    margin-top: -58px;
  }

  #features .feature-box {
    position: relative;
    z-index: 11;
  }

  #features .feature-item {
    position: relative;
    z-index: 12;
  }
}

@media only screen and (min-width: 1400px) {
  .welcome_hero .irina img {
    transform: translateY(30px) !important;
  }

  #features {
    margin-top: -64px;
  }
}

/* === Final hero image position correction === */
@media only screen and (min-width: 1200px) {
  .tarot_hero_visual img {
    transform: translateY(28px) !important;
  }
}

@media only screen and (min-width: 1400px) {
  .tarot_hero_visual img {
    transform: translateY(32px) !important;
  }
}
