@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body {
  font-family: "Lexend Deca", serif;
}

a {
  text-decoration: none !important;
  display: inline-block !important;
}
img {
  width: 100%;
  display: block;
}
ul {
  padding: 0;
  margin: 0;
}
p {
  color: var(--c4);
  padding: 0;
  margin: 0;
  line-height: 30px;
}

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

/* Colors Root */

:root {
  --c1: #010101; /* Black */
  --c2: #fff; /* White */
  --c3: #e21c21; /* Red */
  --c4: #222021; /* Background Color */
}

/* Web Selection */

::selection {
  background: var(--c3);
  color: var(--c2);
}

/* Loader */

/* loader-css */

div#preloader {
  position: fixed;
  z-index: 999999999;
  background: var(--c2);
  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;
}

/* Spacing */

.spacing {
  padding: 100px 0px;
}

/* Container Fluid */

.container-fluid {
  max-width: 1700px;
}

/* Wrapper */

.wrapper {
  overflow: hidden;
}

/* WEB BUTTON TWO */

.web-btn a {
  border: 1px solid rgb(128 128 128 / 32%);
  padding: 12px 15px 12px 65px;
  position: relative;
  border-radius: 5px;
  color: var(--c2);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.7s;
  z-index: 1;
}

.web-btn a::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 85%;
  content: "";
  background-color: var(--c2);
  border-radius: 5px;
  left: 4px;
  transition: all 0.7s;
  z-index: -1;
}

.web-btn a i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c3);
  left: 18px;
  transition: all 0.7s;
}

.web-btn a:hover {
  padding: 12px 65px 12px 15px;
  color: var(--c3);
}

.web-btn a:hover::before {
  width: 95.5%;
}

.web-btn a:hover i {
  left: 82%;
}

/* Main Title */

.main-title h4 {
  color: var(--c4);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 10px;
}

.main-title h2 {
  color: var(--c4);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
}

/* Bg Shape Title */

.bg-shape-title span {
  display: inline-block;
  position: relative;
  z-index: 2;
  color: var(--c2);
  padding: 0px 10px;
}
.bg-shape-title span:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  background-color: #2061b7;
  z-index: -1;
  /* transform: rotate(-3deg) translateY(-50%); */
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.25);
  /* border-radius: 6px; */
  height: 100%;
}

/* WEB BTN */

.main-btn a {
  font-weight: 600;
  background-color: var(--c3);
  padding: 15px 30px;
  border-radius: 6px;
  box-shadow: 2px 3px 8px 0px rgba(0, 0, 0, 0.13);
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: var(
  --c2);
  font-size: 18px;
}

.main-btn a::before {
  width: 0%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  background-color: var(--c1);
  transition: all 0.7s;
  z-index: -1;
}

.main-btn a:hover::before {
  width: 100%;
  left: 0;
  right: unset;
}

.main-btn a:hover {
  /* color: var(--c2); */
}

/* Responsive Menu */

.responsive-btn a {
  padding: 10px 26px;
}
.responsive-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--c2);
  z-index: 9999;
  transition: all 0.5s;
}
.responsive-links ul li ul {
  display: none;
}
.responsive-links ul li i {
  transition: transform 0.3s ease;
}

.responsive-menu.active {
  left: 0;
}
.responsive-links ul li ul li {
  list-style: disc;
  color: var(--c3);
}
.responsive-menu-main {
  height: 100%;
  padding: 50px;
  position: relative;
}
.responsive-logo {
  width: 100%;
  margin-bottom: 30px;
}
.responsive-links ul li a {
  color: var(--c4);
  padding: 10px 0px;
  display: block !important;
  font-weight: 600;
}
.responsive-links ul li {
  border-bottom: 1px solid #8080803d;
  position: relative;
}
.resp-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--c3);
  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(--c2);
  font-size: 18px;
}
.responsive-links ul li i {
  position: absolute;
  right: 0;
  top: 13px;
  color: var(--c3);
}
.responsive-links ul li ul {
  padding-left: 30px;
  border-top: 1px solid #8080803d;
}
.responsive-links ul li i.active::before {
  content: "\f068";
}

