@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&display=swap');

:root {
  --brand-primary: 222, 7, 23;
  --primary: 222, 7, 23;
}




body {
  background: #fff;
  color: #000;
  font-family: 'Merriweather', serif;
  line-height: 2;
  font-size: 14px;
}

.btn-primary {
  color: #fff;
  background-color: rgb(var(--brand-primary));
  border-color: rgb(var(--brand-primary));
  font-weight: 500;
  font-size: 14px;
  border-radius: 2px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  color: #fff;
  opacity: 0.9;

  background-color: rgb(var(--brand-primary)) !important;
  border-color: rgb(var(--brand-primary)) !important;
  box-shadow: 0 0 0 0.2rem rgba(var(--brand-primary), 0.2) !important;
}

/* Menu */
.navbar {
  background-color: transparent !important;
  border-bottom: 1px solid transparent;
  transition: all 300ms ease;
  padding: 0 15px;
}

.fixed {
  background: #fff !important;
  border-bottom: 1px solid #eee;
}

.fixed .navbar-nav .nav-item .nav-link {
  color: #000;
}

.navbar .container {
  border-bottom: 1px solid rgb(255 255 255 / 20%);
  padding: 20px 15px;
}

.navbar-brand img {
  width: 80px;
  filter: brightness(0) invert(1);
}

.fixed .navbar-brand img {
  width: 80px;
  filter: none
}

.navbar-nav .nav-item .nav-link {
  color: #FFFFFF;
  padding: 1rem;
  font-size: 13px;
  font-weight: 600;
  /* letter-spacing: 1px; */
  transition: all .4s linear;
  text-transform: uppercase;
}

.navbar-nav .nav-item.active .nav-link {
  color: rgb(var(--brand-primary));
  position: relative;
  font-weight: 600;
}

.navbar-nav .nav-item.active .nav-link:before {
  content: "";
  color: rgb(var(--brand-primary));
  width: 20px;
  height: 3px;
  background: rgb(var(--brand-primary));
  position: absolute;
  left: 0;
  bottom: 10px;
  right: 0;
  margin: auto;
  border-radius: 20px;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #de0717;
}



/* Landing */
.landing {
  position: relative;
  height: 100vh;
  /* background: url('../images/banner1.jpg') no-repeat;
  height: calc(100vh - 00px);
  display: flex; */
  /* background: no-repeat center center scroll; */
  /* background-size: cover; */
  /* background-position: 0px 0px;
  background-repeat: repeat-x;
  animation: animatedBackground 20s linear infinite; */
}

@keyframes animatedBackground {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 100% 0;
  }
}

.slider-item {
  height: 100vh;
  background-size: cover !important;
  position: relative;
  z-index: 10;
}

.slider-item:nth-child(1) {}

.landing .slider-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 71%, rgba(0, 0, 0, 0.8) 100%);
  z-index: -1;
}

.caption {
  position: absolute;
  bottom: 20%;
  max-width: 650px;
}


.caption h2 {
  color: #fff;
  font-weight: 700;
  font-size: 8vh;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.caption h2 strong {
  font-weight: 900;
  text-transform: uppercase;
}

.enquire {
  color: rgb(var(--brand-primary));
  text-decoration: none;
  transition: all .4s linear;
  font-size: 10px;
}

.enquire i {
  margin-left: 2px;
  transition: all .4s linear;
}

.enquire:hover {
  color: rgb(var(--brand-primary));
  text-decoration: none;
  opacity: 0.8;
}

.enquire:hover i {
  margin-left: 5px;
}


.slick-dots {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  width: 20px;
  height: 80px;
  margin: auto;
}

.slick-dots li {
  display: block;
  margin-bottom: 20px;
}

.slick-dots li.slick-active button {
  background: rgb(255 255 255 / 50%);
}

.slick-dots li button:before {
  display: none;
}

.slick-dots li button {
  width: 4px;
  height: 25px;
  background: rgb(255 255 255 / 15%);
  padding: 0;
  border-radius: 10px;
}


.caption p {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 14px;
}



.section {
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.heading {
  margin-bottom: 2rem;
}

.heading h2 {
  color: #000;
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.heading p {
  color: #7C7C7C;
  font-size: 0.850rem;
  line-height: 2;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}



/* Services */
.services {}

.service-item {
  margin: 2.5rem 0;
}

.service-item a {
  color: #000;
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: none;
  font-size: 14px;
}

.service-item .icon {
  transition: all .2s linear;
  background: rgba(var(--brand-primary), 0.03);
  border-radius: 50%;
  padding: 10px;
  width: 75px;
  height: 75px;
  margin: 10px auto;
  overflow: hidden;
}

.service-item:hover .icon {
  background: rgba(var(--brand-primary), 0.08);
}

.service-item i {
  font-size: 2.5rem;
  transition: all .2s linear;
  line-height: 1.5;
  color: rgb(var(--brand-primary));
}

.service-item:hover i {
  transform: scale(1.2);
}


.services-card {
  background: #fff;
  color: rgb(var(--brand-primary));
  border: 1px solid rgb(var(--brand-primary));
  padding: 1rem;
  transition: all .8s ease;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  z-index: 100;
}

.services-card:hover {
  background: rgb(var(--brand-primary));
  color: #FFFFFF;
}

.col-sm-4:first-child .services-card svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 115%;
  opacity: 0.03;
  z-index: -1;
}

.col-sm-4:nth-child(2) .services-card svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 340%;
  opacity: 0.03;
  z-index: -1;
}

.col-sm-4:last-child .services-card svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  opacity: 0.03;
  z-index: -1;
  transform: translateY(-249px);
}

