@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cairo:wght@200..1000&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--c3);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--c5);
	width:12px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background:#a11017;
}


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

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

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

ul {
  padding: 0;
  margin: 0;
}

p {
  font-family: "Cairo", sans-serif;
  padding: 0;
  margin: 0;
  font-size: 18px;
  color: var(--c4);
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
}

/* Colors Root */

:root {
  --c1: #000;
  /* Black */
  --c2: #fff;
  /* White */
  --c3: #053067;
  /* Blue */
  --c4: #646464;
  /* Grey */
  --c5: #d30b14;
}

/* Selection */

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

/* Wrapper */

.wrapper {
  overflow: hidden;
}
.header-sticky {
  overflow: visible;
}
/* Loader */

@keyframes square-animation {
  0% {
    left: 0;
    top: 0;
  }

  10.5% {
    left: 0;
    top: 0;
  }

  12.5% {
    left: 32px;
    top: 0;
  }

  23% {
    left: 32px;
    top: 0;
  }

  25% {
    left: 64px;
    top: 0;
  }

  35.5% {
    left: 64px;
    top: 0;
  }

  37.5% {
    left: 64px;
    top: 32px;
  }

  48% {
    left: 64px;
    top: 32px;
  }

  50% {
    left: 32px;
    top: 32px;
  }

  60.5% {
    left: 32px;
    top: 32px;
  }

  62.5% {
    left: 32px;
    top: 64px;
  }

  73% {
    left: 32px;
    top: 64px;
  }

  75% {
    left: 0;
    top: 64px;
  }

  85.5% {
    left: 0;
    top: 64px;
  }

  87.5% {
    left: 0;
    top: 32px;
  }

  98% {
    left: 0;
    top: 32px;
  }

  100% {
    left: 0;
    top: 0;
  }
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #d30b14, #0f3172);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.preloader-inner {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transform: rotate(45deg);
}

.loader-square {
  position: absolute;
  width: 28px;
  height: 28px;
  background: white;
  animation: square-animation 10s ease-in-out infinite both;
}

.loader-square:nth-of-type(0) {
  animation-delay: 0s;
}

.loader-square:nth-of-type(1) {
  animation-delay: -1.4285714286s;
}

.loader-square:nth-of-type(2) {
  animation-delay: -2.8571428571s;
}

.loader-square:nth-of-type(3) {
  animation-delay: -4.2857142857s;
}

.loader-square:nth-of-type(4) {
  animation-delay: -5.7142857143s;
}

.loader-square:nth-of-type(5) {
  animation-delay: -7.1428571429s;
}

.loader-square:nth-of-type(6) {
  animation-delay: -8.5714285714s;
}

.loader-square:nth-of-type(7) {
  animation-delay: -10s;
}

/* Go To Top Button */

.m-backtotop {
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--c1);
  border-radius: 50%;
  text-align: center;
  border: 2px solid var(--c3);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  color: var(--c2);
  z-index: 999;
  opacity: 0;
}
.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}
.m-backtotop > div {
  transition: all 0.3s ease-in-out;
}
.m-backtotop > div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}
.m-backtotop > div.text {
  font-size: 10px;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  line-height: 10px;
}
.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 20px;
  cursor: pointer;
  background: #1b1b1b;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}
.m-backtotop:hover > div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}
.m-backtotop:hover > div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Same Spacing B/W Sections */

.spacing {
  padding: 100px 0px;
}

/* Main Btn */

.main-btn a {
  padding: 12px 26px;
  border: 1px solid var(--c1);
  text-transform: uppercase;
  border-radius: 3px;
  color: var(--c1);
  font-weight: 600;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}

.main-btn a:before {
  position: absolute;
  content: "";
  background-color: var(--c5);
  left: -28px;
  top: 0;
  width: 119%;
  height: 100%;
  transform: rotateZ(-45deg);
  transform-origin: left;
  transition: 0.4s all;
  z-index: -1;
}

.main-btn a:hover:before {
  transform: rotateZ(0deg);
  left: 0;
}

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

/* Main Title */

.main-title h4 {
  color: var(--c5);
  letter-spacing: 3px;
  margin-bottom: 6px;
}

.main-title h2 {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--c3);
}

/* Responsive Menu */

