@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Jost:ital,wght@0,400;0,700;1,400;1,700&display=swap");
body {
  box-sizing: border-box;
  color: var(--text-dark);
  font-family: "Jost", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

p {
  line-height: 1.5;
  font-size: 20px;
}

strong {
  color: var(--text-secondary);
}

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

a:hover {
  text-decoration: none;
}

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

:root {
  --bg-dark: #222;
  --bg-white: #fff;
  --bg-pink: #FEB7EB;
  --bg-primary: #05a5ca;
  --bg-lightblue: #e6f6fa;
  --bg-secondary: #1d9b5f;
  --bg-lightgray: #F7FCFE;
  --text-dark: #222;
  --text-pink: #FEB7EB;
  --text-primary: #05a5ca;
  --text-secondary: #1d9b5f;
  --text-white: #fff;
  --input-bg: #e6f6fa;
  --input-border: #c7ebf4;
  --animate-duration: 1000ms;
  --animate-delay: 0.9s;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* scrollbar*/
.custom-scrollbar::-webkit-scrollbar {
  -webkit-appearance: none;
}

.custom-scrollbar::-webkit-scrollbar:vertical {
  width: 8px;
}

.custom-scrollbar::-webkit-scrollbar:horizontal {
  height: 8px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
}

/* scrollbar*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 85px;
  padding: 10px 0;
  z-index: 999;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s;
  transform: translateY(0);
  display: flex;
  align-items: center;
  background: var(--bg-primary);
}
header.transparent-header {
  background: transparent;
}
header.hide-nav {
  transform: translateY(-120%) !important;
  -webkit-transform: translateY(-120%) !important;
}
header.sticky-header {
  background: var(--bg-primary);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  min-height: 70px;
}
header.sticky-header .navbar .header-container .navbar-brand img {
  width: 60px;
}
header .navbar {
  width: 100%;
  padding: 0;
}
header .navbar .header-container {
  display: flex;
  gap: 50px;
  width: 100%;
}
header .navbar .header-container .navbar-brand {
  margin: 0;
  padding: 0;
}
header .navbar .header-container .navbar-brand img {
  width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease-in-out;
}
header .navbar .header-container .navigation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
header .navbar .header-container .navigation .main-menu .toggle-nav {
  cursor: pointer;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 2px;
  display: none;
}
@media (max-width: 991.98px) {
  header .navbar .header-container .navigation .main-menu .toggle-nav {
    display: flex;
  }
}
header .navbar .header-container .navigation .main-menu .toggle-nav .togglemenu {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
header .navbar .header-container .navigation .main-menu .toggle-nav .togglemenu .bar {
  transition: all 0.3s ease-in-out;
  position: relative;
  display: block;
  background: var(--bg-white);
  width: 30px;
  height: 3px;
}
header .navbar .header-container .navigation .main-menu .toggle-nav .togglemenu.menu-close .bar:nth-child(1) {
  transition: 250ms;
  transform: rotate(45deg);
  top: 5px;
}
header .navbar .header-container .navigation .main-menu .toggle-nav .togglemenu.menu-close .bar:nth-child(2) {
  opacity: 0;
}
header .navbar .header-container .navigation .main-menu .toggle-nav .togglemenu.menu-close .bar:nth-child(3) {
  transition: 250ms;
  transform: rotate(-45deg);
  bottom: 5px;
}
header .navbar .header-container .navigation .main-menu .navbar-nav {
  gap: 30px;
}
@media (max-width: 1024px) {
  header .navbar .header-container .navigation .main-menu .navbar-nav {
    gap: 20px;
  }
}
header .navbar .header-container .navigation .main-menu .navbar-nav .nav-link {
  color: var(--text-white);
  font-size: 16px;
  padding: 10px 0 !important;
  position: relative;
}
header .navbar .header-container .navigation .main-menu .navbar-nav .nav-link.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}
header .navbar .header-container .navigation .main-menu .navbar-nav .nav-link.dropdown-toggle:after {
  margin-top: 3px;
}
header .navbar .header-container .navigation .main-menu .navbar-nav .nav-link:before {
  content: "";
  position: absolute;
  left: -10px;
  bottom: 0;
  width: 30px;
  height: 3px;
  background: linear-gradient(130deg, #fff, transparent);
  border-radius: 5px;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
header .navbar .header-container .navigation .main-menu .navbar-nav .nav-link:hover:before {
  opacity: 1;
  left: 0;
}
header .navbar .header-container .navigation .main-menu .navbar-nav .dropdown-menu {
  top: 15px;
}
header .navbar .header-container .navigation .icon-menu ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1024px) {
  header .navbar .header-container .navigation .icon-menu ul {
    gap: 20px;
  }
}
header .navbar .header-container .navigation .icon-menu ul a img {
  filter: brightness(100);
}
header .navbar .header-container .navigation .icon-menu ul a:hover img {
  filter: brightness(1);
}
header .navbar .header-container .navigation .icon-menu ul a:hover span {
  color: var(--text-dark);
}
header .navbar .header-container .navigation .icon-menu ul .ThemeBtn {
  background: var(--bg-white);
}
header .navbar .header-container .navigation .icon-menu ul .ThemeBtn span {
  color: var(--text-dark);
}
header .navbar .header-container .navigation .icon-menu ul .ThemeBtn:hover:after {
  background: var(--bg-white);
}
header .navbar .header-container .navigation .icon-menu ul .ThemeBtn:hover:before {
  -webkit-animation: pulse-animation-white 2s infinite;
          animation: pulse-animation-white 2s infinite;
}

.nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
  width: 100%;
  height: 100vh;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.toggle-nav.open + .nav-overlay {
  opacity: 1;
  visibility: visible;
}

.fit-header {
  min-height: 85px;
}
@media (max-width: 991.98px) {
  .fit-header {
    min-height: 70px;
  }
}

/* dropdown */
.dropdown-menu {
  box-shadow: 0px 3px 15px -3px rgba(0, 0, 0, 0.5);
  background: var(--bg-white);
  border-radius: 4px;
  overflow: hidden;
  padding: 0;
  -webkit-animation-name: dropdownAnimation;
          animation-name: dropdownAnimation;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.dropdown-menu .dropdown-item:hover {
  background: var(--bg-lightgray);
  color: var(--text-dark);
}
.dropdown-menu .dropdown-item:focus {
  background: var(--bg-lightgray);
}
.dropdown-menu .dropdown-item:active {
  background: var(--bg-lightgray);
}
.dropdown-menu .title {
  padding: 12px 15px;
  background: var(--bg-primary);
  font-size: 16px;
  border-bottom: 1px solid #efefef;
  letter-spacing: 1px;
  color: var(--text-white);
}
.dropdown-menu li a {
  padding: 12px 15px;
  font-size: 14px;
  border-bottom: 1px solid #efefef;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.dropdown-menu li:last-child a {
  border-bottom: 0;
}

.ProductDropdown-menuList .dropdown-menu {
  min-width: 300px;
  max-width: 400px;
  margin: 0;
  border: 0;
}
@media (max-width: 991.98px) {
  .ProductDropdown-menuList .dropdown-menu {
    margin-top: 10px;
    -webkit-animation-name: none;
            animation-name: none;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}
.ProductDropdown-menuList .product-thumbnail {
  width: 50px;
  height: 50px;
}
.ProductDropdown-menuList .product-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.ProductDropdown-menuList .product-name {
  width: calc(100% - 65px);
}
.ProductDropdown-menuList .product-name h6 {
  margin: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.ProductDropdown-menuList .product-name p {
  margin: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  opacity: 0.8;
}

/* dropdown */
.ThemeBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 40px;
  padding: 8px 20px;
  background: var(--bg-primary);
  border: 0;
  border-radius: 50px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  gap: 7px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
.ThemeBtn:after {
  content: "";
  position: absolute;
  width: 100%;
  background: var(--bg-secondary);
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  transform: scale(0);
}
.ThemeBtn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.ThemeBtn span {
  position: relative;
  z-index: 2;
  color: var(--text-white);
  transition: all 0.3s ease-in-out;
}
.ThemeBtn:hover:after {
  transform: scale(1);
}
.ThemeBtn:hover:before {
  -webkit-animation: pulse-animation 2s infinite;
          animation: pulse-animation 2s infinite;
}
.ThemeBtn:hover span {
  color: var(--text-white);
}

.roundIcon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: #FFEAF9;
  border-radius: 100%;
}
.roundIcon i {
  color: var(--text-dark);
}

@-webkit-keyframes dropdownAnimation {
  from {
    opacity: 0;
    transform: translate3d(0, -10px, 0);
  }
  to {
    opacity: 1;
    transform: none;
    transform: translate3d(0, 38px, 0);
  }
}

@keyframes dropdownAnimation {
  from {
    opacity: 0;
    transform: translate3d(0, -10px, 0);
  }
  to {
    opacity: 1;
    transform: none;
    transform: translate3d(0, 38px, 0);
  }
}
.updown-mover {
  -webkit-animation: mover 1s infinite alternate;
          animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.pulsate {
  -webkit-animation: pulsate 2s infinite;
          animation: pulsate 2s infinite;
}

@-webkit-keyframes pulsate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulsate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation: pulse-animation 1s infinite;
          animation: pulse-animation 1s infinite;
}

@-webkit-keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(5, 166, 202, 0.7);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(5, 166, 202, 0);
  }
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(5, 166, 202, 0.7);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(5, 166, 202, 0);
  }
}
.pulse-pink {
  -webkit-animation: pulse-animation-white 1s infinite;
          animation: pulse-animation-white 1s infinite;
}

@-webkit-keyframes pulse-animation-white {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.9);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
}

