/**
* MEDIA QUERY MANAGER
**/
@keyframes preLoader {
  100% {
    top: 100%; } }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    transform: translateZ(0); } }

@-webkit-keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0; }
  50% {
    opacity: 0.9; }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0; } }

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0; }
  50% {
    opacity: 0.9; }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0; } }

@-webkit-keyframes movecircles {
  0% {
    margin-left: 1000px; }
  100% {
    margin-left: -1000px; } }

@-moz-keyframes movecircles {
  0% {
    margin-left: 1000px; }
  100% {
    margin-left: -1000px; } }

@-o-keyframes movecircles {
  0% {
    margin-left: 1000px; }
  100% {
    margin-left: -1000px; } }

@keyframes upDown {
  0% {
    transform: translateY(-20px); }
  100% {
    transform: translateY(0px); } }

@keyframes footerHeart {
  0% {
    transform: scale(0); }
  25% {
    transform: scale(0.5);
    color: red; }
  50% {
    transform: scale(1);
    color: red; } }

/*
* Colors
*/
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  color: #676768; }

p {
  line-height: 1.8; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Philosopher", sans-serif;
  color: #2f4858;
  font-weight: 700; }

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-weight: 700; }

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: inherit; } }

::selection {
  color: #ffffff;
  background: #c27b7f; }

a {
  text-decoration: none;
  color: #676768;
  transition: 0.3s; }
  a:hover {
    color: #c27b7f; }

body {
  box-sizing: border-box; }

img {
  max-width: 100%;
  height: auto; }

.section-wrapper {
  overflow-x: hidden; }

.bg-one {
  background-color: #f5ebe6; }

.section-padding {
  padding: 80px 0; }

.section-padding-t {
  padding-top: 80px; }

.section-padding-b {
  padding-bottom: 80px; }

.badge-text {
  letter-spacing: 4px;
  color: #c27b7f;
  font-weight: 600;
  display: inline-block; }

[class*="section-title-"] {
  margin-bottom: 50px; }
  [class*="section-title-"] span {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #c27b7f;
    font-weight: 600;
    display: block; }
  [class*="section-title-"] h2 {
    margin-top: 0px; }

.section-title-left p {
  margin-left: 0; }

.section-title-center p {
  margin: 0 auto; }

.section-divider {
  margin-top: 20px; }

.wonted-pagination .pagination {
  justify-content: center; }
  .wonted-pagination .pagination .nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center; }
    .wonted-pagination .pagination .nav-links span,
    .wonted-pagination .pagination .nav-links a {
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 1px solid #c27b7f;
      color: #c27b7f;
      font-weight: 600;
      transition: all 0.3s; }
      .wonted-pagination .pagination .nav-links span i,
      .wonted-pagination .pagination .nav-links a i {
        color: #c27b7f; }
      .wonted-pagination .pagination .nav-links span:hover, .wonted-pagination .pagination .nav-links span.current,
      .wonted-pagination .pagination .nav-links a:hover,
      .wonted-pagination .pagination .nav-links a.current {
        background-color: #c27b7f;
        color: #ffffff; }
        .wonted-pagination .pagination .nav-links span:hover i, .wonted-pagination .pagination .nav-links span.current i,
        .wonted-pagination .pagination .nav-links a:hover i,
        .wonted-pagination .pagination .nav-links a.current i {
          color: #ffffff; }

/* Traingle divider */
.divider-traingle {
  width: 200px;
  border-width: 1px;
  border-style: solid;
  border-color: #c27b7f;
  opacity: 0.4;
  position: relative;
  display: inline-block; }

.divider-traingle:before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  background-color: #c27b7f;
  top: -9px;
  opacity: 0.4;
  right: 50%;
  transform: rotate(45deg); }

.divider-traingle:after {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  background: #c27b7f;
  top: -9px;
  left: 45%;
  opacity: 0.4;
  transform: rotate(45deg); }

.button {
  pointer-events: auto;
  cursor: pointer;
  background: #c27b7f;
  color: #ffffff;
  border: none;
  text-align: center;
  padding: 10px 30px;
  line-height: 30px;
  margin: 0;
  position: relative;
  display: inline-block; }
  .button:hover {
    color: #ffffff; }
  .button::before, .button::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .button__primary {
    border-radius: 3px;
    overflow: hidden;
    color: #ffffff;
    background: #876585; }
    .button__primary::before {
      content: "";
      background: #c27b7f;
      width: 125%;
      left: -12%;
      transform: skew(30deg);
      transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1); }
    .button__primary span {
      position: relative; }
    .button__primary:hover::before {
      transform: translate3d(100%, 0, 0); }

.btn__secondary {
  position: relative;
  display: inline-block;
  line-height: 30px;
  text-align: center;
  padding: 10px 30px;
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  background-color: transparent;
  color: #c27b7f;
  transition: all 0.3s ease;
  cursor: pointer; }
  .btn__secondary i {
    font-size: 20px;
    margin-right: 5px; }
  .btn__secondary::before, .btn__secondary::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 100%;
    border-width: 1px;
    border-style: solid;
    border-color: #c27b7f;
    transition: all 0.5s ease; }
  .btn__secondary::before {
    top: 0px;
    left: 0px;
    border-right: none; }
  .btn__secondary::after {
    top: 0px;
    right: 0px;
    border-left: none; }
  .btn__secondary:hover::before, .btn__secondary:hover::after {
    width: 100%; }
  .btn__secondary:hover {
    text-decoration: none;
    background: #c27b7f;
    color: #ffffff;
    transition-delay: 0.35s; }
  .btn__secondary.btn-small {
    padding: 4px 20px; }

.link {
  font-weight: 500;
  position: relative;
  color: #c27b7f;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center; }
  .link i {
    position: relative;
    margin-left: 10px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }
  .link:hover {
    color: #876585; }
    .link:hover i {
      margin-left: 6px; }

.social-icon {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0; }
  .social-icon li {
    list-style: none; }
    .social-icon li a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      padding: 5px;
      background-color: #c27b7f;
      color: #ffffff;
      transition: all 0.5s;
      box-shadow: 3px 3px #876585; }
      .social-icon li a:hover {
        background-color: #876585;
        box-shadow: none; }
      @media screen and (max-width: 320px) {
        .social-icon li a {
          width: 30px;
          height: 30px; } }
      .social-icon li a i {
        font-size: 20px; }
        @media screen and (max-width: 320px) {
          .social-icon li a i {
            font-size: 15px; } }

#preLoader {
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  animation: preLoader 1s 1s linear forwards;
  background-color: #ffffff; }

.circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: absolute;
  overflow: hidden;
  opacity: 0.3;
  border-width: 5px;
  border-style: solid;
  border-color: #fcb0b4; }

.x1 {
  animation: movecircles 25s linear infinite;
  top: 150px; }

.x2 {
  left: 200px;
  top: 200px;
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-animation: movecircles 35s linear infinite;
  -moz-animation: movecircles 35s linear infinite;
  -o-animation: movecircles 35s linear infinite; }

.x3 {
  left: -220px;
  bottom: 220px;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-animation: movecircles 40s linear infinite;
  -moz-animation: movecircles 40s linear infinite;
  -o-animation: movecircles 40s linear infinite; }

.x4 {
  left: 470px;
  bottom: 230px;
  -webkit-transform: scale(0.75);
  -moz-transform: scale(0.75);
  transform: scale(0.75);
  animation: movecircles 45s linear infinite; }

.x5 {
  left: -150px;
  bottom: 100px;
  transform: scale(0.8);
  animation: movecircles 50s linear infinite; }

.video-btn {
  height: 70px;
  width: 70px;
  line-height: 80px;
  text-align: center;
  color: #876585;
  background-color: #ffffff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  margin-top: -50px;
  z-index: 99;
  padding-left: 5px;
  box-shadow: 0 0 30px rgba(1, 6, 33, 0.06); }
  .video-btn:hover {
    color: #c27b7f; }

.waves-block .waves {
  position: absolute;
  width: 100px;
  height: 100px;
  background: #ffffff;
  opacity: 0;
  border-radius: 100%;
  animation: waves 4s ease-in-out infinite;
  left: 50%;
  top: 50%;
  margin-left: -65px;
  margin-top: -65px;
  z-index: 3; }

.waves-block .wave-1 {
  animation-delay: 0s; }

.waves-block .wave-2 {
  animation-delay: 1s; }

.waves-block .wave-3 {
  animation-delay: 2s; }

.translateEffect1 {
  transition: all 0.3s; }
  .translateEffect1:hover {
    transform: translateY(-10px); }

.translateEffect2 {
  transition: all 0.3s; }
  .translateEffect2:hover {
    transform: translateY(-5px); }

label {
  display: block !important; }

input,
textarea {
  outline: none;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06);
  padding: 10px;
  width: 100%;
  margin-bottom: 15px;
  transition: all 0.5s;
  border-radius: 0 !important; }
  input:focus,
  textarea:focus {
    outline: none !important;
    box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06) !important;
    border-bottom-color: #c27b7f !important; }

textarea {
  max-height: 150px; }

input[type="submit"],
.bg-one .contact-form-box input[type="submit"] {
  border-bottom: none !important;
  background-color: #c27b7f;
  color: #ffffff;
  margin-bottom: 0; }
  input[type="submit"]:hover,
  .bg-one .contact-form-box input[type="submit"]:hover {
    background-color: #876585; }

button[type="submit"] {
  background-color: #c27b7f;
  color: #ffffff;
  transition: all 0.5s;
  border: none; }
  button[type="submit"]:hover {
    background-color: #876585; }

.wp-block-cover__inner-container p {
  color: #ffffff !important; }

.has-custom-content-position {
  margin-bottom: 15px; }

form.wp-block-search__button-outside,
form.wp-block-search__button-inside,
form.wp-block-search__no-button,
form.wp-block-search__button-icon-button {
  margin-bottom: 15px; }
  form.wp-block-search__button-outside label,
  form.wp-block-search__button-inside label,
  form.wp-block-search__no-button label,
  form.wp-block-search__button-icon-button label {
    margin-bottom: 8px; }

.wp-block-navigation__responsive-container-content .wp-block-page-list {
  padding-left: 0; }

select {
  padding: 5px 10px;
  border-radius: 0px;
  border: 1px solid #eff0f7;
  margin-bottom: 15px; }
  select:focus {
    outline: none; }

.not-found {
  max-width: 60%;
  margin: 0 auto; }
  @media only screen and (max-width: 991px) {
    .not-found {
      max-width: 100%; } }
  .not-found h1 {
    font-size: 150px;
    color: #c27b7f; }

blockquote {
  padding: 10px 30px;
  background-color: #f5ebe6;
  font-style: italic;
  border-left: 5px solid #c27b7f;
  font-size: 18px; }
  blockquote p {
    margin-bottom: 0; }

.page-header {
  padding: 100px 0; }
  .page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .page-header__content {
    position: relative;
    z-index: 99;
    text-align: center; }
    .page-header__content ul {
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center; }
      .page-header__content ul li {
        list-style: none;
        font-weight: 500; }
        .page-header__content ul li:not(:last-child) {
          margin-right: 15px; }
        .page-header__content ul li a {
          color: #c27b7f; }
          .page-header__content ul li a:hover {
            color: #876585; }

/*
/*  WordPress Gallery block/widget
*/
.gallery-caption {
  display: block; }

.gallery-item {
  display: inline-block; }

.gallery {
  margin-bottom: 1.5em; }

.gallery-item {
  text-align: center;
  vertical-align: top;
  width: 100%; }

.gallery-columns-2 .gallery-item {
  max-width: 50%; }

.gallery-columns-3 .gallery-item {
  max-width: 33.33333%; }

.gallery-columns-4 .gallery-item {
  max-width: 25%; }

.gallery-columns-5 .gallery-item {
  max-width: 20%; }

.gallery-columns-6 .gallery-item {
  max-width: 16.66667%; }

.gallery-columns-7 .gallery-item {
  max-width: 14.28571%; }

.gallery-columns-8 .gallery-item {
  max-width: 12.5%; }

.gallery-columns-9 .gallery-item {
  max-width: 11.11111%; }

.gallery-columns-5 .gallery-item {
  padding: 0 15px; }

/*
/*  Tables
*/
td,
th,
.wp-block-table td,
.wp-block-table th {
  padding: 15px;
  text-align: left;
  color: #2f4858;
  border-color: #eff0f7;
  border-style: solid;
  border-width: 1px; }

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 1.5em;
  width: 100%;
  border: 1px solid #eff0f7; }

th {
  background: #eff0f7; }

tr {
  border-bottom: 1px solid #c27b7f; }

/*
/*  Archive block & widget  
*/
.widget_archive ul {
  padding: 0; }

.wp-block-archives-list {
  padding: 0 !important; }
  .wp-block-archives-list li,
  .wp-block-archives-list .widget_archive li {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;
    background-color: rgba(1, 6, 33, 0.06);
    padding: 5px 20px;
    font-size: 14px;
    -webkit-transition: 0.2s all;
    -o-transition: 0.2s all;
    transition: 0.2s all; }

.wp-block-archives-list li a,
.widget_archive li a {
  text-decoration: none; }

.wp-block-archives-list li:hover,
.widget_archive li:hover {
  background-color: #f5ebe6; }

/*
/*  Tag cloud block / widget  
*/
.widget_tag_cloud a,
.wp-block-tag-cloud a {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
  background-color: rgba(1, 6, 33, 0.06);
  text-decoration: none;
  padding: 5px 20px;
  font-family: var(--font-primary);
  font-weight: var(--font-primary-bold);
  font-size: var(--font-primary-small); }

.widget_tag_cloud a:hover,
.wp-block-tag-cloud a:hover {
  background-color: #f5ebe6;
  -webkit-transition: 0.2s all;
  -o-transition: 0.2s all;
  transition: 0.2s all; }

h1,
h2,
h3,
h4,
h5,
h6,
li,
a,
p,
blockquote {
  word-wrap: break-word; }

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: auto; }

.header {
  width: 100%;
  transition: border-radius 0.2s, width 350ms ease; }
  .header.header_full_width {
    position: fixed;
    width: 100%;
    background: #ffffff;
    z-index: 100;
    box-shadow: 0 2px 28px 0 rgba(1, 6, 33, 0.06); }
    .header.header_full_width .navbar {
      margin-top: 0px; }
    .header.header_full_width.navbar_fixed {
      animation: none; }
  .header.sticky_header {
    position: absolute; }
    .header.sticky_header.navbar_fixed {
      position: absolute; }
  .header.navbar_fixed {
    position: fixed;
    width: 100%;
    background: #ffffff;
    z-index: 100;
    box-shadow: 0 2px 28px 0 rgba(1, 6, 33, 0.06);
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown; }
    .header.navbar_fixed .navbar {
      margin-top: 0px; }
  .header .navbar {
    border: 0px;
    padding-left: 15px;
    padding-right: 15px;
    top: 0;
    left: 0;
    z-index: 100;
    transition: all 0.3s;
    transition: all 0.4s ease-in-out; }
    .header .navbar img {
      max-width: 220px; }
    .header .navbar .navbar-brand {
      padding: 0px; }
    .header .navbar .navbar-nav li a:hover:after,
    .header .navbar .navbar-nav li.active a:after,
    .header .navbar .navbar-nav li.current_page_item a:after {
      opacity: 1;
      bottom: -12px; }
    .header .navbar .nav-item .sub-menu-toggle.dropdown-toggle::after {
      content: inherit; }
    .header .navbar .nav-item .nav-link.dropdown-toggle::after {
      border-top: inherit; }
    .header .navbar .nav-item .nav-link {
      color: inherit; }
    .header .navbar .nav-item:hover .nav-link,
    .header .navbar .nav-item:hover i {
      color: #c27b7f; }
    .header .navbar .nav-item:hover .dropdown-menu .nav-item .nav-link,
    .header .navbar .nav-item:hover .dropdown-menu .nav-item i {
      color: #2f4858;
      background-color: inherit; }
    .header .navbar .nav-item:hover .dropdown-menu .nav-item:hover .nav-link,
    .header .navbar .nav-item:hover .dropdown-menu .nav-item:hover i {
      color: #c27b7f; }
    .header .navbar .nav-item:hover .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link,
    .header .navbar .nav-item:hover .dropdown-menu .nav-item .dropdown-menu .nav-item i {
      color: #2f4858;
      background-color: inherit; }
    .header .navbar .nav-item:hover .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .nav-link,
    .header .navbar .nav-item:hover .dropdown-menu .nav-item .dropdown-menu .nav-item:hover i {
      color: #c27b7f; }
    .header .navbar .nav-item:hover .dropdown-menu .nav-item .dropdown-menu .nav-item.current-menu-item .nav-link,
    .header .navbar .nav-item:hover .dropdown-menu .nav-item .dropdown-menu .nav-item.current-menu-item i, .header .navbar .nav-item:hover .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link,
    .header .navbar .nav-item:hover .dropdown-menu .nav-item .dropdown-menu .nav-item.active i {
      color: #c27b7f; }
    .header .navbar .nav-item:hover .dropdown-menu .nav-item.current-menu-item .nav-link,
    .header .navbar .nav-item:hover .dropdown-menu .nav-item.current-menu-item i, .header .navbar .nav-item:hover .dropdown-menu .nav-item.active .nav-link,
    .header .navbar .nav-item:hover .dropdown-menu .nav-item.active i {
      color: #c27b7f; }
    .header .navbar .nav-item.current-menu-item .nav-link,
    .header .navbar .nav-item.current-menu-item i, .header .navbar .nav-item.active .nav-link,
    .header .navbar .nav-item.active i {
      color: #c27b7f; }
  .header .navbar-expand-lg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.4s; }
  .header .navbar-toggler {
    position: relative;
    width: 30px;
    height: 20px;
    border-radius: 0px;
    padding: 0px;
    border: 0px; }
    .header .navbar-toggler:focus {
      outline: none;
      box-shadow: none; }
    .header .navbar-toggler span {
      background-color: #2f4858;
      display: block;
      position: absolute;
      height: 1px;
      width: 50%;
      opacity: 1;
      transform: rotate(0deg);
      transition: 0.25s ease-in-out; }
      .header .navbar-toggler span:nth-child(even) {
        left: 50%;
        border-radius: 0 9px 9px 0; }
      .header .navbar-toggler span:nth-child(odd) {
        left: 0px;
        border-radius: 9px 0 0 9px; }
      .header .navbar-toggler span:nth-child(1), .header .navbar-toggler span:nth-child(6) {
        transform: rotate(45deg); }
      .header .navbar-toggler span:nth-child(2), .header .navbar-toggler span:nth-child(5) {
        transform: rotate(-45deg); }
      .header .navbar-toggler span:nth-child(1) {
        left: 0px;
        top: 4px; }
      .header .navbar-toggler span:nth-child(2) {
        left: calc(50% - 4px);
        top: 4px; }
      .header .navbar-toggler span:nth-child(3) {
        left: -50%;
        opacity: 0; }
      .header .navbar-toggler span:nth-child(4) {
        left: 86%;
        opacity: 0; }
      .header .navbar-toggler span:nth-child(5) {
        left: 0px;
        top: 14px; }
      .header .navbar-toggler span:nth-child(6) {
        left: calc(50% - 4px);
        top: 14px; }
    .header .navbar-toggler.collapsed span:nth-child(1), .header .navbar-toggler.collapsed span:nth-child(2) {
      top: 2px; }
    .header .navbar-toggler.collapsed span:nth-child(3), .header .navbar-toggler.collapsed span:nth-child(4) {
      top: 9px; }
    .header .navbar-toggler.collapsed span:nth-child(5), .header .navbar-toggler.collapsed span:nth-child(6) {
      top: 16px; }
    .header .navbar-toggler.collapsed span:nth-child(2), .header .navbar-toggler.collapsed span:nth-child(5), .header .navbar-toggler.collapsed span:nth-child(1), .header .navbar-toggler.collapsed span:nth-child(6) {
      transform: rotate(0deg); }
    .header .navbar-toggler.collapsed span:nth-child(3) {
      opacity: 1;
      left: 0; }
    .header .navbar-toggler.collapsed span:nth-child(4) {
      opacity: 1;
      left: calc(50% - 4px); }

.dropdown-toggle.active.show span {
  transform: rotate(180deg); }

.menu > .nav-item {
  position: relative;
  transition: all 0.2s linear;
  border-bottom: 1px solid transparent;
  margin-left: 15px; }
  @media only screen and (max-width: 1199px) {
    .menu > .nav-item {
      margin-left: 0; } }
  .menu > .nav-item a {
    padding-top: 8px;
    padding-bottom: 8px;
    display: block; }
    .menu > .nav-item a::after {
      transition: all 0.4s cubic-bezier(0.3, 0.1, 0.58, 1);
      opacity: 0;
      content: "";
      width: 100%;
      width: 30px;
      left: 50%;
      transform: translate(-50%, 0);
      height: 2px;
      background: #c27b7f;
      position: absolute;
      bottom: -20px; }
      @media only screen and (max-width: 991px) {
        .menu > .nav-item a::after {
          left: 10px;
          background: inherit; } }
  .menu > .nav-item.submenu .dropdown-menu {
    margin: 0px;
    border: 0px;
    border-radius: 0px;
    left: -100px;
    max-width: 195px;
    min-width: 195px;
    padding: 15px;
    background: #ffffff;
    top: 100%;
    box-shadow: 0px 6px 20px 0px rgba(1, 6, 33, 0.06); }
    @media (min-width: 992px) {
      .menu > .nav-item.submenu .dropdown-menu {
        transform: translateY(20px);
        transition: all 0.3s ease-in;
        opacity: 0;
        visibility: hidden;
        display: block; } }
    .menu > .nav-item.submenu .dropdown-menu .nav-item {
      display: block;
      width: 100%;
      position: relative; }
      .menu > .nav-item.submenu .dropdown-menu .nav-item:not(:first-child) {
        margin-top: 14px; }
      .menu > .nav-item.submenu .dropdown-menu .nav-item .nav-link {
        padding: 0px;
        text-wrap: inherit;
        font-size: 14px;
        font-weight: 500;
        transition: color 0.2s linear; }
        .menu > .nav-item.submenu .dropdown-menu .nav-item .nav-link:after {
          display: none; }
      .menu > .nav-item.submenu .dropdown-menu .nav-item > .dropdown-menu {
        transition: transform 0.3s ease-in; }
        .menu > .nav-item.submenu .dropdown-menu .nav-item > .dropdown-menu:before {
          display: none; }
        @media (min-width: 992px) {
          .menu > .nav-item.submenu .dropdown-menu .nav-item > .dropdown-menu {
            position: absolute;
            left: 100%;
            top: -15px;
            opacity: 0;
            display: block;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease-in; } }
    .menu > .nav-item.submenu .dropdown-menu .dropdown-menu-end {
      left: 0;
      box-shadow: none;
      display: flex;
      padding: 0;
      min-width: 100%; }
      @media only screen and (max-width: 991px) {
        .menu > .nav-item.submenu .dropdown-menu .dropdown-menu-end {
          display: block; }
          .menu > .nav-item.submenu .dropdown-menu .dropdown-menu-end .dropdown-menu {
            display: block; } }
  @media (min-width: 992px) {
    .menu > .nav-item:hover .dropdown-menu {
      opacity: 1;
      transform: translateY(0);
      visibility: visible; } }
  @media (min-width: 992px) and (min-width: 992px) {
    .menu > .nav-item:hover .dropdown-menu > .nav-item:hover .dropdown-menu {
      transform: scaleY(1);
      opacity: 1;
      visibility: visible; } }
  .menu > .nav-item.dropdown.submenu {
    display: flex;
    align-items: center; }
    .menu > .nav-item.dropdown.submenu .dropdown-menu .nav-item .nav-link {
      padding: 0;
      color: inherit; }

@media (max-width: 991px) {
  .navbar-nav > li .sub-menu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    background: #2f4858;
    width: 100%;
    height: 38px;
    width: 38px;
    line-height: 38px;
    margin-right: 0px;
    cursor: pointer;
    text-align: center;
    z-index: 1;
    border: 3px solid #ffffff; }
  .header .navbar .nav-item i {
    color: #ffffff !important; }
  .menu .nav-item.dropdown.submenu {
    display: block; }
  .menu > .nav-item.submenu .dropdown-menu {
    max-width: 100%; } }

@media only screen and (max-width: 991px) {
  .navbar .navbar-collapse {
    position: absolute;
    left: 0;
    top: 100%;
    background: #ffffff;
    box-shadow: 4px 6px 10px rgba(1, 6, 33, 0.06);
    z-index: 8;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    max-height: 300px;
    overflow-y: scroll; }
    .navbar .navbar-collapse.collapse.show .nav-item .nav-link::after {
      display: none; }
  .menu > .nav-item {
    margin: 0;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0;
    padding-right: 0; }
    .menu > .nav-item.submenu .dropdown-menu {
      padding-left: 15px;
      padding-right: 15px;
      margin-top: 10px; }
      .menu > .nav-item.submenu .dropdown-menu .nav-item {
        padding-left: 0;
        padding-right: 0; } }

#menu-primary-menu .current-menu-parent {
  color: #c27b7f; }
  #menu-primary-menu .current-menu-parent a::after {
    opacity: 1;
    bottom: -12px; }

.hero__padding {
  padding-top: 100px;
  padding-bottom: 100px; }

.hero__content {
  z-index: 9; }
  @media only screen and (max-width: 767px) {
    .hero__content {
      text-align: center; } }
  @media only screen and (max-width: 991px) {
    .hero__content form {
      display: inline-block; } }
  .hero__content form .input-group {
    flex-wrap: nowrap; }
    .hero__content form .input-group input {
      margin-bottom: 0; }
  .hero__content form input {
    border: 0;
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
    padding: 15px 15px;
    width: 300px; }
    .hero__content form input:focus {
      outline: none;
      border-bottom-color: transparent !important; }
    @media only screen and (max-width: 991px) {
      .hero__content form input {
        width: 250px; } }
    @media only screen and (max-width: 575px) {
      .hero__content form input {
        width: auto; } }
  .hero__content form button {
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important; }
  @media screen and (max-width: 380px) {
    .hero__content form .input-group {
      flex-wrap: wrap; }
    .hero__content form input {
      width: 100%;
      border-top-right-radius: 5px !important;
      border-bottom-right-radius: 5px !important; }
    .hero__content form button {
      border-top-left-radius: 5px !important;
      border-bottom-left-radius: 5px !important;
      width: 100%;
      margin-top: 20px; } }

.hero__images {
  position: relative;
  margin-left: 60px; }
  @media only screen and (max-width: 991px) {
    .hero__images {
      margin-left: 0; } }
  .hero__images--badge {
    position: absolute;
    width: 100px;
    height: 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    padding: 10px;
    background-color: #c27b7f;
    color: #ffffff;
    top: 69.5%;
    right: 71.5%;
    text-align: center;
    box-shadow: 0px 30px 40px 0px rgba(1, 6, 33, 0.06);
    line-height: 22px;
    animation: upDown 3s linear infinite alternate; }
    .hero__images--badge span {
      font-family: "Philosopher", sans-serif; }
    .hero__images--badge--text1 {
      display: block;
      font-size: 26px;
      font-weight: 700; }

.hero__images3 {
  padding-right: 30px;
  position: relative;
  border-radius: 10px;
  margin-bottom: 30px;
  display: inline-block;
  animation: upDown 3s linear infinite alternate; }
  @media only screen and (max-width: 991px) {
    .hero__images3 {
      padding-right: 25px; } }
  .hero__images3::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50px;
    z-index: 1;
    border: 3px dotted #fcb0b4;
    border-radius: 10px;
    height: 100%;
    animation: upDown 3s linear infinite alternate;
    width: 80%; }
  .hero__images3 img {
    position: relative;
    z-index: 2;
    border-radius: 10px; }

.hero__images4 {
  position: relative;
  display: inline-block;
  padding-left: 20px; }
  @media only screen and (max-width: 991px) {
    .hero__images4 {
      padding-left: 25px; } }
  .hero__images4:after {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    z-index: 1;
    background: #fcb0b4;
    border-radius: inherit;
    height: 100%;
    width: 80%;
    border-radius: 10px 0px 10px 10px; }
    @media only screen and (max-width: 991px) {
      .hero__images4:after {
        top: 25px; } }
  .hero__images4 img {
    position: relative;
    z-index: 2;
    border-radius: 10px 30px 10px 30px; }

.hero__author--inner {
  position: relative;
  width: 26vw;
  height: 32vw;
  -webkit-transform: rotateY(5deg);
  transform: rotateY(5deg);
  margin-left: auto;
  border-radius: 5px; }
  @media only screen and (max-width: 991px) {
    .hero__author--inner {
      width: 30vw;
      height: 60vh; } }
  @media only screen and (max-width: 767px) {
    .hero__author--inner {
      width: 67vw;
      height: 100vh; } }
  @media only screen and (max-width: 575px) {
    .hero__author--inner {
      width: 80vw;
      height: 100vh; } }
  .hero__author--inner--pic {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px; }
  .hero__author--inner .frame {
    border-radius: 5px;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    border: 1px solid #2f4858; }
    .hero__author--inner .frame.frame-1 {
      opacity: 0.25;
      -webkit-transform: translate(-1rem, 1rem);
      -ms-transform: translate(-1rem, 1rem);
      transform: translate(-1rem, 1rem); }
    .hero__author--inner .frame.frame-2 {
      opacity: 0.15;
      -webkit-transform: translate(-2rem, 2rem);
      -ms-transform: translate(-2rem, 2rem);
      transform: translate(-2rem, 2rem); }
    .hero__author--inner .frame.frame-3 {
      opacity: 0.1;
      -webkit-transform: translate(-3rem, 3rem);
      -ms-transform: translate(-3rem, 3rem);
      transform: translate(-3rem, 3rem); }
    .hero__author--inner .frame img {
      position: relative;
      width: 100%;
      z-index: 2;
      border-radius: 10px 100px 10px 100px; }

.hero__author--inner2 {
  width: 20vw;
  height: 28vw; }
  @media only screen and (max-width: 991px) {
    .hero__author--inner2 {
      width: 45vw;
      height: 50vw; } }
  @media only screen and (max-width: 767px) {
    .hero__author--inner2 {
      width: 55vw;
      height: 60vw; } }
  .hero__author--inner2--pic {
    position: relative;
    background-size: contain; }
    .hero__author--inner2--pic:before {
      content: "";
      position: absolute;
      width: 90%;
      height: 80%;
      background-color: #fcb0b4;
      opacity: 0.9;
      z-index: -1;
      right: 0;
      bottom: 0; }
  .hero__author--inner2 .frame {
    left: inherit;
    right: 0;
    width: 80%; }
    @media only screen and (max-width: 767px) {
      .hero__author--inner2 .frame {
        left: 0;
        right: inherit; } }
    .hero__author--inner2 .frame.frame-1 {
      opacity: 0.25;
      -webkit-transform: translate(2rem, 2rem);
      -ms-transform: translate(2rem, 2rem);
      transform: translate(2rem, 2rem); }
      @media only screen and (max-width: 991px) {
        .hero__author--inner2 .frame.frame-1 {
          -webkit-transform: translate(1rem, 1rem);
          -ms-transform: translate(1rem, 1rem);
          transform: translate(1rem, 1rem); } }
    .hero__author--inner2 .frame.frame-2 {
      opacity: 0.15;
      -webkit-transform: translate(4rem, 4rem);
      -ms-transform: translate(4rem, 4rem);
      transform: translate(4rem, 4rem); }
      @media only screen and (max-width: 991px) {
        .hero__author--inner2 .frame.frame-2 {
          -webkit-transform: translate(2rem, 2rem);
          -ms-transform: translate(2rem, 2rem);
          transform: translate(2rem, 2rem); } }
    .hero__author--inner2 .frame.frame-3 {
      opacity: 0.05;
      -webkit-transform: translate(6rem, 6rem);
      -ms-transform: translate(6rem, 6rem);
      transform: translate(6rem, 6rem); }
      @media only screen and (max-width: 991px) {
        .hero__author--inner2 .frame.frame-3 {
          -webkit-transform: translate(3rem, 3rem);
          -ms-transform: translate(3rem, 3rem);
          transform: translate(3rem, 3rem); } }

.hero__book {
  padding-right: 10px;
  animation: upDown 3s linear infinite alternate; }
  .hero__book img {
    border-radius: 5px; }
  .hero__book--wrapper {
    position: relative; }
    .hero__book--wrapper::before {
      border-radius: 5px;
      content: "";
      position: absolute;
      left: -10px;
      bottom: -10px;
      width: 100%;
      height: 100%;
      z-index: -1; }

.hero__author--inner3 {
  position: relative;
  display: inline-block; }
  .hero__author--inner3--wrapper {
    position: relative;
    z-index: 2; }
    .hero__author--inner3--wrapper::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      border-radius: 100%;
      border: 3px solid #c27b7f; }
  .hero__author--inner3 img {
    border-radius: 100%;
    padding: 8px; }
  .hero__author--inner3:before, .hero__author--inner3:after {
    width: 120px;
    height: 120px;
    content: "";
    left: 0;
    bottom: 0;
    position: absolute;
    border-radius: 100%;
    z-index: 1;
    opacity: 0.6; }
  .hero__author--inner3:before {
    left: 50%;
    top: -50px;
    background-color: #c27b7f;
    animation: upDown 3s linear infinite alternate; }
  .hero__author--inner3:after {
    left: 30%;
    bottom: -50px;
    background-color: #876585;
    animation: upDown 4s linear infinite alternate; }

.hero .button {
  padding: 10px 20px; }

.hero .btn__secondary {
  padding: 10px 20px; }

@media screen and (max-width: 330px) {
  .hero .button {
    width: 100%; }
  .hero .btn__secondary {
    width: 100%;
    background-color: #c27b7f;
    color: #ffffff; } }

.success-msg,
.error-msg {
  font-size: 15px;
  text-align: center;
  padding: 10px;
  display: none;
  margin: 0px !important; }

.error-msg {
  color: #ca3604 !important; }

.success-msg {
  color: #00b374; }

.elementor .hero__images3 img {
  border-radius: 5px; }

.elementor .hero__images4 img {
  border-radius: 10px 30px 10px 30px; }

.elementor .hero__author--inner img {
  border-radius: 10px 100px 10px 100px; }

.elementor .hero__book img {
  border-radius: 5px; }

.elementor .hero__author--inner3 img {
  border-radius: 100%; }

.achieve__icon {
  width: 60px;
  height: 60px;
  background-color: #c27b7f;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px #876585;
  transition: 0.3s;
  font-size: 35px; }

.achieve__top__explore {
  margin-bottom: 40px;
  text-align: right; }
  @media only screen and (max-width: 991px) {
    .achieve__top__explore {
      text-align: center; } }

.achieve__image {
  position: relative;
  width: 100%;
  padding-left: 20px; }
  .achieve__image:after {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    z-index: 1;
    background-color: #c27b7f;
    border-radius: inherit;
    height: 100%;
    width: 90%;
    border-radius: 5px; }
  .achieve__image img {
    position: relative;
    width: 95%;
    z-index: 2;
    border-radius: 5px; }
    @media only screen and (max-width: 991px) {
      .achieve__image img {
        width: 100%; } }

@media only screen and (max-width: 991px) {
  .achieve__content {
    margin-top: 30px; } }

.achieve__content__item {
  padding: 25px;
  border-radius: 5px;
  box-shadow: 2px 0px 15px 5px rgba(1, 6, 33, 0.06);
  background-color: #ffffff; }
  @media only screen and (max-width: 1199px) {
    .achieve__content__item {
      padding: 20px; } }
  .achieve__content__item:hover {
    background-color: #c27b7f;
    color: #ffffff; }
    .achieve__content__item:hover h3 {
      color: #ffffff; }
    .achieve__content__item:hover .achieve__icon {
      border-radius: 62% 38% 46% 54%/60% 63% 37% 40%;
      background-color: #876585;
      box-shadow: 3px 3px #fcb0b4; }
    .achieve__content__item:hover .link {
      color: #ffffff; }

.achieve__image--wrap .achieve__img img {
  border-radius: 5px; }

.achieve__image--wrap .achieve__img:not(:last-child) {
  margin-bottom: 20px; }

.elementor .achieve__img img {
  border-radius: 5px; }

.achivev2 [class*="__item"] {
  padding: 35px;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 2px 0px 15px 5px rgba(1, 6, 33, 0.06); }
  @media only screen and (max-width: 991px) {
    .achivev2 [class*="__item"] {
      padding: 40px 20px; } }
  @media only screen and (max-width: 767px) {
    .achivev2 [class*="__item"] {
      padding: 40px; } }
  .achivev2 [class*="__item"] p {
    margin: 20px 0; }

.achivev2__wrapper:nth-child(2) .achivev2__item {
  margin-top: -70px; }
  @media only screen and (max-width: 991px) {
    .achivev2__wrapper:nth-child(2) .achivev2__item {
      margin-top: 0; } }

.achivev2__wrapper:nth-child(3) .achivev2__item {
  margin-top: -140px; }
  @media only screen and (max-width: 991px) {
    .achivev2__wrapper:nth-child(3) .achivev2__item {
      margin-top: 0; } }

.achivev2__wrapper:nth-child(5) .achivev2__item {
  margin-top: -70px; }
  @media only screen and (max-width: 991px) {
    .achivev2__wrapper:nth-child(5) .achivev2__item {
      margin-top: 0; } }

.achivev2__wrapper:nth-child(6) .achivev2__item {
  margin-top: -140px; }
  @media only screen and (max-width: 991px) {
    .achivev2__wrapper:nth-child(6) .achivev2__item {
      margin-top: 0; } }

.achivev2__wrapper:nth-child(8) .achivev2__item {
  margin-top: -70px; }
  @media only screen and (max-width: 991px) {
    .achivev2__wrapper:nth-child(8) .achivev2__item {
      margin-top: 0; } }

.achivev2__wrapper:nth-child(9) .achivev2__item {
  margin-top: -140px; }
  @media only screen and (max-width: 991px) {
    .achivev2__wrapper:nth-child(9) .achivev2__item {
      margin-top: 0; } }

.achieve__content__item,
.achivev2__item,
.achieve3__item {
  position: relative;
  overflow: hidden; }
  .achieve__content__item::before, .achieve__content__item::after,
  .achivev2__item::before,
  .achivev2__item::after,
  .achieve3__item::before,
  .achieve3__item::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: 0;
    clip-path: polygon(100% 29%, 100% 100%, 19% 99%, 0 56%);
    z-index: -1; }
  .achieve__content__item::before,
  .achivev2__item::before,
  .achieve3__item::before {
    width: 80px;
    height: 80px;
    background-color: #fcb0b4;
    transition: all 0.3s;
    opacity: 0.3; }
  .achieve__content__item::after,
  .achivev2__item::after,
  .achieve3__item::after {
    width: 70px;
    height: 70px;
    background-color: #fcb0b4;
    transition: all 0.5s;
    opacity: 0.3; }
  .achieve__content__item:hover::before,
  .achivev2__item:hover::before,
  .achieve3__item:hover::before {
    bottom: 0;
    z-index: 1; }
  .achieve__content__item:hover::after,
  .achivev2__item:hover::after,
  .achieve3__item:hover::after {
    bottom: 0;
    z-index: 1; }

.achieve3__item {
  position: relative;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 2px 0px 15px 5px rgba(1, 6, 33, 0.06);
  transition: all 0.5s;
  overflow: hidden; }
  .achieve3__item:hover .achieve__icon {
    box-shadow: 0px 0px transparent; }

.wrap {
  width: 50%;
  padding: 20px;
  background: rgba(255, 0, 0, 0.5);
  overflow: hidden; }

.gallery {
  width: 100%; }

.grid-sizer,
.item {
  width: calc(50% - 5px); }

.item {
  float: left;
  margin-bottom: 10px; }
  .item:last-of-type, .item:nth-last-of-type(2) {
    margin-bottom: 0; }

.item img {
  display: block;
  width: 100%; }

.chapter__item {
  background-color: #f5ebe6;
  box-shadow: 2px 0px 15px 5px rgba(1, 6, 33, 0.06);
  border-radius: 5px;
  padding: 25px; }
  .chapter__item p {
    margin-bottom: 0; }
  .chapter__item h3 {
    margin-bottom: 15px; }

.chapter-preview .testi-row {
  position: relative; }

.chapter-preview .swiper-button-next,
.chapter-preview .swiper-button-prev {
  top: auto;
  bottom: 0 !important; }
  .chapter-preview .swiper-button-next::after,
  .chapter-preview .swiper-button-prev::after {
    transition: all 0.5s;
    font-size: 16px;
    font-weight: bold;
    background-color: #c27b7f;
    padding: 10px 15px;
    color: #ffffff;
    box-shadow: 3px 3px #876585; }
  .chapter-preview .swiper-button-next:hover::after,
  .chapter-preview .swiper-button-prev:hover::after {
    background-color: #876585;
    box-shadow: none !important; }

.chapter-preview .swiper-button-next {
  right: 50%;
  transform: translate(40px, 0); }

.chapter-preview .swiper-button-prev {
  left: 50%;
  transform: translate(-40px, 0); }

.faqs-accordion .accordion-item {
  border-bottom: none;
  margin-bottom: 12px;
  border-radius: 6px;
  box-shadow: 0px 1px 20px 0px rgba(1, 6, 33, 0.06); }
  .faqs-accordion .accordion-item .accordion-body p:last-child {
    margin-bottom: 0; }
  .faqs-accordion .accordion-item .accordion-header .chapter_1_number {
    margin-right: 5px; }
  .faqs-accordion .accordion-item .accordion-header .accordion-button {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    box-shadow: none !important;
    color: #2f4858;
    font-size: 20px;
    font-weight: 700;
    color: #2f4858; }
    .faqs-accordion .accordion-item .accordion-header .accordion-button.collapsed {
      border-radius: 6px;
      color: #2f4858; }
      .faqs-accordion .accordion-item .accordion-header .accordion-button.collapsed:before {
        color: #2f4858;
        transform: rotate(0deg); }
    .faqs-accordion .accordion-item .accordion-header .accordion-button:focus {
      box-shadow: none; }
    .faqs-accordion .accordion-item .accordion-header .accordion-button::after {
      display: none; }
    .faqs-accordion .accordion-item .accordion-header .accordion-button::before {
      content: "\f107";
      display: inline-block;
      font-family: "Font Awesome 5 Free";
      font-size: 22px;
      color: #ffffff;
      position: absolute;
      right: 20px;
      transform: rotate(180deg);
      transition: all 0.3s ease-in-out; }
  .faqs-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background-color: #c27b7f;
    color: #ffffff; }

.gslide-description p {
  font-size: 18px !important;
  line-height: 1.5 !important;
  margin-bottom: 20px !important; }

.description-right {
  max-width: 600px !important; }

.chapter-preview img {
  background-color: #ffffff;
  padding: 5px;
  border-radius: 5px; }

.chapter-slider .swiper-slide {
  margin-top: 15px;
  text-align: center;
  box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06);
  margin-bottom: 5px; }

p.first-letter::first-letter {
  margin-right: 12px;
  line-height: 0.8;
  float: left;
  clear: both;
  font-size: 60px;
  font-family: "Philosopher", sans-serif;
  color: #c27b7f;
  text-transform: uppercase; }

.bg-one .chapter__item {
  background-color: #ffffff; }

@media only screen and (max-width: 767px) {
  .glightbox-mobile .glightbox-container .gslide-desc {
    color: #ffffff; }
  .gslide-media {
    position: relative; }
    .gslide-media::before {
      position: absolute;
      content: "";
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-color: #eff0f7; } }

.elementor .chapter-preview img {
  border-radius: 5px; }

.author__image {
  position: relative;
  width: 100%;
  padding-left: 20px; }
  .author__image:after {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    z-index: 1;
    background: #c27b7f;
    border-radius: inherit;
    height: 100%;
    width: 90%;
    border-radius: 5px; }
  .author__image img {
    position: relative;
    width: 95%;
    z-index: 2;
    border-radius: 5px; }
    @media only screen and (max-width: 991px) {
      .author__image img {
        width: 100%; } }

@media only screen and (max-width: 991px) {
  .author__content {
    margin-top: 40px; } }

.author__content li {
  margin-bottom: 8px; }

.author__content__desc {
  padding-left: 0; }
  .author__content__desc li {
    list-style: none;
    margin-bottom: 8px; }
    .author__content__desc li i {
      color: #c27b7f;
      font-size: 20px;
      margin-right: 10px; }

.elementor .author__image img {
  border-radius: 5px; }

.authorv2__list h4 {
  margin-bottom: 0px; }

.authorv2__image {
  position: relative;
  width: 100%;
  padding: 10px;
  background-color: #c27b7f;
  border-radius: 5px; }
  .authorv2__image img {
    border-radius: 5px; }

.elementor .authorv2__image img {
  border-radius: 5px; }

.authorv3__content {
  padding: 85px 60px;
  position: relative;
  z-index: 1;
  margin-top: 40px;
  margin-left: -50px;
  background: #f5ebe6; }
  .authorv3__content--badge {
    color: #c27b7f;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600; }
  @media only screen and (max-width: 1199px) {
    .authorv3__content {
      padding: 40px 30px; } }
  @media only screen and (max-width: 991px) {
    .authorv3__content {
      padding: 30px;
      margin-left: 0; } }

.bg-one .authorv3__content {
  background-color: #ffffff; }

.testi-row {
  overflow: hidden; }
  .testi-row .clients-slider {
    padding: 0 0 50px 0; }
  .testi-row .chapter-preview-slider {
    padding: 0 0 50px 0; }
  .testi-row .swiper-pagination-bullet {
    background-color: #c27b7f;
    opacity: 0.3;
    padding: 5px; }
    .testi-row .swiper-pagination-bullet-active {
      opacity: 1;
      padding: 6px; }
  .testi-row .testi-card {
    box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06);
    border: none;
    margin-top: 15px;
    background-color: #f5ebe6; }
    .testi-row .testi-card img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 100%; }
    .testi-row .testi-card p {
      font-style: italic; }
    .testi-row .testi-card__quotation {
      opacity: 0.5;
      text-align: center; }
      .testi-row .testi-card__quotation i {
        font-size: 55px;
        color: #c27b7f; }
    .testi-row .testi-card__user-info {
      display: flex;
      align-items: center;
      justify-content: center;
      border-top: 1px solid #c27b7f; }
      .testi-row .testi-card__user-info img {
        margin-right: 20px; }

.testimonialv2 .testi-row .testi-card img {
  width: 70px;
  height: 70px;
  object-fit: cover; }

.testimonialv2__card-title {
  font-size: 25px;
  margin-top: 20px; }

.testimonialv2__card-subtitle {
  font-size: 16px;
  color: #c27b7f; }

.bg-one .testi-card {
  background-color: #ffffff; }
  .bg-one .testi-card__user-info {
    border-top: 1px solid #eff0f7; }

.elementor .testi-row .testi-card img {
  border-radius: 100%; }

.email-success,
.email-failed,
.email-loading,
.success-msg,
.error-msg {
  text-align: center;
  padding: 10px;
  display: none; }

.email-loading img {
  width: 20px;
  margin: 0 auto; }

.email-failed .icon {
  font-size: 20px;
  position: relative;
  top: 5px; }

.email-failed .icon,
.email-success .icon,
.error-msg .icon,
.success-msg .icon {
  font-size: 20px;
  position: relative;
  top: 2px; }

.contact-form-box {
  padding: 40px;
  background-color: #f5ebe6; }
  @media only screen and (max-width: 991px) {
    .contact-form-box {
      padding: 20px; } }
  .contact-form-box input,
  .contact-form-box textarea {
    width: 100%;
    border: none;
    padding: 10px;
    margin-bottom: 15px;
    background-color: #ffffff;
    border-bottom: 2px solid transparent; }
  .contact-form-box input:focus,
  .contact-form-box textarea:focus {
    outline: none;
    border: none;
    border-bottom: 2px solid #c27b7f; }
  .contact-form-box textarea {
    min-height: 120px;
    transition: all 0.3s ease-in-out; }

.contact__address {
  height: 100%;
  background-color: #f5ebe6; }
  .contact__address iframe {
    width: 100%;
    height: 250px; }
  .contact__address__content {
    margin: 0;
    padding: 0;
    list-style: none; }
    .contact__address__content li {
      margin-bottom: 30px; }
      .contact__address__content li a {
        display: block;
        color: #876585; }
        .contact__address__content li a:hover {
          color: #c27b7f; }
      .contact__address__content li span {
        font-weight: 700;
        font-family: "Philosopher", sans-serif;
        display: block;
        margin-bottom: 5px;
        text-transform: uppercase; }

.contactv4__content {
  padding: 0px; }
  .contactv4__content li {
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 20px; }
    .contactv4__content li i {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      padding: 5px;
      background-color: #c27b7f;
      color: #ffffff;
      transition: all 0.5s;
      box-shadow: 3px 3px #876585;
      font-size: 20px;
      margin-right: 20px; }
      .contactv4__content li i:hover {
        background-color: #876585;
        box-shadow: none; }
      @media screen and (max-width: 320px) {
        .contactv4__content li i {
          width: 30px;
          height: 30px;
          font-size: 15px; } }

.contact-form-box form p {
  margin-bottom: 0; }

.contact-form-box form input[type=submit] {
  margin-bottom: 0; }

.bg-one .contact-form-box {
  background-color: white; }
  .bg-one .contact-form-box input,
  .bg-one .contact-form-box textarea {
    background-color: #f5ebe6; }

.bg-one .contact__address {
  background-color: white; }

.books__book {
  box-shadow: 2px 0px 15px 5px rgba(1, 6, 33, 0.06);
  padding: 15px;
  border-radius: 5px;
  background-color: #ffffff;
  cursor: pointer; }
  .books__book img {
    border-radius: 5px;
    margin-bottom: 20px; }
  .books__book__subtitle {
    margin-bottom: 0; }
  .books__book__title {
    margin-bottom: 15px;
    color: #c27b7f; }
  .books__book span {
    font-weight: 700;
    color: #2f4858; }
  .books__book ul {
    display: flex;
    padding-left: 0;
    margin-bottom: 0; }
    .books__book ul li {
      list-style: none;
      color: #ffbb1c; }
      .books__book ul li i {
        font-size: 20px; }
  .books__book .dark {
    color: #2f4858; }

.elementor .books__book img {
  border-radius: 5px; }

.chapters__content__meta {
  margin-bottom: 30px;
  font-size: 18px; }
  .chapters__content__meta span {
    font-weight: 700; }
  .chapters__content__meta ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px; }
    .chapters__content__meta ul li {
      list-style: none;
      color: #ffbb1c; }
      .chapters__content__meta ul li.dark {
        color: #2f4858; }

.booksv1__img:not(:last-child) {
  margin-bottom: 20px; }

.booksv1__img {
  border-radius: 5px; }
  .booksv1__img img {
    transition: all 0.5s;
    background-color: #ffffff;
    border-radius: 5px; }
    .booksv1__img img:hover {
      background-color: #c27b7f; }

.booksv1__contnet--badge {
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #c27b7f;
  font-weight: 600; }

.booksv1__item {
  display: grid;
  grid-template-columns: auto 1fr; }
  .booksv1__item--icon {
    width: 60px;
    height: 60px;
    background-color: #c27b7f;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px #876585;
    transition: 0.3s;
    font-size: 35px; }
  .booksv1__item--text {
    margin-left: 20px; }
    .booksv1__item--text h3 {
      transition: 0.3s; }
    .booksv1__item--text p {
      margin-bottom: 0; }
    .booksv1__item--text span {
      font-weight: 700;
      color: #2f4858; }
    .booksv1__item--text ul {
      display: flex;
      gap: 4px;
      align-items: center; }
      .booksv1__item--text ul li {
        list-style: none;
        padding: 0;
        margin: 0;
        color: #ffbb1c; }
        .booksv1__item--text ul li.dark {
          color: #2f4858; }
  .booksv1__item.highlighted .booksv1__item--text h3, .booksv1__item:hover .booksv1__item--text h3 {
    color: #c27b7f; }
  .booksv1__item.highlighted .booksv1__item--icon, .booksv1__item:hover .booksv1__item--icon {
    box-shadow: 0px 0px transparent; }

.booksv1__item:not(:last-child) {
  margin-bottom: 25px; }

.elementor .booksv1__img img {
  border-radius: 5px; }

.chapter-preview .books__book img {
  padding: 0; }

.pricing__item {
  background-color: #f5ebe6;
  padding: 40px 50px;
  text-align: center;
  transition: 0.3s; }
  .pricing__item:hover {
    box-shadow: 5px 5px #876585; }
  .pricing__item.active {
    box-shadow: 5px 5px #876585; }
  @media only screen and (max-width: 991px) {
    .pricing__item {
      padding: 20px; } }
  @media only screen and (max-width: 767px) {
    .pricing__item {
      padding: 40px 50px; } }

.pricing__price {
  font-size: 40px; }

.pricing__list {
  padding-left: 0;
  margin: 40px 0; }
  .pricing__list li {
    list-style: none;
    padding: 10px 0; }
    .pricing__list li:not(:last-child) {
      border-bottom: 1px solid #c27b7f; }
    .pricing__list li i {
      font-size: 20px;
      margin-right: 15px; }

.bg-one .pricing__item {
  background-color: #ffffff; }

.bg-one .pricing__list li:not(:last-child) {
  border-bottom: 1px solid #eff0f7; }

.counters__stats li {
  list-style: none;
  width: 20%;
  padding: 0 15px;
  margin-bottom: 40px; }
  @media only screen and (max-width: 1199px) {
    .counters__stats li {
      width: 33.333%; } }
  @media only screen and (max-width: 991px) {
    .counters__stats li {
      width: 50%; } }
  @media only screen and (max-width: 767px) {
    .counters__stats li {
      width: 100%; } }

.counters__stats-box {
  background-color: #f5ebe6;
  width: 100%;
  height: 100%;
  padding: 70px 30px 30px;
  position: relative;
  box-shadow: 5px 5px #876585;
  overflow: hidden;
  transition: all 0.3s; }
  .counters__stats-box:hover {
    box-shadow: none; }
  @media only screen and (max-width: 767px) {
    .counters__stats-box {
      padding: 30px 30px; } }
  .counters__stats-box__number {
    font-size: 48px;
    color: #876585;
    font-weight: 700; }

.counters__stats-icon {
  position: absolute;
  font-size: 120px;
  top: -45px;
  right: -15px;
  opacity: 0.3; }
  .counters__stats-icon i {
    color: #c27b7f;
    opacity: 0.5; }

.bg-one .counters__stats-box {
  background-color: #ffffff; }

.blog__item {
  box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06);
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #ffffff; }
  .blog__item:hover .blog__item__image img {
    transform: scale(1.1); }
  .blog__item__image {
    overflow: hidden;
    text-align: center; }
    .blog__item__image img {
      transition: 0.3s;
      object-fit: cover;
      padding: 0;
      border-radius: 0; }
  .blog__item__body {
    padding: 30px 30px 10px;
    flex: 1 1 auto; }
    @media only screen and (max-width: 991px) {
      .blog__item__body {
        padding: 10px 10px 10px; } }
    @media only screen and (max-width: 767px) {
      .blog__item__body {
        padding: 20px 20px 10px; } }
    .blog__item__body__date {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: #c27b7f;
      text-align: center;
      padding: 8px; }
      .blog__item__body__date a {
        color: #ffffff !important; }
    .blog__item__body h2 a {
      color: #c27b7f; }
      .blog__item__body h2 a:hover {
        color: #876585; }
  .blog__item .blog-metainfo {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 0; }
    .blog__item .blog-metainfo li {
      display: flex;
      gap: 5px;
      align-items: center; }
      .blog__item .blog-metainfo li a:hover {
        color: #c27b7f; }
      .blog__item .blog-metainfo li i {
        color: #c27b7f; }
  .blog__item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px 30px; }
    .blog__item__meta ul {
      margin-bottom: 0; }
    @media only screen and (max-width: 991px) {
      .blog__item__meta {
        padding: 0 10px 10px; } }
    @media only screen and (max-width: 767px) {
      .blog__item__meta {
        padding: 0 20px 20px; } }
  .blog__item.blogv2 .blog__item__content {
    padding-bottom: 0; }
  .blog__item.blogv2 .blog__item__meta {
    padding: 0;
    justify-content: start;
    margin-bottom: 10px; }
    .blog__item.blogv2 .blog__item__meta ul {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      padding: 0; }
      .blog__item.blogv2 .blog__item__meta ul li {
        list-style: none; }
  .blog__item.blogv2 .blog__item__body {
    padding-bottom: 30px;
    position: relative; }
    .blog__item.blogv2 .blog__item__body__date {
      position: absolute;
      top: -35px;
      right: 30px;
      display: flex;
      align-items: center;
      justify-content: center; }
      .blog__item.blogv2 .blog__item__body__date a {
        display: flex;
        flex-direction: column;
        list-style: 16px; }
      .blog__item.blogv2 .blog__item__body__date strong {
        font-size: 20px;
        line-height: 16px; }
  .blog__item .thumb_fallback {
    height: 256px;
    width: 100%;
    background-color: #676768; }

.blog__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  border-top: 1px solid #eff0f7;
  padding-top: 15px; }
  .blog__meta i {
    color: #c27b7f; }

/*
/*  Verse block
*/
.wp-block-verse {
  background: rgba(1, 6, 33, 0.06);
  padding: 40px 40px 40px 80px;
  font-style: italic; }

#secondary .wp-block-verse {
  padding: 20px; }

.page h1.entry-title,
.single h1.entry-title, a {
  overflow-wrap: break-word; }

.wp-block-gallery:not(.has-nested-images).alignleft {
  max-width: 100%; }

.wp-block-gallery figcaption.blocks-gallery-caption {
  margin-bottom: 20px; }

.wp-block-button__link, .wp-block-file__button {
  background-color: #c27b7f;
  color: #ffffff; }
  .wp-block-button__link:hover, .wp-block-file__button:hover {
    background-color: #876585;
    color: #ffffff; }

.wpcf7-spinner {
  display: none; }

.blogs-slider {
  height: 100%;
  padding: 20px 0; }

.sidebar {
  padding: 20px 25px;
  border-radius: 5px;
  box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06);
  background-color: #ffffff; }
  .sidebar__item:not(:last-child) {
    position: relative;
    border-bottom: 1px solid #eff0f7;
    padding-bottom: 40px;
    margin-bottom: 40px; }
    .sidebar__item:not(:last-child)::before {
      content: "";
      background: url(../images/sidebar-icon.png) no-repeat #fff center;
      width: 16px;
      height: 16px;
      position: absolute;
      left: 50%;
      margin-left: -20px;
      bottom: -8px;
      padding: 0 20px; }
  .sidebar__item ul {
    padding-left: 0 !important;
    margin-bottom: 0 !important; }
    .sidebar__item ul li {
      margin-bottom: 5px; }
      .sidebar__item ul li a {
        font-weight: 500; }
  .sidebar__item [class*="gallery-columns-"] {
    display: grid;
    gap: 8px; }
    .sidebar__item [class*="gallery-columns-"] img {
      width: 100%;
      height: auto;
      object-fit: cover; }
    .sidebar__item [class*="gallery-columns-"] .gallery-item {
      margin-bottom: 0; }
  .sidebar__item .gallery-columns-1 {
    grid-template-columns: 1fr; }
  .sidebar__item .gallery-columns-2 {
    grid-template-columns: 1fr 1fr; }
  .sidebar__item .gallery-columns-3 {
    grid-template-columns: 1fr 1fr 1fr; }
  .sidebar__item .gallery-columns-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr; }
  .sidebar__item .gallery-columns-5 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr; }
  .sidebar__item .gallery-columns-6 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; }
  .sidebar__item .gallery-columns-7 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr; }
  .sidebar__item .gallery-columns-8 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr; }
  .sidebar__item .gallery-columns-9 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr; }
  .sidebar__item .wp-calendar-table td,
  .sidebar__item .wp-calendar-table th {
    border: 1px solid #eff0f7; }
  .sidebar__item .wp-calendar-table {
    width: 100%; }
    .sidebar__item .wp-calendar-table caption {
      text-align: center; }
    .sidebar__item .wp-calendar-table thead {
      text-align: center;
      background-color: #eff0f7; }
      .sidebar__item .wp-calendar-table thead tr td {
        font-weight: 400; }
    .sidebar__item .wp-calendar-table tbody {
      text-align: center; }
  .sidebar__item .wp-block-heading {
    margin-bottom: 15px; }
  .sidebar form {
    margin-bottom: 0; }
    .sidebar form p {
      margin-bottom: 0; }
    .sidebar form .wp-block-search__input {
      border: 1px solid rgba(1, 6, 33, 0.06) !important; }
  .sidebar .wp-block-search {
    font-size: 16px; }
    .sidebar .wp-block-search input,
    .sidebar .wp-block-search textarea {
      margin-bottom: 0; }
    .sidebar .wp-block-search label {
      display: none; }
    .sidebar .wp-block-search i {
      background-color: #c27b7f;
      padding: 15px;
      color: #ffffff;
      cursor: pointer; }
    .sidebar .wp-block-search .wp-block-search__button {
      background-color: #c27b7f;
      color: #ffffff;
      border: none;
      transition: all 0.5s; }
      .sidebar .wp-block-search .wp-block-search__button:focus {
        outline: none; }
      .sidebar .wp-block-search .wp-block-search__button:hover {
        background-color: #876585; }
  .sidebar ul,
  .sidebar ol {
    padding: 0;
    margin: 0; }
    .sidebar ul li,
    .sidebar ol li {
      list-style: none; }
  .sidebar__categories ul {
    margin: 0;
    padding: 0; }
    .sidebar__categories ul li {
      list-style: none;
      margin-bottom: 10px; }
      .sidebar__categories ul li a:hover {
        color: #c27b7f; }
  .sidebar__latest-news__item {
    display: flex;
    align-items: center;
    margin-bottom: 15px; }
    .sidebar__latest-news__item img {
      margin-right: 15px; }
    .sidebar__latest-news__item__content .title a:hover {
      color: #c27b7f; }
  .sidebar__archive ul {
    margin: 0;
    padding: 0; }
    .sidebar__archive ul li {
      list-style: none;
      margin-bottom: 10px; }
      .sidebar__archive ul li a:hover {
        color: #c27b7f; }
  .sidebar__popular-tags ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0; }
    .sidebar__popular-tags ul li {
      list-style: none;
      padding: 5px 10px;
      border-radius: 10px;
      background-color: #f5ebe6;
      transition: all 0.5s;
      margin-bottom: 10px; }
      .sidebar__popular-tags ul li:not(:last-child) {
        margin-right: 8px; }
      .sidebar__popular-tags ul li:hover {
        background-color: #c27b7f; }
        .sidebar__popular-tags ul li:hover a {
          color: #ffffff; }
  .sidebar .item-border {
    position: relative;
    border-bottom: 1px solid #eff0f7;
    padding-bottom: 30px;
    margin-bottom: 30px; }
    .sidebar .item-border::before {
      content: "";
      background: url(../images/blog/sidebar-icon.png) no-repeat #fff center;
      width: 16px;
      height: 16px;
      position: absolute;
      left: 50%;
      margin-left: -20px;
      bottom: -8px;
      padding: 0 20px; }

.cta__inner {
  text-align: center;
  padding: 40px;
  border-radius: 5px; }
  .cta__inner form .mc4wp-form-fields button {
    width: 100%; }

.cta-form-box {
  margin-top: 30px; }
  .cta-form-box form {
    text-align: center; }
  .cta-form-box input {
    height: 60px;
    width: 100%;
    border: none;
    padding: 10px;
    margin-bottom: 15px;
    background-color: #ffffff;
    border-bottom: 2px solid transparent; }
  .cta-form-box input:focus {
    outline: none;
    border: none;
    border-bottom: 2px solid #c27b7f; }
  .cta-form-box button {
    height: 60px; }

.cta2 {
  background-image: url(../images/ctav5.jpg);
  background-repeat: no-repeat;
  background-size: cover; }
  .cta2__wrapper {
    background-color: #f5ebe6;
    padding: 40px;
    border-radius: 10px; }
    @media only screen and (max-width: 991px) {
      .cta2__wrapper {
        padding: 20px; } }
  @media only screen and (max-width: 991px) {
    .cta2 form {
      display: inline-block; } }
  .cta2 form .input-group input {
    margin-bottom: 0 !important;
    width: 300px; }
    @media only screen and (max-width: 991px) {
      .cta2 form .input-group input {
        width: 250px; } }
    @media only screen and (max-width: 575px) {
      .cta2 form .input-group input {
        width: auto; } }
  .cta2 form input {
    border: 0;
    border-radius: 5px;
    box-shadow: 2px 0px 15px 5px rgba(1, 6, 33, 0.06);
    padding: 15px 15px; }
    .cta2 form input:focus {
      outline: none; }
  .cta2 form button {
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important; }
  @media screen and (max-width: 450px) {
    .cta2 form input {
      width: 100%;
      border-top-right-radius: 5px !important;
      border-bottom-right-radius: 5px !important; }
    .cta2 form button {
      border-top-left-radius: 5px !important;
      border-bottom-left-radius: 5px !important;
      width: 100%;
      margin-top: 20px; } }

.ctav3__content {
  text-align: center;
  position: relative; }
  .ctav3__content h4 {
    line-height: 1.5; }
  .ctav3__content h2 a {
    color: #c27b7f; }
    .ctav3__content h2 a:hover {
      color: #876585; }
  .ctav3__content__icon {
    position: absolute;
    top: 50%;
    transform: translate(50%, -50%); }
    .ctav3__content__icon i {
      opacity: 0.3;
      color: #c27b7f;
      font-size: 150px; }

@media only screen and (max-width: 767px) {
  .ctav4 {
    text-align: center; } }

.ctav4__content {
  z-index: 1; }

.ctav4__video-btn {
  position: relative;
  top: 50%; }
  @media only screen and (max-width: 767px) {
    .ctav4__video-btn {
      padding-top: 70px; } }

.ctav5 {
  text-align: center; }
  .ctav5.bg-one ul li {
    background-color: #ffffff; }
  .ctav5__content {
    z-index: 1; }
    .ctav5__content h2 {
      margin-bottom: 25px; }
    .ctav5__content ul {
      display: flex;
      align-items: center;
      margin: 0;
      padding: 0;
      justify-content: center;
      gap: 8px;
      margin-bottom: 28px; }
      .ctav5__content ul li {
        list-style: none;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #f5ebe6;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem; }
        .ctav5__content ul li i {
          color: #c27b7f; }

.lite-content h2,
.lite-content p,
.lite-content h3 {
  color: #ffffff; }

.chapter__preview2-content {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0; }

.chapter__preview2-container {
  display: flex;
  width: 90vw; }
  @media only screen and (max-width: 991px) {
    .chapter__preview2-container {
      flex-direction: column;
      display: block; } }

.chapter__preview2 .panel {
  background-color: #f5ebe6;
  background-size: cover;
  background-position: 10000px;
  background-repeat: no-repeat;
  height: 60vh;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  flex: 0.5;
  margin: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px #876585;
  transition: all 0.5s !important; }
  @media only screen and (max-width: 991px) {
    .chapter__preview2 .panel {
      height: 60px; } }
  .chapter__preview2 .panel.active a {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99; }

.chapter__preview2 .panel h3 {
  font-size: 24px;
  padding: 10px;
  margin: 0;
  opacity: 1;
  writing-mode: vertical-rl;
  text-orientation: upright; }
  @media only screen and (max-width: 991px) {
    .chapter__preview2 .panel h3 {
      writing-mode: inherit; } }

.chapter__preview2 .panel_active {
  transition: all 0.5s; }

.chapter__preview2 .panel.active {
  background-position: center;
  flex: 5;
  box-shadow: none;
  width: 100%; }
  @media only screen and (max-width: 991px) {
    .chapter__preview2 .panel.active {
      height: 70vh; } }
  @media only screen and (max-width: 767px) {
    .chapter__preview2 .panel.active {
      height: 60vh; } }

.chapter__preview2 .panel_active.active {
  width: 40% !important; }

.chapter__preview2 .panel.active h3 {
  opacity: 0; }

.chapter__preview2 .cover-panel {
  height: 70vh;
  flex: 0.8; }
  @media only screen and (max-width: 991px) {
    .chapter__preview2 .cover-panel {
      height: 60px; } }

.bg-one .chapter__preview2 .panel {
  background-color: #ffffff;
  border: 5px solid #ffffff; }

.gslide-media.gslide-image {
  background-color: #f5ebe6; }

.achievement .achievements-slider .achievement__item {
  margin: 8px; }

.achievement__item {
  box-shadow: 5px 5px #876585;
  background-color: #f5ebe6; }
  .achievement__item img {
    height: 100%;
    object-fit: cover; }

.achievement .card {
  box-shadow: 2px 0px 15px 5px rgba(1, 6, 33, 0.06);
  border: none; }
  .achievement .card:hover {
    box-shadow: 4px 0px 25px 10px rgba(1, 6, 33, 0.06); }

.achievement__content {
  position: relative;
  overflow: hidden;
  padding: 30px 10px 10px 0px; }
  .achievement__content__icon i {
    position: absolute;
    opacity: 0.3;
    font-size: 80px;
    top: 0;
    right: 0; }
  .achievement__content h3 {
    margin-bottom: 20px; }

.bg-one .achievement__item {
  background-color: #ffffff; }

.elementor .achievement__item img {
  height: 100%; }

.event .card {
  border: none;
  margin-right: 1px;
  transition: all 0.3s ease;
  padding: 40px 20px;
  background-color: #f5ebe6; }
  .event .card:hover {
    box-shadow: 0px 20px 40px 0px rgba(1, 6, 33, 0.06);
    z-index: 10; }
    .event .card:hover .card-body .date {
      opacity: 1; }
  .event .card .card-body {
    padding: 0px; }
    .event .card .card-body .date {
      font-size: 60px;
      font-family: "Philosopher", sans-serif;
      color: #2f4858;
      opacity: 0.5;
      font-weight: 600;
      transition: all 0.3s ease;
      margin-bottom: 25px;
      text-align: center;
      transition: all 0.3s ease; }
      .event .card .card-body .date span {
        font-size: 24px;
        margin-top: 8px;
        font-weight: 400; }

.events__single-event {
  box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06);
  background-color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column; }
  .events__single-event:hover .event__single-event__image img {
    transform: scale(1.1); }
  .events__single-event__image {
    overflow: hidden; }
    .events__single-event__image img {
      transition: 0.3s;
      padding: 0;
      border-radius: 0; }
  .events__single-event__body {
    padding: 30px 30px 15px;
    flex: 1 1 auto; }
    @media only screen and (max-width: 991px) {
      .events__single-event__body {
        padding: 10px 10px 15px; } }
    @media only screen and (max-width: 767px) {
      .events__single-event__body {
        padding: 20px 20px 15px; } }
    .events__single-event__body h2 a {
      color: #c27b7f; }
      .events__single-event__body h2 a:hover {
        color: #876585; }
  .events__single-event__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eff0f7;
    padding: 15px 30px 30px; }
    @media only screen and (max-width: 991px) {
      .events__single-event__meta {
        padding: 15px 10px 10px; } }
    @media only screen and (max-width: 767px) {
      .events__single-event__meta {
        padding: 15px 20px 20px; } }
    .events__single-event__meta i {
      font-size: 20px;
      color: #c27b7f;
      cursor: pointer; }
    .events__single-event__meta p {
      margin-bottom: 0; }
    .events__single-event__meta a {
      display: flex;
      align-items: center;
      font-weight: 400; }
    .events__single-event__meta ul {
      display: flex;
      align-items: center;
      padding: 0;
      margin: 0; }
      .events__single-event__meta ul li {
        list-style: none; }

.bg-one .card {
  background-color: #ffffff; }

.event_thumb_fallback {
  height: 256px;
  width: 100%; }

.events-slider {
  height: 100%;
  padding: 20px 0; }

.events-sliderv2 {
  height: 100%;
  padding: 20px 0; }

.footer__top {
  border-top-width: 0px;
  border-left-width: 0px;
  border-right-width: 0px; }

.footer__menu {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  display: inline; }
  .footer__menu li {
    display: inline-block; }
    .footer__menu li a {
      margin-left: 10px;
      margin-right: 10px; }
      .footer__menu li a:hover {
        color: #c27b7f; }

.footer__copyright i {
  animation: footerHeart 1s infinite; }

.footer .single-footer ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: start;
  margin: 0;
  padding: 0; }
  .footer .single-footer ul li {
    list-style: none;
    margin-bottom: 10px;
    font-weight: 400; }

.footer .single-footer form button {
  width: 100%; }

.footer .wp-block-group__inner-container p {
  margin-bottom: 5px; }

.single-blog .wp-block-avatar {
  margin-bottom: 15px; }

.single-blog ul,
.single-blog ol {
  padding-left: 16px;
  margin-bottom: 16px; }

.single-blog .gallery-icon {
  margin-bottom: 15px; }

.single-blog .wp-block-archives-dropdown label {
  margin-bottom: 15px; }

.single-blog article label {
  width: 100%;
  margin-bottom: 15px; }

.single-blog article label.screen-reader-text {
  width: 1px; }

.single-blog article ul {
  list-style: disc !important; }
  .single-blog article ul.wp-block-categories-list {
    padding: 0;
    list-style: none !important;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px; }

.single-blog form .wp-block-search__inside-wrapper input {
  margin-bottom: 0; }

.single-blog__para .wp-block-image {
  overflow: auto; }

.single-blog__metainfo {
  margin: 0;
  padding-left: 0 !important;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center; }
  .single-blog__metainfo li {
    list-style: none;
    display: flex;
    align-items: center; }
    .single-blog__metainfo li i {
      margin-right: 5px;
      font-size: 16px;
      color: #c27b7f; }
    .single-blog__metainfo li a {
      color: #2f4858; }
      .single-blog__metainfo li a:hover {
        color: #c27b7f; }
  .single-blog__metainfo .post-categories {
    padding: 0; }
  .single-blog__metainfo .user-name {
    text-transform: capitalize; }

.single-blog__title {
  margin-bottom: 13px; }

.single-blog__para {
  margin-bottom: 25px; }
  .single-blog__para__quote {
    position: relative;
    padding: 35px;
    text-align: left;
    margin: 30px 0;
    background-color: #f5ebe6;
    display: flex;
    align-items: center; }
    .single-blog__para__quote__icon {
      width: 70px;
      height: 100px; }
      .single-blog__para__quote__icon i {
        color: #c27b7f;
        font-size: 68px;
        line-height: 0.8;
        opacity: 0.7; }
    .single-blog__para__quote__text {
      width: calc(100% - 100px);
      margin-left: 30px;
      text-align: center; }
  .single-blog__para ol li {
    padding-left: 3px;
    margin-bottom: 15px; }
  .single-blog__para .content-feature-list {
    margin-top: 15px;
    margin-bottom: 25px;
    padding: 0; }
    .single-blog__para .content-feature-list li {
      list-style: none;
      margin: 0 0 18px;
      position: relative; }
      .single-blog__para .content-feature-list li i {
        color: #c27b7f;
        margin-right: 10px; }

.single-blog__share p {
  margin-bottom: 10px; }

.single-blog__share ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px; }
  .single-blog__share ul li {
    list-style: none; }

.single-blog__share .post-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap; }
  .single-blog__share .post-categories li a {
    border: 1px solid #c27b7f;
    padding: 3px 8px;
    display: block; }
    .single-blog__share .post-categories li a:hover {
      background-color: #c27b7f;
      color: #ffffff; }

.single-blog .comment-respond {
  padding: 24px !important;
  background-color: #f5ebe6; }
  .single-blog .comment-respond .form-submit {
    margin-bottom: 0; }

.single-blog__comment {
  margin-top: 30px; }
  .single-blog__comment__title {
    margin-bottom: 30px; }
    .single-blog__comment__title h4 {
      margin: 0; }
  .single-blog__comment__item {
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    border-radius: 5px;
    box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06); }
    .single-blog__comment__item__content {
      margin-left: 20px; }
  .single-blog__comment .comment-text p {
    margin: 0; }
  .single-blog__comment__form {
    margin-top: 30px;
    padding: 25px; }
  .single-blog__comment ul.comment-list {
    padding: 0 !important; }
    .single-blog__comment ul.comment-list li {
      list-style: none;
      align-items: center;
      gap: 20px; }
      .single-blog__comment ul.comment-list li .user-image {
        width: 80px;
        height: 80px;
        object-fit: cover; }
        .single-blog__comment ul.comment-list li .user-image img {
          width: 100%;
          height: 100%;
          border-radius: 50%; }

.single-blog .blog-comment .user-image img {
  border-radius: 50%; }

.single-blog .blog-comment ul {
  padding: 0 !important; }
  .single-blog .blog-comment ul li {
    list-style: none; }
  .single-blog .blog-comment ul .children {
    padding-left: 25px !important; }
  .single-blog .blog-comment ul .comment-respond {
    padding: 25px;
    background-color: #f5ebe6;
    margin-bottom: 30px; }

.single-blog__category {
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f5ebe6;
  gap: 10px; }
  .single-blog__category ul {
    padding: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center; }
    .single-blog__category ul li {
      list-style-type: none; }
      .single-blog__category ul li a {
        background-color: #c27b7f;
        padding: 3px 10px;
        border-radius: 30px;
        color: #ffffff; }

.comment-info__title {
  margin-bottom: 5px; }
  .comment-info__title strong a {
    font-weight: 700;
    text-transform: capitalize; }

.bg-one .single-blog__para__quote,
.bg-one .single-blog__share,
.bg-one .single-blog__comment__item,
.bg-one .single-blog__comment__form {
  background-color: #ffffff; }

.elementor .single-blog__comment .comment-list .user-image img {
  border-radius: 50%; }

.elementor .single-blog .blog-comment .user-image img {
  border-radius: 50%; }

.related-blog {
  border-top: 1px solid rgba(1, 6, 33, 0.06); }

.single-event__area {
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06);
  background-color: #ffffff; }
  .single-event__area:not(:last-child) {
    margin-bottom: 30px; }
  .single-event__area__image {
    text-align: center;
    margin-bottom: 20px;
    border-radius: 5px; }
  .single-event__area__meta {
    padding: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px; }
    .single-event__area__meta li {
      gap: 8px;
      list-style: none;
      display: flex;
      align-items: center; }
      .single-event__area__meta li i {
        color: #c27b7f; }
  .single-event__area__menu ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    margin-bottom: 10px; }
    .single-event__area__menu ul li {
      list-style: none;
      margin-right: 15px; }

.single-event__sidebar {
  padding: 20px 25px;
  border-radius: 5px;
  box-shadow: 0px 1px 15px 0px rgba(1, 6, 33, 0.06);
  background-color: #ffffff; }
  .single-event__sidebar__details ul {
    margin: 0;
    padding: 0; }
    .single-event__sidebar__details ul li {
      list-style: none;
      display: grid;
      grid-template-columns: 45px auto;
      align-items: center;
      justify-content: start;
      gap: 10px; }
      .single-event__sidebar__details ul li:not(:last-child) {
        margin-bottom: 20px; }
      .single-event__sidebar__details ul li .icon {
        display: flex;
        align-items: center;
        justify-content: center; }
      .single-event__sidebar__details ul li i {
        font-size: 30px;
        color: #c27b7f; }
      .single-event__sidebar__details ul li p {
        font-size: 15px;
        line-height: 1.2;
        margin: 0;
        color: #2f4858; }
  .single-event__sidebar .item-border, .single-event__sidebar h3 {
    position: relative;
    border-bottom: 1px solid #eff0f7;
    padding-bottom: 30px;
    margin-bottom: 30px; }
    .single-event__sidebar .item-border::before, .single-event__sidebar h3::before {
      content: "";
      background: url(../images/sidebar-icon.png) no-repeat #fff center;
      width: 16px;
      height: 16px;
      position: absolute;
      left: 50%;
      margin-left: -20px;
      bottom: -8px;
      padding: 0 20px; }
