@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow/Barlow-Regular.ttf");
  font-weight: 500;
}

@font-face {
  font-family: "Tinos";
  src: url("../fonts/Tinos/Tinos-Bold.ttf"); 
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost/Jost-Bold.ttf"); 
}

:root{
  --theme-color: #ED1162;
  --secondary-color: #1F1E3B;
  --text-color: #000;
  --title-color: #0e2a4e;
  --text-font: 'Barlow', sans-serif;
  --title-font: 'Tinos', sans-serif;
  --sub-title: 'Jost', sans-serif;
}

body {
    color: var(--text-color);
    font-family: var(--text-font);
    font-size: 18px;
}
h1,h2,h3,h4,h5,h6{
  position:relative;
  font-family: var(--title-font);  
  transition: all 500ms ease;
}
.sub-title, .btn {
    position:relative;
  font-family: var(--sub-title);  
  transition: all 500ms ease;
}
.btn {
    font-size: 1.2rem;
}
.bg-primary {
    background: var(--theme-color) !important;
}
.bg-dark {
    background-color: #212529 !important;
}
.rounded {
    border-radius: 5px !important;
}
.carousel-inner, .carousel-item {
    height: 600px;
}
.carousel-inner:before {
    background-image: url(../img/banner-overlay.png);
}
.carousel-inner:before {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 100px;
    content: "";
    background-size: contain;
    z-index: 2;
    background-repeat: repeat-x;
}
/*.carousel-caption .display-3{ 
  text-shadow: 0 1px 0 #ccc,
               0 2px 0 #c9c9c9,
               0 3px 0 #bbb,
               0 4px 0 #b9b9b9,
               0 5px 0 #aaa,
               0 6px 1px rgba(0,0,0,.1),
               0 0 5px rgba(0,0,0,.1),
               0 1px 3px rgba(0,0,0,.3),
               0 3px 5px rgba(0,0,0,.2),
               0 5px 10px rgba(0,0,0,.25),
               0 10px 10px rgba(0,0,0,.2),
               0 20px 20px rgba(0,0,0,.15);
}
.carousel-caption .description{
    text-shadow: -2px 0px 0 #101118, -2px 2px 0 #0a0e27;    
}*/
.sub-title { 
    letter-spacing: 1px; 
} 
.sub-title:before {
    position: absolute;
    content: '';
    width: 30px;
    height: 2px;
    left: 0px;
    top: 11px;
    background: var(--theme-color);
}
.aboutUs .image-box {
    position: relative;
    display: block;
   margin-right: 30px;
    padding-right: 30px;
    padding-bottom: 32px;
}

.image-box .image {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}
.image-box .text {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 202px;
   /* border-radius: 10px;
    padding: 31px 30px 39px 30px;
    z-index: 1;*/
}
.image-box .image:before {
    position: absolute;
    top: 0;
    left: -88%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
    z-index: 1;
}

.sectionBg {
    background-color: transparent;
     background: linear-gradient(180deg, rgba(31, 30, 59, 1) 50%, rgba(255, 255, 255, .5) 50%), url(../img/home_2_bg.jpg) center center no-repeat;
/*    background-image: linear-gradient(180deg, #143248 50%, #FFFFFF 50%);*/
/*background:linear-gradient(180deg, #143248 63.75%, #FFFFFF 36.25%) ;*/
    /*background: linear-gradient(180deg, #143248 63.75%, #FFFFFF 36.25%), url('https://wp1.themevibrant.com/newwp/wellson/wp-content/uploads/2023/11/service-17-295x239.jpg') bottom center no-repeat;
    background-repeat: ;
    background-position:  !important;*/
    background-size: cover;
}
.aboutUs .sub-title:after {
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    right: 0px;
    top: 11px;
}
.sub-title:after {
    position: absolute;
    content: '';
    width: 30px;
    height: 2px;
    right: 0px;
    top: 11px;
}
.sub-title:after {
    background: var(--theme-color);

}

.sub-title {
    padding-right: 40px;
}

