@charset "UTF-8";

.video-play-button {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 80%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #FE8800;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #FE8800;
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button:hover:after {
  background-color: #cb6d00;
}

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

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

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

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

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

.video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all ease 500ms;
}

.video-overlay.open {
  position: fixed;
  z-index: 11;
  opacity: 1;
}

.video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms;
}

.video-overlay-close:hover {
  color: #fa183d;
}

.video-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 75%;
  height: 86.5%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}

.reservation-box {
  padding: 70px 0px;
}

.reservation-box h3 {
  padding: 0px 15px;
  margin-bottom: 20px;
  font-weight: 600;
}

.help-block ul li {
  color: red;
}

.form-control[readonly] {
  background-color: #ffffff;
}

.form-control {
  border-radius: 0px;
  min-height: 50px;
}

.form-control:focus {
  border: 1px solid #FE8800;
  box-shadow: none;
}

.form-group .picker__input.picker__input--active {
  border-color: #FE8800;
}

.submit-button {
  margin-top: 20px;
}

.btn.btn-common {
  color: #FE8800;
  background-color: transparent;
  background-image: none;
  border-color: #FE8800;
}

.btn.btn-common:hover {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}

/*------------------------------------------------------------------
    HEADER
-------------------------------------------------------------------*/

.top-navbar {
  position: relative;
  z-index: 10;
}

.top-navbar .navbar {
  padding: 15px 0px;
  position: fixed;
  width: 100%;
  border-radius: 0px 0px 100px 100px;
  transition: height 0.3s ease-out, background 0.3s ease-out, box-shadow 0.3s ease-out;
  transform: translate3d(0, 0, 0);
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
  z-index: 100;
}

.top-navbar .navbar-light .navbar-nav .nav-link {
  color: #010101;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 4px;
  text-transform: uppercase;
}

.top-navbar .navbar-light .navbar-nav .nav-item .nav-link:hover {
  background: #FE8800;
  color: #ffffff;
}

.top-navbar .navbar-light .navbar-nav .nav-item.active .nav-link {
  background: #FE8800;
  color: #ffffff;
  border-radius: 4px;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  border: none;
  border-radius: 0px;
  padding: 10px;
  box-shadow: 2px 5px 6px rgba(0, 0, 0, 0.5);
}

.navbar-expand-lg .navbar-nav .dropdown-menu a {
  padding: 10px 10px;
  text-transform: uppercase;
}

.navbar-expand-lg .navbar-nav .dropdown-menu a.dropdown-item:hover {
  background: #FE8800;
  color: #ffffff;
}

.navbar-light .navbar-toggler:hover {
  background: #FE8800;
}

/*------------------------------------------------------------------
    Menu
-------------------------------------------------------------------*/

.menu-box {
  padding: 70px 0px;
}

.heading-title h2 {
  color: #010101;
  font-size: 28px;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
}

.heading-title p {
  font-size: 18px;
  font-weight: 200;
  margin: 0px;
}

.inner-menu-box .nav-pills .nav-link.active {
  background: #FE8800;
}

.inner-menu-box .nav-pills .nav-link {
  font-size: 18px;
}

.inner-menu-box .nav-pills .nav-link:hover {
  background: #FE8800;
  color: #ffffff;
}

.gallery-single {
  margin-bottom: 30px;
}

.gallery-single {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px #ccc;
}

.why-text {
  position: absolute;
  left: 0;
  bottom: -100%;
  right: 0;
  height: 100%;
  background: rgba(207, 166, 113, 0.9);
  padding: 12px 12px;
  transition: all 0.3s ease;
}

.why-text h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  font-family: "Rubik", sans-serif;
}

.why-text p {
  color: #ffffff;
  font-size: 13px;
  border-bottom: 1px dashed #010101;
  margin: 0px;
  padding-bottom: 15px;
  margin-top: 0px;
  margin-bottom: 15px;
}

.why-text h5 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.gallery-single:hover .why-text {
  bottom: 0px;
}

/*------------------------------------------------------------------
    Footer
-------------------------------------------------------------------*/

.footer-area {
  padding-top: 50px;
  padding-bottom: 0px;
}

