/* Style for first section of page */
.first-section {
  background-image: url('images/general/home-top-sliders/policy.png');
  background-size:cover;
  width: 100%;
  height: auto;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  transition: background-image 2s ease-in-out;
}

.first-section.bg-1 {
  background-image: url(images/general/home-top-sliders/our-approach.png);
}

.first-section.bg-2 {
  background-image: url(images/general/home-top-sliders/our-approach.png);
}

.first-section.bg-3 {
  background-image: url(images/general/home-top-sliders/policy.png);
}

/* Style for heading in first section */
.first-section h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Style for paragraph in first section */
.first-section p {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.scroll-text {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.scroll-text.animate {
  opacity: 1;
  transform: translateX(0);
}

.scroll-text h1 {
  color: transparent;
  text-shadow: 0 0 2px white;
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.scroll-text.animate h1 {
  opacity: 1;
  transform: translateX(0);
}

img {
  max-width: 100%;
}

.banner-btn {
  width: 30rem;
  height: 6rem;
  background: linear-gradient(to right, #76c3e5, #8ec83b, #ffc239);
  color: #fff;
  font-size: 2rem;
  text-transform: uppercase;
  border-radius: 3rem;
  border: 0rem solid #ffc239;
  box-shadow: 1rem 2rem 3rem rgba(0, 0, 0, 0.5);
  text-shadow: 0.6rem 0.3rem 0.2rem rgba(0, 0, 0, 0.4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  position: relative;
  overflow: hidden;
  animation: fadeAnimation 1s 2s forwards;
}

.banner-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, #fff, transparent);
  position: absolute;
  top: 0;
  left: -100%;
  transform: skewX(-30deg);
  transition: left 0.5s;
}

.banner-btn:hover::before {
  left: 100%;
}

#progress-container {
  position: fixed;
  top: 95px;
  left: 0;
  width: 100%;
  height: 6px;
  z-index: 9999;
}

#progress-bar {
  height: 100%;
  background-color: #8ec83b;
  width: 0%;
  transition: width 0.5s ease-in-out;
}
#below-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #76c3e5;
  z-index: 9999;
  display: none;
}

.pop-up {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  width: 100%;
  background-image: linear-gradient(to right, #76c3e5, #8ec83b, #ffc239);
  padding: 30px;
  margin-right: 10px;
  margin-left: 10px;
  margin-top: 30px;
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: 400;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 30px;
  position: fixed;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}
.pop-up.show {
  opacity: 1;
  pointer-events: auto;
}
.decline-accept {
  width: 100px;
  height: 50px;
  font-size: 15px;
}
.accept-cookies-btn {
  background-color: #76c3e5;
  border: none;
}
.accept-cookies-btn:hover {
  background-color: rgb(3, 197, 3);
}

.pop-up-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

@media (max-width: 1022px) {
  .pop-up {
    padding: 10px 10px;
    margin-left: 0px;
    margin-right: 0px;
  }

  #progress-container {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: 5px;
    /* Set the height of the progress bar */
    z-index: 9999;
    /* Set the z-index to make sure the progress bar appears on top */
  }
}

.my-container {
  width: 100%;
  padding: 0 0px;
  justify-content: center;
}

.section-title {
  padding-bottom: 10px;
}

.new-title p {
  padding-top: 20px;
  text-align: center;
  margin-top: 15px;
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #263d4d;
}

.center-container {
  text-align: center;
}

.padding {
  padding-top: 50px;
  padding-left: 30px;
  padding-right: 30px;
}

/* Slider */
.gallery {
  overflow: hidden;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #3fbbc0;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3fbbc0;
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: 6px solid #3fbbc0;
    padding: 4px;
    background: #fff;
    
    z-index: 1;
    transform: scale(1.2);
    margin-top: 10px;
  }
}

/* End of Slider */

/* Logo rotation */
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

.logo-container img {
  width: 200px;
  height: 200px;
  transform-origin: center;
  animation: rotate 5s infinite linear;
}

