@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url(./fonts.css);
@import url(./header.css);
@import url(./footer.css);
:root {
  /* ===== Colors ========== */
  --green: 57, 181, 74;
  /* --green2: 97, 194, 87; */
  --green2: 122, 201, 67;
  --green3: 122, 163, 36;
  --green_light: 159, 198, 67;
  --red: 209, 32, 41;
  --yellow: 244, 183, 66;
  --black: 0, 0, 0;
  --white: 255, 255, 255;
  --black: 0, 0, 0;
  --grey: 102, 102, 102;
  /* --grey_light: 247, 247, 247; */
  --grey_light: 246, 246, 246;
  --font_catamaran: "Catamaran";
  --font_poppins: "Poppins", sans-serif;
  /* ===== Fonts ========== */
  --para_16: 16px;
  --heading_43: 43px;
  --heading_42: 42px;
  --heading_32: 32px;
  --heading_28: 28px;
  --heading_24: 24px;
  --heading_22: 22px;
  /* ====== Transition ===== */
  --trans_a3: all 0.3s;
}

/*===========================================
    Body CSS Style Start
=============================================*/

::selection {
  color: rgb(var(--white));
  background: rgba(var(--green), 0.8);
}

a,
button,
[type="button"] {
  outline: none;
}

button:focus,
.btn:focus {
  outline: none;
  box-shadow: none;
}

html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: var(--font_catamaran);
  /* overflow-x: hidden; */
  color: rgb(var(--black));
  display: flex;
  flex-direction: column;
  background-color: rgb(var(--light_grey));
  min-width: initial !important;
}

ul,
li,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

a,
a:hover {
  text-decoration: none;
}

h1 {
  font-size: var(--heading_43);
}

h2 {
  font-size: var(--heading_42);
}

h3 {
  font-size: var(--heading_32);
  margin-bottom: 26px;
}

h4 {
  font-size: var(--heading_28);
}

h5 {
  font-size: var(--heading_24);
}
h6 {
  font-size: var(--heading_22);
}

p {
  font-size: var(--para_16);
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 30px;
}

section {
  padding: 80px 0;
}
.container {
  max-width: 1200px;
}

