@font-face {
  font-family: "PlusJakartaSans-Regular";
  src: url("../font/Plus_Jakarta_Sans/PlusJakartaSans-Regular.ttf"), format("truetype");
}
@font-face {
  font-family: "PlusJakartaSans-SemiBold";
  src: url("../font/Plus_Jakarta_Sans/PlusJakartaSans-SemiBold.ttf"), format("truetype");
}
@font-face {
  font-family: "PlusJakartaSans-Bold";
  src: url("../font/Plus_Jakarta_Sans/PlusJakartaSans-Bold.ttf"), format("truetype");
}
@font-face {
  font-family: "PlusJakartaSans-Medium";
  src: url("../font/Plus_Jakarta_Sans/PlusJakartaSans-Medium.ttf"), format("truetype");
}
@font-face {
  font-family: "PlusJakartaSans-Light";
  src: url("../font/Plus_Jakarta_Sans/PlusJakartaSans-Light.ttf"), format("truetype");
}
@font-face {
  font-family: "RHESMANISA-BOLD";
  src: url("../font/Rhesmanisa/RHESMANISA-BOLD.ttf"), format("truetype");
}
.home-banner {
  
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  color: #FFF;
}
.home-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 30.17%, rgba(0, 0, 0, 0) 99.9%);
  z-index: 2;
}
.home-banner .container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
   z-index: 4;
   position: relative;
}
a:focus
 {
    outline: unset;
}
.dropdown .menu-link{
	display:flex !important;
	align-items:center !important;
}
.menu-item.nav-link.primary-btn .menu-link{
	display:flex !important;
	align-items:center !important;
	gap:3px !important;
}
.home-banner .container h1 {
  margin-bottom: 20px;
  font-size: 50px;
  font-family: "PlusJakartaSans-Bold";
  line-height: 62px;
  margin-top: 10px;
}
.home-banner .container p {
  color: #FFF;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 40px;
}
.home-banner .container bdi {
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}
.home-banner .home-banner-slider-img{
	z-index: 1;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
	object-fit:cover;
}
.home-banner-section .progressBarContainer {
  position: absolute;
  z-index: 1;
  display: flex;
  right: 0;
  bottom: 0px;
  gap: 40px;
  background: #C3000C;
  padding: 30px 26px 26px 40px;
}
.home-banner-section .progressBarContainer .item {
  	cursor: pointer;
	width:60px;
}

.home-banner-section .progressBarContainer .slide-jump {
  display: block;
  margin-bottom: 8px;  
  font-size: 20px;
  color: #fff;
}

.home-banner-section .progressBarContainer .progressBar {
  height: 5px;              
  background-color: #E30D1A;  
  overflow: hidden;
  position: relative;
}

.home-banner-section .progressBarContainer .progressBar .inProgress {
  display: block;
  height: 100%;
  background-color: #fff;   
}


.home-about {
  background: #0068C4;
}
.home-about .card {
  background: #C3000C;
  padding: 40px;
  margin-top: -190px;
}
.home-about .card bdi {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
}
.home-about .card .card-body {
  padding: 230px 0 0 0;
}
.home-about .card .card-body p {
  color: #FFF;
  font-size: 42px;
  font-family: "PlusJakartaSans-Bold";
  line-height: 56px;
  margin-bottom: 3px;
}
.home-about h2 {
  color: #FFF;
  font-size: 40px;
  line-height: 54px;
  margin-bottom: 15px;
}
.home-about p {
  color: #fff;
  margin-bottom: 15px;
}
.home-about p:last-of-type {
  margin-bottom: 50px;
}

.home-services h2 {
  color: #000;
  font-size: 40px;
  line-height: 54px;
}
.home-services .card-link .card {
  background: #C3000C;
  border: 0;
  padding-left: 40px;
}
.home-services .card-link .card .card-row {
  padding: 50px 30px 30px 0px;
}
.home-services .card-link .card .card-row h5 {
  color: #FFF;
  font-size: 24px;
  font-family: "PlusJakartaSans-SemiBold";
  margin-bottom: 15px;
}
.home-services .card-link .card .card-row p {
  color: #fff;
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-services .card-link .card .card-row .btn-arw {
  position: relative;
  z-index: 9;
  background: transparent;
  border: 0;
}
.home-services .card-link .card .card-row .btn-arw::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 9px;
  height: 25px;
  width: 25px;
  background-image: url("../images/home/arrow-down-right.png"), url("../images/home/arrow-down-right.png");
  background-position: 0 0px, -15px -15px;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  display: none;
  transition: opacity 0.5s cubic-bezier(0.84, -0.01, 0.25, 0.99);
  margin-left: 22px;
  animation-name: buttonArrow;
  animation-duration: 0.7s;
  animation-iteration-count: infinite;
}
@keyframes buttonArrow {
  0% {
    background-position: 0 0px, -15px 15px;
  }
  100% {
    background-position: 25px -25px, 0 0;
  }
}
.home-services .card-link .card .card-body {
  overflow: hidden;
}
.home-services .card-link .card .card-body img {
  width: 580px;
  height: 317px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s linear;
}
.home-services .card-link:hover .card .btn-arw svg {
  visibility: hidden;
}
.home-services .card-link:hover .card .btn-arw::after {
  display: block;
}
.home-services .card-link:hover .card .card-body img {
  transform: scale(1.1);
}

.why-choose {
  background: #0068C4;
}
.why-choose .why-choose-img img {
  position: absolute;
  left: -200px;
  bottom: -26%;
}
.why-choose bdi {
  color: #fff;
}
.why-choose h2 {
  color: #FFF;
  font-size: 40px;
  line-height: 54px;
  margin-bottom: 20px;
}
.why-choose h2 span {
  color: #4ECDFF;
  font-size: 40px;
  line-height: 54px;
}
.why-choose p {
  color: #FFF;
  line-height: 26px;
}
.why-choose .count-animate {
  padding-top: 70px;
  display: flex;
  gap: 60px;
}
.why-choose .count-animate span {
  color: #FFF;
  font-size: 40px;
  font-family: "PlusJakartaSans-Bold";
  line-height: 56px;
}
.why-choose .count-animate p {
  color: #FFF;
  font-size: 18px;
  line-height: 24px;
  text-transform: capitalize;
}

.our-project h2 {
  margin-bottom: 0;
  color: #000;
  font-size: 40px;
  line-height: 54px;
}
.our-project p {
  margin-bottom: 0;
  color: #333;
  line-height: 24px;
}
.our-project .card {
  border: 0;
	border-radius:0;
  background-color: transparent;
}
.our-project .card .card-body {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.our-project .project-slide:nth-child(4) .card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.our-project .card .card-body span {
  color: #8D8686;
  font-size: 13px;
  line-height: 18px;
  text-transform: uppercase;
}
.our-project .card .card-body h5 {
  color: #000;
  font-size: 24px;
  font-family: "PlusJakartaSans-SemiBold";
  margin-top: 6px;
}
.our-project .card .card-body p {
  color: #333;
  line-height: 24px;
	   display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.our-project .card .card-footer {
  background-color: transparent;
  border: 0;
  margin-top: 10px;
  padding-left: 0;
}
.our-project .card .card-footer a {
  color: #333;
}
.our-project .card .card-footer a:hover {
  color: #CA1722;
}
.our-project .card-bg {
  position: relative;
}
.our-project .card-bg img {
  position: absolute;
  height: 100%;
  width: 100%;
}
.our-project .card-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 40%) 81.15%);
  z-index: 1;
}
.our-project .card-bg .card-body {
  padding: 30px 30px 20px 30px;
}
.our-project .card-bg .card-body span {
  color: #fff;
}
.our-project .card-bg .card-body h5 {
  color: #fff;
}
.our-project .card-bg .card-body .card-footer bdo {
  color: #fff;
}

.testimonial-section {
	display:none;
  overflow: hidden;
}
.testimonial-section h2 {
  color: #000;
  font-size: 40px;
  line-height: 54px;
}
.testimonial-section p {
  color: #000;
}
.testimonial-section .testimonial-slider {
  margin-top: 36px;
}
.testimonial-section .testimonial-slider .card {
  background: #F9F9F9;
  border: 0;
  padding: 36px;
  margin: 10px;
  height: 100%;
  position: relative;
}
.testimonial-section .testimonial-slider .card svg:nth-child(2) {
  position: absolute;
  top: 20px;
  right: 20px;
}
.testimonial-section .testimonial-slider .card:hover svg:nth-child(2) path {
  fill: #fff;
}
.testimonial-section .testimonial-slider .card .card-body {
  padding-left: 0;
  padding-top: 24px;
}
.testimonial-section .testimonial-slider .card p {
  color: #000;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testimonial-section .testimonial-slider .card .card-footer {
  background: transparent;
  border: 0;
  padding-top: 70px;
  padding-left: 0;
}
.testimonial-section .testimonial-slider .card .card-footer h4 {
  color: #000;
  font-size: 18px;
  margin-bottom: 0;
}
.testimonial-section .testimonial-slider .card .card-footer span {
  color: #707070;
  font-size: 15px;
  margin-bottom: 0;
}
.testimonial-section .testimonial-slider .card:hover {
  background: #E3F2FF;
}

