/* Googlefont Poppins CDN Link */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;

  --card-clr: #161922;
  --body-clr: #191d28;
  --primary-clr: #f0bf6a;
  --heading-clr: #dadada;
  --text-clr: #767a86;
}
img {
  width: 100%;
  border-radius: 7px;
}
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: nav-smooth 1.1s forwards;
}
@keyframes nav-smooth {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100px;
  background: #ffffff;
  box-shadow: 1px 2px 6px rgba(114, 114, 114, 0.2);
  z-index: 999;
  display: flex;
  align-items: center;
}
nav .navbar {
  height: 100%;
  /* max-width: 1250px; */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
}
.navbar .logo img {
  width: 215px;
}
nav .navbar .nav-links {
  line-height: 70px;
  height: 100%;
}
nav .navbar .links {
  display: flex;
  margin-top: 16px;
}
nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #505051;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
nav .navbar .links li a:hover {
  color: #000000;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
  transform: rotate(180deg);
}

nav .navbar .links li .arrow {
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu {
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #fdfdfd;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  border-bottom: 4px solid #ac0f15;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
  display: block;
}
.navbar .links li .sub-menu li {
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .links li .sub-menu a {
  color: #000000;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu a:hover {
  color: #ac0f15;
}
.navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu {
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}
.navbar .search-box {
  position: relative;
  height: 40px;
  width: 40px;
}
.navbar .search-box i {
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #505051;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box {
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #ac0f15;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box {
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #ac0f15;
}
.search-box .input-box::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background: #ac0f15;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 50px;
  width: 290px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo {
  display: none;
}
.navbar .bx-menu {
  display: none;
}
.nav-phone a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-phone img {
  width: 20px;
}
.nav-phone p {
  margin-bottom: 0;
  color: #ac0f15;
  font-weight: 700;
  /* letter-spacing: 1px; */
}
@media (max-width: 1170px) {
  nav .btn-white {
    display: none;
  }
}
@media (max-width: 982px) {
  .navbar .logo img {
    width: 165px;
  }
}
@media (max-width: 920px) {
  nav .navbar {
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a {
    font-size: 27px;
  }
  nav .navbar .links li {
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a {
    font-size: 15px;
  }
}
@media (max-width: 800px) {
  nav {
    /* position: relative; */
  }
  nav .btn-white {
    display: inline-block;
  }
  nav .btn-white::before {
    content: "";
    display: none !important;
  }
  .navbar .bx-menu {
    display: block;
    color: #505051;
  }
  nav .navbar .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    /* max-width: 400px; */
    width: 100%;
    background: #ac0f15;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name {
    font-size: 25px;
    color: #fff;
  }
  .sidebar-logo i,
  .navbar .bx-menu {
    font-size: 25px;
    color: #505051;
  }
  nav .navbar .links {
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li a {
    font-size: 15px;
    color: black;
  }
  nav .navbar .links li .arrow {
    line-height: 40px;
  }
  nav .navbar .links li {
    display: block;
  }
  nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }
  nav .navbar .links li .sub-menu li {
    border-bottom: none;
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
    position: relative;
    left: 0;
  }
  .navbar .links li .sub-menu .more-sub-menu li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow {
    transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
  }
  .navbar .links li .sub-menu .more span {
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu {
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu {
    display: none;
  }
  .navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu {
    display: block;
  }
  .navbar .nav-links.show1 .links .htmlcss-arrow,
  .navbar .nav-links.show3 .links .js-arrow {
    transform: rotate(180deg);
  }

  .navbar .nav-links.show2 .links .more-arrow {
    transform: rotate(90deg);
  }
}
@media (max-width: 437px) {
  nav .btn-white {
    display: none;
  }
}
@media (max-width: 370px) {
  nav .navbar .nav-links {
    max-width: 100%;
  }
}

/* sliderrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr */
.main {
  height: 95vh;
  width: 100%;
  position: relative;
  top: 100px;
}
.wrapper,
.slide {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slide {
  overflow: hidden;
}
.slide::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.349),
    rgba(0, 0, 0, 0.075)
  );
  z-index: 2;
}
.slide .image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.slide .image-data {
  position: absolute;
  top: 25%;
  left: 10%;
  /* left: 10%;
  transform: translate(-50%, -50%); */
  /* text-align: center; */
  width: 100%;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}
.image-data span.text {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.image-data h2 {
  font-size: 55px;
  font-weight: 600;
  color: #fff;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  color: #fff;
  border: 2px solid #fff;
  min-height: 50px;
  padding: 0 20px;
  font-size: 17px;
  text-transform: uppercase;
  z-index: 1;
  position: relative;
  background-color: transparent;
  border-radius: 6px;
}
nav .btn-white {
  border: 2px solid #ac0f15;
  color: #ac0f15;
}

nav .btn-white::before {
  content: "";
  background-color: #ac0f15;
  display: block;
  width: 45px;
  height: 1px;
  margin-right: 20px;
}
nav .btn-white::after {
  content: "";
  background-color: #ac0f15;
  display: block;
  width: 0%;
  height: 100%;
  right: 0;
  top: 0;
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.btn-white::before {
  content: "";
  background-color: #fff;
  display: block;
  width: 45px;
  height: 1px;
  margin-right: 20px;
}

.btn-white::after {
  content: "";
  background-color: #fff;
  display: block;
  width: 0%;
  height: 100%;
  right: 0;
  top: 0;
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.btn-white:hover {
  color: #232963;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.btn-white:hover::after {
  width: 100%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.btn-white:hover::before {
  background-color: #232963;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
/* swiper button css */
.nav-btn {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #ac0f1400;
  padding: 10px;
}
.nav-btn:hover {
  background: rgba(255, 255, 255, 0);
}
.swiper-button-next {
  right: 50px;
}
.swiper-button-prev {
  left: 50px;
}
.nav-btn::before,
.nav-btn::after {
  font-size: 20px;
  color: #fff;
}
.swiper-pagination-bullet {
  opacity: 1;
  height: 12px;
  width: 12px;
  background-color: #fff;
  visibility: hidden;
}
.swiper-pagination-bullet-active {
  border: 2px solid #fff;
  background-color: #c87e4f;
}
@media screen and (max-width: 768px) {
  .nav-btn {
    visibility: hidden;
  }
  .swiper-pagination-bullet {
    visibility: visible;
  }
}
@media screen and (max-width: 360px) {
  .image-data h2 {
    font-size: 35px;
    font-weight: 600;
    color: #fff;
  }
}

/* elementtttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt */
.element {
  width: 100%;
  height: 200px;
  /* background-color: rgba(255, 0, 0, 0.774); */
  position: relative;
  /* top: 95%; */
  z-index: 7;
  margin-bottom: -100px;
}
.element .card {
  /* width: 200px; */
  padding: 25px;
  background-color: #ffffff !important;
  border-radius: 7px;
  box-shadow: 0 2px 8px rgba(65, 65, 65, 0.288);
  /* text-align: center; */
  position: relative;
  border: none;
  transition: all 0.3s ease;
}
.element .card:hover {
  transform: translateY(-5px);
}
.element .card::before {
  content: "01";
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  color: rgba(114, 114, 114, 0.733);
}
.element .c2::before {
  content: "02";
}
.element .c3::before {
  content: "03";
}
.element .c4::before {
  content: "04";
}
.element .card img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}
.element .card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  background-color: #fff;
}
.element .card h3 {
  font-size: 18px;
  color: #333;
  /* margin: 0 0 20px; */
  font-weight: 600;
}
.element .card .add-icon {
  width: 40px;
  height: 40px;
  background-color: #f44336;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 10px;
}
.element .card .add-icon svg {
  /* fill: white; */
  width: 16px;
  height: 16px;
}
.why {
  width: 100%;
  padding-top: 170px;
  padding-bottom: 70px;
  /* height: 500px; */
  background-color: #192136;
  position: relative;
  /* bottom: 100px; */
}

@media screen and (max-width: 990px) {
  .why {
    padding-top: 300px;
  }
}
@media screen and (max-width: 570px) {
  .why {
    padding-top: 700px;
  }
}
.why .why-wrapper {
  color: white;
}
.common-title {
  display: inline-block;
}
.common-title h6 {
  color: #ac0f15;
}
.heading h3 {
  font-size: 35px;
  margin-bottom: 30px;
  font-weight: 700;
}
.why .why-wrapper p {
  color: rgb(204, 204, 204);
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.411);
}
.why .why-wrapper .why-list {
  margin: 40px 30px;
}
.why .why-wrapper .why-list h5 {
  position: relative;
}
.why .why-wrapper .why-list h5::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 4px;
  left: -30px;
  /* background-color: #fff; */
  background-image: url(..//images/check.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.why .why-wrapper .signature img {
  width: 100px;
}

/* whattttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt */

.what {
  padding: 70px 0;
}
.what .title {
  text-align: center;
  margin-bottom: 40px;
}

.what .heading h3 {
  margin-bottom: 10px;
}
.what .card {
  background-color: white;
  border-radius: 10px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  border: 1px solid #50545886;
  overflow: hidden;
  /* width: ; */
  transition: transform 0.2s;
}
.what .card:hover {
  border: 1px solid #ac0f149d;
  background-color: rgb(250, 250, 250);
}

.what .card img {
  width: 100%;
  height: auto;
}

.what .card-content {
  padding: 10px;
}

.what .tag {
  display: inline-block;
  color: #ac0f15;
  border-radius: 3px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}

.what h2 {
  font-size: 24px;
  margin: 5px 0 10px 0;
  color: #41464b;
}

.what p {
  color: #5c5c5c;
  font-size: 15px;
  margin-bottom: 20px;
}

.what .btn-white {
  display: inline-flex;
  align-items: center;
  color: #ac0f15;
  border: 2px solid #ac0f15;
  min-height: 50px;
  padding: 0 20px;
  font-size: 14px;
  text-transform: uppercase;
  z-index: 1;
  position: relative;
  background-color: transparent;
}

.what .btn-white::before {
  display: none;
}

/* .testimoniallllllllllllllllllllllllllllllllllllllllllllllllllllllllllll */

/*-------------Footer-Address----------------------------------------------------------------------*/

.footer-contact-info-area {
  position: relative;
  display: block;
  margin-bottom: -83px;
}
.single-footer-contact-box {
  position: relative;
  display: block;
  background: #ac0f15;
  padding: 20px 35px;
  border-radius: 12px;
}
.single-footer-contact-box.left-icon {
  position: relative;
  z-index: 1;
}
.single-footer-contact-box.left-icon:before {
  font-family: "FontAwesome";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  content: "\f041";
  color: #85858581;
  font-size: 90px;
  line-height: 90px;
  z-index: -1;
  margin: 20px 0;
}
.single-footer-contact-box.right-box {
  position: relative;
  background: #1b1b1b;
  padding: 20px 35px;
  padding-right: 0px;
  z-index: 1;
  height: 147px;
}
.single-footer-contact-box.right-box:before {
  font-family: "FontAwesome";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  content: "\f073";
  color: #7e7e7e71;
  font-size: 75px;
  line-height: 75px;
  z-index: -1;
  margin: 20px 0;
}
.single-footer-contact-box .icon-holder {
  width: 50px;
}
.single-footer-contact-box .icon-holder span:before {
  color: #ffffff;
  font-size: 60px;
  line-height: 60px;
}
.single-footer-contact-box.right-box .icon-holder span:before {
  color: #ffffff;
  font-size: 50px;
  line-height: 50px;
}
.single-footer-contact-box .icon-holder,
.single-footer-contact-box .text-holder {
  display: table-cell;
  vertical-align: middle;
}
.single-footer-contact-box .text-holder {
  padding-left: 32px;
}
.single-footer-contact-box.right-box .text-holder {
  padding-left: 40px;
}
.single-footer-contact-box .text-holder h3 {
  color: rgb(255, 255, 255);
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 22px;
  text-transform: uppercase;
  margin: 0px 0px 9px;
}

.single-footer-contact-box .text-holder p {
  color: rgb(255, 255, 255);
  margin: 0px;
}
.single-footer-contact-box .text-holder a {
  text-decoration: none;
  color: #ffffff;
}

.single-footer-contact-box .text-holder a:hover {
  text-decoration: none;
  color: #e18745;
  font-weight: 500;
}

.Why-Choose-Home {
  padding: 50px 0px 100px;
}

/*---------------Footer----------------*/

.footer-area {
  position: relative;
  display: block;
  background: rgb(206, 206, 206);
  padding-top: 130px;
  padding-bottom: 45px;
}
.footer-area.pdtop80 {
  padding-top: 80px;
}
.single-footer-widget {
  overflow: hidden;
}
.single-footer-widget.martop6 {
  margin-top: 70px;
}
.single-footer-widget .title {
  position: relative;
  display: block;
  margin-top: 1px;
  padding-bottom: 15px;
  margin-bottom: 45px;
}
.single-footer-widget .title:before {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 50px;
  height: 2px;
  content: "";
  background: #ac0f15;
}
.single-footer-widget .title h3 {
  color: #ac0f15;
  line-height: 22px;
  text-transform: capitalize;
  font-size: 20px;
}
.single-footer-widget .icon {
  margin-bottom: 20px;
}

.single-footer-widget .icon i {
  padding: 7px;
  font-size: 18px;
  background-color: #ac0f15;
  border-radius: 50%;
  margin-right: 5px;
  color: rgb(240, 240, 240);
  transition: all 0.3s ease;
}
.single-footer-widget .icon i:hover {
  background-color: #26355c;
}

.single-footer-widget .about-us {
  position: relative;
  display: block;
}
.single-footer-widget .about-us .footer-logo {
  margin-bottom: 16px;
}
.single-footer-widget .about-us .footer-logo a {
  display: inline-block;
}
.single-footer-widget .about-us .footer-logo a img {
  width: 180px;
  padding: 0px;
  border-radius: 0px;
}

.single-footer-widget .about-us .text-box {
}
.single-footer-widget .about-us .text-box p {
  color: rgb(0, 0, 0);
  margin: 0px;
}
.single-footer-widget .about-us .text-box p.bottom-text {
  margin-top: 17px;
}
.single-footer-widget .about-us .button {
  margin-top: 23px;
}
.single-footer-widget .about-us .button a {
  padding: 10px 20px;
}

.single-footer-widget .btn-one:hover {
  color: rgb(255, 255, 255);
  background: rgb(82, 46, 21);
}

.single-footer-widget .btn-one {
  position: relative;
  display: inline-block;
  color: rgb(255, 255, 255);
  font-size: 15px;
  line-height: 13px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  background: rgb(24, 63, 80);
  padding: 12px 16px 14px;
  transition: all 500ms ease 0s;
  border-radius: 3px;
}

.single-footer-widget .specialities {
  position: relative;
  display: block;
  margin-left: 30px;
}
.single-footer-widget .specialities li {
  list-style: none;
  margin-bottom: 6px;
}
.single-footer-widget .specialities li:last-chil {
  margin-bottom: 0;
}
.single-footer-widget .specialities li a {
  position: relative;
  display: block;
  padding-left: 30px;
  color: rgb(24, 24, 24);
  font-weight: 400;
  text-decoration: none;
  transition: all 500ms ease 0s;
}
.single-footer-widget .specialities li a:hover {
  color: rgb(0, 0, 0);
}
.single-footer-widget .specialities li a:before {
  font-family: FontAwesome;
  position: absolute;
  top: 7px;
  left: 0px;
  content: "";
  font-size: 14px;
  line-height: 13px;
  font-weight: 100;
  transition: all 0.3s ease-in-out 0.1s;
}
.single-footer-widget .specialities li a:hover:before {
  color: rgb(138, 21, 0);
}

.single-footer-widget .facilities {
  position: relative;
  display: block;
  margin: 0;
}
.single-footer-widget .facilities li {
  margin-bottom: 6px;
  list-style: none;
  margin-left: 0;
}
.single-footer-widget .facilities li:last-child {
  margin-bottom: 0;
}
.single-footer-widget .facilities li a {
  text-decoration: none;
  position: relative;
  display: block;
  padding-left: 30px;
  color: #1b1b1b;
  font-weight: 400;
  transition: all 500ms ease;
}
.single-footer-widget .facilities li a:hover {
  color: #ac0f15;
}
.single-footer-widget .facilities li a:before {
  font-family: FontAwesome;
  position: absolute;
  top: 7px;
  left: 0px;
  content: "";
  font-size: 14px;
  line-height: 13px;
  font-weight: 100;
  transition: all 0.1s ease-in-out 0.1s;
}

.single-footer-widget .solutions-links li a:hover:before {
  color: #ac0f15;
}

.single-footer-widget .opening-hours {
  position: relative;
  display: block;
  max-width: 300px;
}
.single-footer-widget .opening-hours li {
  position: relative;
  display: block;
  line-height: 14px;
  margin-bottom: 12px;
  color: #1b1b1b;
  font-size: 15px;
  font-weight: 400;
}
.single-footer-widget .opening-hours li:last-child {
  margin-bottom: 0;
}
.single-footer-widget .opening-hours li span.clr-green {
  color: #ac0f15;
}

.single-footer-widget .float-right {
  float: right;
}

.single-footer-widget .F-BOX {
  margin-bottom: 8px;
}

.single-footer-widget .F-BOX .F-Icon {
  float: left;
}

.single-footer-widget .F-BOX .F-Icon .fa {
  color: rgb(29, 29, 29);
}

.single-footer-widget .F-BOX .F-Info {
  margin-left: 30px;
  color: rgb(17, 17, 17);
}

.Footer-Stripe ul {
  float: right;
}

.Footer-Stripe ul li {
  list-style-type: none;
  display: inline;
}

.Footer-Stripe ul li a {
  text-align: center;
  text-decoration: none;
  font-weight: 400;
  margin-right: 10px;
  color: #181818;
  font-size: 14px;
}

.Footer-Stripe {
  position: relative;
  display: block;
  background: #41464b;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0 0px;
}

.Footer-Stripe p {
  color: rgb(255, 255, 255);
  text-align: center;
}

.Footer-Stripe p a {
  font-weight: 500;
  color: rgb(139, 81, 41);
  text-decoration: none;
}

.Footer-Stripe p a:hover {
  color: #0091ca;
}

.Footer-Stripe ul li a:hover {
  color: #8ac33e;
}

.footer-area .btn-white {
  display: inline-flex;
  align-items: center;
  color: #ac0f15;
  border: 2px solid #ac0f15;
  min-height: 50px;
  padding: 0 20px;
  font-size: 17px;
  text-transform: uppercase;
  z-index: 1;
  position: relative;
  background-color: transparent;
}
nav .btn-white {
  border: 2px solid #ac0f15;
  color: #ac0f15;
}

nav .btn-white::before {
  content: "";
  background-color: #ac0f15;
  display: block;
  width: 45px;
  height: 1px;
  margin-right: 20px;
}
nav .btn-white::after {
  content: "";
  background-color: #ac0f15;
  display: block;
  width: 0%;
  height: 100%;
  right: 0;
  top: 0;
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.footer-area .btn-white::before {
  content: "";
  background-color: #ac0f15;
  display: block;
  width: 45px;
  height: 1px;
  margin-right: 20px;
}

.footer-area .btn-white::after {
  content: "";
  background-color: #ac0f15;
  display: block;
  width: 0%;
  height: 100%;
  right: 0;
  top: 0;
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/* breaaaaaaaaaaaaaaaaaaaaaadcrumbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb */
.breadcrumbs {
  width: 100%;
  height: 60vh;
  background-image: url("..//images/title-bg.jpg");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  top: 100px;
}
.breadcrumbs-about {
  width: 100%;
  height: 60vh;
  background-image: url("..//images/about-bre.jpg");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  top: 100px;
}
.breadcrumbs-service {
  width: 100%;
  height: 60vh;
  background-image: url("..//images/services-bre.jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  top: 100px;
}
.breadcrumbs-gallery {
  width: 100%;
  height: 60vh;
  background-image: url("..//images/title-bg.jpg");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  top: 100px;
}
.bre-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60vh;
}
.bre-title h2 {
  font-size: 54px;
  text-transform: uppercase;
  font-weight: 700;
  color: #2b2b2b;
}
@media (max-width: 600px) {
  .bre-title h2 {
    font-size: 44px;
    font-weight: 600;
  }
}

/* formmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm */
.form-section {
  padding: 70px 0 0px 0;
  position: relative;
  top: 100px;
  background-color: #212529;
  color: white;
}
.form-section .form-wrapper img {
  width: 32px;
}
.form-section .form-wrapper .phone {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  padding:6px;
  border-radius:10px;
}
.form-section .form-wrapper p {
  color: #a3a3a3;
  margin-bottom: 8px;
}
.form-section .form-wrapper i {
  padding: 15px;
  font-size: 22px;
  background-color: #ac0f15;
  border-radius: 50%;
  margin-right: 5px;
  color: rgb(240, 240, 240);
  transition: all 0.3s ease;
}
.form-section .form-wrapper i:hover {
  background-color: #26355c;
}
.form-section .form-right-wrapper p {
  color: #818181;
  margin-bottom: 8px;
}
@media (max-width:600px)
{
   .form-section .form-right-wrapper{
  
  margin-top: 20px;
} 
}
.form-section .form-right-wrapper form {
  margin-top: 40px;
}
.form-section .form-right-wrapper form .input {
  margin: 10px 0;
  width: 100%;
  display: flex;
  gap: 10px;
}
.form-section .form-right-wrapper form .input input {
  /* margin: 10px 0; */
  width: 100%;
  height: 60px;
  border-radius: 10px;
  border: none;
  background-color: #e9e9e9;
  padding: 0 0 0 10px;
  margin-bottom: 10px;
}
.form-section .form-right-wrapper form textarea {
  margin: 0 0 10px 0;
  width: 100%;
  height: 120px;
  border-radius: 10px;
  border: none;
  padding: 0 0 0 10px;
}
map iframe {
  position: relative;
  top: 100px;
}

/* servicesssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss */
.echo {
  padding: 70px 0 150px 0;
  position: relative;
  top: 100px;
  background-color: #e7e7e7;
}

.services-container {
  background-color: #000;
  padding: 20px 5px 2px;
  border-radius: 10px;
  /* width: 300px; */
  text-align: center;
  position: sticky;
  top: 25%;
}

.services-container h2 {
  color: #ac0f15;
  margin-bottom: 20px;
}

.service-item {
  display: block;
  padding: 10px 15px;
  margin: 5px 0;
  color: #fff;
  background-color: #444;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.service-item:hover {
  background-color: #666;
  color: white;
}

.about_sec {
  padding: 70px 0px 150px;
  position: relative;
  top: 100px;
  background-color: #212529;
  color: white;
}

.about_sec .why-wrapper {
  color: white;
}

.about_sec .why-wrapper p {
  color: rgb(204, 204, 204);
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.411);
}
.about_sec .why-wrapper .why-list {
  margin: 40px 30px;
}
.about_sec .why-wrapper .why-list span {
  color: rgb(143, 143, 143);
}
.about_sec .why-wrapper .why-list h5 {
  position: relative;
  margin-top: 15px;
}
.about_sec .why-wrapper .why-list h5::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 4px;
  left: -30px;
  /* background-color: #fff; */
  background-image: url(..//images/check.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* sticky icooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooon */
#sticky-icon {
  z-index: 999;
  position: fixed;
  top: 58%;
  right: 0%;
  width: 168px;
  display: flex;
  flex-direction: column;
}
#sticky-icon img {
  width: 30px;
  margin-right: 10px;
}
#sticky-icon a {
  /* display: none; */
  transform: translate(121px, 0px);
  border-radius: 50px 0px 0px 50px;
  text-align: left;
  margin: 2px;
  text-decoration: none;
  /* text-transform:uppercase; */
  padding: 10px;
  font-size: 19px;
  font-family: "Oswald", sans-serif;
  transition: all 0.8s;
}
#sticky-icon a:hover {
  /* display: flex; */
  color: #fff;
  transform: translate(0px, 0px);
}
#sticky-icon a:hover i {
  transform: rotate(360deg);
}
/*.search_icon a:hover i  {
	transform:rotate(360deg);}*/
.whatsapp {
  background-color: #2b2b2b;
  color: #fff;
}
.phone {
  background-color: #2b2b2b;
  color: #fff;
}
.email {
  background-color: #2b2b2b;
  color: #fff;
}
.gmb {
  background-color: #2b2b2b;
  color: #fff;
}
.sticky-icon a i {
  background-color: #fff;
  height: 40px;
  width: 40px;
  color: #000;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  transition: all 0.5s;
}
#sticky-icon a i.fa-whatsapp {
  /* background-color:#FFF; */
  /* color:rgb(5, 211, 5) !important; */
}
#sticky-icon .fa-whatsapp::before {
  color: green;
  font-size: 25px;
  margin-left: 3px;
  margin-right: 22px;
}
#sticky-icon .fa-phone::before {
  color: blue;
  font-size: 25px;
  margin-left: 3px;
  margin-right: 22px;
}
#sticky-icon .fa-envelope::before {
  color: red;
  font-size: 25px;
  margin-left: 3px;
  margin-right: 22px;
}
