@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Rajdhani:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
body{
  font-family: "Plus Jakarta Sans", serif;
}
a {
  text-decoration: none;
  display: inline-block;
}
img {
  width: 100%;
  display: block;
}
ul {
  padding: 0;
  margin: 0;
}
p {
  padding: 0;
  margin: 0;
  line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

:root {
  --c1: #E86024; /* ORANGE */
  --c2: #252525; /* DARK GRAY */
  --c3: #000000; /* BLACK */
  --c4: #ffffff; /* WHITE */
  --f1: "Rajdhani", serif;
}
::selection {
  background: var(--c1);
  color: var(--c4);
}

/* inner-wrapper */

.inner-header {
	position: relative;
	background-size: cover !important;
	background-position: center !important;
	padding: 100px 0px;
	background-repeat: no-repeat !important;
}
.inner-header:before {
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, rgb(0 0 0) 0%, rgb(0 0 0) 20%, rgba(37, 37, 37, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
}
.inner-header .container {
  position: relative;
}
.inner-header-title h1 {
    font-family: var(--f1);
    font-weight: 700;
    font-size: 76px;
    line-height: 1;
}
.inner-header-title {
    color: var(--c4);
}
.inner-header-title h1 span {
    color: var(--c1);
}
.inner-header .curve {
    width: 200px;
}

/* end inner-wrapper */

/* HEADER */

.top-header {
  background-color: var(--c2);
}
.top-head-links ul {
  display: flex;
  justify-content: end;
}
.top-head-links ul li a {
  padding: 12px 20px;
  color: var(--c4);
  font-size: 15px;
  transition: all .5s;
}
.top-head-links ul li a i {
  margin-right: 10px;
}
.top-head-links ul li a:hover {
  background-color: var(--c1);
}
.nav-bar nav ul {
  display: flex;
  gap: 40px;
  justify-content: end;
}
.nav-bar nav ul li a {
  color: var(--c2);
  font-weight: 500;
  transition: all .5s;
}
.nav-bar nav ul li a:hover {
  color: var(--c1);
}
.main-header {
  padding: 25px 0px;
   padding: 0px;
}
.nav-bar nav ul li a {
    padding: 25px 0px;
}
.main-header .container {
  position: relative;
}
.head-logo {
  position: absolute;
  left: 0;
  background-color: var(--c4);
  padding: 0px 20px;
  height: 120.5px;
  display: flex;
  align-items: center;
  top: -72px;
}

/* SECTION MAIN BANNER */

.banner .banner-img {
  height: 90vh;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner {
  position: relative;
}
.banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.banner::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(0 0 0) 0%, rgb(0 0 0) 20%, rgba(37, 37, 37, 0) 100%);
}
.banner-title .ban-sub, .inner-header-title .ban-sub {
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 15px;
  display: block;
}
.banner-title {
  color: var(--c4);
}
.banner-title h1 {
  font-size: 80px;
  font-family: var(--f1);
  font-weight: 700;
  line-height: 1;
}
.banner-title h1 span {
  color: var(--c1);
}
.banner-title p {
  font-size: 20px;
  margin: 20px 100px 35px 0px;
}
.web-btn {
  padding: 12px 40px;
  background-color: var(--c1);
  color: var(--c4);
  font-family: var(--f1);
  font-weight: 600;
  transition: all .5s;
}
.web-btn:hover {
  background-color: var(--c3);
  color: var(--c4);
}
.curve {
  position: absolute;
}
.curve.one {
  top: 0;
  left: 0;
}
.curve.two {
  bottom: 0;
  right: 0;
}
.banner-title p:has(span) {
    margin-bottom: 0px;
}

/* SECTION SPONSORS */

.sponsor-item img {
  height: 70px;
  object-fit: contain;
}


/*.sponsor-item img {*/
/*  height: auto;*/
/*  object-fit: contain;*/
/*}*/

.sponsor-item {
  text-align: center;
}
.sponsor {
    padding: 50px 0px;
    background-color: #F5F5F5;
}

/* SECTION ABOUT US */

.about-img, .about-youtube {
  margin-left: 80px;
  border: 5px solid var(--c4);
  overflow: hidden;
  position: relative;
}
.about-img-main {
  position: relative;
  margin-right: 50px;
}
.about-img-dot {
  position: absolute;
  bottom: -40px;
  right: -36px;
  z-index: -1;
}
.about-img video, .about-youtube iframe {
    height: 620px;
    object-fit: cover;
    display: block;
	width: 100%;
}
.exper-box {
  position: absolute;
  left: 85px;
  width: max-content;
  bottom: 5px;
  padding: 15px 30px;
  background-color: var(--c1);
}
.about-img img {
  transition: all .8s;
}
.about-img:hover img {
  transform: scale(1.1);
}
.spacing {
  padding: 100px 0px;
}
.exper-box h3 {
  font-family: var(--f1);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: var(--c4);
}
.exper-box h3 span.numb {
  font-weight: 700;
  font-size: 50px;
}
.exper-box span.exp {
  font-size: 27px;
}
.about-line {
  position: absolute;
  top: 50%;
  width: 200px;
  height: 350px;
  border: 10px solid #808080b5;
  transform: translateY(-50%);
  z-index: -1;
}
.web-title h4 {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--c2);
}
.web-title h4 span {
  color: var(--c1);
}
.web-title h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--f1);
  line-height: 1.1;
  color: var(--c2);
}
.about-content p.line-para {
  border-left: 4px solid var(--c1);
  padding-left: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}
.about-content p {
  margin-top: 20px;
}
.about-content .web-btn {
  margin-top: 40px;
}
.web-title h2 span {
  color: var(--c1);
}

/* SECTION REPAIR SERVICES */