.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: 10px 30px;
  position: relative;
}
.responsive-logo {
  width: 70%;
  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 */

.h-items {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 50px;
}
.responsive-btn a:hover {
  color: var(--c1);
}
.header {
  background: var(--c2);
  position: sticky;
  top: 0;
  z-index: 4;
  box-shadow: 0px 0px 16px #000000b0;
}
.h-btns {
  display: flex;
  gap: 10px;
}
.nav-bar ul li a:hover {
  color: var(--c3);
}

.logo {
  width: 200px;
  padding: 14px 0px;
}

.inner-content-item h3 {
  color: var(--c4);
  font-size: 22px;
  margin-bottom: 10px;
}

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

.nav-bar ul li a {
  padding: 30px 0px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  color: var(--c1);
  transition: all 0.5s;
}

.nav-bar nav > ul > li > a:hover {
  color: #bfbfbf;
}

.nav-bar ul li a i {
  margin-left: 6px;
  font-size: 13px;
  transition: all 0.3s;
}

.header-btn a {
  padding: 12px 20px;
  border: 2px solid var(--c1);
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  color: var(--c5);
  transition: all 0.3s;
}

.nav-bar ul li a:hover i {
  transform: rotate(180deg);
}

.header-btn a:hover {
  background-color: var(--c5);
  color: var(--c2);
  border-color: var(--c3);
}

.logo a {
  display: block !important;
}

/* Header Sub Menu */

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

.nav-bar ul li ul,
.nav-bar ul li ul li ul {
  position: absolute;
  background-color: var(--c2);
  top: 100%;
  left: -20px;
  display: unset;
  width: 230px;
  border-radius: 5px;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.3s;
  z-index: 99;
}

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

.nav-bar ul li ul li ul {
  top: 20px;
  left: 100%;
  opacity: 0;
  visibility: hidden;
  border-top-left-radius: 0px;
}

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

.nav-bar ul li ul li a {
  font-size: 13px;
  padding: 12px 12px 12px 20px;
  width: 100%;
}

.nav-bar ul li ul li a:hover {
  background-color: rgba(26, 44, 121, 0.1);
}

.nav-bar ul li ul:before {
  position: absolute;
  content: "";
  border: 12px solid transparent;
  top: -24px;
  border-bottom: 15px solid var(--c3);
  left: 45px;
}

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

/* section-main-home */

.main-home {
  position: relative;
}
.banner-image video {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 100vh;
}
.banner {
  position: relative;
}
.badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.badges-icon {
    width: 30%;
}
.banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
}
.banner-content-main h1 strong {
  color: var(--c5);
  font-weight: 100;
  text-shadow: 3px 3px 15px #ffffff2e;
}
.banner-image img {
  height: 90dvh;
  object-fit: cover;
  width: 100%;
  display: block;
}

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

.banner-content-main p {
  padding: 10px 0px 20px 0px;
  color: var(--c2);
}

.banner:before {
  position: absolute;
  content: "";
  background: linear-gradient(
270deg, #d30b14, #0f3172);
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  z-index: 1;
}

.banner-content-main {
  position: relative;
}

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

/* Why Choose Us */

.why-choose-us .about-title {
  padding-right: 0;
  padding-left: 40px;
}

/* About Us */

.about-us-content > p {
  margin-bottom: 20px;
}
.about-btn {
  margin-top: 20px;
}
.about-us-content h4 strong {
  color: var(--c3);
  font-weight: 100;
}
.about-end-content a {
  color: var(--c3);
  font-weight: 700;
  transition: all 0.5s;
}
.about-end-content {
  position: relative;
}
.about-end-content:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background: var(--c3);
  top: 50%;
  transform: translateY(-50%);
}
.about-end-content p {
  margin: 20px 0px 20px 20px;
}
.about-end-content a:hover {
  color: var(--c1);
}
.about-us-content {
  margin-left: 80px;
}
.about-us-images {
  position: relative;
}
.image-one img {
  height: 650px;
  object-fit: cover;
}
.image-one {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 10px 0px 10px 10px var(--c3);
}
.image-two {
  border-radius: 20px;
  overflow: hidden;
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 80%;
  box-shadow: 10px 10px 10px -4px var(--c3);
}
.image-two img {
  height: 400px;
  object-fit: cover;
}

/* About Us */

.about-title ul {
  margin: 20px 0px 30px 0px;
}
.about-title {
  padding-right: 40px;
}
.about-title ul li {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 10px;
}
.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 10px 0px 10px 10px var(--c3);
}

