@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: #373a3f; /* Black */
  --c2: #fff; /* White */
  --c3: #005bd2; /* 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(--c3);
  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(--c1);
  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(--c2);
  left: 18px;
  transition: all 0.7s;
}

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

.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);
}
.bg-shape-title span:before {
  position: absolute;
  content: "";
  top: 50%;
  left: -5%;
  width: 110%;
  background-color: var(--c3);
  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 */

.sub-header {
  background-color: var(--c1);
  padding: 10px 0px;
}

.sub-header-info ul {
  display: flex;
  gap: 20px;
}

.sub-header-info ul li,
.sub-header-info ul li a {
  color: var(--c2);
  font-size: 14px;
  transition: all 0.5s;
}

.sub-header-info ul li i {
  color: var(--c3);
  margin-right: 6px;
}

.sub-header-social ul {
  display: flex;
  justify-content: end;
  gap: 20px;
}

.sub-header-social ul li a {
  color: var(--c2);
  transition: all 0.5s;
}

.sub-header-social ul li a:hover {
  color: var(--c3);
}

.sub-header-info ul li a:hover {
  color: var(--c2);
}

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

.header {
  /* padding: 20px 0px; */
  box-shadow: 0px 5.77px 86.5px 0px rgba(0, 0, 0, 0.08);
}
.head-numb a i {
  margin-right: 10px;
}
.nav-bar nav ul {
  display: flex;
  gap: 35px;
  justify-content: center;
}

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

.head-numb a {
  color: var(--c3);
  font-weight: 500;
  transition: all 0.5s;
}

.nav-bar nav ul li a {
  font-weight: 500;
  color: var(--c1);
  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(--c1);
  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(--c1);
}

.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;
}

.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;
}
.banner-content-main span:before {
  height: 120%;
  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: 60px;
}
.banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
}

.banner-video video {
  height: 80dvh;
  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: #00000075;
  z-index: 2;
  width: 100%;
  height: 100%;
}

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

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

/* SECTION ABOUT US */

.about-img.one {
  margin-bottom: 24px;
}

.about-content h2 {
  margin-bottom: 20px;
}
.about-content p {
  color: var(--c1);
  margin-bottom: 15px;
}
.about-content {
  padding-left: 20px;
}
.about-img img {
  object-fit: cover;
  transition: all 0.5s;
}
.about-img img:hover {
  transform: scale(1.1);
}

.about-img {
  overflow: hidden;
  border-radius: 15px;
}
.about-img.three img {
  height: 300px;
}
.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-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;
}

/* SECTION SAFER TOMORROW */

.safer-tomorrow {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.safer-btn {
  text-align: center;
  margin-top: 20px;
}
.safer-img-main {
  display: flex;
  gap: 50px;
  justify-content: end;
}
.safer-tomorrow::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #252525e8;
  z-index: -1;
}
.safer-img {
  width: 370px;
}
.safer-content h4 {
  color: var(--c2);
  /* text-transform: uppercase; */
  /* font-size: 20px; */
  /* font-weight: 600; */
  /* margin-bottom: 15px; */
}
.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;
}

.testi-title {
  padding-right: 250px;
}

.testi-item p {
  font-size: 22px;
  font-weight: 400;
  color: var(--c4);
  margin-bottom: 10px;
}

.testi-item span {
  font-size: 20px;
  font-weight: 400;
  color: rgba(167, 167, 167, 1);
}

.myTesti .swiper-pagination {
  position: unset;
  text-align: left;
  margin-top: 40px;
  display: flex;
  gap: 10px;
}
.testi-item ul {
  display: flex;
  color: var(--c3);
}
.myTesti .swiper-pagination span {
  width: 10px;
  height: 10px;
  border-radius: 0px;
  background-color: var(--c1);
  opacity: unset;
}

.myTesti .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: var(--c3);
}

.testi-title h2::before {
  transform: unset;
  left: 0;
}

/* FAQ's */

.audience-faqs .accordion-item {
  border: 0;
  margin-bottom: 40px;
}
.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: 22px;
  font-weight: 600;
  color: var(--c4);
  padding: 0px;
  box-shadow: unset;
  background: unset;
}
.audience-img img {
  transition: all 0.5s;
  height: 600px;
  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: 17px;
  font-weight: 400;
  color: rgba(167, 167, 167, 1);
  line-height: 1.8;
}

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

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

.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-main {
  display: flex;
  align-items: center;
  border: 1px solid var(--c3);
  border-radius: 15px;
  gap: 15px;
  padding: 20px;
}
.news-content {
  flex: 0 0 80%;
}
.news-title {
  margin-bottom: 40px;
}
.news-content a {
  display: block !important;
}
.load-more-btn {
  text-align: center;
  margin-top: 30px;
}
.news-image {
  border-radius: 15px;
  overflow: hidden;
  flex: 0 0 20%;
}
.news-image img {
  transition: all 0.5s;
  height: 140px;
  object-fit: cover;
}
.news-box:hover .news-image img {
  transform: scale(1.1);
}
.news-content h2 {
  font-size: 24px !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-content h4:before {
  display: none;
}
.news-content p {
  color: #ababb2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-content h4 {
  font-size: 14px;
}

/* 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 */

.who-we-are-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.who-we-are-content p {
  padding: 20px 0px;
}
.who-we-are-content ul li {
  background-color: var(--c3);
  color: var(--c2);
  padding: 10px 20px;
  border-radius: 6px;
  width: max-content;
}
.who-we-are-image img {
  height: 550px;
  object-fit: cover;
  border-radius: 15px;
}
.who-we-are-content ul li i {
  background: var(--c2);
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  color: var(--c4);
  font-size: 14px;
  margin-right: 10px;
}

/* 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: var(--c1);
}

.expert-img img {
  width: 320px;
  height: 280px;
  margin: 0 auto;
  object-fit: contain;
}

.expert-img {
  padding: 60px 0px;
}
.page-template-services .simp-serv-item {
  margin: 0px 0px;
}

.expert-content {
  background-color: #f9f9f9;
  padding: 0px 160px;
  text-align: center;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.expert-content p {
  margin: 20px 0px 35px 0px;
}

.expert-content a {
  color: rgb(117 117 117);
  position: relative;
  transition: all 0.5s;
  text-decoration: underline;
  width: max-content;
  margin: 0 auto;
}

.expert-content a:hover {
  color: var(--c1);
}

.expert-content a::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--c1);
  border-radius: 50%;
  left: -18px;
}

.expert-content h4 {
  font-weight: 600;
}

.our-expertise .row:nth-child(2) .col-lg-4:nth-child(2) .expert-item {
  display: flex;
  flex-direction: column-reverse;
}

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

.expertise-title img {
  /* position: absolute; */
  /* left: -20px; */
  /* width: 200px; */
  /* top: 50%; */
  /* transform: translateY(-50%); */
}