.rep-serv-title, .faq-title, .achiev-title, .testi-title, .project-title, .comitted-title, .expert-serv-title, .the-way-title, .pricing-title, .loc-map-title, .team-zig-title, .home-safe-title, .ben-choo-title, .horiz-title {
  margin-bottom: 50px;
}
.rep-serv-title h2, .achiev-title h2, .testi-title h2, .comitted-title h2, .the-way-title h2, .pricing-title h2, .loc-map-title h2, .team-zig-title h2, .home-safe-title h2, .ben-choo-title h2 {
  padding: 0px 80px 20px 80px;
}
.rep-serv-content p {
  margin-top: 20px;
}
.rep-serv-content .web-btn {
  margin-top: 30px;
}
.rep-serv-content h2 {
  font-size: 36px;
  padding-right: 220px;
}
.rep-serv-item {
  margin: 0px 30px 0px 80px;
  position: relative;
}
.rep-serv-img {
  border: 5px solid var(--c4);
  overflow: hidden;
}
.rep-serv-img img {
  transition: all .8s;
}
.rep-serv-img:hover img {
  transform: scale(1.1);
}
.rep-box {
  position: absolute;
  background-color: var(--c1);
  transition: all .5s;
}
.rep-short-box {
  width: 80px;
  height: 90px;
  bottom: 5px;
  right: 5px;
}
.rep-big-box {
  width: 200px;
  height: 300px;
  top: 50%;
  transform: translateY(-50%);
  left: -80px;
  z-index: -1;
}
.rep-serv-item:hover .rep-box {
  background-color: var(--c2);
}
.rep-rows-main .row:nth-child(even) {
  flex-direction: row-reverse;
}
.rep-rows-main .row:nth-child(even) .rep-serv-item {
  margin: 0px 80px 0px 30px;
}
.rep-rows-main .row:nth-child(even) .rep-serv-item .rep-big-box {
  left: unset;
  right: -80px;
}
.rep-rows-main .row:nth-child(even) .rep-serv-item .rep-short-box {
  right: unset;
  left: 5px;
}
.rep-rows-main .row {
  margin-bottom: 50px;
}
.rep-rows-main .row:last-child {
  margin-bottom: 0px;
}

/* SECTION PROP SERVICES */

.prop-serv-content p {
  margin-top: 20px;
}
.prop-serv-content .web-btn {
  margin-top: 30px;
}
.pro-serv-box-item {
  width: 48%;
  padding: 0px 25px 40px 40px;
  transition: all .5s;
  background-color: var(--c4);
}
.prop-serv-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.pro-serv-box-item h4 {
  font-family: var(--f1);
  color: var(--c2);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  margin: 30px 0px 20px 0px;
}
.pro-serv-item-icon {
  width: 70px;
  padding: 12px;
  background-color: #F5F5F5;
}
.pro-serv-box-item:hover {
  background-color: var(--c2);
}
.pro-serv-box-item h4, .pro-serv-box-item p {
  transition: all .5s;
}
.pro-serv-box-item:hover h4, .pro-serv-box-item:hover p {
  color: var(--c4);
}
.pro-serv-box-item p {
  font-size: 15px;
}
.prop-serv-content {
  padding-right: 50px;
}
.prop-serv-content h2 {
  padding-right: 50px;
}
.prop-services, .about-us, .rep-service {
  background-color: #F5F5F5;
}

/* SECTION WHY CHOOSE US */

.why-choose {
    background-color: var(--c2);
	position: relative;
}
.choose-img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 48%;
    overflow: hidden;
}
.choose-img img {
    height: 100%;
    object-fit: cover;
    transition: all .8s;
}
.choose-img:hover img {
    transform: scale(1.1);
}
.choose-content {
    color: var(--c4);
	padding-right: 50px;
	position: relative;
}
.choose-content h2 {
    color: inherit;
	margin-bottom: 25px;
}
.choose-content ul li {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}
.choose-content ul li span {
    width: 8%;
}
.choose-cont-list {
    width: 92%;
}
.choose-content ul li span i {
    width: 50px;
    height: 50px;
    background-color: var(--c4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c1);
    font-size: 25px;
}
.choose-cont-list h3 {
    font-family: var(--f1);
    color: var(--c1);
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 6px;
}
.choose-content ul li:last-child {
    margin-bottom: 0px;
}
.choose-content ul {
    margin: 30px 0px 50px 20px;
}
.choose-video {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -100px;
    z-index: 2;
}
.choose-video a {
    width: 100px;
    height: 100px;
    background-color: var(--c1);
    border-radius: 50%;
    border: 14px solid var(--c4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c4);
}

/* SECTION FAQS */

.faqs-item-main .accordion-button::after {
  background-image: unset;
  font-family: "Font Awesome 5 Pro";
  transform: unset;
  content: "\f067";
  color: var(--c1);
  width: 25px;
  height: 25px;
  border: 1px solid var(--c1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.faqs-item-main .accordion-button:not(.collapsed)::after {
  content: "\f068";
}
.faqs-item-main .accordion-button {
  border: unset;
  box-shadow: unset;
  background: unset;
  color: var(--c2);
  padding: 22px 30px;
}
.faqs-item-main .accordion-button:not(.collapsed) {
  color: var(--c1);
}
.faqs-item-main .accordion-item {
  margin-bottom: 20px;
  border: 1px solid #0000003b;
}
.faqs-item-main .accordion-body {
  padding: 10px 30px 22px 30px;
}
.faq-title h2 {
  margin-bottom: 20px;
}
.faqs-item-main .accordion-item:last-child {
  margin-bottom: 0px;
}

/* SECTION OUR ACCREDIATION */

.accred-title {
  margin-bottom: 50px;
}

/* SECTION ACHIEVEMENT */

.achiev-item {
  border-radius: 50%;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 20px solid #F5F5F5;
  transition: all .5s;
  position: relative;
  margin: 0 auto;
  background-color: var(--c4);
}
.achiev-item h4 {
  font-size: 50px;
  font-weight: 800;
  color: var(--c1);
}
.achiev-item:hover {
  background-color: var(--c1);
}
.achiev-item h4, .achiev-item p {
  transition: all .5s;
}
.achiev-item:hover h4, .achiev-item:hover p {
  color: var(--c4);
}
.achiev-item::before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 20px;
  height: 100%;
  background-color: var(--c1);
}
.achievement .row .col:nth-child(1) .achiev-main, .achievement .row .col:nth-child(5) .achiev-main {
  padding-bottom: 60px;
}
.achievement .row .col:nth-child(2) .achiev-main, .achievement .row .col:nth-child(4) .achiev-main {
  padding-bottom: 120px;
}
.achievement .row .col:nth-child(3) .achiev-main {
  padding-bottom: 180px;
}
.achiev-main {
  position: relative;
}
.achiev-main::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 95%;
  background-color: #F5F5F5;
}