.bg-f {
  /* background-image: url("../images/footer-bg.jpg"); */
  background-attachment: scroll;
  background-clip: initial;
  background-color: rgba(0, 0, 0, 0);
  background-origin: initial;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.bg-f::before {
  background: #000000;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  opacity: 0.8;
}

.footer-area .container {
  position: relative;
  z-index: 1;
}

.footer-area h3 {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 2px solid rgba(207, 166, 113, 0.5);
  margin-bottom: 10px;
}

.footer-area p {
  text-align: justify;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  padding-bottom: 10px;
}

.arrow-right {
  position: relative;
}

.arrow-right::before {
  content: "\F101";
  font-family: "FontAwesome";
  position: absolute;
  right: 0px;
  top: 0;
  color: #fff;
  font-size: 60px;
  line-height: 60px;
}

.footer-area p.lead {
  font-size: 19px;
  color: #ffffff;
  margin-bottom: 0px;
}

.footer-area p.lead a {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-area p.lead a:hover {
  color: #d65106;
}

.footer-area p a {
  font-size: 18px;
  color: #ffffff;
}

.footer-area p a:hover {
  color: #d65106;
}

.subscribe_form {
  display: block;
  text-align: center;
  padding: 5px 0;
}

.subscribe_form .form_input {
  display: block;
  background-color: rgba(0, 0, 0, 0.9);
  border: 1px solid #ffffff;
  color: #fff;
  font-size: 14px;
  line-height: 50px;
  padding: 0 10px;
  float: left;
  font-weight: 300;
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.subscribe_form .submit {
  background-color: #d65106;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 50px;
  display: inline-block;
  padding: 0 10px;
  float: left;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.subscribe_form .submit:hover {
  background: #010101;
}

.f-social {
  padding-bottom: 10px;
  margin: 0px;
  margin-top: 20px;
}

.f-social li a {
  font-size: 18px;
  color: #d65106;
  width: 38px;
  height: 38px;
  display: block;
  text-align: center;
  line-height: 38px;
  background: #ffffff;
  border-radius: 4px;
}

.copyright {
  margin-top: 20px;
  position: relative;
  display: block;
  background-color: #010101;
  border-top: 1px solid #cfa671;
  padding: 15px 0;
  z-index: 1;
}

.copyright .company-name {
  font-size: 16px;
  text-align: center;
}

.copyright .company-name a {
  font-size: 16px;
}

/*------------------------------------------------------------------
    Slider
-------------------------------------------------------------------*/

.cover-slides {
  height: 100vh;
}

.slides-navigation a {
  background: #FE8800;
  position: absolute;
  height: 50px;
  width: 50px;
  top: 50%;
  font-size: 20px;
  display: block;
  color: #fff;
  border-radius: 4px;
  line-height: 63px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.img {
  vertical-align: middle;
  border-style: none;
  border-radius: 18px;
  width: 250px;
  height: 80px;
}

.slides-navigation a i {
  font-size: 40px;
}

.slides-navigation a:hover {
  background: #010101;
}

.cover-slides .container {
  height: 100%;
  position: relative;
  z-index: 2;
}

.cover-slides .container > .row {
  align-items: center;
}

.cover-slides .container > .row {
  height: 100%;
}

.btn {
  text-transform: uppercase;
  padding: 19px 36px;
}

.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 2px solid transparent;
  padding: 12px 30px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 0.1875rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-outline-new-white {
  color: #fff;
  background-color: #FE8800;
  background-image: none;
  border-color: #FE8800;
}

.btn-outline-new-white:hover {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}

.overlay-background {
  background: #333;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0.5;
}

.outline1 {
  border: 2px solid #FE8800;
  border-radius: 12px;
  padding: 2.5%;
  margin-top: 50px;
}

.outline {
  border: 2px solid #FE8800;
  border-radius: 12px;
  padding: 2.5%;
  margin-top: 50px;
}

.cover-slides h1 {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 64px;
  color: #fff;
  text-transform: capitalize;
}

.cover-slides h2 {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 50px;
  color: #fff;
  text-transform: capitalize;
}

.cover-slides h3 {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 40px;
  color: #fff;
  text-transform: capitalize;
}

.cover-slides h3 span {
  font-size: 60px;
  color: #FE8800;
}

.cover-slides h4 {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #fff;
  text-align: justify;
}

.cover-slides h4 span {
  color: #FE8800;
}

.cover-slides p {
  font-size: 18px;
  color: #fff;
}

.slides-pagination a {
  border: 2px solid #ffffff;
}

.slides-pagination a.current {
  background: #FE8800;
  border: 2px solid #FE8800;
}

/*------------------------------------------------------------------
    Contact info
-------------------------------------------------------------------*/

.contact-imfo-box {
  background: #016098;
  padding: 30px 0;
  border-radius: 100px;
}

.overflow-hidden {
  overflow: hidden;
}

.contact-imfo-box i {
  display: block;
  float: left;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: #fff;
  color: #016098;
  font-size: 30px;
  border-radius: 4px;
  margin-right: 20px;
}

.contact-imfo-box h4 {
  margin: 0px;
  margin-top: 5px;
  color: #ffffff;
  font-size: 20px;
  padding: 0px;
  font-weight: 500;
  line-height: 24px;
}

.contact-imfo-box p {
  margin: 0px;
  color: #ffffff;
  font-weight: 300;
}

.heading-title h1 {
  font-size: 50px;
  line-height: 78px;
  color: #016098;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

.heading-title h1 span {
  color: #FE8800;
}

.contact-info-box {
  width: 100%;
  background-color: #016098 !important;
  box-shadow: 8px 8px 6px -6px rgba(0, 0, 0, 0.4);
  padding: 10px;
  text-align: center;
}

.contact-info-box h4 {
  color: white;
  font-weight: 700;
}

.contact-info-box h4 i {
  color: white;
  border: 1px solid white;
  border-radius: 2px;
  padding: 5px;
}

.contact-info-box p {
  color: white;
}

/*------------------------------------------------------------------
    Customer Reviews
-------------------------------------------------------------------*/

.customer-reviews-box {
  padding: 70px 0px;
}

.carousel-inner .carousel-item .img-box {
  width: 135px;
  height: 135px;
}

.carousel-control-prev {
  left: -100px;
}

.carousel-control-next {
  right: -100px;
}

.carousel-indicators {
  top: 320px;
}

.text-warning {
  color: #d65106 !important;
  font-size: 24px;
}

@media (min-width: 320px) and (max-width: 640px) {
  .carousel-inner .carousel-item p {
    font-size: 14px;
  }

  .carousel-control-prev {
    left: -5px;
  }

  .carousel-control-next {
    right: -5px;
  }

  .carousel-indicators {
    top: 400px;
  }
}

#reviews .carousel-control-prev {
  background: #FE8800;
  color: #ffffff;
  display: block;
  position: absolute;
  width: 8%;
  height: 50px;
  top: 50%;
  border-radius: 4px;
  font-size: 28px;
  opacity: 1;
}

#reviews .carousel-control-prev:hover {
  background: #010101;
  color: #ffffff;
}

#reviews .carousel-control-next {
  background: #FE8800;
  color: #ffffff;
  display: block;
  position: absolute;
  width: 8%;
  height: 50px;
  top: 50%;
  border-radius: 4px;
  font-size: 28px;
  opacity: 1;
}

#reviews .carousel-control-next:hover {
  background: #010101;
  color: #ffffff;
}

.main-page {
  width: 100%;
  height: 100%;
}

.main-page img {
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  position: absolute;
  left: 0px;
  top: -86.469px;
  z-index: -1;
  max-width: none;
}

.next-area {
  width: 100%;
  height: 100%;
  background-color: #f8f9fa !important;
  /* bottom: 20; */
}

.next-area h1 {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 64px;
  color: #130644;
  text-transform: capitalize;
}

.next-area h1 span {
  color: #130644;
  font-weight: 700;
  text-decoration: underline;
}

.next-area-way {
  padding: 20px;
  border-radius: 12px;
  background-color: #f8f9fa !important;
}

.next-area-head {
  border-radius: 12px;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-top: 10px;
  text-align: center;
  box-shadow: 8px 8px 6px -6px rgba(0, 0, 0, 0.4);
}

.next-area-head h4 {
  padding: 25px 0 25px 0;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
}

.orange {
  background-color: #f8620a;
}

.blue {
  background-color: #0070C0;
}

.green {
  background-color: #0bf117;
}

.yellow {
  background-color: #FFC000;
}

.next-area-india h4 {
  padding-top: 425px;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 50px;
  color: #130644;
  text-transform: capitalize;
  text-align: center;
}

.next-area-india img {
  width: 350px;
  position: absolute;
}

.full-page {
  width: 100%;
  height: 100%;
}

/*------------------------------------------------------------------
    About
-------------------------------------------------------------------*/

.about-section-box {
  padding: 150px 0px 0px 0px;
  /* background: #ffffff url(../images/about-bg.jpg) no-repeat bottom center; */
  background-size: cover;
}

.about-section-box .img-fluid {
  box-shadow: 20px 20px 0px #d65106;
}

.inner-column {
  text-align: justify;
}

.inner-column h1 {
  font-family: "Rubik", sans-serif;
  font-size: 30px;
  color: #ffffff;
  font-weight: 500;
  text-align: left;
  padding-top: 10px;
}

.inner-column h1 span {
  color: #ffffff;
}

.inner-column h4 {
  font-size: 16px;
  font-weight: 500;
}

.inner-column .para {
  margin-bottom: 1%;
  background-color: rgba(0, 0, 0, 0.39);
  padding: 3%;
  border-radius: 12px;
}

.inner-column .para h1 span {
  color: #FE8800;
}

.inner-column .para p {
  font-size: 18px;
  color: #ffffff;
}

.inner-column .btn-outline-new-white {
  color: #fff;
}

.inner-column .btn-outline-new-white:hover {
  color: #ffffff;
}

.red {
  background-color: #C00000;
}

.white {
  background-color: #ffffff;
}

.blue {
  background-color: #0070C0;
}

.green {
  background-color: #00B050;
}

.yellow {
  background-color: #FFC000;
}

.what-we-do {
  padding-top: 130px;
}

#sidebar1 {
  display: none;
}

.what-we-do-now {
  width: 100%;
  background-color: #f8f9fa !important;
  margin-bottom: 50px;
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
  border-radius: 12px;
}

.what-we-do-now p {
  padding: 30px;
  color: #016098;
  font-size: 20px;
  font-weight: 500;
  text-align: justify;
  margin-bottom: 20px;
  line-height: 30px;
}

.what-we-do-now p span a {
  color: #FE8800;
}

.what-we-do-now-section {
  width: 340px;
  height: 340px;
  margin-top: 100px;
  margin-bottom: 150px;
  margin-right: 150px;
  margin-left: 70px;
  border: 3px solid #FE8800;
  box-shadow: 12px 12px 6px -6px rgba(0, 0, 0, 0.4);
  background-color: #f8f9fa !important;
  transform: rotate(45deg);
}

.what-we-do-now-section-text {
  width: 250px;
  height: 250px;
  z-index: 2;
  position: absolute;
  padding-top: 100px;
  color: #016098;
  text-align: center;
  font-size: 45px;
  font-weight: 600;
  transform: rotate(-45deg);
}

.what-we-do-now-content {
  height: 200px;
  width: 200px;
  background-color: #016098;
  border-radius: 50%;
  box-shadow: 0px 0px 21px -2px rgba(0, 0, 0, 0.25);
}

.what-we-do-now-content:hover {
  height: 200px;
  width: 200px;
  background-color: transparent;
  box-shadow: 0px 0px 21px -2px rgba(0, 0, 0, 0.25);
}

.what-we-do-now-content-main {
  width: 100%;
  margin-bottom: 50px;
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  background-color: #f8f9fa !important;
}

.what-we-do-now-content-main:hover {
  background-color: transparent;
}

.what-we-do-now-content-heading {
  width: 100%;
  height: 50px;
  box-shadow: 8px 8px 6px -6px rgba(0, 0, 0, 0.4);
  border-radius: 0px 0px 12px 12px;
}

.what-we-do-now-content-heading h1 {
  color: white;
  font-size: 20px;
  text-align: left;
  padding-left: 14px;
  padding-top: 14px;
  font-weight: 700;
}

.what-we-do-now-content-head {
  width: 100%;
  padding: 15px;
  margin-bottom: 50px;
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  background-color: #f8f9fa !important;
}

.what-we-do-now-content-outline {
  width: 100%;
  padding: 15px;
  margin-bottom: 50px;
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  background-color: #f8f9fa !important;
}

.what-we-do-now-content-outline h3 {
  font-size: 20px;
  color: #016098;
  text-align: center;
  padding: 15px;
  padding-left: 15px;
  font-weight: 500;
}

.what-we-do-now-content-outline h3 span {
  color: #FE8800;
}

.what-we-do-now-content-main-text h2 {
  color: #FE8800;
  font-size: 20px;
  text-align: center;
  padding: 15px;
  padding-left: 15px;
  font-weight: 500;
}

.what-we-do-now-content-main-text h2 span {
  color: #016098;
}

.what-we-do-now-content-main-text h4 {
  color: #016098;
  font-size: 18px;
  text-align: left;
  padding: 15px;
  padding-left: 15px;
  font-weight: 500;
}

.what-we-do-now-content-main-text p {
  color: #016098;
  font-size: 18px;
  text-align: justify;
  padding: 15px;
  font-weight: 500;
}

/*------------------------------------------------------------------
    Gallery
-------------------------------------------------------------------*/

.gallery-box {
  padding: 70px 0px;
  padding-top: 150px;
}

.gallery-box1 {
  padding: 70px 0px;
  padding-top: 40px;
}

.tz-gallery {
  margin-top: 30px;
}

.tz-gallery .lightbox img {
  width: 100%;
  transition: 0.2s ease-in-out;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.tz-gallery .lightbox img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.tz-gallery .lightbox {
  border: 3px solid #FE8800;
  display: inline-block;
  margin-bottom: 30px;
}

.img-fluid {
  height: 225px;
}

#baguetteBox-overlay .full-image img {
  display: inline-block;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
  border: 3px solid #FE8800;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.contact-box {
  padding-top: 150px;
}

.volunteer-column {
  text-align: justify;
}

.volunteer-column h1 {
  font-family: "Rubik", sans-serif;
  font-size: 50px;
  color: #ffffff;
  font-weight: 500;
  text-align: left;
  padding-top: 10px;
  text-transform: uppercase;
}

.volunteer-column h1 span {
  color: #ffffff;
}

.volunteer-column h4 {
  font-size: 16px;
  font-weight: 500;
}

.volunteer-column .para {
  margin-bottom: 1%;
  background-color: rgba(0, 0, 0, 0.39);
  padding: 5%;
  border-radius: 12px;
}

.volunteer-column .para h1 span {
  color: #FE8800;
}

.volunteer-column .para p {
  font-size: 20px;
  color: #ffffff;
}

.volunteer-column .btn-outline-new-white {
  color: #fff;
}

.volunteer-column .btn-outline-new-white:hover {
  color: #ffffff;
}

.donate-box {
  padding-top: 150px;
  padding-left: 25%;
  padding-right: 25%;
}

.modal-body img {
  width: 65%;
}

modal-header img {
  width: 121px;
}

.btn-join-now {
  text-transform: uppercase;
  padding: 19px 36px;
}

.btn-join-now {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 2px solid transparent;
  padding: 12px 30px;
  font-size: 16px;
  line-height: 1.5;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  z-index: 9;
  /* background: #fa183d; */
}

.btn-outline-join-now {
  color: #fff;
  background-color: #FE8800;
  background-image: none;
  border-color: #FE8800;
}

.btn-outline-join-now:hover {
  color: #ffffff;
}

.btn-join {
  text-transform: uppercase;
  padding: 19px 36px;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 2px solid transparent;
  padding: 12px 30px;
  font-size: 16px;
  line-height: 1.5;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-join.btn-common {
  color: #FE8800;
  background-color: transparent;
  background-image: none;
  border-color: #FE8800;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin: 0;
  opacity: 0;
  padding: 10px;
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #0f1011;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.btn-home {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 2px solid #ffffff;
  padding: 12px 30px;
  font-size: 16px;
  line-height: 1.5;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  color: white;
  z-index: 9;
}

.btn-home:hover {
  color: #ffffff !important;
}

.btn-amount {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  border: 2px solid #FE8800;
  padding: 12px 30px;
  font-size: 16px;
  line-height: 1.5;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  background-color: white;
  color: #FE8800;
}

.btn-amount:hover {
  border: 2px solid #016098;
  color: #016098;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-donate {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  border: 2px solid #FE8800;
  padding: 12px 30px;
  font-size: 16px;
  line-height: 1.5;
  background-color: #FE8800;
  color: white;
  margin-bottom: 10px;
}

.btn-donate:hover {
  border: 2px solid #016098;
  color: #016098;
  background-color: transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* only small desktops */

/* tablets */

/* only small tablets */

@media only screen and (min-width: 992px) and (max-width: 1180px) {
  .footer-area h3 {
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .navbar-light .navbar-brand {
    margin-left: 15px;
  }

  .navbar-light .navbar-toggler {
    margin-right: 15px;
    border-radius: 0px;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    box-shadow: none;
  }

  .carousel-control-prev {
    left: -60px;
  }

  .carousel-control-next {
    right: -60px;
  }

  .why-text h4 {
    font-size: 18px;
  }

  .why-text p {
    margin: 0px;
  }
}

/* mobile or only mobile */

@media (max-width: 767px) {
  #sidebar {
    display: none;
  }

  #sidebar1 {
    display: block;
  }

  .navbar-light .navbar-brand {
    margin-left: 15px;
  }

  .navbar-light .navbar-toggler {
    margin-right: 15px;
    border-radius: 0px;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    box-shadow: none;
  }

  .cover-slides h1 {
    font-size: 22px;
  }

  .cover-slides p {
    font-size: 18px;
  }

  .slides-navigation a {
    height: 42px;
    width: 38px;
    line-height: 33px;
  }

  .inner-column {
    margin-top: 15px;
  }

  .inner-column h1 {
    font-size: 22px;
  }

  .filter-button-group {
    margin: 10px 0px;
  }

  .contact-imfo-box .col-md-4 {
    margin-bottom: 15px;
  }

  .carousel-control-prev {
    left: 0px;
  }

  .carousel-control-next {
    right: 0px;
  }

  .blog-box-inner .blog-detail {
    overflow: hidden;
  }

  .blog-sidebar {
    margin-top: 50px;
  }

  .top-navbar .navbar {
    border-radius: 0px 0px 50px 50px;
  }
}

@media only screen and (min-width: 280px) and (max-width: 599px) {
  #sidebar {
    display: none;
  }

  #sidebar1 {
    display: block;
  }

  .volunteer-column h1 {
    font-size: 30px;
    text-align: center;
  }

  .donate-box {
    padding-top: 150px;
    padding-left: 0%;
    padding-right: 0%;
  }

  .why-text p {
    margin-bottom: 0px;
    margin-top: 0px;
  }

  .about-section-box {
    padding: 100px 0px;
  }

  .inner-column {
    margin-bottom: 30px;
  }

  .inner-column .para p {
    font-size: 18px;
  }

  .inner-menu-box .nav-pills .nav-link {
    font-size: 12px;
    padding: 5px;
  }

  .donate-box {
    padding-top: 120px;
  }

  .btn-amount {
    padding: 5px 12px;
  }

  .heading-title {
    margin-bottom: 0px;
  }

  .heading-title h1 {
    font-size: 30px;
    margin-bottom: 0px;
  }

  .cover-slides h3 {
    font-size: 25px;
  }

  .cover-slides h3 span {
    font-size: 30px;
  }

  .outline1 {
    padding: 20px 20px 20px 25px;
    margin-top: 80px;
  }

  .outline {
    padding: 20px 20px 20px 25px;
  }

  .slides-pagination a {
    width: 12px;
    height: 12px;
  }

  .next-area h1 {
    font-size: 30px;
    text-align: center;
  }

  .next-area-india img {
    width: 300px;
  }

  .next-area-india h4 {
    font-size: 30px;
    padding-top: 0px;
  }

  .qt-background h1 {
    padding-top: 50px;
    font-size: 30px;
  }

  .qt-background p {
    font-size: 25px;
  }

  .qt-background {
    height: 350px;
  }

  .layer {
    height: 350px;
  }

  .top-navbar .navbar-light .navbar-nav .nav-item.active .nav-link {
    background: none;
    color: #010101;
  }

  .top-navbar .navbar-light .navbar-nav .nav-item.active .nav-link:hover {
    background: #FE8800;
    color: #ffffff;
  }
}

