@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

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

a {
  text-decoration: none !important;
  display: inline-block !important;
}

img {
  width: 100%;
  display: block;
}

ul {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Roboto", sans-serif;
}

p {
  color: var(--c1);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  font-family: var(--f1);
}

:root {
  --c1: #000;
  /* Black */
  --c2: #fff;
  /* White */
  --c3: #1B375D;
  /* Red */
  --c4: #F7931E;
  /* Background Color */
  --c5: #2E8A57;
  --f1: "Montserrat";
}

/* 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-repeat: no-repeat !important;
  background-size: cover !important;
}

.inner-header:before {
  width: 100%;
  height: 100%;
  content: "";
  background: rgb(0 0 0 / 82%);
  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;
}

/* end inner-wrapper */


/* MAIN HEADER  */
header.main-header {
  position: relative;
  z-index: 9999;
}

.header-top {
  background-color: var(--c3);
  padding: 15px 0px;
}

.welcome-text h3 {
  color: var(--c2);
  font-size: 14px;
  font-weight: 400;
}

.header-contact ul {
  display: flex;
  gap: 40px;
  justify-content: end;
  align-items: center;
}

.header-contact ul li a {
  color: var(--c2);
}

.header-contact ul li {
  color: var(--c2);
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.header-contact ul li i {
  margin-right: 14px;
  font-size: 18px;
}

.main-logo {
  width: 100% !important;
}

.main-menu ul {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: end;
}

.main-menu ul li a {
  color: var(--c1);
  font-size: 16px;
  font-weight: 400;
  position: relative;
}

.web-btn a {
  padding: 10px 25px;
}

.web-btn a,
.web-btn button,
.web-btn input {
  color: var(--c2);
  background: var(--c4);
  border-radius: 90px;
  transition: all .5s;
  font-family: var(--f1);
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
}

.main-menu ul li a:before {
  transition: all .5s;
  content: "";
  position: absolute;
  bottom: 0;
  width: 0%;
  left: 0;
  height: 2px;
  background: var(--c3);
}

.main-menu ul li a:hover:before {
  width: 100%;
}

.web-btn a:hover,
.web-btn button:hover,
.web-btn input:hover {
  background-color: var(--c3);
}

/* MAIN BANNER  */
.banner-img img {
  height: 820px;
  object-fit: cover;
}

section.main-banner {
  position: relative;
}

section.main-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
}

.banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 99;
}

.banner-title h2 {
  font-size: 64px;
  font-weight: 700;
  color: var(--c2);
  margin-bottom: 25px;
}

.banner-title p {
  color: var(--c2);
  margin-bottom: 25px;
  font-size: 20px;
  line-height: 1.5;
}

/* spacing */

.spacing {
  padding: 100px 0px;
}

.web-title h2 {
  font-family: var(--f1);
  font-weight: 700;
  font-size: 48px;
  text-transform: capitalize;
  color: var(--c3);
  margin-bottom: 10px;
}

.web-title p {
  font-weight: 400;
  font-size: 20px;
}

.service-box {
  box-shadow: 0px 0px 100px 0px #0000000D;
  padding: 0 30px;
  border-radius: 20px;
  transition: all .5s;
  height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-body {
  margin: 30px 0px;
}

.service-icon {
  background-color: var(--c2);
  width: 80px;
  border: 1px solid var(--c3);
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 50%;
}

.service-header>h2 {
  font-size: 50px;
  color: var(--c2);
  -webkit-text-stroke: 1px #1b375d;
  transition: all .5s;
  font-weight: 800;
}

.service-body>h2 {
  font-weight: 700;
  font-size: 20px;
  color: var(--c3);
  text-transform: capitalize;
  margin-bottom: 20px;
  transition: all .5s;
}

.service-body ul li {
  color: #6B6B6B;
  font-size: 14px;
  padding: 7px 25px;
  position: relative;
  transition: all .5s;
}

.service-body ul li::before {
  content: '\f04b';
  position: absolute;
  top: 5px;
  left: 0;
  color: inherit;
  font-family: 'Font Awesome 5 Pro';
  font-size: inherit;
  width: 100%;
  height: 100%;
}

.service-btn a {
  width: 100%;
  display: flex !important;
  justify-content: center;
  background-color: var(--c3);
  padding: 15px;
  transition: all .5s;
  text-transform: capitalize;
  color: var(--c2);
  font-size: 18px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-btn a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--c4);
  width: 0%;
  height: 100%;
  z-index: -1;
  border-radius: 10px;
  transition: all .5s;
}