/* SECTION TESTIMONIAL */

.testi-item {
  margin: 0px 10px;
  position: relative;
  transition: all .5s;
}
.testi-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(0 0 0 / 49%);
}
.testi-icon a {
  width: 80px;
  height: 80px;
  background-color: var(--c1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 10px solid var(--c4);
  color: var(--c4);
}
.testi-slider .slick-center {
  opacity: 1 !important;
}
.testi-slider .slick-slide {
  opacity: 0.5;
}
.testi-img img {
  height: 480px;
  object-fit: cover;
}
.testi-slider .slick-arrow, .project-slider .slick-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c2);
  color: var(--c4);
  position: absolute;
  z-index: 1;
  cursor: pointer;
  transition: all .5s;
}
.testi-slider .slick-arrow{
  left: 50%;
  transform: translateX(-50%);
  bottom: -100px;
}
.testi-slider .slick-prev {
  transform: translateX(-110%);
}
.testi-slider .slick-next {
  transform: translateX(10%);
}
.testi-slider .slick-arrow i, .project-slider .slick-arrow i {
  font-weight: 200;
}
.testi-slider .slick-arrow:hover, .project-slider .slick-arrow:hover {
  background-color: var(--c1);
}
.testimonial {
  padding: 100px 0px 200px 0px;
  background-color: #F5F5F5;
}
.testi-img video {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

/* SECTION BOOK INSPECTION */

.book-man {
  background-color: var(--c2);
  position: relative;
  margin-left: 100px;
  padding: 0px 120px 0px 120px;
}
.book-socials {
  position: absolute;
  left: -100px;
  width: 100px;
  background-color: var(--c1);
  height: 80%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-socials ul li a {
  width: 50px;
  height: 50px;
  border: 1px solid var(--c4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c4);
  transition: all .5s;
  font-size: 20px;
}
.book-socials ul li a:hover {
  background-color: var(--c4);
  color: var(--c1);
}
.book-socials ul li {
  margin-bottom: 30px;
}
.book-socials ul li:last-child {
  margin-bottom: 0px;
}
.book-man-img {
  transform: translateY(-33px) scale(1.1);
  position: relative;
  z-index: 2;
}
.book-form-main {
  background-color: var(--c4);
  transform: translateX(-140px);
  width: 125%;
  padding: 0px;
/*   margin-top: 60px; */
}

.book-form-main iframe {
    height: 782px !important;
}

.book-form-main h5 {
  color: var(--c2);
  font-size: 28px;
  font-weight: 800;
  font-family: var(--f1);
  text-align: center;
  margin-bottom: 20px;
}
.book-form-main h5 span {
  color: var(--c1);
}
.book-form-item input, .book-form-item textarea {
  border: 0;
  background-color: #F5F5F5;
  padding: 12px 20px;
  width: 100%;
  outline: 0;
}
.book-form-main form .row {
  row-gap: 20px;
}
.book-form-item input::placeholder, .book-form-item textarea::placeholder {
  color: var(--c2);
}
.book-form-item textarea {
  height: 170px;
}
.book-form-btn input {
  padding: 12px 70px;
  font-family: var(--f1);
  background-color: var(--c1);
  border: 0;
  color: var(--c4);
  font-weight: 700;
  transition: all .5s;
}
.book-form-btn input:hover {
  background-color: var(--c2);
}
.book-form-btn {
  text-align: end;
  position: relative;
}
.book-form-btn span.wpcf7-spinner {
    position: absolute;
    bottom: -30px;
    right: 50px;
}

/* FOOTER */

.footer-main {
  background-color: var(--c3);
  padding: 250px 0px 70px 0px;
}
.foot-item h3 {
  color: var(--c1);
  font-family: var(--f1);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 25px;
}
.foot-links ul li a {
  color: var(--c4);
  transition: all .5s;
}
.foot-links ul li {
  margin-bottom: 16px;
}
.foot-links ul li a:hover {
  color: var(--c1);
  padding-left: 10px;
}
.foot-contact-info ul li, .foot-contact-info ul li a {
  color: var(--c4);
  transition: all .5s;
}
.foot-contact-info ul li a:hover {
  color: var(--c1);
}
.foot-contact-info ul li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}
.foot-logo-main p {
  color: var(--c4);
  padding-right: 30px;
}
.foot-contact-info input[type="email"] {
  padding: 12px 115px 12px 20px;
  border: 0;
  outline: 0;
  font-size: 15px;
  width: 100%;
}
.foot-contact-info input[type="submit"] {
  position: absolute;
  top: 7px;
  right: 10px;
  font-size: 14px;
  background-color: var(--c1);
  border: 0;
  font-family: var(--f1);
  color: var(--c4);
  padding: 6px 20px;
  font-weight: 700;
  transition: all .5s;
}
.mc4wp-response {
    color: var(--c4);
    font-size: 13px;
    margin-top: 10px;
}
.mc4wp-response a {
    color: var(--c1);
}
.foot-contact-info form {
  position: relative;
  margin-top: 25px;
}
.foot-contact-info input[type="submit"]:hover {
  background-color: var(--c3);
}
.foot-bottom {
  background-color: var(--c2);
  padding: 20px 0px;
  text-align: center;
}
.copyrights p {
  color: var(--c4);
}
.copyrights p a {
  color: var(--c1);
  transition: all .5s;
}
.copyrights p a:hover {
  color: var(--c3);
}
.footer {
  margin-top: -200px;
}
.foot-contact-info ul li i {
  position: absolute;
  top: 5px;
  left: 0;
  color: var(--c1);
}

/* SECTION SAFER TOMORROW */

.safer-tomorrow {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.safer-tomorrow::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #252525e8;
  z-index: -1;
}
.safer-img {
  position: absolute;
  bottom: 0;
  width: 400px;
  right: 22%;
}
.safer-content h4 {
  color: var(--c1);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.safer-content h2 {
  font-family: var(--f1);
  color: var(--c4);
  font-weight: 700;
  font-size: 60px;
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 25px;
}
.safer-tomorrow::after {
   	position: absolute;
	content: '';
	top: 0;
	right: 50px;
	width: 500px;
	height: 100%;
	background-image: url(http://demo13.demo-development.com/wp-content/uploads/2024/12/Polygon-2-1.png);
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
}

/* SECTION PEACE MIND */

.peace-tit-cont p {
  margin-bottom: 20px;
}
.peace-tit-cont p:last-child {
  margin-bottom: 0px;
}
.peace-tit-cont {
  padding-right: 70px;
  margin-bottom: 100px;
}
.peace-tabs-btn ul li {
  width: 100%;
}
.peace-tabs-btn ul li button {
  width: 100%;
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 30px 30px;
  position: relative;
  background-color: var(--c4) !important;
  border: 0 !important;
}
.peace-tabs-btn ul li button img {
  width: 35px;
}
.peace-tabs-btn ul li button span {
  font-weight: 700;
  font-family: var(--f1);
  color: var(--c2);
  font-size: 20px;
}
.peace-tabs-btn ul li button::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--c1);
  visibility: hidden;
  opacity: 0;
  transition: all .5s;
}
.peace-tabs-btn ul li button.active::before {
  visibility: visible;
  opacity: 1;
}
.peace-tabs-btn ul {
  gap: 25px;
}
.peace-tab-item h3 {
  font-family: var(--f1);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 34px;
}
.peace-tab-item p {
  margin-bottom: 20px;
}
.peace-tab-item .web-btn {
  margin-top: 10px;
}
.peace-tab-item {
  padding: 0px 40px 0px 20px;
  color: var(--c4);
}
.peace-mind .container .row:nth-child(2) {
  position: relative;
  z-index: 2;
  padding-top: 70px;
}
.peace-mind .container .row:nth-child(2)::before {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  width: 90%;
  height: 100%;
  background-color: var(--c2);
  z-index: -1;
  height: 90%;
}
.peace-tab-img {
  position: relative;
  transform: translateY(-140px) translateX(80px);
}
.peace-tab-img::before {
  position: absolute;
  content: '';
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background-color: var(--c1);
  z-index: -1;
}

/* SECTION PROJECTS */

.project-slider .slick-list.draggable {
  margin: 0px 0px 0px 290px;
  padding-right: 40px;
}
.project-item {
  position: relative;
  margin: 0px 15px;
  z-index: 2;
}
.project-img img {
  height: 450px;
  object-fit: cover;
}
.project-item::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--c2), transparent);
}
.project-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 90px 20px 20px;
  color: var(--c4);
}
.project-content h4 {
  font-family: var(--f1);
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 28px;
}
.project-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.project-btn a {
  width: 60px;
  height: 60px;
  background-color: var(--c1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c4);
  font-size: 22px;
  transition: all .5s;
}
.project-btn a i {
  font-weight: 200;
}
.project-btn a:hover {
  background: var(--c3);
}
.project-slider .slick-prev {
  right: 19.5%;
}
.project-slider .slick-next {
  right: 17%;
}
.project-slider .slick-arrow {
  top: -100px;
}
.project-slider ul.slick-dots li button {
    font-size: 0px;
    border: 0;
    width: 10px;
    height: 10px;
    background-color: #F5F5F5;
    border-radius: 50%;
}
.project-slider ul.slick-dots li.slick-active button {
    background-color: var(--c1);
}
.project-slider ul.slick-dots {
    display: flex;
    gap: 7px;
    justify-content: center;
    margin-top: 20px;
}
.wrapper-main {
  overflow: hidden;
}
.project-title h2 {
  margin-bottom: 20px;
}