.service-block-one .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.10);
  text-align: center;
}

.service-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover .image-box{
  background: var(--secondary-color);
}

.service-block-one .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover .image-box img{
  transform: scale(1.05);
  opacity: 0.3;
}
 
.service-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: var(--title-color);
}

.service-block-one .inner-box .lower-content h3 a:hover{

}

.service-block-one .inner-box .lower-content p{
  position: relative;
  font-size: 17px;
  line-height: 24px;
  padding-bottom: 26px;
}

.service-block-one .inner-box .lower-content p:before{
  position: absolute;
  content: '';
  width: 34px;
  height: 2px;
  left: 50%;
  margin-left: -17px;
  bottom: 0px;
}
.service-block-one .inner-box .lower-content p:before {
    height: 3px;
    background: #d90429;
}

/** video-section **/

.video-section{
  position: relative;
  overflow: hidden;
  padding: 122px 0px 127px 0px;
}

.video-section .bg-layer{
    background-image: url(../img/sahajanand-aadhyatmika-gopal-niwas.jpeg);
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

}

.video-section .bg-layer:before{
  position: absolute;
  content: '';
  background: #1F1E3B;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.7;
}

.video-section .inner-box{
  position: relative;
  display: block;
}
 

.video-section .inner-box .btn-box{
  position: relative;
  display: flex;
  align-items: center;
}

.video-section .inner-box .btn-box .theme-btn-two{
  margin-right: 90px;
}

.video-section .inner-box .btn-box .video-btn{
  position: relative;
  display: inline-block;
  width: 62px;
  height: 62px;
  line-height: 60px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
}

.video-section .inner-box .btn-box .video-btn:before{
  position: absolute;
  content: '';
  border: 1px solid #fff;
  width: 70px;
  height: 70px;
  left: -4px;
  top: -4px;
  border-radius: 50%;
  opacity: 0.7;
}

.video-section .inner-box .btn-box .video-btn:after {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  position: absolute;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.video-section .inner-box .btn-box .video-btn:after{
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.theme-btn-two{
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  color: #242424 !important;
  text-align: center;
  background: #fff;
  padding: 16px 34px 15px 35px;
  z-index: 1;
  border-radius: 5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 500ms ease;
}

.info-list li {
    display: inline-flex;
    line-height: 26px;
    color: #979496;
    margin-bottom: 11px;
}
/********** Template CSS **********/

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 500;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
    background: var(--theme-color);
    border-color: var(--theme-color);
}
.btn-primary:hover {
    color: var(--theme-color);
    background-color: var(--bs-white);
    border-color: var(--theme-color);
}
.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}
.text-primary {
    color: var(--theme-color) !important;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-weight: normal;
}

.icon-box-primary,
.icon-box-light {
    position: relative;
    padding: 0 0 10px 10px;
    z-index: 1;
}

.icon-box-primary i,
.icon-box-light i {
    font-size: 60px;
    line-height: 0;
}

.icon-box-primary::before,
.icon-box-light::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    left: 0;
    bottom: 0;
    border-radius: 35px;
    transition: .5s;
    z-index: -1;
}

.icon-box-primary::before {
    background: var(--bs-primary);
}

.icon-box-light::before {
    background: var(--bs-light);
}