@keyframes pulse-animation-white {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.9);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
}
.rotate-animation {
  -webkit-animation: rotate-animation 25s infinite linear;
          animation: rotate-animation 25s infinite linear;
}

@-webkit-keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.pendulum-animation {
  -webkit-animation: pendulum-animation 2.5s ease-in-out infinite;
          animation: pendulum-animation 2.5s ease-in-out infinite;
}

@-webkit-keyframes pendulum-animation {
  0%, 100% {
    transform: rotate(45deg);
  }
  50% {
    transform: rotate(-45deg);
  }
}

@keyframes pendulum-animation {
  0%, 100% {
    transform: rotate(45deg);
  }
  50% {
    transform: rotate(-45deg);
  }
}
.pendulumShade {
  -webkit-animation: pendulumShade 1.25s ease-in-out alternate infinite;
          animation: pendulumShade 1.25s ease-in-out alternate infinite;
}

@-webkit-keyframes pendulumShade {
  0% {
    transform: translateX(-100px) scale(1.4, 0.5);
    filter: blur(20px);
  }
  50% {
    filter: blur(3px);
  }
  100% {
    transform: translateX(100px) scale(1.4, 0.5);
    filter: blur(20px);
  }
}

@keyframes pendulumShade {
  0% {
    transform: translateX(-100px) scale(1.4, 0.5);
    filter: blur(20px);
  }
  50% {
    filter: blur(3px);
  }
  100% {
    transform: translateX(100px) scale(1.4, 0.5);
    filter: blur(20px);
  }
}
.custom-space {
  padding: 70px 0;
}
@media (max-width: 991.98px) {
  .custom-space {
    padding: 40px 0;
  }
}