/* HEADER */

.head-logo a {
  display: block !important;
  width: 140px;
}

.header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 9;
  padding-top: 10px;
}

.nav-bar nav ul {
  display: flex;
  gap: 35px;
  justify-content: center;
}

.head-btns {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: end;
}


.nav-bar nav ul li a {
  font-weight: 500;
  color: var(--c2);
  transition: all 0.5s;
  position: relative;
  padding: 30px 0px;
}

.nav-bar nav ul li a::before {
  position: absolute;
  content: "";
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--c3);
  border-radius: 50%;
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
}

.nav-bar nav ul li a:hover::before {
  visibility: visible;
  opacity: 1;
}

.nav-bar nav ul li a:hover {
  color: var(--c3);
}

.head-numb a img {
  width: 30px;
}

.head-numb a:hover {
  color: var(--c1);
}

.nav-bar nav ul li ul {
  position: absolute;
  flex-direction: column;
  gap: 0px;
  background-color: var(--c2);
  z-index: 99;
  width: 280px;
  transform: scaleY(0);
  transition: all 0.5s;
  transform-origin: top;
  left: -20px;
  top: 100%;
}

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

.nav-bar nav ul li ul li a {
  display: block !important;
  padding: 10px 20px;
  color: var(--c1);
}

.nav-bar nav ul li ul li a::before {
  display: none;
}

.nav-bar nav ul li ul li a:hover {
  background-color: var(--c3);
  color: var(--c2);
}

.nav-bar nav ul li:hover ul {
  transform: scaleY(1);
}

/* Banner */

.main-home {
  position: relative;
}
.bbb-btn {
	margin-top: 10px;
}
.banner-content-main span:before {
  height: 100%;
  /* border-radius: 20px; */
}
.rounded-mark {
  /* position: absolute; */
  /* bottom: 30px; */
  /* left: 360px; */
}

.rounded-mark-inner {
  /* position: relative; */
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.video-icon {
  /* position: absolute; */
  /* left: 50%; */
  /* top: 50%; */
  /* z-index: 9; */
  /* transform: translate(-50%, -50%); */
}

.video-icon a {
  /* width: 230px; */
  /* height: 230px; */
  /* display: flex !important; */
  /* align-items: center; */
  /* justify-content: center; */
  /* color: var(--c3); */
  /* font-size: 60px; */
}

.rounded-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.rounded-text .rotate {
  width: 170px;
  animation: rotation 20s infinite linear;
}
.banner-content-main p:last-of-type {
  margin-top: 10px;
  font-weight: bold;
  font-size: 20px;
}
.banner {
  position: relative;
}
.banner-btn {
  margin-top: 30px;
}
.banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
}

.banner-video video {
  height: 100dvh;
  object-fit: cover;
  width: 100%;
  display: block;
}

.banner-content-main h1 {
  text-transform: capitalize;
  color: var(--c2);
  font-size: 70px;
  line-height: 100px;
  font-weight: 900;
  margin-bottom: 20px;
}

.banner-content-main p {
  color: var(--c2);
}

.banner:before {
  position: absolute;
  content: "";
  background: #000000;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.banner-content-main {
  position: relative;
  z-index: 99;
}

.banner-btn a {
  /* border-color: 2px solid var(--c2); */
  /* color: var(--c2); */
}

/* SECTION ABOUT US */

.about-us-images {
    position: relative;
    padding-right: 30px;
}

.about-us-images .image-two {
    position: absolute;
    bottom: -2px;
    right: -18px;
    width: 380px;
    border: 6px solid var(--c2);
}
.image-one img {
    height: 650px;
    object-fit: cover;
}

.image-two img {
    height: 200px;
    object-fit: cover;
}
.about-us-images::before {
    content: "";
    background: var(--c4);
    position: absolute;
    right: 0px;
    top: 30px;
    width: 10px;
    height: 250px;
}
.about-content h2 {
  margin-bottom: 20px;
}
.about-content p {
  color: var(--c1);
  margin-bottom: 15px;
}
.about-content {
  padding-left: 20px;
}

