/* ===================== Table Content Start ======================= 

Project Name 	:  
File 			:  CSS Base
Version 		:  1.0.0
Created     	:  22/11/2022
Author 			:  Pentagon Information Technology

======================== Table Content End ===================== */
/*-- 1. VARIABLES --*/
:root {
  --theme-font: "Lato", sans-serif;
  --title-font: "Montserrat", sans-serif;
  --theme-color: #871c9f;
  --secondary-color: #1e2584;
  --color-yellow: #fbd351;
  --color-gray: #e7e3e5;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-blue: #121755;
}

/*-- 2. MIXIN --*/
/*-- 3. MEDIA QUERIES --*/
/*-- 4. RESET --*/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--theme-font);
  scroll-behavior: smooth;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  position: relative;
  z-index: 1;
}
body::-webkit-scrollbar {
  width: 0px;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--color-blue);
  outline: 1px solid var(--color-blue);
}

ul {
  margin: 0;
  padding: 0;
  display: block;
}

li {
  list-style: none;
  font-family: var(--theme-font);
}

a,
a:hover,
a:focus,
button,
button:focus {
  outline: none !important;
  text-decoration: none;
  color: inherit;
  box-shadow: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

p {
  font-family: var(--theme-font);
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  font-family: var(--title-font);
}

p {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  font-family: inherit;
  font-weight: normal;
  margin-bottom: 15px;
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
  height: auto;
  border-style: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

svg {
  vertical-align: middle;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.is_relative {
  position: relative;
}

section,
div,
footer {
  scroll-margin-top: 0px;
}

.o-hidden {
  overflow: hidden;
}

/* cursor styles */
.cursor-pointer-bg {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: difference;
  will-change: transform;
}
@media (max-width: 766px) {
  .cursor-pointer-bg {
    display: none;
  }
}

.cursor {
  background-color: #871c9f;
  height: 50px;
  width: 50px;
  will-change: transform;
  transition: transform 300ms ease-in-out;
  transition: background-color 0.3s;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  pointer-events: none;
  border-radius: 9999px;
}

.splitting .char {
  position: relative;
  display: inline-block;
  z-index: 1;
  animation-name: wheee;
  animation-duration: 2.2s;
  animation-delay: calc(var(--char-index) * -0.5s);
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  transform-origin: 50% 100%;
  -webkit-text-stroke-color: #131313;
}

.splitting .char:nth-child(2n) {
  --name: wheee-alt;
}

@keyframes wheee {
  from {
    transform: translate(2%, -12%) rotate(-2deg);
  }
  to {
    transform: translate(-2%, 6%) rotate(4deg);
  }
}
@keyframes wheee-alt {
  from {
    transform: translate(0%, -6%) rotate(-2deg);
  }
  to {
    transform: translate(2%, 12%) rotate(4deg);
  }
}
/* button-animation */
@keyframes slidebg {
  to {
    background-position: 1000px;
  }
}
/* social icons-animation */
@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.card {
  border: none;
  border-radius: 0 !important;
}

.load-complete .sec1 {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  z-index: 9999;
  transition: all 400ms;
}
.load-complete.hides .sec1 {
  top: 100%;
  transition: all 1s;
}

header {
  padding: 15px 0;
  position: relative;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 400ms;
}
header:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 100%;
  z-index: -9;
  background: #ffffff;
  transition: all 500ms;
}
@media (max-width: 575px) {
  header {
    position: relative;
  }
}
header .head-left {
  position: relative;
  z-index: 9;
}
header .head-left a svg,
header .head-left a img {
  width: 150px;
}
@media (max-width: 1499px) {
  header .head-left a svg,
  header .head-left a img {
    width: 120px;
  }
}
header .head-right {
  display: flex;
  align-items: center;
  justify-content: end;
}
header .head-right .menu_bar .menu_bar_nav {
  display: block;
  position: relative;
}
header .head-right .menu_bar .menu_bar_nav_item {
  display: inline-block;
}
header .head-right .menu_bar .menu_bar_nav_item:last-child {
  background: var(--color-yellow);
  margin-left: 30px;
}
@media (max-width: 1499px) {
  header .head-right .menu_bar .menu_bar_nav_item:last-child {
    margin-left: 15px;
  }
}
@media (max-width: 991px) {
  header .head-right .menu_bar .menu_bar_nav_item:last-child {
    margin-left: 0;
  }
}
header .head-right .menu_bar .menu_bar_nav_item:last-child a {
  padding: 20px;
}
@media (max-width: 991px) {
  header .head-right .menu_bar .menu_bar_nav_item:last-child a {
    padding: 15px 50px;
  }
}
@media (max-width: 766px) {
  header .head-right .menu_bar .menu_bar_nav_item:last-child a {
    padding: 15px 30px;
  }
}
@media (max-width: 575px) {
  header .head-right .menu_bar .menu_bar_nav_item:last-child a {
    padding: 15px 16px;
  }
}
header .head-right .menu_bar .menu_bar_nav_item:last-child a:before, header .head-right .menu_bar .menu_bar_nav_item:last-child a:after {
  display: none;
}
header .head-right .menu_bar .menu_bar_nav_item:last-child:hover {
  background: var(--secondary-color);
}
header .head-right .menu_bar .menu_bar_nav_item:last-child:hover a {
  color: #fff;
}
header .head-right .menu_bar .menu_bar_nav_item_link {
  color: var(--secondary-color);
  font-size: 16px;
  font-family: var(--title-font);
  padding: 10px;
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
}
@media (max-width: 1499px) {
  header .head-right .menu_bar .menu_bar_nav_item_link {
    padding: 15px;
  }
}
header .head-right .menu_bar .menu_bar_nav_item_link:before {
  position: absolute;
  content: "";
  left: 25px;
  top: 0;
  width: 0%;
  background: var(--theme-color);
  height: 1px;
  transition: all 400ms;
}
@media (max-width: 991px) {
  header .head-right .menu_bar .menu_bar_nav_item_link:before {
    display: none;
  }
}
header .head-right .menu_bar .menu_bar_nav_item_link:after {
  position: absolute;
  content: "";
  right: 25px;
  bottom: 0;
  width: 0%;
  background: var(--theme-color);
  height: 1px;
}
@media (max-width: 991px) {
  header .head-right .menu_bar .menu_bar_nav_item_link:after {
    display: none;
  }
}
header .head-right .menu_bar .menu_bar_nav_item_link:hover:before, header .head-right .menu_bar .menu_bar_nav_item_link:hover:after {
  width: 40%;
  transition: all 400ms;
}
header .head-right .menu_bar .menu_bar_nav_item_link:hover:after {
  transition: all 600ms;
}
@media (max-width: 1499px) {
  header .head-right .menu_bar .menu_bar_nav_item_link {
    font-size: 14px;
  }
}
header .head-right .menu_bar .menu_bar_nav_item_link:hover, header .head-right .menu_bar .menu_bar_nav_item_link.active {
  color: #000;
}
@media (max-width: 991px) {
  header .head-right .menu_bar .menu_bar_nav_item_link {
    border-bottom: 1px solid #eeeeee;
    padding: 15px 50px;
  }
}
@media (max-width: 766px) {
  header .head-right .menu_bar .menu_bar_nav_item_link {
    padding: 15px 30px;
  }
}
@media (max-width: 575px) {
  header .head-right .menu_bar .menu_bar_nav_item_link {
    padding: 15px 16px;
  }
}
header .head-right .menu_bar .menu_bar_nav_item.dropdown {
  position: relative;
  padding: 0 20px;
}
@media (max-width: 1280px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown {
    padding: 0 10px;
  }
}
@media (max-width: 991px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown {
    padding: 0;
  }
}
header .head-right .menu_bar .menu_bar_nav_item.dropdown i {
  margin-left: 0px;
}
header .head-right .menu_bar .menu_bar_nav_item.dropdown span.dropicon {
  position: absolute;
  right: 10px;
  top: 10px;
}
@media (max-width: 1499px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown span.dropicon {
    top: 13px;
    right: 15px;
  }
}
@media (max-width: 1280px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown span.dropicon {
    right: 5px;
  }
}
@media (max-width: 991px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown span.dropicon {
    width: 25px;
    height: 25px;
    text-align: center;
    cursor: pointer;
    right: 50px;
  }
}
@media (max-width: 766px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown span.dropicon {
    right: 30px;
  }
}
@media (max-width: 575px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown span.dropicon {
    right: 16px;
  }
}
header .head-right .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu {
  position: absolute;
  display: block !important;
  visibility: hidden;
  opacity: 0;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
  transform: translateY(20px);
  transform-origin: left top;
  padding: 40px 0 0 10px;
  border-radius: 0px;
  margin: 0;
  min-width: 200px;
  border: 0;
}
@media (max-width: 1499px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu {
    padding: 28px 0 0 10px;
  }
}
header .head-right .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu_item {
  display: block;
  height: 100%;
  text-align: left;
}
header .head-right .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu_item_link {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: var(--theme-color);
  color: #fff;
  padding: 10px;
  border-bottom: 1px solid rgba(238, 238, 238, 0.15);
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}
header .head-right .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu_item_link:hover {
  background-color: var(--secondary-color);
  color: #fff;
}
@media (max-width: 1499px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu_item_link {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu_item_link {
    padding: 10px 50px;
  }
}
@media (max-width: 766px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu_item_link {
    padding: 10px 30px;
  }
}
@media (max-width: 575px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu_item_link {
    padding: 10px 16px;
  }
}
header .head-right .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu_item.next-dropdown-sub {
  position: relative;
}
header .head-right .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu_item.next-dropdown-sub .dropdown_submenu {
  position: absolute;
  left: 190px;
  top: 0;
  width: 230px;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 500ms;
  padding: 0;
}
@media (max-width: 991px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu_item.next-dropdown-sub .dropdown_submenu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: translateX(0);
    width: 100%;
    height: 0;
  }
}
@media (max-width: 991px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu_item.next-dropdown-sub .dropdown_submenu li a {
    background: #4d4c4c;
  }
}
header .head-right .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu_item.next-dropdown-sub .dropdown_submenu.show {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
  height: auto;
}
@media (max-width: 991px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu_item.next-dropdown-sub span.dropicon {
    top: 6px;
  }
}
header .head-right .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu_item.next-dropdown-sub span.dropicon i {
  color: #fff;
  transform: rotate(-90deg);
}
@media (max-width: 991px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu_item.next-dropdown-sub span.dropicon i {
    transform: rotate(0deg);
  }
}
@media (min-width: 992px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu_item.next-dropdown-sub:hover .dropdown_submenu {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
    transition: all 500ms;
    padding: 0;
  }
}
@media (max-width: 991px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu {
    position: relative;
    height: 0;
    padding: 0;
  }
}
header .head-right .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu.show {
  visibility: visible;
  opacity: 1;
  height: auto;
  transform: translateY(0px);
}
header .head-right .menu_bar .menu_bar_nav_item.dropdown.active a {
  color: var(--theme-color);
}
header .head-right .menu_bar .menu_bar_nav_item.dropdown.active ul.dropdown_menu li a {
  color: #fff;
}
@media (min-width: 992px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown:hover .dropdown_menu {
    visibility: visible;
    opacity: 1;
    height: auto;
    transform: translateY(0px);
  }
}
@media (min-width: 1281px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown.login-button {
    right: 10px;
    position: absolute;
    padding: 0;
    top: 3px;
  }
  header .head-right .menu_bar .menu_bar_nav_item.dropdown.login-button > a {
    width: 100%;
    height: 55px;
    background-color: #000;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
  }
  header .head-right .menu_bar .menu_bar_nav_item.dropdown.login-button > a:hover {
    background-color: #000;
    color: #fff;
  }
  header .head-right .menu_bar .menu_bar_nav_item.dropdown.login-button .dropdown_menu_item {
    text-align: right;
  }
}
@media (max-width: 1499px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown.login-button > a {
    font-size: 13px;
    height: 50px;
  }
}
@media (max-width: 1280px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown.login-button > a {
    font-size: 13px;
    height: auto;
  }
}
header .head-right .menu_bar .menu_bar_nav_item.dropdown.login-button .dropdown_menu {
  left: auto;
  right: 0;
}
header .head-right .menu_bar .menu_bar_nav_item.dropdown.login-button:hover .dropdown_menu {
  visibility: visible;
  opacity: 1;
  height: auto;
  transform: translateY(10px);
  transform-origin: right top;
}
@media (max-width: 1499px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown.login-button {
    top: 5px;
  }
}
@media (max-width: 1280px) {
  header .head-right .menu_bar .menu_bar_nav_item.dropdown.login-button {
    top: auto;
  }
}
@media (max-width: 991px) {
  header .head-right .menu_bar .menu_bar_nav_item {
    display: block;
    text-align: left;
    padding: 0;
  }
  header .head-right .menu_bar .menu_bar_nav_item:last-child .menu_bar_nav_item_link {
    border: none;
  }
}
@media (max-width: 991px) {
  header .head-right .menu_bar {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 0px;
    border-top: 1px solid rgba(112, 112, 112, 0.15);
    display: block;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    transform: translateY(20px);
    transform-origin: left top;
    transition: all 400ms ease;
    -webkit-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
  }
  header .head-right .menu_bar.open-nav {
    transform: translateY(0px);
    visibility: visible;
    opacity: 1;
    overflow: visible;
  }
}
header .head-right .nav-icon-5 {
  width: 30px;
  height: 22px;
  margin: 0px;
  position: relative;
  cursor: pointer;
  display: none;
}
header .head-right .nav-icon-5 span {
  background-color: #000;
  position: absolute;
  border-radius: 2px;
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 2px;
  transition-duration: 500ms;
}
header .head-right .nav-icon-5 span:nth-child(1) {
  top: 0px;
  left: 0px;
}
header .head-right .nav-icon-5 span:nth-child(2) {
  top: 10px;
  left: 0px;
  opacity: 1;
}
header .head-right .nav-icon-5 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
}
@media (max-width: 991px) {
  header .head-right .nav-icon-5 {
    display: inline-block;
  }
}
header .head-right .nav-icon-5.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 13px;
}
header .head-right .nav-icon-5.open span:nth-child(2) {
  opacity: 0;
}
header .head-right .nav-icon-5.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 13px;
}
header.follow {
  padding: 10px 0;
  transition: all 400ms;
  position: fixed;
}
header.follow:after {
  bottom: 0;
  transition: all 500ms;
  border-bottom: 1px solid #eee;
}
@media (max-width: 575px) {
  header.follow {
    position: fixed;
    transition: all 1s;
  }
}
header.follow .head-left a svg {
  width: 120px;
}
header.follow .head-right .menu_bar .menu_bar_nav_item_link {
  font-size: 14px;
}
header.follow .head-right .menu_bar .menu_bar_nav_item .dropdown_menu {
  padding-top: 28px;
}
@media (max-width: 1499px) {
  header.follow .head-right .menu_bar .menu_bar_nav_item .dropdown_menu {
    padding-top: 20px;
  }
}
@media (max-width: 1499px) {
  header {
    padding: 15px 0;
  }
}

