/* Main CSS
-------------------------------------------------- */
:root {
  --white: #fff;
  --black: #000;
  --color-100: #05285e;
  --color-100: rgb(5, 40, 94);
  --color-200: #19d1d4;
  --color-200: rgb(17, 144, 146);
  --bk-grade-100: #eaeaea;
  --bk-grade-150: #d6d6d6;
  --bk-grade-200: #c1c1c1;
  --bk-grade-250: #adadad;
  --bk-grade-300: #999999;
  --bk-grade-350: #848484;
  --bk-grade-400: #707070;
  --bk-grade-450: #5b5b5b;
  --bk-grade-500: #474747;
  --bk-grade-550: #333333;
  --bk-grade-600: #2d2d2d;
  --bk-grade-650: #282828;
  --bk-grade-700: #232323;
  --bk-grade-750: #1e1e1e;
  --bk-grade-800: #191919;
  --bk-grade-850: #141414;
  --bk-grade-900: #0f0f0f;
  --bk-grade-950: #0a0a0a;
  --primary-font-family: "Open Sans";
  --font-weight-lighter: 200;
  --font-weight-light: 300;
  --font-weight-normal: normal;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: bold;
  --fs-08: 0.75rem;
  --fs-09: 0.875rem;
  --fs-10: 1rem;
  --fs-11: 1.125rem;
  --fs-12: 1.25rem;
  --fs-13: 1.5rem;
  --fs-14: 1.875rem;
  --fs-15: 2rem;
  --fs-16: 2.25rem;
  --fs-17: 2.5rem;
  --fs-18: 2.875rem;
  --fs-19: 3rem;
  --fs-20: 3.25rem;
  --fs-21: 3.5rem;
  --fs-22: 4rem;
  --fs-23: 4.5rem;
  --fs-24: 5rem;
  --fs-25: 5.5rem;
  --fs-26: 6rem;
  --fs-27: 7rem;
  --fs-28: 8rem;
  --fs-29: 9rem;
  --fs-30: 10rem;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Medium.eot");
  src: url("../fonts/OpenSans-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-Medium.woff2") format("woff2"), url("../fonts/OpenSans-Medium.woff") format("woff"), url("../fonts/OpenSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Regular.eot");
  src: url("../fonts/OpenSans-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff"), url("../fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-SemiBold.eot");
  src: url("../fonts/OpenSans-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-SemiBold.woff2") format("woff2"), url("../fonts/OpenSans-SemiBold.woff") format("woff"), url("../fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Bold.eot");
  src: url("../fonts/OpenSans-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-Bold.woff2") format("woff2"), url("../fonts/OpenSans-Bold.woff") format("woff"), url("../fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Light.eot");
  src: url("../fonts/OpenSans-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-Light.woff2") format("woff2"), url("../fonts/OpenSans-Light.woff") format("woff"), url("../fonts/OpenSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: var(--primary-font-family);
  font-weight: normal;
  font-size: 1rem;
}

a,
button {
  transition: 0.3s ease-out;
}

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

a:focus,
button:focus {
  outline: none !important;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

::selection {
  color: var(--white);
  background: var(--color-100);
}

/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-100) var(--white);
}

/* Works on Chrome, Edge, and Safari */
::-webkit-scrollbar {
  width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: var(--color-100);
  border-radius: 20px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(0, 0, 0, 0.4);
}

.form-control:focus {
  box-shadow: none;
}

.return-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--color-100);
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-decoration: none;
  text-align: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: 0.3s ease-out;
  z-index: 10;
}
.return-top img {
  position: relative;
  width: 20px;
  animation: upBounce 2s infinite;
}
.return-top:hover span img {
  top: 5px;
}

.navbar-main {
  position: relative;
  padding: 1rem;
  background-color: var(--white);
  border: 0;
  box-shadow: none;
}
.navbar-main .logo {
  width: 310px;
  margin: 0 auto;
}
.navbar-main .logo img {
  width: 100%;
}
.navbar-main .btn-volunteer {
  color: var(--white);
  padding: 1rem 2.5rem;
  border: 0;
  border-radius: 0;
  font-weight: bold;
  box-shadow: none;
  border: 0;
  background: rgb(5, 40, 94);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgb(5, 40, 94)), color-stop(15%, rgb(17, 144, 146)), color-stop(51%, rgb(25, 209, 212)), color-stop(85%, rgb(17, 144, 146)), color-stop(100%, rgb(5, 40, 94)));
  background: linear-gradient(to right, rgb(5, 40, 94) 0%, rgb(17, 144, 146) 15%, rgb(25, 209, 212) 51%, rgb(17, 144, 146) 85%, rgb(5, 40, 94) 100%);
  background-size: 400% 400%;
  animation: btnGradient 2s ease infinite;
}