.imgBox {
  line-height: 0;
}
.imgBox img {
  width: 100%;
}

.headTitle h2 {
  font-size: 40px;
  font-weight: 500;
  position: relative;
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .headTitle h2 {
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
  .headTitle h2 {
    font-size: 28px;
  }
}
@media (max-width: 320px) {
  .headTitle h2 {
    font-size: 24px;
  }
}
.headTitle h3 {
  font-size: 32px;
}
@media (max-width: 991.98px) {
  .headTitle h3 {
    font-size: 28px;
  }
}
.headTitle h5 {
  font-size: 28px;
}
@media (max-width: 991.98px) {
  .headTitle h5 {
    font-size: 24px;
  }
}
@media (max-width: 767.98px) {
  .headTitle h5 {
    font-size: 20px;
  }
}
.headTitle.headTitle-center {
  text-align: center;
}
.headTitle.headTitle-center .title-divider {
  justify-content: center;
}

.title-divider {
  display: flex;
  gap: 5px;
  margin: 20px 0;
}
.title-divider span {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--bg-primary);
  border-radius: 100%;
}
.title-divider span:last-child {
  width: 70px;
  background: linear-gradient(130deg, var(--bg-primary), transparent);
  border-radius: 5px;
}

.bg-lightgray {
  background: var(--bg-lightgray);
}