/* RESPONSIVE MENU */

.responsive-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--c4);
    z-index: 9999;
	transition: all .5s;
}
.responsive-menu.active{
	left: 0;
}
.responsive-menu-main {
    height: 100%;
    padding: 30px 30px;
    position: relative;
}
.responsive-logo {
    width: 200px;
    margin-bottom: 30px;
}
.responsive-links ul li a {
    color: var(--c2);
    padding: 10px 0px;
    display: block;
}
.responsive-links ul li {
    border-bottom: 1px solid #8080803d;
    position: relative;	
}
.resp-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--c1);
    padding: 6px 0px;
}
.responsive-icon a i {
    display: block;
}
.responsive-icon {
    position: absolute;
    top: 30px;
    right: 30px;
}
.responsive-icon a {
    color: var(--c3);
    font-size: 30px;
}
.responsive-links ul li:last-child {
    border: 0;
}
body.scroll-stop {
    overflow: hidden;
}
.resp-social ul {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.resp-social ul li a i {
    display: block;
}
.resp-social ul li a {
    padding: 10px;
    color: var(--c4);
    font-size: 18px;
}
.responsive-links ul li i {
    position: absolute;
    right: 0;
    top: 13px;
}
.responsive-links ul li ul {
    padding-left: 30px;
    border-top: 1px solid #8080803d;
}
.responsive-links ul li i.active::before {
    content: "\f068";
}
.ham-menu a {
	color: var(--c3);
	font-size: 25px;
}

/* SECTION ABOUT US PAGE */

/* SECTION COMMITTED */

.comitted-vid-main {
    position: relative;
}
.comitted-vid-img video {
    width: 100%;
    display: block;
    height: 580px;
    object-fit: cover;
}

/* SECTION EXPERT SERVICES */

.expert-serv {
    background-color: var(--c2);
	color: var(--c4);
}
.expert-serv-title h2 {
    color: var(--c4);
    padding-right: 50px;
}
.expert-sev-list ul li {
    padding: 25px;
    display: flex;
    transition: all .5s;
}
.expert-sev-list ul li span {
    width: 16%;
}
.expert-sev-list ul li span i {
    width: 60px;
    height: 60px;
    background-color: var(--c4);
    color: var(--c1);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
	transition: all .5s;
}
.expert-sev-list ul li:hover {
    background: rgba(23, 23, 23, 1);
}
.expert-serv-img {
    position: relative;
    overflow: hidden;
    padding-right: 20px;
    z-index: 1;
    padding-bottom: 20px;
}
.expert-serv-img::before {
    position: absolute;
    content: '';
    bottom: 0;
    right: 0;
    width: 94%;
    height: 94%;
    background-color: var(--c1);
    z-index: -1;
}
.expert-sev-list ul li:hover span i {
    background-color: var(--c1);
    color: var(--c4);
}

/* SECTION THE WAY */

.the-way .rep-serv-img {
    border: 0;
}
.the-way .rep-big-box {
    height: 75%;
    left: -60px;
}

/* PAGE: CONTACT US */

.book-form-item input:focus::placeholder,.book-form-item textarea:focus::placeholder {
    visibility: hidden;
    opacity: 0;
}
.book-form-item input::placeholder,.book-form-item textarea::placeholder{
	transition:all.5s;
}
.contact-us-page .contact-form-main form .row {
    row-gap: 25px;
}
.contact-title h2{
	    padding: 0px 80px 20px 80px;
}
.contact-title{
	margin-bottom: 50px;
}
.contact-form-main .book-form-btn {
    text-align: center;
}
.contact-us-page .book-form-btn span.wpcf7-spinner {
    left: 50%;
    right: unset;
    transform: translateX(-50%);
    margin: 0px;
}

/* <!-- PAGE: CONTACT DETAIL CARDS --> */

.contact-us-cards {
    background-color: var(--c2);
}
.contact-us-cards .web-title h2 , .contact-us-cards .web-title {
    color: #fff;
}
.contact-us-cards .web-title h2 {
    padding: 0px 130px 20px 130px;
}
.contact-card-icon i {
}
.contact-card-main {
    text-align: center;
}
.contact-card-icon {
    background-color: var(--c3);
    margin: 0 auto;
    width: 35%;
    height: 130px;
    align-content: center;
    position: relative;
    z-index: 3;
    top: 60px;
	transition:all.5s;
}
.contact-card-icon:hover {
    background-color: var(--c1);
}
.contact-card-icon:hover i {
    color: #fff;
}
.contact-card-icon i {
    color: var(--c1);
    font-size: 36px;
    font-weight: 900;
	transition:all.5s;
}
.contact-card-content {
    background-color: rgba(23, 23, 23, 1);
    height: 280px;
    align-content: center;
    padding: 0 28px;
}
.contact-card-content h4 {
    font-size: 24px;
    color: var(--c1);
    font-family: var(--f1);
    font-weight: 700;
    padding-bottom: 0px;
	margin-bottom: 8px;
}
.contact-card-content a ,.contact-card-content h5 {
    color: #fff;
    font-size: 24px;
    font-family: var(--f1);
    font-weight: 700;
	transition:all.5s;
}
.contact-card-content a:hover {
    color: var(--c1);
}

/* TESTIMONIALS */

/* section.testimonials {
    background-color: rgba(245, 245, 245, 1);
} */
.platforms img {
    width: 190px;
    margin: 0 auto;
}
.testimnial-card-main {
    margin-top: 20px;
}
.testimonial-card-item {

    background-color: var(--c4);
    border-radius: 20px;
    padding: 30px 30px;
    margin: 0 10px;
}
.author-details {
    margin: 25px 0;
}
.author-image img {
    width: 80px;
    border-radius: 50%;
}
.author-content p {
    font-size: 15px;
}
.author-details h2 {
    color: var(--c2);
    font-weight: 700;
    font-size: 28px;
    font-family: var(--f1);
}
.author-details h4 {
    font-size: 16px;
    color: var(--c1);
}
.author-ratings ul {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}
.author-ratings ul li {
    position: relative;
}
.author-ratings ul li:before {
    content: "\f005";
    color: var(--c1);
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
}
.testimonial-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--c2);
    color: #fff;
    width: 42px;
    height: 40px;
    align-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
	z-index:9;
	cursor:pointer;
	transition:all.5s;
}
.testimonial-slider .slick-arrow:hover {
    background-color: var(--c1);
}
.testimonial-slider .slick-arrow.slick-prev {
    left: -80px;
}
.testimonial-slider .slick-arrow.slick-next {
    right: -80px;
}
.testimonial-slider .slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding-top: 3.5rem;
    list-style-type: none;
}
.testimonial-slider .slick-dots li {
	margin: 0 0.25rem;
}
.testimonial-slider .slick-dots button {
    display: block;
    width: 1rem;
    height: 1rem;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: rgba(217, 217, 217, 1);
    text-indent: -9999px;
	transition:all.5s;
}
.testimonial-slider .slick-dots li.slick-active button {
	background-color: var(--c1);
}