.about-us {
  position: relative;
}
.about-top-img {
  position: absolute;
  top: -40px;
  right: 0;
  width: 30%;
  opacity: 0.6;
  z-index: -1;
}
.about-cent-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20%;
  z-index: -1;
}

/* About Us Page */

.about-us-image {
  position: relative;
  border: 1px solid var(--c3);
  padding: 20px;
}

.about-us-image:before {
  position: absolute;
  content: "";
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 85%;
  background-color: var(--c3);
  z-index: -1;
}
.about-us-title p {
  margin-top: 15px;
}

.about-us-image img {
  height: 550px;
  object-fit: cover;
}

.about-us-title {
  padding-left: 20px;
}

/* Error 404 */

.error {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
}
.error404 .inner-header {
  display: none;
}
.error-content h2 {
  color: var(--c2);
}
.error:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000000c2;
}
.error-content {
  position: relative;
}
.error-content p {
  color: var(--c2);
  margin: 0px 0px 30px 0px;
}

/* Mission */

.mission-content-image {
  overflow: hidden;
  border-radius: 15px;
}

.mission-content-image img {
  transition: all 0.5s;
}
.mission-content ul li {
    margin-bottom: 10px;
}
.mission-content-image img:hover {
  transform: scale(1.1);
}

.mission-content h2 {
  margin-bottom: 15px;
}

.mission-content ul li {
  list-style: disc;
}

.mission-content ul {
  padding-left: 20px;
  margin: 20px 0px;
}

/* SECTION SAFER TOMORROW */

.safer-tomorrow {
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
}
.safer-btn {
  text-align: center;
  margin-top: 20px;
}

.safer-tomorrow::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--c3), #0f64b3);
  z-index: -1;
  opacity: 0.9;
}
.safer-content {
    text-align: center;
}
.safer-content h4 {
  color: var(--c2);
}
.safer-content h2 {
  color: var(--c2);
  margin-bottom: 40px;
}

/* SECTION TESTIMONIAL */

.testimonial {
  background-color: var(--bg);
}

.testi-title h2,
.project-title h2 {
  color: var(--c5);
  position: relative;
  padding-bottom: 25px;
}
.testimonial-slider .slick-pre, .slick-nex {
    position: absolute;
    top: -70px;
    transform: none;
    background: transparent;
    border: 1px solid var(--c2);
    color: var(--c3);
    font-size: 40px;
    width: 36px;
    height: 36px;
    border-radius: 16px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s 
ease;
}

.testimonial-slider .slick-pre:hover, .slick-nex:hover {   
  color: var(--c4);        
	transform:scale(1.1);
}

.testimonial-slider .slick-pre {
  right: 50px; 
}

.testimonial-slider .slick-nex {
  right: 2px;
}

/* OUR COUSTUMER */

.testi-title.main-title {
    padding: 10px 0px;
}

.testimonial-slider .slick-track {
    padding: 50px 0px 0px 0px;
}


.testi-items {
    border: 1px solid #00000073;
    padding: 20px 24px;
    margin: 0px 12px;
    border-radius: 12px;
    box-shadow: 5px 10px 8px #33333324;
    position: relative;
    background: #fff;
    transition: all 0.4s ease-in-out;
}

.reviwes {
    color: #ff9f24;
    padding-bottom: 5px;
}
.testi-items > p {
    font-style: italic;
    color: #333;
}
.testi-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}
.testi-user-info strong {
    font-size: 23px;
    color: var(--c1);
}
.testi-items::before {
    content: '';
    position: absolute;
    background: var(--c3);
    width: 200px;
    height: 150px;
    left: -13px;
    top: -13px;
    /* z-index: -1; */
    border-radius: 10px;
    z-index: -1;
}
/* FAQ's */

