/********** Template CSS **********/
:root {
  /*--primary: #0037b9;*/
  /*--primary: #00B98E;*/
  --light: #f3f6f893;
  --dark: #0e2e50;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.my-6 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
  color: #ffffff;
}

.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;
  font-weight: normal;
  border-radius: 50px;
}

/*** Navbar ***/
.navbar .navbar-nav .nav-link {
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  color: #ffffff;
  font-weight: 500;
  outline: none;
  transition: 0.5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #ffffff;
}

.sticky-top.navbar .navbar-nav .nav-link {
  padding: 20px 0;
  /*color: var(--dark);*/
}

.sticky-top.navbar .navbar-nav .nav-link:hover,
.sticky-top.navbar .navbar-nav .nav-link.active {
  color: var(--light);
}

.navbar .navbar-brand h1 {
  color: #ffffff;
}

.navbar .navbar-brand img {
  max-height: 75px;
  transition: 0.5s;
}

.sticky-top.navbar .navbar-brand img {
  max-height: 45px;
}

.indexHeader {
  /* top: 104px; */
}

@media (max-width: 1000px) {
  .sticky-top.navbar {
    position: relative;
    background: #ffffff;
  }

  .navbar {
    /* background: linear-gradient(40deg, #45cafc, #303f9f); */
    background: white;
    text-align: center;
  }

  .dropdown-menu {
    text-align: center;
  }

  .navbar .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar .navbar-nav .nav-link,
  .sticky-top.navbar .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    background: linear-gradient(40deg, #45cafc, #303f9f);
    /*color: var(--dark);*/
  }

  .navbar .navbar-nav .nav-link:hover,
  .navbar .navbar-nav .nav-link.active {
    color: var(--light);
  }

  .navbar .navbar-brand h1 {
    color: var(--light);
  }

  /* .navbar .navbar-brand img {
    max-height: 45px;
  } */

  .header-info-img {
    height: 22px !important;
  }

  .img-height {
    height: 355px !important;
  }

  .img-height1 {
    height: 355px !important;
  }

  .carousel-caption {
    bottom: 5.25rem !important;
    left: 15% !important;
    z-index: 1;
  }

  .item:after {
    top: 0 !important;
  }

  .show1 {
    display: block !important;
  }

  .show2 {
    display: none !important;
  }

  #Intro-Comp-Name h1 {
    font-size: 35px !important;
  }

  #Intro-Comp-Name h1 b {
    font-size: 65px !important;
  }

  .img-thumbnail {
    height: 200px !important;
  }

  /*#contact-sm {
    font-size: 12px !important;
}
*/
}

@media (min-width: 992px) {
  .navbar {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    /* border-bottom: 1px solid rgba(256, 256, 256, 0.2); */
    z-index: 999;
    /* background: linear-gradient(40deg, #45cafc, #303f9f); */
    background: white;
  }

  .navbar #navbarCollapse a {
    color: black;
    border: none;
  }

  .sticky-top.navbar {
    position: sticky !important;
    /* background: linear-gradient(40deg, #45cafc, #303f9f); */
    background: white;

    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    /*background: #3CB371;*/
  }

  .navbar .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    bottom: 10px;
    left: 0;
    background: #ffffff;
    opacity: 0;
    transition: 0.1s;
  }

  .sticky-top.navbar .navbar-nav .nav-link::before {
    /*background: var(--light);*/
  }

  .navbar .navbar-nav .nav-link:hover::before,
  .navbar .navbar-nav .nav-link.active::before {
    bottom: -1px;
    left: 0;
    opacity: 1;
  }

  .navbar .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .sticky-top.navbar .navbar-brand h1 {
    color: var(--light);
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    left: -15px;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }

  .navbar .nav-item .test-drop .check-drop .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 0%;
    left: -170%;
    transform: rotateY(-75deg);
    transform-origin: 100% 0%;
    transition: 0.5s;
    opacity: 0;
    width: 300px;
  }

  .navbar .nav-item .test-drop .check-drop:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }

  .show1 {
    display: none;
  }

  .show2 {
    display: block;
  }

  .valuation-menu {
    left: -45% !important;
  }
}