.about-image img {
  height: 520px;
  object-fit: cover;
}
.about-title ul li strong {
  color: var(--c3);
  font-size: 18px;
}

/* Services */

.our-services {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0px 160px 0px;
  position: relative;
}
.our-services:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(270deg, #d30b14, #0f3172);
}
.our-service-btn a {
    color: vaR(--c2);3); */
    padding: 5px 14px;
    border: 1px solid var(--c2);
    padding: 8px 26px;
}

.our-service-btn {
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.our-service-hover:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000000ab;
}

.our-service-icon i {
  font-size: 40px;
  color: var(--c2);
}

.our-service-para p {
  font-size: 20px;
  color: var(--c2);
}

.our-service-content h4 {
  margin: 24px 0px;
  font-size: 30px;
  color: var(--c2);
}

.our-service-content p {
  color: var(--c2);
}

.our-service-item {
  border: 1px solid var(--c2);
  padding: 20px 20px 20px 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin: 0px 10px;
  height: 440px;
}

.our-service-hover {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  justify-content: center;
  background-position: center;
  background-size: cover;
  transition: 1s ease all;
}

.our-services .section-title h2 {
  color: var(--c2);
}

.our-services .section-title h2 {
  font-weight: 100;
}

.our-service-content-item {
  margin-bottom: 60px;
}

.our-service-hover a {
  padding: 12px 25px;
  color: var(--c2);
  position: absolute;
  top: 0%;
  transition: all 0.8s ease-in-out;
  opacity: 0;
  border: 2px solid var(--c2);
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  background: var(--c2);
  color: var(--c3);
}

.our-service-hover a:hover {
  background-position: 100% 150%;
}

.our-service-hover a i {
  margin-left: 11px;
}

.our-service-item:hover .our-service-hover {
  top: 0;
}

.our-service-item .our-service-hover a {
  top: 50%;
  opacity: 1;
  transform: translateY(-50%);
}

.our-services .slick-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 70px;
}

.our-services .slick-dots li button {
  outline: 0;
  border: 0;
  width: 30px;
  height: 4px;
  color: transparent;
  transition: all 0.4s;
  background: var(--c2);
}

.our-services .slick-dots li {
  font-size: 10px;
}

.our-services .slick-dots li.slick-active button {
  height: 6px;
  background: var(--c5);
}

.our-service-para {
  padding-right: 100px;
}

.our-service-item:hover .our-service-content {
  transform: translateY(-15px);
}

.our-service-item:hover .our-service-content p {
  color: #fff;
}

.our-service-content {
  transition: all 0.2s;
}

/* Portfolio */

.portfolio-title {
  text-align: center;
  margin-bottom: 40px;
}
.gallery-items-main .slick-track {padding: 50px 0px !important;}
.gallery-item.item2 {
}
.postid-154 .gallery-item.item1 img {
  object-position: unset;
}
.postid-114 .single-content-img img {
  object-position: unset;
}
.gallery-item.item1 img {
  height: 430px;
  object-fit: cover;
  object-position: top;
}
.gallery-item.item4 img,
.gallery-item.item3 img,
.gallery-item.item2 img {
  height: 430px;
  object-fit: cover;
}

.gallery-item.item5 img,
.gallery-item.item6 img {
  height: 430px;
  object-fit: cover;
}
.gallery-title {
  margin-bottom: 50px;
}
.gallery-item {margin: 0px 12px;}
.gallery-item img {
  transition: all 0.5s;
}


/* Service Single Page */

.side-links-main ul li .active {
  background: var(--c3);
}
.side-links-main ul li a {
  padding: 15px 15px;
  width: 100%;
  background-color: var(--c4);
  font-size: 15px;
  display: flex !important;
  color: var(--c2);
  justify-content: space-between;
  transition: all 0.5s;
  font-weight: 600;
  align-items: center;
}

.side-links-main ul li a:hover {
  background-color: var(--c3);
}

.side-links-main ul li {
  margin-bottom: 15px;
}

.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 , .single-content-main h4 {
  margin-bottom: 15px;
  color: var(--c4);
  font-size: 32px;
  font-weight: 700;
}

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

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

.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(--c3);
  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(--c4);
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
}

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

.progress-item p {
  color: var(--c2);
  font-family: 'Bebas Neue';
  font-size: 20px;
}

