:root {
  --primary-color: #020d19
  --secondary-color: #f8f8f8;
  /* --accent-color: #ec662a; */
   --accent-color: #393b88;
  --white-color: #ffffff;
  --divider-color: #020d1914;
  --dark-divider-color: #ffffff1a;
  --error-color: rgb(230, 87, 87);
  --default-font: "Inter", serif;
  --accent-font: "Onest", serif;
}
* {
  font-display: swap;
}
body {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1em;
  background-color: var(--white-color);
}
::-webkit-scrollbar-track {
  background-color: var(--secondary-color);
  border-left: 1px solid var(--secondary-color);
}
::-webkit-scrollbar {
  width: 7px;
  background-color: var(--secondary-color);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-color);
}
::selection {
  color: var(--primary-color);
  background-color: var(--secondary-color);
  filter: invert(1);
}
p {
  line-height: 1.8em;
  margin-bottom: 1.5em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2em;
  font-family: var(--accent-font);
  color: var(--primary-color);
}
figure {
  margin: 0;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  outline: 0;
}
a:focus {
  text-decoration: none;
  outline: 0;
}
body,
html {
  width: 100%;
  overflow-x: clip;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}
.image-anime {
  position: relative;
  overflow: hidden;
}
.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.image-anime:hover:after {
  height: 250%;
  transition: all 0.6s linear;
  background-color: transparent;
}
.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}
.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row > * {
  padding-right: 15px;
  padding-left: 15px;
}
.btn-default {
  position: relative;
  display: inline-block;
  background: var(--accent-color);
  color: var(--white-color);
  font-family: var(--accent-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  border: none;
  padding: 20px 54px 20px 24px;
  border-radius: 3px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  z-index: 0;
}
.btn-default:hover {
  background: 0 0;
  color: var(--white-color);
}
.btn-default::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url(../images/arrow-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: translate(-24px, -50%);
  transition: all 0.4s ease-in-out;
}
.btn-default:hover::before {
  transform: translate(-21px, -50%);
}
.btn-default::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.btn-default:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}
.readmore-btn {
  position: relative;
  color: var(--accent-color);
  font-family: var(--accent-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8em;
  text-transform: capitalize;
  display: inline-block;
  padding-right: 40px;
  transition: all 0.4s ease-in-out;
}
.readmore-btn::before {
  content: "\f061";
  position: absolute;
  right: 0;
  top: 50%;
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  line-height: normal;
  color: var(--white-color);
  width: 30px;
  height: 30px;
  background-color: var(--accent-color);
  background-position: center center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-3px, -50%);
  transition: all 0.3s ease-in-out;
}
.readmore-btn:hover {
  color: var(--primary-color);
}
.readmore-btn:hover::before {
  background-color: var(--primary-color);
  transform: translate(0, -50%);
}
.cb-cursor:before {
  background: var(--accent-color);
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999999999999999999999999999;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading,
.loading-container {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}
.loading-container {
  margin: 40px auto;
}
.loading {
  border: 1px solid transparent;
  border-color: transparent var(--accent-color) transparent var(--accent-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}
.loading-container .loading,
.loading-container:hover .loading {
  transition: all 0.5s ease-in-out;
}
#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}
@keyframes rotate-loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.section-row {
  margin-bottom: 60px;
}
.section-row .section-title {
  width: 100%;
  max-width: 765px;
  margin-bottom: 0;
  margin: 0 auto;
  text-align: center;
}
.section-title {
  margin-bottom: 20px;
}
.section-title h3 {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-color);
  padding-left: 34px;
  margin-bottom: 15px;
}
.section-title h3::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/school.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  width: 20px;
  height: 20px;
}
.section-title h1 {
  font-size: 53px;
  margin-bottom: 0;
  cursor: none;
}
.section-title h2 {
  font-size: 40px;
  margin-bottom: 0;
  cursor: none;
}
.section-title h1 span,
.section-title h2 span {
  color: var(--accent-color);
}
.section-title p {
  margin-top: 20px;
  margin-bottom: 0;
}
.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}
.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 16px;
}
header.main-header {
  position: absolute;
  width: 100%;
  border-bottom: 1px solid var(--dark-divider-color);
  z-index: 100;
}
header.main-header .header-sticky {
  position: relative;
  top: 0;
  z-index: 100;
}
.navbar {
  padding: 0 0;
  align-items: center;
}
.main-menu .nav-menu-wrapper {
  flex: 1;
  margin: 0 20px;
}
.main-menu .nav-menu-wrapper > ul {
  align-items: center;
  display: inline-flex;
}
.main-menu ul li {
  margin: 0;
  position: relative;
}
.main-menu ul li a {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4em;
  padding: 10px 10px !important;
  color: #fff;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.main-menu ul li.submenu > a:after {
  content: "\f107";
  font-family: FontAwesome;
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
}
.main-menu ul li a:focus,
.main-menu ul li a:hover {
  color: #000;
}
.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 260px;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  text-align: left;
}
.main-menu ul li.submenu:first-child ul {
  width: 230px;
}
.main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}
.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 5px 0;
}
.main-menu ul li.submenu ul li.submenu > a:after {
  content: "\f105";
  float: right;
}
.main-menu ul ul li {
  margin: 0;
  padding: 0;
}
.main-menu ul ul li a {
  color: var(--white-color);
  padding: 6px 20px !important;
  transition: all 0.3s ease-in-out;
}
.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 5px 0;
}
.main-menu ul ul li a:focus,
.main-menu ul ul li a:hover {
  color: var(--primary-color);
  background-color: transparent;
  padding: 6px 20px 6px 23px !important;
}
.contact-now-box {
  display: flex;
  align-items: center;
}
.contact-now-box .icon-box {
  position: relative;
  display: inline-block;
  margin-right: 15px;
  padding-bottom: 5px;
}
.contact-now-box .icon-box:before {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  z-index: 0;
  display: none;
}
.contact-now-box .icon-box img {
  position: relative;
  width: 100%;
  max-width: 34px;
  z-index: 1;
}
.contact-now-box-content {
  width: calc(100% - 46px);
}
.contact-now-box-content p {
  color: #000;
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.contact-now-box-content h3 {
  color: var(--accent-color);
  font-size: 20px;
}
.contact-now-box-content h3 a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}
.contact-now-box-content h3 a:hover {
  color: var(--white-color);
}
.navbar-toggle {
  display: none;
}
.slicknav_btn {
  background: var(--accent-color);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  margin: 0;
}
.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  width: 22px;
  background-color: var(--white-color);
  border-radius: 6px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}
.slicknav_icon .slicknav_icon-bar:first-child {
  margin-top: 0 !important;
}
.slicknav_icon .slicknav_icon-bar:last-child {
  margin-bottom: 0 !important;
}
.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}
.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}
.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}
.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background: var(--accent-color);
}
.slicknav_menu ul {
  margin: 5px 0;
}
.slicknav_menu ul ul {
  margin: 0;
}
.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 8px 20px;
  color: var(--white-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.slicknav_nav .slicknav_row:hover,
.slicknav_nav a:focus,
.slicknav_nav a:hover {
  background-color: transparent;
  color: var(--primary-color);
}
.slicknav_menu ul ul li a {
  padding: 8px 20px 8px 30px;
}
.slicknav_arrow {
  font-size: 0 !important;
}
.slicknav_arrow:after {
  content: "\f107";
  font-family: FontAwesome;
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: var(--white-color);
  position: absolute;
  right: 15px;
  top: 10px;
  transition: all 0.3s ease-out;
}
.slicknav_open > a .slicknav_arrow:after {
  transform: rotate(-180deg);
  color: var(--primary-color);
}
.hero {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 260px 0 160px;
}
.hero::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background:
    linear-gradient(
      270deg,
      rgba(2, 13, 25, 0) 16.33%,
      rgba(2, 13, 25, 0.8) 100%
    ),
    linear-gradient(360deg, rgba(2, 13, 25, 0) 87.52%, #020d19 101.14%);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero.hero-video .hero-bg-video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.hero.hero-video .hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero.hero-slider-layout {
  background: 0 0;
  padding: 0;
}
.hero.hero-slider-layout .hero-slide {
  position: relative;
  padding: 180px 0 60px;
}
.hero.hero-slider-layout .hero-slide::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(2, 13, 25, 0.2) 0, rgba(2, 13, 25, 0) 60%),
    linear-gradient(to right, #020d19 0, rgba(2, 13, 25, 0) 65%);
}
.hero.hero-slider-layout .hero-slide .hero-slider-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.hero.hero-slider-layout .hero-slide .hero-slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero.hero-slider-layout .hero-pagination {
  position: absolute;
  bottom: 70px;
  text-align: left;
  padding-left: calc(((100vw - 1300px) / 2) + 15px);
  z-index: 2;
}
.hero-content {
  position: relative;
  margin-right: 100px;
  z-index: 2;
}
.hero-content .section-title {
  margin-bottom: 30px;
}
.hero-content .section-title h1,
.hero-content .section-title h3,
.hero-content .section-title p {
  color: var(--white-color);
}
.hero-body {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}
.video-play-button {
  display: flex;
  align-items: center;
}
.video-play-button p {
  color: var(--white-color);
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 10px 0 0;
}
.video-play-button a {
  height: 50px;
  width: 50px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: none;
  transition: all 0.4s ease-in-out;
}
.video-play-button a:hover {
  background-color: var(--primary-color);
}
.video-play-button a i {
  font-size: 22px;
  color: var(--white-color);
}
.hero-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 40px;
}
.hero-list {
  position: relative;
}
.hero-list:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  height: 100%;
  width: 1px;
  background: var(--dark-divider-color);
}
.hero-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-list ul li {
  background: url(https://arown.in/images/icon-check.svg) no-repeat;
  background-position: left center;
  background-size: 26px auto;
  color: var(--white-color);
  line-height: 1.5em;
  padding-left: 35px;
  margin-bottom: 20px;
}
.hero-list ul li:last-child {
  margin-bottom: 0;
}
.about-us {
  padding: 50px 0;
  padding-top: 200px;
}
.about-us-images {
  position: relative;
  padding: 0 0 190px 110px;
  margin-right: 30px;
}
.about-img-1,
.about-img-2 {
  border-radius: 30px;
  overflow: hidden;
}
.about-img-1 figure,
.about-img-2 figure {
  display: block;
}
.about-img-1 img,
.about-img-2 img {
  width: 100%;
  object-fit: cover;
}
.about-img-1 img {
  aspect-ratio: 1/0.95;
}
.about-img-2 {
  position: absolute;
  max-width: 412px;
  bottom: 0;
  left: 0;
  border: 15px solid var(--white-color);
  z-index: 1;
  overflow: hidden;
}
.about-img-2 img {
  aspect-ratio: 1/0.86;
}
.about-us-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 60px;
}
.about-us-body-content {
  width: calc(55% - 30px);
}
.about-support-box {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.about-support-box .icon-box {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 5px;
}
.about-support-box .icon-box:before {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  z-index: 0;
}
.about-support-box .icon-box img {
  position: relative;
  width: 100%;
  max-width: 50px;
  z-index: 1;
}
.about-support-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.about-support-content p {
  margin: 0;
}
.our-services {
  background:
    url(https://arown.in/images/our-service-bg.svg), var(--secondary-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  padding: 50px 0;
}
.service-item {
  background-color: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 30px;
  box-shadow: 0 0 40px 5px #00000005;
  padding: 40px;
  text-align: center;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}
.service-content {
  margin-bottom: 30px;
}
.service-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.service-content h3 a {
  color: inherit;
}
.service-content p {
  margin: 0;
}
.service-image {
  margin-bottom: 30px;
}
.service-image figure {
  max-width: 160px;
  border-radius: 50%;
  display: inline-block;
  background-color: #fff;
}
.service-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  transition: all 0.4s ease-in-out;
}
.service-item:hover img {
  transform: scale(1.1);
}
.section-footer-text {
  margin-top: 30px;
}
.section-footer-text p {
  font-family: var(--accent-font);
  text-align: center;
  margin-bottom: 0;
}
.section-footer-text p span {
  font-weight: 600;
  color: var(--white-color);
  background: var(--accent-color);
  border-radius: 100px;
  padding: 5px 10px;
  margin-right: 5px;
}
.section-footer-text p a {
  font-weight: 700;
  text-decoration: underline;
  text-transform: capitalize;
  text-underline-offset: 3px;
  color: var(--accent-color);
  transition: all 0.4s ease-in-out;
}
.section-footer-text p a:hover {
  color: var(--primary-color);
}
.what-we-do {
  padding: 50px 0;
}
.what-we-item {
  display: flex;
  align-items: start;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 35px;
  padding-bottom: 35px;
}
.what-we-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.what-we-item .icon-box {
  position: relative;
  padding-bottom: 8px;
  margin-right: 25px;
}
.what-we-item .icon-box:before {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  z-index: 0;
}
.what-we-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 72px;
  z-index: 1;
}
.what-we-item-content {
  width: calc(100% - 17px);
}
.what-we-item-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.what-we-item-content p {
  margin: 0;
}
.what-we-do-images {
  position: relative;
  padding-right: 165px;
}
.what-we-do-img-1 figure {
  display: block;
  border-radius: 30px;
  border: 2px solid #3c3d8a;
}
.what-we-do-img-1 img {
  width: 100%;
  aspect-ratio: 1/1.4;
  object-fit: cover;
  border-radius: 30px;
}
.what-we-do-img-2 {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 100%;
  max-width: 272px;
  border: 6px solid var(--white-color);
  border-radius: 50%;
  z-index: 1;
}
.what-we-do-img-2 figure {
  display: block;
  border-radius: 50%;
}
.what-we-do-img-2 img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}
.donate-now-box {
  position: absolute;
  top: 60px;
  left: 80px;
  writing-mode: vertical-rl;
  transform: rotate(-180deg);
}
.donate-now-box a {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--accent-color);
  border-radius: 10px;
  color: var(--white-color);
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  padding: 40px 15px;
  transition: all 0.4s ease-in-out;
}
.donate-now-box a:hover {
  background: var(--primary-color);
}
.donate-now-box a img {
  width: 100%;
  max-width: 25px;
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}
.donate-now-box a:hover img {
  filter: brightness(0) invert(1);
}
.our-causes {
  background:
    url(https://arown.in/images/our-service-bg.svg), var(--secondary-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  padding: 50px 0;
}
.causes-item {
  height: calc(100% - 30px);
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  box-shadow: 0 0 40px 5px #00000005;
  border-radius: 30px;
  padding: 20px;
  margin-bottom: 30px;
}
.causes-image {
  margin-bottom: 30px;
}
.causes-image figure {
  display: block;
  border-radius: 30px;
}
.causes-image img {
  width: 100%;
  aspect-ratio: 1/0.822;
  object-fit: cover;
  border-radius: 30px;
  transition: all 0.4s ease-in-out;
}
.causes-item:hover .causes-image img {
  transform: scale(1.1);
}
.causes-content {
  margin-bottom: 10px;
}
.causes-content h3 {
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 600;
}
.causes-content p {
  margin-bottom: 0;
}
.causes-button .btn-default {
  display: block;
  text-align: center;
  padding: 15px 6px;
  font-size: 14px;
}
.causes-button .btn-default::before {
  display: none;
}
.why-choose-us {
  padding: 50px 0;
}
.why-choose-images {
  position: relative;
  padding: 0 65px 45px 0;
}
.why-choose-image-1 figure,
.why-choose-image-2 figure {
  display: block;
  overflow: hidden;
  border-radius: 50%;
}
.why-choose-image-1 img,
.why-choose-image-2 img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}
.why-choose-image-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 265px;
  border: 2px solid var(--white-color);
  border-radius: 50%;
}
.why-choose-content {
  margin-left: 15px;
}
.why-choose-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
}
.why-choose-list ul li {
  width: calc(50% - 10px);
  background: url(https://arown.in/images/icon-check-dark.svg) no-repeat;
  background-position: left center;
  background-size: 26px auto;
  color: var(--primary-color);
  text-transform: capitalize;
  line-height: 1.5em;
  padding-left: 35px;
}
.why-choose-counters {
  display: flex;
  gap: 30px 50px;
  flex-wrap: wrap;
  border-top: 1px solid var(--divider-color);
  margin-top: 40px;
  padding-top: 40px;
}
.why-choose-counter-item {
  position: relative;
  width: calc(24.33% - 33.33px);
  text-align: center;
}
.why-choose-counter-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -30px;
  background: var(--divider-color);
  width: 1px;
  height: 100%;
}
.why-choose-counter-item:last-child:before,
.why-choose-counter-item:nth-child(3n + 3):before {
  display: none;
}
.why-choose-counter-item h2 {
  font-size: 50px;
  color: var(--accent-color);
  margin-bottom: 5px;
}
.why-choose-counter-item p {
  margin-bottom: 0;
}
.our-program {
  position: relative;
  background-image:
    linear-gradient(180deg, transparent 80%, var(--white-color) 20%),
    url(../img/bg.jpg);
  padding: 50px 0;
}
.our-program::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(2, 13, 25, 0.5) 17.67%, #fff 70%);
  height: 100%;
  width: 100%;
  z-index: 0;
}
.our-program .section-row {
  position: relative;
  z-index: 1;
}
.our-program .section-title h2,
.our-program .section-title h3,
.our-program .section-title p {
  color: var(--white-color);
}
.program-item {
  position: relative;
  height: calc(100% - 30px);
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  box-shadow: 0 0 40px 5px #00000005;
  border-radius: 30px;
  padding: 20px 20px 0;
  z-index: 1;
  min-height: 360px;
}
.program-image {
  margin-bottom: 30px;
}
.program-image a {
  display: block;
  cursor: none;
}
.program-image figure {
  display: block;
  border-radius: 20px;
}
.program-image img {
  width: 100%;
  aspect-ratio: 1/0.701;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}
