/* global css start */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");
:root {
  --color-primary: #d63e31;
  --color-secondary: #fdf4f3;
  --color-blue: #0074ee;
  --color-dark-blue: #07284b;
  --color-heading: #3c424f;
  --font-roboto: "Roboto", sans-serif;
}
body {
  font-family: var(--font-roboto);
}
.form-control:focus {
  box-shadow: unset;
}
a,
a:hover {
  color: var(--color-primary);
  text-decoration: none;
}
.color-primary {
  color: var(--color-primary);
}
.color-secondary {
  color: var(--color-secondary);
}
.background-primary {
  background-color: var(--color-primary);
}
.background-secondary {
  background-color: var(--color-secondary);
}
.background-blue {
  background-color: var(--color-blue);
}
.background-dark-blue {
  background-color: var(--color-dark-blue);
}
/* max width 90% only in pc */
@media only screen and (min-width: 768px) {
  .container-pc-90 {
    max-width: 90%;
  }
}

.btn-global {
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 500;
  padding-left: 2.2rem;
  padding-right: 2.2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.6rem;
  position: relative;
}
.btn-global:hover {
  color: var(--color-primary);
  background: transparent;
  border: 1px solid var(--color-primary);
}
.btn.btn-global:active {
  color: var(--color-primary);
  background: transparent;
  border: 1px solid var(--color-primary);
}
.btn-shine {
  position: relative;
}
.btn-shine:before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 80px;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  opacity: 1;
  transition: opacity 0.3s ease;
  animation: shine 2s linear infinite;
  transform: skewX(30deg); /* Adjust the angle as needed */
}
@keyframes shine {
  0% {
    left: -5%;
  }

  100% {
    left: 60%;
  }
}
.btn-outline-global {
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  font-weight: 500;
  padding-left: 2.2rem;
  padding-right: 2.2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.6rem;
}
.btn-outline-global:hover {
  background-color: var(--color-primary);
  color: #000;
}
/* @media only screen and (max-width: 768px){ */
/* @media only screen and (min-width: 768.1px) and (max-width: 992px){ */
.text-justify{
  text-align: justify;
}
/* global css end */

/* header start */
header {
  /* position: absolute; */
  /* z-index: 2;
  top: 0; */
  /* background: red; */
  width: 100%;
}
.navbar-nav .nav-item .nav-link {
  color: #000;
  margin-left: 0.2rem;
  margin-right: 0.2rem;
  font-weight: 500;
}
.navbar-nav .nav-item .nav-link:hover {
  color: var(--color-primary);
}
/* .navbar-brand {
  color: #000;
  font-weight: 600;
} */
/* .navbar-brand:hover {
  color: var(--color-primary);
} */
.navbar-brand img{
  width: 210px;
}
.topbar {
  background-color: #000;
  padding-top: 0.45rem;
  padding-bottom: 0;
}
.topbar a {
  color: #fff;
  margin-right: 1rem;
  font-size: 0.9rem;
}
.topbar a img {
  width: 22px;
  margin-bottom: 3px;
}
.topbar a:hover {
  color: var(--color-primary);
}
.fixed-top {
  box-shadow: 0 1px 5px rgb(60 66 76 / 30%);
  /* background-color: var(--color-dark-blue); */
}
.main-navbar {
  /* padding-top: 1.4rem;
  padding-bottom: 1.4rem; */
  padding-top: 1.2rem;
  padding-bottom: 1rem;
  background-color: #fff;
}
.dropdown-menu li a:hover {
  background-color: var(--color-primary);
  color: #fff;
}
@media only screen and (max-width: 768px) {
  header {
    position: relative;
    background-color: var(--color-dark-blue);
  }
  .offcanvas.offcanvas-end {
    width: 350px;
  }
}
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}
/* header end */