.audience-faqs .accordion-item {
  border: 0;
  margin-bottom: 10px;
  background: #0f64b3;
  padding: 20px;
  border-radius: 8px;
}
.audience-faqs .accordion-button span {
  margin-right: 10px;
  display: inline-block;
}
.page-template-about-us .faq-title,
.page-template-about-us .audience-faqs {
  padding-left: 20px;
}
.audience-faqs .accordion-button {
  font-size: 18px;
  font-weight: 600;
  color: var(--c2);
  padding: 0px;
  box-shadow: unset;
  background: unset;
}
.audience-img img {
  transition: all 0.5s;
  height: 700px;
  object-fit: cover;
}

.audience-img img:hover {
  transform: scale(1.1);
}

.audience-img {
  overflow: hidden;
  border-radius: 15px;
}
.audience-faqs .accordion-button::after {
  background-image: unset;
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  transform: unset;
}

.audience-faqs .accordion-button:not(.collapsed)::after {
  content: "\f068";
}

.audience-faqs .accordion-body {
  padding: 20px 0px 0px 0px;
  font-size: 15px;
  font-weight: 400;
  color: var(--c2);
  line-height: 1.8;
}

.audience-faqs {
  margin-top: 40px;
}

.audience-faqs .accordion-button:not(.collapsed) {
  color: var(--c2);
}

.audience-title > h2 {
  font-size: 44px;
}

.audience-title {
  padding-right: 150px;
}

.audience-faqs .accordion-item:last-child {
  margin-bottom: 0px;
}

.audience {
  position: relative;
}

/* News & Article */

.news-title {
    margin-bottom: 40px;
}
.load-more-btn {
  text-align: center;
  margin-top: 30px;
}

.blogs-item{
    height: 450px;
    border-radius: 15px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
    overflow:hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}
.blog-single-wrap h2 {
    font-weight: 800;
    margin: 20px 0px;
}

.blogs-item a {
    color: var(--c2);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.blogs-item:hover {
	box-shadow: 10px 10px 10px #000000aa;
	transform: translate(-10px, -10px);
}

.blogs-item::before {
   content:'';
   position:absolute;
   width:100%;
   height:100%;
   left:0;
   top:0;
   background: linear-gradient(
  to bottom,
  rgba(0, 0, 0, 0) 0%,
  rgba(0, 0, 0, 0.3) 40%,
  rgba(0, 0, 0, 0.6) 70%,
  rgba(0, 0, 0, 1) 100%
);
   z-index: -1;
}
.blogs-item p {
    color: var(--c2);
    font-size: 21px;
    padding-bottom: 10px;
	position:relative;
	z-index:2;
}

.blogs-item span {
    color: var(--c2);
    position:relative;
    z-index:2;
}

/* Blogs Single */

.recent-title h4 {
  position: relative;
  margin-bottom: 40px;
  color: var(--c1);
}
.recent-title h4:after {
  position: absolute;
  content: "";
  background: var(--c3);
  width: 135px;
  height: 4px;
  left: 0px;
  top: 34px;
}
.the-date {
  color: var(--c3);
}
.blog-single-wrap h4 {
  margin-top: 30px;
  color: var(--c3);
  margin-bottom: 10px;
}

.blog-user-info ul {
  display: flex;
  margin-top: 40px;
  gap: 40px;
  color: var(--c3);
}

.blog-user-info ul li i {
  margin-right: 10px;
}
.recent-image img {
  width: 100px;
  height: 80px;
  object-fit: cover;
}
.recent-main {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 10px 0;
  color: var(--c2);
}
.recent-content a {
  color: var(--c1);
  font-weight: 600;
  transition: all 0.5s;
}
.recent-content a:hover {
  color: var(--c3);
}
.blog-single-image img {
  transition: all 0.5s;
}
.blog-single-image {
  overflow: hidden;
  border-radius: 20px;
}
.blog-single-image img:hover {
  transform: scale(1.1);
}

/* Who We Are */

/* Why Choose us 04 */

.why-choose-us {
}
.choose-us-left .main-title-prim {
  text-align: start;
}
.choose-us-left .main-title-prim h4::before {
    display: none !important;
}
.choose-us-content-box:hover {
    background: var(--c2);
    box-shadow: 10px 10px 0px 0px #000;
}
.choose-us-image img {object-fit: cover;height: 500px;}

.choose-us-points-main {
    border-left: 5px solid var(--c6);
    border-bottom: 5px solid var(--c6);
    margin: 0px 0px 35px 40px;
    padding: 0px 0px 10px 36px;
}

.choose-us-content-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
    transition: all .5s;
}