/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: var(--bs-dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--theme-color);
}
.dropdown-item.active, .dropdown-item:active,
.dropdown-item:hover, .dropdown-item:focus {
    background-color: var(--theme-color);
    color: #fff;
}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .sticky-top {
        margin-top: -45px;
    }

    .navbar {
        /*height: 68px;*/
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.main .card-image {  
  padding-top: 70%;  
}
.main .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card .view-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.card {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 30px;
}

.view-btn a {
    position: relative;
    display: inline-block;
    width: 58px;
    height: 58px;
    line-height: 58px;
    background: #fff;
    font-size: 18px;
    color: var(--theme-color);
    text-align: center;
    border-radius: 50%;
    transform: scale(0, 0);
}
.card:hover .view-btn a {
    transform: scale(1, 1);
}
a {
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.card:hover .card-image {
    background: var(--theme-color);
}
.card .card-image {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    transition: all 500ms ease;
}
.card .card-image img {
    width: 100%;
    border-radius: 10px;
    transition: all 500ms ease;
}
.card:hover .card-image img {
    opacity: 0.1;
    transform: scale(1.05);
}
/*** Header ***/
@media (min-width: 992px) {
    .header-carousel,
    .page-header {
        margin-top: -91px;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(31, 30, 59, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--theme-color);
    border: 15px solid var(--theme-color);
}

@media (max-width: 767.98px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(90deg, rgba(2,18,30,1) 60%, rgba(2,18,30,0.052043498063287785) 100%);
/*    background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), ;*/
    background-size: cover;
}

.aboutHeader {
    background: linear-gradient(90deg, rgb(2 18 30 / 94%) 30%, rgb(2 18 30 / 0%) 100%), url(../img/banners/aboutus.jpeg) right center no-repeat;
}
.facilities {
    background: linear-gradient(90deg, rgb(2 18 30 / 94%) 30%, rgb(2 18 30 / 0%) 100%), url(../img/banners/facilities.jpg) right center no-repeat;
}

.photo-gallery {
    background: linear-gradient(90deg, rgb(2 18 30 / 94%) 30%, rgb(2 18 30 / 0%) 100%), url(../img/banners/photo-gallery.jpg) right center no-repeat;
}
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}



/*** Features ***/
.feature {
    background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/feature.jpg) left center no-repeat;
    background-size: cover;
}

.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.experience .progress {
    height: 5px;
}

.experience .progress .progress-bar {
    width: 0px;
    transition: 3s;
}

.experience .nav-pills .nav-link {
    color: var(--dark);
}

.experience .nav-pills .nav-link.active {
    color: #FFFFFF;
}

.experience .tab-content hr {
    width: 30px;
}

.cta-section{
  position: relative;
}
.cta-section .inner-container {
    background: var(--theme-color);
}
.cta-section .inner-container{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 7px;
  padding: 56px 30px 55px 70px;
  margin-bottom: -90px;
  z-index: 1;
}

.cta-section .inner-box{
  max-width: 530px;
}

/*.cta-section .inner-box h2{
  display: block;
  font-size: 42px;
  line-height: 50px;
  font-family: 'Roboto', sans-serif;
  color: #fff;
  font-weight: 900;
  margin-bottom: 11px;
}*/

.cta-section .inner-box .info li{
  position: relative;
  display: inline-block;
  font-size: 26px;
  line-height: 32px;
  color: #fff;
  font-weight: 600;
  margin-right: 55px;
}

.cta-section .inner-box .info li:last-child{
  margin: 0px;
}

.cta-section .inner-box .info li a{
  display: inline-block;
  color: #fff;
}

.cta-section .inner-box .info li a:hover{
  text-decoration: underline;
}

.cta-section .bg-layer{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 23% 0%);
}

.cta-section .bg-layer:before{
  position: absolute;
  content: '';
    background-image: url('../img/call-to-action-bg.png');
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.8;
  background-size: cover;
}
.rounded-bottom {
    border-bottom-right-radius: 4px !important; 
   border-bottom-left-radius: 4px !important; 
}
.team-section.home-2{
  padding-bottom: 120px;
}

/*** About ***/
.about-fact {
    width: 220px;
    height: 220px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

@media (min-width: 576px) {
    .about-fact.mt-n130 {
        margin-top: -130px;
    }
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--bs-primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--theme-color);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--theme-color);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid #FFFFFF;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.container-service {
    position: relative;
}

.container-service::before {
    position: absolute;
    content: '';
    background: var(--bs-light);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 70%);
    z-index: -1;
}

.service-item {
    position: relative;
    height: 100%;
    padding: 45px 30px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.service-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: .5s;
    background: var(--bs-primary);
}

.service-item:hover::before {
    height: 100%;
    top: 0;
}