/*** Hero Header ***/

.hero-header1 {
  margin-bottom: 3rem;
  padding: 8rem 0 8rem 0 !important;
  /*background: linear-gradient(40deg, #45cafc, #303f9f) !important;*/
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/aboutus.jpg") !important;
  background-size: 100% 100%;
}

.hero-header2 {
  margin-bottom: 3rem;
  /*padding: 16rem 0 10rem 0;*/
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/contact.jpg") !important;
  background-size: 100% 100%;
}

/*#header-top{
    background-image: url("../img/unsplash.jpg") !important;
    background-size: cover;
}*/

.page-header {
  margin-bottom: 6rem;
  /*padding: 12rem 0 6rem 0;*/
  padding: 9rem 0 3rem 0;
}

@media (max-width: 991.98px) {
  .hero-header {
    padding: 6rem 0 9rem 0;
  }

  .page-header {
    padding: 6rem 0;
  }
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(256, 256, 256, 0.5);
}

/*** Service ***/
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
  border: 1px solid transparent;
  transition: 0.5s;
}

.service-item:hover {
  box-shadow: none;
  border-color: var(--dark);
}

.service-item .service-icon,
.service-item .service-btn {
  margin: -1px 0 0 -1px;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--dark);
  border-radius: 5px 0;
  transition: 0.5s;
}

.service-item .service-btn {
  margin: -1px -1px 0 0;
  border-radius: 0 5px;
  opacity: 0;
}

.service-item:hover .service-btn {
  opacity: 1;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
  border: 1px solid transparent;
  transform: scale(0.85);
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  box-shadow: none;
  /*border-color: var(--primary);*/
  transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-item img {
  width: 50px;
  height: 50px;
}

.testimonial-carousel .owl-nav {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  /*color: var(--primary);*/
  /*border: 1px solid var(--primary);*/
  border-radius: 45px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: #ffffff;
  background: var(--dark);
}

/*** Team ***/
.team-item {
  position: relative;
  padding: 30px;
  text-align: center;
  transition: 0.5s;
  z-index: 1;
}

.team-item::before,
.team-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 5px;
  background: #ffffff;
  /* box-shadow: 0 0 45px rgba(0, 0, 0, 0.07); */
  transition: 0.5s;
  z-index: -1;
}

.team-item::after {
  top: auto;
  bottom: 0;
}

.team-item:hover::before,
.team-item:hover::after {
  background: var(--dark);
  /*color: white;*/
}

.team-item h5,
.team-item p {
  transition: 0.5s;
}

.team-item:hover h5,
.team-item:hover small {
  color: #ffffff;
}

.team-item img {
  padding: 15px;
  /*border: 1px solid var(--primary);*/
}

/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid rgba(256, 256, 256, 0.1);
  border-radius: 40px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  /*color: var(--primary);*/
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
  color: var(--light);
  font-weight: normal;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 14px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.img-height {
  height: 600px;
}

.img-height1 {
  /* height: 500px; */
  height: 41rem;
  filter: brightness(0.7);
}

.img-height-banner {
  height: 300px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5% !important;
}

.carousel-caption {
  bottom: 14.25rem;
  left: 15% !important;
  z-index: 1;
}

.item {
  position: relative;
}
.item:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #00000066;
}

.fluid-size {
  width: -webkit-fill-available !important;
  height: 200px !important;
}

.fluid-size2 {
  width: 150px !important;
  height: 120px !important;
}

#Intro-Comp-Name h1 {
  font-size: 50px;
}

#Intro-Comp-Name h1 b {
  font-size: 75px;
}

.section {
  margin: 0;
  scroll-margin-top: 2em;
}