.services-card:hover svg {
  width: 300%;
}

.services-card h5 {
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  text-transform: capitalize;
}

.services-card p {
  color: #7c7c7c;
  font-size: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.services-card:hover p,
.services-card:hover h5 {
  color: #fff;
}



/* Clients */
.clientimg {
  max-width: 120px;
  margin: 15px auto;
  display: block;
}

/* Contact */
.contactus i {
  margin-bottom: 1rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#187DBC), to(#84C225));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3rem;
}

.contactus {
  background-image: url("../images/landing.png");
  margin-bottom: 1rem;
}

.contactus p {
  color: #7c7c7c;
  line-height: 2;
  font-size: 14px;
}

/* Footer */
.footer {
  padding: 70px 0 0 0;
  background: url('../images/footer.png') no-repeat;
  color: #fff;
  font-size: 12px;
  position: relative;
  background-size: cover;
}

.footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(0 0 0 / 70%);
  width: 100%;
  height: 100%;
}

.footer-links {
  text-align: right;
  margin: 0;
}

.footer-links li a {
  color: #7c7c7c;
  font-size: 14px;
  padding: 0 0.5rem;
}

.footer-top {
  padding-bottom: 40px;
}

.footer-bottom {
  background-color: #000;
  font-size: 12px;
  padding: 10px 0;
  overflow: hidden;
}

.footer-bottom .copyright p {
  color: #fff;
  font-size: 10px;
  text-align: center;
}

@media (max-width:992px) {
  .navbar-collapse {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    z-index: 100;
    padding: 10px 0px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border: 1px solid #eee;
  }

  .navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, .5);
    border-color: transparent;
    outline: none;
  }

  .navbar-light .navbar-toggler .navbar-toggler-icon {
    background-image: none;
  }

  .navbar-light .navbar-toggler .navbar-toggler-icon::before {
    content: "MENU";
    font-size: 12px;
  }

  .navbar-light .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: none;
    /* background-image: url("../images/x.svg");
    background-size: 45px; */
  }

  .navbar-light .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    content: "CLOSE";
    font-size: 12px;
  }

  .navbar-nav .nav-item .nav-link {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1rem;
    font-weight: bold;
  }

  .banner .caption h2 {
    font-size: 7vh;
  }

  .footer-links {
    text-align: center;
    padding-top: 10px;
  }

  .footer img {
    display: block;
    /* margin: 0 auto; */
  }
}

.popular-images img {
  width: 275px;
}

.services-images {}




.why-services {
  margin: 35px;
}

.top-dest {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  width: 130px;
  height: 130px;
  margin: 20px auto;
}

.top-dest img {
  width: 130px;
  height: 130px;
  transition: all .2s linear;
}

.top-dest:hover img {
  /* filter: blur(1px); */
  transform: scale(1.2);
}

.top-dest a {
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.750rem;
  font-weight: 600;
  line-height: 1.3;
  background: rgb(0 0 0 / 10%);
  padding: 0 13px;
}