/* PRICING */

.pricing {
    background-color: var(--c2);
}
.pricing .web-title , .pricing .web-title h2 {
    color: #fff;
}
.pricing-box-item {
    background-color: var(--c4);
    padding: 40px 25px;
	transition:all.5s;
}
.pricing-name h4 {
    color: var(--c1);
    font-family: var(--f1);
    font-weight: 700;
    font-size: 30px;
	transition:all.5s;
}
.pricing-name h5 {
    font-size: 17px;
    color: var(--c2);
    font-weight: 400;
	transition:all.5s;
}
.price-main {
    margin: 35px 0px;
	transition:all.5s;
}
.price-main p{
	transition:all.5s;
}
.price-main h4 span {
    font-size: 50px;
    font-family: var(--f1);
    font-weight: 600;
    line-height: 0.7;
	transition:all.5s;
}
.pricing-btn a {
    display: block !important;
    text-align: center;
	transition:all.5s;
}
.pricing-features {
    margin-top: 35px;
}
.pricing-features ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 16px;
	transition:all.5s;
}
.pricing-features ul li:before {
    content: "\f336";
    color: var(--c2);
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    position: absolute;
    left: 0;
    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
	transition:all.5s;
}
.pricing-box-item:hover {
    background-color: var(--c1);
}
.pricing-box-item:hover .pricing-name h4,
.pricing-box-item:hover .pricing-name h5,

.pricing-box-item:hover .price-main h4,
.pricing-box-item:hover .price-main p,

.pricing-box-item:hover .pricing-features,
.pricing-box-item:hover .pricing-features ul li:before
{
    color: #fff;
}
.pricing-box-item:hover .web-btn {
    background-color: var(--c2);
}