.collaborating-industry {
  overflow: hidden;
}
.collaborating-industry bdi {
  font-family: "PlusJakartaSans-Medium";
}

.home-blog {
  background: #F9F9F9;
}
.home-blog .sticky-side {
  position: sticky;
  top: 20px;
  align-self: flex-start;
}
.home-blog h2 {
  color: #000;
  font-size: 40px;
  line-height: 54px;
}
.home-blog p {
  color: #000;
  line-height: 24px;
  margin-top: 20px;
}
.home-blog .blog-side .blog-img {
  padding: 30px 0;
  position: relative;
}
.home-blog .blog-side .blog-img:last-of-type::after {
  display: none;
}
.home-blog .blog-side .blog-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 82%;
  height: 1px;
  background: #D9D9D9;
}
.home-blog .blog-side .blog-img span {
  color: #333;
  font-size: 14px;
  line-height: 18px;
}
.home-blog .blog-side .blog-img h5 {
  color: #000;
  font-size: 24px;
  font-family: "PlusJakartaSans-SemiBold";
  line-height: 32px;
  margin: 10px 0;
}
.home-blog .blog-side .blog-img a {
  color: #000;
}
.home-blog .blog-side .blog-img a:hover {
  color: #CA1722;
}
.home-blog .blog-side .blog-img img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.pre-footer {
  padding: 90px 0;
  background: #0068C4;
  position: relative;
}
.pre-footer h2 {
  color: #FFF;
  font-size: 40px;
  font-family: "PlusJakartaSans-Bold";
  line-height: 54px;
}
.pre-footer p {
  color: #FFF;
  line-height: 24px;
  margin: 20px 0;
}
.pre-footer img {
  position: absolute;
 bottom: -50px;
}
.pre-footer .contact-button h5 {
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
}
.pre-footer .contact-button a {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
}