.service-btn a:hover::before {
  width: 100%;
}

.service-box:hover {
  background-color: var(--c3);
}

.service-box:hover .service-header>h2 {
  -webkit-text-stroke: unset;
}

.service-box:hover .service-body>h2 {
  color: var(--c2);
}

.service-box:hover .service-body ul li {
  color: var(--c2);
}

.service-box:hover .service-btn a {
  background-color: var(--c2);
  color: var(--c5);
}

.about-us {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
  padding: 200px 0px 300px;
}

.about-us::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #1b375dd9;
  width: 100%;
  height: 100%;
}

.about-content h2 {
  color: var(--c2);
}

.about-content p {
  color: var(--c2);
  font-size: 16px;
  line-height: 1.5;
  margin: 30px 0px;
}

.service-btn a:hover {
  color: var(--c2) !important;
}

.about-images {
  position: relative;
}

.about-img-1 {
  position: absolute;
  left: 0;
  bottom: -150px;
  z-index: 3;
}

.about-img-1 img {
  width: 369px;
  height: 431px;
  border-radius: 20px;
  object-fit: cover;
}

.about-img-2 {
  position: absolute;
  right: -35px;
  z-index: 2;
  top: -220px;
}

.about-img-2 img {
  width: 288px;
  height: 256px;
  object-fit: cover;
  border-radius: 20px;
}

.about-side-1 {
  position: absolute;
  top: -250px;
  z-index: 1;
  right: -60px;
}

.about-img-3 {
  position: absolute;
  z-index: 4;
  top: 50px;
  right: 0px;
}

.about-img-3 img {
  width: 369px;
  height: 369px;
  object-fit: cover;
  border-radius: 20px;
  border: 15px solid #fff;
}

.about-side-2 {
  position: absolute;
  top: 100px;
}

.about-text {
  position: absolute;
  width: 205px;
  height: 250px;
  background-color: var(--c2);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0px;
  border-radius: 20px;
  top: 160px;
  left: 40px;
}

.about-text h2 {
  font-size: 96px;
  font-weight: 700;
  color: var(--c3);
}

.about-text span {
  color: var(--c3);
  font-size: 20px;
  display: block;
  width: 50%;
  text-align: center;
  margin: 0 auto;
}

.featured-content h2 {
  font-size: 40px;
  line-height: 1.2;
}

.featured-content p {
  font-size: 17px;
  line-height: 1.5;
  color: #00000099;
  margin: 30px 0px;
}

.featured-img {
  width: 65%;
  position: relative;
  margin: 0 auto;
}

.expertise-content h2 {
  font-size: 38px;
}

/* TAHA CSS  */

/* FOOTER  */
footer {
  position: relative;
}

.footer-top {
  background-color: #1A1A1A;
  padding: 80px 0px 70px;
}


.footer-logo a {
  width: 120px;
}

.footer-content p {
  color: var(--c2);
  opacity: 50%;
  line-height: 150%;
  margin-top: 20px;
  margin-bottom: 20px;
}


.footer-social ul {
  justify-content: start;

}


.footer-links h4 {
  width: max-content;
  font-size: 20px;
  color: var(--c2);
  font-weight: 700;
  font-family: var(--f1);
  margin-bottom: 30px;
}