.banner-sec {
  position: relative;
}

.banner-cover .carousel .carousel-inner .carousel-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: rgba(0, 0, 0, 0);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.5)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
}
.banner-cover .carousel .carousel-inner .carousel-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
}
.banner-cover .banner-body {
  position: absolute;
  left: 0;
  right: 0;
  top: 70%;
  transform: translateY(-50%);
  z-index: 10;
}

.banner-hd {
  text-align: center;
}
.banner-hd h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: bold;
}
.banner-hd .btn-volunteer {
  color: var(--white);
  padding: 1rem 2.5rem;
  background-color: var(--color-200);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.banner-hd .btn-volunteer:hover {
  background-color: var(--color-100);
}

.content-sec {
  position: relative;
  padding: 6rem 0 6rem;
  overflow: hidden;
}
.content-sec.con-no-pd {
  padding: 0;
}

.section-sec {
  position: relative;
  padding: 6rem 0 6rem;
}
.section-sec.sec-top-pd {
  padding: 6rem 0 3rem;
}
.section-sec.sec-mid-pd {
  padding: 3rem 0 3rem;
}
.section-sec.sec-btm-pd {
  padding: 3rem 0 6rem;
}
.section-sec.sec-no-pd {
  padding: 0;
}

.message-sec {
  position: relative;
  padding: 6rem 0 6rem;
}

.message-cover {
  display: flex;
}
.message-cover .message-img {
  flex: 0 0 430px;
  max-width: 430px;
  margin-left: 4rem;
  order: 2;
}
.message-cover .message-img img {
  width: 100%;
}
.message-cover .message-body {
  flex: 1 1 0;
}
.message-cover .message-body .message-hd {
  margin-bottom: 2rem;
}
.message-cover .message-body .message-hd h4 {
  color: var(--bk-grade-950);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
}
.message-cover .message-body .message-hd h2 {
  color: var(--bk-grade-950);
  font-size: 2.215rem;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
}
.message-cover .message-body .message-hd h5 {
  color: var(--bk-grade-950);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}
.message-cover .message-body p {
  color: var(--bk-grade-950);
  margin: 0 0 1.5rem 0;
}
.message-cover .message-body .message-footer {
  margin-bottom: 2rem;
}
.message-cover .message-body .message-footer h3 {
  color: var(--bk-grade-950);
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
}
.message-cover .message-body .message-footer h6 {
  color: var(--bk-grade-950);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}

.school-sec {
  position: relative;
}

.school-photo img {
  width: 100%;
  min-height: 250px;
  object-fit: cover;
}

.objective-sec {
  position: relative;
  padding: 6rem 0 3rem;
}

.objective-cover .objective-hd {
  margin-bottom: 2rem;
}
.objective-cover .objective-hd h2 {
  color: var(--bk-grade-950);
  font-size: 2.215rem;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
}
.objective-cover figure {
  margin: 0 0 1rem 0;
}
.objective-cover figure img {
  width: 100%;
}
.objective-cover .objective-body p {
  color: var(--bk-grade-950);
  margin: 0;
}

.reason-cover .reason-hd {
  margin-bottom: 2rem;
}
.reason-cover .reason-hd h2 {
  color: var(--bk-grade-950);
  font-size: 2.215rem;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
}

.reason-item figure {
  margin: 0 0 1rem 0;
  overflow: hidden;
}
.reason-item figure img {
  width: 100%;
  transition: 0.3s ease-out;
}
.reason-item .reason-body p {
  color: var(--bk-grade-950);
  margin: 0;
}
.reason-item:hover figure img {
  filter: grayscale(1);
  transform: scale(1.1);
}

.reason-carousel {
  overflow: hidden;
}
.reason-carousel .owl-theme .owl-nav .owl-prev,
.reason-carousel .owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 6rem;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  background-color: var(--color-100);
  background-position: center;
  background-size: 20px;
  background-repeat: no-repeat;
  border-radius: 50%;
  transition: 0.3s ease-out;
}
.reason-carousel .owl-theme .owl-nav .owl-prev {
  left: -2rem;
  background-image: url(../images/arrow-wt-left.svg);
  transform: translate(-50%, -50%);
}
.reason-carousel .owl-theme .owl-nav .owl-next {
  right: -2rem;
  background-image: url(../images/arrow-wt-right.svg);
  transform: translate(50%, -50%);
}
.reason-carousel:hover .owl-theme .owl-nav .owl-prev {
  left: 1.5rem;
}
.reason-carousel:hover .owl-theme .owl-nav .owl-next {
  right: 1.5rem;
}