.title {
  color: rgb(var(--black));
  line-height: 64px;
  margin-bottom: 30px;
  font-size: 43px;
  font-weight: 700;
}
.title_underline {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 53px;
}
.title_underline::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 188px;
  height: 10px;
  background-color: rgb(var(--red));
  border-radius: 50px;
}
.sub_title {
  color: rgb(var(--black));
  line-height: 64px;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 600;
}
.owl-nav {
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
  width: 66px;
  height: 66px;
  background-color: rgb(var(--red));
  border-radius: 50px;
  font-size: 0;
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: var(--trans_a3);
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: -33px;
}
.owl-nav *:hover {
  background-color: rgba(var(--green), 1);
}
.owl-nav .owl-prev {
  background-image: url(../images/icons/left-white-arrow.svg);
}
.owl-nav .owl-next {
  background-image: url(../images/icons/right-white-arrow.svg);
  left: auto;
  right: -33px;
}
.owl-dots {
  display: flex;
  column-gap: 7px;
  /* margin-top: 36px; */
  justify-content: center;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.owl-dots .owl-dot {
  background-color: rgba(var(--yellow));
  width: 16px;
  height: 16px;
  border-radius: 50px;
  transition: all 0.3s;
}
.owl-dots .owl-dot.active {
  width: 70px;
}

.catamaran {
  font-family: var(--font_catamaran) !important;
}
.poppins {
  font-family: var(--font_poppins) !important;
}
.fw_900 {
  font-weight: 900 !important;
}

.fw_800 {
  font-weight: 800 !important;
}
.fw_700 {
  font-weight: 700 !important;
}

.fw_600 {
  font-weight: 600 !important;
}

.fw_500 {
  font-weight: 500 !important;
}

.fw_400 {
  font-weight: 400 !important;
}
.fw_300 {
  font-weight: 300 !important;
}
.fw_200 {
  font-weight: 200 !important;
}
.fw_100 {
  font-weight: 100 !important;
}

/*===========================================
    Body CSS Style End
=============================================*/

/*===========================================
    Colors CSS Style Start
=============================================*/

.bg_none {
  background-color: transparent !important;
}

.shadow_none {
  box-shadow: none !important;
}
.green {
  color: rgba(var(--green), 1) !important;
}
.green2 {
  color: rgba(var(--green2), 1) !important;
}
.green3 {
  color: rgba(var(--green3), 1) !important;
}
.green_light {
  color: rgba(var(--green_light), 1) !important;
}
.red {
  color: rgba(var(--red), 1) !important;
}
.yellow {
  color: rgba(var(--yellow), 1) !important;
}
.black {
  color: rgba(var(--black), 1) !important;
}
.white {
  color: rgba(var(--white), 1) !important;
}
.black {
  color: rgba(var(--black), 1) !important;
}
.grey {
  color: rgba(var(--grey), 1) !important;
}

.green_bg {
  background-color: rgba(var(--green), 1) !important;
}
.green2_bg {
  background-color: rgba(var(--green2), 1) !important;
}
.green3_bg {
  background-color: rgba(var(--green3), 1) !important;
}
.green_light_bg {
  background-color: rgba(var(--green_light), 1) !important;
}
.red_bg {
  background-color: rgba(var(--red), 1) !important;
}
.yellow_bg {
  background-color: rgba(var(--yellow), 1) !important;
}
.black_bg {
  background-color: rgba(var(--black), 1) !important;
}
.white_bg {
  background-color: rgba(var(--white), 1) !important;
}
.black_bg {
  background-color: rgba(var(--black), 1) !important;
}
.grey_bg {
  background-color: rgba(var(--grey), 1) !important;
}
/*===========================================
    Colors CSS Style End
=============================================*/

/*===========================================
    Banner Images CSS Style Start
=============================================*/
.banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.glass_effect {
  /* background: rgba(var(--white), 0.63);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 10px;
  border: 1px solid rgba(var(--white), 0.18); */
  /* backdrop-filter: blur(4px) saturate(200%);
  -webkit-backdrop-filter: blur(4px) saturate(200%);
  background-color: rgba(var(--white), 0.6);
  border-radius: 12px;
  border: 1px solid rgba(var(--white), 0.125); */
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(var(--black), 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.home_banner_bg {
  background-image: url(../images/yogizoo-banner.jpg);
}
.monkey_shape_bg {
  background-image: url(../images/monkey-shape-bg.png);
}
.login_banner_bg {
  background-image: url(../images/login-banner-bg.png);
}

/*===========================================
    Banner Images CSS Style End
=============================================*/

/*===========================================
    Button CSS Style Start
=============================================*/

.btn {
  min-width: 324px;
  height: 56px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Catamaran";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  font-feature-settings: "pnum" on, "lnum" on;
  color: rgba(var(--red), 1);
  border-radius: 43px;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.btn:hover {
  color: rgba(var(--white), 1);
}

.btn.green_btn,
.btn.red_btn:hover {
  /* background-color: rgba(var(--green), 1); */
  background-color: rgba(var(--green3), 1);
  border-color: rgba(var(--green3), 1);
  color: rgba(var(--white), 1);
}
.btn.red_btn,
.btn.border_red_btn:hover,
.btn.green_btn:hover {
  background-color: rgba(var(--red), 1);
  border-color: rgba(var(--red), 1);
  color: rgba(var(--white), 1);
  box-shadow: 0 4px 4px rgba(var(--black), 0.25);
}

.btn.border_red_btn,
.btn.red_btn:hover {
  background-color: rgb(var(--white));
  color: rgba(var(--red), 1);
  box-shadow: none;
  border-color: rgba(var(--red), 1);
}

.btn.icon {
  column-gap: 10px;
}

.btn.icon .icons {
  margin: 0 0 0 10px;
  display: inline-block;
  transition: var(--trans_a3);
}
.btn.icon:hover {
  background-color: rgb(var(--red));
  color: rgba(var(--white), 1);
}

.btn.icon:hover .icons {
  margin-left: 18px;
}
/*===========================================
    Button CSS Style End
=============================================*/

/*===========================================
    Form CSS Style Start
=============================================*/
.form-control {
  border-radius: 8px;
  border: 0;
  background-color: rgba(var(--white), 1);
  height: 56px;
}
.form-group label {
  font-weight: 700;
  margin-bottom: 13px;
  font-size: 16px;
  font-family: var(--font_poppins);
}
.form-group {
  margin-bottom: 15px;
}
button:focus,
.form-control:focus {
  box-shadow: none;
}
.form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgb(var(--white));
}
.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: rgb(var(--white));
}
.form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: rgb(var(--white));
}
.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: rgb(var(--white));
}
.radio_wrapper [type="radio"]:checked,
.radio_wrapper [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.radio_wrapper [type="radio"]:checked + label,
.radio_wrapper [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
  margin: 0;
}
.radio_wrapper [type="radio"]:checked + label:before,
.radio_wrapper [type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgb(var(--black));
  border-radius: 100%;
  background: rgba(var(--white), 1);
}
.radio_wrapper [type="radio"]:checked + label:after,
.radio_wrapper [type="radio"]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: rgba(var(--green), 1);
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.radio_wrapper [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.radio_wrapper [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.checkbox_wrapper {
  position: relative;
}
.checkbox_wrapper .styled_checkbox {
  position: absolute;
  opacity: 0;
  z-index: 1;
  width: 150px;
  height: 100%;
  cursor: pointer;
}
.checkbox_wrapper .styled_checkbox + label a {
  text-decoration: underline;
}
.checkbox_wrapper .styled_checkbox + label a:hover {
  text-decoration: none;
}
.checkbox_wrapper .styled_checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.checkbox_wrapper .styled_checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: rgb(var(--white));
  margin-top: 0;
  transition: var(--trans_a3);
}
.checkbox_wrapper .styled_checkbox:hover + label:before {
  background: rgba(var(--grey_light), 1);
}
.checkbox_wrapper .styled_checkbox:focus + label:before {
  /* box-shadow: 0 0 0 3px rgba(var(--black), 0.12); */
}
.checkbox_wrapper .styled_checkbox:checked + label:before {
  /* background: #f35429; */
}
.checkbox_wrapper .styled_checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.checkbox_wrapper .styled_checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
.checkbox_wrapper .styled_checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  background: rgba(var(--green), 1);
  width: 3px;
  height: 3px;
  box-shadow: 2px 0 0 rgba(var(--green), 1), 4px 0 0 rgba(var(--green), 1),
    4px -2px 0 rgba(var(--green), 1), 4px -4px 0 rgba(var(--green), 1),
    4px -6px 0 rgba(var(--green), 1), 4px -8px 0 rgba(var(--green), 1);
  transform: rotate(45deg);
}

/*===========================================
    Form CSS Style End
=============================================*/

/*===========================================
    HomePage CSS Style Start
=============================================*/
.banner_wrapper {
  padding: 153px 0 50px;
  min-height: 100vh;
  height: 100%;
}
.banner_wrapper .banner_title {
  font-size: 43px;
  max-width: 1100px;
  line-height: 58px;
  letter-spacing: 0;
  margin: 0 auto 16px;
  letter-spacing: -0.6px;
}
.banner_wrapper .banner_sub_title {
  max-width: 776px;
  margin: 0 auto 60px;
  font-weight: 700;
  line-height: 25px;
}
.banner_wrapper .video_wrapper .btn {
  /* background-color: #7aa324;
  font-weight: 700;
  font-size: 16px;
  min-width: 324px;
  height: 56px;
  margin: auto; */
}
.banner_wrapper .video_wrapper {
  position: relative;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}
.banner_wrapper .video_wrapper img {
  width: 100%;
  height: 100%;
}
.banner_wrapper .video_wrapper .btn {
  position: absolute;
  top: 287px;
  left: 50%;
  transform: translateX(-50%);
}
.pre_stor_wrapper {
  /* padding-bottom: 20px; */
}
.pre_stor_wrapper h3 {
  margin-bottom: 46px;
}
.pre_stor_wrapper p {
  max-width: 1180px;
  line-height: 2;
}
.stories_gallery_wrapper {
  margin: 65px 0 100px;
}
.stories_gallery_wrapper .row,
.problem_sec .row {
  margin-right: -10px;
  margin-left: -10px;
}
.stories_gallery_wrapper .row > .custom_col,
.problem_sec .row > .custom_col {
  padding-right: 10px;
  padding-left: 10px;
}
.story_box {
  height: 100%;
}
.story_box .img_wrap {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  margin: 0 auto;
  height: 100%;
}
.story_box .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story_box .text_wrap {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 23px 20px 25px;
  text-shadow: none;
  min-height: 111px;
}
.story_box .text_wrap h4 {
  text-shadow: none;
  font-size: 18px;
  color: rgb(var(--black));
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.story_box .text_wrap h4 span {
  font-size: 16px;
  line-height: 15px;
}
.story_box .text_wrap .play_btn,
.problem_sec .wrap .play_btn {
  max-width: 70px;
  width: 100%;
  height: 70px;
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  transition: var(--trans_a3);
}
.story_box:hover .text_wrap .play_btn {
  transform: translateX(-50%) scale(1.1);
}
.story_box .big_story {
  max-width: 490px;
  max-height: 537px;
}
.story_box .medium_story {
  max-width: 395px;
  max-height: 257px;
}
.story_box .small_story {
  max-width: 283px;
  max-height: 257px;
}
.story_box .big_story .text_wrap {
  max-width: 250px;
}
.story_box .medium_story .text_wrap {
  max-width: 249px;
}
.story_box .small_story .text_wrap {
  max-width: 217px;
}
.story_box .two {
  margin-bottom: 20px;
}
.story_box .three {
  margin-bottom: 20px;
}
.monkey_section {
  background-position: top left;
  background-size: contain;
  /* padding: 170px 0 60px; */
  padding: 160px 0 60px;
  background-color: rgb(var(--yellow));
  margin-top: 80px;
}
.monkey_section .title_underline {
  color: rgba(var(--white), 1);
  font-weight: 700;
  max-width: 456px;
  margin-left: 35px;
}
.monkey_section .title_underline::before {
  left: 0;
  height: 8px;
  right: auto;
  background-color: rgb(var(--white));
}
.monkey_section .monkey_img {
  max-width: 354px;
  margin-left: auto;
  width: 100%;
  position: relative;
}
.monkey_section .monkey_img img,
.story_box .text_wrap .play_btn img,
.problem_sec .wrap .play_btn img {
  width: 100%;
}
.problem_sec {
  padding: 120px 0;
}
.problem_sec .box_wrapper {
  margin: 95px auto 110px;
}

.problem_sec .wrap {
  text-align: center;
  padding: 30px 30px 40px;
  border: 6px solid rgb(var(--yellow));
  border-radius: 30px;
  position: relative;
}

.problem_sec .wrap .icons {
  display: inline-block;
  margin-bottom: 30px;
  height: 107px;
}
.problem_sec .wrap .icons object {
  width: 100%;
  height: 100%;
}
.problem_sec .wrap h6 {
  text-transform: capitalize;
  font-weight: 700;
  color: rgb(var(--yellow));
  margin-bottom: 8px;
}

.problem_sec .wrap p {
  font-size: 14px;
  line-height: 20px;
  color: rgb(var(--black));
  margin: 0;
}

.problem_sec .wrap .play_btn {
  color: rgba(var(--yellow), 1);
  bottom: -35px;
}
.problem_sec .custom_col:nth-child(2n + 2) .wrap {
  border-color: rgba(var(--green), 1);
}
.yogizoo_session {
}

.yogizoo_session_slider .owl-nav .owl-prev {
  left: -96px;
}
.yogizoo_session_slider .owl-nav .owl-next {
  right: -96px;
}
.yogizoo_session_slider.owl-carousel .owl-stage {
  display: flex;
}
.yogizoo_session_slider.owl-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.yogizoo_session .slider_wrapper {
  margin: 110px 0 50px;
}
.session_box {
  border-radius: 30px;
  overflow: hidden;
  max-width: 380px;
  padding: 30px 30px 70px 0;
  position: relative;
  margin: 0 auto;
}
.session_box::before {
  content: "";
  width: calc(100% - 30px);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border: 8px solid rgb(var(--red));
  border-radius: 30px;
  z-index: -1;
}
.session_box .img {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  height: 300px;
  max-width: 350px;
}
.session_box .img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.session_box .text_wrap {
  padding: 0 0 0 54px;
}
.session_box .text_wrap h6 {
  line-height: 40px;
  font-weight: 700;
  color: rgb(var(--black));
  margin-bottom: 16px;
}
.session_box .text_wrap p {
  color: rgba(var(--black), 0.6);
  /* font-size: 16px; */
  font-weight: 500;
  line-height: 20px;
}
.session_box .text_wrap p:last-child {
  margin: 0;
}
#parent_children_slider .owl-nav,
#latest_articles_slider .owl-nav {
  display: block;
  height: 100%;
}
/* #parent_children_slider .owl-prev {
  left: -33px;
}
#parent_children_slider .owl-next {
  right: -33px;
} */
.parent_children_slider {
  margin: 50px auto 0;
  max-width: 580px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(var(--black), 0.15);
  position: relative;
}
.parent_children_slider::before {
  content: "";
  position: absolute;
  bottom: -45px;
  right: 100px;
  background-image: url(../images/icons/parents-children-review-star.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 90px;
  height: 90px;
}
.parent_children .test_wrap {
  width: 100%;
  padding: 45px 60px;
}
.parent_children .test_wrap p {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 22px;
}
.parent_children {
  padding: 120px 0 80px;
}
.parent_children .title_underline {
  margin-bottom: 90px;
}
.parent_children .test_wrap h6 {
  text-transform: capitalize;
  font-weight: 500;
  color: rgb(var(--yellow));
  margin-bottom: 0;
  line-height: 30px;
}
.parent_children .test_wrap h6 span {
  color: rgba(var(--green_light), 1);
  font-size: 16px;
  font-weight: 400;
  display: block;
}
.parent_children .owl-dots {
  bottom: -90px;
}
.latest_articles_slider .box {
  max-width: 255px;
  width: 100%;
  /* margin: 0 5px; */
}
.latest_articles_slider .img_wrap {
  cursor: pointer;
  border-radius: 30px;
  overflow: hidden;
  height: 310px;
  /* border: 8px solid transparent; */
  margin-bottom: 17px;
  position: relative;
}
.latest_articles_slider .img_wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 8px solid transparent;
  border-radius: 30px;
  transition: var(--trans_a3);
}
.latest_articles_slider .img_wrap:hover::before,
.latest_articles_slider .center .img_wrap::before {
  border-color: rgba(var(--yellow), 1);
}
.latest_articles_slider .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.latest_articles_slider .text {
  min-height: 60px;
}
.latest_articles_slider .text p {
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  max-width: 200px;
  margin: 0 auto;
}
/* .latest_articles_slider .owl-prev {
  left: -30px;
}
.latest_articles_slider .owl-next {
  right: -30px;
} */
.latest_articles_slider .owl-nav .owl-prev,
.latest_articles_slider .owl-nav .owl-next {
  top: 45%;
}
.latest_articles {
  padding: 80px 0 120px;
}

.latest_articles .slider_wrapper {
  margin: 90px 0;
}

/*===========================================
    HomePage CSS Style End
=============================================*/

/*===========================================
    Login CSS Style Start
=============================================*/
/* .banner_wrapper.login_wrapper  */
.banner_wrapper.inner_banner {
  padding: 150px 0 50px;
}
.login_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.login_wrap .logo {
  max-width: 206px;
  margin: 0 auto 38px;
}

.login_wrap .logo img {
  width: 100%;
  height: 100%;
}
.login_wrapper .login_wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 30px 60px 25px;
  border-radius: 20px;
  color: rgba(var(--white), 1);
}