.program-item:hover .program-image img {
  transform: scale(1.1);
}
.program-body {
  text-align: center;
}
.program-content {
  margin-bottom: 30px;
}
.program-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.program-content h3 a {
  color: inherit;
}
.program-content p {
  margin-bottom: 0;
}
.our-program .section-footer-text {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 30px auto 0;
  z-index: 1;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
.donate-now {
  position: relative;
  background-position: center center;
  background-size: cover;
  padding: 50px 0;
}
.donate-now::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 30%;
  height: 100%;
  width: 100%;
}
@keyframes border-zooming {
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.donate-box {
  position: relative;
  background-color: var(--white-color);
  border-radius: 30px;
  padding: 40px;
  z-index: 1;
}
.donate-value-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.donate-form .donate-value {
  width: calc(33.33% - 6.66px);
}
.donate-form .form-control {
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  box-shadow: none;
  outline: 0;
  padding: 17px 30px;
  background-color: #fff;
}
.donate-form .form-control::placeholder {
  color: var(--primary-color);
  font-weight: 500;
}
.donate-value-box .donate-value input {
  position: absolute;
  left: -9999px;
}
.donate-value-box .donate-value label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 400;
  line-height: 1.2em;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}
.donate-value-box .donate-value input[type="radio"]:checked + label,
.donate-value-box .donate-value input[type="radio"]:focus + label,
.donate-value-box .donate-value input[type="radio"]:hover + label {
  background-color: var(--accent-color);
  color: var(--white-color);
}
.donate-box .donate-form .form-group-btn .btn-default {
  width: 100%;
  display: block;
  text-align: center;
  padding: 20px;
}
.donate-box .donate-form .form-group-btn .btn-default::before {
  display: none;
}
.how-it-work {
  padding: 50px 0;
}
.facilities .how-it-work-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.how-it-work-item {
  width: calc(25% - 22.5px);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.how-it-work-list-1 .how-it-work-item:nth-child(even) {
  flex-direction: column-reverse;
}
.how-it-work-content,
.how-it-work-image {
  width: 100%;
}
.how-it-work-image figure {
  display: block;
  border-radius: 30px;
}
.how-it-work-image img {
  width: 100%;
  aspect-ratio: 1/0.866;
  object-fit: cover;
  border-radius: 30px;
}
.how-it-work-content {
  border: 1px solid var(--divider-color);
  box-shadow: 0 -10px 40px 5px #00000005;
  border-radius: 30px;
  text-align: center;
  padding: 20px;
}
.how-it-work-content:hover {
  /* background: linear-gradient(90deg, #ff8f00 0, #ec662a 100%); */
  
  background: linear-gradient(90deg, #535598 0, #3e3f89 100%);
  color: var(--white-color);
}
.how-it-work-content:hover h3 {
  color: var(--white-color);
}
.how-it-work-content:hover .icon-box img {
  filter: invert(100%);
  transform: rotateY(180deg);
}
.how-it-work-content:hover .readmore-btn {
  color: var(--white-color);
}
.how-it-work-content:hover .readmore-btn::before {
  background-color: var(--white-color);
  color: var(--accent-color);
}
.how-it-work-content:hover .readmore-btn:hover::before {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.how-it-work-content:hover .readmore-btn:hover {
  color: var(--primary-color);
}
.icon-box img {
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.icon-box:hover img {
  transform: rotateY(180deg);
}
.how-it-work-content .icon-box {
  position: relative;
  padding-bottom: 7px;
  margin-bottom: 30px;
  z-index: 1;
}
.how-it-work-content .icon-box:before {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  z-index: 0;
  display: none;
}
.how-it-work-content .icon-box img {
  position: relative;
  width: 100%;
  max-width: 55px;
  z-index: 1;
}
.how-it-work-body h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.how-it-work-body p {
  margin: 0;
}
.section-footer-text.how-work-footer-text {
  margin-top: 60px;
}
.our-testimonials {
  background:
    url(https://arown.in/images/testimonial-bg-image.png),
    var(--secondary-color);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto;
  padding: 50px 0;
}
.testimonials-image {
  position: relative;
  padding-right: 90px;
}
.testimonials-img figure {
  display: block;
  border-radius: 30px;
}
.testimonials-img img {
  width: 100%;
  aspect-ratio: 1/1.344;
  object-fit: cover;
  border-radius: 30px;
}
@keyframes infiniterotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.client-review-box {
  position: absolute;
  right: 0;
  bottom: 40px;
  background: var(--white-color);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 20px 0 #0000000d;
  overflow: hidden;
  animation: clientreviewobject 3s infinite linear alternate;
  z-index: 1;
}
@keyframes clientreviewobject {
  50% {
    right: 45px;
  }
}
.client-review-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent-color);
  z-index: 0;
  transition: all 0.4s ease-in-out;
}
.client-review-box:hover:before {
  top: auto;
  height: 100%;
}
.client-review-box h2 {
  position: relative;
  color: var(--accent-color);
  font-size: 50px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.client-review-box p {
  position: relative;
  text-transform: uppercase;
  margin: 0;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.client-review-box:hover h2,
.client-review-box:hover p {
  color: var(--white-color);
}
.testimonials-content {
  margin-left: 20px;
}
.testimonial-slider .swiper-wrapper {
  cursor: none;
}
.testimonial-item {
  background-color: var(--white-color);
  box-shadow: 0 0 40px 5px #00000005;
  border: 1px solid var(--divider-color);
  border-radius: 30px;
  padding: 40px;
}
.testimonial-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.testimonial-content p {
  margin: 0;
}
.testimonial-slider .testimonial-pagination {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 4px;
}
.our-gallery {
  padding: 100px 0 50px;
}
.our-gallery .container-fluid {
  padding: 0;
}
.our-gallery-nav {
  text-align: center;
  margin-bottom: 80px;
}
.our-gallery-nav ul {
  list-style: none;
  text-align: center;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 60px;
  padding: 0;
  margin: 0;
}
.our-gallery-nav ul li a {
  position: relative;
  display: inline-block;
  color: var(--text-color);
  font-weight: 600;
  line-height: 1.2em;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.our-gallery-nav ul li a:before {
  content: "";
  position: absolute;
  top: 5px;
  right: -34px;
  background-color: var(--divider-color);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}
.our-gallery-nav ul li:last-child a:before {
  display: none;
}
.our-gallery-nav ul li a:hover {
  color: var(--accent-color);
}
.gallery-item-box {
  width: calc(20% - 0.2px);
}
.gallery-item-box figure {
  display: block;
  width: 100%;
}
.gallery-item-box img {
  width: 100%;
  aspect-ratio: 1/0.921;
  object-fit: cover;
}
.our-blog {
  padding: 50px 0;
}
.post-item {
  background-color: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 30px;
  box-shadow: 0 0 40px 5px #00000005;
  padding: 40px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}
.post-item-header {
  margin-bottom: 20px;
}
.post-item-meta {
  margin-bottom: 15px;
}
.post-item-meta ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.post-item-meta ul li {
  color: var(--accent-color);
  text-transform: capitalize;
}
.post-item-content h2 {
  font-size: 20px;
  line-height: 1.3em;
}
.post-item-content h2 a {
  color: inherit;
}
.post-featured-image {
  margin-bottom: 30px;
}
.post-featured-image a {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  cursor: none;
}
.post-featured-image img {
  width: 100%;
  aspect-ratio: 1/0.74;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.post-item:hover .post-featured-image img {
  transform: scale(1.1);
}
.main-footer {
  background: var(--primary-color);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: auto;
  padding: 50px 0 0;
}
.main-footer-box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 100px;
}
.footer-about {
  position: relative;
  width: calc(45% - 50px);
}
.footer-about::before {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  background-color: var(--dark-divider-color);
  height: 100%;
  width: 1px;
}
.footer-logo img {
  width: 100%;
  max-width: 205px;
  margin-bottom: 20px;
}
.footer-contact-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}
.footer-contact-item {
  width: calc(50% - 15px);
}
.footer-contact-item p {
  color: var(--white-color);
  opacity: 80%;
  margin-bottom: 15px;
}
.footer-contact-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
}
.footer-contact-item h3 a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}
.footer-contact-item h3 a:hover {
  color: var(--accent-color);
}
.footer-social-links h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
  text-transform: capitalize;
  margin-bottom: 15px;
}
.footer-social-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-social-links ul li {
  display: inline-block;
  margin-right: 10px;
}
.footer-social-links ul li:last-child {
  margin-right: 0;
}
.footer-social-links ul li a {
  width: 25px;
  height: 25px;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
  background: 0 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}
.footer-social-links ul li a:hover {
  color: var(--accent-color) !important;
  background: var(--white-color);
  filter: saturate(100%);
}
.footer-social-links ul li a i {
  font-size: 16px;
  color: inherit;
}
.footer-links-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.footer-links h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
  text-transform: capitalize;
  margin-bottom: 20px;
}
.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links ul li {
  color: var(--white-color);
  text-transform: capitalize;
  line-height: 1.6em;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}
.footer-links ul li:hover {
  color: var(--accent-color);
}
.footer-links ul li:last-child {
  margin-bottom: 0;
}
.footer-links ul li a {
  color: inherit;
}
.footer-copyright {
  background-color: var(--dark-divider-color);
  padding: 20px 0;
  margin-top: 50px;
}
.copyright-text {
  text-align: center;
}
.copyright-text p {
  color: var(--white-color);
  opacity: 80%;
  margin-bottom: 0;
}
.page-header {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 100px 0 100px;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      270deg,
      rgba(2, 13, 25, 0) 23.01%,
      rgba(2, 13, 25, 0.8) 92.29%
    ),
    linear-gradient(360deg, rgba(2, 13, 25, 0) 70.82%, #020d19 101.14%);
  height: 100%;
  width: 100%;
  z-index: 1;
}
.page-header-box {
  position: relative;
  z-index: 1;
}
.page-header-box h1 {
  display: inline-block;
  font-size: 63px;
  font-weight: 700;
  line-height: 1.2em;
  color: var(--white-color);
  margin-bottom: 10px;
  cursor: none;
}
.page-header-box h1 span {
  font-weight: 700;
  color: var(--accent-color);
}
.our-approach {
  padding: 50px 0;
  background:
    url(https://arown.in/images/our-service-bg.svg), var(--secondary-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
}
.our-approach-box-content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 100px;
}
.our-approach-content {
  width: calc(50% - 15px);
  padding-bottom: 200px;
}
.our-approach-image {
  width: calc(50% - 15px);
}
.our-approach-image figure {
  display: block;
  border-radius: 30px;
}
.our-approach-image img {
  width: 100%;
  aspect-ratio: 1/0.947;
  object-fit: cover;
  border-radius: 30px;
}
.mission-vision-box {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 80px;
  border: 1px solid var(--divider-color);
  border-radius: 30px;
  box-shadow: 0 -10px 40px 5px #00000005;
  padding: 35px;
  overflow: hidden;
  z-index: 5;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 0.3s forwards;
  background-color: var(--accent-color);
}
@media (max-width: 1300px) {
  .mission-vision-box {
    max-width: 1100px;
  }
}
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translate(-50%, 40px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 1024px) {
  .mission-vision-box {
    gap: 20px 40px;
    padding: 25px;
    bottom: -40px;
  }
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .section-title h2 {
    font-size: 35px;
  }
  .causes-button .btn-default {
    display: block;
    text-align: center;
    padding: 20px;
    padding: 15px 0;
    font-size: 12px;
  }
  .causes-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
  }
}
@media (max-width: 1500px) {
  .mission-vision-box {
    bottom: -100px;
    justify-content: center;
    align-items: center;
  }
  .main-footer p {
    font-size: 0.9em !important;
  }
  .footer-links ul li {
    position: relative;
    padding-right: 0 !important;
    font-size: 0.9em !important;
  }
}
.mission-vision-item {
  position: relative;
  width: calc(25% - 60px);
}
.mission-vision-item:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: 0;
  right: -40px;
  height: calc(100% - 30px);
  width: 1px;
  background: var(--divider-color);
}
.mission-vision-item:nth-child(4n + 4):before {
  display: none;
}
.mission-vision-item .icon-box {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}
.mission-vision-item .icon-box:before {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  z-index: 0;
}
.mission-vision-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 50px;
  z-index: 1;
  filter: invert(100%);
}
.mission-vision-content h3 {
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-size: 28px;
  color: var(--white-color);
}
.mission-vision-content p {
  margin: 0;
}
.how-we-help {
  position: relative;
  padding: 50px 0;
}
.how-we-help:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  border-radius: 0 30px 30px 0;
  height: 100%;
  width: 55%;
  z-index: -1;
}
.how-we-help-content .section-title h2,
.how-we-help-content .section-title h3,
.how-we-help-content .section-title p {
  color: var(--white-color);
}
.how-we-help-body {
  margin-bottom: 40px;
}
.how-we-help-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.how-we-help-body ul li {
  background: url(https://arown.in/images/icon-check.svg) no-repeat;
  background-position: left center;
  background-size: 26px auto;
  color: var(--white-color);
  line-height: 1.5em;
  padding-left: 30px;
  margin-bottom: 20px;
}
.how-we-help-body ul li:last-child {
  margin-bottom: 0;
}
.how-we-help-btn .btn-default:after {
  background: var(--white-color);
}
.how-we-help-btn .btn-default:hover:before {
  filter: brightness(0) invert(0);
}
.how-we-help-btn .btn-default:hover {
  color: var(--primary-color);
}
.how-help-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.how-help-item {
  width: calc(50% - 15px);
  background-color: var(--white-color);
  border: 1px solid var(--divider-color);
  box-shadow: 0 -10px 40px 5px #00000005;
  border-radius: 30px;
  padding: 20px;
  text-align: center;
}
.how-help-item .icon-box {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 30px;
}
.how-help-item .icon-box:before {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 33px;
  height: 33px;
  z-index: 0;
}
.how-help-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 55px;
  z-index: 1;
}
.how-help-item-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.how-help-item-content p {
  margin: 0;
}
.our-team {
  padding: 50px 0;
}
.team-item {
  background-color: var(--white-color);
  border: 1px solid var(--divider-color);
  box-shadow: 0 -10px 40px 5px #00000008;
  border-radius: 30px;
  /* height: calc(100% - 30px); */
  height: auto;
  margin-bottom: 30px;
  padding: 20px;
}
.team-image {
  margin-bottom: 20px;
}
.team-image a,
.team-image a figure {
  display: block;
  border-radius: 20px;
  cursor: none;
}
.team-image a img {
  width: 100%;
  aspect-ratio: 1/0.87;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.team-item:hover .team-image a img {
  transform: scale(1.1);
}
.team-content {
  text-align: left;
  margin-bottom: 15px;
  min-height: 105px;
}
.team-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.team-content h3 a {
  color: inherit;
}
.team-content p {
  text-transform: capitalize;
  margin-bottom: 0;
  padding-bottom: 10px;
}
.team-social-icon ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.team-social-icon ul li {
  display: inline-block;
  margin-right: 10px;
}
.team-social-icon ul li:last-child {
  margin-right: 0;
}
.team-social-icon ul li a {
  width: 36px;
  height: 36px;
  color: var(--white-color);
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}
.team-social-icon ul li a:hover {
  background: var(--primary-color);
}
.team-social-icon ul li a i {
  color: inherit;
  font-size: 18px;
}
.our-faqs {
  padding: 50px 0;
}
.faq-accordion .accordion-item {
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion-header .accordion-button {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2em;
  background: var(--accent-color);
  color: var(--white-color);
  padding: 18px 40px 18px 20px;
  transition: all 0.3s ease-in-out;
}
.faq-accordion .accordion-header .accordion-button.collapsed {
  background: var(--white-color);
  color: var(--primary-color);
}
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\f067";
  font-family: FontAwesome;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}
.faq-accordion .accordion-item .accordion-button::after {
  content: "\f068";
  font-family: FontAwesome;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  transform: translateY(-50%) rotate(-90deg);
  color: var(--primary-color);
}
.faq-accordion .accordion-item .accordion-body {
  padding: 18px 40px 18px 20px;
}
.faq-accordion .accordion-item .accordion-body p:last-child {
  margin: 0;
}
.faqs-image {
  position: relative;
  padding-right: 145px;
  margin-left: 30px;
}
.faqs-image:before {
  content: "";
  position: absolute;
  right: 80px;
  bottom: 40px;
  width: 30px;
  height: 185px;
  background-color: var(--accent-color);
  border-radius: 100px;
}
.faqs-img-1,
.faqs-img-2 {
  border-radius: 30px;
  overflow: hidden;
}
.faqs-img-1 figure,
.faqs-img-2 figure {
  display: block;
}
.faqs-img-1 img,
.faqs-img-2 img {
  width: 100%;
  object-fit: cover;
}
.faqs-img-2 {
  max-width: 302px;
  position: absolute;
  top: 140px;
  right: 0;
  border: 8px solid var(--white-color);
  border-radius: 30px;
  z-index: 1;
}
.faqs-img-1 img {
  aspect-ratio: 1/1.614;
}
.faqs-img-2 img {
  aspect-ratio: 1/1.1;
}
.page-services {
  padding: 50px 0;
}
.why-choose-us.service-why-choose-us {
  background-color: var(--secondary-color);
}
.page-service-single {
  padding: 50px 0;
}
.page-single-sidebar {
  position: sticky;
  top: 30px;
  margin-right: 20px;
}
.our-faqs .page-single-sidebar {
  position: sticky;
  top: 30px;
  margin-right: 0 !important;
}
.service-entry {
  margin-bottom: 60px;
}
.service-entry p {
  margin-bottom: 20px;
}
.service-entry p:last-child {
  margin-bottom: 0;
}
.service-entry h2 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 400;
}
.service-entry ul {
  display: flex;
  gap: 20px 30px;
  flex-wrap: wrap;
  background-color: var(--secondary-color);
  border-radius: 30px;
  list-style: none;
  padding: 40px;
  margin: 20px 0;
}
.service-entry ul li {
  background-size: 26px auto;
  width: 100%;
  line-height: 1.5em;
  text-transform: capitalize;
  color: var(--primary-color);
  list-style: disc;
}
.service-entry-content-list,
.service-entry-steps {
  margin-top: 60px;
}
.service-entry-content-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.service-entry-content-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.service-entry-content-item:nth-child(even) {
  flex-direction: row-reverse;
}
.service-entry-content-box,
.service-entry-image {
  width: calc(50% - 15px);
}
.service-entry-image figure {
  display: block;
  border-radius: 30px;
}
.service-entry-image img {
  width: 100%;
  border-radius: 30px;
  aspect-ratio: 1/0.66;
  border-radius: 30px;
}
.service-entry-content-box .icon-box {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 5px;
}
.service-entry-content-box .icon-box:before {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  z-index: 0;
}
.service-entry-content-box .icon-box img {
  position: relative;
  width: 100%;
  max-width: 50px;
  z-index: 1;
}
.service-entry-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.service-entry-step-list {
  margin-top: 40px;
}
.service-entry-step-item {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--secondary-color);
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}
.service-entry-step-item::before {
  content: "";
  display: block;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent-color);
  width: 100%;
  height: 0;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}