.footer {
  background: #0F0F0F;
}
.footer ul{
	margin-left:0;
}
.footer h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 22px;
}
.footer .footer-line {
  position: relative;
}
.footer .footer-line::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #3B3A3A;
}
.footer .logo {
  width: 211px;
}
.footer p {
  color: #fff;
}
.footer form .email-input input {
  border-radius: 8px;
  border: 1px solid #636363;
  background: #0F0F0F;
  padding: 10px 139px 10px 28px;
  color: #fff;
}
.footer form .email-input p:nth-child(2) {
  color: #C2C2C2;
  font-size: 15px;
  padding-top: 6px;
}
.footer .footer-contact {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
.footer .footer-contact p {
  color: #C2C2C2;
  font-size: 13px;
}
.footer .footer-contact a {
  color: #FFF;
  font-family: "PlusJakartaSans-SemiBold";
}
.footer .footer-contact .maill-content a {
  font-family: "PlusJakartaSans-Light";
}
.footer .follow-us {
  margin-top: 28px;
}
.footer .follow-us p {
  color: #C2C2C2;
  font-size: 13px;
  margin-bottom: 3px;
}
.footer h4 {
  color: #FFF;
  font-size: 18px;
  font-family: "PlusJakartaSans-Bold";
  line-height: 24px;
  margin-bottom: 15px;
}
.footer ul {
  padding-left: 0;
}
.footer ul li {
  list-style-type: none;
  margin-bottom: 12px;
  line-height: 21px;
}
.footer ul li a {
  color: #B7B7B7;
}
.footer ul li a:hover{
	color:#fff;
}
.footer .policy-list {
  padding-top: 40px;
}
/* .footer .policy-list a {
  font-size: 14px;
  line-height: 20px;
  font-family: "PlusJakartaSans-Regular";
} */
.footer .address-detail {
  margin-top: 30px;
}
.footer .address-detail h4 {
  font-size: 16px;
  margin-bottom: 3px;
}
.footer .address-detail p {
  margin-bottom: 8px;
}
.footer .address-detail p a {
  text-decoration: none;
}
.footer .address-detail a {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  font-family: "PlusJakartaSans-Regular";
  text-decoration: underline;
}
.footer .address-detail p {
  font-size: 13px;
  line-height: 22px;
  color: #C2C2C2;
}
.footer .footer-loop {
  overflow: hidden;
  white-space: nowrap;
}
.footer .footer-loop .looping-carousel {
  display: inline-flex;
  animation: LoopingCarousel-forward 200s linear infinite;
}
.footer .footer-loop .looping-carousel h3 {
  flex: 0 0 auto;
  color: #FFF;
  font-size: 170px;
  font-family: "PlusJakartaSans-Bold";
  line-height: 200px;
  text-transform: uppercase;
  opacity: 0.3;
  margin-right: 100px;
}
.footer .copyright {
  border-top: 1px solid;
}
.footer .copyright p {
  font-size: 14px;
  line-height: 24px;
  color: #C2C2C2;
}
.footer .copyright a {
  color: #fff;
}

.banner-section {
  background: #0068C4;
  color: #fff;
}
.banner-section bdi {
  color: #fff;
}
.banner-section h2 {
  color: #FFF;
  font-size: 40px;
  line-height: 54px;
  margin: 14px 0;
}
.banner-section p {
  margin-bottom: 0;
}

.policy-content h3 {
  color: #000;
  font-size: 24px;
  font-family: "PlusJakartaSans-SemiBold";
  margin: 35px 0 20px 0;
}
.policy-content p {
  color: #333;
  line-height: 26px;
  margin-bottom: 20px;
}
.policy-content p a{
	color:#333;
}
.policy-content ul li {
  margin-bottom: 10px;
}
.policy-content ul{
	margin:0;
	margin-bottom:20px;
}

.error-page {
  padding: 160px 0 250px 0;
}
.error-page h2 {
  margin: 14px 0;
  font-size: 40px;
  line-height: 54px;
}
.error-page p {
  margin-bottom: 40px;
}

.blog-section {
     padding: 121px 0 0px 0;
}
.blog-section h3 {
  color: #000;
  font-size: 24px;
  font-family: "PlusJakartaSans-SemiBold";
  line-height: 32px;
  margin-bottom: 0;
}
.blog-section .card {
  border: 0;
}
.blog-section .card .card-body {
  padding-left: 0;
  padding-bottom: 0;
}
.blog-section .card .card-body span {
  color: #333;
  font-size: 14px;
  line-height: 18px;
}
.blog-section .card .card-body h5 {
  color: #000;
  font-size: 24px;
  margin: 14px 0;
  font-family: "PlusJakartaSans-SemiBold";
  line-height: 32px;display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-section .card .card-footer {
  background: transparent;
  border: 0;
  padding-left: 0;
}
.blog-section .card .card-footer a {
  color: #000;
  font-size: 16px;
}
.blog-section .card .card-footer a:hover {
  color: #CA1722;
}
.blog-section .card .zoom-img-animate img {
  border-radius: 0;
  width: 410px;
  height: 243px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-detail {
  padding: 60px 0 100px 0;
}
.blog-detail bdo {
  color: #848484;
  font-size: 18px;
  font-family: "PlusJakartaSans-Medium";
  line-height: 18px;
}
.blog-detail .blog-social-icons ul {
  padding-left: 0;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  gap: 10px;
}
.blog-detail .blog-social-icons ul li {
  list-style-type: none;
}
.blog-detail h3 {
  color: #000;
  font-size: 24px;
  font-family: "PlusJakartaSans-SemiBold";
  margin: 35px 0 20px 0;
}
.blog-detail h5{
	font-family: "PlusJakartaSans-SemiBold";
}
.blog-detail p {
  color: #333;
  line-height: 32px;
  margin-bottom: 20px;
}
.blog-detail ul{
  margin-bottom: 20px;
	margin-left:0;
}
.blog-detail ul li {
  margin-bottom: 10px;
}
.blog-detail ol li {
  margin-bottom: 10px;
}
.blog-detail .tooltip-text {
      position: absolute;
  background: #000;
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.blog-detail .tooltip-text.show {
  opacity: 1;
}

.project-main {
  padding-bottom: 100px;
}
.project-main .project-detail .carousel {
  margin-bottom: 25px;
}
.project-main .project-detail .card-body {
  padding-left: 0;
}
.project-main .project-detail .card-body span {
  color: #8D8686;
  font-size: 13px;
  line-height: 18px;
  text-transform: uppercase;
}
.project-main .project-detail .card-body h5 {
  color: #000;
  font-size: 24px;
  font-family: "PlusJakartaSans-SemiBold";
  margin-bottom: 10px;
}
.project-main .project-detail .card-body p {
  color: #333;
  line-height: 26px;
}
.project-main .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
	display:none;
}
.project-main .carousel-control-next-icon,
.project-main .carousel-control-prev-icon {
  background-color: rgba(0, 0, 0, 0.7294117647);
  border-radius: 5px;
  background-size: auto;
  padding: 20px;
	display:none;
}
.project-main .carousel-control-next-icon:hover,
.project-main .carousel-control-prev-icon:hover {
  background-color: #0068C4;
}
.project-main .carousel-control-prev-icon {
  background-image: url("../images/project/left-side.png");
}
.project-main .carousel-control-next-icon {
  background-image: url("../images/project/left-side.png");
  transform: rotate(180deg);
}

.contact-section .contact-detail h2 {
  font-size: 40px;
  line-height: 54px;
  margin: 14px 0;
  color: #000;
}
.contact-section .contact-detail p {
  color: #000;
  line-height: 26px;
  margin-bottom: 30px;
}
.contact-section .contact-detail bdo {
  color: #767676;
  font-size: 16px;
  font-family: "PlusJakartaSans-Light";
}
.contact-section .contact-detail h6 {
  color: #000;
  font-size: 16px;
  font-family: "PlusJakartaSans-SemiBold";
  line-height: 24px;
}
.contact-section .contact-detail a {
  color: #000;
  font-size: 16px;
  font-family: "PlusJakartaSans-SemiBold";
}
.contact-section .contact-detail a h5 {
  color: #000;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
  font-family: "PlusJakartaSans-Regular";
}
.contact-section .contact-detail .get-direction a {
  color: #CA1722;
  font-size: 14px;
  font-family: "PlusJakartaSans-Medium";
  line-height: 20px;
  text-decoration: underline;
}

.map-section iframe {
  width: 100%;
}

.faq-section {
  padding: 100px 0 200px 0;
}
.faq-section .accordion .accordion-item:last-child {
  border-bottom: 1px solid #dee2e6;
}
.faq-section .accordion .accordion-item button {
  line-height: 24px;
  font-size: 18px;
  font-family: "PlusJakartaSans-Medium";
  padding-left: 0;
  padding: 20px 0;
}
.faq-section .accordion .accordion-item button:not(.collapsed) {
  background-color: transparent;
  color: #0068C4;
}
.faq-section .accordion .accordion-item button:focus {
  box-shadow: unset;
}
.faq-section .accordion .accordion-item button:after {
  background-image: url("../images/home/close.png");
  transform: none;
  width: 10px;
  background-size: contain;
}
.faq-section .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url("../images/home/open.png");
}
.faq-section .accordion .accordion-item .accordion-body {
  padding-left: 0;
  padding-top: 0;
}
.faq-section .accordion .accordion-item .accordion-body p {
  font-size: 16px;
  line-height: 26px;
}

.enquiry-section {
  padding: 100px 0;
}
.enquiry-section .form-area {
  margin-top: -200px;
  position: relative;
  z-index: 99;
}
.enquiry-section .start-project h3 {
  color: #000;
  font-size: 24px;
  font-family: "PlusJakartaSans-SemiBold";
  margin: 14px 0;
}
.enquiry-section .start-project p {
  color: #000;
  line-height: 26px;
}
.enquiry-section .start-project ul li {
  list-style-type: none;
  position: relative;
  margin-bottom: 10px;
  color: #000;
  font-size: 16px;
}
.enquiry-section .start-project ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -32px;
  width: 22px;
  height: 22px;
  border-radius: 50px;
  background-image: url("../images/project/list_before.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.enquiry-img {
  position: absolute;
  right: 100px;
 bottom: -85px;
}

.faq-page {
  padding-bottom: 100px;
}
.faq-page .faq-sticky {
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
.faq-page .faq-sticky h6 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}
.faq-page .faq-sticky ul {
      margin-top: 22px;
    margin-left: 0;
}
.faq-page .faq-sticky ul li {
  list-style-type: none;
  margin-bottom: 14px;
}
.faq-page .faq-sticky ul li a {
  color: #636363;
  font-size: 16px;
  font-family: "PlusJakartaSans-Medium";
  line-height: 20px;
}
.faq-page .faq-sticky ul li a:hover {
  color: #3968C6;
  text-decoration: underline;
}
.faq-page .faq-sticky ul .active a {
  color: #3968C6;
  text-decoration: underline;
}
.faq-page .accordion-type h4 {
  color: #0068C4;
  font-size: 22px;
  font-family: "PlusJakartaSans-SemiBold";
  line-height: 32px;
}
.faq-page .accordion-type:not(:last-of-type) {
  padding-bottom: 70px;
}
.faq-page .accordion-type .accordion-item button:not(.collapsed) {
  color: #333333;
}
.faq-page .accordion-type .accordion-item{
	border-top:0;
	border-left:0;
	border-right:0;
}
.faq-collaborating {
  background: #F9F9F9;
  padding-bottom: 130px !important;
  padding-top: 80px !important;
}

.banner-section {
  position: relative;
}
.banner-section .card {
  background: #C3000C;
  padding: 40px 110px 40px 40px;
  position: absolute;
  bottom: -55%;
}
.banner-section .card h6 {
  color: #fff;
  font-size: 18px;
}
.banner-section .card .card-body {
  padding: 200px 0 0 0;
}
.banner-section .card .card-body p {
  color: #FFF;
  font-size: 42px;
  font-family: "PlusJakartaSans-Bold";
  line-height: 56px;
  margin-bottom: 3px;
}

.our-expertise {
  padding: 100px 0 200px 0;
}
.our-expertise h2 {
  color: #000;
  font-size: 40px;
  line-height: 54px;
  margin: 14px 0;
}
.our-expertise p {
  color: #000;
  line-height: 26px;
}
.our-expertise .expertise-count span {
  color: #0068C4;
  font-size: 50px;
  font-family: "PlusJakartaSans-Bold";
  line-height: 56px;
}
.our-expertise .expertise-count h6 {
  color: #0068C4;
  line-height: 24px;
  text-transform: capitalize;
}
.our-expertise .expertise-count p {
  color: #636363;
  font-size: 14px;
  line-height: 20px;
}

.our-vision {
  background: #EBF3FB;
}
.our-vision .card {
  background: #0068C4;
  padding: 50px 40px;
  margin-top: -280px;
}
.our-vision .card h6 {
  color: #fff;
  font-size: 18px;
}
.our-vision .card .card-body {
  padding: 0;
}
.our-vision .card .card-body h2 {
  color: #FFF;
  font-size: 40px;
  line-height: 52px;
  margin: 14px 0;
}
.our-vision .card .card-body p {
  color: #FFF;
  line-height: 26px;
}
.our-vision .vission {
  position: relative;
}
.our-vision .vission::after {
  content: "";
  width: 30%;
  height: 100%;
  position: absolute;
  background-image: url("../images/about/Union.png");
  background-repeat: no-repeat;
  background-size: contain;
  left: 100%;
  top: 0;
}
.our-vision .mission h4 {
  color: #333;
  font-size: 26px;
  font-family: "PlusJakartaSans-SemiBold";
  margin-bottom: 16px;
}
.our-vision .mission p {
  color: #333;
  line-height: 26px;
}

.our-vision .mission ul{
	margin:0;
}
.our-vision .mission ul li{
	margin-bottom:10px;
}
.our-vision .mission:nth-child(1) {
  margin-bottom: 40px;
}

.ceo-talk h3 {
  color: #CA1722;
  font-size: 70px;
  letter-spacing: 7.7px;
  font-family: "RHESMANISA-BOLD";
  font-weight: 400;
}
.ceo-talk p {
  color: #000;
  font-size: 18px;
  line-height: 28px;
}
.ceo-talk p:nth-child(2) {
  font-family: "PlusJakartaSans-Medium";
}
.ceo-talk .ceo-detail {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 20px;
}
.ceo-talk .ceo-detail h6 {
  color: #000;
  font-size: 18px;
  font-family: "PlusJakartaSans-Medium";
  line-height: 28px;
  margin-bottom: 0;
}
.ceo-talk .ceo-detail p {
  font-family: "PlusJakartaSans-Regular";
}
.ceo-talk .ceo-img {
  margin-top: -50px;
}

.why-fire-asia h2 {
  color: #000;
  font-size: 40px;
  font-family: "PlusJakartaSans-Bold";
  line-height: 54px;
  margin: 14px 0 0;
}
.why-fire-asia p {
  color: #000;
  line-height: 26px;
}
.why-fire-asia .card {
  background: #FFF6F7;
  border: 0;
  position: relative;
  padding: 50px 30px 30px 30px;
  height: 100%;
}
.why-fire-asia .card img {
  position: absolute;
  right: 30px;
  top: 30px;
}
.why-fire-asia .card h5 {
  color: #000;
  font-size: 24px;
  font-family: "PlusJakartaSans-SemiBold";
  line-height: 36px;
  margin-bottom: 10px;
  width: 80%;
}
.why-fire-asia .card p {
  color: #000;
  line-height: 26px;
}

.home-owners h2 {
  color: #333;
  font-size: 40px;
  line-height: 54px;
  margin-bottom: 25px;
}
.home-owners h2 span {
  color: #8E8E8E;
  font-size: 40px;
  line-height: 54px;
}
.home-owners .count-animate {
  display: flex;
  gap: 60px;
  padding-top: 64px;
}
.home-owners .count-animate span {
  color: #333;
  font-size: 40px;
  line-height: 56px;
  font-family: "PlusJakartaSans-Bold";
}
.home-owners .count-animate p {
  color: #333;
  font-size: 18px;
  line-height: 24px;
  text-transform: capitalize;
}

.sub-services {
  background: #0068C4;
}
.sub-services bdi {
  color: #fff;
}
.sub-services h2 {
  color: #FFF;
  font-size: 40px;
  line-height: 54px;
  margin: 14px 0;
}
.sub-services p {
  color: #fff;
}
.sub-services .card-link .card {
  background: #fff;
}
.sub-services .card-link .card .card-row h5 {
  color: #333;
  font-size: 24px;
  font-family: "PlusJakartaSans-SemiBold";
}
.sub-services .card-link .card .card-row .card-text {
  color: #333;
  font-size: 18px;
  font-family: "PlusJakartaSans-Medium";
  margin-bottom: 0;
}
.sub-services .card-link .card .card-row p {
  color: #333;
  line-height: 26px;
}
.sub-services .card-link .card .btn-arw::after {
  background-image: url("../images/service/arrow-down-red.png"), url("../images/service/arrow-down-red.png") !important;
}
.sub-services .card-link .card:hover .btn-arw svg {
  visibility: hidden;
}

.service-info h2 {
  color: #000;
  font-size: 40px;
  line-height: 54px;
}
.service-info h6 {
  color: #CA1722;
  font-size: 24px;
  font-family: "PlusJakartaSans-SemiBold";
  line-height: 26px;
}

.maintenance {
  position: relative;
  overflow: hidden;
}
.maintenance .maintenance-heading {
  position: relative;
}
.maintenance .maintenance-heading h4 {
  color: #FFF;
  font-size: 190px;
  font-family: "PlusJakartaSans-Bold";
  font-weight: 800;
  text-transform: uppercase;
  position: absolute;
  top: -50px;
  width: 100%;
  text-align: center;
}
.maintenance .maintenance-card {
  background: #CA1722;
  padding: 80px;
  position: relative;
  z-index: 2;
  margin-top: -25%;
  margin-bottom: 100px;
  justify-content: space-between;
}
.maintenance .maintenance-card h3 {
  color: #FFF;
  font-size: 40px;
  font-family: "PlusJakartaSans-Bold";
  line-height: 54px;
  margin-bottom: 14px;
}
.maintenance .maintenance-card p {
  color: #FFF;
  line-height: 26px;
}
.maintenance .maintenance-card a {
  color: #FFF;
}
.maintenance .maintenance-card .maintenance-card-info:nth-child(1)::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 80%;
  border-right: 2px solid #F89FA5;
  right: 50%;
  top: 10%;
}

.pumbing-info {
  background: #0068C4;
}
.pumbing-info bdi {
  color: #fff;
}
.pumbing-info h2 {
  color: #FFF;
  font-size: 40px;
  line-height: 54px;
  margin: 14px 0 0;
}
.pumbing-info p {
  color: #fff;
}

.gallery-info {
  position: relative;
}
.gallery-info .card {
  border: 0;
  border-radius: 0;
}
.gallery-info .card .gallery-text {
  background: #FFF;
  position: absolute;
  bottom: 26px;
  left: 25px;
  width: 92%;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery-info .card .gallery-text h4 {
  color: #333;
  font-size: 18px;
  font-family: "PlusJakartaSans-Medium";
}
.gallery-info .card .gallery-text p {
  color: #8D8686;
  font-size: 16px;
  font-family: "PlusJakartaSans-Medium";
  margin-bottom: 0;
}
.gallery-info .modal .btn-close {
  position: absolute;
  right: -53px;
  top: -20px;
}

body {
  font-family: "PlusJakartaSans-Regular";
}

a {
  text-decoration: none;
}

h2 {
  font-family: "PlusJakartaSans-Bold";
	margin-top:10px;
}

bdi {
  color: #CA1722;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}

.hamburger {
  display: none;
  cursor: pointer;
}
.hamburger .bar {
  display: block;
  width: 31px;
  height: 2px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: rgb(0, 0, 0);
  border-radius: 4px;
}
.hamburger .bar:nth-child(2) {
  width: 20px;
  margin-right: inherit;
}

.home-header {
  position: absolute !important;
  width: 100%;
}

.header {
  background: #FFF;
  position: relative;
  z-index: 999;
}
.header .navbar {
  padding: 20px 0;
}
.header .navbar .nav-menu ul {
  gap: 25px;
}
.header .navbar .nav-menu ul li a {
  color: #000;
  font-size: 16px;
  text-decoration: none;
  font-family: "PlusJakartaSans-Regular";
  font-weight: 400;
  padding-top: 0;
  padding-bottom: 0;
}
.header .navbar .nav-menu ul li a:hover {
  color: #CA1722;
}
.header .navbar .nav-menu ul li a:active {
  color: #CA1722;
}
.header .navbar .nav-menu ul li .nav-contact {
  font-family: "PlusJakartaSans-SemiBold";
}
.header .navbar .nav-menu ul li .active {
  color: #CA1722;
}
.header .navbar .nav-menu ul li p {
  color: #000;
  font-size: 13px;
  font-weight: 400;
}
.header .navbar .nav-menu ul li:last-of-type {
  margin-left: 10px;
}
.dropdown a{
	gap:5px !important;
}
.dropdown .wht-box .list-item-type{
	gap:16px !important;
}

.dropdown .wht-box .left-side-list li a{
	align-items:start !important;
	gap:10px !important;
}

.header .navbar .nav-menu ul .dropdown .service-arrow {
  transition: 0.3s linear;
}
.header .navbar .nav-menu ul .dropdown:hover .service-arrow {
  transform: rotate(180deg);
}
.header .navbar .nav-menu ul .dropdown:hover .dropdown-menu {
  display: block;
  padding: 40px 0px 0px;
  background-color: transparent;
  border: none;
  left: -300%;
}
.header .navbar .nav-menu ul .dropdown .wht-box {
  background-color: #fff;
  padding: 36px 30px 30px 30px;
  border-radius: 10px;
  width: 750px;
  position: relative;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}
.header .navbar .nav-menu ul .dropdown .wht-box::before {
  position: absolute;
  background-color: #fff;
  width: 17px;
  height: 17px;
  content: "";
  transform: rotate(45deg);
  top: -8px;
  left: 35%;
}
.service-project.right-side ul{
	display:flex;
	flex-direction:column;
}
.header .navbar .nav-menu ul .dropdown .wht-box h6 {
  font-size: 15px;
  line-height: 22px;
  font-family: "PlusJakartaSans-SemiBold";
  margin: 0;
}
.header .navbar .nav-menu ul .dropdown .wht-box p {
  font-size: 12px;
  line-height: 16px;
  color: #797A7E;
  margin-bottom: 0;
}
.header .navbar .nav-menu ul .dropdown .wht-box .left-side li {
  padding: 18px 20px;
  position: relative;
}

.header .navbar .nav-menu ul .dropdown .wht-box .left-side li:last-of-type {
  margin-left: 0px !important;
	width:100% !important;
}
.header .navbar .nav-menu ul .dropdown .wht-box .left-side li:hover {
  background-color: #F2F9FF;
  border-radius: 10px;
}
.header .navbar .nav-menu ul .dropdown .wht-box .left-side li:hover a {
  color: #0068C4;
}
.header .navbar .nav-menu ul .dropdown .wht-box .left-side li:hover svg rect {
  fill: #fff;
}
.header .navbar .nav-menu ul .dropdown .wht-box .left-side li:hover svg path {
  fill: #0068C4;
}
.header .navbar .nav-menu ul .dropdown .wht-box .left-side li:hover::after {
  position: absolute;
  background-image: url("../../assets/images/home/dropdown-svg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 20px;
  height: 15px;
  content: "";
  top: 20px;
  right: 15px;
}
/* .header .navbar .nav-menu ul .dropdown .wht-box li {
  cursor: pointer;
} */
.header .navbar .nav-menu ul .dropdown .wht-box li:last-of-type {
  margin-left: 0px !important;
}
.header .navbar .nav-menu ul .dropdown .wht-box h3 {
  font-size: 18px;
  line-height: 22px;
}
.header .navbar .nav-menu ul .dropdown .wht-box .service-project {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  justify-content: start;
}
.header .navbar .nav-menu ul .dropdown .wht-box .left-side {
  position: relative;
}
.header .navbar .nav-menu ul .dropdown .wht-box .right-side li {
  list-style: none;
}
.header .navbar .nav-menu ul .dropdown .wht-box .right-side img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.header .navbar .nav-menu ul .dropdown .wht-box .right-side a {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #0068C4;
}
.header .navbar .nav-menu ul .dropdown .wht-box .right-side h5 {
  color: #000;
  font-size: 16px;
  font-family: "PlusJakartaSans-Medium";
  line-height: 20px;
}
.header .navbar .nav-menu ul .dropdown .wht-box .dropdown-description {
  display: flex;
  justify-content: space-between;
  padding: 27px 0 0;
  border-top: 2px solid #F4F4F4;
  margin-top: 20px;
}
.header .navbar .nav-menu ul .dropdown .wht-box .dropdown-description h5 {
  color: #0F0F0F;
  font-size: 16px;
  font-family: "PlusJakartaSans-SemiBold";
}
.header .navbar .nav-menu ul .dropdown .wht-box .dropdown-description p {
  color: #797A7E;
  font-size: 14px;
}
.header .navbar .nav-menu ul .dropdown .wht-box .dropdown-description .dropdown-btn {
  border-radius: 8px;
  background: #0068C4;
  padding: 12px 25px;
  color: #fff;
}
.header .navbar .nav-menu ul .dropdown .wht-box .dropdown-description .dropdown-btn:hover {
  color: #fff;
}

.primary-btn {
  border-radius: 10px !important;
  background: #CA1722 !important;
  color: #fff !important;
  padding: 12px 25px !important;
}
.primary-btn a{
	color:#fff !important;
}

.secondary-btn {
  border-radius: 8px;
  background: #FFF;
  color: #333333 !important;
  padding: 12px 25px;
  font-size: 16px;
  line-height: 22px;
  font-family: "PlusJakartaSans-Regular";
}

.arrow-animation:hover svg {
  transform: translateX(5px);
}

.arrow-animation svg {
  transition: all 0.3s;
}

.custom-slide-indicator {
  background: #C3000C;
  color: white;
  padding: 22px 20px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.custom-slide-indicator .slide-numbers {
  display: flex;
  gap: 25px;
  font-size: 14px;
  margin-bottom: 6px;
}
.custom-slide-indicator .progress-bar {
  width: 50px;
  height: 4px;
  background: #FF6D76;
  overflow: hidden;
  position: relative;
  margin-top: 10px;
}
.custom-slide-indicator .progress-bar .progress-fill {
  display: block;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.custom-slide-indicator .progress-bar .progress-fill.completed {
  background: #fff;
}

@keyframes LoopingCarousel-forward {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.zoom-img-animate {
  overflow: hidden;
}
.zoom-img-animate img {
  transition: 0.3s linear;
}
.zoom-img-animate:hover img {
  transform: scale(1.1);
}

.form-area {
  border-radius: 20px;
  border: 1px solid #DDD;
  background: #FFF;
  box-shadow: 0 0 34px 30px rgba(0, 0, 0, 0.03);
  padding: 55px 45px;
}
.form-area h3 {
  color: #000;
  font-size: 34px;
  font-family: "PlusJakartaSans-SemiBold";
}
.form-area form {
  margin-top: 30px;
}
.form-area form label {
  color: #000;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}
.form-area form textarea{
	    height: 130px;
}

.form-area form .row .col-md-6 p{
	margin-bottom:0;
}

.form-area form .checkbox .wpcf7-not-valid-tip{
	display:none;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
	   color: red;
    font-family: "PlusJakartaSans-Regular";
    border-color: transparent;
    padding-left: 0;
    margin-left: 0;
	 margin-top: 15px;
}

.checkbox-error .wpcf7-not-valid input[type="checkbox"]{
	outline: 2px solid red;
   outline-offset: -2px;
}
.email-input .wpcf7-not-valid-tip{
	display:none;
}
.email-input p{
	margin-bottom:0;
}
.form-area form .form-select{
	padding:12px 15px !important;
}
.form-area form label span {
  color: #D10A11;
  font-size: 16px;
  line-height: 24px;
}
.form-area form input {
  color: #000;
	padding:12px 15px;
border-radius: 7px;
border: 1px solid #D2D2D2;
background: #FFF;
}
.form-area form input::-moz-placeholder {
  color: #848484;
  font-size: 16px;
}
.form-area form input::placeholder {
  color: #848484;
  font-size: 16px;
}
.form-area form .comment p {
  color: #848484;
  font-size: 14px;
  line-height: 18px;
}

.form-area form .check-box{
	display:flex;
	gap:10px;
}

.form-area form .check-box .checkbox br{
	display:none;
}

.form-area form .check-box p{
	margin-bottom:0;
}

.form-area form .check-box p a{
	text-decoration:underline;
	color:#0068C4;
}
.form-area form .check-box p a:hover{
	color:#0068C4;
}
.wpcf7-list-item-label{
	display:none;
}

.form-area form .checkbox input {
  width: 26px;
  height: 26px;
}
.form-area form .checkbox input:focus {
  box-shadow: none;
}
.form-area form .checkbox p {
  margin-bottom: 0;
  color: #000;
}
.form-area form .checkbox p a {
  text-decoration: underline;
  color: #0068C4;
}
.form-area form .checkbox span{
	margin:0;
}
.form-area form .submit {
  border: 0;
}
.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #cccccc;
    outline: 0;
    box-shadow: none;
}

.form-check-input:checked {
  background-color: #0068C4;
  border-color: #0068C4;
}

/* .collaborating-logo img {
  filter: brightness(0);
  cursor: pointer;
}
.collaborating-logo img:hover {
  filter: none;
} */

.collaborating-logo h5{
	color: #000;
    text-align: center;
    font-size: 16px;
    line-height: 22px;
	margin-top:10px;
}

html {
  scroll-padding-top: 150px;
  scroll-behavior: smooth;
}
.blog-detail-img{
	width: 920px;
	height: 450px;
	object-fit:cover;
}

.dropdown-menu.second-dropdown ul{
	margin:0;
	padding:0;
}



.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent;
    position: relative;
}

.iti--separate-dial-code .iti__selected-flag::after {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    right: 0;
    border-right: 1px solid #A3A3A3;
    content: "";
    width: 10px;
    height: 14px;
}

.iti--separate-dial-code .iti__selected-flag .iti__flag {
    display: none;
}
.home-blog .zoom-img-animate{
	border-radius:10px;
}
.home-project-slide img{
	width: 310px;
height: 289px;
	object-fit:cover;
}
.social-icons-footer{
	display:flex;
	align-items:center;
	gap:10px;
}
.social-icons-footer p a{
	font-size: 14px;
    line-height: 22px;
    color: #C2C2C2;
	border-bottom: 1px solid;
}
.social-icons-footer p a:hover{
	color:#CA1722;
}
.social-icons-footer p{
	margin-bottom:0 !important;
	font-size:14px !important;
}
.enquiry-section .start-project ul{
	margin-left:0;
}
footer .footer-get-direction-link:hover{
	color:#CA1722;
}
/*------------------------------------------------Media Start-----------------------------------------------------------  */
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .why-choose .why-choose-img img {
    left: -50px;
    width: 35%;
  }
  .maintenance .maintenance-card {
    margin-top: -17%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .why-choose .why-choose-img img {
    left: -92px;
    top: 275px;
    width: 40%;
  }
  .pre-footer img {
    width: 45%;
  }
  .sub-services .card-link .card .card-row h5 {
    font-size: 20px;
    line-height: 26px;
  }
  .sub-services .card-link .card .card-row p {
    font-size: 14px;
    line-height: 22px;
  }
  .collaborating-industry .collaborating-logo {
    gap: 30px;
  }
  header .navbar .nav-menu ul {
    gap: 21px !important;
  }
  header nav.is-fixed {
    gap: 6px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container {
    width: 92%;
    margin: auto;
  }
  h1 {
    font-size: 36px !important;
    line-height: 46px !important;
  }
  h2 {
    font-size: 26px !important;
    line-height: 36px !important;
  }
  .primary-btn {
    padding: 9px 15px !important;
  }
  .secondary-btn {
    padding: 9px 15px;
    font-size: 16px;
  }
  .slick-dots {
    position: absolute;
    bottom: 265px !important;
    left: -270px !important;
  }
  .slick-dots li {
    margin: 0;
  }
  .slick-dots li button::before {
    color: #DBDBDB;
    font-size: 12px;
    opacity: 1;
  }
  .slick-dots .slick-active button::before {
    color: #C3000C !important;
  }
  .home-banner .container p {
    font-size: 16px;
    line-height: 24px;
  }
  .home-about .card .card-body p {
    font-size: 22px;
    line-height: 36px;
  }
  .why-choose .why-choose-img img {
    width: 40%;
    left: -60px;
  }
  .why-choose h2 span {
    font-size: 26px;
    line-height: 36px;
  }
  .why-choose .count-animate span {
    font-size: 40px;
    line-height: 56px;
  }
  .testimonial-section .testimonial-slider {
    margin-top: 0px;
  }
  .pre-footer {
    padding: 60px 0 60px;
  }
  .pre-footer img {
    width: 52%;
    top: -42px;
  }
  .pre-footer .buttons {
    flex-direction: column-reverse;
    align-items: baseline !important;
  }
  .home-blog p {
    margin-top: 14px;
  }
  .home-blog .blog-side .blog-img::after {
    width: 80%;
  }
  .home-blog .blog-side .blog-img span {
    font-size: 10px;
    line-height: 15px;
  }
  .home-blog .blog-side .blog-img h5 {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 10px 0;
  }
  .home-blog .blog-side .blog-img a {
    color: #000;
    font-size: 14px;
  }
  .home-blog .blog-side .blog-img img {
    height: 120px;
    width: 120px;
  }
  .maintenance .maintenance-card .maintenance-card-info:nth-child(1)::before {
    display: none;
  }
  .footer form {
    margin: 30px 0;
  }
  .footer form .email-input input {
    padding: 6px 34px 6px 23px;
  }
  .footer form .email-input p {
    font-size: 13px;
  }
  .footer .follow-us {
    margin-bottom: 20px;
  }
  .footer .policy-list {
    padding-top: 20px;
  }
  .footer .footer-loop .looping-carousel h3 {
    font-size: 40px;
    line-height: 50px;
  }
  .footer .copyright p {
    margin-bottom: 0;
  }
  .footer .copyright p:first-child {
    margin-bottom: 20PX;
  }
  .home-services h2 {
    margin: 14px 0;
  }
  .home-services .card-link .card {
    padding-left: 0;
    padding: 19px;
  }
  .home-services .card-link .card .card-row {
    padding: 20px 0;
  }
  .home-services .card-link .card .card-row h5 {
    color: #FFF;
    font-size: 24px;
    font-family: "PlusJakartaSans-SemiBold";
    margin-bottom: 14px;
  }
  .home-services .card-link .card .card-row p {
    color: #fff;
  }
  .home-services .card-link .card .card-row .btn-arw {
    position: relative;
    z-index: 9;
    background: transparent;
    border: 0;
  }
  .home-services .card-link .card .card-row .btn-arw::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
    height: 25px;
    width: 25px;
    background-image: url("../images/home/arrow-down-right.png"), url("../images/home/arrow-down-right.png");
    background-position: 0 0px, -15px -15px;
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    display: none;
    transition: opacity 0.5s cubic-bezier(0.84, -0.01, 0.25, 0.99);
    margin-left: 22px;
    animation-name: buttonArrow;
    animation-duration: 0.7s;
    animation-iteration-count: infinite;
  }
  @keyframes buttonArrow {
    0% {
      background-position: 0 0px, -15px 15px;
    }
    100% {
      background-position: 25px -25px, 0 0;
    }
  }
  .home-services .card-link .card .card-body {
    overflow: hidden;
  }
  .home-services .card-link .card .card-body img {
    width: 580px;
    height: 317px;
    -o-object-fit: cover;
       object-fit: cover;
    transition: 0.3s linear;
  }
  .home-services .card-link:hover .card .btn-arw svg {
    visibility: hidden;
  }
  .home-services .card-link:hover .card .btn-arw::after {
    display: block;
  }
  .home-services .card-link:hover .card .card-body img {
    transform: scale(1.1);
  }
  .our-project h2 {
    margin: 14px 0;
  }
  .testimonial-section h2 {
    margin: 14px 0;
  }
  .card {
    margin: 15px;
  }
  .banner-section .card {
    padding: 40px 60px 40px 40px;
  }
  .banner-below img {
    height: 45vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .our-vision {
    padding-bottom: 80px !important;
  }
  .our-expertise {
    padding: 60px 0;
  }
  .our-expertise p {
    color: #333;
  }
  .our-expertise .expertise-count {
    padding-top: 30px;
    padding-bottom: 200px;
  }
  .our-expertise .expertise-count .stats-row {
    margin-bottom: 30px;
  }
  .ceo-talk {
    padding: 100px 0 0 !important;
  }
  .ceo-talk h3 {
    font-size: 40px;
  }
  .ceo-talk p {
    font-size: 16px;
  }
	.ceo-talk img{
		width:70%;
	}
  .ceo-talk .ceo-detail {
    gap: 40px;
  }
  .ceo-talk .ceo-detail p {
    font-size: 14px;
  }
  .ceo-talk .ceo-detail svg {
    width: 50px;
    height: 50px;
  }
  .why-fire-asia h2 {
    margin: 14px 0;
  }
  .why-fire-asia .card {
    padding: 50px 23px 19px 8px;
  }
  .why-fire-asia .card h5 {
    color: #000;
    font-size: 18px;
    line-height: 26px;
  }
  .blog-section {
    padding: 100px 0;
  }
  .banner-section .enquiry-img {
    width: 40%;
    right: 0;
    bottom: -40%;
  }
  .enquiry-section {
    padding: 80px 0;
  }
  .enquiry-section .form-area {
    margin-top: 0px;
    border-radius: 0;
    padding: 42px 38px;
  }
  .enquiry-section .start-project {
    padding: 20px 40px;
  }
  .gallery-info .card .gallery-text {
    background: #F4F3F3;
    width: 100%;
    position: unset;
    padding: 18px;
  }
  .gallery-info .card .gallery-text h4 {
    font-size: 14px;
  }
  .gallery-info .card .gallery-text p {
    font-size: 12px;
  }
  .gallery-info .card .gallery-text svg {
    width: 16px;
    height: 16px;
  }
  .gallery-info .modal .btn-close {
    position: absolute;
    right: -53px;
    top: -20px;
  }
  .home-owners h2 span {
    font-size: 25px;
    line-height: 34px;
  }
  .home-owners .count-animate {
    gap: 40px;
  }
  .home-owners .count-animate span {
    font-size: 30px;
    line-height: 36px;
  }
  .home-owners .count-animate p {
    font-size: 14px;
    line-height: 20px;
  }
  .sub-services .card-link .card .card-row h5 {
    color: #333;
    font-size: 20px;
  }
  .sub-services .card-link .card .card-row .card-text {
    font-size: 16px;
  }
  .sub-services .card-link .card .card-row p {
    font-size: 16px;
    color: #333;
  }
  .service-info h6 {
    font-size: 18px;
    line-height: 26px;
  }
  .maintenance .maintenance-heading {
    position: relative;
  }
  .maintenance .maintenance-heading h4 {
    font-size: 50px;
    top: -14px;
  }
  .maintenance .maintenance-card {
    padding: 20px;
    margin-top: -25%;
    margin-bottom: 20px;
  }
  .maintenance .maintenance-card h3 {
    font-size: 20px;
    line-height: 26px;
  }
  .maintenance .maintenance-card p {
    font-size: 16px;
    line-height: 26px;
  }
  .maintenance .maintenance-card .maintenance-card-info:first-child {
    padding-bottom: 45px;
    margin-bottom: 45px;
    border-bottom: 1px solid #F89FA5;
  }
  .maintenance .maintenance-card .maintenance-card-info:last-child {
    margin-bottom: 45px;
  }
  .blog-section .card .card-body h5 {
    font-size: 23px;
  }
  .blog-detail bdo {
    font-size: 16px;
  }
	.collaborating-industry .slick-dots  {
		display:none;
   }
}
@media only screen and (min-width: 1025px) {
  header nav.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    gap: 64px;
    padding: 20px 0px;
    justify-content: center !important;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  }
  nav.nav-down {
    transform: translateY(0);
    transition: transform 0.3s ease;
  }
  nav.nav-up {
    transform: translateY(-100%);
  }
}
@media only screen and (max-width: 1024px) {
  html {
    scroll-padding-top: 140px;
    scroll-behavior: smooth;
  }
  .hamburger {
    display: block;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: column;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #fff !important;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-43deg);
    background-color: #fff !important;
    width: 100% !important;
  }
  .mobile-logo {
    display: none;
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0px;
    gap: 0;
    flex-direction: column !important;
    background: #0068C4;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    text-align: start;
    z-index: -9;
    padding: 100px 0px 40px 30px;
    overflow-y: scroll;
    justify-content: space-between !important;
  }
  .nav-active .logo {
    display: none;
  }
  .nav-active .mobile-logo {
    display: block;
  }
  .nav-active li {
    margin: 0px 0px 15px;
  }
  .nav-active li a {
    color: #fff;
  }
  .nav-active li a .btn-light {
    color: #01443C;
  }
  .nav-active .nav-link.dropdown-toggle.show {
    color: #D6AF42;
  }
	.header .navbar .nav-menu ul .dropdown .wht-box .dropdown-description{
		display:none;
	}
  .nav-active .dropdown-menu.show {
    position: static !important;
    transform: translate3d(0px, 10px, 0px) !important;
    padding: 0px 0px 0px !important;
    border: none;
    background: transparent;
  }
	.header .navbar .nav-menu ul .dropdown:hover .dropdown-menu{
		padding-top:10px;
	}
	.header .navbar .nav-menu ul .dropdown .wht-box .left-side li{
		padding:10px 0 0;
	}
	.header .navbar .nav-menu ul .dropdown .wht-box .left-side li:hover{
		background-color:unset;
	}
	.header .navbar .nav-menu ul .dropdown .wht-box:before,
	.header .navbar .nav-menu ul .dropdown .wht-box svg,
	.header .navbar .nav-menu ul .dropdown .wht-box p,
	.header .navbar .nav-menu ul .dropdown .wht-box .service-project.right-side{
		display:none;
	}
	.header .navbar .nav-menu ul .dropdown .wht-box ul{
		border-bottom:none;
		padding:0;
	}
	.header .navbar .nav-menu ul .dropdown .wht-box{
		background: transparent;
		box-shadow:unset;
		padding:0;
		width:100%;
	}
  .nav-active .dropdown-menu.show .wht-box {
    border: none;
    background-color: #0068c4 !important;
    padding: 10px 0px 0px !important;
    border-radius: 0 !important;
    flex-direction: column;
    left: 30px;
    gap: 20px !important;
    margin-bottom: 20px;
    display: block !important;
    box-shadow: none !important;
  }
  .nav-active .dropdown-menu.show .wht-box li {
    list-style: none;
  }
  .nav-active .dropdown-menu.show .wht-box li a {
    color: white !important;
  }
  .nav-active .dropdown-menu.show .wht-box:before {
    display: none;
  }
  .nav-active .dropdown-menu.show .wht-box .dropdown-menu {
    display: block !important;
  }
  .nav-active .social-icons {
    color: white;
    border-top: 1px solid white;
    width: 100%;
    padding-top: 25px;
  }
  .nav-active .dropdown-toggle::after {
    display: none;
  }
  .nav-active .nav-link.dropdown-toggle.show svg {
    transform: rotate(180deg) !important;
  }
  .nav-active .nav-link.dropdown-toggle.show svg path {
    stroke: #ffffff;
    fill: none !important;
  }
  .nav-active .mb-80 {
    margin-bottom: 80px;
  }
  .header .navbar .nav-menu ul {
    width: 24%;
  }
  .nav-menu.active {
    left: 0;
    align-items: start !important;
    background-color: #0068C4;
    z-index: -1;
  }
  .nav-menu.active li {
    margin: 0px 0px 13px;
  }
  .nav-menu.active li a {
    color: #fff !important;
  }
  .custom-slide-indicator {
    display: none;
  }
  .home-slider {
    margin-bottom: 0 !important;
  }
  .home-slider .slick-dots {
    position: absolute;
    bottom: 12%;
    left: -140px;
  }
  .home-slider .slick-dots li {
    margin: 0;
  }
  .home-slider .slick-dots li button::before {
    color: #fff;
    font-size: 12px;
    opacity: 1;
  }
  .home-slider .slick-dots .slick-active button::before {
    color: #C3000C;
  }
  .header .navbar .nav-menu ul li p {
    color: #fff;
  }
  .our-vision .vission::after {
    display: none;
  }
  .pre-footer img {
    top: -82px;
    width: 50%;
    left: 0px;
  }
  .ceo-talk {
    padding: 80px 0px 0px;
  }
  .faq-page .faq-sticky {
    top: 140px;
  }
  .enquiry-img {
    right: 0;
  }
	.collaborating-industry .collaborating-logo img {
   width: 90%;
   }
}
@media only screen and (max-width: 767px) {
  .container {
    width: 92%;
    margin: auto;
  }
	
  .nav-active .dropdown-menu.show .wht-box {
    left: 0;
    padding-top: 0 !important;
    box-shadow: none !important;
    width: 100% !important;
  }
	.header .navbar .nav-menu ul .dropdown .wht-box .left-side li h6:before{
	content:"-";
	left:-6px;
	position:relative;	
}
  .nav-active .dropdown-menu.show .wht-box li {
    margin-bottom: 10px;
  }
  .nav-active .dropdown-menu.show .wht-box li a {
    font-size: 14px;
  }
  h1 {
    font-size: 36px !important;
    line-height: 46px !important;
  }
  h2 {
    font-size: 25px !important;
    line-height: 34px !important;
  }
  bdi {
    font-size: 16px;
  }
  .primary-btn {
    padding: 9px 10px !important;
        font-size: 12px;
        margin-left: 18px;
  }
  .secondary-btn {
    padding: 9px 15px;
    font-size: 16px;
  }
  .header .navbar .nav-menu ul {
    width: 90%;
    border-bottom: 1px solid #BDD3FF;
    padding-bottom: 10px;
    gap: 10px;
	  margin-left:0 !important;
  }
  .header .navbar .nav-menu ul li:last-of-type {
    margin-left: 0;
  }
  .header .navbar .nav-menu ul li p {
    color: #fff;
  }
  .header .navbar .nav-menu ul li a {
    display: inline-block;
  }
  .header .navbar .nav-menu ul .dropdown a {
    width: 100%;
  }
	
/* 	.header .navbar .nav-menu ul .dropdown .menu-link:nth-ch{
		justify-content:space-between;
	} */
  .header .navbar .nav-menu ul .nav-call-us {
    margin-top: 40px;
  }
  .header .follow-us p {
    color: #fff;
  }
  .home-banner .container p {
    font-size: 16px;
    line-height: 24px;
  }    
	.home-slider .slick-dots {
        position: absolute;
        bottom: 13%;
        left: -100px;
    }
  .home-about .card {
    margin-top: -90px;
    border-radius: 0;
    padding: 30px;
    margin-bottom: 40px;
  }
  .home-about .card .card-body {
    padding: 80px 0 0 0;
  }
  .home-about .card .card-body p {
    font-size: 22px;
    line-height: 36px;
  }
  .why-choose .why-choose-img {
    display: none;
  }
  .why-choose h2 {
    margin: 14px 0;
  }
  .why-choose h2 span {
    font-size: 26px;
    line-height: 36px;
  }
  .why-choose .count-animate {
    gap: 20px;
    padding-top: 20px;
  }
  .why-choose .count-animate span {
    color: #FFF;
    font-size: 30px;
    line-height: 40px;
  }
  .why-choose .count-animate p {
    font-size: 14px;
  }
  .pre-footer {
    width: 89%;
    position: absolute;
    left: 5%;
    margin-top: -150px;
    padding: 50px 0;
  }
  .pre-footer img {
    display: none;
  }
  .home-blog {
    padding-bottom: 200px !important;
  }
  .home-blog .sticky-side {
    position: unset;
  }
  .home-blog p {
    margin-top: 14px;
  }
  .home-blog .blog-side .blog-img::after {
    width: 100%;
  }
  .home-blog .blog-side .blog-img span {
    font-size: 10px;
    line-height: 15px;
  }
  .home-blog .blog-side .blog-img h5 {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 10px 0;
  }
  .home-blog .blog-side .blog-img a {
    color: #000;
    font-size: 14px;
  }
  .home-blog .blog-side .blog-img img {
    height: 120px;
    width: 120px;
  }
  .maintenance .maintenance-card .maintenance-card-info:nth-child(1)::before {
    display: none;
  }
  .footer {
    padding-top: 280px !important;
    padding-bottom: 30px;
  }
  .footer .footer-line::after {
    display: none;
  }
  .footer .submit-btn {
    margin-left: -20px;
  }
  .footer form {
    margin: 20px 0 0px;
  }
  .footer form .email-input input {
    padding: 6px 33px 10px 14px;
  }
  .footer form .email-input p {
    font-size: 13px;
    margin-bottom: 0;
  }
  .footer .follow-us {
    padding-bottom: 30px;
    border-bottom: 1px solid #3B3A3A;
  }
  .footer h4 {
    margin-top: 36px;
  }
  .footer .policy-list {
    padding-top: 0px;
  }
  .footer .footer-loop .looping-carousel h3 {
    font-size: 40px;
    line-height: 50px;
    margin-right: 30px;
  }
  .footer .copyright p {
    margin-bottom: 0;
  }
  .footer .copyright p:first-child {
    margin-bottom: 20PX;
  }
  .home-services h2 {
    margin: 14px 0;
  }
  .home-services .card-link .card {
    padding-left: 0;
    padding: 19px;
    border-radius: 0;
  }
  .home-services .card-link .card .card-row {
    padding: 20px 0;
  }
  .home-services .card-link .card .card-row h5 {
    color: #FFF;
    font-size: 24px;
    font-family: "PlusJakartaSans-SemiBold";
    margin-bottom: 14px;
  }
  .home-services .card-link .card .card-row p {
    color: #fff;
  }
  .home-services .card-link .card .card-body {
    overflow: hidden;
  }
  .home-services .card-link .card .card-body img {
    width: 580px;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    transition: 0.3s linear;
  }
  .home-services .card-link:hover .card .btn-arw svg {
    visibility: hidden;
  }
  .home-services .card-link:hover .card .btn-arw::after {
    display: block;
  }
  .home-services .card-link:hover .card .card-body img {
    transform: scale(1.1);
  }
  .our-project h2 {
    margin: 14px 0;
  }
  .our-project .card .zoom-img-animate img {
    width: 100%;
  }
  .our-project .card .card-body span {
    font-size: 10px;
  }
  .our-project .project-slide {
    margin: 0 14px;
    padding-top: 15px;
  }
  .our-project .slick-dots {
    position: absolute;
    bottom: -10%;
    left: 0;
  }
  .our-project .slick-dots li {
    margin: 0;
  }
  .our-project .slick-dots li button::before {
    color: #DBDBDB;
    font-size: 12px;
    opacity: 1;
  }
  .our-project .slick-dots .slick-active button::before {
    color: #C3000C;
  }
  .testimonial-section h2 {
    margin: 14px 0;
  }
  .testimonial-section .slick-dots {
    position: absolute;
    bottom: -10%;
    left: 0;
  }
  .testimonial-section .slick-dots li {
    margin: 0;
  }
  .testimonial-section .slick-dots li button::before {
    color: #DBDBDB;
    font-size: 12px;
    opacity: 1;
  }
  .testimonial-section .slick-dots .slick-active button::before {
    color: #C3000C;
  }
  .testimonial-section .testimonial-slider {
    margin-top: 15px;
  }
  .banner-section .card {
    margin-top: 53px;
    border-radius: 0;
    padding: 30px;
    margin-bottom: -181px;
    position: unset;
  }
  .banner-section .card .card-body {
    padding: 80px 0 0 0;
  }
  .banner-section .card .card-body p {
    font-size: 22px;
    line-height: 36px;
  }
  .banner-below img {
    height: 45vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .our-vision {
    padding-bottom: 80px !important;
  }
  .our-expertise {
    padding: 60px 0;
  }
  .our-expertise p {
    color: #333;
  }
  .our-expertise .expertise-count {
    padding-top: 30px;
    padding-bottom: 200px;
  }
  .our-expertise .expertise-count .stats-row {
    margin-bottom: 30px;
  }
  .ceo-talk .ceo-img {
    margin-top: -177px;
  }
  .ceo-talk h3 {
    font-size: 40px;
  }
  .ceo-talk p {
    font-size: 16px;
  }
  .ceo-talk .ceo-detail {
    gap: 40px;
  }
  .ceo-talk .ceo-detail p {
    font-size: 14px;
  }
  .ceo-talk .ceo-detail svg {
    width: 50px;
    height: 50px;
  }
  .why-fire-asia h2 {
    margin: 14px 0;
  }
  .why-fire-asia .card {
    padding: 50px 23px 19px 8px;
  }
  .why-fire-asia .card h5 {
    color: #000;
    font-size: 18px;
    line-height: 26px;
  }
  .banner-section .enquiry-img {
    display: none;
  }
  .home-owners h2 span {
    font-size: 25px;
    line-height: 34px;
  }
  .home-owners .count-animate {
    gap: 40px;
  }
  .home-owners .count-animate span {
    font-size: 30px;
    line-height: 36px;
  }
  .home-owners .count-animate p {
    font-size: 14px;
    line-height: 20px;
  }
  .sub-services .card-link .card .card-row h5 {
    color: #333;
    font-size: 20px;
  }
  .sub-services .card-link .card .card-row .card-text {
    font-size: 16px;
  }
  .sub-services .card-link .card .card-row p {
    font-size: 16px;
    color: #333;
  }
  .service-info h6 {
    font-size: 18px;
    line-height: 26px;
  }
  .maintenance .maintenance-heading {
    position: relative;
  }
  .maintenance .maintenance-heading h4 {
    font-size: 50px;
    top: -14px;
  }
  .maintenance .maintenance-card {
    padding: 20px;
    margin-top: -25%;
    margin-bottom: 20px;
  }
  .maintenance .maintenance-card h3 {
    font-size: 20px;
    line-height: 26px;
  }
  .maintenance .maintenance-card p {
    font-size: 16px;
    line-height: 26px;
  }
  .maintenance .maintenance-card .maintenance-card-info:first-child {
    padding-bottom: 45px;
    margin-bottom: 45px;
    border-bottom: 1px solid #F89FA5;
  }
  .maintenance .maintenance-card .maintenance-card-info:last-child {
    margin-bottom: 45px;
  }
  .pumbing-info .pumbing-rotate {
    transform: rotate(-7deg);
  }
  .pumbing-info .pumbing-rotate-2 {
    transform: rotate(7deg);
  }
  .blog-section {
    padding: 50px 0 200px 0;
  }
  .blog-section h3 {
    font-size: 25px;
    line-height: 34px;
    margin-bottom: 20px;
  }
  .blog-section .card .card-body h5 {
    font-size: 20px;
    line-height: 30px;
  }
  .blog-detail {
    padding: 60px 0 35px 0;
  }
  .blog-detail bdo {
    color: #8D8686;
    font-size: 13px;
    line-height: 18px;
  }
.collaborating-industry .slick-dots {
    position: absolute;
    bottom: -10%;
    left: 0;
  }
  .collaborating-industry  .slick-dots li {
    margin: 0;
  }
  .collaborating-industry .slick-dots li button::before {
    color: #DBDBDB;
    font-size: 12px;
    opacity: 1;
  }
  .collaborating-industry .slick-dots .slick-active button::before {
    color: #C3000C;
  }
	.collaborating-logo.slick-initialized.slick-slider.slick-dotted {
    margin-bottom: 50px;
   }
}
  