.choose-us-box-icon {
    height: 56px;
    width: 56px;
    background: vaR(--c3);
    padding: 8px;
}

.choose-us-box-text strong {
    font-size: 21px;
    font-weight: 400;
}
.choose-us-shape {
    position: absolute;
    top: 60px;
    right: -40px;
    width: 120px;
    z-index: 99;
}
.choose-us-left {
    position: relative;
}

.choose-us-image {
    position: relative;
    z-index: 2;
}

.choose-us-left .main-title-prim h2 {
    /* font-size: 68px; */
    padding-bottom: 30px;
}
.choose-us-tag {
    background-size: cover;
    padding: 0px 100px;
    background-repeat: no-repeat;
    background-position: right;
    transform: translateX(-50px);
}

.choose-us-tag sapn {
    font-family: vaR(--f1);
    display: inline-block;
}

.choose-us-tag span {
    color: var(--c3);
    font-size: 44px;
    font-weight: 800;
}


/* SECTION OUR EXPERTISE */

.expertise-title p {
  position: relative;
  padding-bottom: 20px;
}
.expertise-title p::before,
.testi-title h2::before,
.project-title h2::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: #2061b7;
}

.expertise-title {
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}


.our-expertise {
  position: relative;
  margin-bottom: 100px;
}

/* Services */

.service-image {
  position: relative;
}
.service-content p {
    color: var(--c2);
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.service-image a {
	display: block !important;
	position: relative;
	z-index: 2;
}
.service-image:before {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(63, 17, 17, 0) 0%,
    var(--c3) 100%
  );
  content:
  "";
  /* visibility: hidden; */
  /* opacity: 0; */
  z-index: 2;
}

.service-content {
  position: absolute;
  width: 100%;
  z-index: 2;
  bottom: 0;
  padding: 33px;
  /* visibility: hidden; */
  /* opacity: 0; */
  transition: all 0.5s;
}
.services-main {
  position: relative;
}

.service-image img {
  height: 450px;
  object-fit: cover;
}

.services-title {
  margin-bottom: 40px;
  text-align: center;
}
.service-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--c2);
  transition: all 0.3s;
}
.service-content h3:hover {
  color: var(--c4);
}
.service-content i {
  margin-left: 6px;
  font-weight: 400;
  transition: all 0.3s;
}
.service-content h3:hover i {
  padding-left: 6px;
}



/* Service Single Page */

.single-content-img img {
  height: 500px;
  object-fit: cover;
}
.blog-single-wrap p {
    margin: 20px 0px;
}

.blog-single-wrap h2 {
    color: var(--c3);
}
.postid-113 .single-content-img img {
  object-position: top;
}
.single-content-img {
  margin-bottom: 30px;
}

.single-content-main h2 {
  margin-bottom: 15px;
  color: var(--c3);
  font-size: 30px;
  font-weight: 700;
}

.single-content-main p {
  margin-bottom: 15px;
}

.single-content-main h3 {
  font-size: 22px;
  color: var(--c2);
  margin-bottom: 15px;
  font-weight: 600;
}

.single-content-img img {
  transition: all 0.5s;
}

.single-inner-img:hover img,
.single-content-img:hover img {
  transform: scale(1.1);
}

.single-content-img {
  overflow: hidden;
  border-radius: 8px;
}

.side-links-main h2 {
  margin-bottom: 20px;
}

.single-inner-img {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 10px 10px 10px -4px var(--c3);
  padding: 10px;
}
.content-service h1 {
    margin-bottom: 15px;
    color: var(--c3);
    font-size: 30px;
    font-weight: 700;
}
.single-inner-img img {
  object-fit: cover;
  transition: all 0.5s;
  height: 800px;
}

.single-inner-img,
.single-inner-list {
  margin-top: 50px;
}