.service-entry-step-item:hover::before {
  height: 100%;
  top: 0;
  bottom: auto;
}
.service-entry-step-item:last-child {
  margin-bottom: 0;
}
.service-entry-step-box {
  position: relative;
  width: calc(100% - 70px);
  display: flex;
  z-index: 1;
}
.service-entry-step-no {
  margin-right: 30px;
}
.service-entry-step-no h2 {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.service-entry-step-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.service-entry-step-content p {
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}
.service-entry-step-item:hover .service-entry-step-content h3,
.service-entry-step-item:hover .service-entry-step-content p,
.service-entry-step-item:hover .service-entry-step-no h2 {
  color: var(--white-color);
}
.service-entry-step-item .icon-box {
  position: relative;
  display: inline-block;
  margin-left: 15px;
  padding-bottom: 5px;
}
.service-entry-step-item .icon-box:before {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: var(--accent-color);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.service-entry-step-item:hover .icon-box:before {
  display: none;
  background: var(--white-color);
  opacity: 50%;
}
.service-entry-step-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 55px;
  z-index: 1;
}
.page-blog {
  padding: 50px 0;
}
.page-pagination {
  margin-top: 30px;
  text-align: center;
}
.page-pagination ul {
  justify-content: center;
  padding: 0;
  margin: 0;
}
.page-pagination ul li a,
.page-pagination ul li span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-weight: 600;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}
.page-pagination ul li a:hover {
  background: var(--accent-color);
  color: var(--white-color);
}
.page-single-post {
  padding: 50px 0;
}
.post-image {
  position: relative;
  margin-bottom: 30px;
}
.post-image figure {
  display: block;
  border-radius: 40px;
  overflow: hidden;
}
.post-image img {
  width: 100%;
  aspect-ratio: 1/0.5;
  object-fit: cover;
  border-radius: 40px;
}
.post-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.post-entry {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.post-entry:after {
  content: "";
  display: block;
  clear: both;
}
.post-entry a {
  color: var(--accent-color);
}
.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
  font-weight: 700;
  line-height: 1.2em;
  margin: 0 0 0.455em;
}
.post-entry h1 {
  font-size: 63px;
}
.post-entry h2 {
  font-size: 50px;
}
.post-entry h3 {
  font-size: 40px;
}
.post-entry h4 {
  font-size: 30px;
}
.post-entry h5 {
  font-size: 24px;
}
.post-entry h6 {
  font-size: 18px;
}
.post-entry p {
  margin-bottom: 20px;
}
.post-entry p:last-child {
  margin-bottom: 0;
}
.post-entry p strong {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
}
.post-entry ul {
  padding: 0;
  margin: 20px 0 20px;
  padding-left: 20px;
}
.post-entry ul li {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  color: var(--text-color);
  margin-bottom: 15px;
}
.post-entry ul li:last-child {
  margin-bottom: 0;
}
.post-entry ul ul {
  margin-top: 20px;
  margin-bottom: 0;
}
.post-entry ul ul li:last-child {
  margin-bottom: 0;
}
.tag-links {
  font-family: var(--accent-font);
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.page-program-single {
  padding: 50px 0;
}
.program-entry {
  margin-bottom: 60px;
}
.program-entry h2 {
  font-size: 50px;
  margin-bottom: 20px;
}
.program-entry p {
  margin-bottom: 20px;
}
.program-entry p:last-child {
  margin-bottom: 0;
}
.program-entry ul {
  display: flex;
  gap: 20px 30px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
}
.program-entry ul li {
  width: calc(50% - 15px);
  background: url(https://arown.in/images/icon-check-dark.svg) no-repeat;
  background-position: center left;
  background-size: 26px auto;
  line-height: 1.5em;
  text-transform: capitalize;
  color: var(--primary-color);
  padding-left: 30px;
}
.program-why-choose {
  margin-top: 60px;
}
.program-entry-video {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  text-align: left;
  margin: 40px 0;
}
.program-entry-video-item {
  position: relative;
  width: calc(50% - 15px);
}
.program-entry-video-image figure {
  display: block;
  border-radius: 30px;
  overflow: hidden;
}
.program-entry-video-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  opacity: 30%;
  z-index: 1;
}
.program-entry-video-image img {
  width: 100%;
  aspect-ratio: 1/0.87;
  object-fit: cover;
  border-radius: 30px;
}
.program-entry-video-item .video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.program-entry-video-item .video-play-button a {
  height: 60px;
  width: 60px;
}
.program-entry-video-item .video-play-button a i {
  font-size: 26px;
}
.program-why-choose-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.program-why-choose-item {
  width: calc(50% - 15px);
  border: 1px solid var(--divider-color);
  box-shadow: 0 -10px 40px 5px #00000005;
  border-radius: 30px;
  text-align: center;
  padding: 20px;
}
.program-why-choose-item .icon-box {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 30px;
}
.program-why-choose-item .icon-box:before {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 33px;
  height: 33px;
  z-index: 0;
}
.program-why-choose-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 55px;
  z-index: 1;
}
.program-why-choose-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.program-why-choose-content p {
  margin: 0;
}
.section-footer-text.program-why-choose-footer {
  margin-top: 40px;
}
.page-team {
  padding: 50px 0;
}
.page-team-single {
  padding: 50px 0;
}
.page-team-single-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 100px 60px;
}
.team-member-content,
.team-member-image {
  width: calc(50% - 30px);
}
.team-member-image figure {
  display: block;
  border-radius: 20px;
}
.team-member-image img {
  width: 100%;
  aspect-ratio: 1/1.06;
  object-fit: cover;
  border-radius: 20px;
}
.member-social-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}
.member-social-list ul li {
  display: inline-block;
  margin-right: 10px;
}
.member-social-list ul li:last-child {
  margin-right: 0;
}
.member-social-list ul li a {
  width: 36px;
  height: 36px;
  color: var(--white-color);
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}
.member-social-list ul li a:hover {
  background: var(--primary-color);
}
.member-social-list ul li a i {
  color: inherit;
  font-size: 18px;
}
.member-content-body {
  background-color: var(--secondary-color);
  border-radius: 20px;
  margin-bottom: 40px;
  padding: 30px;
}
.member-content-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.member-content-body ul li {
  font-family: var(--accent-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
  text-transform: capitalize;
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.member-content-body ul li:last-child {
  margin-bottom: 0;
}
.member-content-body ul li span {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  color: var(--text-color);
  display: inline-block;
  width: 80%;
}
.member-about-nav {
  margin-bottom: 30px;
}
.member-about-nav ul {
  list-style: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 0;
  padding: 0;
  margin: 0;
  border-bottom: 2px solid var(--divider-color);
}
.member-about-nav ul li {
  display: inline-block;
  width: 33.33%;
}
.member-about-nav ul li .nav-link {
  position: relative;
  width: 100%;
  background: 0 0;
  border: none;
  color: var(--text-color);
  font-family: var(--accent-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2em;
  padding: 0 5px 20px 5px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.member-about-nav ul li .nav-link:hover {
  background: 0 0;
  color: var(--accent-color);
}
.member-about-nav ul li .nav-link::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  background: var(--accent-color);
  width: 0;
  height: 3px;
  transition: all 0.4s ease-in-out;
}
.member-about-nav ul li .nav-link:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.member-about-content .section-title {
  margin-bottom: 0;
}
.skill-data .skill-title {
  font-size: 16px;
  text-transform: capitalize;
}
.skill-data .skill-no {
  color: var(--primary-color);
  font-size: 16px;
  margin-left: 25px;
}
.team-member-experience {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  justify-content: center;
}
.team-contact-form,
.team-experience-box {
  width: calc(90% - 15px);
}
.team-experience-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.team-experience-body ul li {
  background: url(https://arown.in/images/icon-check-dark.svg) no-repeat;
  background-position: left center;
  background-size: 26px auto;
  width: calc(50% - 15px);
  color: var(--primary-color);
  text-transform: capitalize;
  line-height: 1.5em;
  padding-left: 30px;
}
.team-contact-form {
  background-color: var(--secondary-color);
  border-radius: 30px;
  padding: 40px;
}
.page-testimonials {
  padding: 50px 0;
}
.page-testimonials .testimonial-item {
  margin-bottom: 30px;
  height: calc(100% - 30px);
}
.page-gallery {
  padding: 50px 0;
}
.page-video-gallery {
  padding: 50px 0;
}
.video-gallery-image {
  overflow: hidden;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}
.video-gallery-image a {
  position: relative;
  display: block;
  cursor: none;
}
.video-gallery-image a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}
.video-gallery-image:hover a::before {
  opacity: 50%;
  visibility: visible;
  transform: scale(1);
}
.video-gallery-image a::after {
  content: "\f04b";
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: var(--white-color);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease-in-out;
  z-index: 1;
  border: 1px solid;
}
.video-gallery-image:hover a::after {
  opacity: 1;
  visibility: visible;
}
.video-gallery-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.page-faqs {
  padding: 50px 0;
}
.page-faqs-accordion {
  margin-bottom: 60px;
}
.page-faqs-accordion:last-child {
  margin-bottom: 0;
}
.page-contact-us {
  padding: 50px 0;
}
.contact-form-section .container-fluid {
  padding: 0;
}
.contact-form-box {
  background: var(--secondary-color);
  padding: 6.25vw;
}
.contact-form .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--text-color);
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  padding: 17px 20px;
  box-shadow: none;
  outline: 0;
}
.contact-form .form-control::placeholder {
  color: var(--text-color);
}
.error-page {
  padding: 50px 0;
}
.error-page-image {
  text-align: center;
  margin-bottom: 30px;
}
.error-page-image img {
  width: 100%;
  max-width: 50%;
}
.error-page-content {
  text-align: center;
}
.error-page-content .section-title {
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  .btn-default {
    padding: 16px 50px 16px 20px;
  }
  .btn-default::before {
    transform: translate(-20px, -50%);
  }
  .btn-default:hover::before {
    transform: translate(-17px, -50%);
  }
  .readmore-btn {
    padding-right: 35px;
  }
  .readmore-btn::before {
    width: 26px;
    height: 26px;
  }
  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }
  .navbar-toggle {
    display: block;
  }
  .contact-now-box {
    display: none;
  }
  .section-row {
    margin-bottom: 40px;
  }
  .section-title {
    margin-bottom: 30px;
  }
  .section-title h1 {
    font-size: 46px;
  }
  .section-title h2 {
    font-size: 38px;
  }
  .section-title p {
    margin-top: 10px;
  }
  .section-title-content {
    margin-top: 10px;
    margin-left: 0;
  }
  .hero-content {
    margin-right: 0;
  }
  .hero {
    padding: 150px 0 60px;
  }
  .hero.hero-slider-layout .hero-slide {
    padding: 150px 0 80px;
  }
  .hero.hero-slider-layout .hero-pagination {
    bottom: 30px;
    padding-left: 15px;
  }
  .hero-body,
  .hero-content .section-title {
    margin-bottom: 40px;
  }
  .hero-list ul li {
    background-size: 22px auto;
    margin-bottom: 15px;
    padding-left: 30px;
  }
  .about-us {
    padding: 50px 0;
  }
  .about-us-images {
    max-width: 76%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .about-img-2 {
    border-width: 10px;
  }
  .about-support-box .icon-box img {
    max-width: 45px;
  }
  .our-services {
    padding: 50px 0;
  }
  .service-item {
    border-radius: 20px;
    padding: 30px;
  }
  .service-content,
  .service-image {
    margin-bottom: 20px;
  }
  .service-content h3 {
    margin-bottom: 10px;
  }
  .service-image figure {
    max-width: 160px;
  }
  .section-footer-text {
    margin-top: 20px;
  }
  .what-we-do {
    padding: 50px 0;
  }
  .what-we-do-content {
    margin-bottom: 30px;
  }
  .what-we-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
  .what-we-item .icon-box {
    margin-right: 20px;
  }
  .what-we-item .icon-box:before {
    display: none;
    width: 32px;
    height: 32px;
  }
  .what-we-item .icon-box img {
    max-width: 60px;
  }
  .what-we-item-content {
    width: calc(100% - 80px);
  }
  .what-we-do-images {
    padding-left: 110px;
  }
  .what-we-do-img-1 img {
    aspect-ratio: 1/1.05;
  }
  .what-we-do-img-2 {
    max-width: 220px;
  }
  .donate-now-box {
    left: 30px;
  }
  .our-causes {
    padding: 50px 0 20px;
  }
  .causes-item {
    border-radius: 20px;
  }
  .causes-content,
  .causes-image {
    margin-bottom: 20px;
  }
  .causes-image figure {
    border-radius: 20px;
  }
  .causes-image img {
    aspect-ratio: 1/0.75;
    border-radius: 20px;
  }
  .causes-button .btn-default {
    padding: 16px;
  }
  .why-choose-us {
    padding: 50px 0;
  }
  .why-choose-images {
    width: 100%;
    max-width: 75%;
    margin: 0 auto 30px;
  }
  .why-choose-image-2 {
    max-width: 220px;
  }
  .why-choose-content {
    margin-left: 0;
  }
  .why-choose-list ul {
    gap: 20px;
  }
  .why-choose-list ul li {
    width: calc(50% - 10px);
    background-size: 22px auto;
    padding-left: 30px;
  }
  .why-choose-counters {
    gap: 30px 40px;
    margin-top: 30px;
    padding-top: 30px;
  }
  .why-choose-counter-item {
    width: calc(33.33% - 26.67px);
  }
  .why-choose-counter-item::before {
    right: -20px;
  }
  .why-choose-counter-item h2 {
    font-size: 38px;
  }
  .our-program {
    padding: 50px 0;
  }
  .program-item {
    border-radius: 20px;
    padding: 30px;
  }
  .program-content,
  .program-image {
    margin-bottom: 20px;
  }
  .our-program .section-footer-text {
    margin-top: 20px;
  }
  .donate-now {
    padding: 80px 0;
  }
  .donate-box {
    border-radius: 20px;
    padding: 30px;
  }
  .donate-value-box .form-control {
    padding: 14px 25px;
  }
  .donate-value-box .donate-value label {
    padding: 16px;
  }
  .donate-box .donate-form .form-group-btn .btn-default {
    padding: 16px;
  }
  .how-it-work {
    padding: 50px 0;
  }
  .how-it-work-item {
    width: 100%;
  }
  .how-it-work-content,
  .how-it-work-image {
    width: calc(50% - 15px);
  }
  .how-it-work-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .how-it-work-image figure {
    border-radius: 20px;
  }
  .how-it-work-image img {
    aspect-ratio: 1/0.625;
    border-radius: 20px;
  }
  .how-it-work-content {
    border-radius: 20px;
  }
  .how-it-work-content .icon-box {
    margin-bottom: 20px;
  }
  .how-it-work-content .icon-box img {
    max-width: 50px;
  }
  .how-it-work-content .icon-box:before {
    display: none;
    width: 30px;
    height: 30px;
  }
  .section-footer-text.how-work-footer-text {
    margin-top: 40px;
  }
  .our-testimonials {
    background-position: bottom center;
    padding: 50px 0;
  }
  .testimonials-image {
    max-width: 80%;
    margin: 0 auto;
    padding-right: 70px;
    margin-bottom: 30px;
  }
  .testimonials-img figure,
  .testimonials-img img {
    border-radius: 20px;
  }
  .testimonials-img img {
    aspect-ratio: 1/1.1;
  }
  .client-review-box {
    padding: 15px;
  }
  .client-review-box h2 {
    font-size: 38px;
  }
  .client-review-box p {
    font-size: 14px;
  }
  .testimonials-content {
    margin-left: 0;
  }
  .testimonial-item {
    border-radius: 20px;
    padding: 30px;
  }
  .testimonial-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .testimonial-slider .testimonial-pagination {
    margin-top: 30px;
  }
  .our-gallery {
    padding: 50px 0 25px;
  }
  .our-gallery-nav {
    margin-bottom: 40px;
  }
  .our-gallery-nav ul {
    gap: 10px 50px;
  }
  .our-gallery-nav ul li a:before {
    right: -29px;
  }
  .gallery-item-box img {
    width: 100%;
    aspect-ratio: 1/0.88;
    object-fit: cover;
  }
  .our-blog {
    padding: 25px 0 20px;
  }
  .post-item {
    padding: 30px;
    border-radius: 20px;
  }
  .post-featured-image,
  .post-item-header {
    margin-bottom: 20px;
  }
  .post-item-meta {
    margin-bottom: 10px;
  }
  .main-footer {
    padding: 50px 0 0;
  }
  .footer-about,
  .footer-links-box {
    width: 100%;
  }
  .footer-about::before {
    display: none;
  }
  .footer-logo {
    margin-bottom: 30px;
  }
  .footer-contact-item p,
  .footer-social-links h3 {
    margin-bottom: 10px;
  }
  .footer-social-links {
    margin-top: 30px;
  }
  .footer-links-box {
    gap: 30px;
  }
  .footer-links {
    width: calc(30% - 20px);
  }
  .footer-links.footer-service-links {
    width: calc(40% - 20px);
  }
  .footer-links h3 {
    margin-bottom: 20px;
  }
  .footer-links ul li {
    margin-bottom: 10px;
  }
  .footer-copyright {
    padding: 15px 0;
    margin-top: 40px;
  }
  .page-header {
    padding: 60px 0 60px;
  }
  .page-header-box h1 {
    font-size: 46px;
  }
  .our-approach {
    padding: 50px 0;
  }
  .our-approach-box-content {
    padding-bottom: 0;
  }
  .our-approach-content {
    padding-bottom: 0;
  }
  .our-approach-content,
  .our-approach-image {
    width: 100%;
  }
  .mission-vision-box {
    position: initial;
    gap: 30px;
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
  }
  .mission-vision-item {
    width: calc(33.33% - 20px);
  }
  .mission-vision-item:before {
    right: -15px;
  }
  .mission-vision-item .icon-box img {
    max-width: 45px;
  }
  .our-approach-image figure {
    border-radius: 20px;
  }
  .our-approach-image img {
    aspect-ratio: 1/0.7;
    border-radius: 20px;
  }
  .how-we-help {
    padding: 50px 0;
  }
  .how-we-help:before {
    border-radius: 0 0 20px 20px;
    height: 60%;
    width: 100%;
  }
  .how-help-item {
    border-radius: 20px;
  }
  .how-we-help-content {
    margin-bottom: 30px;
  }
  .how-we-help-body {
    margin-bottom: 30px;
  }
  .how-we-help-body ul li {
    background-size: 22px auto;
    margin-bottom: 15px;
    padding-left: 25px;
  }
  .how-help-item .icon-box {
    margin-bottom: 20px;
  }
  .how-help-item .icon-box:before {
    display: none;
    width: 30px;
    height: 30px;
  }
  .how-help-item .icon-box img {
    max-width: 50px;
  }
  .our-team {
    padding: 50px 0 20px;
  }
  .team-item {
    border-radius: 20px;
  }
  .team-image {
    margin-bottom: 15px;
  }
  .team-content {
    margin-bottom: 10px;
  }
  .our-faqs {
    padding: 50px 0;
  }
  .faqs-content {
    margin-bottom: 30px;
  }
  .faq-accordion .accordion-header .accordion-button {
    padding: 14px 35px 14px 14px;
  }
  .faq-accordion .accordion-item .accordion-button.collapsed::after,
  .faq-accordion .accordion-item .accordion-button::after {
    font-size: 16px;
    right: 14px;
  }
  .faq-accordion .accordion-item .accordion-body {
    padding: 14px 35px 14px 14px;
  }
  .faqs-image {
    max-width: 75%;
    margin: 0 auto;
    padding-right: 100px;
  }
  .faqs-image:before {
    right: 40px;
  }
  .faqs-img-1,
  .faqs-img-2 {
    border-radius: 20px;
  }
  .faqs-img-2 {
    max-width: 252px;
    top: 100px;
  }
  .faqs-img-1 img {
    aspect-ratio: 1/1.414;
  }
  .page-services {
    padding: 50px 0 20px;
  }
  .page-service-single {
    padding: 50px 0;
  }
  .page-single-sidebar {
    position: initial;
    margin: 0 0 30px 0;
  }
  .service-entry {
    margin-bottom: 30px;
  }
  .service-entry-content-list,
  .service-entry-steps {
    margin-top: 30px;
  }
  .service-entry p {
    margin-bottom: 15px;
  }
  .service-entry h2 {
    font-size: 38px;
    margin-bottom: 15px;
  }
  .service-entry ul {
    gap: 20px;
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
  }
  .service-entry ul li {
    width: calc(33.33% - 13.33px);
    background-size: 22px auto;
  }
  .service-entry-image figure,
  .service-entry-image img {
    border-radius: 20px;
  }
  .service-entry-content-box .icon-box img {
    max-width: 40px;
  }
  .service-entry-content-box .icon-box:before {
    display: none;
    width: 24px;
    height: 24px;
  }
  .service-entry-step-list {
    margin-top: 30px;
  }
  .service-entry-step-item {
    border-radius: 20px;
    padding: 20px;
  }
  .service-entry-step-box {
    width: calc(100% - 60px);
  }
  .service-entry-step-no {
    margin-right: 20px;
  }
  .service-entry-step-no h2 {
    margin-bottom: 0;
  }
  .service-entry-step-item .icon-box img {
    max-width: 45px;
  }
  .service-entry-step-item .icon-box:before {
    display: none;
    width: 24px;
    height: 24px;
  }
  .page-blog {
    padding: 50px 0;
  }
  .page-pagination {
    margin-top: 10px;
  }
  .page-single-post {
    padding: 50px 0;
  }
  .post-image {
    margin-bottom: 20px;
  }
  .post-image figure,
  .post-image img {
    border-radius: 20px;
  }
  .post-entry h1,
  .post-entry h2,
  .post-entry h3,
  .post-entry h4,
  .post-entry h5,
  .post-entry h6 {
    margin: 0 0 0.417em;
  }
  .post-entry h2 {
    font-size: 38px;
  }
  .post-entry p {
    margin-bottom: 15px;
  }
  .post-entry ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .tag-links {
    font-size: 20px;
  }
  .page-program-single {
    padding: 50px 0;
  }
  .program-entry {
    margin-bottom: 30px;
  }
  .program-why-choose {
    margin-top: 30px;
  }
  .program-entry p {
    margin-bottom: 15px;
  }
  .program-entry h2 {
    font-size: 38px;
    margin-bottom: 15px;
  }
  .program-entry ul {
    gap: 15px 20px;
    border-radius: 20px;
    margin-top: 30px;
  }
  .program-entry ul li {
    width: calc(50% - 10px);
    background-size: 22px auto;
  }
  .program-entry-video {
    margin: 30px 0;
  }
  .program-entry-video-image figure,
  .program-entry-video-image img {
    border-radius: 20px;
  }
  .program-entry-video-image img {
    aspect-ratio: 1/0.74;
  }
  .program-why-choose-item .icon-box {
    margin-bottom: 20px;
  }
  .program-why-choose-item .icon-box:before {
    display: none;
    width: 28px;
    height: 28px;
  }
  .program-why-choose-item .icon-box img {
    max-width: 45px;
  }
  .section-footer-text.program-why-choose-footer {
    margin-top: 30px;
  }
  .page-team {
    padding: 50px 0 20px;
  }
  .page-team-single {
    padding: 50px 0;
  }
  .page-team-single-box {
    gap: 50px 30px;
  }
  .team-member-content,
  .team-member-image {
    width: 100%;
  }
  .team-member-image img {
    aspect-ratio: 1/0.8;
  }
  .member-content-body {
    padding: 20px;
    margin-bottom: 30px;
  }
  .member-content-body ul li {
    margin-bottom: 10px;
  }
  .member-about-nav ul li .nav-link {
    padding: 0 5px 15px 5px;
  }
  .team-contact-form,
  .team-experience-box {
    width: 100%;
  }
  .team-experience-body ul {
    gap: 15px 20px;
  }
  .team-experience-body ul li {
    width: calc(50% - 10px);
    background-size: 22px auto;
  }
  .team-contact-form {
    padding: 30px;
    border-radius: 20px;
  }
  .page-testimonials {
    padding: 50px 0 20px;
  }
  .page-gallery {
    padding: 50px 0 20px;
  }
  .page-video-gallery {
    padding: 50px 0 20px;
  }
  .page-faqs {
    padding: 50px 0;
  }
  .page-faqs-accordion {
    margin-bottom: 40px;
  }
  .page-contact-us {
    padding: 50px 0;
  }
  .contact-form-box {
    padding: 50px;
  }
  .contact-form .form-control {
    padding: 12px 15px;
  }
  .error-page {
    padding: 50px 0;
  }
  .error-page-image {
    margin-bottom: 20px;
  }
  .error-page-image img {
    max-width: 80%;
  }
}
#donateModal .section-title h2 {
  font-size: 30px !important;
  text-align: center;
}
#donateModal .donate-form .form-control {
  font-size: 15px !important;
  padding: 15px 15px !important;
}
#courseModal .section-title h2 {
  font-size: 30px !important;
  text-align: center;
}
#courseModal .donate-form .form-control {
  font-size: 15px !important;
  padding: 15px 15px !important;
}
@media only screen and (max-width: 767px) {
  .section-row {
    margin-bottom: 30px;
  }
  .section-title h3 {
    font-size: 14px;
    padding-left: 25px;
    margin-bottom: 10px;
  }
  .section-title h3::before {
    width: 16px;
    height: 16px;
  }
  .section-title h1 {
    font-size: 28px;
  }
  .section-title h2 {
    font-size: 26px;
  }
  #donateModal .section-title h2 {
    font-size: 22px !important;
    text-align: center;
  }
  #donateModal .section-title {
    margin-bottom: 15px;
  }
  #courseModal .section-title h2 {
    font-size: 22px !important;
    text-align: center;
  }
  #courseModal .section-title {
    margin-bottom: 15px;
  }
  .video-play-button a {
    height: 45px;
    width: 45px;
  }
  .video-play-button a i {
    font-size: 20px;
  }
  .hero::before {
    background:
      linear-gradient(
        270deg,
        rgba(2, 13, 25, 0.3) 16.33%,
        rgba(2, 13, 25, 0.8) 100%
      ),
      linear-gradient(360deg, rgba(2, 13, 25, 0) 87.52%, #020d19 101.14%);
  }
  .hero-body {
    gap: 20px;
    justify-content: space-between;
  }
  .hero-list {
    width: 100%;
  }
  .hero-list:before {
    top: auto;
    right: 0;
    bottom: -15px;
    left: 0;
    height: 1px;
    width: 100%;
  }
  .about-us-images {
    max-width: 100%;
    padding: 0 0 125px 70px;
  }
  .about-img-2 {
    border-width: 5px;
    max-width: 210px;
  }
  .about-us-body-content {
    width: 100%;
  }
  .about-support-box {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .service-item {
    padding: 25px 20px;
  }
  .service-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .service-image figure {
    max-width: 120px;
  }
  .section-footer-text {
    margin-top: 10px;
  }
  .section-footer-text p span {
    padding: 3px 8px;
  }
  .what-we-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .what-we-item .icon-box {
    margin-right: 10px;
  }
  .what-we-item .icon-box img {
    max-width: 50px;
  }
  .what-we-item-content {
    width: calc(100% - 60px);
  }
  .what-we-item-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .what-we-do-images {
    padding-left: 70px;
  }
  .what-we-do-img-1 figure {
    border-radius: 20px;
  }
  .what-we-do-img-1 img {
    aspect-ratio: 1/1.5;
    border-radius: 20px;
  }
  .what-we-do-img-2 {
    max-width: 140px;
    bottom: 30px;
  }
  .donate-now-box {
    left: 15px;
    top: 15px;
  }
  .donate-now-box a {
    font-size: 16px;
    gap: 10px;
    padding: 20px 10px;
  }
  .donate-now-box a img {
    max-width: 20px;
  }
  .causes-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .why-choose-images {
    max-width: 100%;
    padding: 0 40px 30px 0;
  }
  .why-choose-image-2 {
    max-width: 160px;
  }
  .why-choose-list ul {
    gap: 15px;
  }
  .why-choose-list ul li {
    width: 100%;
  }
  .why-choose-counters {
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
  }
  .why-choose-counter-item {
    width: calc(33.33% - 13.33px);
  }
  .why-choose-counter-item::before {
    right: -10px;
  }
  .why-choose-counter-item h2 {
    font-size: 26px;
  }
  .why-choose-counter-item p {
    font-size: 14px;
  }
  .program-item {
    padding: 20px;
  }
  .program-content h3 {
    font-size: 18px;
  }
  .donate-now {
    padding: 50px 0;
  }
  .donate-box {
    padding: 20px;
  }
  .donate-form .form-control {
    padding: 10px 25px;
  }
  .donate-form .donate-value label {
    font-size: 14px;
    padding: 10px;
  }
  .how-it-work-item {
    gap: 20px;
  }
  .how-it-work-content,
  .how-it-work-image {
    width: 100%;
  }
  .how-it-work-content .icon-box img {
    max-width: 45px;
  }
  .how-it-work-body h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .testimonials-image {
    max-width: 100%;
    padding-right: 50px;
  }
  .client-review-box {
    padding: 12px;
    bottom: 20px;
  }
  .client-review-box h2 {
    font-size: 26px;
  }
  .testimonial-item {
    padding: 20px;
  }
  .page-service-single .row {
    flex-direction: column-reverse;
    display: flex;
  }
  .testimonial-content p {
    font-size: 14px;
  }
  .our-gallery-nav {
    margin-bottom: 30px;
  }
  .our-gallery-nav ul {
    gap: 10px 40px;
  }
  .our-gallery-nav ul li a:before {
    right: -24px;
  }
  .gallery-item-box {
    width: calc(50% - 0.2px);
  }
  .post-item {
    padding: 20px;
  }
  .post-featured-image,
  .post-item-header {
    margin-bottom: 15px;
  }
  .post-item-content h2 {
    font-size: 18px;
  }
  .footer-logo {
    margin-bottom: 20px;
  }
  .footer-contact-item {
    width: 100%;
  }
  .footer-contact-item h3,
  .footer-social-links h3 {
    font-size: 18px;
  }
  .footer-links,
  .footer-links.footer-service-links {
    width: 100%;
  }
  .footer-links h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .footer-copyright {
    padding: 10px 0;
    margin-top: 30px;
  }
  .page-header-box h1 {
    font-size: 28px;
  }
  .mission-vision-box {
    padding: 20px;
  }
  .mission-vision-item {
    width: 100%;
  }
  .mission-vision-item:before {
    width: 100%;
    height: 1px;
    top: auto;
    right: 0;
    bottom: -15px;
    left: 0;
  }
  .mission-vision-item:nth-child(3n + 3):before {
    display: block;
  }
  .mission-vision-item:last-child:before {
    display: none;
  }
  .mission-vision-item .icon-box {
    margin-bottom: 10px;
  }
  .mission-vision-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .how-we-help:before {
    height: 44%;
  }
  .how-help-item {
    width: 100%;
  }
  .how-help-item .icon-box {
    margin-bottom: 15px;
  }
  .how-help-item .icon-box img {
    max-width: 45px;
  }
  .how-help-item-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .team-content h3 {
    font-size: 18px;
  }
  .team-content p {
    font-size: 14px;
  }
  .faq-accordion .accordion-header .accordion-button {
    font-size: 18px;
    padding: 12px 30px 12px 12px;
  }
  .faq-accordion .accordion-item .accordion-button.collapsed::after,
  .faq-accordion .accordion-item .accordion-button::after {
    right: 12px;
  }
  .faq-accordion .accordion-item .accordion-body {
    padding: 12px;
  }
  .faq-accordion .accordion-item .accordion-body p {
    font-size: 14px;
  }
  .faqs-image {
    max-width: 100%;
    padding-right: 75px;
  }
  .faqs-image:before {
    right: 30px;
    bottom: 15px;
    width: 20px;
    height: 100px;
  }
  .faqs-img-2 {
    max-width: 170px;
    top: 60px;
    border-width: 4px;
  }
  .service-entry h2 {
    font-size: 26px !important;
  }
  .service-entry ul {
    gap: 15px;
    padding: 20px;
    margin: 20px 0;
  }
  .service-entry ul li {
    width: 100%;
  }
  .service-entry-content-item {
    gap: 20px;
  }
  .service-entry-content-box,
  .service-entry-image {
    width: 100%;
  }
  .service-entry-content h3 {
    font-size: 18px;
  }
  .service-entry-step-list {
    margin-top: 20px;
  }
  .service-entry-step-item {
    border-radius: 12px;
    padding: 15px;
  }
  .service-entry-step-no {
    margin-right: 10px;
  }
  .service-entry-step-box {
    width: calc(100% - 48px);
  }
  .service-entry-step-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .service-entry-step-content p {
    font-size: 14px;
  }
  .service-entry-step-item .icon-box {
    margin-left: 10px;
  }
  .service-entry-step-item .icon-box img {
    max-width: 38px;
  }
  .service-entry-step-item .icon-box:before {
    display: none;
    width: 20px;
    height: 20px;
  }
  .post-image img {
    aspect-ratio: 1/0.7;
  }
  .post-entry h2 {
    font-size: 26px;
  }
  .program-entry h2 {
    font-size: 26px;
  }
  .program-entry ul {
    margin-top: 20px;
  }
  .program-entry ul li {
    width: 100%;
  }
  .program-entry-video {
    margin: 20px 0;
  }
  .program-entry-video-item {
    width: 100%;
  }
  .program-entry-video-image img {
    aspect-ratio: 1/0.67;
  }
  .program-why-choose-list {
    gap: 20px;
  }
  .program-why-choose-item {
    width: 100%;
  }
  .program-why-choose-item .icon-box {
    margin-bottom: 15px;
  }
  .program-why-choose-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .team-member-image img {
    aspect-ratio: 1/1.06;
  }
  .member-social-list,
  .team-member-title {
    width: 100%;
  }
  .member-social-list ul {
    text-align: left;
  }
  .member-content-body ul li {
    font-size: 18px;
  }
  .member-content-body ul li span {
    width: 65%;
  }
  .member-about-nav ul li .nav-link {
    padding: 0 16px 16px 16px;
  }
  .team-experience-body ul li {
    width: 100%;
  }
  .contact-form-box {
    padding: 30px 20px;
  }
}
@media (min-width: 1200px) {
  .padding-lft {
    padding-left: 59px;
  }
  .padding-lft2 {
    padding-left: 39px;
  }
  #donateModal .modal-lg,
  .modal-xl {
    --bs-modal-width: 450px !important;
  }
  #courseModal .modal-lg,
  .modal-xl {
    --bs-modal-width: 450px !important;
  }
  #autoModal .modal-lg,
  .modal-xl {
    --bs-modal-width: 700px !important;
  }
}
#autoModal .section-title h2 {
  font-size: 35px;
}
@media (min-width: 992px) and (max-width: 1150px) {
  .main-menu ul li.submenu > a::after {
    content: "\f107";
    font-family: FontAwesome;
    font-weight: 900;
    font-size: 12px;
    margin-left: 4px;
  }
  .main-menu ul li a {
    font-size: 14px;
    padding: 10px 3px !important;
  }
  .top-nav-h6 h6 {
    font-size: 15px;
  }
  .hero.hero-slider-layout .hero-slide {
    position: relative;
    padding: 100px 0 0;
  }
  .top-nav-icon li {
    width: 20px;
    height: 20px;
  }
  .section-title h1 {
    font-size: 53px;
    margin-bottom: 0;
    cursor: none;
  }
  .mission-vision-content h3 {
    font-size: 22px;
  }
}
@media (min-width: 1150px) and (max-width: 1260px) {
  .main-menu ul li a {
    font-size: 15px;
    padding: 10px 6px !important;
  }
  .top-nav-h6 h6 {
    font-size: 15px;
  }
  .hero.hero-slider-layout .hero-slide {
    position: relative;
    padding: 100px 0 0;
  }
  .top-nav-icon li a {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 1260px) and (max-width: 1310px) {
  .main-menu ul li a {
    padding: 10px 6px !important;
  }
  .hero.hero-slider-layout .hero-slide {
    position: relative;
    padding: 120px 0 50px;
  }
  .main-menu ul li a {
    font-size: 15px;
  }
  .top-nav-h6 h6 {
    font-size: 13px;
  }
  .top-nav-icon li a {
    width: 25px !important;
    height: 25px !important;
  }
}
@media (min-width: 1311px) and (max-width: 1400px) {
  .main-menu ul li a {
    padding: 10px 10px !important;
    font-size: 16px;
  }
  .hero.hero-slider-layout .hero-slide {
    position: relative;
    padding: 130px 0 100px;
  }
  .top-nav-icon li a {
    width: 25px !important;
    height: 25px !important;
  }
}
@media (min-width: 1400px) and (max-width: 1500px) {
  .main-menu ul li a {
    padding: 14px 5px !important;
  }
  .hero.hero-slider-layout .hero-slide {
    position: relative;
    padding: 200px 0 20px;
  }
  .top-nav-icon li a {
    width: 25px;
    height: 25px;
  }
}
.how-it-work-item-cut-btn .readmore-btn::before {
  background-color: var(--primary-color);
  width: 20px;
  height: 20px;
}
.how-it-work-item-cut-btn .readmore-btn:hover::before {
  background-color: var(--accent-color);
  transform: translate(0, -50%);
}
.how-it-work-item-cut-btn .readmore-btn {
  color: var(--primary-color);
}
.how-it-work-item-cut-btn .readmore-btn:hover {
  color: var(--accent-color);
}
.select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.select-wrapper::after {
  content: "⌄";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
  color: #555;
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.marquee {
  position: relative;
  overflow: hidden;
  background-color: rgba(var(--bs-dark-rgb), 1);
  font-size: 17px;
  font-weight: 500;
}
.marquee p {
  margin: 0;
}
.marq-ans-width {
  width: 30%;
  border-top-right-radius: 30px;
  letter-spacing: 1px;
  font-size: 1.1rem;
}
@media (max-width: 900px) {
  .marq-ans-width {
    width: 50%;
    background: linear-gradient(90deg, #535598 0, #3e3f89 100%);
  }
  
}
.mission-vision-content {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
.icon-box img {
  width: 40px;
}
.mission-vision-item p {
  margin: 0;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
}
.wcu-des {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8em;
}
@media (min-width: 1000px) {
  .pt-abt {
    padding-top: 200px;
  }
}
#autoModal {
  z-index: 1055;
}
#autoModal.modal-backdrop-lowered {
  z-index: 1040 !important;
}
#courseModal {
  z-index: 1065 !important;
}
.custom-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 1000px) {
  .custom-grid .form-group {
    width: 100%;
  }
  #autoModal .section-title h2 {
    font-size: 25px;
  }
  #autoModal .section-title {
    margin-bottom: 10px;
  }
}
.filters-button-group button {
  padding: 10px;
  margin: 5px;
  background: #f5f5f5;
  cursor: pointer;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 0 40px 5px #00000005;
  border: 1px solid var(--divider-color);
}
.box-des {
  padding: 0 10px;
  background: #f1f1f1;
  border-radius: 15px;
  display: inline-block;
}
.donate-box:hover .filters-button-group button:hover {
  background: var(--accent-color);
  color: #f1f1f1;
}
.many-grid .container {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(12, 150px);
}
.many-grid .img {
  border-radius: 1rem;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.item-4 {
  grid-row: 2/5;
}
.item-5 {
  grid-row: 2/6;
}
.item-6 {
  grid-row: 2/4;
}
.item-7 {
  grid-row: 5/6;
}
.item-8 {
  grid-row: 4/6;
}
.item-9 {
  grid-row: 6/11;
}
.item-10 {
  grid-row: 6/7;
}
.item-11 {
  grid-row: 6/9;
}
.item-12 {
  grid-row: 7/12;
}
.item-13 {
  grid-row: 9/13;
}
.item-14 {
  grid-row: 11/13;
}
.main-footer {
  position: relative;
  background-image: url(../img/28.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  padding-top: 50px;
  padding-bottom: 0;
  z-index: 1;
}
.main-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.main-footer h3 {
  color: #fff;
  font-size: 22px;
}
.main-footer p {
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.06em;
}
.main-footer a {
  color: #fff;
  font-size: 1.06em;
}
.main-footer a:hover {
  color: #ec662a;
}
.footer-links ul li {
  position: relative;
  padding-right: 20px;
  font-size: 1.06em;
}
.footer-links ul li::before {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  transition: transform 0.3s ease;
  display: none;
}
.footer-links ul li:hover::after {
  transform: translateY(-50%) translateX(4px);
}
.top-bar {
  padding: 0.8rem 0;
}
.top-bar li i {
  padding-right: 0.5rem;
  color: #fff;
}
.top-bar li {
  list-style: none;
  color: #fff;
  padding-right: 1rem !important;
}
.top-bar li a {
  color: #fff;
  text-decoration: none;
}
.top-bar li a:hover {
  color: #000;
  text-decoration: none;
}
@media (min-width: 992px) {
  .main-menu {
    /* background: linear-gradient(90deg, #ff8f00 0, #ec662a 100%); */
    
  background: linear-gradient(90deg, #535598 0, #3e3f89 100%);
  }
}
@media (min-width: 1000px) {
  .logo {
    max-height: 75px;
  }
}
@media (min-width: 1380px) {
  .logo {
    max-height: 90px;
    margin-right: 1rem;
  }
}
header .show {
  background-color: #ec662a !important;
}
.show li a {
  color: red;
}
.navbar-expand-lg .show .submenu .submenu-bg {
  background-color: #fff;
  color: #000 !important;
  margin-left: 20px;
}
.navbar-expand-lg .show .submenu .submenu-bg li a {
  color: #000 !important;
}
.navbar-expand-lg .show .submenu .submenu-bg li a:hover {
  color: #ec662a !important;
}
.navbar-expand-lg .show .submenu .course-submenu {
  margin-left: -202px;
  margin-top: 30px;
  z-index: 1;
  background-color: #fff;
  color: #000 !important;
  border: 1px solid #ec662a;
}
.navbar-expand-lg .show .submenu .course-submenu li a {
  color: #000 !important;
}
.navbar-expand-lg .show .submenu .course-submenu li a:hover {
  color: #ec662a !important;
}
.main-contact-icon-right-sd {
  position: fixed;
  right: 12px;
  top: 39%;
  z-index: 999;
}
.main-contact-icon-right-sd .call-right {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 3px;
  z-index: 1;
  margin: 5px 0;
  cursor: pointer;
}
.main-contact-icon-right-sd .mail-right {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 3px;
  z-index: 1;
  margin-bottom: 5px;
  cursor: pointer;
}
.main-contact-icon-right-sd .whatsapp-right {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 3px;
  z-index: 1;
  cursor: pointer;
  text-align: center;
  line-height: 42px;
  font-size: 22px;
  background: #1bd741;
  padding: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-contact-icon-right-sd .quick-contact:hover .slide-left {
  opacity: 1;
  transition: ease-in-out 1s;
  width: 200px;
}
.main-contact-icon-right-sd .slide-left {
  position: absolute;
  background: #e9e9e9;
  width: 0;
  height: 42px;
  right: 40px;
  top: 0;
  font-size: 13px;
  line-height: 15px;
  font-weight: 700;
  color: #000;
  padding: 13.5px 15px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  z-index: 0;
  opacity: 0;
  overflow: hidden;
}
a:hover {
  text-decoration: none !important;
  color: #89b5df;
}
.get_a_quote {
  border-radius: 3px;
  position: fixed;
  top: 75%;
  left: 17px;
  right: auto;
  z-index: 999;
  padding: 10px 18px;
  transform: rotate(-90deg);
  /* background: #fa752a; */
  background: #3c3d8a;
  transform-origin: 0;
}
.get_a_quote a {
  color: #fff;
  text-transform: uppercase;
}
.whatsapp-button {
  position: fixed;
  bottom: 5%;
  right: 1%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.whatsapp-button img {
  width: 95px;
  height: 95px;
}
#icon {
  display: block;
}
#text {
  display: none;
}
.not-show-icon #icon {
  display: none;
}
.show-text #text {
  display: block;
}
.page-sidebar-catagery-list {
  border: 1px solid var(--divider-color);
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0px -10px 40px 5px #00000005;
  overflow: hidden;
}
.page-sidebar-catagery-list h3 {
  font-size: 20px;

  font-weight: 600;

  text-transform: capitalize;

  background-color: var(--accent-color);

  color: var(--white-color);

  padding: 20px 30px;
}
.page-sidebar-catagery-list ul {
  list-style: none;
  margin: 0;
  padding: 30px;
}
.page-sidebar-catagery-list ul li {
  line-height: 1.5em;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.page-sidebar-catagery-list ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background: url(../images/arrow-text.svg) no-repeat;
  background-size: auto;
  background-size: cover;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.page-sidebar-catagery-list ul li a {
  position: relative;
  display: block;
  text-transform: capitalize;
  color: var(--text-color);
  padding-right: 30px;
  transition: all 0.3s ease-in-out;
}
.page-sidebar-catagery-list ul li:last-child {
  margin: 0;
  padding: 0;
  border-bottom: none;
}
.sidebar-cta-box {
  position: relative;
  background-image: url(../img/ts1.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 30px;
  text-align: center;
  padding: 40px;
  overflow: hidden;
  z-index: 1;
}
.sidebar-cta-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white-color);
}
.sidebar-cta-box .icon-box,
.sidebar-cta-content {
  position: relative;
  margin-bottom: 40px;
  z-index: 1;
}
.sidebar-cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  opacity: 60%;
  height: 100%;
  width: 100%;
  z-index: 0;
}
.sidebar-cta-content p {
  color: var(--white-color);
  text-transform: capitalize;
  margin-bottom: 15px;
}