/* SECTION THE WAY */

.the-way .rep-serv-content h2 {
    padding-right: 0px;
}

/* SECTION LOCATION MAP */

.loc-map-item iframe {
    display: block;
    width: 100%;
    height: 400px;
}

/* SECTION TEAM ZIGZAG */

.team-zigzag {
    background-color: var(--c2);
	color: var(--c4);
}
.team-item-box {
    position: relative;
    padding-left: 120px;
    margin-bottom: 50px;
}
.team-item-img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 240px;
    left: 0;
}
.team-item-content {
    height: 350px;
    background-color: #171717;
    padding: 40px 120px 0px 160px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.team-cont-name h4 {
    font-family: var(--f1);
    color: var(--c1);
    font-weight: 600;
}
.team-cont-name span {
    font-family: var(--f1);
    font-weight: 600;
}
.team-cont-desc h5 {
    text-transform: uppercase;
    color: var(--c1);
    font-size: 16px;
    margin-bottom: 15px;
}
.team-experience {
    position: absolute;
    top: 45px;
    right: 0;
    background-color: var(--c3);
    padding: 20px 40px;
}
.team-experience span {
    text-transform: uppercase;
    font-size: 14px;
}
.team-items-main .team-item-box:nth-child(even) .team-item-box {
    padding-left: 0px;
}
.team-items-main .team-item-box:nth-child(even) {
    padding-left: 0px;
    padding-right: 120px;
}
.team-items-main .team-item-box:nth-child(even) .team-item-img {
    right: 0;
    left: unset;
}
.team-items-main .team-item-box:nth-child(even) .team-item-content {
    padding: 40px 160px 0px 120px;
}
.team-items-main .team-item-box:nth-child(even) .team-experience {
    right: 240px;
}
.team-zig-title h2 {
    color: var(--c4););
}
.page-template-services .rep-serv-content h2 {
    padding-right: 60px;
}

/* SECTION HOME SAFE */

.home-safe {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 320px;
    height: 580px;
}
.home-safe::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(37 37 37 / 86%);
    z-index: -1;
}
.home-safe-vid {
    position: relative;
}
.home-safe-title h2, .home-safe-title {
    color: var(--c4);
}
.book-inspection, .acceridiation {
    background-color: #F5F5F5;
}
.location-map {
    background-color: #f5f5f5;
    height: 600px;
    margin-bottom: 300px;
}
.home-safe-vid-img video {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    aspect-ratio: 1320 / 688;
}
.home-safe-youtube iframe {
    aspect-ratio: 1320 / 688;
}
/* SECTION BENEFITS CHOOSING */

.benefits-choosing {
    background-color: #f5f5f5;
}
.ben-choo-item {
    padding: 30px 20px 40px 20px;
    background-color: var(--c4);
    height: 100%;
	transition: all .5s;
	position: relative;
}
.ben-choo-item h4 {
    font-family: var(--f1);
    margin-bottom: 10px;
    font-weight: 700;
}
.ben-choo-gap {
    row-gap: 24px;
}
.ben-choo-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45px;
    height: 45px;
    background-color: var(--c1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c4);
    font-size: 22px;
	transition: all .5s;
}
.ben-choo-item:hover {
    color: var(--c4););
    background-color: var(--c1);
}
.ben-choo-item:hover .ben-choo-icon {
    background-color: var(--c2);
}
.ban-choo-img {
    height: 100%;
    background-color: var(--c1);
}
.ban-choo-img img {
    transform: scale(1.2) translate(40px, -15.5px);
}
.ben-choo-item p {
    font-size: 15px;
}

/* SECTION CHECK GUIDE */

.check-guide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.ch-guide-content h2, .ch-guide-content {
    color: var(--c4);
    text-align: center;
}
.ch-guide-content p {
    margin: 40px 0px;
}
.testi-cards-title h2 {
    margin-bottom: 20px;
}

/* HORIZONTAL ACCORDION */

.h-service-item {
    border-right: 1px solid rgb(255 255 255 / 26%);
    cursor: pointer;
    height: 100%;
    width: 149px;
    writing-mode: vertical-lr;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 40px 0px;
}
.h-service-items-main .h-service-item-box:last-child .h-service-item {
  border-right: unset;
}
.h-service-info {
  color: #222;
}
.h-service-item.active {
  display: none;
}
.h-service-item-title {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: end;
    flex-direction: row-reverse;
    gap: 20px;
    align-items: center;
}
.h-service-items-main {
  border-bottom: 0px;
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.h-service-info-main-title img {
  width: 50px;
  margin-bottom: 10px;
}
.h-service-info-main-title h3 {
  color: var(--c3);
  font-family: var(--fmedium);
  font-size: 45px;
  margin-bottom: 10px;
}
.h-service-info-main {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.h-service-item.active .h-service-info-main {
  opacity: 1;
  visibility: visible;
}
.h-service-item .h-service-info-main {
  opacity: 0;
  visibility: hidden;
}
.h-service-item-box .h-service-item-box-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  transition: all 0.7s;
}
.h-service-item-box {
  position: relative;
  height: 550px;
  width: 12%;
  overflow: hidden;
  transition: all 0.7s;
  background-color: #f5f5f5;
}
.h-service-item-box.active {
  width: 52%;
}
.h-service-item-box.active .h-service-item-box-inner {
    left: -17%;
    width: 114%;
}
.h-service-item-box .h-service-info {
  width: 77%;
  transition: all 0.7s;
}
.h-service-item-box.active .h-service-item {
  border-right: 0px;
}
.h-service-item-box.active {
  border-right: 1px solid rgb(255 255 255 / 26%);
}
.h-service-info-main-title img {
    width: 65px;
    height: 65px;
    background-color: var(--c1);
    padding: 15px;
}
.h-service-info-main-title {
    display: flex;
    gap: 20px;
}
.h-service-info-main-title h3 {
    font-family: var(--f1);
    font-size: 30px;
    font-weight: 700;
    color: var(--c2);
    line-height: 1.1;
}
.h-service-info-title-mega {
    display: flex;
    justify-content: space-between;
    align-items: center;
	margin-bottom: 30px;
}
.h-service-info-boxes-count span {
    font-family: var(--f1);
    font-size: 50px;
    font-weight: 700;
    color: var(--c2);
}
.h-service-info-content-mega .web-btn {
    margin-top: 30px;
}
.h-service-item-title h3 {
    transform: rotate(-180deg);
	font-family: var(--f1);
    font-size: 30px;
    font-weight: 700;
    color: var(--c2);
    line-height: 1.1;
	writing-mode: vertical-rl;
}
.h-service-item-title img{
	width: 65px;
    height: 65px;
    background-color: var(--c2);
    padding: 15px;
}
.h-service-item-count span {
    transform: rotate(-180deg);
    writing-mode: vertical-rl;
	font-family: var(--f1);
    font-size: 50px;
    font-weight: 700;
    color: var(--c1);
}

/* PRIVACY POLICY CSS */

.instruction-sec-content h3 {
    font-family: var(--f1);
    font-weight: 700;
    margin-bottom: 20px;
}
.instruction-sec-content p {
    margin-bottom: 20px;
}
.instruction-sec-content ul li {
    line-height: 1.8;
    list-style: disc;
    margin-bottom: 6px;
}
.instruction-sec-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}
.terms-title {
    text-align: end;
    padding-right: 20px;
}
.terms-title h2 {
    font-weight: 800;
    font-family: var(--f1);
    font-size: 50px;
    color: var(--c1);
}
.page-template-privacy-policy .testimonials, .page-template-privacy-policy .faqs, .page-template-privacy-policy .acceridiation, .page-template-privacy-policy .book-inspection,
.page-template-terms-and-condition .testimonials, .page-template-terms-and-condition .faqs, .page-template-terms-and-condition .acceridiation, .page-template-terms-and-condition .book-inspection{
    display: none;
}
.page-template-privacy-policy .footer,
.page-template-terms-and-condition .footer{
    margin-top: 0px;
}
.page-template-privacy-policy .footer .footer-main,
.page-template-terms-and-condition .footer .footer-main{
    padding: 80px 0px 70px 0px;
}
.page-template-faqs .testimonials {
    display: none;
}