.footer-links ul li a,
.footer-links ul li h5 {
  color: var(--c2);
  font-size: 16px;
  font-weight: 400;
  position: relative;
  opacity: 50%;
  line-height: 1.5;
  transition: all.4s;
}

.footer-links ul li a:hover {
  opacity: 1;
}

.footer-links ul li {
  overflow: hidden;
  padding-bottom: 16px;
}

.footer-links ul li a i {
  color: var(--c1);
  margin-right: 8px;
}

.footer-link-gap {
  padding-left: 50px;
}

.footer-bottom {
  padding: 18px 0px;
  background-color: var(--c3);
}

.copyright p {
  margin: 0px;
  color: var(--c2);
  font-size: 16px;
  font-weight: 400;
}

.footer-links ul li a:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -100%;
  width: 100%;
  height: 1.5px;
  background-color: var(--c2);
  transition: all.4s;
}

.footer-links ul li a:hover:before {
  left: 0;
}

.footer-links h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c3);
  font-family: var(--f1);
  margin-bottom: 10px;
}


.footer-social ul {
  display: flex;
  gap: 20px;
}

.footer-social ul li a {
  color: var(--c2);
  font-size: 20px;
  transition: 0.4s;
}

.footer-social ul li a:hover {
  color: var(--c5);
}

.privacy-menu ul {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: end;
}

.privacy-menu ul li a {
  color: var(--c2);
  font-weight: 400;
  font-size: 16px;
}

.news-email {
  position: relative;
}

.news-email button {
  position: absolute;
  right: 0;
  background: unset;
  border: 0;
  color: var(--c2);
  font-size: 16px;
  bottom: 4px;
  opacity: 70%;
}

.newsletter-form {
  text-align: right;
  width: 70%;
  margin-left: auto;
}

.newsletter-form input {
  width: 100%;
  border: unset;
  border-bottom: 1px solid #ffffffa3;
  padding-bottom: 5px;
  outline: 0;
  padding-right: 30px;
  background: transparent;
  color: var(--c2);
}

.newsletter-form input::placeholder {
  color: var(--c2);
  opacity: 70%;
}

section.newsletter-box-main {
  background-color: #1b375d;
  padding: 57px 0px;
}

.newsletter-title h4 {
  color: var(--c2);
  font-size: 40px;
  font-weight: 700;
  font-family: var(--f1);
}

/* MINI BANNER  */
section.mini-banner {
  background-image: url(../images/rb-12_compressed.webp);
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

section.mini-banner:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000B2;
  content: "";
}

.mini-banner-content {
  position: relative;
  z-index: 2;
}

.mini-banner-content h2 {
  color: var(--c2);
  font-weight: 700;
  font-size: 48px;
  font-family: var(--f1);
  margin-bottom: 20px;
  line-height: 125%;
}

.mini-banner-content p {
  color: var(--c2);
  margin-bottom: 40px;
  opacity: 50%;
  font-size: 20px;
}

.mini-banner-btn a {
  border: 2px solid var(--c3);
  color: var(--c3);
  padding: 12px 30px;
  border-radius: 10px;
  transition: all.5s;
  font-weight: 700;
  font-size: 16px;
}

.mini-banner-btn a:hover {
  background-color: var(--c3);
  color: var(--c2);
}

.mini-banner-btn a i {
  margin-left: 4px;
  font-size: 14px;
  line-height: 1px;
}


/* CASE STUDIES  */
.case-title {
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.case-title h2 {
  color: var(--c2);
}

.case-studies {
  background-image: url('../images/e9fa32643c1ef32a95cf5431fb872a8bcfe724f7.png');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.case-studies:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c3);
  opacity: 90%;
}

.case-study-item {
  position: relative;
  z-index: 1;
  background-color: var(--c2);
  padding: 20px;
  box-shadow: 0px 0px 100px 0px #0000000D;
  border-radius: 20px;
  height: 100%;
}

.case-study-img {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 25px;
}

.case-study-img img {
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  transition: all.4s;
}

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