/* msg css */
.testimonial-slider-3 {
    width: 100%;
    padding: 50px 0;
}

.testimonial-slider-3 .swiper-slide {
    display: flex;
    justify-content: center;
}

.testimonial-slider-3 .wow {
    max-width: 900px;   /* controls card width */
    width: 100%;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .testimonial-slider-3 .wow {
        max-width: 95%;
    }
}


.video-gallery-image1 {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.video-gallery-image1 figure,
.video-gallery-image1 img {
    width: 100%;
    height: 100%;
    margin: 0;
}

.video-gallery-image1 img {
    object-fit: cover;
    display: block;
}


.video-gallery-image1::after {
    content: "\f06e"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0,0,0,0.65);
    color: white;
    font-size: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.video-gallery-image1:hover::after {
    opacity: 1;
  visibility: visible;
}
/* Black fade overlay */
.video-gallery-image1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 1;
}

/* Fade in on hover */
.video-gallery-image1:hover::before {
    opacity: 1;
}

/* Eye icon fade animation */
.video-gallery-image1::after {
    content: "\f06e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);

    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.247);
    color: white;
    font-size: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

/* Animate icon on hover */
.video-gallery-image1:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
/* ===== BIRTHDAY SECTION LEFT SIDE FIX ===== */
.birthday{
    background:#fff;
    padding:100px 80px;
    position:relative;
    text-align:center;
}