.login_wrapper .login_wrap .btn {
  height: 43px;
  min-width: 142px;
  margin: 0 auto;
}
.login_wrapper .login_wrap a {
  color: rgb(var(--white));
  transition: var(--trans_a3);
}
.login_wrapper .login_wrap a:hover {
  color: rgb(var(--red));
}
.login_wrapper .login_wrap p {
  margin: 30px 0 0;
}
.login_wrapper .login_wrap p a {
  margin: 0 10px;
  font-size: 18px;
}
.login_wrapper.register_wrapper {
  min-height: inherit;
  height: auto;
}
.register_wrapper .login_wrap .logo {
  max-width: 140px;
  margin: 0 auto 8px;
}
.monkey_img .btn {
  position: absolute;
  bottom: -5px;
  /* left: 25px; */
  left: 0px;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 324px;
  height: 56px;
  font-size: 16px;
  background-color: rgba(var(--green3));
  border-color: rgba(var(--green3));
  min-width: auto;
  padding-left: 50px;
  padding-right: 56px;
  line-height: 14px;
}

.monkey_img .btn::before,
.monkey_img .btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 63px;
  height: 46px;
  background-image: url(../images/icons/leaf.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: 50%;
  transform: translateY(-50%);
}
.monkey_img .btn::before {
  left: 5px;
}
.monkey_img .btn::after {
  right: 10px;
  left: auto;
}
/*===========================================
    Login CSS Style End
=============================================*/
.banner_wrapper.plans_page_wrapper {
  min-height: auto;
  padding-bottom: 0 !important;
}