.case-study-content h2 {
  font-size: 26px;
  font-weight: 700;
  font-family: var(--f1);
  margin-bottom: 20px;
  line-height: 125%;
  padding-right: 20px;
}

.case-study-content p {
  color: var(--c1);
  opacity: 50%;
  line-height: 150%;
  margin-bottom: 10px;
}

.privacy-menu ul li a:hover {
  text-decoration: underline !important;
}

.featured-img-1 {
  position: absolute;
  width: 80%;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(16deg);
}

.featured-img-1 img {
  border: 10px solid var(--c3);
  border-radius: 20px;
}

.featured-img-2 {
  position: absolute;
  width: 85%;
  bottom: -300px;
  left: -90px;
  transform: rotate(-15deg);
}

.features {
  padding: 200px 0px;
}

.featured-img-2 img {
  border: 10px solid var(--c3);
  border-radius: 20px;
}

@keyframes floatAndRotate {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-10px) rotate(2deg);
  }

  50% {
    transform: translateY(0) rotate(0deg);
  }

  75% {
    transform: translateY(10px) rotate(-2deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* FEATURED IMAGE 1 */
.featured-img-1::before {
  content: '';
  position: absolute;
  top: 80px;
  left: -150px;
  width: 100%;
  height: 100%;
  background-image: url('../images/rb-vector-ft_compressed.webp');
  background-repeat: no-repeat;
  animation: floatAndRotate 10s ease-in-out infinite;
  transform-origin: center;
}

@keyframes floatAndRotateBottom {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(6px) rotate(-1.5deg);
  }

  50% {
    transform: translateY(0) rotate(0deg);
  }

  75% {
    transform: translateY(-6px) rotate(1.5deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.featured-img-2::before {
  content: '';
  position: absolute;
  right: -350px;
  bottom: -460px;
  width: 100%;
  height: 100%;
  background-image: url('../images/rb-vector-ft-2_compressed.webp');
  background-repeat: no-repeat;
  z-index: 9999;
  animation: floatAndRotateBottom 14s ease-in-out infinite alternate;
  transform-origin: bottom center;
}

.exp-img img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.expertise-image {
  position: relative;
}

.exp-img {
  position: absolute;
  bottom: 100px;
  transform: translateY(50%);
  width: 65%;
}

.exp-img-2 {
  position: absolute;
  width: 55%;
  top: -125px;
  right: 35px;
  border: 20px solid #fff;
  border-radius: 20px;
  overflow: hidden;
}

.exp-img-3 {
  position: absolute;
  width: 40%;
  top: 65px;
  left: -10px;
}

.exp-img-2 img {
  border-radius: 20px;
}

.exp-img-3 img {
  border-radius: 20px;
}

.expertise {
  padding: 200px 0px;
}

.exp-projects {
  position: absolute;
  z-index: 999;
  background-color: var(--c3);
  padding: 30px 25px;
  text-align: center;
  color: var(--c2);
  border-radius: 20px;
  bottom: 0;
  right: 20px;
  transform: translateY(-100%);
}

.exp-clients {
  position: absolute;
  bottom: -155px;
  transform: translateY(100%);
  left: 270px;
  background-color: var(--c4);
  padding: 30px 50px;
  text-align: center;
  color: var(--c2);
  border-radius: 20px;
}



.ham-menu-main {
  text-align: end;
}

.ham-menu-main a {
  color: var(--c3);
  font-size: 24px;
}

/* RESPONSIVE MENU CSS */

.ham-menu-btn a span {
  width: 32px;
  height: 3px;
  background-color: var(--c2);
}

.ham-menu-btn a {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.responsive-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 70%);
  z-index: 99999;
  transition: all .5s;
}

.responsive-menu-inner {
  height: 100%;
  padding: 30px;
  position: relative;
  width: 80%;
  background-color: var(--c2);
  left: -100%;
  background-position: left;
  background-image: url('../images/rb-6_compressed.webp');
  background-attachment: fixed;
}

.responsive-menu-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c3);
  opacity: 0.9;
}

.responsive-logo-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.respon-cross a,
.respon-cross a i {
  display: block;
}

.respon-cross a {
  width: 50px;
  height: 50px;
  border: 1px solid var(--c2);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--c2);
  transition: all .5s;
}