.service-nav-sec {
  position: relative;
  padding: 3rem 0 1.5rem;
}

.service-nav-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
  border-top: 2px solid var(--color-100);
  border-bottom: 1px solid var(--bk-grade-200);
}
.service-nav-list .service-nav-item {
  flex: 1 1 0;
}

.service-nav-item {
  position: relative;
  padding: 0 0.25rem;
  transition: 0.3s ease-out;
}
.service-nav-item figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.service-nav-item figure::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.5)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
  opacity: 0;
  z-index: 5;
  transition: 0.3s ease-out;
}
.service-nav-item figure img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  transition: 0.3s ease-out;
}
.service-nav-item .service-nav-body {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  z-index: 10;
}
.service-nav-item .service-nav-title {
  min-height: 75px;
  margin-bottom: 1rem;
}
.service-nav-item .service-nav-title h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}
.service-nav-item .btn-explore {
  display: inline-block;
  color: var(--white);
  padding: 0.5rem 1.5rem;
  margin: 0;
  background-color: transparent;
  border: 1px solid var(--white);
  border-radius: 0;
}
.service-nav-item:hover figure::after {
  opacity: 1;
}
.service-nav-item:hover figure img {
  filter: grayscale(1);
  transform: scale(1.1);
}
.service-nav-item:hover .service-nav-body .btn-explore {
  background-color: var(--color-200);
  border: 1px solid var(--color-200);
}

.team-sec {
  position: relative;
  padding: 1.5rem 0 3rem;
}

.team-hd {
  margin-bottom: 3rem;
  text-align: center;
}
.team-hd h2 {
  color: var(--bk-grade-950);
  font-size: 2.215rem;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
}
.team-hd h5 {
  color: var(--bk-grade-950);
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
}

.col-team-01 {
  order: 2;
}

.col-team-02 {
  order: 1;
}

.col-team-03 {
  order: 3;
}

.team-item {
  max-width: 290px;
  margin: 0 auto;
}
.team-item figure {
  padding: 0.35rem;
  margin: 0 0 1rem 0;
  box-shadow: rgba(50, 50, 93, 0.15) 0px 2px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.team-item figure img {
  width: 100%;
}
.team-item .team-body {
  text-align: center;
}
.team-item .team-body h4 {
  color: #002051;
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
}
.team-item .team-body h5 {
  color: #c61818;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
}
.team-item .team-body h6 {
  color: var(--bk-grade-950);
  font-size: 0.875rem;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
}

.team-single-item {
  display: flex;
  position: relative;
  margin-top: 5rem;
}
.team-single-item .team-item {
  padding: 0 0.25rem;
}
.team-single-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 9px;
  height: 80px;
  margin: 0 auto;
  background-image: url(../images/team-single-arrow.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  transform: translateY(-100%);
}

.team-double-item {
  display: flex;
  position: relative;
  margin-top: 4rem;
}
.team-double-item .team-item {
  padding: 0 0.25rem;
}
.team-double-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  max-width: 345px;
  height: 55px;
  margin: 0 auto;
  background-image: url(../images/team-double-arrow.png);
  background-size: 100%;
  transform: translateY(-100%);
  background-repeat: no-repeat;
}

.business-com-sec {
  position: relative;
}

.business-com-cover {
  position: relative;
  padding: 7rem 2rem 7rem;
  background-image: url(../images/business-com-bg.jpg);
  background-size: cover;
}
.business-com-cover .business-com-body {
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.business-com-cover .business-com-body h2 {
  color: var(--white);
  font-size: 2.215rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}
.business-com-cover .business-com-body .btn-download {
  color: var(--white);
  background-color: var(--color-100);
}
.business-com-cover .business-com-body .btn-download:hover {
  background-color: #083d8e;
}

.insta-sec {
  position: relative;
  padding: 3rem 0 3rem;
  border-bottom: 1px solid var(--bk-grade-300);
}

.social-cover {
  display: flex;
  flex-wrap: wrap;
}
.social-cover .social-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex: 1 1 auto;
}
.social-cover .social-item .social-img img {
  max-width: 100%;
}
.social-cover .social-item .social-body {
  flex: 1 1 0;
}
.social-cover .social-item .social-body h3 {
  color: var(--color-200);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}