.section-v {
  margin: 0;
  scroll-margin-top: 4em;
}

.overflow {
  overflow: auto;
}

.img-thumbnail {
  width: 100%;
  height: 350px;
}

.dropdown-item {
  border-bottom: 0.5px solid #00000024;
}

.dropdown-menu a:active {
  background-color: grey;
}

#navbarCollapse a:hover {
  color: rgba(0, 0, 0, 0.74);
}

.card-slider {
  max-width: 95%;
  margin: 0 auto;
  /** Main link */
  /** Product title */
  /** Product image */
  /** Product description */
  /** Floating "sale" badge */
  /** Price */
  /** Rating */
  /** "30 reviews" link next to stars */
  /** Hover state = add box shadow, underline the title */
}
@media screen and (max-width: 1024px) {
  .card-slider {
    width: 80%;
  }
}
.card-slider .slick-prev-icon,
.card-slider .slick-next-icon {
  color: black;
}
.card-slider .slick-slide {
  padding: 0 10px;
}
.card-slider .card {
  position: relative;
  display: flex !important;
  flex-direction: column;
  height: 250px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: white;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.9);
  transition: all 0.1s linear;
}
@media screen and (max-width: 600px) {
  .indexHeader {
    position: absolute !important;
    top: 0 !important;
  }

  .py-6 {
    padding-top: 0 !important;
  }
  .card-slider .card {
    height: auto;
  }
}
.card-slider .card .main-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.card-slider .card .main-link:focus {
  outline: none;
}
.card-slider .card .main-link:focus .title {
  outline: 3px dashed orange;
  outline-offset: -4px;
  color: royalblue;
  text-decoration: underline;
}
.card-slider .card .title {
  color: #000;
  margin: 0;
  padding: 10px 10px 5px 10px;
  font-size: 16px;
  font-weight: bold;
}
.card-slider .card .title:hover {
  text-decoration: underline;
}
.card-slider .card .image {
  /** Visually place the image above all other content (like the heading) in the parent flex container (.card). */
  order: -1;
  position: relative;
  height: 100px;
  padding: 2px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-slider .card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  filter: grayscale(0.5);
  transition: all 0.3s ease-in-out;
}
.card-slider .card .image:hover img {
  width: 110%;
  height: 110%;
}
.card-slider .card .description {
  margin: 7px 10px 15px 10px;
  font-size: 14px;
  opacity: 0.8;
}
.card-slider .card .badge {
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: 1;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  background-color: #c80000;
}
.card-slider .card .price {
  padding-left: 10px;
}
.card-slider .card .price .new-price {
  font-weight: bold;
}
.card-slider .card .price .original-price {
  margin-left: 5px;
  font-size: 14px;
  font-style: italic;
  opacity: 0.5;
  text-decoration: line-through;
}
.card-slider .card .rating {
  margin: 10px 0 15px 10px;
  color: orange;
  font-size: 12px;
}
.card-slider .card .rating .reviews-link {
  color: rgba(0, 0, 0, 0.6);
  margin-left: 5px;
}
.card-slider .card .rating .reviews-link:hover {
  color: black;
}
.card-slider .card .rating .reviews-link:focus {
  color: royalblue;
  outline: 3px dotted royalblue;
  outline-offset: 2px;
}
.card-slider .card:hover {
  border-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.card-slider .card:hover .image img,
.card-slider .card:focus .image img {
  filter: grayscale(0);
}
.card-slider .card a:focus {
  outline: none;
}

/**
  Demo only
*/
.note {
  text-align: center;
  font-size: 14px;
  max-width: 960px;
  padding: 40px 20px;
  margin: 0 auto;
  opacity: 0.8;
}
.note a {
  color: black;
  font-weight: bold;
}
.note a:hover,
.note a:focus {
  color: royalblue;
}

.other-card {
  overflow: hidden;
  height: 250px;
}

.text-justify {
  text-align: justify;
}