.plans_page_wrapper {
}

.plans_page_wrapper .top_text {
  padding: 42px 0 0;
}

.plans_page_wrapper .top_text .plans_title {
  max-width: 570px;
  margin: 0 auto 66px;
  line-height: 64px;
}

.plans_page_wrapper .top_text .plans_sub_title {
  line-height: 36px;
  max-width: 1100px;
  margin: 0 auto;
}
.plans_wrapper {
  position: relative;
  z-index: 1;
  padding-bottom: 120px;
}
.plans_wrapper .price_list {
  display: flex;
  /* justify-content: center; */
  column-gap: 32px;
  align-items: center;
}
.plans_wrapper .price_list > li {
  flex: 1;
  max-width: 330px;
}

.plans_wrapper .price_list > li:nth-child(2) {
  flex: 1;
  max-width: 384px;
}
.plans_wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 40%;
  background-color: rgb(var(--yellow));
  z-index: -1;
}
.plan_wrap {
  box-shadow: 0px 10px 50px rgba(var(--black), 0.06);
  padding: 35px 22px;
  border-radius: 30px;
  background-color: rgb(var(--white));
  height: 100%;
}
.plan_wrap .title_underline {
  margin-bottom: 30px;
}
.plan_wrap .title_underline::before {
  width: 118px;
}
.plan_wrap ul {
}
.plan_wrap ul li {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  color: rgb(var(--black));
  line-height: 22px;
}
.plan_wrap ul li:last-child {
  /* margin-bottom: 20px; */
}
.plan_wrap ul li::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/icons/check-red-fill.svg);
  width: 42px;
  height: 42px;
  display: inline-block;
  flex: 0 0 auto;
}
.plan_wrap h6 {
}
.plan_wrap .plans_price {
  margin: 20px 0 10px;
}
.plan_wrap .plans_price span, .plan_wrap .plan_price_second_row span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-right: 3px;
  display: inline-block;
}
.plans_title span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-left: 3px;
  display: inline-block;
}
.plan_wrap .plan_price_second_row {
  text-align: center!important;
    display: block;
    padding-bottom: 15px;
}
.plan_wrap .btn {
  height: 50px;
  min-width: auto;
  width: 100%;
  box-shadow: none;
}
.plan_wrap.big .btn {
  height: 56px;
}
.plan_wrap.big {
  box-shadow: 0px 10px 50px rgba(var(--black), 0.25);
  padding: 60px 22px 40px;
}
.plan_wrap.big ul li::before {
  width: 46px;
  height: 46px;
}