.single-inner-list ul li {
  color: var(--c1);
  margin-bottom: 15px;
  position: relative;
  padding-left: 26px;
  font-weight: 600;
}

.single-inner-list ul li:before {
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 13px;
  color: var(--c3);
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
}

/* Portfolio */

.portfolio-title {
  margin-bottom: 40px;
}

.work-image a {
    display: block !important;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.work-image-content span {
    color: var(--c2);
}
.work-image img {
    height: 360px;
    object-fit: cover;
    width: 100%;
}

.tab-content {
    margin-top: 40px;
}

.work-image a:before,
.work-image a:after {
  content: "";
  position: absolute;
  width: 0%;
  height: 0%;
  background: linear-gradient(45deg, var(--c3), #0f64b3);
  opacity: 0;
  z-index: 1;
  transition: all 0.8s cubic-bezier(1, -0.09, 0.86, 0.93);
}
.work-image a:before {
  top: 0;
  left: 0;
}
.work-image a:after {
  bottom: 0;
  right: 0;
}
.work-image:hover a:before,
.work-image:hover a:after {
  width: 100%;
  height: 100%;
  transition: all 0.8s ease;
}
.work-image:hover a:before {
  opacity: 0.5;
}
.work-image:hover a:after {
  opacity: 0.9;
}
.work-image-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: vaR(--c1);
    opacity: 0;
    z-index: 5;
    transition: all 0.3s ease-in-out 0.2s;
}

.work-image-content h4 {
    font-size: 32px;
    font-weight: 800;
    color: var(--c2);
}

.work-image:hover .work-image-content {
    opacity: 1;
}

.form-left {
    background: vaR(--c2);
    border: 1px solid #00000024;
    padding: 50px 30px 20px;
    box-shadow: 0px 0px 14px #00000029;
}

.form-field span {
    width: 100%;
}

.form-field input , .form-field select {
    width: 100%;
    padding: 8px 19px;
    outline: none;
    border: 1px solid #00000080;
    color: #444;
    background: #FCF8FA;
}

.form-field {
    width: 100%;
    margin-bottom: 14px;
}

.form-left h2 {
    text-align: center;
    padding-bottom: 10px;
}

.form-field textarea {
    width: 100%;
    height: 140px;
    padding: 10px;
    background: #FCF8FA;
}
.contact-us .wpcf7-response-output {
  color: var(--c3);
}
.contact-us .wpcf7-not-valid-tip {
  color: #3aafd6a8;
}
.contact-us .wpcf7 form.invalid .wpcf7-response-output {
  border-color: var(--c3);
}
.contact-us .wpcf7 form .wpcf7-response-output {
  margin: 0;
}
.form-image {
    position: relative;
}

.contact-location {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 20px;
}

.contact-location-icon {
    width: 42px;
    height: 42px;
    background: #0067af;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    font-size: 24px;
    color: vaR(--c2);
}

.contact-location-info strong {
    display: block;
    font-size: 14px;
}

.contact-location-info span {
    font-size: 15px;
    font-weight: 600;
}

.form-title {
    padding-bottom: 25px;
    text-align: start;
}
.form-title h4:before {
    display: none;
}


/* Reviews */

.customer-reviews {
  position: relative;
}
.client-about ul {
  display: flex;
  color: var(--c3);
}
.customer-reviews-title {
  margin-bottom: 40px;
}
.customer-say {
  padding: 0px 10px;
  height: 120px;
  overflow-y: scroll;
}
.customer-say::-webkit-scrollbar {
  width: 3px;
}
.customer-say::-webkit-scrollbar-track {
  background: var(--c2);
}
.customer-say::-webkit-scrollbar-thumb {
  background: var(--c3);
}
.customer-reviews-main {
  padding: 30px;
  border-radius: 20px;
  background: var(--c2);
  box-shadow: 0px 0px 15px 0px #fd0307;
  height: 260px;
}
.client-profile {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 15px;
}
.client-profile-icon img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50px;
}
.customer-reviews-main:hover {
  /* box-shadow: 0px 0px 10px 0px var(--c3); */
}
.customer-reviews .client-profile-icon img {
  width: 55px;
  height: 55px;
}
.customer-reviews .client-about h4 {
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 500;
}
.customer-reviews .client-about h5 {
  color: #bfbfbf;
  font-size: 15px;
  font-weight: 300;
}

