.topSection {
  /* background-image: url("../images/bg.jpg"); */
  /* background-size: cover; */
  /* background-position: center; */
  height: 700px;
}

nav {
  border-radius: 0px 0px 20px 20px;
  position: fixed;
  z-index: 100;
  left: 0px;
  padding: 30px 0;
  width: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

  transition: all 0.5s;
}

.scrolled nav {
  background: #1f2937;
  width: 800px;
  left: calc(50% - 400px);
  padding: 10px;
}

#why_choose_us .bg_img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s;
}
.gredient_bg {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  transition: all 0.3s;
  position: absolute;
  bottom: -100px;
  padding: 100px 15px 10px 15px;
  color: white;
}
.gredient_bg p {
  height: 90px;
}
.fancyCard {
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
}
.fancyCard:hover .gredient_bg {
  bottom: 0px;
}
.fancyCard:hover .bg_img {
  scale: 1.1;
}
.section {
  padding: 80px 0;
}
img.are_you_ready_img {
  position: absolute;
  bottom: 0;
  z-index: 1;
  height: 400px;
  /* left: 150px; */
}
.page_heading {
  background: url(../images/header_bg.jpg);
  padding-top: 220px;
  color: white;
  text-align: left;
  padding-bottom: 30px;
}
.map-container {
  overflow: hidden;
  border-radius: 10px;
}

@media only screen and (max-width: 1024px) {
  body {
    font-size: 13px;
  }
  .gredient_bg {
    bottom: 0px;
  }
  .gredient_bg p {
    font-size: 13px;
  }
  .gredient_bg h3 {
    font-size: 15px;
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .gredient_bg {
    bottom: 0px !important;
  }
  .gredient_bg p {
    height: auto;
  }
  nav#header ul {
    flex-direction: column;
    align-items: end;
    background: #000;
    min-width: 250px;
    height: 100vh;
    overflow: auto;
    position: absolute;
    top: 0;
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
    padding-top: 50px;
  }
  nav#header ul.open {
    right: 0;
  }
}