/* HORIZONTAL MOBILE SECTION */

.vert-mob-main .accordion-button {
    display: flex;
    gap: 20px;
	background: unset;
    box-shadow: unset;
}
.vert-mob-main .accordion-button img {
    width: 55px;
    height: 55px;
    background-color: var(--c1);
    padding: 10px;
	transform: rotate(90deg);
}
.vert-mob-main div#accordionExample .accordion-item:first-child .accordion-button img {
    transform: rotate(0deg);
}
.vert-mob-main .accordion-button h3 {
    font-family: var(--f1);
    color: var(--c2);
    font-weight: 700;
}
.vert-mob-main .accordion-item {
    border: 0;
    background-color: #f5f5f5;
}
.vert-mob-main .accordion-body .web-btn {
    margin-top: 20px;
}
.vert-mob-main .accordion-item {
    margin-bottom: 20px;
}
.vert-mob-main .accordion-button::after {
    background: unset;
}
.vert-mob-main .accordion-button span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.25rem;
    font-size: 26px;
    font-weight: 700;
    font-family: var(--f1);
    color: var(--c2);
}
.vert-mob-main {
    margin-top: 30px;
}
.vert-mob-main .accordion-body {
    padding-top: 0px;
}

/* loader-css */

div#preloader {
  position: fixed;
  z-index: 999999999;
  background: var(--c4);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.custom-loader {
  width: 50px;
  height: 50px;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-color: var(--c1) #0000;
  animation: s6 1s infinite linear;
}
.custom-loader::before,
.custom-loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}
.custom-loader::before {
  border-color: var(--c3) #0000;
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}
.custom-loader::after {
  margin: 8px;
}

@keyframes s6 {
  100% {
    transform: rotate(1turn);
  }
}
#preloader.remove {
  opacity: 0 !important;
  visibility: hidden !important;
}


.for-bg {
    background-color: rgb(245 245 245);
}

.nav-bar nav ul.sub-menu {
    position: absolute;
    flex-direction: column;
    z-index: 999;
    background-color: #fff;
    width: 190px;
    gap: 5px;
    padding: 20px 0 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    display: none;
    gap: 0;
    overflow: hidden;
    top: calc(100% - 13px);
}

.nav-bar nav ul li {
    position: relative;
}

.nav-bar nav ul.sub-menu li a {
    padding: 5px 15px;
    font-size: 14px;
    display: block;
}

.nav-bar nav li:hover > ul.sub-menu {
    display: flex;
}
.nav-bar nav ul.sub-menu li a:hover {
    background-color: var(--c1);
    color: var(--c4);
}
/* Blogs CSS _START */

.blog-image img {
  aspect-ratio: 16/9;
  height: auto;
  object-fit: cover;
}

.blog-card {
  padding: 5px;
  background-color: #ffffff;
}

.blog-sec {
  background-color: #F5F5F5;
}

.blog-image a {
  display: block;
}

.blog-content {
  padding: 10px 15px;
}

