/*! Normalise CSS !*/
@import url(normalize.css);
/*!Root Css!*/
@import url(root.css);
/*! Google Fonts !*/
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Marhey:wght@300..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/*! Google Fonts !*/
* {
  margin: 0rem;
  padding: 0rem;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0rem;
  padding: 0rem;
}

body {
  margin: 0rem;
  padding: 0rem;
  color: var(--Grey, #444);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  /* 150% */
  background: #fff;
  overflow-x: hidden;
}

p {
  color: var(--Grey, #444);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  /* 150% */
  margin-bottom: 20px;
}
p:last-child {
  margin: 0;
}

h1 {
  padding: 0;
  margin: 0;
  color: var(--Black, #1d1d1d);
  color: #000;
  /* H1 */
  font-family: "Cormorant Garamond";
  font-size: clamp(1.563rem, 1.438vw + 1.275rem, 3rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 12px;
}

h2 {
  padding: 0;
  margin: 0;
  color: var(--Dark, #000);
  /* H2 */
  font-family: "Cormorant Garamond";
  font-size: clamp(1.563rem, 0.938vw + 1.375rem, 2.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

h3 {
  padding: 0;
  margin: 0;
  color: #000;
  /* H4 */
  font-family: "Cormorant Garamond";
  font-size: clamp(1.375rem, 0.625vw + 1.25rem, 2rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

h4 {
  padding: 0;
  margin: 0;
  color: var(--Black, #000);
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
  /* 32.992px */
}

h5 {
  margin: 0;
  color: var(--Black, #000);
  font-family: "Poppins", serif;
  font-size: clamp(1.125rem, 0.375vw + 1.05rem, 1.5rem);
  font-style: normal;
  font-weight: 600;
  line-height: clamp(1.625rem, 0.625vw + 1.5rem, 2.25rem);
  /* 150% */
  margin-bottom: 16px;
}

h6 {
  margin: 0;
  padding: 0;
  color: #ffb423;
  font-family: Marhey;
  font-size: clamp(1.125rem, 0.375vw + 1.05rem, 1.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-object-fit: cover;
}

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

a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.btn {
  position: relative;
  display: inline-flex;
  color: #000;
  text-align: center;
  font-family: "Open Sans";
  font-size: clamp(0.875rem, 0.125vw + 0.85rem, 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: clamp(0.5rem, 0.313vw + 0.438rem, 0.813rem) clamp(0.875rem, 0.375vw + 0.8rem, 1.25rem);
  border-radius: 4px;
  background: #FFB423;
}
.btn:focus, .btn:active:focus {
  outline: 0;
  box-shadow: none;
  background: black;
  color: #FFB423;
  border: 1px solid var(--Golden, #FFB423);
}
.btn:hover {
  outline: 0;
  box-shadow: none;
  background: black;
  color: #ffc658;
  border: 1px solid var(--Golden, #ffc658);
}
.btn.bgwhite {
  border-radius: 4px;
  border: 1px solid #000;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  color: #000;
}
.btn.bgwhite:hover {
  background-color: #fff;
  color: #000;
}

input:not([type=submit])::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  opacity: 0.5;
}

input:not([type=submit])::placeholder,
textarea::placeholder,
select::placeholder {
  opacity: 0.5;
}

input:not([type=submit]),
select {
  display: block;
  width: 100%;
  padding: 8px 20px;
  border-radius: 8px;
  background: #f1f1f1;
  color: #000;
  font-family: "Poppins", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: none;
  outline: none;
  box-shadow: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}

select {
  -webkit-appearance: none;
  /* Removes default appearance in Safari */
  -moz-appearance: none;
  /* Removes default appearance in Firefox */
  appearance: none;
  /* Standard */
  outline: none;
  /* Removes the focus outline */
  box-shadow: none;
  /* Removes the box shadow */
  padding: 16px 10px;
  /* Add padding for better UI */
  background-color: #fff;
  /* Background color */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><path d="M0 0l5 6 5-6z" fill="%23666"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
}

textarea {
  height: 208px;
  resize: none;
  overflow: hidden;
  display: block;
  width: 100%;
  color: #000;
  font-family: "Poppins", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 8px 20px;
  border: none;
  border-radius: 12px;
  background: #f1f1f1;
  margin-bottom: 16px;
  outline: none;
  box-shadow: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}

textarea:focus {
  outline: none;
  box-shadow: none;
  border: none;
  background: #f1f1f1;
  box-shadow: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--Black, #000);
  font-family: "Poppins", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: url(../images/downarrow.svg) no-repeat right center;
}

select:focus {
  border: 1px solid #cccccc;
  outline: none;
  background-color: #fff;
}

select option {
  color: #1d1d1d;
  font-size: 14px;
  font-weight: 400;
}

label {
  color: #0d0d0d;
  font-family: "Poppins", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 12px;
  display: block;
}

.checkbox {
  display: inline-block;
}
.checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.checkbox label {
  position: relative;
  cursor: pointer;
  color: #090914;
  font-family: "Poppins", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 8px;
  text-align: left;
}
.checkbox label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #bbc4cd;
  padding: 11px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-right: 8px;
  border-radius: 4px;
  top: 0;
}
.checkbox label a {
  text-decoration: none;
  color: var(--accent-color-2, #ed7005);
}
.checkbox input:checked + label::before {
  background: #fff;
}
.checkbox input:checked + label:after {
  position: absolute;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  left: 6px;
  font-size: 13px;
  top: 1px;
  color: #121212;
}

.mainhd {
  padding: 15px 0;
  background: #1c7aba;
  z-index: 9;
  position: relative;
}
.mainhd .nav-top {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1;
  overflow: hidden;
}
.mainhd .nav-top ul {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  margin-left: auto;
  width: -moz-max-content;
  width: max-content;
  z-index: 1;
  padding: 0.4375rem 0 0.5rem 45px;
}
.mainhd .nav-top ul:before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 100vw;
  /* Ensure the width spans the entire viewport */
  height: 100%;
  /* Adjust the height of the slant */
  background-color: #fff;
  /* Matches the white background */
  z-index: -1;
  /* Push it behind the content */
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 35px 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 35px 100%);
  /* Creates the slant */
}
.mainhd .nav-top ul li {
  color: #000;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.mainhd .nav-top ul li img {
  width: 18px;
}
.mainhd .nav-top ul li a {
  color: #000;
}
.mainhd .headerrow {
  position: relative;
  display: flex;
  justify-content: space-between;
  overflow-y: visible;
}
.mainhd .headerrow .logo {
  max-width: 115.739px;
  z-index: 1;
}
.mainhd .headerrow .logo img {
  width: 100%;
}
.mainhd .headerrow .navigation {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}
.mainhd .headerrow .navigation .nav-btm {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 12px;
}
.mainhd .headerrow .navigation ul li.menu-item-has-children:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
  position: absolute;
  top: 19px;
  right: -25px;
}
.mainhd .headerrow .contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.mainhd .headerrow .contact .flagsearch {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mainhd .headerrow .contact .flagsearch img {
  width: 30px;
}
.mainhd .headerrow .contact .flagsearch select {
  border: none;
  padding-right: 20px;
}
.mainhd button {
  display: none;
}

.banner {
  position: relative;
}
.banner img {
  width: 100%;
  height: clamp(18.75rem, 28.75vw + 13rem, 47.5rem);
}
.banner .bannertxt {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.banner .bannertxt .mxw667 {
  max-width: 667px;
}
.banner .bannertxt .mxw667 h6 {
  color: white;
  margin-bottom: 12px;
}
.banner .bannertxt .mxw667 h1 {
  max-width: 628px;
}
.banner .bannertxt .mxw667 p {
  color: #000;
}
.banner .bannertxt .mxw667 .btn-row {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.banner.innerbanner .bannertxt {
  align-items: flex-start;
  justify-content: flex-start;
  top: 0 !important;
  align-content: flex-start;
  padding: 4% 0 0 0;
}
.banner.innerbanner img {
  width: 100%;
  height: clamp(15.625rem, 4.313vw + 14.762rem, 19.938rem);
  -o-object-position: right;
     object-position: right;
}
.banner.innerbanner h1 {
  color: #fff;
  margin-bottom: 12px;
}
.banner.innerbanner ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.banner.innerbanner ul li {
  position: relative;
  color: #fff;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.banner.innerbanner ul li:after {
  content: url(../images/nav-arrow.svg);
  margin: 0 8px 0;
  display: inline-block;
  position: relative;
  top: 1px;
}
.banner.innerbanner ul li:last-child:after {
  display: none;
}
.banner.innerbanner ul li a {
  color: #fff;
}
.banner.innerbanner ul li a:hover {
  color: #ffb423;
}

.sectiondefaultpadding {
  padding: clamp(1.875rem, 4.375vw + 1rem, 6.25rem) 0;
}

.hope .headingrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  margin-bottom: 40px;
}
.hope .headingrow h2 {
  margin-bottom: 0;
}
.hope .videocontainer {
  border-radius: 16px;
  overflow: hidden;
  height: 492px;
  position: relative;
  margin-bottom: 40px;
}
.hope .videocontainer video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hope .videocontainer .watchnow {
  width: 92px;
  height: 92px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1c7aba;
  position: absolute;
  bottom: 22px;
  right: 22px;
  border-radius: 50%;
  padding: 5px 10px;
  text-align: center;
  color: #fff;
  text-align: center;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.threepods .threebx .img {
  border-radius: 12px;
  margin-bottom: 30px;
  overflow: hidden;
  height: 300px;
}
.threepods .threebx .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s;
  margin: 0;
}
.threepods .threebx:hover .img img {
  scale: 1.1;
}
.threepods .threebx:hover .buy-row .wpcbn-btn {
  background: #FFB423;
  color: #000;
}
.threepods .threebx ul {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.threepods .threebx ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--Dark, #000);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.threepods .threebx ul li img {
  width: 18px;
  margin-bottom: 0;
  border-radius: 0;
}
.threepods .threebx p {
  color: var(--Grey, #444);
  margin-bottom: 16px;
}
.threepods .threebx a {
  color: #1c7aba;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  transition: all 0.4s;
}
.threepods .threebx a img {
  margin-left: 12px;
  width: 28px;
  margin-bottom: 0 !important;
}
.threepods .threebx .buy-row .wpcbn-btn {
  border-radius: 4px;
  background: #F1F9FF;
  color: var(--Secondary, #1C7ABA);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  padding: 6px 16px;
}

.about p {
  margin-bottom: 30px;
}
.about.reverse {
  padding-top: 0;
}
.about.reverse .row {
  flex-direction: row-reverse;
}
.about.reverse .abttxt h5 {
  color: var(--Grey, #444);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  /* 27px */
  margin-bottom: 20px;
}

.upcoming {
  padding-top: 0;
}
.upcoming .headingrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  margin-bottom: 40px;
}
.upcoming .headingrow h2 {
  margin-bottom: 0;
}
.upcoming.up-edit {
  padding-top: clamp(1.875rem, 4.375vw + 1rem, 6.25rem);
  position: relative;
}
.upcoming.up-edit .stky {
  position: sticky;
  top: 0;
  right: 0;
}
.upcoming.up-edit .stky .searchbox {
  margin-bottom: 30px;
}
.upcoming.up-edit .stky .searchbox input[type=search] {
  width: 100%;
  background: url(../images/search-icon.svg) no-repeat right 29px center;
  background-size: 20px;
  padding: 20px 29px;
  border-radius: 6px;
  border: 1px solid #dedede;
  color: #000;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.upcoming.up-edit .stky .calender-outer {
  border-radius: 8px;
  background: #fff;
  box-shadow: -2px -2px 4px 0px rgba(0, 0, 0, 0.12), 2px 4px 4px 0px rgba(0, 0, 0, 0.12);
  padding: 28px 29px 38px 29px;
}
.upcoming.up-edit .flatpickr-calendar {
  width: 100%;
}
.upcoming.up-edit .flatpickr-calendar {
  width: 100%;
  border: none;
  box-shadow: none;
}
.upcoming.up-edit .flatpickr-rContainer {
  display: block;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
}
.upcoming.up-edit .dayContainer,
.upcoming.up-edit .flatpickr-days {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}
.upcoming.up-edit .flatpickr-current-month .flatpickr-monthDropdown-months {
  color: var(--Grey, #444);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.upcoming.up-edit .flatpickr-months .flatpickr-month {
  margin-bottom: 43px;
}
.upcoming.up-edit .flatpickr-day.inRange {
  background: #ffeece;
  box-shadow: -5px 0 0 #ffeece, 5px 0 0 #ffeece;
  border: none;
  color: #000 !important;
  text-align: center;
  font-family: "Open Sans";
  font-size: 14px !important;
  font-style: normal;
  font-weight: 400 !important;
}
.upcoming.up-edit .flatpickr-day.selected,
.upcoming.up-edit .flatpickr-day.startRange,
.upcoming.up-edit .flatpickr-day.selected,
.upcoming.up-edit .flatpickr-day.endRange {
  background: #ffeece;
  border: none;
  color: #000 !important;
  text-align: center;
  font-family: "Open Sans";
  font-size: 14px !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
  text-transform: capitalize;
}
.upcoming.up-edit .rangeMode .flatpickr-day {
  color: var(--Grey, #444);
  text-align: center;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 14%;
}
.upcoming.up-edit .rangeMode .flatpickr-day.prevMonthDay, .upcoming.up-edit .rangeMode .flatpickr-day.nextMonthDay {
  opacity: 0.3;
}
.upcoming.up-edit .flatpickr-months .flatpickr-prev-month.flatpickr-prev-month {
  right: 0;
}
.upcoming.up-edit .flatpickr-current-month {
  width: 75%;
  left: 0;
}
.upcoming.up-edit .flatpickr-months .flatpickr-prev-month.flatpickr-prev-month {
  right: 30px;
  width: 40px;
  left: auto;
}
.upcoming.up-edit .threebx h3 {
  margin-bottom: 15px;
}
.upcoming.up-edit .threepods .row {
  gap: 40px 0;
}
.upcoming.up-edit .category {
  padding: 28px 29px;
  margin-bottom: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: -2px -2px 4px 0px rgba(0, 0, 0, 0.12), 2px 4px 4px 0px rgba(0, 0, 0, 0.12);
}
.upcoming.up-edit .category h4 {
  color: var(--Grey, #444);
  font-family: "Open Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}
.upcoming.up-edit .category ul li {
  color: var(--Grey, #444);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
  padding-left: 24px;
  position: relative;
}
.upcoming.up-edit .category ul li:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #444;
  left: 7px;
  top: 9px;
  border-radius: 30px;
}
.upcoming.up-edit .category ul li:last-child {
  margin-bottom: 0;
}
.upcoming.up-edit .category ul li a {
  color: var(--Grey, #444);
}
.upcoming.up-edit .category ul li a:hover {
  color: #1c7aba;
}

.explore {
  background: #f4ffff;
  padding-bottom: 20px;
}
.explore .headingrow {
  margin-bottom: 40px;
}
.explore .headingrow h2 {
  margin-bottom: 0;
  max-width: 530px;
}
.explore h6 {
  margin-bottom: 12px;
}
.explore h2 {
  margin-bottom: 0;
}
.explore.explore-edit {
  background-color: transparent;
  padding-top: 0;
  padding-bottom: 100px;
}
.explore.explore-edit .five-pods {
  gap: 30px;
}
.explore.explore-edit .five-pods .w306,
.explore.explore-edit .five-pods .w642 {
  max-width: calc(33.3333333333% - 20px);
}
.explore.explore-edit .five-pods .midbx {
  padding-left: 0;
  padding-right: 0;
}
.explore .five-pods {
  display: flex;
  align-items: center;
  gap: 30px;
  align-self: stretch;
}
.explore .five-pods .w306 {
  max-width: 306px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-direction: column;
}
.explore .five-pods .w642 {
  max-width: 642px;
}
.explore .five-pods .txtbx {
  padding: 60px 16px;
  border-radius: 12px;
  background: #d8f6ff;
  text-align: center;
}
.explore .five-pods .txtbx .icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 20px;
  border-radius: 50%;
}
.explore .five-pods .txtbx .icon img {
  width: 36px;
  height: 36px;
}
.explore .five-pods .txtbx h3 {
  margin-bottom: 12px;
}
.explore .five-pods .txtbx p {
  margin-bottom: 16px;
}
.explore .five-pods .txtbx .btn {
  padding: 6px 20px;
}
.explore .five-pods .midbx {
  padding: 40px 15px 0;
  border-radius: 12px;
  background: #d8f6ff;
  overflow: hidden;
}
@media (min-width: 768px) {
  .explore .five-pods .midbx {
    height: 100%;
  }
  .explore .five-pods .midbx img {
    height: 100%;
  }
}

.join-us .container {
  padding-bottom: 60px;
}
.join-us .imgbx {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.join-us .imgbx img {
  width: 306px;
  border-radius: 16px;
}
.join-us .imgbx img.img1 {
  transform: rotate(-7.923deg);
  flex-shrink: 0;
  position: absolute;
  top: 53px;
  left: 0;
}
.join-us .imgbx img.img3 {
  transform: rotate(7.923deg);
  flex-shrink: 0;
  position: absolute;
  top: 53px;
  right: 0;
}
.join-us .txtbx {
  text-align: center;
  margin-top: 74px;
}
.join-us .txtbx img {
  width: 152px;
  height: 80px;
  margin-bottom: 34px;
}
.join-us .txtbx p {
  color: var(--Grey, #444);
}
.join-us .col-md-4:nth-child(3) .imgbx {
  justify-content: flex-start;
}

.deity {
  overflow: hidden;
}
.deity .container {
  position: relative;
}
.deity .deityimg {
  max-width: 581px;
  position: absolute;
  right: -70px;
  top: -100px;
  bottom: 0;
}
.deity .deityimg img {
  width: 100%;
}
.deity h2 {
  margin-bottom: 20px;
}
.deity p {
  color: black;
  margin-bottom: 30px;
}

.donation .txt p {
  color: var(--Grey, #444);
}
.donation .txt .btn {
  margin-top: 34px;
}
.donation h2 {
  margin-bottom: 34px;
}

.mainft {
  padding-top: clamp(1.875rem, 1.75vw + 1.525rem, 3.625rem);
  padding-bottom: 21px;
  background: #f8ffff;
}
.mainft .emailcontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid #1c7aba;
}
.mainft .emailcontainer h2 {
  margin-bottom: 0;
}
.mainft .emailcontainer .emailaddress {
  max-width: 462px;
  width: 100%;
  position: relative;
}
.mainft .emailcontainer .emailaddress input[type=email] {
  border-radius: 4px;
  background: #1c7aba;
  color: #fff;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  /* 214.286% */
  padding: 15px 130px 15px 19px;
}
.mainft .emailcontainer .emailaddress input[type=email]::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.mainft .emailcontainer .emailaddress input[type=email]::placeholder {
  color: #fff;
  opacity: 1;
}
.mainft .emailcontainer .emailaddress input[type=submit] {
  position: absolute;
  top: 5px;
  right: 5px;
}
.mainft .ftbx .ftlogo {
  max-width: 84px;
  margin-bottom: 23px;
}
.mainft .ftbx .ftlogo img {
  width: 100%;
}
.mainft .ftbx .ftlogo + p {
  font-weight: 300;
  margin-bottom: 23px;
}
.mainft .ftbx .socials {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}
.mainft .ftbx .socials li {
  margin-bottom: 0;
}
.mainft .ftbx .socials li a {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  border: 1px solid #1c7aba;
  border-radius: 30px;
  color: #1c7aba;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mainft .ftbx .socials li a:hover {
  background-color: #1c7aba;
  color: #fff;
}
.mainft .ftbx p {
  color: var(--Grey, #444);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 187.5% */
  margin-bottom: 15px;
}
.mainft .ftbx p:last-child {
  margin-bottom: 0;
}
.mainft .ftbx h5 {
  color: #1c7aba;
  font-family: "Cormorant Garamond";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  /* 109.091% */
}
.mainft .ftbx ul li {
  color: var(--Grey, #444);
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 15px;
}
.mainft .ftbx ul li:last-child {
  margin-bottom: 0;
}
.mainft .ftbx ul li a {
  color: var(--Grey, #444);
  display: flex;
  align-items: center;
  gap: 12px;
}
.mainft .ftbx ul li a:hover {
  color: #000;
}
.mainft .m69 {
  margin: clamp(1.875rem, 2.438vw + 1.387rem, 4.313rem) 0;
}
.mainft form p {
  margin-bottom: 0;
}
.mainft form .wpcf7-response-output {
  margin: 10px 0 !important;
}

.afterft {
  border-top: 1px solid #1c7aba;
  padding-top: 12px;
}
.afterft p {
  margin-bottom: 0;
  color: var(--Grey, #444);
  text-align: center;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.afterft p a {
  color: #444;
}

.recent-news .threepods .row {
  gap: 40px 0;
}
.recent-news .threepods .threebx ul li img {
  margin-bottom: 0;
}
.recent-news .headingrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  margin-bottom: 40px;
}
.recent-news .headingrow h2 {
  margin-bottom: 0;
}
.recent-news ul li span {
  color: var(--Dark, #000);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-details {
  padding: clamp(1.875rem, 1.875vw + 1.5rem, 3.75rem) 0;
}
.news-details h2 {
  margin-bottom: 12px;
}
.news-details h3 {
  margin-bottom: 16px;
}
.news-details .postdetails {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.news-details .postdetails li {
  color: var(--Dark, #000);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  display: flex;
  gap: 8px;
  align-items: center;
}
.news-details .postdetails li img {
  width: 22px;
}
.news-details p {
  margin-bottom: clamp(1.25rem, 1.25vw + 1rem, 2.5rem);
  color: var(--Grey, #444);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
}
.news-details p:last-child {
  margin-bottom: 0;
}
.news-details .detailspost {
  margin-bottom: clamp(1.25rem, 1.25vw + 1rem, 2.5rem);
}
.news-details .detailspost .bigimg {
  height: 400px;
  border-radius: 0;
}
.news-details .detailspost .smallimg {
  height: 185px;
  border-radius: 0;
}
.news-details .detailspost .smallimg:first-child {
  margin-bottom: 30px;
}
.news-details ol {
  padding-left: 18px;
  margin-bottom: clamp(1.25rem, 1.25vw + 1rem, 2.5rem);
  margin-top: 32px;
}
.news-details ol li {
  margin-bottom: 20px;
}
.news-details ol li p {
  margin-bottom: 0;
}
.news-details ol li::marker {
  color: #000;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  /* 144.444% */
}
.news-details ol li:last-child {
  margin-bottom: 0;
}
.news-details ol li span {
  color: var(--Grey, #444);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  /* 144.444% */
  display: block;
  margin-bottom: 8px;
}

.deity-darshan .headingrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  margin-bottom: 40px;
}
.deity-darshan .headingrow h2 {
  margin-bottom: 0;
}
.deity-darshan .captured .small-img {
  height: 293px;
  border-radius: 12px;
  width: 100%;
}
.deity-darshan .captured .small-img:first-child {
  margin-bottom: 24px;
}
.deity-darshan .captured .big-img {
  height: 610px;
  border-radius: 12px;
  width: 100%;
}

.class-details .class-det-outer h2 {
  margin-bottom: 20px;
}
.class-details .class-det-outer ul.class-det-inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 30px;
}
.class-details .class-det-outer ul.class-det-inner li {
  margin-bottom: 0;
}
.class-details .class-det-outer ul.class-det-inner li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.class-details .class-det-outer ul.class-det-inner li .icon {
  border-radius: 30px;
  background: #d4fffd;
  display: flex;
  width: 42px;
  height: 42px;
  padding: 9px;
  justify-content: center;
  align-items: center;
}
.class-details .class-det-outer ul.class-det-inner li .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  gap: 3px;
}
.class-details .class-det-outer ul.class-det-inner li .text span {
  color: var(--Grey, #444);
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 18px */
  display: block;
}
.class-details .class-det-outer ul.class-det-inner li .text p {
  margin-bottom: 0;
  color: var(--Dark, #000);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 24px */
}
.class-details .class-det-outer img.bigimg {
  border-radius: 12px;
  margin-bottom: 30px;
}
.class-details .class-det-outer h5 {
  color: var(--Grey, #444);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  /* 27px */
  margin-bottom: 16px;
}
.class-details .class-det-outer p {
  margin-bottom: 30px;
}
.class-details .class-det-outer ul li {
  margin-bottom: 16px;
}
.class-details .class-det-outer ul li:last-child {
  margin-bottom: 0;
}
.class-details .class-det-outer ul li:last-child span {
  display: block;
  margin-top: 8px;
}
.class-details .class-det-outer ul li h5 {
  margin-bottom: 0;
}
.class-details .class-det-outer ul li span {
  color: var(--Grey, #444);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-left: 8px;
}
.class-details .fee {
  padding: 28px 29px;
  margin-bottom: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: -2px -2px 4px 0px rgba(0, 0, 0, 0.12), 2px 4px 4px 0px rgba(0, 0, 0, 0.12);
  position: sticky;
  top: 0;
  right: 0;
}
.class-details .fee h6 {
  color: var(--Grey, #444);
  leading-trim: both;
  text-edge: cap;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 18px */
  margin-bottom: 8px;
}
.class-details .fee h5 {
  color: var(--Secondary, #1c7aba);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
  margin-bottom: 28px;
}
.class-details .fee .btn {
  margin-bottom: 30px;
  display: block;
}
.class-details .fee ul li {
  margin-bottom: 12px;
  color: var(--Grey, #444);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
}
.class-details .fee ul li:last-child {
  margin-bottom: 0;
}
.class-details .fee ul li span {
  color: var(--Grey, #444);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.class-details .fee ul li a {
  color: var(--Grey, #444) !important;
}

.buy-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.buy-row span {
  display: block;
  color: var(--Dark, #000);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  transition: all 0.4s;
}
.buy-row a {
  color: var(--Secondary, #1c7aba);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  padding: 6px 16px;
  border-radius: 4px;
  background: #f1f9ff;
}

.class-details.class-det-edit h2 {
  margin-bottom: revert;
}
.class-details.class-det-edit ol {
  padding-left: 18px;
}
.class-details.class-det-edit ol li {
  color: var(--Grey, #444);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.class-details.class-det-edit .fee ul li:last-child a {
  text-decoration: none;
}
.class-details.class-det-edit ul li a {
  color: var(--Secondary, #1c7aba);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.class-details.class-det-edit ul li:last-child span a {
  text-decoration: underline;
}
.class-details.class-det-edit ul li:last-child span {
  display: inline-block;
}

.reverse.contact-edit {
  padding-top: clamp(1.875rem, 4.375vw + 1rem, 6.25rem);
}
.reverse.contact-edit ol {
  counter-reset: section;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.reverse.contact-edit ol li {
  color: var(--Grey, #444);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  /* 27px */
  margin-bottom: 20px;
  position: relative;
  padding-left: 36px;
}
.reverse.contact-edit ol li:last-child {
  margin-bottom: 0;
}
.reverse.contact-edit ol li::before {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  counter-increment: section;
  content: counter(section);
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-color: #ffb423;
  color: var(--Dark, #000);
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  /* 21px */
}

.contact-us {
  text-align: center;
}
.contact-us .contact-outer {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.contact-us .contact-outer .contact-container {
  width: calc(33.3333333333% - 20px);
}
.contact-us .contact-outer .contact-container.textarea, .contact-us .contact-outer .contact-container.submit {
  width: 100%;
}
.contact-us .contact-outer input:not([type=submit]):not([type=checkbox]):not([type=radio]) {
  border-radius: 4px;
  border: 1px solid var(--Accent, #ffb423);
  background-color: transparent;
  padding: 9px 12px;
  width: 100%;
  margin-bottom: 0;
  color: var(--Grey, #444);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.contact-us .contact-outer input:not([type=submit]):not([type=checkbox]):not([type=radio])::-moz-placeholder {
  color: #000;
  opacity: 1;
}
.contact-us .contact-outer input:not([type=submit]):not([type=checkbox]):not([type=radio])::placeholder {
  color: #000;
  opacity: 1;
}
.contact-us .contact-outer textarea {
  border-radius: 4px;
  border: 1px solid var(--Accent, #ffb423);
  background-color: transparent;
  padding: 9px 12px;
  width: 100%;
  height: 223px;
  margin-bottom: 0;
  color: var(--Grey, #444);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.contact-us .contact-outer textarea::-moz-placeholder {
  color: #000;
  opacity: 1;
}
.contact-us .contact-outer textarea::placeholder {
  color: #000;
  opacity: 1;
}

.deity.sectiondefaultpadding {
  position: relative;
  overflow: hidden;
}
.deity.sectiondefaultpadding .deityimg {
  max-width: 573px;
  position: absolute;
  right: 72px;
  top: inherit;
  bottom: -96px;
}
.deity.sectiondefaultpadding .deityimg .img1 {
  animation: rotation 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  opacity: 0.4;
  position: relative;
  bottom: -32px;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-359deg);
  }
}
.deity.sectiondefaultpadding .deityimg .img2 {
  width: 397px;
  position: absolute;
  bottom: 88px;
  left: 51px;
}

.recent-news.sectiondefaultpadding {
  padding: 0 0 100px;
}

.upcoming.up-edit.sectiondefaultpadding .searchbox {
  margin-bottom: 30px;
}
.upcoming.up-edit.sectiondefaultpadding .searchbox input[type=search] {
  width: 100%;
  background: url(../images/search-icon.svg) no-repeat right 29px center;
  background-size: 20px;
  padding: 20px 58px 20px 29px;
  border-radius: 6px;
  border: 1px solid #dedede;
  color: #000;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.upcoming.up-edit.sectiondefaultpadding .searchbox input[type=search]::-moz-placeholder {
  color: #000;
  opacity: 1;
}
.upcoming.up-edit.sectiondefaultpadding .searchbox input[type=search]::placeholder {
  color: #000;
  opacity: 1;
}
.upcoming.up-edit.sectiondefaultpadding .searchbox span {
  display: none;
}
.upcoming.up-edit.sectiondefaultpadding .stky {
  position: sticky;
  top: 32px;
  right: 0;
}
.upcoming.up-edit.sectiondefaultpadding .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.upcoming.up-edit.sectiondefaultpadding .page-numbers li .page-numbers {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f1f9ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  gap: 0;
  font-family: "Open Sans";
  font-size: 18px;
  line-height: 100%;
  font-weight: 600;
  color: #000;
}
.upcoming.up-edit.sectiondefaultpadding .page-numbers li .page-numbers.current {
  background-color: #1c7aba;
  color: #fff;
}

.upcoming.up-edit.sectiondefaultpadding .threebx:hover .buy-row span {
  color: #1c7aba;
}
.upcoming.up-edit.sectiondefaultpadding .threebx:hover .buy-row a {
  background: #FFB423;
  color: #000;
}

.vlntr.sectiondefaultpadding .fee {
  padding: 30px;
}
.vlntr.sectiondefaultpadding .fee p {
  margin-bottom: 24px;
}
.vlntr.sectiondefaultpadding .fee .logo {
  width: 193px;
  margin: 0 auto;
  display: table;
}
.vlntr.sectiondefaultpadding .class-det-outer ul li span a {
  text-decoration: none;
}
.vlntr.sectiondefaultpadding .class-det-outer ol {
  margin-bottom: 25px;
}
.vlntr.sectiondefaultpadding .class-det-outer ol li {
  color: var(--Grey, #444);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.modal.join_nw .modal-dialog {
  max-width: 700px;
}
.modal.join_nw .modal-body {
  padding: 50px;
}
.modal.join_nw .btn-close {
  position: absolute;
  right: 30px;
  top: 30px;
  background: none;
  opacity: 1;
  width: 30px;
  height: 30px;
  padding: 0;
}
.modal.join_nw h2 {
  text-align: center;
  margin-bottom: 12px;
}
.modal.join_nw p {
  text-align: center;
  margin-bottom: 0;
}
.modal.join_nw .logo {
  width: 129px;
  height: 124px;
  margin: 0 auto 40px;
}
.modal.join_nw .logo img {
  width: 100%;
  height: 100%;
}
.modal.join_nw .form_dv {
  margin-top: 40px;
}
.modal.join_nw .form_dv form .inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}
.modal.join_nw .form_dv form .inputs:last-child {
  margin-bottom: 12px;
}
.modal.join_nw .form_dv form .inputs .input {
  width: 48.6%;
}
.modal.join_nw .form_dv form .inputs .input input:not([type=submit]),
.modal.join_nw .form_dv form .inputs .input select,
.modal.join_nw .form_dv form .inputs .input textarea {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--Accent, #FFB423);
  padding: 10px;
  background: #fff;
  color: #000;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
}
.modal.join_nw .form_dv form .inputs .input input:not([type=submit])::-moz-placeholder, .modal.join_nw .form_dv form .inputs .input select::-moz-placeholder, .modal.join_nw .form_dv form .inputs .input textarea::-moz-placeholder {
  color: #444;
}
.modal.join_nw .form_dv form .inputs .input input:not([type=submit])::placeholder,
.modal.join_nw .form_dv form .inputs .input select::placeholder,
.modal.join_nw .form_dv form .inputs .input textarea::placeholder {
  color: #444;
}
.modal.join_nw .form_dv form .inputs .input select:has(option[disabled]:checked) {
  color: #a29c9c;
}
.modal.join_nw .form_dv form .inputs .input select {
  background-image: url(../images/select-arrw.png);
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 17px;
  padding: 10px 32px 10px 10px;
}
.modal.join_nw .form_dv form .inputs .input textarea {
  min-height: 155px;
}
.modal.join_nw .form_dv form .inputs .input input[type=submit] {
  width: 100%;
}

.wpcf7-spinner {
  display: none !important;
}

.prdct_dtls.about {
  padding: clamp(1.875rem, 4.375vw + 1rem, 6.25rem) 0;
}
.prdct_dtls.about .sectionrelated {
  margin-top: 60px;
}
.prdct_dtls.about .abttxt h2 {
  margin-bottom: 10px;
}
.prdct_dtls.about .abttxt p.price {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 18px;
}
.prdct_dtls.about .abttxt .woocommerce-product-details__short-description p {
  font-family: "Open Sans";
  color: #000;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 20px;
}
.prdct_dtls.about .abttxt form .quantity {
  margin-bottom: 20px;
  width: 50px;
  height: 50px;
}
.prdct_dtls.about .abttxt form .quantity input[type=number] {
  padding: 0 5px;
  height: 100%;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prdct_dtls.about .abttxt form .quantity input[type=number]::-webkit-outer-spin-button,
.prdct_dtls.about .abttxt form .quantity input[type=number]::-webkit-inner-spin-button {
  opacity: 1;
  display: block;
}
.prdct_dtls.about .abttxt form .single_add_to_cart_button {
  margin-right: 20px;
  position: relative;
  display: inline-flex;
  color: #000;
  text-align: center;
  font-family: "Open Sans";
  font-size: clamp(0.875rem, 0.125vw + 0.85rem, 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: clamp(0.5rem, 0.313vw + 0.438rem, 0.813rem) clamp(0.875rem, 0.375vw + 0.8rem, 1.25rem);
  border-radius: 4px;
  background: #FFB423;
  border: 1px solid #ffb423;
}
.prdct_dtls.about .abttxt form .single_add_to_cart_button:hover {
  background-color: #000;
  border: 1px solid #FFB423;
  color: #FFB423;
}
.prdct_dtls.about .abttxt form .wpcbn-btn-single {
  color: #1c7aba;
  font-family: "Open Sans";
  font-size: clamp(0.875rem, 0.125vw + 0.85rem, 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  transition: all 0.4s;
  background: #f1f9ff;
  border: none;
  padding: clamp(0.5rem, 0.313vw + 0.438rem, 0.813rem) clamp(0.875rem, 0.375vw + 0.8rem, 1.25rem);
  margin-right: 0;
}
.prdct_dtls.about .abttxt form .single_add_to_cart_button,
.prdct_dtls.about .abttxt form .wpcbn-btn-single {
  height: 48px;
  max-height: 48px;
}
.prdct_dtls.about .abttxt .product_meta {
  margin-top: 20px;
}
.prdct_dtls.about .abttxt .product_meta .posted_in {
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 600;
  color: #000;
}
.prdct_dtls.about .abttxt .product_meta .posted_in a {
  font-weight: 500;
  color: #000;
}

.about.woocommercepagecontent .wc-block-components-main table {
  font-family: "Open Sans";
}
.about.woocommercepagecontent .wc-block-components-main table td {
  font-weight: 600;
}
.about.woocommercepagecontent .wc-block-components-main table td p {
  font-weight: 500;
}
.about.woocommercepagecontent .wc-block-components-main table .wc-block-components-product-name {
  font-family: "Cormorant Garamond";
  color: #000;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.about.woocommercepagecontent .wc-block-components-main table .wc-block-cart-item__remove-link {
  border: 1px solid #444 !important;
  text-decoration: none !important;
  padding: 2px 4px !important;
  line-height: 100% !important;
}
.about.woocommercepagecontent .wc-block-components-sidebar .wc-block-components-button {
  color: #000;
  text-align: center;
  font-family: "Open Sans";
  font-size: clamp(0.875rem, 0.125vw + 0.85rem, 1rem);
  font-weight: 600;
  line-height: normal;
  padding: clamp(0.5rem, 0.313vw + 0.438rem, 0.813rem) clamp(0.875rem, 0.375vw + 0.8rem, 1.25rem);
  border-radius: 4px;
  background: #FFB423;
}
.about.woocommercepagecontent .wp-block-woocommerce-empty-cart-block .with-empty-cart-icon {
  font-family: "Cormorant Garamond";
  font-size: 26px;
}
.about.woocommercepagecontent .wp-block-woocommerce-empty-cart-block .with-empty-cart-icon::before {
  width: 70px;
  height: 70px;
  -webkit-mask-size: 70px;
          mask-size: 70px;
  margin: 0 auto 15px;
}
.about.woocommercepagecontent .wp-block-woocommerce-empty-cart-block hr {
  display: none;
}
.about.woocommercepagecontent .wp-block-woocommerce-empty-cart-block ul.wc-block-grid__products .add_to_cart_button {
  position: relative;
  display: inline-flex;
  color: #000;
  text-align: center;
  font-family: "Open Sans";
  font-size: clamp(0.875rem, 0.125vw + 0.85rem, 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 9px 16px;
  border-radius: 4px;
  background: #FFB423;
}
.about.woocommercepagecontent .wp-block-woocommerce-empty-cart-block ul.wc-block-grid__products .wc-block-grid__product-title {
  font-family: "Cormorant Garamond";
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1c7aba;
}
.about.woocommercepagecontent .wp-block-woocommerce-empty-cart-block ul.wc-block-grid__products .wc-block-grid__product-price {
  margin-bottom: 5px;
}
.about.woocommercepagecontent .wp-block-woocommerce-empty-cart-block ul.wc-block-grid__products .wc-block-grid__product-price .amount {
  font-family: "Open Sans";
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0;
}
.about.woocommercepagecontent .col2-set h2 {
  font-family: "Cormorant Garamond";
}
.about.woocommercepagecontent .col2-set .woocommerce-form .woocommerce-LostPassword {
  margin-bottom: 0;
}
.about.woocommercepagecontent .col2-set .woocommerce-form .form-row label {
  font-family: "Open Sans";
}
.about.woocommercepagecontent .col2-set .woocommerce-form .form-row input:not([type=submit]) {
  padding: 15px 12px;
}
.about.woocommercepagecontent .col2-set .woocommerce-form .form-row .woocommerce-form__label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.about.woocommercepagecontent .col2-set .woocommerce-form .form-row input[type=checkbox] {
  padding: 0;
  border: 1px solid #444;
  width: 20px;
  height: 20px;
  border-radius: 0;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  accent-color: #ffb423;
}
.about.woocommercepagecontent .col2-set .woocommerce-form .form-row button[type=submit] {
  background: #ffb423;
  color: #000;
  font-size: 16px;
}
.about.woocommercepagecontent .wc-block-checkout__login-prompt {
  line-height: 100%;
  border: 1px solid #444;
  padding: 5px 6px;
  font-size: 14px;
}

.postid-393 .woocommerce-notices-wrapper {
  padding: 50px 50px 0;
}
.postid-393 .woocommerce-notices-wrapper:empty {
  display: none;
}
.postid-393 .woocommerce-notices-wrapper .woocommerce-message {
  border-top-color: #1c7aba;
}
.postid-393 .woocommerce-notices-wrapper .woocommerce-message .button {
  color: #1c7aba;
  font-family: "Open Sans";
  font-size: clamp(0.875rem, 0.125vw + 0.85rem, 1rem);
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.4s;
  background: #f1f9ff;
  border: none;
  padding: 5px 10px;
}

.woocommerce-checkout .wc-block-components-main form p {
  margin-bottom: 14px;
}
.woocommerce-checkout .wc-block-components-main form .wc-block-components-checkbox input[type=checkbox] {
  padding: 0;
  width: 20px;
  height: 20px;
}
.woocommerce-checkout .wc-block-components-main form .wc-block-components-checkbox svg {
  top: 3px;
  left: 5px;
  margin: 0;
  width: 1.1em;
  height: 1.1em;
}
.woocommerce-checkout .wc-block-components-main form .wc-block-components-checkout-place-order-button {
  color: #000;
  text-align: center;
  font-family: "Open Sans";
  font-size: clamp(0.875rem, 0.125vw + 0.85rem, 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: clamp(0.5rem, 0.313vw + 0.438rem, 0.813rem) clamp(0.875rem, 0.375vw + 0.8rem, 1.25rem);
  border-radius: 4px;
  background: #FFB423;
  border: 1px solid #ffb423;
}
.woocommerce-checkout .wc-block-components-main form .wc-block-components-checkout-place-order-button:hover {
  background: #000;
  color: #ffb423;
  border: 1px solid #ffb423;
}
.woocommerce-checkout .wc-block-components-main form .wc-block-components-checkout-return-to-cart-button {
  padding: 7px 5px 7px 28px;
  border: 1px solid #d4d4d4;
  font-size: 15px;
}

.woocommerce-checkout .about.woocommercepagecontent {
  padding: 0;
}

.woocommerce-account .woocommercepagecontent.about .woocommerce {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.woocommerce-account .woocommercepagecontent.about .woocommerce::before, .woocommerce-account .woocommercepagecontent.about .woocommerce::after {
  display: none;
}
.woocommerce-account .woocommercepagecontent.about .woocommerce .woocommerce-MyAccount-navigation {
  width: 33%;
  box-shadow: -2px -2px 4px 0px rgba(0, 0, 0, 0.12), 2px 4px 4px 0px rgba(0, 0, 0, 0.12);
  float: none;
  border-radius: 5px;
  overflow: hidden;
}
.woocommerce-account .woocommercepagecontent.about .woocommerce .woocommerce-MyAccount-navigation ul li a {
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  display: block;
  padding: 10px 15px;
  border-bottom: 1px solid #1c7aba;
}
.woocommerce-account .woocommercepagecontent.about .woocommerce .woocommerce-MyAccount-navigation ul li.is-active a {
  background-color: #1c7aba;
  color: #fff;
  border-bottom: 1px solid #FFB423;
}
.woocommerce-account .woocommercepagecontent.about .woocommerce .woocommerce-MyAccount-content {
  width: 60%;
  box-shadow: -2px -2px 4px 0px rgba(0, 0, 0, 0.12), 2px 4px 4px 0px rgba(0, 0, 0, 0.12);
  padding: 15px;
  float: none;
  border-radius: 5px;
  overflow: hidden;
}
.woocommerce-account .woocommercepagecontent.about .woocommerce .woocommerce-MyAccount-content .addresses {
  display: flex;
  gap: 20px;
}
.woocommerce-account .woocommercepagecontent.about .woocommerce .woocommerce-MyAccount-content .addresses::before, .woocommerce-account .woocommercepagecontent.about .woocommerce .woocommerce-MyAccount-content .addresses::after {
  display: none;
}
.woocommerce-account .woocommercepagecontent.about .woocommerce .woocommerce-MyAccount-content .addresses .woocommerce-Address {
  width: 48%;
}
.woocommerce-account .woocommercepagecontent.about .woocommerce .woocommerce-MyAccount-content .addresses .woocommerce-Address header::before {
  display: none;
}
.woocommerce-account .woocommercepagecontent.about .woocommerce .woocommerce-MyAccount-content .addresses .woocommerce-Address header h2 {
  font-size: 25px;
  margin-bottom: 15px;
  line-height: normal;
}
.woocommerce-account .woocommercepagecontent.about .woocommerce .woocommerce-MyAccount-content .addresses .woocommerce-Address header .edit {
  float: none;
  margin-bottom: 14px;
  display: block;
}
.woocommerce-account .woocommercepagecontent.about .woocommerce .woocommerce-MyAccount-content form label {
  font-family: "Open Sans";
  margin-bottom: 5px;
}
.woocommerce-account .woocommercepagecontent.about .woocommerce .woocommerce-MyAccount-content form input:not([type=submit]),
.woocommerce-account .woocommercepagecontent.about .woocommerce .woocommerce-MyAccount-content form select {
  padding: 10px 12px;
  font-family: "Open Sans";
  font-size: 15px;
  line-height: normal;
}
.woocommerce-account .woocommercepagecontent.about .woocommerce .woocommerce-MyAccount-content form fieldset {
  padding: 0;
  margin-top: 30px;
}

.page-id-24 .about .wpsd-wrapper-content form input:not([type=submit]),
.page-id-24 .about .wpsd-wrapper-content form select {
  display: block;
  width: 100%;
  padding: 15px 20px;
  border-radius: 8px;
  background: #f1f1f1 !important;
  color: #000;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: none;
  outline: none;
  box-shadow: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.page-id-24 .about .wpsd-wrapper-content form input[type=submit] {
  color: #000;
  text-align: center;
  font-family: "Open Sans";
  font-size: clamp(0.875rem, 0.125vw + 0.85rem, 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: clamp(0.5rem, 0.313vw + 0.438rem, 0.813rem) clamp(0.875rem, 0.375vw + 0.8rem, 1.25rem);
  border-radius: 4px;
  background: #FFB423;
}
.page-id-24 .about .wpsd-wrapper-content form label {
  font-family: "Open Sans";
}
.page-id-24 .about .wpsd-wrapper-content form #wpsd_donate_amount li {
  margin: 0;
  padding: 0 !important;
  box-shadow: none !important;
  overflow: hidden;
}
.page-id-24 .about .wpsd-wrapper-content form #wpsd_donate_amount li .form-group #wpsd_donate_other_amount {
  border-radius: 0;
  padding: 5px;
}
.page-id-24 .about .wpsd-wrapper-content form #wpsd_donate_amount li .form-group #wpsd_donate_other_amount:focus {
  border: none !important;
}

.page-id-302 .woocommercepagecontent .wp-block-woocommerce-checkout {
  padding-top: 60px;
}
.page-id-302 .woocommercepagecontent .wp-block-woocommerce-checkout .wc-block-components-form .wc-block-checkout__order-notes.wc-block-components-checkout-step {
  margin-bottom: 20px !important;
}
.page-id-302 .woocommercepagecontent .wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-checkout-step {
  margin: 0 0 20px;
}
.page-id-302 .woocommercepagecontent .wp-block-woocommerce-checkout form .wc-block-components-radio-control input[type=radio] {
  width: 25px;
  height: 25px;
  padding: 0;
}
.page-id-302 .woocommercepagecontent .wp-block-woocommerce-checkout form .wc-block-components-checkbox__label {
  font-family: "Open Sans";
}
.page-id-302 .woocommercepagecontent .wp-block-woocommerce-checkout form .wc-block-checkout__terms.wc-block-checkout__terms--with-separator {
  padding-top: 20px;
  margin-bottom: 20px;
}
.page-id-302 .woocommercepagecontent .wp-block-woocommerce-checkout form .wc-block-components-address-card__edit {
  padding: 2px 5px;
  border: 1px solid #444;
  line-height: 100%;
}

.woocommerce-order-received.woocommerce-checkout .woocommercepagecontent.about {
  padding: 60px 0;
}/*# sourceMappingURL=style.css.map */