.product-box {
  display: block;
  padding: 25px 15px;
  background: var(--bg-lightblue);
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin: 15px;
}
.product-box .product-thumb {
  margin-bottom: 20px;
}
.product-box .product-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  -o-object-fit: contain;
  object-fit: cover;
  height: 210px;
  margin-bottom: 10px;
  border-radius: 25px;
  border: 1px solid #1f9a524d;
}
.product-box .product-details h4 {
  font-size: 20px;
  font-weight: bold;
  color: var(--text-dark);
}
.product-box .product-details p {
  margin: 0;
  color: var(--text-dark);
}

.swiper-button-next,
.swiper-button-prev {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  border-radius: 100%;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 12px;
  color: var(--text-white);
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

.form-control {
  min-height: 40px;
  padding: 5px 20px;
  border-radius: 30px;
  /* border-color: var(--input-border); */
  border-color: #0EA3C8;
  background: var(--input-bg);
  color: #222;
  transition: all 0.3s ease-in-out;
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--bg-primary);
  background: var(--input-bg);
}
.form-control::-moz-placeholder {
  opacity: 0.6;
}
.form-control:-ms-input-placeholder {
  opacity: 0.6;
}
.form-control::placeholder {
  opacity: 0.6;
}

textarea.form-control {
  border-radius: 10px;
}

footer {
  padding-top: 60px;
  /* background: var(--bg-dark); */
  background: #0000004f;
  position: relative;
  overflow: hidden;
}
footer .container,
footer .container-fluid {
  position: relative;
  z-index: 1;
}
footer .Footer-AboutBrands {
  padding-right: 50px;
}
footer .Footer-AboutBrands .navbar-brand {
  display: flex;
  margin: 0 0 15px;
}
footer .Footer-AboutBrands .navbar-brand img {
  width: 200px;
}
footer p {
  color: var(--text-white);
  font-weight: 300;
  letter-spacing: 0.5px;
}
footer .Footer-Col p:last-child {
  margin-bottom: 0;
}
footer .Footer-Col h5 {
  font-size: 16px;
  color: #0EA3C8;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 20px;
  letter-spacing: 1px;
}
footer .Footer-Col ul li {
  margin-bottom: 10px;
}
footer .Footer-Col ul li:last-child {
  margin-bottom: 0;
}
footer .Footer-Col ul li a {
  color: var(--text-white);
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 20px;
  font-weight: 300;
}
footer .Footer-Col ul li a:after {
  content: "east";
  font-size: 14px;
  font-family: "Material Icons";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
footer .Footer-Col ul li a:hover {
  color: var(--text-primary);
}
footer .Footer-Col ul li a:hover:after {
  right: 0;
  opacity: 1;
}
footer .SubFooter {
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
  border-top: 1px solid #3e3d3a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .SubFooter p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-white);
  margin: 0;
  letter-spacing: 1px;
}
footer .social-icons a {
  background: #0EA3C8;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.social-icons a {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-primary);
  transition: all 0.3s ease-in-out;
}
.social-icons a img {
  width: 16px;
  height: 16px;
  filter: invert(1);
  transition: all 0.3s ease-in-out;
}
.social-icons a:hover {
  border-radius: 100%;
  background: var(--bg-secondary);
}

#scrollTotop {
  position: fixed;
  bottom: 25px;
  right: -50px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: var(--bg-secondary);
  line-height: 40px;
  z-index: 99;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  border: 0;
  outline: none;
}
#scrollTotop.showscroll {
  right: 25px;
}
#scrollTotop .ScrollArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#scrollTotop .ScrollArrow i {
  font-size: 20px;
  color: var(--text-white);
}

.py-100 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.hide {
  opacity: 0;
}

.animateCount {
  -webkit-animation-iteration-count: 3;
          animation-iteration-count: 3;
}