.social-cover .social-item .social-body P {
  color: var(--bk-grade-950);
  font-size: 1.125rem;
  margin: 0;
}
.social-cover .social-item .social-body a {
  color: var(--bk-grade-950);
  text-decoration: none;
}
.social-cover .social-item .social-body a:hover {
  color: var(--color-200);
}

.testimonial-sec {
  position: relative;
  padding: 3rem 0 3rem;
}

.testimonial-hd {
  margin-bottom: 2rem;
  text-align: center;
}
.testimonial-hd p {
  color: var(--color-100);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}
.testimonial-hd h3 {
  color: #065280;
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0;
}

.testi-carousel .owl-theme .owl-dots .owl-dot span {
  position: relative;
  width: 10px;
  height: 10px;
  background-color: #a1a19d;
  transition: 0.3s ease-out;
}
.testi-carousel .owl-theme .owl-dots .owl-dot span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-100);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.75);
  opacity: 0;
  transition: 0.3s ease-out;
}
.testi-carousel .owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--color-100);
}
.testi-carousel .owl-theme .owl-dots .owl-dot.active span::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.testi-carousel .testi-item {
  position: relative;
  padding: 1.5rem 1.5rem;
  margin: 75px 0 0;
  background-color: #f7f8fc;
  border: 1px solid #eae9e9;
}
.testi-carousel .testi-item .testi-item-hd {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.testi-carousel .testi-item .testi-item-hd .testi-hd {
  flex: 1 1 0;
}
.testi-carousel .testi-item .testi-item-hd .testi-hd h3 {
  color: #065280;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}
.testi-carousel .testi-item .testi-item-hd .testi-profile {
  position: relative;
  flex: 0 0 100px;
  max-width: 100%;
  margin-top: -3rem;
  border-radius: 50%;
}
.testi-carousel .testi-item .testi-item-hd .testi-profile img {
  width: 100%;
  border-radius: 50%;
}
.testi-carousel .testi-item .testi-item-hd .testi-profile .icon {
  position: absolute;
  left: 0;
  top: -15px;
  background-color: #ff0040;
  border-radius: 50%;
}
.testi-carousel .testi-item .testi-body p {
  color: var(--bk-grade-700);
  font-size: 1rem;
  margin: 0 0 1rem 0;
}
.testi-carousel .testi-item .testi-body .testi-name {
  color: var(--bk-grade-950);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}
.testi-carousel .testi-item .testi-body .testi-desig {
  color: var(--bk-grade-450);
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.membership-sec {
  position: relative;
  padding: 3rem 0 6rem;
}

.membership-cover {
  display: flex;
  background-color: #05285e;
}
.membership-cover .membership-body {
  display: flex;
  align-items: center;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 4rem;
}
.membership-cover .membership-form {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 4rem;
  background-color: #002051;
}

.membership-hd .icon {
  width: 64px;
  margin-bottom: 2rem;
}
.membership-hd .icon img {
  width: 100%;
}
.membership-hd h2 {
  color: var(--white);
  font-size: 2.215rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}
.membership-hd p {
  color: var(--white);
  margin: 0;
}

.membership-form .form-control {
  border-radius: 0;
}
.membership-form .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  padding: 0.5rem;
  margin-bottom: 1rem;
}
.membership-form .checkbox-group .checkbox {
  flex: 0 0 33.333%;
}
.membership-form .checkbox {
  position: relative;
  display: inline-block;
  color: var(--white);
  font-size: 1rem;
  padding: 0 0 0 35px;
  margin: 5px 0 5px 0;
  cursor: pointer;
  user-select: none;
}
.membership-form .checkbox input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.membership-form .checkbox input:checked ~ .checkmark {
  background-color: transparent;
  border: solid 1px var(--white);
}
.membership-form .checkbox input:checked ~ .checkmark:after {
  opacity: 1;
  transform: scale(1);
}
.membership-form .checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: solid 1px var(--white);
  border-radius: 0px;
  transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.membership-form .checkbox .checkmark:after {
  left: 1px;
  top: 1px;
  width: 16px;
  height: 16px;
  background: var(--white);
  transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.membership-form .checkbox:hover input ~ .checkmark {
  background-color: transparent;
  border: solid 1px var(--white);
}
.membership-form .checkbox .checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  transform: scale(0);
}
.membership-form .btn-submit {
  display: block;
  width: 100%;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  margin: 0;
  background-color: var(--color-200);
  border: 0;
  border-radius: 0;
}
.membership-form .btn-submit:hover {
  background-color: #1daaac;
}

.footer-sec {
  position: relative;
  padding: 3rem 0 3rem;
  background-color: var(--bk-grade-750);
}

.footer-logo {
  max-width: 50px;
  margin-bottom: 1rem;
}
.footer-logo img {
  width: 100%;
}

.ft-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 1rem;
}
.ft-social li {
  display: inline-block;
}
.ft-social li + li {
  margin-left: 0.5rem;
}
.ft-social li a {
  position: relative;
  display: block;
  color: var(--white);
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
}
.ft-social li a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-200);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0;
  transition: 0.2s ease-out;
}
.ft-social li a i {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 1rem;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.ft-social li a:hover {
  color: #ffffff;
  background-color: var(--color-200);
}
.ft-social li a:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.copyright {
  color: var(--bk-grade-150);
  text-align: right;
}

.album-item {
  position: relative;
  margin-bottom: 0.5rem;
}
.album-item a {
  text-decoration: none;
}
.album-item figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.album-item figure::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  z-index: 5;
  transition: 0.2s ease-out;
}
.album-item figure img {
  width: 100%;
  width: calc(100% + 50px) !important;
  transform: translate3d(-40px, 0, 0);
  filter: grayscale(0);
  transition: 0.2s ease-out;
}
.album-item .album-body {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem 1rem;
  background-color: var(--color-100);
  z-index: 10;
}
.album-item .album-body h5 {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}
.album-item .album-body p {
  color: var(--white);
  font-size: 1.125rem;
  margin: 0;
}
.album-item:hover figure::before {
  opacity: 1;
}
.album-item:hover figure img {
  transform: translate3d(0, 0, 0);
  filter: grayscale(1);
}