/* footer start */
footer {
  background-color: #ededed;
  /* color: #fff; */
  overflow: hidden;
}
.footer-fluid1 {
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.footer-logo {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .footer-logo {
    width: 130px;
  }
  .footer-btn a {
    font-size: 15px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* footer end */

/* hero start */
.hero-img {
  filter: brightness(0.4);
  height: 20rem;
  object-fit: cover;
}
/* Round Bullet Point and color Start */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-secondary);
}
.carousel-indicators .active {
  background-color: var(--color-primary);
}
/* Round Bullet Point and color End */
.hero-caption {
  top: 50%;
  transform: translateY(-88%);
}
.hero-caption h3 {
  font-size: 2.5rem;
}
.hero-caption h5 {
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .hero-caption {
    left: 10%;
    right: 10%;
  }
  .hero-caption h3 {
    font-size: 2rem;
  }
  .hero-img {
    height: 26rem;
  }
  .hero-caption {
    transform: translateY(-95%);
  }
  .hero-caption h5 {
    font-weight: 400;
  }
}
/* hero end */

/* block2 start */
.block2-overlay h3 {
  font-size: 5rem;
  font-weight: 600;
}
.block2-box-right p {
  font-size: 0.9rem;
}
.crane {
  position: absolute;
  width: 90px;
  right: 36px;
  top: 40px;
}
.why-choose-img {
  height: 580px;
  object-fit: cover;
  filter: brightness(0.7);
}
@media only screen and (max-width: 768px) {
  .block2-overlay h3 {
    font-size: 2.5rem;
  }
  .crane {
    top: 59px;
  }
  .why-choose-img{
    height: 380px;
  }
}
/* block2 end */

/* blog start */
.card-blog a img {
  height: 350px;
  object-fit: cover;
}
.card-blog .card-body h5 a {
  color: #000;
}
.card-blog .card-body h5 a:hover {
  color: var(--color-primary);
}
.card-blog {
  transition: 1.1s cubic-bezier(0.16, 0.84, 0.442, 0.98);
}
.card-blog:hover {
  transform: translateY(-7.5px);
}
.single-banner img {
  height: 32rem;
  object-fit: cover;
  filter: brightness(0.4);
}
.single-banner .card-img-overlay {
  bottom: -20%;
}
.single-head {
  font-size: 18px;
  background-color: #dededf;
  padding: 8px 15px 6px 15px;
  display: inline-block;
  margin: 0;
}
.single-head-div {
  border-bottom: 2px solid #dededf;
  margin-bottom: 2rem;
}
.recent-box {
  display: flex;
  margin-bottom: 1rem;
}
.recent-box-img a img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 3px;
}
.recent-box-content a h5 {
  font-size: 19px;
  color: #000;
}
.recent-box-content a h5:hover {
  color: var(--color-primary);
  transition: all 0.4s ease-in-out;
}
.tags-sidebar a {
  box-shadow: 0 10px 20px -5px rgb(0 0 0/10%);
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 6px 14px;
  border-radius: 6px;
  transition: 1.1s cubic-bezier(0.16, 0.84, 0.442, 0.98);
}
.tags-sidebar a:hover {
  transform: translateY(-3.5px);
}
.ul-circle {
  list-style: circle;
}
.ul-circle li {
  margin-bottom: 1rem;
}
.ul-circle li a {
  color: #484848;
}
.ul-circle li a:hover {
  color: var(--color-primary);
}
@media only screen and (max-width: 768px) {
  .single-banner img {
    height: 20rem;
  }
  .single-banner .card-img-overlay {
    bottom: 0;
  }
}
/* blog end */

/* contact us start */
.contact-map {
  height: 400px;
}
.contact-box-left {
  padding: 3rem 2rem 3rem 2rem;
}
.contact-box-right {
  padding: 3rem 3rem 3rem 3rem;
}
.input-control {
  border: 1px solid #000;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
@media only screen and (max-width: 768px) {
  .contact-box-right {
    padding: 3rem 2rem 3rem 2rem;
  }
  .contact-box-left {
    padding: 4rem 2rem 1rem 2rem;
  }
}
/* contact us end */

/* inner banner start */
.inner-banner img {
  height: 230px;
  object-fit: cover;
  filter: brightness(0.4);
}
.inner-banner .card-img-overlay {
  top: 8%;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .inner-banner img {
    height: 200px;
  }
}
/* inner banner end */

/* testimonial start */
.testimonial {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-image: url("../images/wave.jpg");
  background-size: cover;
}
.testimonial-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.testimonial-box > img {
  width: 40px !important;
}
.testimonial-box-inner {
  display: flex;
  align-items: center;
}
.testimonial-box-inner img {
  width: 55px !important;
  height: 55px !important;
  border-radius: 50%;
}
.testimonial-box-inner h6 {
  font-weight: 600;
}
.testimonial-box-inner p {
  font-size: 0.9rem;
}
/* testimonial end */

/* Back to top button start */
#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: var(--color-primary);
  font-size: 0;
  padding: 12px 12px;
  border-radius: 0;
  width: 40px;
  height: 40px;
  z-index: 1;
}

#btn-back-to-top:hover {
  background-color: #000;
}

/* Back to top button end */

/* whatsapp corner move start */
.sd-whatsapp {
  width: 60px;
  height: 60px;
  background: #2bb140;
  text-align: center;
  font-size: 35px;
  /* line-height: 62px; For Font Awesome */
  line-height: 54px; /* For Img */
  border-radius: 50%;
  position: fixed;
  bottom: 45px;
  left: 20px;
  z-index: 999;
  animation: sd-bounce 1s infinite alternate;
  -webkit-animation: sd-bounce 1s infinite alternate;
}
.sd-whatsapp a,
.sd-whatsapp a:hover,
.sd-whatsapp a:focus {
  color: #fff;
  display: block;
}

@keyframes sd-bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
    box-shadow: 0 0 7px 7px rgba(159, 161, 0, 0.55);
  }
}
@-webkit-keyframes sd-bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}
.sd-whatsapp a img {
  width: 45px;
}
/* whatsapp corner move end */

/* extra css start */
li#wp-admin-bar-wp-logo {
  display: none;
}
/* extra css end */