.respon-cross a:hover {
  transform: rotate(90deg);
  color: var(--c1);
  border-color: var(--c1);
}

.respon-logo a {
  display: block !important;
  background-color: var(--c2);
  padding: 10px 10px;
  border-radius: 5px;
}

.respon-logo {
  width: 120px;
}

.responsive-links ul li a {
  color: var(--c2);
  transition: all .5s;
  font-size: 20px;
  font-weight: 500;
  display: block !important;
  border-bottom: 1px solid #808080c4;
  padding: 12px 0px;
  font-family: var(--f1);
}



.responsive-links {
  margin-top: 50px;
  overflow-y: auto;
  height: calc(100vh - 232px);
}

.responsive-links ul li ul {
  display: none;
}

.responsive-links ul li a:hover {
  color: var(--c1);
}

.responsive-links ul li ul li a {
  padding-left: 40px;
  font-size: 22px;
}

.responsive-links ul li:has(ul)::before {
  position: absolute;
  content: "\f067";
  top: 16px;
  right: 0;
  font-family: "Font Awesome 5 Pro";
  font-size: 22px;
  color: var(--c2);
}

.responsive-links ul li {
  position: relative;
}

.responsive-links ul li.active::before {
  content: "\f068";
  color: var(--c1);
}

.responsive-socials {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--c2);
  padding: 12px 0px;
}

.responsive-socials ul {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.responsive-socials ul li a {
  color: var(--c3);
  font-size: 20px;
}

.responsive-menu.active {
  left: 0;
}

.responsive-menu.active .responsive-menu-inner {
  left: 0;
  transition-delay: .3s !important;
  transition: all .7s;
}

body.stop-scroll {
  overflow-y: hidden;
}

.web-btn.responsive-btn a {
  background-color: var(--c1);
  margin-top: 30px;
  display: block !important;
  text-align: center;
  color: var(--c3);
}

.search-bar {
  position: relative;
  transition: all .5s;
}

.search-bar input {
  width: 100%;
  padding: 20px 20px;
  border-radius: 50px;
  border: 1px solid var(--c3);
  transition: all .5s;
  animation: animate-pulse 2.5s infinite ease-in-out;
}

.search-bar button {
  position: absolute;
  top: 50%;
  right: 0;
  width: 6%;
  border: 0;
  transform: translateY(-50%);
  background-color: var(--c4);
  color: var(--c2);
  padding: 20px 0px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  transition: all .5s;
}

@keyframes animate-pulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(27, 55, 93, 0.6),
      0 0 0 0 rgba(27, 55, 93, 0.4);
  }

  40% {
    box-shadow:
      0 0 0 40px rgba(27, 55, 93, 0),
      0 0 0 0 rgba(27, 55, 93, 0.4);
  }

  80% {
    box-shadow:
      0 0 0 60px rgba(27, 55, 93, 0),
      0 0 0 30px rgba(27, 55, 93, 0);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(27, 55, 93, 0),
      0 0 0 30px rgba(27, 55, 93, 0);
  }
}

.search-bar button:hover {
  background-color: var(--c3);
}

.search-bar input:focus::placeholder {
  position: absolute;
  top: -50px;
}

.search-bar input::placeholder {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all .5s;
}