.gallery-item {
  margin-bottom: 0.5rem;
}
.gallery-item figure {
  margin: 0;
  background-color: var(--black);
  overflow: hidden;
}
.gallery-item figure img {
  width: 100%;
  transition: 0.3s ease-out;
}
.gallery-item:hover figure img {
  opacity: 0.5;
  transform: scale(1.1);
  filter: grayscale(1);
}

.ins-page-hd {
  margin-bottom: 3rem;
  text-align: center;
}
.ins-page-hd h2 {
  color: var(--bk-grade-950);
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
}
.ins-page-hd h5 {
  color: var(--bk-grade-950);
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
}

/* Loader CSS
-------------------------------------------------- */
.loader-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
  background-position: left top;
  background-repeat: repeat;
  z-index: 99999;
}
.loader-overlay .loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
}
.loader-overlay .loader .logo {
  display: block;
  width: 75px;
  margin: 0 auto 1.5rem;
  animation: spinHorizontal 3s infinite ease-out;
}
.loader-overlay .loader .logo img {
  width: 100%;
}

.loader-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  text-align: center;
  text-transform: uppercase;
}

.loader-txt span {
  color: transparent;
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  text-shadow: 0 0 2px rgba(204, 208, 212, 0.9), 0 15px 25px rgba(0, 0, 0, 0.3), 0 -2px 3px rgba(0, 0, 0, 0.1), 0 -5px 10px rgba(255, 255, 255, 0.5), 0 5px 10px rgba(0, 0, 0, 0.3), 0 3px 4px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.45);
  animation: animate 0.85s ease-in-out infinite alternate;
}

.loader-txt span:nth-child(7) {
  animation-delay: 1.05s;
}

.loader-txt span:nth-child(6) {
  animation-delay: 0.9s;
}

.loader-txt span:nth-child(5) {
  animation-delay: 0.75s;
}

.loader-txt span:nth-child(4) {
  animation-delay: 0.6s;
}

.loader-txt span:nth-child(3) {
  animation-delay: 0.45s;
}

.loader-txt span:nth-child(2) {
  animation-delay: 0.3s;
}

.loader-txt span:nth-child(1) {
  animation-delay: 0.15s;
}