@keyframes rotate {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

.location-map {
  background: url("images/general/main/where-we-work.png");
  background: linear-gradient(rgba(2, 2, 2, 0.3), rgba(0, 0, 0, 0.5)),
    url("images/general/main/where-we-work.png") fixed center center;

  background-size: 100%;
  width: 100%;
  height: 100vh;
}

.map-btn {
  display: block;
  width: 180px;
  height: 50px;
  background: linear-gradient(to right, #8ec83b, #ffc239);
  color: black;
  font-size: 20px;
  text-transform: uppercase;
  border-radius: 3rem;
  border: none;
  box-shadow: 1rem 2rem 3rem rgba(0, 0, 0, 0.5);
  text-shadow: 0.6rem 0.3rem 0.2rem rgba(0, 0, 0, 0.4);
  cursor: pointer;
  animation: fadeAnimation 1s 2s forwards;
}
/* End of Wherewe work */

/* Nepahd Background theme */

.company-theme-background {
  background: linear-gradient(to bottom, #76c3e5, #8ec83b, #ffc239);
  padding: 15px;
}

.support-btn {        
  text-transform: uppercase;
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 5px 7px;
  text-align: center;
  color: black;
  margin-top: 30px;
  box-shadow: 1rem 2rem 3rem rgba(0, 0, 0, 0.5);
  text-shadow: 0.6rem 0.3rem 0.2rem rgba(0, 0, 0, 0.4);
  background: linear-gradient(to bottom, #76c3e5, #8ec83b, #ffc239);
  border: none;
  border-radius: 40px;
}
/* End of Nepahd Background theme */

/* Frequently Asked Questions*/
.faq {
  padding: 0px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #deefed;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #51a59b;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: #343a40;
}

.faq .faq-list .collapsed:hover {
  color: #70b9b0;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

.faq .faq-list .collapsed {
  color: #343a40;
}

.faq .faq-list .collapsed:hover {
  color: #70b9b0;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}
.collapse:not(.show) {
  display: none;
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}
/* End of Frequently Asked Questions*/

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/* End of Contact Us */

/* Map */
.map {
  margin-top: 20px;
  margin-bottom: -10px;
}

.map iframe {
  width: 100%;
  height: 380px;
}

@media (max-width: 768px) {
  .map {
    margin-left: 20px;
  }
}

.container {
  overflow: hidden;
}

@keyframes animateNavbar {
  0% {
    top: -8rem;
  }
  100% {
    top: 0;
  }
}

.banner {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
}

.banner-heading {
  height: 20rem;
  margin-bottom: 4rem;
  perspective: 50rem;
  overflow: hidden;
}

.banner-heading span {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0.3rem 0.3rem 0.6rem rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  transform: translateZ(8rem);
  opacity: 0;
  letter-spacing: 2rem;
}

.heading-1 {
  animation: animateHeading 12s 3s infinite;
}

.heading-2 {
  animation: animateHeading 12s 6s infinite;
}

.heading-3 {
  animation: animateHeading 12s 9s infinite;
}

.heading-4 {
  animation: animateHeading 12s 12s infinite;
}

@keyframes animateHeading {
  0% {
    transform: translateZ(8rem);
    opacity: 0;
    letter-spacing: 3rem;
  }

  3% {
    transform: translateZ(0);
    opacity: 1;
    letter-spacing: 1.5rem;
  }

  25% {
    transform: translateZ(0);
    opacity: 1;
    letter-spacing: 1.5rem;
  }

  28% {
    transform: translateZ(8rem);
    opacity: 0;
    letter-spacing: 3rem;
  }

  100% {
    transform: translateZ(8rem);
    opacity: 0;
    letter-spacing: 3rem;
  }
}

@keyframes fadeAnimation {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

.banner-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, #fff, transparent);
  position: absolute;
  top: 0;
  left: -100%;
  transform: skewX(-30deg);
  transition: left 0.5s;
}

.banner-btn:hover::before {
  left: 100%;
}
/* End of Section 1 */

/** General **/
h4 {
  font-weight: bold;
  font-size: 22px;
}

@media (max-width: 500px) {
  html {
    font-size: 45%;
  }

  .first-section {
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 60vh;
  }

  .banner-heading span {
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0.3rem 0.3rem 0.6rem rgba(0, 0, 0, 0.5);
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    transform: translateZ(8rem);
    opacity: 0;
    letter-spacing: 2rem;
  }
}

p {
  line-height: 1.6;
  font-weight: 400;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 30px;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: normal;
}
.new-font {
  line-height: 1.6;
  font-weight: 400;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 30px;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: normal;
}

.c-card p {
  margin: 30px;
  font-weight: 400;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 30px;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: normal;
}

/*customization for local use*/
.c-card {
  text-align:left
}

.color-heading {
  font-size: 20px;
}

@media screen and (max-width: 800px) {
  .c-card p {
    margin: 3px;
    line-height: 24px;          
  }
}

.span-read-more {
  font-size: 20px;
  padding-top: 50px;
  color: red;
}

.read-more-container {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

.r-m-inner-container {
  justify-content: space-between;
  color: red;
}

.my-arrow-icon {
  margin-top: -3px;
  margin-left: 7px;
  width: 90px;
  float: left;
  color: #5c8eb0;
  font-size: 40px;
  line-height: 0;
}

.local-h4 {
  color: #365870;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.click-to-view {
  text-align: center;
  color: green;
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 20px;
}

/* Cta */
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../../images/general/main/support-our-work.png") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}