.career-title h4 {
  font-size: 30px;
  font-weight: 700;
  color: var(--c1);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.career-title h2 {
  font-size: 70px;
  font-weight: 900;
  text-transform: uppercase;
}

/* contact */

.resp-boxes-item {
  height: 180px;
  border: 1px solid var(--c1);
  border-radius: 5px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 25px;
  transition: all 0.5s;
}

.resp-box-item-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.resp-box-item-inner h5,
.responsive-contact-item span.resp-mob-men-head {
  position: relative;
  color: var(--c3);
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.responsive-contact-item span.resp-mob-men-head {
  display: block;
}

.resp-box-item-inner h5:before,
.responsive-contact-item span.resp-mob-men-head:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
  width: 20px;
  height: 2px;
  background-color: var(--c2);
  content: "";
}

.responsive-contact-item {
  margin-bottom: 30px;
}

.resp-box-item-inner a {
  color: var(--c1);
  font-weight: 500;
  transition: all 0.5s;
  margin-bottom: 3px;
}

.resp-box-item-inner a:hover,
.responsive-contact-item a:hover {
  color: var(--c3);
}

.resp-box-item-inner p,
.responsive-contact-item a,
.responsive-contact-item p {
  color: var(--c1);
}

.resp-boxes-item:hover {
  transform: rotate(-5deg);
  border-color: var(--c4);
}

.contact-us {
  background: var(--c2);
}

.contact-img img {
  height: 550px;
  object-fit: cover;
}

.contact-img-border {
  border: 1px solid var(--c3);
}

.contact-img {
  padding: 40px;
  margin-left: 20px;
  border-radius: 6px;
}

/* Contact Us */

.contact-title {
  margin-bottom: 60px;
  width: 70%;
}

.contact-item input,
.contact-item textarea {
  background: unset;
  outline: 0;
  border: 0;
  width: 100%;
  padding: 15px 0px;
  color: var(--c1);
  border-bottom: 1px solid var(--c3);
  transition: all 0.5s;
}

.contact-item input::placeholder,
.contact-item textarea::placeholder {
  color: var(--c);
}

.contact-item-main .contact-item {
  margin-bottom: 20px;
}

.contact-item textarea {
  height: 150px;
}

.contact-info-item {
  display: flex;
  width: 50%;
  gap: 20px;
  margin-bottom: 50px;
}

.contact-info-items-main {
  display: flex;
  flex-wrap: wrap;
  padding-left: 50px;
}

.info-item-icon {
  width: 50px;
  height: 50px;
  background-color: var(--c2);
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  color: var(--c5);
  font-size: 20px;
}

.info-item-content a,
.info-item-content p {
  color: var(--c2);
  display: block;
  font-weight: 500;
  font-size: 16px;
}

.info-item-content span {
  color: var(--c3);
  font-weight: 600;
  display: block;
  margin-bottom: 9px;
}

.info-item-content {
  width: 70%;
}

.info-item-content a {
  transition: all 0.5s;
  margin-bottom: 5px;
}

.info-item-content a:hover {
  color: var(--c3);
}

.contact-us .web-title {
  margin-bottom: 60px;
}

.wrap-form-submit input,
.contact-submit-btn input {
  background: unset;
  outline: 0;
  border: 1px solid var(--c1);
  width: 100%;
  color: var(--c3);
  padding: 15px 20px;
  transition: all 0.5s;
  font-weight: 700;
  background: var(--c2);
}

.wrap-form-submit input:hover,
.contact-submit-btn input:hover {
  box-shadow: 0px 10px 60px 0px #1b375d;
}

.contact-submit-btn input {
  border-radius: 50px;
  padding: 18px 30px;
  width: 40%;
  font-weight: 400;
  text-transform: uppercase;
}

/* services */

/*SINGLE PAGE CSS*/

.single-cont-inner {
  display: flex;
  gap: 25px;
  margin-top: 25px;
  align-items: center;

}

.single-inner-img,
.single-inner-list {
  width: 50%;
}

.single-content-img img {
  height: 450px;
  object-fit: cover;
  transition: all .8s;
}

.single-content h4 {
  color: var(--c3);
  padding: 0px 0 15px;
  font-family: var(--f1);
  font-size: 30px;
}

.single-content-img {
  margin-bottom: 30px;
}

.single-content-main p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #383838;
  line-height: 1.6;
}

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

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