.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;
  color: var(--c2);
}

.progress-item h2 span {
  position: relative;
  font-family: 'Bebas Neue';
}

.progress-sec {
  margin-top: -130px;
}

.progress-bg .row .col-lg-3:last-child .progress-item:after {
  background: unset;
}

/* Full Video */

.box-full-video video {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
}
.full-video .video-content {
  padding: 0;
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
}
.video-content h2,
.video-content p {
  color: var(--c2);
}

.video-content p {
  width: 60%;
}

.video-btn {
  margin-top: 20px;
}

.video-btn a {
  border: 2px solid var(--c2);
  color: var(--c2);
}
.full-video {
  position: relative;
}

.full-video:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(270deg, #d30b14, #0f3172);
  opacity: 0.9;
}

/* Reviews */

.review-autor-name ul {
  display: flex;
  color: var(--c5);
}

.reviews-sec-item {
  padding: 20px 20px 20px 20px;
  border-radius: 10px;
  margin: 0px 10px;
  background: linear-gradient(270deg, #d30b14, #0f3172);
}
.reviews-sec-content h6 {
  font-family: "Cairo";
  text-transform: capitalize;
}
.reviews-sec-img img {
  width: 40%;
  height: 80px;
  object-fit: contain;
}
.review-title {
  margin-bottom: 40px;
}
.reviews-sec-content h4 {
  color: var(--c2);
  font-weight: 400;
  font-size: 18px;
  font-family: "Cairo";
}
.reviews-sec-content span {
  color: var(--c2);
  font-size: 15px;
}
.reviews-sec-content p {
  padding: 10px 20px 10px 0px;
  height: 170px;
  overflow-y: auto;
  color: var(--c2);
}
.reviews-sec-content p::-webkit-scrollbar {
  width: 5px;
  border-radius: 20px;
}
.reviews-sec-content p::-webkit-scrollbar-thumb {
  background: var(--c3);
}
.reviews-sec-content p::-webkit-scrollbar-track {
  border-radius: 10px;
  background: var(--c4);
}
.review-autor img {
  width: 60px;
  border-radius: 50%;
  height: 60px;
  object-fit: cover;
  display: none;
}
.review-autor {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 10px;
}

/*review-arrow*/

.custom-arrow {
  width: 50px;
  position: absolute;
  height: 50px;
  border: 1px solid var(--c4);
  border-radius: 50%;
  line-height: 50px;
  color: var(--c4);
  text-align: center;
  transition: all 0.4s;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  z-index: 99;
}
.custom-arrow:hover {
  border-color: var(--c3);
  color: var(--c3);
}
.slick-next.custom-arrow {
  right: -60px;
}
.slick-prev.custom-arrow {
  left: -60px;
}
.review-slider:hover .custom-arrow {
  visibility: visible;
  opacity: 1;
}
.review-slider:hover .slick-prev.custom-arrow {
  left: -30px;
}
.review-slider:hover .slick-next.custom-arrow {
  right: -30px;
}

/* SECTION FAQS */

.faq-main-item .accordion-button {
  background-color: unset;
  box-shadow: unset;
  font-size: 18px;
  color: var(--c2);
  transform: unset !important;
  font-family: "Cairo";
}

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

.faq-main-item .accordion-item {
  margin-bottom: 20px;
  border-radius: 6px;
  border: 0;
  background: var(--c3);
}

.faq-main-item .accordion-button span {
  color: var(--c5);
  font-size: 16px;
  margin-right: 10px;
}

.faq-main-item .accordion-button:not(.collapsed)::after {
  content: "\f068";
}

.faq-main-item .accordion-button::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f067";
  width: 30px;
  height: 30px;
  background-color: var(--c2);
  text-align: center;
  font-size: 12px;
  line-height: 30px;
  border-radius: 50%;
  background-image: unset;
  transform: unset;
  color: var(--c5);
}

.faq-main-item .accordion-body {
  color: var(--c2);
  font-weight: 400;
  line-height: 1.8;
  padding-top: 0;
}

.faq-main-item .accordion-item:last-child {
  margin: 0px;
}

.faq-img {
  margin-left: 30px;
  overflow: hidden;
  border-radius: 14px;
}

.faq-img img {
  transition: all 0.6s;
  height: 400px;
  object-fit: cover;
}

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

/* Blogs */