.blog-content h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.blog-content h2 a {
  color: var(--c2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.5;
}

.blog-wrap {
  margin-top: 50px;
}

.blog-content .read-more {
  color: var(--c1);
  font-size: 16px;
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.page-item.active .page-link {
  background-color: var(--c1);
  border-color: var(--c1);
}

.page-link {
  color: var(--c1);
  font-weight: 500;
}

.page-link:hover {
  color: var(--c2);
}

.related .blog-card {
  background-color: #F5F5F5;
}

/* Default styles for desktops */
.single-post-sec {
  padding-top: 50px;
  padding-bottom: 50px;
}

.single-post-sec p {
  margin-bottom: 15px;
}

.single-post-sec a {
  color: var(--c1);
}

.single-post-sec h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.single-post-sec h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 18px;
}

.single-post-sec h3 {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.single-post-sec h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 14px;
}

.single-post-sec h5 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.single-post-sec h6 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.related .blog-wrap {
  margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .single-post-sec h1 {
    font-size: 2.25rem;
  }

  .single-post-sec h2 {
    font-size: 1.85rem;
  }

  .single-post-sec h3 {
    font-size: 1.6rem;
  }

  .single-post-sec h4 {
    font-size: 1.4rem;
  }

  .single-post-sec h5 {
    font-size: 1.15rem;
  }

  .single-post-sec h6 {
    font-size: 0.95rem;
  }
}

@media (max-width: 992px) {
  .single-post-sec h1 {
    font-size: 2rem;
  }

  .single-post-sec h2 {
    font-size: 1.7rem;
  }

  .single-post-sec h3 {
    font-size: 1.5rem;
  }

  .single-post-sec h4 {
    font-size: 1.3rem;
  }

  .single-post-sec h5 {
    font-size: 1.1rem;
  }

  .single-post-sec h6 {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .single-post-sec h1 {
    font-size: 1.8rem;
  }

  .single-post-sec h2 {
    font-size: 1.6rem;
  }

  .single-post-sec h3 {
    font-size: 1.4rem;
  }

  .single-post-sec h4 {
    font-size: 1.2rem;
  }

  .single-post-sec h5 {
    font-size: 1rem;
  }

  .single-post-sec h6 {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .single-post-sec h1 {
    font-size: 1.6rem;
  }

  .single-post-sec h2 {
    font-size: 1.4rem;
  }

  .single-post-sec h3 {
    font-size: 1.2rem;
  }

  .single-post-sec h4 {
    font-size: 1.1rem;
  }

  .single-post-sec h5 {
    font-size: 0.95rem;
  }

  .single-post-sec h6 {
    font-size: 0.8rem;
  }
}

.single-post-sec ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.single-post-sec ul li {
  list-style-type: disc;
  margin-bottom: 8px;
}

.single-post-sec ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.single-post-sec ol li {
  list-style-type: decimal;
  margin-bottom: 8px;
}

@media (max-width: 768px) {

  .single-post-sec ul,
  .single-post-sec ol {
    padding-left: 15px;
  }

  .single-post-sec ul li,
  .single-post-sec ol li {
    margin-bottom: 6px;
  }
}

@media (max-width: 576px) {

  .single-post-sec ul,
  .single-post-sec ol {
    padding-left: 12px;
  }

  .single-post-sec ul li,
  .single-post-sec ol li {
    margin-bottom: 5px;
  }
}



.po-dialog {
  max-width: 700px;
}

.po-content .modal-header {
  padding: 0;
  border: unset;
  position: relative;
}

.po-body {
  padding: 0;
}

.po-content .modal-header .btn-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--c1);
  opacity: 1;
  border-radius: 50px;
  padding: 12px;
  cursor: pointer;
}

.po-body .row {
  margin: 0;
}

.po-body .row>* {
  padding: 0;
}

.po-inner {
  padding: 98px 30px 56px;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.po-inner h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 5px;
}

.po-inner h3 {
    font-size: 20px;
    background-color: var(--c1);
    display: inline-block;
    padding: 9px 10px;
    border-radius: 12px;
    color: #fff;
    font-weight: bolder;
    margin-bottom: 5px;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
}

.po-inner .content-3 {
    font-size: 23px;
    line-height: 1;
    margin-bottom: 30px;
}

.po-inner .content-3 span {
    font-size: 30px;
    display: inline-block;
    color: var(--c1);
    font-weight: bolder;
}

.po-inner span {
    display: block;
}

.po-inner .content-4 {
    font-size: 20px;
    max-width: 160px;
    font-weight: bolder;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.po-inner .content-5 {
    font-size: 30px;
    font-weight: bolder;
    color: var(--c1);
    line-height: 1;
}

.po-inner .content-6 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bolder;
}

.po-inner .content-7 {
    font-size: 23px;
    background-color: var(--c1);
    color: #fff;
    width: auto;
    width: 230px;
    margin-left: auto;
    margin-right: auto;
    padding: 2px 0;
    font-weight: bold;
    box-shadow: rgb(232 96 36 / 20%) 0px 8px 6px;
    /* border-radius: 12px; */
}

.po-inner .image-1 img, .po-inner .image-2 img {
    width: auto;
}

.po-inner .image-1, .po-inner .image-2 {
    width: max-content;
    position: absolute;
}

.po-inner .image-1 {
    bottom: -70px;
    left: -10px;
}

.po-inner .image-2 {
    top: -50px;
    right: -40px;
}

.po-content {
  background-size: cover;
  background-position: bottom right;
}

.po-inner .stock-image img {
    width: auto;
}

.po-inner .stock-image {
    width: max-content;
    position: absolute;
    right: 25px;
    top: calc(50% - 40px);
}

.single-post .footer {
    margin-top: 0;
}


/* Style the Table of Contents container */
.table-of-content {
    background-color: #F5F5F5;
    border-radius: 8px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    margin-bottom: 30px;
    /* max-width: 300px; */
    position: sticky;
    top: 20px;
    padding: 15px 15px;
}

/* Style the title of the Table of Contents */
.table-of-content h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

/* Style the list of contents */
#toc {
    list-style: none;
    margin-bottom: 0;
}

#toc li {
    /* margin: 10px 0; */
    list-style: num;
}

#toc li a {
    text-decoration: none;
    /* color: #0073e6; */
    font-size: 16px;
    transition: color 0.3s ease;
    display: block;
    padding: 6px 10px;
    border-radius: 4px;
}

#toc li a:hover {
    color: var(--c3);
    /* background-color: var(--c3); */
}

/* Highlight active link */
#toc li a.active {
    color: #fff;
    background-color: #0073e6;
    font-weight: bold;
}
section.faqs:has(.accordion-item) {
    display: block;
}

section.faqs {
    display: none
}

.responsive-links {
    height: calc(100vh - 127px);
    overflow: auto;
}
.page-id-1068 .footer {
    margin-top: 0px;
}
.page-id-1068 .footer .footer-main, .single-post .footer .footer-main {
    padding: 100px 0px 70px 0px;
}

.page-id-424 .footer {
    margin-top: 0;
}

.page-id-424 .acceridiation.spacing {padding-bottom: 100px !important;}

.single-post-sec .accordion-header {
    margin: 0;
}

.single-post-sec .faq-title {
    margin-bottom: 15px;
    margin-top: 50px;
}