.scroll {
  position: absolute;
  bottom: 15%;
  transition: all ease 0.5s;
  width: 60px;
  height: 50px;
  display: block;
  /* margin: auto; */
  /* left: 0; */
  right: 2px;
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
  -ms-animation: bounce 2s infinite;
  /* margin-left: 1px; */
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.scroll img {
  max-width: 70px;
}

a.scroll:hover {
  bottom: 10%;
  transition: all ease 0.4s;
}

.package-card {
  margin: 20px 0;
  overflow: hidden;
}

.package-card .card-image-top {
  overflow: hidden;
  max-height: 220px;
}

.package-card img {
  transition: all .2s linear;
}

.package-card:hover img {
  /* filter: blur(1px); */
  transform: scale(1.2);
}

.package-card .card-body {
  position: relative;
}

.package-card .card-title {
  font-weight: 700;
  color: #000;
  font-size: 14px;
  margin-top: 20px;
}

.package-card .card-text {
  font-size: 0.750rem;
  color: #7c7c7c;
  margin-bottom: 10px;
}

.package-card ul {
  margin: 0;
  padding: 0 15px;
  font-size: 11px;
  color: #7c7c7c;
  text-transform: capitalize;
}

.link-btn {
  color: rgb(var(--brand-primary));
  font-size: 12px;
  transition: all .2s ease;
  font-weight: 600;
  border-bottom: 1px dashed rgb(var(--brand-primary));
}

.link-btn:hover {
  color: #000;
  font-size: 12px;
  opacity: 0.8;
  text-decoration: none;
}

.price {
  display: none;
  background: rgb(var(--brand-primary));
  width: 80px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px;
  line-height: 1;
  position: absolute;
  right: 10px;
  top: -10px;
}

.why-gcr h2 {
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.why-gcr p {
  color: #7c7c7c;
  font-size: 14px;
}

.why-gcr .img-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.why-gcr .img-wrap img {
  box-shadow: 30px 30px 0px 5px rgba(var(--brand-primary), 0.05);
}

.footer-top .small {
  font-size: 10px;
  max-width: 80%;
}

.footer-top h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-top ul {
  margin-bottom: 0;
}

.footer-top a {
  font-size: 12px;
  color: #fff;
  margin-bottom: 5px;
  display: inline-block;
}




.page-banner {
  background: url(../images/landing.png);
  height: 300px;
  background-size: cover;
  background-position: bottom;
  position: relative;
  width: 100%;
  color: fff;
  padding: 2rem 0;
}

.page-banner:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
}

.page-banner h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 10% 0 0 0;
  line-height: 1;
  text-transform: uppercase;
}

.contact {}

.contact-info {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  align-content: center;
}

.contact-info i {
  font-size: 2rem;
  color: rgb(var(--brand-primary));
  display: flex;
  margin: 5px 0;
  margin-right: 1rem;
}

.contact-info a {
  color: #7c7c7c;
  font-size: 12px;
}

.contact-info p {
  font-size: 12px;
  color: #7c7c7c;
}

.contact h5 {
  font-weight: 600;
  margin-bottom: 2rem;
  font-size: 16px;
}

.form-control {
  position: relative;
  display: block;
  width: 100%;
  line-height: 28px;
  padding: 10px 0px;
  height: 50px;
  color: #848484;
  font-size: 14px;
  border: 0;
  border-bottom: 2px solid #f2f2f2 !important;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  border-radius: 0;
}

.form-control:focus {
  border-bottom: 2px solid rgb(var(--brand-primary)) !important;
  box-shadow: none;
}



.about .image {
  position: relative;
  padding: 40px;
}

.about .image img {
  position: relative;
  width: 100%;
  display: block;
  box-shadow: -20px 20px 0px rgba(var(--brand-primary), 0.05);
}
.about p {
  color: #7c7c7c;
}


.call-to-action-section {
  position: relative;
  padding: 45px 0px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.call-to-action-section:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgb(var(--brand-primary));
}

.call-to-action-section h2 {
  position: relative;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 2;
  max-width: 70%;
}