.simp-serv-item {
  border: 1px solid var(--c3);
  padding: 30px 30px;
  border-radius: 10px;
  transition: all 0.5s;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 380px;
  margin: 0px 10px;
}

.simp-serv-item img {
  height: 70px;
  object-fit: contain;
  width: max-content;
  transition: all 0.5s;
}

.simp-serv-item h3 {
  color: var(--c3);
  margin: 20px 0px 15px 0px;
  font-size: 22px;
  font-weight: 600;
}

.simp-serv-item h3,
.simp-serv-item p,
.simp-serv-item a,
.simp-serv-item a::before {
  transition: all 0.5s;
}

.simp-serv-btn {
  margin-top: 40px;
}

.simp-serv-item:hover {
  border-color: var(--c1);
}

.simp-serv-item:hover h3,
.simp-serv-item:hover p,
.simp-serv-item:hover a {
  color: var(--c2);
}

.simp-serv-item:hover a::before {
  background-color: var(--c2);
}

.simp-serv-item a {
  position: absolute;
  color: var(--c3);
  margin-top: 20px;
  text-transform: uppercase;
  padding-left: 20px;
  bottom: 40px;
}

.simp-serv-item a::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--c1);
  border-radius: 50%;
  left: 0;
}

.simp-serv-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  transform: scale(0);
  width: 100%;
  height: 100%;
  background-color: var(--c1);
  border-radius: 50%;
  transition: all 0.5s;
  z-index: -1;
}
.expertise-title p {
}
.simp-serv-item:hover::before {
  transform: scale(1);
  border-radius: 0px;
}

.simp-serv-item:hover img {
  filter: invert(100);
}

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

.service-slider .slick-arrow {
  position: absolute;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c3);
  border-radius: 50%;
  color: var(--c2);
  transition: all 0.5s;
  cursor: pointer;
  top: -100px;
}

.service-slider .slick-next {
  right: 0;
}
.service-title-image {
  width: 13%;
  margin: 0 auto;
  position: absolute;
  top: -150px;
}
.service-slider .slick-prev {
  right: 80px;
}

/* Service Single Page */

.single-content-img img {
  height: 500px;
  object-fit: cover;
}
.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;
  object-position: bottom;
}

.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;
}

.single-inner-img img {
  object-fit: cover;
  transition: all 0.5s;
}

.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;
}
.gallery-items-main {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 13px;
}
.gallery-item.item2 {
  grid-column: 1/5;
}
.gallery-item img {
}
.gallery-item.item1 img {
  height: 450px;
  object-fit: cover;
  object-position: top;
}
.gallery-item.item4 img,
.gallery-item.item3 img,
.gallery-item.item2 img {
  height: 500px;
  object-fit: cover;
}

.gallery-item.item5 img,
.gallery-item.item6 img {
  height: 450px;
  object-fit: cover;
}
.gallery-item.item5 {
  grid-column: 1/7;
}
.gallery-item.item6 {
  grid-column: 7/13;
}
.gallery-item.item1 {
  grid-column: 1/13;
}
.gallery-item.item3 {
  grid-column: 5/9;
}
.gallery-item.item4 {
  grid-column: 9/13;
}
.gallery-title {
  margin-bottom: 50px;
}
.gallery-item {
  overflow: hidden;
}
.gallery-item img {
  transition: all 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item a {
  height: 100%;
  display: block !important;
}

/* Contact Us */

.contact-form-main {
  padding: 60px;
}

.contact-us-content h2,
.contact-us-content p {
}

.contact-us-content {
  text-align: center;
  margin: 0px 120px;
}

.contact-us-content p {
  padding: 20px 0px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  outline: 0;
  border-radius: 0.33rem;
  box-shadow: 0px 3px 16px #04373c33;
  border: 0;
  padding: 20px 30px;
  transition: all 0.5s;
}

.form-field {
  margin-bottom: 20px;
}

.submit-btn input {
  width: 100%;
  border: 0;
  padding: 30px 0px;
  background: var(--c3);
  color: var(--c2);
  border-radius: 0.33rem;
  box-shadow: 0px 3px 16px #04373c33;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.5s;
}

.submit-btn input:hover {
  background: var(--c2);
  color: var(--c1);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  box-shadow: 0px 3px 2px var(--c3);
}
.bg-prop {
  background-size: cover;
  background-position: center;
}
.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;
}
.contact-us .container-fluid {
  max-width: unset;
}

/* 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: 400px;
  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 h2 {
  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: 200px;
}

.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);
}