.newsletter-input {
  position: relative;
  display: flex;
  width: 100%;
}
@media (max-width: 320px) {
  .newsletter-input {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
}
.newsletter-input .form-control {
  border-radius: 30px;
  min-height: 50px;
  padding-right: 120px;
}
@media (max-width: 320px) {
  .newsletter-input .form-control {
    padding-right: 20px;
  }
}
.newsletter-input .ThemeBtn {
  border-radius: 30px;
  border: 1px solid var(--bg-primary);
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 375px) {
  .newsletter-input .ThemeBtn {
    font-size: 13px;
  }
}
@media (max-width: 320px) {
  .newsletter-input .ThemeBtn {
    position: unset;
    transform: translateY(0);
  }
}

.page-banner {
  position: relative;
  height: 250px;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
  background: var(--bg-secondary);
}
.page-banner .waves-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.page-banner .container {
  position: relative;
}
.page-banner .headTitle h2 {
  color: var(--text-white);
}
.page-banner .headTitle .title-divider span:first-child {
  background: var(--text-white);
}
.page-banner .headTitle .title-divider span:nth-child(2) {
  background: var(--text-white);
}

.flat-select {
  -webkit-appearance: inherit;
     -moz-appearance: inherit;
          appearance: inherit;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  min-height: auto;
  height: auto;
  margin: 0;
  padding: 0;
  background: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 20px;
}
.flat-select option {
  font-size: 14px;
}
.flat-select:after {
  display: none;
}
.flat-select:before {
  content: "";
  border-color: var(--bg-dark) transparent transparent transparent;
  border-style: solid;
  border-width: 6px 6px 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  margin-top: 1px;
}
.flat-select.open:before {
  transform: translateY(-50%) rotate(-180deg);
}/*# sourceMappingURL=global.css.map */


/*** 10th jan Code */

.modal-backdrop {
    --bs-backdrop-opacity: 0.9;
}
.modal-content {
    background: #e6f6fa;
}
#btn-alpha {
    background: var(--bg-dark);
}