.banner_wrapper.why_yogizoo_wrapper {
  position: relative;
  padding-bottom: 185px;
  min-height: auto;
}

.why_yogizoo_wrapper .monkey_section {
  padding: 0;
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background-color: transparent;
  margin: 0;
  width: 100%;
  max-width: 353px;
}
.why_yogizoo_wrapper .monkey_section .monkey_img.my-0 {
  margin: 0 auto;
}
.why_yogizoo_wrapper .banner_title {
  font-size: 28px;
  line-height: 58px;
  letter-spacing: 0;
}
.why_yogizoo_wrapper h1 {
  font-size: 22px;
}
.green_checklist {
  display: flex;
  column-gap: 24px;
  flex-wrap: wrap;
  row-gap: 24px;
  max-width: 1030px;
  width: 100%;
  margin: 55px auto 0;
  justify-content: center;
}
.green_checklist li {
  background-color: rgba(var(--green3), 1);
  color: rgba(var(--white), 1);
  flex: 0 0 calc(33.33% - 16px);
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 6px 20px 6px 6px;
  column-gap: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  text-align: left;
}
.green_checklist li span {
  position: relative;
  width: 46px;
  height: 46px;
  background-color: rgb(var(--red));
  display: inline-block;
  border-radius: 50px;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(var(--white), 1);
  font-size: 20px;
}
.green_checklist li span:before {
  content: "";
  background-image: url(../images/icons/check-white-stroke.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.why_yogizoo_para {
  padding: 120px 0 80px;
}
.why_yogizoo_para .para_wrapper {
  background: rgba(var(--white), 1);
  box-shadow: 0px 4px 50px rgba(var(--black), 0.25);
  padding: 45px;
  border-radius: 20px;
  position: relative;
}
.why_yogizoo_para .para_wrapper .green_circle {
  width: 23px;
  height: 23px;
  background-color: #007a3e;
  border: 4px solid rgba(var(--green2), 1);
  position: absolute;
  top: 17px;
  left: 17px;
  border-radius: 50px;
}
.why_yogizoo_para .para_wrapper .green_circle1 {
}
.why_yogizoo_para .para_wrapper .green_circle2 {
  left: auto;
  right: 17px;
}
.why_yogizoo_para .para_wrapper .green_circle3 {
  top: auto;
  bottom: 17px;
}
.why_yogizoo_para .para_wrapper .green_circle4 {
  top: auto;
  left: auto;
  right: 17px;
  bottom: 17px;
}
.why_yogizoo_para .para_wrapper p {
  font-size: 20px;
  line-height: 40px;
  color: rgb(var(--black));
  margin: 0;
}

.strengthens_wrapper {
}
.yogizoo_kids_feel .plans_wrapper::before {
  content: none;
}

.plans_wrapper .green_checklist.text_list li span {
  width: 78px;
  height: 78px;
}
.green_checklist.text_list li {
  font-size: 16px;
}
.green_checklist.text_list li span:before {
  content: none;
}

.yogizoo_kids_feel {
}
.yogizoo_kids_feel .plans_wrapper {
  margin-top: 75px;
}
.yogizoo_kids_feel .price_list li {
  border-radius: 43px;
  column-gap: 30px;
  padding: 0;
}

.yogizoo_kids_feel .green_checklist {
  margin: 0;
  padding: 23px 30px;
  row-gap: 22px;
  width: 100%;
}
.yogizoo_kids_feel .plans_wrapper .price_list > li {
  flex: 1;
  max-width: 413px;
  /* width: 100%; */
}
.yogizoo_kids_feel
  .plans_wrapper
  .price_list
  > li:nth-child(2)
  .green_checklist {
  row-gap: 34px;
}
.yogizoo_kids_feel .plans_wrapper .price_list > li:nth-child(2) {
  flex: 1;
  max-width: 480px;
}
.yogizoo_kids_feel .plans_wrapper .price_list > li:nth-child(2) ul {
  padding: 30px 55px;
}
.yogizoo_kids_feel .green_checklist li {
  background-color: transparent;
}

.yogizoo_parents_feels {
}
.yogizoo_kids_feel .container,
.yogizoo_parents_feels .container {
  max-width: 1370px;
  width: 100%;
}
.yogizoo_parents_feels .green_checklist {
  column-gap: 50px;
  max-width: 100%;
  margin-top: 90px;
}
.yogizoo_parents_feels .green_checklist li {
  flex: 0 0 calc(33.33% - 35px);
}

.yogizoo_parents_feels .green_checklist li span {
  width: 60px;
  height: 60px;
}
.Yogizoo_Kids_Feel .owl-item li {
  display: flex;
  /* flex: 1 0 auto; */
  transition: var(--trans_a3);
}
.Yogizoo_Kids_Feel .owl-item.center li {
  padding: 15px 0;
}
.Yogizoo_Kids_Feel .owl-item.center li .green_checklist {
  row-gap: 0;
}
.Yogizoo_Kids_Feel {
}

.Yogizoo_Kids_Feel .owl-stage {
  display: flex;
  align-items: center;
  height: 378px;
  /* column-gap: 30px; */
}

.Yogizoo_Kids_Feel .owl-stage .owl-item {
  display: flex;
  /* flex: 1 0 auto; */
}

.banner_wrapper.why_yogizoo_wrapper.stories_page {
  padding-bottom: 120px;
}
.storie_green_slider ul {
  margin: 0 auto 24px;
  height: 100%;
  flex-direction: column;
  max-width: 350px;
}
.storie_green_slider ul:last-child {
  margin-bottom: 0;
}
#storie_green_slider {
  display: flex;
  column-gap: 24px;
}
#storie_green_slider .owl-dots {
  bottom: -40px;
}