.single-w-date h3 {
  color: var(--c3);
  font-weight: 700;
  margin-bottom: 8px;
}

.single-w-date {
  margin: 30px 0;
}

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

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

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

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

.single-content h2 span {
  color: var(--c1);
}

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

.single-sidebar {
  position: sticky;
  top: 0;
}

.single-content ul li,
.single-content ol li {
  line-height: 1.6;
  color: #727272;
  font-size: 15px;
  list-style: disc;
  margin-bottom: 5px;
}

.single-content ul,
.single-content ol {
  padding-left: 20px;
  margin-bottom: 15px;
}

.single-content ol li {
  list-style: auto;
}

.other-services ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}


.quote-form-main {
  padding: 25px 20px;
  background-color: #e9e9e980;
}

.quote-form-main h2 {
  font-size: 30px;
  margin-bottom: 20px;
  text-align: center;
  color: var(--c1);
}

.other-services ul li.active-care a {
  background-color: var(--c1);
}

.other-services ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.other-services ul li a {
  color: var(--c2);
  padding: 12px 20px;
  transition: all .5s;
  background-color: var(--c3);
  display: block !important;
  font-size: 16px;
  text-transform: uppercase;
}

.other-services ul li {
  display: block;
  width: 100%;
  text-align: center;
}

.other-services ul li a:hover {
  background-color: var(--c4);
}

.archive-service .col-lg-4 {
  padding: 0px 10px;
}

.archive-service .service-box {
  margin-bottom: 0 !important;
}

.category-box {
  height: 400px;
}

.service-box:hover .service-body p {
  color: var(--c2);
}

.service-box .service-body p {
  transition: all .5s;
}

.single-sidebar {
  position: sticky;
  top: 50px;
}

.quote-form-main {
  padding: 25px;
  background-color: #efefef;
  border-radius: 5px;
}

.quote-form-main h2 {
  font-size: 26px;
  color: var(--c1);
  margin-bottom: 22px;
  text-align: center;
  font-weight: 700;
}

.quote-form-item input,
.quote-form-item select,
.quote-form-item option {
  background: unset;
  border: 1px solid #ffecec26;
  padding: 12px 15px;
  border-radius: 4px;
  outline: 0;
  width: 100%;
  color: var(--c3);
  transition: all .5s;
  background-color: var(--c2);
}

.quote-form-item {
  margin-bottom: 15px;
}

.quote-form-item input:focus {
  border-color: var(--c1);
}

.quote-form-item input::placeholder {
  color: #00000077;
  font-size: 15px;
}

.quote-submit input {
  padding: 10px 20px;
  background-color: var(--c1);
  border: 0;
  outline: 0;
  color: var(--c2);
  font-weight: 700;
  border-radius: 4px;
  transition: all .7s;
  width: 100%;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.quote-submit input:hover {
  background-color: var(--c3);
  color: var(--c2);
}

.quote-submit {
  text-align: center;
  margin-top: 20px;
}

.service-box .service-body p {
    line-height: 1.5;
}

section.inner-header.colored-banner {
    height: 250px;
    background-color: var(--c3);
}

section.inner-header.colored-banner::before {
    content: unset;
}

.single-content img {
    margin-bottom: 30px;
}

.main-menu ul li ul li a:hover {
  color: var(--c2);
  background-color: var(
  --c1);
}
.main-menu > ul > li {
  position: relative;
}
.main-menu ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 380px;
  background-color: var(--c2);
  z-index: 999;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.5s;
  flex-wrap: wrap;
  gap: 0;
  box-shadow: 0px 0px 5px 0px var(--c2);
}
.main-menu ul li ul li {
  width: 50%;
}
.main-menu  ul li ul li a {
  display: block !important;
  padding: 10px 20px 10px 20px;
  color: var(--c1);
  transition: all .5s;
}
.main-menu ul li:hover ul {
  transform: scaleY(1);
}

.footer-logo a img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}