/* CUSTOM CSS START FROM HERE */
.masterImage img{
  border-radius: 20px;
}
.themeSecondColor{
  color: #1F9A52 !important;
}
.themeFirstColor{
  color: #05A5CA !important;
}
.contact-banner .parallax-bg {
  background-image: url('https://developmentalphawizz.com/html//relationship-revive/img/product-img/cardBackground2.png') !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.footerSection{
  background-image: url('https://developmentalphawizz.com/html//relationship-revive/img/footerBG.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}
.issuePointDiv{
  display: flex;
  margin-top: 25px;
  flex-direction: column;
  gap: 20px;
  
}
.issuePointDiv li{
  display: flex;
  align-items: center;
  gap: 12px;
}
.issuePointDiv li span {
  overflow: hidden;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 6px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  display: flex  ;
      align-items: center;
      justify-content: center;
  background-color: #fff;
  border: 1px solid #05a5ca82;
}
.issuePointDiv li span img{
  width: 100%;
  height: auto;
  object-fit: contain;
}
.issueContainer{
  display: flex;
  align-items: start;
}
.issueImgDiv{
  
}
.issueImgDiv img{
  width: 100%;
  height: 95%;
  object-fit: contain;
}
.issuePointDiv li p {
  color: #1F9A52;
  font-size: 17px;
  font-weight: 500;
}
.issueHeadDiv{
  
}
.issueHeadDiv h2{
  margin: 0;
  color: #1F9A52;
  font-size: 40px;
    font-weight: 500;
  text-transform: capitalize; 
  
}
.issueHeadDiv h6 {
  margin: 0;
  color: #1F9A52;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
}
.issueSection{
  margin: 100px 0;
}
.issueHeadDiv div p{
  margin: 0;
  color: #717171;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
.issueBottom{
  margin-top: 30px;
  text-align: center;

}

.issueBottom p {
  color: #05A5CA !important;
  font-size: 17px !important;
}
.issueBottom button {
  border: 1px solid #05A5CA;
  padding: 10px 40px;
  color: #fff;
  border-radius: 8px;
  background-color: #05A5CA;
  transition: .3s ease all;
  margin-top: 15px;
  font-size: 15px;
  font-weight: 500;
}
.issueBottom button:hover{
  background-color: transparent;
  color: #000;
}
.deprassionImg img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.depressionHead{
  
}
.depressionHead h2 {
  margin: 0;
  font-size: 35px;
  font-weight: 700;
}
.depressionHead h2 span{
  color: #1D9B5F;
}
.depressionHead p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #737373;
  margin-top: 12px;
}
.depressionContainer{
  display: flex;
  align-items: start;
}
.importantRole{
  background-image: url('https://developmentalphawizz.com/html/relationship-revive/img/importantRole.jpg');
  background-position: center;
  background-size: cover;
  height: 500px;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  background-repeat: no-repeat;
}
.overlayImportant{
  flex-direction: column;
  display: flex;
  background-color: #00000091;
  padding: 30px;
  text-align: center;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: end;

}
.importantRole h2 {
  margin: 0;
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
}
.importantRole p {
  color: #adadad;
  margin: 0;
  margin-top: 15px;
}
.deprassionSection{
  margin: 100px 0;
}
.depressionBtn{
  text-align: center;
  margin-top: 30px;
}
.depressionBtn button {
  color: #0EA3C8;
  border: none;
  font-size: 20px;
  font-weight: 500;
}

.relationshipSection{
  
}
.relationshipSection h2{
  margin-bottom: 20px;
}
.relationshipSection h2 span{
  color: #1F9A52;
}
.relationCardDiv{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.relationCard{
  border: 1px solid #bbbbbb;
  border-radius: 15px;
  height: 100%;
  transition: .8s ease all;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: auto;
}



.relationOverlay{
  padding: 20px;
  height: 100%;
  padding-bottom: 12px;
  min-height: 275px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(0,0,0,1) 100%);
}
.relationOverlay h3 {
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  margin: 0;
}
.relationOverlay p {
  color: #cfcfcf;
  font-size: 13px;
  margin: 0;
  line-height: 1;
}
/* .relationCard:hover{
  transform: scale(150%);
} */

.missionContainer {

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
  height: 525px;
  border-radius: 20px;
  border: 1px solid #e7e7e7;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.missionSection h4 {
  margin: 0;
  text-align: center;
  color: #05A5CA;
  font-size: 35px;
  font-weight: 700;
}
.missionSection p {
  margin: 0;
  font-size: 18px;
  margin-top: 15px;
  font-weight: 500;
  color: #4d4d4d;
}
.mssionImpPara img{
  width: 45px;
  height: auto;
  object-fit: contain;
}
.mssionImpPara {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  width: max-content;
  align-items: center;
}
.mssionImpPara p{
  margin: 0;
  background-color: greenyellow;
}
.bioImg img {
  width: 85%;
  height: 100%;
  object-fit: contain;
}
.bioImg{
  display: flex;
  justify-content: center;
  align-items: end;
  overflow: hidden;
}
.bioContainer{
  display: flex;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
  border-radius: 20px;
  border: 1px solid #e7e7e7;
  padding: 40px;
  padding-bottom: 0;
}
.bioSection{
  margin: 100px 0;
}
.bioHead h4{
  font-size: 35px;
  font-weight: 700;
  margin: 0;
  color: #05A5CA;
}
.bioHead p {
  font-size: 17px;
  margin-top: 15px;
  font-weight: 500;
  color: #313131;
}


.impactPointDiv li{
  display: flex    ;
  align-items: center;
  margin-top: 25px;
  gap: 12px;
}
.impactPointDiv li span{
  overflow: hidden;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 6px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #05a5ca82;
}
.impactPointDiv li span img{
  width: 100%;
  height: auto;
  object-fit: contain;
}
.impactPointDiv li div{
  width: 90%;
}
.impactPointDiv h6{
  margin: 0;
  color: #1F9A52;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
}
.impactPointDiv div p{
  margin: 0;
  color: #717171;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
.impactImg img{
  width: 100%;
  height: 95%;
  object-fit: contain;
}
.impactContainer{
  display: flex;
      align-items: start;
}
.ImpactHeading{
  margin: 0;
  color: #1F9A52;
  font-size: 40px;
  font-weight: 500;
  text-transform: capitalize;
}

.impactSection{
  margin: 100px 0;
}
.highlightPoint {
  background-color: greenyellow;
  width: max-content;
}
.widthAuto{
  width: auto;
}
.issuePointDiv li div {
  width: 90%;
}

@media (min-width: 576px) {
  .modal-dialog.discoverModal, .modal-dialog.getRelief, .modal-dialog.connectUs {
      max-width: 700px;
      margin-right: auto;
      margin-left: auto;
      top: 30%;
  }
}
.discoverLink {
  margin-top: 15px;
}
.discoverDiv span{
  font-weight: 600;
}
.playImg {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
  justify-content: center;
}
.playImg img{
  width: 150px;
  height: auto;
  object-fit: contain;
}
.modal-dialog.discoverModal .modal-header, .modal-dialog.connectUs .modal-header, .modal-dialog.getRelief .modal-header {
  background: linear-gradient(90deg, rgba(31,154,81,1) 0%, rgba(14,163,199,1) 100%);
  color: #fff;
}
.aboutListContainer {
  margin-top: 25px;
}
.aboutListContainer h6{
  color: #0EA3C8;
  text-transform: capitalize;
}
.headTitle h2 {
  font-size: 32px;
}
.unlockListUL li {
  list-style: circle;
}
.unlockList {
  color: #1D9B5F;
  font-size: 16px;
  margin-top: 20px;
  font-weight: 500;
}
.unlockList span {
  color: #05A5CA;
}
.customName {
  text-align: end;
  font-size: 20px;
  display: flex;
  line-height: 1.3;
  flex-direction: column;
}
.customName span {
  font-weight: 600;
}

.reviewCard {
  /* width: calc(33% - 20px); */
  border-radius: 15px;
  height: 100%;
  border: 1px solid #1d9b5f5e;
  padding: 20px;
}
.reviewHead {
  display: flex;
  align-items: center;
  gap: 20px;
}
.reviewHead img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.reviewHead div{
  
}
.reviewHead div h6 {
  margin: 0;
  font-size: 20px;
}
.reviewHead div span {
  display: flex;
  align-items: center;
}
.reviewHead div span img {
  width: 20px;
  height: auto;
  object-fit: contain;
}
.reviewPara {
  margin-top: 25px;
}
.quoteImg {
  opacity: .3;
}
.testimonialSection{
  margin: 100px 0;
}
.testimonialSection h3{
  font-size: 30px;
}
.testimonialSection h3 span{
  color: #05A5CA;
}


.awardSection{
  margin: 100px 0;
}
.awardImg{
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}
.awardSection h3{
  font-size: 30px;
  margin-bottom: 25px;
  font-weight: 600;
}
.awardSection h3 span{
  color: #05A5CA;
}
.podcastDiv div{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.podcastDiv h3{
  font-size: 30px;
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: 600;
}
.podcastDiv h3 span{
  color: #05A5CA;
}
.widthFull{
  height: 100%;
}
.reviewSliderWrapper{
  height: 400px;
}
.serviceDiv{
  display: flex;
  flex-wrap: wrap;
  margin-top: 25px;
  gap: 10px;
}

.serviceCardSection {
  margin: 0px 0 100px 0;
}
.serviceCardSection h3 {
  font-size: 30px;
}
.serviceCardSection h3 span{
  color: #05A5CA;
}

.serviceCard{
  width: calc(25% - 10px);
  transition: .3s ease all;
  padding: 20px;
  cursor: pointer;
  border: 1px solid #0fa3c37a;
  border-radius: 15px;
}
.serviceCard:hover{
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.serviceHead{
  display: flex;
  align-items: center;
  gap: 15px;
}
.serviceHead img{
  width: 30px;
  height: auto;
  object-fit: contain;
}
.serviceHead h6 {
  margin: 0;
  font-size: 20px;
}
.serviceCard p{
  font-size: 15px;
  margin: 0;
  margin-top: 10px;
}
.serviceCardSection h4 {
  margin-top: 35px;
  text-align: center;
}
.serviceCardSection h4 span{
  color: #1F9A52;
}
.serviceCardSection h5 {
  text-align: center;
  margin-top: 40px;
}
.podcastDiv div iframe{
    width: 560px;
}

@media only screen and (max-width: 1400px) {
  .awardImg{
    gap: 0;
  }
  .awardImg img {
    height: 400px;
  }
  .bioImg img {
    width: 95%;
  }
  .reviewSliderWrapper {
    height: 450px;
}
}

@media only screen and (max-width: 1025px) {
  .awardImg img {
    height: 330px;
}
.issueHeadDiv h2 {
  font-size: 35px;
}
.issueContainer {
  align-items: start;
}
.headTitle h2 {
  font-size: 23px;
}
.headTitle p {
  font-size: 17px;
}
.issueContainer {
  align-items: start;
}
.importantRole h2 {
  font-size: 30px;
}
.importantRole p {
  font-size: 15px;
}
}