.blog-single-wrap h2 {
    color: var(--c3);
    margin: 10px 0px;
}

.blog-single-wrap p {
    padding: 10px 0px;
}

.blog-single-wrap> ul {
    padding-left: 20px;
    margin: 0px 0px 20px 0px;
}

.blog-single-wrap > ul li {
    list-style: disc;
    font-size: 18px;
    color: var(--c3);
}
.news-image {
  overflow: hidden;
  border-radius: 10px;
}
.page-id-225 .latest-news {
  margin-bottom: 0px;
}
.view-all {
  display: flex;
  justify-content: end;
}
.news-image img {
  height: 450px;
  object-fit: cover;
  transition: all 0.5s;
}
.latest-news {
  margin-bottom: 100px;
}
.blog-single-image {
  border-radius: 10px;
  overflow: hidden;
}

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

.blog-single-image img:hover {
  transform: scale(1.1);
}
.news-latest {
  margin-bottom: 40px;
}
.news-main:hover .news-image img {
  transform: scale(1.1);
}
.news-main:before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 12px;
}
.news-box span {
  background: var(--c5);
  color: var(--c2);
  padding: 10px 25px;
  display: inline-block;
}
.news-image:hover img {
  transform: scale(1.2);
}
.news-main {
  border-radius: 12px;
  position: relative;
}
.news-box {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
}
.content-change {
  position: absolute;
  z-index: 1;
  padding: 20px;
  bottom: 0;
}
.content-change h4 {
  color: var(--c2);
  font-size: 20px;
  font-family: "Cairo";
  margin-bottom: 6px;
  font-weight: 700;
}
.content-change p {
  color: var(--c2);
  font-size: 15px;
}

/* Blogs Single */

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

.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;
}
.recent-content a {
  color: var(--c1);
  font-weight: 600;
  transition: all 0.5s;
}
.recent-content a:hover {
  color: #0b8fc6;
}

/* CONTACT-PAGE */

/* section-contact-help */

.help-title {
  text-align: center;
  margin-bottom: 60px;
}

.contact-help-content h5 {
  margin: 20px 0px 6px 0px;
  color: var(--c3);
  letter-spacing: 1px;
}

.contact-help .section-title {
  text-align: center;
  margin-bottom: 70px;
}

.contact-help .section-title h2,
.contact-help .section-title p {
  color: #000;
}
.contact-help-item:hover {
  border: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.contact-help-item {
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  padding: 35px 38px;
  text-align: center;
  height: 240px;
  overflow: hidden;
}

.contact-help-icon i {
  width: 50px;
  color: var(--c2);
  font-size: 24px;
  border-radius: 50px;
  text-align: center;
  line-height: 50px;
  height: 50px;
  background: var(--c3);
}

.contact-help-icon {
  transition: all 0.5s;
}

.contact-help-content h4 {
  font-weight: 500;
  color: #232323;
  margin-top: 8px;
  font-size: 17px;
}

.contact-help-content a {
  color: var(--c3);
  font-size: 14px;
  font-weight: 700;
  position: relative;
  margin-top: 30px;
  opacity: 0;
}

.contact-help-content a:before {
  position: absolute;
  content: "\f30b";
  font-family: "Font Awesome 5 Pro";
  left: -47px;
  top: 1px;
  transition: all 0.5s;
}

.contact-help-content a:hover:before {
  left: -21px;
}

.contact-help-item:hover .contact-help-item-inner {
  margin-top: -57px;
}

.contact-help-item:hover .contact-help-icon {
  opacity: 0;
}

.contact-help-item-inner {
  transition: all 0.5s;
}

.contact-help-item .contact-help-content a {
  transition: all 0.5s;
}

.contact-help-item:hover .contact-help-content a {
  opacity: 1;
}

.contact-help-content p {
}

/* section-contact-message */

.message-form-item select {
  color: var(--c4) !important;
}
.message-form-item input,
.message-form-item textarea,
.message-form-item select {
  color: #000;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 4px;
  border: 0;
  width: 100%;
  outline: 0;
  background-color: rgba(167, 167, 167, 0.1);
}
.contact-message {
  margin-bottom: 100px;
}
.contact-message-img img:hover {
  transform: scale(1.1);
}
.contact-message-img img {
  height: 600px;
  object-fit: cover;
  transition: all 0.5s;
}
.message-form-item {
  margin-bottom: 20px;
}

.message-form-item textarea {
  height: 120px;
}
.message-form-main {
  margin-top: 30px;
}
.message-form-item input[type="submit"] {
  background: var(--c3);
  color: #fff;
  transition: all 0.5s;
}

.message-form-item input[type="submit"]:hover {
  background: var(--c4);
}

.message-title h2 {
  margin-bottom: 0;
}

.message-title p {
  padding: 10px 0px 0px 0px;
}

.contact-message-img {
  padding: 20px;
  border: 2px solid var(--c5);
  margin-left: 40px;
  border-style: groove;
  overflow: hidden;
}

/* Map */

.map {
  margin-top: 100px;
}
.map-main iframe {
  width: 100%;
  height: 400px;
  display: block;
}

/* Privacy Policy / Terms & Conditions */

.inner-content-item p {
  margin-bottom: 20px;
}
.inner-content-item ul li {
  font-size: 18px;
  color: #616161;
  padding: 4px 0px;
  list-style: circle;
}
.inner-content-item ul {
  margin-bottom: 20px;
}

/* Inner Header */

.inner-header {
  height: 400px;
  background-position: center !important;
  background-size: cover !important;
  /* background-attachment: fixed !important; */
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
}

.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: var(--c2);
  font-size: 50px;
  font-weight: 700;
}