footer {
  background: var(--color-gray);
  padding: 100px 0 50px;
}
@media (max-width: 575px) {
  footer {
    padding: 50px 0;
  }
}
footer .foot-left h2 {
  margin-bottom: 30px;
}
footer .foot-left .detail {
  margin-bottom: 30px;
}
footer .foot-left .detail h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  footer .foot-left .detail h4 {
    font-size: 18px;
  }
}
footer .foot-left .detail p {
  font-size: 18px;
  margin: 10px 0;
}
@media (max-width: 991px) {
  footer .foot-left {
    text-align: center;
  }
}
footer .foot-right {
  display: flex;
  align-items: center;
  justify-content: end;
}
footer .foot-right .social-icons h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 30px;
}
footer .foot-right .social-icons ul {
  display: flex;
}
footer .foot-right .social-icons ul li a {
  background: var(--secondary-color);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
footer .foot-right .social-icons ul li a svg {
  width: 25px;
  height: 25px;
  fill: var(--color-gray);
}
footer .foot-right .social-icons ul li a:hover {
  background: var(--theme-color);
}
footer .foot-right .social-icons ul li a:hover svg {
  animation: slide-in-top 0.3s both;
}
@media (max-width: 1499px) {
  footer .foot-right .social-icons ul li a {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  footer .foot-right .social-icons ul li a svg {
    width: 15px;
    height: 15px;
  }
}
footer .foot-right .social-icons ul li:last-child a {
  margin-right: 0;
}
@media (max-width: 991px) {
  footer .foot-right {
    text-align: center;
    justify-content: center;
  }
}
footer .copyyright {
  position: relative;
  padding-top: 30px;
  margin-top: 30px;
  flex-direction: row-reverse;
}
footer .copyyright:before {
  position: absolute;
  content: "";
  left: 15px;
  right: 15px;
  top: 0;
  background: var(--secondary-color);
  height: 1px;
}
footer .foot-btm p {
  font-size: 18px;
  margin: 0;
}
@media (max-width: 1499px) {
  footer .foot-btm p {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  footer .foot-btm p {
    text-align: center;
    margin: 30px auto 0px;
    padding-top: 30px;
    border-top: 1px solid #ccc;
  }
}
footer .foot-btm ul {
  display: flex;
  justify-content: end;
}
footer .foot-btm ul li {
  display: inline-block;
  padding-left: 30px;
}
footer .foot-btm ul li a {
  font-size: 18px;
}
@media (max-width: 1499px) {
  footer .foot-btm ul li a {
    font-size: 15px;
  }
}
footer .foot-btm ul li:hover a {
  color: var(--theme-color);
}
@media (max-width: 991px) {
  footer .foot-btm ul {
    display: block;
  }
  footer .foot-btm ul li {
    display: block;
    padding: 10px 0;
    text-align: center;
  }
}
@media (max-width: 991px) {
  footer {
    padding-bottom: 30px;
  }
}
footer .donate-now {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9;
}
@media (max-width: 575px) {
  footer .donate-now {
    left: -40px;
    bottom: -50px;
  }
}
footer .donate-now svg {
  width: 140px;
  height: 200px;
}
@media (max-width: 991px) {
  footer .donate-now svg {
    width: 110px;
    height: 140px;
  }
}
@media (max-width: 575px) {
  footer .donate-now svg {
    width: 130px;
    height: 150px;
  }
}

.circle {
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  border-radius: 15px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

h2 {
  font-size: 45px;
  line-height: 55px;
  font-family: var(--title-font);
  font-weight: 800;
  color: var(--secondary-color);
}
@media (max-width: 1499px) {
  h2 {
    font-size: 39px;
    line-height: 55px;
  }
}
@media (max-width: 1280px) {
  h2 {
    font-size: 35px;
    line-height: 50px;
  }
}
@media (max-width: 766px) {
  h2 {
    font-size: 25px;
    line-height: 35px;
  }
}

.main-content {
  padding: 100px 0;
}
@media (max-width: 1499px) {
  .main-content {
    padding: 80px 0;
  }
}
@media (max-width: 1280px) {
  .main-content {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 100%;
    padding: 0 50px;
  }
}
@media (max-width: 766px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}

.them-btn {
  font-size: 17px;
  position: relative;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  background: var(--theme-color);
  font-family: var(--title-font);
  padding: 20px 40px;
  z-index: 9;
  display: inline-block;
}
.them-btn:hover {
  color: #fff;
  transition: all 1s;
  background: var(--secondary-color);
}
@media (max-width: 1499px) {
  .them-btn {
    font-size: 14px;
    padding: 15px 30px;
  }
}

.space {
  height: 30px;
}

.home-slider {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.home-slider .hero-slider {
  width: 100%;
  height: 87vh;
  display: flex;
  position: relative;
}
.home-slider .hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}
.home-slider .hero-slider .swiper-slide .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover !important;
  background-position: center !important;
  z-index: 1;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .home-slider .hero-slider .swiper-slide .slide-inner {
    align-items: end;
    padding-bottom: 30px;
  }
}
@media (max-width: 766px) {
  .home-slider .hero-slider .swiper-slide .slide-inner {
    padding-bottom: 50px;
  }
}
.home-slider .hero-slider .swiper-slide .slide-inner .meta.container {
  position: relative;
  z-index: 9;
  padding-top: 100px;
}
@media (max-width: 1499px) {
  .home-slider .hero-slider .swiper-slide .slide-inner .meta.container {
    padding-top: 0;
  }
}
@media (max-width: 991px) {
  .home-slider .hero-slider .swiper-slide .slide-inner .meta.container {
    text-align: center;
    padding: 0 50px;
  }
}
@media (max-width: 766px) {
  .home-slider .hero-slider .swiper-slide .slide-inner .meta.container {
    padding: 0 15px;
  }
}
.home-slider .hero-slider .swiper-slide .slide-inner .slide-text {
  margin-bottom: 40px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
}
.home-slider .hero-slider .swiper-slide .slide-inner .slide-text span {
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 35px;
  padding: 0 5px;
  display: inline-block;
}
.home-slider .hero-slider .swiper-slide .slide-inner .slide-title {
  max-width: 55%;
  position: relative;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
}
.home-slider .hero-slider .swiper-slide .slide-inner .slide-title h1 {
  font-size: 58px;
  line-height: 75px;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: capitalize;
}
.home-slider .hero-slider .swiper-slide .slide-inner .slide-title h1 span {
  display: block;
}
@media (max-width: 766px) {
  .home-slider .hero-slider .swiper-slide .slide-inner .slide-title h1 span {
    display: inline-block;
  }
}
@media (max-width: 1499px) {
  .home-slider .hero-slider .swiper-slide .slide-inner .slide-title h1 {
    font-size: 50px;
    line-height: 65px;
  }
}
@media (max-width: 1280px) {
  .home-slider .hero-slider .swiper-slide .slide-inner .slide-title h1 {
    font-size: 40px;
    line-height: 55px;
  }
}
@media (max-width: 766px) {
  .home-slider .hero-slider .swiper-slide .slide-inner .slide-title h1 {
    font-size: 25px;
    line-height: 35px;
  }
}
@media (max-width: 991px) {
  .home-slider .hero-slider .swiper-slide .slide-inner .slide-title {
    max-width: 80%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
@media (max-width: 766px) {
  .home-slider .hero-slider .swiper-slide .slide-inner .slide-title {
    max-width: 100%;
    margin-bottom: 15px;
  }
}
.home-slider .hero-slider .swiper-slide .slide-inner .slide-discription p {
  width: 50%;
  color: #fffafa;
  letter-spacing: 0.5px;
  font-size: 22px;
  margin-bottom: 60px;
  line-height: 40px;
  font-weight: 400;
}
@media (max-width: 1499px) {
  .home-slider .hero-slider .swiper-slide .slide-inner .slide-discription p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1280px) {
  .home-slider .hero-slider .swiper-slide .slide-inner .slide-discription p {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .home-slider .hero-slider .swiper-slide .slide-inner .slide-discription p {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
@media (max-width: 766px) {
  .home-slider .hero-slider .swiper-slide .slide-inner .slide-discription p {
    width: 100%;
    font-size: 17px;
  }
}
.home-slider .hero-slider .swiper-slide .slide-inner .slide-discription p span {
  display: block;
}
@media (max-width: 991px) {
  .home-slider .hero-slider .swiper-slide .slide-inner .slide-discription {
    text-align: center;
  }
}
.home-slider .hero-slider .swiper-slide .slide-inner::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
}
.home-slider .hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.home-slider .hero-slider .swiper-button-prev,
.home-slider .hero-slider .swiper-button-next {
  background: transparent;
  width: 55px;
  height: 55px;
  line-height: 53px;
  margin-top: -30px;
  text-align: center;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  border-radius: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.home-slider .hero-slider:hover .swiper-button-prev,
.home-slider .hero-slider:hover .swiper-button-next {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.home-slider .hero-slider .swiper-button-prev {
  left: 25px;
  transform: translateX(50px);
}
.home-slider .hero-slider .swiper-button-prev::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(../images/arrow-prev.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 15px;
  height: 15px;
}
.home-slider .hero-slider .swiper-button-next {
  right: 25px;
  transform: translateX(-50px);
}
.home-slider .hero-slider .swiper-button-next::before {
  content: "";
  color: #d4d3d3;
  display: inline-block;
  vertical-align: middle;
  background-image: url(../images/arrow-next.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 15px;
  height: 15px;
}
.home-slider .hero-slider .swiper-pagination {
  bottom: 50px;
  text-align: left;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}
@media (max-width: 991px) {
  .home-slider .hero-slider .swiper-pagination {
    display: none;
  }
}
.home-slider .hero-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  text-align: right;
  line-height: 12px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: var(--secondary-color);
  border: none;
  transition: all 0.2s ease;
}
@media (max-width: 575px) {
  .home-slider .hero-slider .swiper-pagination-bullet {
    background-color: var(--color-white);
  }
}
.home-slider .hero-slider .swiper-pagination-bullet-active {
  background-color: var(--color-yellow);
}

.about .container {
  position: relative;
}
.about .container:after {
  position: absolute;
  content: "";
  left: 15px;
  right: 15px;
  bottom: -100px;
  background: var(--theme-color);
  height: 1px;
}
@media (max-width: 1499px) {
  .about .container:after {
    bottom: -80px;
  }
}
@media (max-width: 1280px) {
  .about .container:after {
    bottom: -50px;
  }
}
.about .about-left h4 {
  color: var(--theme-color);
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 50px;
}
@media (max-width: 1499px) {
  .about .about-left h4 {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .about .about-left h4 {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
.about .about-left h2 {
  width: 94%;
}
@media (max-width: 991px) {
  .about .about-left h2 {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
@media (max-width: 766px) {
  .about .about-left h2 {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .about .about-left {
    text-align: center;
  }
}
.about .about-right {
  padding-left: 100px;
}
.about .about-right p {
  font-size: 18px;
  line-height: 35px;
  color: var(--color-black);
  font-weight: 700;
  letter-spacing: 0.5px;
}
@media (max-width: 1499px) {
  .about .about-right p {
    font-size: 15px;
    line-height: 30px;
  }
}
.about .about-right button {
  border: none;
  background: transparent;
  color: #fff;
}
.about .about-right a {
  margin-top: 20px;
  display: inline-block;
}
@media (max-width: 1499px) {
  .about .about-right {
    padding-left: 50px;
  }
}
@media (max-width: 991px) {
  .about .about-right {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    text-align: center;
  }
}

.how-we-serve .title {
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .how-we-serve .title {
    text-align: center;
    margin-bottom: 30px;
  }
}
.how-we-serve .service-cont .service-detail {
  background: var(--color-gray);
  position: relative;
  z-index: 9;
}
.how-we-serve .service-cont .service-detail:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 100%;
  bottom: 0;
  background: var(--secondary-color);
  transition: all 700ms;
  z-index: -9;
}
.how-we-serve .service-cont .service-detail figure {
  margin: 0;
  overflow: hidden;
}
.how-we-serve .service-cont .service-detail figure .bg {
  margin-bottom: 0px;
  min-height: 230px;
  background-size: cover !important;
  overflow: hidden;
  transition: all 400ms;
}
.how-we-serve .service-cont .service-detail .content {
  text-align: center;
  padding: 50px;
}
.how-we-serve .service-cont .service-detail .content h4 {
  font-size: 18px;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 15px;
}
.how-we-serve .service-cont .service-detail .content h4 span {
  display: block;
}
@media (max-width: 1280px) {
  .how-we-serve .service-cont .service-detail .content h4 {
    font-size: 16px;
  }
}
.how-we-serve .service-cont .service-detail .content p {
  font-size: 17px;
  line-height: 30px;
  color: var(--color-black);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 30px;
}
@media (max-width: 1499px) {
  .how-we-serve .service-cont .service-detail .content p {
    font-size: 15px;
  }
}
@media (max-width: 1280px) {
  .how-we-serve .service-cont .service-detail .content p {
    line-height: 26px;
  }
}
@media (max-width: 1499px) {
  .how-we-serve .service-cont .service-detail .content {
    padding: 30px;
  }
}
.how-we-serve .service-cont .service-detail .content a:hover {
  background: var(--color-yellow);
  color: #000;
}
.how-we-serve .service-cont .service-detail:hover:after {
  top: 0;
  transition: all 1s;
}
.how-we-serve .service-cont .service-detail:hover figure .bg {
  transform: scale(1.1);
  transition: all 400ms;
}
.how-we-serve .service-cont .service-detail:hover .content h4,
.how-we-serve .service-cont .service-detail:hover .content p {
  color: #fff;
}

@media (max-width: 1600px) {
  .our-pgm-page .service-cont .service-detail .content {
    padding: 30px;
  }
}
@media (max-width: 1366px) {
  .our-pgm-page .service-cont .service-detail .content {
    padding: 25px;
  }
}
@media (max-width: 1366px) {
  .our-pgm-page .service-cont .service-detail .content h4 {
    margin-bottom: 10px;
  }
}
.our-pgm-page .service-cont .service-detail .content h4 span {
  display: inline-block;
}
@media (max-width: 1366px) {
  .our-pgm-page .service-cont .service-detail .content p {
    line-height: 25px;
  }
}
.our-pgm-page .service-cont .service-detail .content .them-btn {
  position: absolute;
  bottom: 30px;
  width: 210px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-width: 1366px) {
  .our-pgm-page .service-cont .service-detail .content .them-btn {
    bottom: 25px;
  }
}

.join-us {
  background-size: cover !important;
  background-attachment: fixed !important;
  padding: 100px;
  text-align: center;
  position: relative;
  color: #fff;
}
.join-us:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--secondary-color);
  opacity: 0.8;
}
.join-us .container {
  position: relative;
  z-index: 9;
}
.join-us .container h3 {
  font-size: 45px;
  font-weight: 600;
}
@media (max-width: 1499px) {
  .join-us .container h3 {
    font-size: 30px;
  }
}
.join-us .container h2 {
  color: #fff;
  margin: 30px 0;
}
.join-us .container h2 span {
  display: block;
}
.join-us .container p {
  font-size: 20px;
  line-height: 45px;
  font-weight: 700;
  letter-spacing: 1px;
  width: 60%;
  margin: 0 auto 30px;
}
@media (max-width: 1499px) {
  .join-us .container p {
    font-size: 15px;
    line-height: 30px;
  }
}
@media (max-width: 991px) {
  .join-us .container p {
    width: 100%;
  }
}
.join-us .container a:hover {
  background: var(--color-yellow);
  color: #000;
}
@media (max-width: 1499px) {
  .join-us {
    padding: 100px;
  }
}
@media (max-width: 1280px) {
  .join-us {
    padding: 80px;
  }
}
@media (max-width: 766px) {
  .join-us {
    padding: 80px 50px;
  }
}
@media (max-width: 575px) {
  .join-us {
    padding: 50px 30px;
  }
}

.campaigns .title {
  margin-bottom: 50px;
}
.campaigns .title h2 {
  text-align: center;
}
@media (max-width: 991px) {
  .campaigns .title {
    margin-bottom: 30px;
  }
}
.campaigns .campaign-slider .service-detail figure {
  position: relative;
  overflow: hidden;
}
.campaigns .campaign-slider .service-detail figure .bg {
  background-size: cover !important;
  height: 270px;
  transition: all 400ms;
}
.campaigns .campaign-slider .service-detail figure .name {
  position: absolute;
  left: 0;
  bottom: 50px;
  padding: 10px 25px;
  background: var(--color-yellow);
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 18px;
  transition: all 1s;
  transform: translateX(-100%);
  text-transform: uppercase;
}
.campaigns .campaign-slider .service-detail figure .name.right {
  left: auto;
  right: 0;
  bottom: auto;
  top: 50px;
  transform: translateX(100%);
}
.campaigns .campaign-slider .service-detail .content h4 {
  font-size: 18px;
  line-height: 35px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .campaigns .campaign-slider .service-detail .content h4 {
    font-size: 15px;
    line-height: 30px;
  }
}
.campaigns .campaign-slider .service-detail .content ul {
  display: flex;
  justify-content: space-between;
}
.campaigns .campaign-slider .service-detail .content ul li {
  color: red;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
}
.campaigns .campaign-slider .service-detail .content ul li span {
  display: block;
  color: #000;
}
@media (max-width: 1499px) {
  .campaigns .campaign-slider .service-detail .content ul li {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .campaigns .campaign-slider .service-detail .content ul li {
    font-size: 14px;
  }
}
.campaigns .campaign-slider .service-detail .content .progress-line {
  background: var(--color-gray);
  height: 20px;
  margin: 30px 0 0;
  position: relative;
  z-index: 9;
}
.campaigns .campaign-slider .service-detail .content .progress-line:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  transition: all 1s;
  background: var(--theme-color);
}
.campaigns .campaign-slider .service-detail .content .progress-line.second:before {
  width: 0%;
  transition: all 1.5;
}
.campaigns .campaign-slider .service-detail:hover figure .bg {
  transform: scale(1.1);
  transition: all 400ms;
}
.campaigns .campaign-slider .service-detail:hover figure .name {
  transform: translateX(0);
  transition: all 1s;
}
.campaigns .campaign-slider.animated .service-detail .content .progress-line:before {
  width: 52%;
  transition: all 1s;
  transition-delay: 1s;
}
.campaigns .campaign-slider.animated .service-detail .content .progress-line.second:before {
  width: 98%;
  transition: all 1.5;
  transition-delay: 1.5s;
}
.campaigns .more-btn {
  margin: 80px 0 0;
  text-align: center;
}
.campaigns .more-btn.campaign-sec {
  text-align: left;
  margin: 40px 0 0;
}

.campaign-description {
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .campaign-description {
    margin-bottom: 20px;
  }
}
.campaign-description .title h2 {
  margin-bottom: 50px;
}
.campaign-description .campaign-out {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
@media (max-width: 991px) {
  .campaign-description .campaign-out {
    flex-direction: column;
    gap: 20px;
  }
}
.campaign-description .campaign-out .left {
  width: 50%;
}
@media (max-width: 991px) {
  .campaign-description .campaign-out .left {
    width: 100%;
  }
}
.campaign-description .campaign-out .left figure {
  position: relative;
  overflow: hidden;
  margin: 0 0 20px;
}
.campaign-description .campaign-out .left figure .bg {
  background-size: cover !important;
  background-position: center !important;
  height: 400px;
  transition: all 400ms;
}
.campaign-description .campaign-out .left .content h4 {
  font-size: 18px;
  line-height: 35px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .campaign-description .campaign-out .left .content h4 {
    font-size: 15px;
    line-height: 30px;
  }
}
.campaign-description .campaign-out .left .content ul {
  display: flex;
  justify-content: space-between;
}
.campaign-description .campaign-out .left .content ul li {
  color: red;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
}
.campaign-description .campaign-out .left .content ul li span {
  display: block;
  color: #000;
}
@media (max-width: 1499px) {
  .campaign-description .campaign-out .left .content ul li {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .campaign-description .campaign-out .left .content ul li {
    font-size: 14px;
  }
}
.campaign-description .campaign-out .left .content .progress-line {
  background: var(--color-gray);
  height: 20px;
  margin: 30px 0 0;
  position: relative;
  z-index: 9;
}
.campaign-description .campaign-out .left .content .progress-line:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  transition: all 1s;
  background: var(--theme-color);
}
.campaign-description .campaign-out .left .content .progress-line.second:before {
  width: 0%;
  transition: all 1.5;
}
.campaign-description .campaign-out .left:hover figure .bg {
  transform: scale(1.1);
  transition: all 400ms;
}
.campaign-description .campaign-out .left:hover figure .name {
  transform: translateX(0);
  transition: all 1s;
}
.campaign-description .campaign-out .right {
  width: 50%;
}
@media (max-width: 991px) {
  .campaign-description .campaign-out .right {
    width: 100%;
    text-align: center;
  }
}
.campaign-description .campaign-out .right h4 {
  color: var(--secondary-color);
  font-size: 25px;
  margin-bottom: 30px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .campaign-description .campaign-out .right h4 {
    font-size: 25px;
  }
}
.campaign-description .campaign-out .right p {
  line-height: 30px;
  margin: 0;
}
.campaign-description .campaign-out .right .more-btn {
  text-align: left;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .campaign-description .campaign-out .right .more-btn {
    text-align: center;
  }
}
.campaign-description .campaign-out .right .more-btn a {
  padding: 20px;
  font-size: 14px;
}
.campaign-description .space {
  margin: 60px 0;
  height: 1px;
  background: #eee;
}
.campaign-description.animated .left .content .progress-line:before {
  width: 52%;
  transition: all 1s;
  transition-delay: 1s;
}
.campaign-description.animated .left .content .progress-line.second:before {
  width: 98%;
  transition: all 1.5;
  transition-delay: 1.5s;
}

#dheeksha,
#aleena,
#varshith {
  scroll-margin-top: 350px;
}

.inner-banner {
  height: 75vh;
}
.inner-banner .bg {
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}
.inner-banner .bg .content {
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 0px;
}
@media (max-width: 991px) {
  .inner-banner .bg .content {
    align-items: end;
    padding-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .inner-banner .bg .content {
    padding-bottom: 20px;
  }
}
.inner-banner .bg .content h1 {
  font-size: 60px;
  line-height: 85px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 1499px) {
  .inner-banner .bg .content h1 {
    font-size: 50px;
    line-height: 55px;
  }
}
@media (max-width: 1280px) {
  .inner-banner .bg .content h1 {
    font-size: 30px;
    line-height: 35px;
  }
}
@media (max-width: 991px) {
  .inner-banner .bg .content h1 {
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 766px) {
  .inner-banner .bg .content h1 {
    font-size: 26px;
    line-height: 30px;
  }
}
.inner-banner .bg .content h1 span {
  display: block;
}
@media (max-width: 766px) {
  .inner-banner .bg .content {
    width: 100%;
  }
}
.inner-banner.how-we-serve .bg {
  background-position: 50% 17% !important;
}
@media (max-width: 1499px) {
  .inner-banner {
    height: 83vh;
  }
}
@media (max-width: 1280px) {
  .inner-banner {
    height: 70vh;
  }
}
@media (max-width: 575px) {
  .inner-banner {
    height: 30vh;
  }
}
.inner-banner.sponsorship-inner-banner {
  height: 20vh;
  background: #000;
}
.inner-banner.sponsorship-inner-banner .bg {
  background: #1e2584 !important;
}
.inner-banner.sponsorship-inner-banner .bg .content {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 991px) {
  .inner-banner.sponsorship-inner-banner .bg .content {
    padding-bottom: 0;
  }
}
.inner-banner.sponsorship-inner-banner .bg .content h1 {
  font-size: 30px;
}
@media (max-width: 766px) {
  .inner-banner.sponsorship-inner-banner .bg .content h1 {
    font-size: 25px;
  }
}
@media (max-width: 991px) {
  .inner-banner.sponsorship-inner-banner .bg .content ul {
    text-align: center;
    width: 100%;
    padding-top: 20px;
  }
}
@media (max-width: 991px) and (max-width: 766px) {
  .inner-banner.sponsorship-inner-banner .bg .content ul {
    padding-top: 10px;
  }
}
.inner-banner.sponsorship-inner-banner .bg .content ul li {
  display: inline-block;
  margin-right: 15px;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}
@media (max-width: 766px) {
  .inner-banner.sponsorship-inner-banner .bg .content ul li {
    width: 100%;
  }
}
@media (max-width: 766px) {
  .inner-banner.sponsorship-inner-banner .bg .content ul li:nth-child(2) {
    display: none;
  }
}

.description {
  text-align: center;
}
.description .container {
  position: relative;
}
.description .container:after {
  position: absolute;
  content: "";
  left: 15px;
  right: 15px;
  bottom: -100px;
  background: var(--theme-color);
  height: 1px;
}
@media (max-width: 1499px) {
  .description .container:after {
    bottom: -100px;
  }
}
@media (max-width: 1280px) {
  .description .container:after {
    bottom: -80px;
  }
}
@media (max-width: 991px) {
  .description .container:after {
    bottom: -50px;
  }
}
.description p {
  font-size: 20px;
  line-height: 35px;
  color: var(--color-black);
  font-weight: 700;
  letter-spacing: 0.5px;
  width: 70%;
  margin: 0 auto 50px;
}
@media (max-width: 1499px) {
  .description p {
    font-size: 18px;
  }
}
@media (max-width: 1280px) {
  .description p {
    line-height: 26px;
  }
}
@media (max-width: 991px) {
  .description p {
    width: 100%;
  }
}
.description button {
  border: none;
}
.description .tab-content h3 {
  color: #000;
  font-size: 30px;
  font-weight: 500;
}

.corporate-sponsorship .top-cnt h2 {
  margin-bottom: 20px;
}
.corporate-sponsorship .top-cnt p {
  margin-bottom: 15px;
  width: 75%;
}
@media (max-width: 991px) {
  .corporate-sponsorship .top-cnt p {
    width: 100%;
  }
}
.corporate-sponsorship .top-cnt button {
  margin-top: 20px;
}

@media (max-width: 991px) {
  .list-cnt-out .list-cnt {
    text-align: center;
  }
}
.list-cnt-out .list-cnt .top-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .list-cnt-out .list-cnt .top-title {
    flex-direction: column;
  }
}
.list-cnt-out .list-cnt .top-title h4 {
  font-size: 30px;
  font-weight: 700;
  color: var(--theme-color);
  text-transform: uppercase;
}
@media (max-width: 766px) {
  .list-cnt-out .list-cnt .top-title h4 {
    font-size: 25px;
  }
}
.list-cnt-out .list-cnt .top-title .price {
  color: #1e2584;
  font-weight: 700;
  font-size: 30px;
}
@media (max-width: 766px) {
  .list-cnt-out .list-cnt .top-title .price {
    font-size: 25px;
  }
}
.list-cnt-out .list-cnt ul {
  margin-bottom: 30px;
}
.list-cnt-out .list-cnt ul li {
  color: #000;
  font-size: 18px;
  padding: 10px 0;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 991px) {
  .list-cnt-out .list-cnt ul li {
    text-align: center;
    padding-left: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-size: 15px;
  }
}
.list-cnt-out .list-cnt ul li:before {
  position: absolute;
  content: "*";
  left: 0;
  top: 11px;
  font-size: 25px;
}
@media (max-width: 991px) {
  .list-cnt-out .list-cnt ul li:before {
    display: none;
  }
}
.list-cnt-out .list-cnt a.link {
  color: #1e2584;
  font-weight: 600;
  position: relative;
}
.list-cnt-out .list-cnt a.link:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -7px;
  background: #1e2584;
  height: 1px;
}
.list-cnt-out .list-cnt button {
  border: none;
}
.list-cnt-out .list-cnt button a {
  font-size: 14px;
  padding: 20px;
}
.list-cnt-out .line hr {
  border: none;
  border-bottom: 1px solid #eee;
  margin: 70px 0;
  opacity: 1;
}
@media (max-width: 766px) {
  .list-cnt-out .line hr {
    margin: 40px 0;
  }
}
.list-cnt-out .bottom-cnt h4 {
  text-align: center;
  color: #000;
  font-size: 20px;
  font-weight: 500;
}
.list-cnt-out .bottom-cnt .additional-donation {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 766px) {
  .list-cnt-out .bottom-cnt .additional-donation {
    gap: 10px;
  }
}
.list-cnt-out .bottom-cnt .additional-donation .box-cnt {
  border: 1px solid rgb(30, 37, 132);
  padding: 40px 25px;
  border-radius: 10px;
  width: 23%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 1799px) {
  .list-cnt-out .bottom-cnt .additional-donation .box-cnt {
    width: 22%;
  }
}
@media (max-width: 991px) {
  .list-cnt-out .bottom-cnt .additional-donation .box-cnt {
    width: 47%;
  }
}
@media (max-width: 766px) {
  .list-cnt-out .bottom-cnt .additional-donation .box-cnt {
    width: 48%;
    padding: 25px;
  }
}
.list-cnt-out .bottom-cnt .additional-donation .box-cnt h4 {
  color: rgb(135, 28, 159);
  font-size: 20px;
  font-weight: 500;
}
.list-cnt-out .bottom-cnt .additional-donation .box-cnt:hover, .list-cnt-out .bottom-cnt .additional-donation .box-cnt.active {
  background: #1e2584;
}
.list-cnt-out .bottom-cnt .additional-donation .box-cnt:hover h4, .list-cnt-out .bottom-cnt .additional-donation .box-cnt.active h4 {
  color: #fff;
}
.list-cnt-out .bottom-cnt .additional-donation .box-cnt-last {
  width: 100%;
  margin: 30px 0px 0px;
  text-align: center;
}
.list-cnt-out .bottom-cnt .additional-donation .box-cnt-last h6 {
  color: rgb(0, 0, 0);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}
.list-cnt-out .bottom-cnt .additional-donation .box-cnt-last form .input-field {
  width: 300px;
  position: relative;
  margin: 20px auto 50px;
}
.list-cnt-out .bottom-cnt .additional-donation .box-cnt-last form .input-field svg {
  position: absolute;
  width: 25px;
  height: 25px;
  left: 0px;
  top: 7px;
}
.list-cnt-out .bottom-cnt .additional-donation .box-cnt-last form .input-field input {
  border: none;
  border-bottom: 1px solid rgb(210, 210, 210);
  width: 100%;
  height: 40px;
  text-align: center;
  font-size: 25px;
  outline: none;
}
.list-cnt-out .bottom-cnt .additional-donation .box-cnt-last form button {
  border: none;
}
.list-cnt-out .bottom-cnt .additional-donation .box-cnt-last form button a {
  background: rgb(30, 37, 132);
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 17px;
  color: rgb(255, 255, 255);
  transition: all 400ms ease 0s;
}
.list-cnt-out .space {
  margin: 30px 0;
}
@media (max-width: 991px) {
  .list-cnt-out .space {
    height: 1px;
    background: #eee;
  }
}
.list-cnt-out .icons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-cnt-out .icons figure {
  width: 100%;
  margin: 0;
  text-align: center;
}
.list-cnt-out .icons img {
  width: 50%;
}

#mission {
  scroll-margin-top: 200px;
}

.how-we-des .container:after {
  display: none;
}

.who-we-content .left img {
  width: 100%;
}
.who-we-content .right {
  display: flex;
  align-items: center;
}
.who-we-content .right p {
  font-size: 18px;
  line-height: 35px;
  color: var(--color-black);
  font-weight: 700;
  letter-spacing: 0.5px;
  padding-left: 100px;
}
@media (max-width: 1499px) {
  .who-we-content .right p {
    font-size: 15px;
    padding-left: 50px;
  }
}
@media (max-width: 1280px) {
  .who-we-content .right p {
    line-height: 26px;
  }
}
@media (max-width: 991px) {
  .who-we-content .right p {
    padding-left: 0;
    text-align: center;
    margin-top: 30px;
  }
}

.mission {
  background: var(--theme-color);
  text-align: center;
}
.mission h2 {
  color: #fff;
  text-align: center;
}
.mission p {
  font-size: 20px;
  line-height: 35px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  width: 45%;
  margin: 30px auto;
}
@media (max-width: 1499px) {
  .mission p {
    font-size: 15px;
    width: 70%;
  }
}
@media (max-width: 1280px) {
  .mission p {
    line-height: 26px;
  }
}
@media (max-width: 991px) {
  .mission p {
    width: 100%;
  }
}
.mission button {
  background: none;
  border: none;
}
.mission button a {
  background: var(--secondary-color);
}
.mission button a:hover {
  background: var(--color-yellow);
  color: #000;
}

.about-join {
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  min-height: 600px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
}
.about-join:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--secondary-color);
  z-index: -9;
  opacity: 0.6;
}
.about-join h2 {
  color: #fff;
  text-align: center;
  width: 60%;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 991px) {
  .about-join h2 {
    width: 100%;
  }
}
.about-join p {
  font-size: 20px;
  line-height: 35px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  width: 55%;
  margin: 30px auto;
}
@media (max-width: 1499px) {
  .about-join p {
    font-size: 15px;
    width: 80%;
  }
}
@media (max-width: 1280px) {
  .about-join p {
    line-height: 26px;
  }
}
@media (max-width: 991px) {
  .about-join p {
    width: 100%;
  }
}
.about-join button {
  background: none;
  border: none;
}
.about-join button a {
  background: var(--secondary-color);
}
.about-join button a:hover {
  background: var(--theme-color);
}
.about-join.malnourishment-join:before {
  opacity: 0.8;
}
@media (max-width: 1499px) {
  .about-join {
    min-height: 600px;
  }
}
@media (max-width: 991px) {
  .about-join {
    min-height: 100%;
    padding: 80px 50px;
  }
}
@media (max-width: 766px) {
  .about-join {
    padding: 80px 30px;
  }
}
@media (max-width: 575px) {
  .about-join {
    min-height: 100%;
    padding: 50px 30px;
  }
}

.medical .top {
  text-align: center;
  margin-bottom: 40px;
}
.medical .top h2 {
  margin-bottom: 20px;
}
.medical .top h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-color);
}
.medical figure {
  background-size: cover !important;
  background-position: top !important;
  height: 600px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .medical figure {
    height: 350px;
  }
}
.medical p {
  font-size: 18px;
  line-height: 35px;
  color: var(--color-black);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 1499px) {
  .medical p {
    font-size: 15px;
  }
}
@media (max-width: 1280px) {
  .medical p {
    line-height: 26px;
    width: 70%;
  }
}
@media (max-width: 991px) {
  .medical p {
    width: 100%;
  }
}
.medical .content-outer {
  margin-top: 50px;
}
.medical .content-outer .detail {
  margin-bottom: 25px;
}
.medical .content-outer .detail .cnt {
  background: #fff;
  padding: 40px;
}
.medical .content-outer .detail .cnt h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
  border-bottom: 1px solid #fbd351;
  padding-bottom: 25px;
}
.medical .content-outer .detail .cnt h5 span {
  display: block;
}
@media (max-width: 1280px) {
  .medical .content-outer .detail .cnt h5 {
    font-size: 18px;
    line-height: 26px;
  }
}
.medical .content-outer .detail .cnt p {
  padding: 0;
  width: 100%;
  text-align: left;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 1px;
  font-weight: 400;
}
@media (max-width: 991px) {
  .medical .content-outer .detail .cnt p {
    text-align: center;
  }
}
@media (max-width: 1280px) {
  .medical .content-outer .detail .cnt {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .medical .content-outer .detail .cnt {
    text-align: center;
  }
}
.medical .content-outer.medical-cordination .detail .cnt {
  background: #f7f7f7;
}
.medical.bg {
  background: #f7f7f7;
}

.program-obj {
  background: var(--theme-color);
}
.program-obj h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}
.program-obj .details .cnt {
  padding: 40px;
  color: #fff;
  margin: 15px 0;
  background: #811e97;
}
.program-obj .details .cnt h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 1px solid #9629af;
  padding-bottom: 25px;
  color: #fff;
}
.program-obj .details .cnt h5 span {
  display: block;
}
@media (max-width: 991px) {
  .program-obj .details .cnt h5 {
    font-size: 18px;
  }
}
.program-obj .details .cnt p {
  font-size: 17px;
  line-height: 32px;
  letter-spacing: 1px;
}
@media (max-width: 991px) {
  .program-obj .details .cnt {
    padding: 30px;
  }
}

.cancer .description {
  text-align: center;
}
.cancer .description h4 {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  color: var(--theme-color);
}
@media (max-width: 1499px) {
  .cancer .description h4 {
    font-size: 26px;
    line-height: 30px;
  }
}
.cancer .description p {
  width: 100%;
}

.donate-campaign .top {
  text-align: center;
  margin-bottom: 60px;
}
.donate-campaign .top h3 {
  font-size: 25px;
  font-weight: 500;
  color: var(--theme-color);
}
@media (max-width: 1499px) {
  .donate-campaign .top {
    margin-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .donate-campaign .top {
    margin-bottom: 30px;
  }
}
.donate-campaign .left .content h4 {
  font-size: 18px;
  line-height: 35px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
}
.donate-campaign .left .content ul {
  display: flex;
  justify-content: space-between;
}
.donate-campaign .left .content ul li {
  color: red;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
}
.donate-campaign .left .content ul li span {
  display: block;
  color: #000;
}
.donate-campaign .left .content .progress-line {
  background: var(--color-gray);
  height: 20px;
  margin: 30px 0 0;
  position: relative;
  z-index: 9;
}
.donate-campaign .left .content .progress-line:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  transition: all 1s;
  background: var(--theme-color);
}
.donate-campaign .right p {
  font-size: 18px;
  line-height: 35px;
  color: var(--color-black);
  font-weight: 700;
  letter-spacing: 0.5px;
  padding-left: 100px;
}
@media (max-width: 1499px) {
  .donate-campaign .right p {
    font-size: 15px;
    line-height: 30px;
    padding-left: 50px;
  }
}
@media (max-width: 991px) {
  .donate-campaign .right p {
    padding: 0;
    margin-top: 30px;
    text-align: center;
  }
}

.share-campaign {
  background: var(--color-gray);
}
.share-campaign .right p {
  padding-left: 0;
  padding-right: 100px;
}
@media (max-width: 1499px) {
  .share-campaign .right p {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .share-campaign .right p {
    padding: 0;
    text-align: center;
    margin: 0;
    margin-bottom: 30px;
  }
}

.contact .container:after {
  display: none;
}
.contact .cnt-form {
  width: 80%;
  margin: 0 auto;
}
.contact .cnt-form form {
  display: flex;
  flex-wrap: wrap;
  margin: 50px auto 0;
  justify-content: space-between;
}
.contact .cnt-form form .input-field {
  width: 49%;
  margin-bottom: 2%;
}
.contact .cnt-form form .input-field input,
.contact .cnt-form form .input-field textarea {
  background: #f5f5f5;
  border: none;
  padding: 20px 30px;
  width: 100%;
  color: #000;
  outline: none;
}
.contact .cnt-form form .input-field input::-moz-placeholder, .contact .cnt-form form .input-field textarea::-moz-placeholder {
  font-size: 17px;
  color: #000;
}
.contact .cnt-form form .input-field input::placeholder,
.contact .cnt-form form .input-field textarea::placeholder {
  font-size: 17px;
  color: #000;
}
.contact .cnt-form form .input-field.textarea {
  width: 100%;
}
.contact .cnt-form form .input-field.textarea textarea {
  height: 200px;
}
@media (max-width: 575px) {
  .contact .cnt-form form .input-field {
    width: 100%;
  }
}
.contact .cnt-form form .form-submit {
  width: 100%;
}
.contact .cnt-form form .form-submit button {
  color: #fff;
}
@media (max-width: 991px) {
  .contact .cnt-form {
    width: 100%;
  }
}/*# sourceMappingURL=theme_style.css.map */