.service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover h5,
.service-item:hover p {
    color: var(--bs-white);
}

.service-item:hover .icon-box-primary::before {
    background: var(--bs-dark);
}

.service-item:hover .icon-box-primary i {
    color: var(--bs-white) !important;
}


/*** Team ***/
.container-team {
    position: relative;
}

.container-team::before {
    position: absolute;
    content: '';
    background: var(--bs-light);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    clip-path: polygon(0 70%, 100% 30%, 100% 100%, 0% 100%);
    z-index: -1;
}

.team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/testimonial.jpg) left center no-repeat;
    background-size: cover;
}

.testimonial-item img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 60px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-left: 15px;
    color: var(--bs-primary);
    font-size: 30px;
    line-height: 0;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(31, 30, 59, .9), rgba(31, 30, 59, .9)), url(../img/footerBg.png) center center no-repeat;
    background-size: cover; 
}
 
.footer .list-group a {
    transition: .3s;
}
 .footer .list-group a:hover {
    color: var(--theme-color) !important;
    letter-spacing: 2px; 
}
 
/*.copyright {
    border-top: 1px dashed rgba(255, 255, 255, .2);
}*/

/*.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: var(--bs-primary);
}*/

/* X-Small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) { 

.aboutUs .image-box {
    margin-right: 0px; 
    padding-right: 0px;
}


nav {
  height: 100%;
  position: fixed;
  left: 0;
  width: 320px;
  margin-top: 0px;
  transform: translateX(-320px);
  transition: transform 260ms ease-in-out;
  background-color: white;
  border-left: 1px solid #eee;
}
nav ul {
  margin:0;
  padding:0;
  border-top: 1px solid #eee;
}
nav ul>li {
  list-style: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  padding: 20px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: .25s
}
nav ul>li span {
  display: block;
  font-size: 14px;
  color: #353535;
}
nav ul>li a {
  color: #353535;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}
nav ul>li:hover {
  background-color: #dddddd;
}
nav li#nav-signup {
  list-style: none;
  background-color: #00B2D3;
}
nav ul>li#nav-signup span {
  color: #00B2D3;
}
nav ul>li#nav-signup a {
  color: #ffffff;
}
nav ul>li#nav-signup:hover {
  background-color: #006375;
}
input[type="checkbox"]:checked ~ nav {
  transform: translateX(0);
  z-index: 40;
}
input[type=checkbox] {
  box-sizing: border-box;
  display: none;
  transition: all 0.25s;
}
.menuIconToggle {
  box-sizing: border-box;
  cursor: pointer;
  position: fixed;
  z-index: 40;
  height: 100%;
  width: 100%;
  top: 35px;
  right: 30px;
  height: 22px;
  width: 22px;
  transition: all 0.3s;
}
.hamb-line {
  box-sizing: border-box;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #444;
  transition: all 0.25s;
}
.hor {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}
.dia.part-1 {
  position: relative;
  box-sizing: border-box;
  float: left;
  transition: all .25s;
}
.dia.part-2 {
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
  transition: all .25s;
}
input[type=checkbox]:checked ~ .menuIconToggle > .hor {
  box-sizing: border-box;
  opacity: 0;
  transition: all .25s;
}
input[type=checkbox]:checked ~ .menuIconToggle > .dia.part-1 {
  box-sizing: border-box;
  transform: rotate(135deg);
  margin-top: 8px;
  transition: all .25s;
}
input[type=checkbox]:checked ~ .menuIconToggle > .dia.part-2 {
  box-sizing: border-box;
  transform: rotate(-135deg);
  margin-top: -9px;
  transition: all .25s;
}
.carousel-inner:before {
    background-size: cover;
 }
 .cta-section .bg-layer:before {
    background-image: none;
 }

 .cta-section .inner-container {
    padding: 10px;
 }
 .supporter img {
    width: 100px;
    height: 100px;
 }
}

.contactBg{
    background: rgb(255,255,255);
background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(248,248,248,1) 50%);
}