.slide-window{
    overflow:hidden;
    width:100%;
}

.slide-track{
    display:flex;
    transition:0.5s ease;
}

.birthday-card{
    min-width:100%;
    text-align:center;
}

.avatar-circle{
    width:150px;
    height:150px;
    border-radius:50%;
    border:4px solid #1d2c7b;
    margin:20px auto;
    display:flex;
    align-items:center;
    justify-content:center;
}

.avatar-circle i{
    font-size:70px;
    color:#2ecc71;
}

.slide-btn{
    position:absolute;
    top:28%;
    background:#1d2c7b;
    color:white;
    border:none;
    width:45px;
    height:45px;
    border-radius:50%;
    font-size:22px;
    cursor:pointer;
    z-index:10;
}

.slide-btn.prev{ left:30px; }
.slide-btn.next{ right:30px; }

h4{ color:#b30000; }
h5{ color:#000; }
h6{ color:#e74c3c; }




/* new css for bday */
.birthday-slider {
  /* width: 350px; */
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.slide-track {
  display: flex;
  transition: transform 0.6s ease;
}

.birthday-card {
  min-width: 350px;
  text-align: center;
  padding: 15px;
  color: #000;
}



.birthday-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #1d1d6e;
}/** birthday Section End **/


.birthday {
	padding: 75px 30px 0px;
}
.gallery-section-home-in .btn-all img {
    height: 14px;
    margin-top: -3px;
}

.student-slide {
	width: 349px;
	margin: 0 auto
}

.birthday .flag {
	position: absolute;
	top: -35PX;
	left: 20px;
	right: 0;
	margin: 0 auto;
}

.birthday .balloon-left {
	position: absolute;
	    top: 239px;
    left: -15px;
}

.birthday .balloon-left img {
	width: 100%;
	height: 200px;
	border-radius: 0px;
}

.birthday .balloon-right {
	position: absolute;
	top: 243px;
	right: -20px;
	/* top: 248px;
    right: 60px; */
}

.birthday .balloon-right img {
	width: 100%;
	height: 200px;
	border-radius: 0px;
}

.birthday .birthday-block-two {
	padding: 0px 30px;
}

.birthday .birthday-block-two img {
	border-radius: 118px;
	width: 100%;
	object-fit: cover;
	height: 240px;
	object-position: top;
}

.birthday h6 {
	font: normal normal normal 16px / 18px Rubik;
	color: #da251a;
	text-transform: uppercase;
  margin-top: .5rem;
}

.birthday .birthday-block-two h3 {
	text-align: center;
	font: normal normal bold 20px / 24px Rubik;
	letter-spacing: 0.5px;
	color: #1d1d6e;
	text-transform: uppercase;
	opacity: 1;
	margin-top: 7px;
}

.birthday .birthday-block-two h4 {
	text-align: center;
	font: normal normal 600 16px / 20px Rubik;
	color: #fff;
	text-transform: uppercase;
	opacity: 1;
	margin-top: 15px;
}

.birthday .birthday-block-two p {
	text-align: center;
	font: normal normal normal 16px / 22px Rubik;
	letter-spacing: 0px;
	color: #fff;
	text-transform: uppercase;
	opacity: 1;
	margin-top: 8px;
}

.birthday .owl-theme .owl-nav .owl-prev {
	border-radius: 50px;
	position: absolute;
	top: 25%;
	left: -30px;
	height: 40px;
	line-height: 32px;
	width: 40px;
	background: #1d1d6e;
	text-align: center;
}

.birthday .owl-theme .owl-nav .owl-next {
	border-radius: 50px;
	position: absolute;
	top: 25%;
	right: -30px;
	height: 40px;
	line-height: 32px;
	width: 40px;
	background: #1d1d6e;
	text-align: center;
}

@media (max-width:1199px) {

    .slide-btn{
        top: 44%;
        width: 25px;
        height: 25px;
        font-size: 18px;
    }

    .birthday .balloon-left img,
    .birthday .balloon-right img{
        height: 150px;
        width: 100%;
    }

    .birthday .balloon-right{
        top: 243px;
        right: -34px;
    }

    .birthday .flag{
        top: 0;
        left: 20px;
        right: 0;
        margin: 0 auto;
    }
    .slide-btn.prev {
    left: 64px;
}
.slide-btn.next {
    right: 58px;
}
}


@media (max-width:990px){

    .birthday{
        padding: 70px 40px;
    }

    .slide-btn{
        top: 50%;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .slide-btn.prev{ left: 10px; }
    .slide-btn.next{ right: 10px; }

    .birthday .balloon-left,
    .birthday .balloon-right{
        /* hide balloons for tablet */
    }

    .birthday .flag{
        width: 80%;
        left: 10%;
    }
      .slide-btn.prev {
    left: 64px;
}
.slide-btn.next {
    right: 58px;
}
}



/* calender css */
@media (max-width: 768px) {
.birthday-slider {
  /* width: 331px; */
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
    .birthday .flag {
        top: -19px;
        left: 20px;
        right: 0;
        margin: 0 auto;
    }
}

@media (max-width: 448px) {
.birthday .balloon-left, .birthday .balloon-right, .birthday .slide-btn prev, .birthday .slide-btn next{
        display: none;
    }
.birthday .title {
  margin-top: 1rem;
}
.birthday .birthday-card {
    min-width: 335px;
}
.birthday .slide-btn.prev {
        left: 26px;
    }
.birthday .slide-btn.next {
    right: 67px;
}
  .birthday {
        padding: 75px 10px;
    }
}

@media (max-width: 399px) {
  .birthday .slide-btn.prev, .birthday .slide-btn.next{
        display: none;
  }
      .birthday {
        padding: 75px 10px;
    }
}

/* adm css */
.admsn-box-big {
  flex: 0 0 48%;
  background-image: url(../img/adm_img.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 477px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 50px;
  border-radius: 10px;
  overflow: hidden;
}
.admsn-box-big:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-color: #00000096;
  z-index: 0;
}
.admsn-box-big h2 {
  position: relative;
  z-index: 1;
  background-color: #2973ba;
  color: white;
  font-size: 34px;
  font-weight: 500;
  padding: 6px 20px 10px 50px;
  position: relative;
  line-height: 48px;
}
.admsn-box-big h2 span {
  display: block;
  font-size: 30px;
}
.admsn-box-big h2:after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  border-right: 35px solid transparent;
  border-top: 31px solid #2972b9;
  border-left: 4px solid #2972b9;
  border-bottom: 33px solid #2972b9;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  top: 0px;
  right: -38px;
}
.admsn-box-big-cnt {
  position: relative;
  z-index: 1;
  padding-left: 50px;
  padding-right: 50px;
}
.admsn-box-big-cnt p {
  color: white;
  line-height: 28px;
  margin-bottom: 12px;
}
.admsn-box-big-cnt h3 {
  color: white;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 30px;
}
.admsn-box-big-cnt h3 a {
  color: white;
}

.admsn-box-big .blog-item-btn .readmore-btn:hover {
    color: #ffffff !important;
}


/*----------------------------------------*/
/* lofty-app-start */
/*----------------------------------------*/
.app-store-btns {
  width: 100%;
  padding-bottom: 20px;
}

.app-store-btns a {
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  flex-grow: 1;
  flex-basis: 0;
  text-decoration: none;
  color: #000;
  background: #fff;
  background-repeat: no-repeat;
  padding: 6px 12px 6px 44px;
  min-height: 40px;
  font-weight: 400;
  background-position: 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  border-bottom: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.app-store-btns a.apple {
  background-image: url("data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCAzMDUgMzA1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzMDUgMzA1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnIGlkPSJYTUxJRF8yMjhfIj4KCTxwYXRoIGlkPSJYTUxJRF8yMjlfIiBkPSJNNDAuNzM4LDExMi4xMTljLTI1Ljc4NSw0NC43NDUtOS4zOTMsMTEyLjY0OCwxOS4xMjEsMTUzLjgyQzc0LjA5MiwyODYuNTIzLDg4LjUwMiwzMDUsMTA4LjIzOSwzMDUgICBjMC4zNzIsMCwwLjc0NS0wLjAwNywxLjEyNy0wLjAyMmM5LjI3My0wLjM3LDE1Ljk3NC0zLjIyNSwyMi40NTMtNS45ODRjNy4yNzQtMy4xLDE0Ljc5Ny02LjMwNSwyNi41OTctNi4zMDUgICBjMTEuMjI2LDAsMTguMzksMy4xMDEsMjUuMzE4LDYuMDk5YzYuODI4LDIuOTU0LDEzLjg2MSw2LjAxLDI0LjI1Myw1LjgxNWMyMi4yMzItMC40MTQsMzUuODgyLTIwLjM1Miw0Ny45MjUtMzcuOTQxICAgYzEyLjU2Ny0xOC4zNjUsMTguODcxLTM2LjE5NiwyMC45OTgtNDMuMDFsMC4wODYtMC4yNzFjMC40MDUtMS4yMTEtMC4xNjctMi41MzMtMS4zMjgtMy4wNjZjLTAuMDMyLTAuMDE1LTAuMTUtMC4wNjQtMC4xODMtMC4wNzggICBjLTMuOTE1LTEuNjAxLTM4LjI1Ny0xNi44MzYtMzguNjE4LTU4LjM2Yy0wLjMzNS0zMy43MzYsMjUuNzYzLTUxLjYwMSwzMC45OTctNTQuODM5bDAuMjQ0LTAuMTUyICAgYzAuNTY3LTAuMzY1LDAuOTYyLTAuOTQ0LDEuMDk2LTEuNjA2YzAuMTM0LTAuNjYxLTAuMDA2LTEuMzQ5LTAuMzg2LTEuOTA1Yy0xOC4wMTQtMjYuMzYyLTQ1LjYyNC0zMC4zMzUtNTYuNzQtMzAuODEzICAgYy0xLjYxMy0wLjE2MS0zLjI3OC0wLjI0Mi00Ljk1LTAuMjQyYy0xMy4wNTYsMC0yNS41NjMsNC45MzEtMzUuNjExLDguODkzYy02LjkzNiwyLjczNS0xMi45MjcsNS4wOTctMTcuMDU5LDUuMDk3ICAgYy00LjY0MywwLTEwLjY2OC0yLjM5MS0xNy42NDUtNS4xNTljLTkuMzMtMy43MDMtMTkuOTA1LTcuODk5LTMxLjEtNy44OTljLTAuMjY3LDAtMC41MywwLjAwMy0wLjc4OSwwLjAwOCAgIEM3OC44OTQsNzMuNjQzLDU0LjI5OCw4OC41MzUsNDAuNzM4LDExMi4xMTl6IiBmaWxsPSIjMmUyZTJlIi8+Cgk8cGF0aCBpZD0iWE1MSURfMjMwXyIgZD0iTTIxMi4xMDEsMC4wMDJjLTE1Ljc2MywwLjY0Mi0zNC42NzIsMTAuMzQ1LTQ1Ljk3NCwyMy41ODNjLTkuNjA1LDExLjEyNy0xOC45ODgsMjkuNjc5LTE2LjUxNiw0OC4zNzkgICBjMC4xNTUsMS4xNywxLjEwNywyLjA3MywyLjI4NCwyLjE2NGMxLjA2NCwwLjA4MywyLjE1LDAuMTI1LDMuMjMyLDAuMTI2YzE1LjQxMywwLDMyLjA0LTguNTI3LDQzLjM5NS0yMi4yNTcgICBjMTEuOTUxLTE0LjQ5OCwxNy45OTQtMzMuMTA0LDE2LjE2Ni00OS43N0MyMTQuNTQ0LDAuOTIxLDIxMy4zOTUtMC4wNDksMjEyLjEwMSwwLjAwMnoiIGZpbGw9IiMyZTJlMmUiLz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K");
  background-size: 21px 25px;
}

.app-store-btns a.google {
  background-image: url("https://psycatgames.com/images/supporting/google-play.svg");
  background-size: 22px 25px;
}

/*----------------------------------------*/
/* lofty-app-end */
/*----------------------------------------*/

.btn-default1 {
    position: relative;
    display: inline-block;
    background: #2973ba;
    color: var(--white-color);
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    padding: 20px 54px 20px 24px;
    border-radius: 3px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-default1::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    background-image: url(../images/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate(-24px, -50%);
    transition: all 0.4s ease-in-out;
}

/* gal css */
.photo-strip {
    display:flex;
    margin-top: 5rem;
    margin-bottom: 0rem;
    justify-content:center;
    align-items:center;
    gap:0;
    padding:80px 0;
    overflow:hidden;
}

.photo-card {
    width:220px;
    height:280px;
    margin-left:-50px;
    position:relative;
    cursor:pointer;
    transition:all 0.5s ease;
    transform-origin:center bottom;
}

/* Image */
.photo-card img {
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:10px;
    border:6px solid #fff;
    box-shadow:0 15px 40px rgba(0,0,0,0.25);
}

/* Random rotation */
.photo-card:nth-child(1){transform:rotate(-10deg);}
.photo-card:nth-child(2){transform:rotate(8deg);}
.photo-card:nth-child(3){transform:rotate(-5deg);}
.photo-card:nth-child(4){transform:rotate(10deg);}
.photo-card:nth-child(5){transform:rotate(-7deg);}
.photo-card:nth-child(6){transform:rotate(6deg);}
.photo-card:nth-child(7){transform:rotate(-4deg);}
.photo-card:nth-child(8){transform:rotate(8deg);}

/* HOVER EFFECT (2nd Image Look) */
.photo-card:hover {
    transform:rotate(0deg) scale(1.25);
    z-index:999;
}

/* table css */
.thursday-uniform {
  max-width: 1000px;
  margin: auto;
  padding: 25px 15px;
  text-align: center;
}

.thursday-uniform h2 {
  color: #7b2c32;
  margin-bottom: 15px;
  font-weight: 700;
}

.table-wrapper {
  overflow-x: auto;   /* This enables horizontal scrolling */
}

.uniform-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px; /* forces table layout */
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.uniform-table th {
  background: #40418a;
  color: #fff;
  padding: 12px;
  text-align: center;
}

.uniform-table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}

.uniform-table tr:nth-child(even) {
  background: #f9f1f2;
}

.uniform-table tr:hover {
  background: #f2d7da;
}

/* disclosure css */
.school-info-wrapper {
    padding: 20px;
    background: linear-gradient(to right, #e9f7f1, #3ccf8e);
    border-radius: 10px;
}

.school-info-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.school-info-table th {
    background: #0b3c5d;
    color: #ffffff;
    padding: 12px;
    text-align: center;
    font-weight: 600;
}

.school-info-table td {
    border: 1px solid #d9e1e8;
    padding: 12px;
    font-size: 16px;
}

.school-info-table td:first-child {
    text-align: center;
    font-weight: 600;
    width: 80px;
}

.school-info-table tbody tr:nth-child(even) {
    background: #f9fbfc;
}

/* Responsive */
@media (max-width: 768px) {
    .school-info-table th,
    .school-info-table td {
        font-size: 16px;
        padding: 10px;
    }
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    margin-top: 15px;
    background: linear-gradient(135deg, #2ecf56, #28b84c);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.download-icon {
    width: 20px;
    height: 20px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
    animation: bounce 1.5s infinite;
}

/* Icon animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(4px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .download-btn {
        width: 100%;
        justify-content: center;
    }
}