#storie_green_slider .owl-dots .owl-dot {
  background-color: rgba(var(--white), 1);
}
#storie_green_slider .owl-dots .owl-dot.active {
  background-color: #7aa324;
}

.articles_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  row-gap: 40px;
  margin-top: 100px;
  width: 100%;
}

.articles_list li {
  flex: 0 0 calc(50% - 20px);
}

.article {
  column-gap: 20px;
  display: flex;
  align-items: center;
}
.article .img {
  padding: 20px;
  background: rgba(var(--white), 1);
  box-shadow: 0 11.2px 22.4px 10.4px rgba(219, 227, 237, 0.4);
  border-radius: 20px;
  flex: 0 0 280px;
  max-width: 280px;
  height: 240px;
}
.article .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article .text {
  max-width: 280px;
}
.article .text h6 {
  line-height: 40px;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 40px;
}
.article .text .btn {
  min-width: 165px;
  height: 40px;
  font-size: 14px;
  text-transform: capitalize;
}

.banner_wrapper.inner_banner .container {
  max-width: 1200px;
}

/* Chapter Details Start */
.chapter_details_wrapper {
}
.chapter_details_wrapper .text_wrap {
  max-width: 560px;
}
.chapter_details_wrapper .text_wrap h3 {
  font-size: 32px;
}
.chapter_details_wrapper .text_wrap > p {
  line-height: 30px;
  margin-bottom: 15px;
  font-size: 18px;
}
.chapter_details_wrapper .difficulty_wrap {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  column-gap: 13px;
}
.difficulty_wrap ul {
  display: flex;
  align-items: center;
  column-gap: 7px;
}
.difficulty_wrap ul li {
  width: 23px;
  display: inline-flex;
  height: 23px;
}
.difficulty_wrap ul li img {
  width: 100%;
  height: 100%;
}
.chapter_details_wrapper .text_wrap .para {
}
.chapter_details_wrapper .text_wrap .para p {
  color: #4b4b4b;
  line-height: 22px;
}
.chapter_details_wrapper .text_wrap .para p:last-child {
  margin: 0;
}
.chapter_details_wrapper .story_box {
  max-width: 490px;
  height: 100%;
  max-height: 600px;
  min-height: 600px;
  margin: 0 auto;
  position: relative;
}
.chapter_details_wrapper .story_box .img_wrap {
  border: 0;
  height: 100%;
  max-height: 600px;
  border-radius: 0;
  margin-left: 0;
}
.chapter_details_wrapper .story_box .btn {
  min-width: 165px;
  height: 36px;
  font-size: 14px;
}
.chapter_details_wrapper .chapter_detail {
  margin-bottom: 120px;
}