/* Location */

.location-title {
  text-align: center;
  margin-bottom: 40px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  border-radius: 15px;
}

/* inner-wrapper */

.inner-header {
  height: 500px;
  background-position: center !important;
  background-attachment: fixed !important;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  background-size: cover !important;
}
.inner-header:before {
  width: 100%;
  height: 100%;
  content: "";
  background: rgb(0 0 0 / 60%);
  position: absolute;
  left: 0;
  top: 0;
}
.inner-header .container {
  position: relative;
}
.inner-header .inner-header-title h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
}

/* Footer */

.main-footer {
  background-color: var(--c4);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}
.bottom-footer .footer-links ul {
  display: flex;
  gap: 30px;
  justify-content: end;
}
.bottom-footer {
  padding: 0px 0px 15px 0px;
}
.foot-map iframe {
  width: 100%;
  display: block;
  height: 100%;
}
.footer-left-box {
  padding: 70px 50px;
}
.footer-contact ul li a {
  color: var(--c2);
  transition: all 0.5s;
}
.footer-contact ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 30px;
  margin: 30px 0px 10px 0px;
}
.foot-map p {
  height: 100%;
}
.footer-contact ul li:first-child {
  width: 100%;
  color: var(--c2);
}
.footer-contact ul li i {
  margin-right: 20px;
  color: var(--c2);
}
.foot-socials ul li a:hover {
  background: var(--c1);
}
.foot-map {
  height: 100%;
}
.foot-socials ul {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.footer-contact p {
  color: var(--c2);
}

.f-logo a {
  display: block !important;
}

.f-logo {
  width: 180px;
}

.f-logo img {
  background: var(--c2);
  border-radius: 10px;
  padding: 20px;
}
.foot-socials ul li a {
  font-size: 22px;
  color: var(--c3);
  transition: all 0.5s;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: var(--c2);
  border-radius: 50%;
  text-align: center;
}
.copyrights {
  text-align: end;
}
.made-by a {
  color: var(--c3);
}

.single-content-main h3 {
    color: var(--c3);
    font-size: 30px;
    font-weight: 800;
}

/* Progress  */

/* section-progress */

.progress-bg {
  background-color: var(--c3);
  border-radius: 5px;
  padding: 60px 0px;
  box-shadow: 11px 11px 38px var(--c3);
}

.progress-item h2 {
  color: var(--c2);
  font-size: 48px;
}

.progress-item {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

.progress-item p {
  color: var(--c2);
}

.progress-item:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #ffffff59;
}

.progress-item h2 span:before {
  position: absolute;
  content: "+";
  top: -28px;
  right: -35px;
}

.progress-item h2 span {
  position: relative;
}
section.progress-sec {
    padding-bottom: 100px;
}
.form-logo {
    position: absolute;
    top: 140px;
    width: 120px;
    padding: 20px 20px;
    background: #fff;
    border-radius: 10px;
    left: 300px;
    box-shadow: 0px 0px 10px #00000045;
}

.form-info-box {
    background: vaR(--c2);
    position: absolute;
    top: 0;
    left: 0;
    padding: 0px 18px;
    border-radius: 2px;
}

.form-image > img {
    height: 500px;
    object-fit: cover;
}

.contact-location-info a {
    color: var(--c1);
    font-weight: 500;
}
.why-us-content p {
    margin-top: 15px;
}
.submit-btn input {
    width: 100%;
    padding: 10px 0px;
    background: var(--c3);
    border: 0;
    color: var(--c2);
}
.progress-bg .row .col-lg-3:last-child .progress-item:after {
  background: unset;
}
.vision-vivid-content h2 , .vision-vivid-content h4 , .vision-vivid-content p {
    color: var(--c2);
}

.vision-vivid-content p {
    padding: 20px 0px;
}

.vision-vivid-content {
    text-align: center;
}
.vision-vivid {
}