/* 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: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;
}

/* Footer */

footer {
  background: var(--c3);
}

/* Footer Main */

.logo-content p {
  color: var(--c2);
}
.f-logo img {
  background: var(--c2);
  padding: 12px;
  border-radius: 8px;
  width: 260px;
}
.f-items-title h5 {
  font-size: 22px;
}
.social {
  padding-top: 20px;
}
.f-items-content ul li a {
  color: var(--c2);
  font-weight: 500;
  transition: all 0.5s;
  position: relative;
  padding: 8px 0px;
}
.google-map iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
}
.social ul li i {
  width: 40px;
  height: 40px;
  border-radius: 30px;
  background-color: var(--c5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social ul li i:hover {
  background: var(--c2);
  color: var(--c3) !important;
}
.f-items-content ul li a:hover {
  color: var(--c1);
}
.social ul {
  display: flex;
  gap: 8px;
}
.f-items-content {
  padding-bottom: 40px;
}
.f-copyright {
  padding: 15px 0px;
  border-top: 1px solid var(--c2);
}
.f-items-content ul li a:before {
  position: absolute;
  content: "";
  background: var(--c2);
  height: 3px;
  top: 17px;
  left: 0px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
.f-items-content ul li a.active:before,
.f-items-content ul li a:hover:before {
  width: 8px;
  left: -14px;
  visibility: visible;
  opacity: 1;
  border-radius: 30px;
}
.f-main {
  padding: 60px 0px 20px 0px;
}
.f-items-content ul li {
  color: var(--c2);
}
.f-items-content ul li span {
  display: block;
  font-weight: 600;
}
.f-items.cont ul li a {
  padding: 0px;
}
.f-items ul li span {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 800;
}
.f-items.cont ul li a:before {
  top: 9px;
}
.f-items-title h5 {
  margin-bottom: 10px;
  color: var(--c2);
}

/* Footer Copyright */

.copyright p {
  color: var(--c2);
  text-align: end;
}
.copyright a {
  color: var(--c1);
  font-weight: 600;
  transition: all 0.4s;
}
.copyright a:hover {
  color: var(--c2);
}
.service-image img {
  height: 215px;
  object-fit: cover;
}

.made-by p {
  color: var(--c2);
}

.made-by p a {
  color: var(--c1);
}

.latest-news .row .col-lg-4 > a {
    display: block !important;
}
.review-title strong {
    color: vaR(--c5);
    font-size: 24px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: italic;
    padding-left: 10px;
    text-shadow: 2px 2px 4px #3333336b;
}

.areas {
    background: #05306714;
}
.list-areas ul li a {
    color: var(--c3);
    font-size: 19px;
    padding: 8px 0px;
}
.review-btn {
    text-align: end;
}
/**/
.gallery-item.slick-slide.slick-current.slick-active.slick-center {
    transform: scale(1.1);
    box-shadow: 0px 10px 14px #000000d6;
}
.gallery-item {
    transition :all 0.4s ease-in-out;
}
.gallery-item a {
    display: block !important;
}