.chapter_details_wrapper .red_blocks_wrapper {
}
.chapter_details_wrapper .red_blocks_wrapper .red_wrap {
  border-radius: 20px;
  padding: 20px 40px 40px;
}
.chapter_details_wrapper .red_blocks_wrapper .red_wrap h6 {
  margin-bottom: 15px;
  font-size: 18px;
}
.chapter_details_wrapper .red_blocks_wrapper .red_wrap p {
  line-height: 22px;
}

.chapter_details_wrapper .red_blocks_wrapper .red_wrap p:last-child {
  margin-bottom: 0;
}

.chapter_details_wrapper .red_blocks_wrapper {
  max-width: 1020px;
  margin: 0 auto;
}
.get_access_wrap {
  padding: 14px 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(var(--white), 1);
  column-gap: 30px;
}
.get_access_wrap h6 {
  font-size: 24px;
}
.get_access_wrap .btn {
  min-width: 310px;
  height: 46px;
  font-size: 18px;
}
.blog_details_page_wrapper .text_bottom {
  padding: 25px 25px 50px;
  box-shadow: 0px 4px 20px rgba(179, 179, 179, 0.25);
  background-color: rgba(var(--white), 1);
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
}
.chapter_details_wrapper .story_box .btn {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 492px;
  height: 48px;
  z-index: 9;
}
.chapter_details_wrapper .story_box .btn {
  min-width: 255px;
  height: 56px;
  font-size: 14px;
}
.banner_wrapper.banner.inner_banner.blog_details_page_wrapper {
  min-height: unset;
  height: auto;
}
/* Chapter Details End */

.contact_page_wrapper .contact_sub_title {
  max-width: 730px;
  margin: 0 auto;
}
.banner_wrapper.contact_page_wrapper {
  background-color: #faf8f6;
  min-height: unset;
  height: auto;
  padding-bottom: 120px;
}
.contact_form_wrapper {
  margin-top: 105px;
}
.contact_form_wrapper .form-control {
  border: 1px solid #eceef0;
}
.contact_form_wrapper .btn {
  min-width: 195px;
  box-shadow: none;
  margin-top: 20px;
}
.contact_form_wrapper textarea {
  min-height: 240px;
  max-height: 240px;
}
.contact_form_wrapper .form-group {
  margin-bottom: 30px;
}
.contact_form_wrapper label {
  color: #283646;
}
.contact_form_wrapper .green_checklist {
  margin-top: 10px;
}
.contact_form_wrapper .green_checklist li {
  flex: 1;
}
.contact_form_wrapper .green_checklist li a {
  font-size: 22px;
  color: rgb(var(--white));
  transition: var(--trans_a3);
  font-weight: 700;
}
.contact_form_wrapper .green_checklist li a:hover {
  color: rgb(var(--red));
}
.contact_form_wrapper .img_wraper {
  max-width: 544px;
}