.call-to-action-section .link-column {
  position: relative;
  text-align: right;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.call-to-action-section .apointment {
  position: relative;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 2px solid #ffffff;
  text-decoration: none;
  letter-spacing: 2px;
  padding-bottom: 3px;
}

.navbar .btn {
  margin-top: 15px;
  margin-left: 10px;
  padding: 4px 12px;
  font-size: 12px;
}

.faq h5 {
  font-weight: 800;
  font-size: 1rem;
}

.faq p {
  color: #7c7c7c;
  font-size: 12px;
  margin-bottom: 2rem;
}




.testimonials {
  text-align: center;
  max-width: 600px;
  width: 100%;
  margin: 20px auto 20px auto;
}

.testimonial {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.testimonial .details span {
  display: block;
  width: 100%;
  margin: 0 auto;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.testimonial p {
  color: #7c7c7c;
  font-style: italic;
  font-weight: 300;
  line-height: 2;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 14px;
}

.testimonial img {
  text-align: center;
  max-width: 75px;
  margin: 20px auto;
  border-radius: 50%;
  box-shadow: 8px 4px 0 0px rgba(var(--brand-primary), 50%);
}


.slick-prev:before {
  width: 72px;
  height: 72px;
  background: url(//www.gobillable.com/2225413/Assets-2016/arrow-right-rollover-state.png) no-repeat;
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 1;
  filter: grayscale(0);
  -webkit-filter: grayscale();
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  transform-origin: 50% 25%;
}

.slick-next:before {
  width: 72px;
  height: 72px;
  background: url(http://www.gobillable.com/2225413/Assets-2016/arrow-right-rollover-state.png) no-repeat;
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 1;
  filter: grayscale(0);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transform-origin: 50% 25%;
}

.fixed-top .navbar-toggler {
  color: #fff;
  font-weight: bold;
  letter-spacing: 3px;
}

.fixed .navbar-toggler {
  color: #000;
  font-weight: bold;
  letter-spacing: 3px;
  width: 100px;
  text-align: right;
}

@media(max-width:650px) {
    .slider-item {
        background-position: -360px 2px !important;
    }
  .mob-scroll {
    overflow: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .package-details .image-column.col-md-3 {
    padding: 15px 15px;
  }
  .package-card {
    overflow: hidden;
    min-width: 280px;
    height: 90%;
  }

  .service-item {
    min-width: 160px;
  }

  .call-to-action-section h2 {
    max-width: 100%;
  }

  .footer-top .col-sm-6,
  .footer-top .col-sm-2 {
    margin-bottom: 2rem;
  }

  .caption h2 {
    font-size: 6vh;
  }

  .navbar-nav .nav-item .nav-link {
    color: #000;
  }

  .navbar-nav .nav-item.active .nav-link:before {
    right: inherit;
    left: 15px;
  }

  .navbar .btn {
    margin-left: 15px;
    min-width: 100px;
    padding: 8px 7px;
  }

  .slick-dots {
    top: auto;
    left: 0;
    right: 0;
    width: 100%;
  }

  .slick-dots li {
    display: inline-block;
    margin: 0 15px;
  }

  .slick-dots li button {
    width: 40px;
    height: 5px;
  }
}


.fbox {
  overflow: hidden;
  margin: 15px 0 15px 0;
}

.fbox img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: all .2s linear;
}

.fbox:hover img {
  transform: scale(1.2);
}

.package-details p,
ul {
  color: #7c7c7c;
}

.package-details h5 {
  font-weight: 800;
  font-size: 1rem;
}

.highlights {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.highlights .col {
  padding: 6px;
  width: 36px;
  height: 36px;
  text-align: center;
  border-radius: 2px;
  line-height: 1.2;
  margin: 5px 5px;
}

.pkg-highlight {
  background: rgba(var(--brand-primary), 0.05);
  color: rgba(var(--brand-primary), 1);
  font-size: 21px;
  padding: 6px;
  width: 32px;
  height: 32px;
}

.popover {
  background: #000;
}

.bs-popover-auto[x-placement^=top]>.arrow::before, .bs-popover-top>.arrow::before {
  border-top-color: #000;
}

.bs-popover-auto[x-placement^=top]>.arrow::after, .bs-popover-top>.arrow::after {
  border-top-color: #000;
}

.bs-popover-auto[x-placement^=bottom]>.arrow::after, .bs-popover-bottom>.arrow::after {
  border-bottom-color: #000;
}

.popover-body {
  padding: 3px 8px;
  font-size: 10px;
  color: #fff;
}

.service-block {
  margin-bottom: 2rem;
}
.service-block .se-title {
  font-weight: bold;
  font-size: 16px;
}
.service-block p {
  font-size: 14px;
  color: #7c7c7c;
}


.package-details .image-column.col-md-3 {
  padding: 100px 30px;
}


/** Text Animation **/

@-webkit-keyframes fadeInUpSD {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpSD {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpSD {
  -webkit-animation-name: fadeInUpSD;
  animation-name: fadeInUpSD;
}

.slick-active .caption {
  animation-name: fadeInUpSD;
  animation-duration: 1s;
  opacity: 1;
  width: 100%;
  padding: 10px 20px 30px 0;
}

/* Text Animation End **/