@keyframes animate {
  to {
    text-shadow: 0 0 2px rgba(204, 208, 212, 0.2), 0 0 3px rgba(0, 0, 0, 0.02), 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(255, 255, 255, 0), 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(255, 255, 255, 0), 0 0 0 rgba(255, 255, 255, 0);
  }
}
/* Animations
-------------------------------------------------- */
@keyframes navDown {
  0% {
    transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes upBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@keyframes drop-anim {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes btnGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* RESPONSIVE CSS
-------------------------------------------------- */
@media (min-width: 992px) {
  .col-reason {
    border-left: 1px solid var(--bk-grade-150);
  }
}
@media (min-width: 1280px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    width: 1220px;
    max-width: 1220px;
  }
}
@media (min-width: 1366px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    width: 1320px;
    max-width: 1320px;
  }
}
@media (max-width: 991px) {
  .content-sec {
    padding: 4rem 0 4rem;
  }
  .section-sec {
    padding: 4rem 0 4rem;
  }
  .section-sec.sec-top-pd {
    padding: 4rem 0 2rem;
  }
  .section-sec.sec-mid-pd {
    padding: 2rem 0 2rem;
  }
  .section-sec.sec-btm-pd {
    padding: 2rem 0 4rem;
  }
  .message-sec {
    padding: 4rem 0 4rem;
  }
  .membership-cover .membership-body {
    padding: 2rem;
  }
  .membership-cover .membership-form {
    padding: 2rem;
  }
  .objective-sec {
    padding: 4rem 0 2rem;
  }
  .objective-cover {
    margin-bottom: 2rem;
  }
  .membership-sec {
    padding: 2rem 0 4rem;
  }
  .footer-logo {
    max-width: 150px;
    margin: 0 auto 2rem;
  }
  .ft-social {
    justify-content: center;
  }
  .copyright {
    text-align: center;
  }
  .service-nav-item .service-nav-body {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .navbar-main .logo {
    width: 150px;
  }
  .banner-cover .carousel .carousel-inner .carousel-item img {
    height: 350px;
  }
  .message-cover {
    flex-direction: column;
  }
  .message-cover .message-img {
    flex: unset;
    align-self: center;
    max-width: 350px;
    margin: 0 0 2rem 0;
    order: unset;
  }
  .membership-cover {
    flex-direction: column;
  }
  .membership-cover .membership-body,
  .membership-cover .membership-form {
    flex: unset;
    max-width: unset;
  }
  .social-cover .social-item {
    margin-bottom: 1rem;
  }
  .social-cover .social-item .social-img {
    max-width: 150px;
  }
  .testimonial-hd {
    margin-bottom: 1rem;
  }
  .testi-carousel .testi-item {
    padding: 1.25rem 1.25rem;
    margin: 50px 0 0;
  }
}
@media (max-width: 576px) {
  .banner-hd h1 {
    font-size: 2rem;
  }
  .content-sec {
    padding: 3rem 0 3rem;
  }
  .section-sec {
    padding: 3rem 0 3rem;
  }
  .section-sec.sec-top-pd {
    padding: 3rem 0 2rem;
  }
  .section-sec.sec-mid-pd {
    padding: 2rem 0 2rem;
  }
  .section-sec.sec-btm-pd {
    padding: 2rem 0 3rem;
  }
  .message-cover .message-body .message-hd h2 {
    font-size: 1.875rem;
  }
  .objective-cover .objective-hd h2 {
    font-size: 1.875rem;
  }
  .reason-cover .reason-hd h2 {
    font-size: 1.875rem;
  }
  .service-nav-list .service-nav-item {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 0.5rem;
  }
  .service-nav-item figure img {
    height: 150px;
  }
  .service-nav-item .service-nav-title {
    min-height: 55px;
    margin-bottom: 0.5rem;
  }
  .service-nav-item .service-nav-title h3 {
    font-size: 1.125rem;
  }
  .team-hd h2 {
    font-size: 1.875rem;
  }
  .membership-hd .icon {
    width: 36px;
    margin-bottom: 1rem;
  }
  .membership-hd h2 {
    font-size: 1.875rem;
  }
  .footer-sec {
    padding: 2rem 0 2rem;
  }
  .ins-page-hd h2 {
    font-size: 1.875rem;
  }
  .business-com-cover .business-com-body h2 {
    font-size: 1.875rem;
  }
  .insta-sec {
    padding: 2rem 0 2rem;
  }
  .testimonial-sec {
    padding: 2rem 0 2rem;
  }
  .testimonial-hd p {
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
  }
  .testimonial-hd h3 {
    font-size: 1.875rem;
  }
  .footer-logo {
    max-width: 75px;
  }
}/*# sourceMappingURL=style.css.map */