.contact_form_wrapper .img_wraper img {
  width: 100%;
  height: 100%;
}

.stories_gallery_wrapper > .row {
  margin-bottom: 20px;
}

.pre_stor_wrapper .stories_gallery_wrapper {
  margin: 20px 0 80px;
}

#latest_articles_slider .owl-dots {
  display: none;
}

.chapter-overview ul {
  text-align: left; 
  padding: 0px 20px
}
.chapter-overview li {
  list-style-type: decimal
}


.hover-sec {
	position: absolute;
	top: 0%;
	width: 100%;
	padding: 0px 20px;
	text-align: center;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
}
.hover-sec h3 {
	color: #fff;
	font-weight: 700;
	font-size: 22px;
}

.hover-sec h3 span{
	color:#7AC943;
}
.hover-sec button {
	background: #7AC943;
	border: 1px solid #fff;
	color: #fff;
	text-transform: uppercase;
	padding: 10px 30px;
	border-radius: 7px;
	font-weight: 600;
}

.hover-sec button:hover {
	background: #D12129;
}

.hover-sec .trail_btn {
	background: #7AC943;
	border: 1px solid #fff;
	color: #fff;
	text-transform: uppercase;
	padding: 10px 30px;
	border-radius: 7px;
	font-weight: 600;
}

#free-trial .modal-content {
	border-radius: 20px;
	text-align: center;
}

#free-trial .modal-body {
	text-align: center;
	padding-bottom: 31px;
}

#free-trial .modal-header {
	border: none !important;
}
#free-trial .modal-body button {
	background: #7AC943;
	border: 1px solid #fff;
	color: #fff;
	text-transform: uppercase;
	padding: 10px 30px;
	border-radius: 9px;
	font-weight: 600;
	border: 1px solid #3A8903;
}
#free-trial .modal-body button:hover {
	background: #D12129;
	border: 1px solid #910000;
}

#free-trial .modal-body .trail_model_btn {
	background: #7AC943;
	border: 1px solid #fff;
	color: #fff;
	text-transform: uppercase;
	padding: 10px 30px;
	border-radius: 9px;
	font-weight: 600;
	border: 1px solid #3A8903;
}
#free-trial .modal-body .trail_model_btn:hover {
	background: #D12129;
  color: #fff;
	border: 1px solid #910000;
}

#free-trial {
	font-weight: bold;
}
#free-trial .modal-body h3 {
	font-weight: bold;
	margin-bottom: 14px;
}
#free-trial .modal-body h3 span{
	color:#7AC943;
	display:block;
}
.close {
	color: #D12129;
}



/*----------------- POPUP TENMS -----------------*/
#terms-condition-modal{
	padding-right: 0;
}
#terms-condition-modal .modal-dialog {
	min-width: 750px;
}
#terms-condition-modal .modal-dialog .modal-header .close {
  color: red;
}
#terms-condition-modal .modal-dialog .modal-header h3{margin-bottom: 0; color: #396120;}
#terms-condition-modal .modal-dialog .wpb_wrapper {
	height: 500px;
	overflow: auto;
	scrollbar-width: thin;
}
#terms-condition-modal .modal-dialog .wpb_wrapper p {
	margin-top: 0;
	margin-bottom: 15px;
	color: #4f4f4f;
	line-height: 23px;
}
#terms-condition-modal .modal-dialog .wpb_wrapper ol li {
	list-style: decimal;
	margin-left: 28px;
	text-align: left;
}
#terms-condition-modal .modal-dialog .wpb_wrapper ol li::marker{
	color: #396120;
	font-size:26px;
	font-weight: 600;
}
#terms-condition-modal .modal-dialog .wpb_wrapper h4 {
	color: #396120;
	margin-top: 26px;
	margin-bottom: 10px;
	font-size: 22px;
	font-weight: 600;
}
#terms-condition-modal .modal-dialog .wpb_wrapper ul {
  margin-bottom: 10px;
  color: #4f4f4f;
}
#terms-condition-modal .modal-dialog .wpb_wrapper ul li {
	list-style: disc;
	margin-left: 30px;
	color: #4f4f4f;
}
#terms-condition-modal .modal-dialog .wpb_wrapper ul li::marker{
	font-size:16px;
}
 @media only screen and (max-width: 780px) {
	#terms-condition-modal .modal-dialog {
		min-width: 95%; 
	}
}

/*===========================================
    THANK YOU PAGE CSS Style
=============================================*/
.thankyou_page .top_text .img_wraper {
  text-align: center;
}
.thankyou_page .top_text .img_wraper img{ 
	max-width: 440px;
	margin-top: -140px;
	margin-bottom: 40px;
}
.gray{
	color: gray;
}
 @media only screen and (max-width: 780px) {
	.thankyou_page .top_text .img_wraper img {
		max-width: 290px;
		margin-top: 0;
		margin-bottom: 10px;
	}
}