@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*font-family: "Prompt", sans-serif;*/
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap");
/*font-family: "Orbitron", sans-serif;*/
* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  font-family: "Prompt", sans-serif;
  overflow-x: hidden;
}

button:focus {
  outline: none;
}

input:focus {
  outline: none;
}

a {
  color: #1b70bb;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: 0px;
}

/*#### Common css start ####*/
.common-btn1 {
  background-color: #F7931E;
  border-color: #F7931E;
  color: #fff;
  font-size: 16px;
  padding: 8px 15px;
  font-weight: 500;
  transition: all 0.5s;
  text-transform: uppercase;
  border-radius: 0;
}
.common-btn1:hover {
  background-color: #ad8500;
  border-color: #ad8500;
  color: #fff;
  transition: all 0.5s;
}

.common-outline-btn1 {
  background-color: transparent;
  border-color: #F7931E;
  color: #F7931E;
  font-size: 16px;
  padding: 8px 15px;
  font-weight: 500;
  transition: all 0.5s;
  text-transform: uppercase;
  border-radius: 0px;
}
.common-outline-btn1:hover {
  background-color: #F7931E;
  border-color: #F7931E;
  color: #fff;
  transition: all 0.5s;
}

.btn-outline-light {
  position: relative;
  border: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  padding: 8px 15px;
  font-weight: 500;
  transition: all 0.5s;
  text-transform: uppercase;
  border-radius: 0px;
}

.common-title {
  position: relative;
  width: 100%;
}
.common-title h4 {
  position: relative;
  width: 100%;
  color: #000;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 15px;
}
.common-title h4 span {
  position: relative;
  display: inline-block;
  background-color: #FFEFDD;
  border-left: 6px solid #F7931E;
  padding: 10px 15px;
}
.common-title h3 {
  position: relative;
  width: 100%;
  color: #000;
  font-size: 40px;
  font-weight: 600;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.common-title h3 span {
  color: #F7931E;
}
.common-title p {
  position: relative;
  width: 100%;
  color: #A7A7A7;
  font-size: 16px;
  margin-bottom: 15px;
}

/*#### Common css end ####*/
/*#### Header css start ####*/
.header-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}

.top-header {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #303030;
}
.top-header .head-call {
  position: relative;
  width: 100%;
}
.top-header .head-call p {
  position: relative;
  width: 100%;
  color: #F7931E;
  font-size: 16px;
  margin-bottom: 0px;
}
.top-header .head-call p a {
  position: relative;
  color: #fff;
}

.top-head-right {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  align-items: center;
}
.top-head-right .head-social {
  position: relative;
}
.top-head-right .head-social ul {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.top-head-right .head-social ul li {
  position: relative;
  margin-right: 20px;
}
.top-head-right .head-social ul li a {
  font-size: 20px;
  color: #fff;
  transition: all 0.5s;
}
.top-head-right .head-social ul li a:hover {
  color: #fff;
}

.middle-header {
  position: relative;
  width: 100%;
}
.middle-header .navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.middle-header .navbar .menu-wrap {
  position: relative;
}

.middle-header .menu-wrap .main-menu {
  position: relative;
}

.middle-header .menu-wrap .main-menu li {
  position: relative;
  padding: 0px 6px;
}

.middle-header .menu-wrap > .main-menu > li {
  padding: 0px 10px;
}

.middle-header .menu-wrap .main-menu li a {
  position: relative;
  color: #FFFFFF;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 6px;
}

.middle-header .menu-wrap .main-menu li.current_page_item a {
  color: #F7931E;
}

.middle-header .menu-wrap .main-menu li.current_page_parent a {
  color: #F7931E;
}

.middle-header .navbar .main-menu > li.menu-item-has-children:after {
  content: "+";
  font-family: fontawesome;
  position: absolute;
  top: 20%;
  right: 0px;
  display: inline-block;
  color: #F7931E;
  font-size: 13px;
}

.middle-header .navbar .main-menu > li .sub-menu {
  background-color: rgba(247, 147, 30, 0.7);
  text-align: left;
  padding: 0px;
  border: 0;
  min-width: 230px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 0;
}

.middle-header .navbar .main-menu > li .sub-menu li a {
  padding: 6px 0px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  border-bottom: 1px solid #E8E8E8;
}

.middle-header .navbar .main-menu > li .sub-menu li:last-child a {
  border-bottom: 0px;
}

.head-right-wrap {
  position: relative;
}
.head-right-wrap ul {
  position: relative;
  margin-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.head-right-wrap ul li {
  position: relative;
}

/*#### Header css end ####*/
/*#### Banner css start ####*/
.banner-wrapper {
  position: relative;
  width: 100%;
}
.banner-wrapper .banner-sld-items {
  position: relative;
}
.banner-wrapper .banner-sld-items img {
  position: relative;
  width: 100%;
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transform: scale(1.2);
}
.banner-wrapper .banner-sld-items.slick-active img {
  transform: scale(1);
  z-index: 1;
}
.banner-wrapper .banner-sld-items::before {
  content: "";
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 78.37%);
  z-index: 2;
}
.banner-wrapper .banner-sld-items .banner-content {
  position: relative;
  width: 100%;
}
.banner-wrapper .banner-sld-items .banner-content h4 {
  position: relative;
  width: 100%;
  color: #F7931E;
  font-size: 24px;
  margin-bottom: 15px;
}
.banner-wrapper .banner-sld-items .banner-content h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 10px;
}
.banner-wrapper .banner-sld-items .bnr-right-content {
  position: relative;
  width: 80%;
  text-align: right;
}
.banner-wrapper .banner-sld-items .bnr-right-content p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
}

.banner-content-wrap {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

#banner-slider .slick-dots {
  position: absolute;
  bottom: 150px;
  margin-bottom: 0;
  display: flex;
  left: calc(15% + 40px);
  line-height: 0;
}
#banner-slider .slick-dots li {
  padding: 0px 0px;
}
#banner-slider .slick-dots li button {
  font-size: 0px;
  width: 20px;
  height: 4px;
  border-radius: 10px;
  background-color: #6B6B6B;
  border: 0;
  line-height: 0;
  padding: 0;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.35, 0, 0.5, 1);
}
#banner-slider .slick-dots li.slick-active button {
  width: 30px;
  height: 4px;
  border-radius: 8px;
  background-color: #fff;
}

.banner-counter-wrap {
  position: absolute;
  left: 15%;
  bottom: 140px;
}
.banner-counter-wrap .banner-counter {
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

/*#### Banner css end ####*/
/*### About us css start ####*/
@keyframes float {
  0%, 100% {
    transform: translatey(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}
.about-us-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 30px;
}
.about-us-wrapper::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 10%;
  width: 250px;
  height: 260px;
  background-image: url(../images/globe-img.png);
  background-repeat: no-repeat;
  background-size: contain;
  animation-name: float, up;
  animation-duration: 3s;
  animation-timing-function: ease-out, ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  animation-direction: normal, alternate;
}

.about-left-wrap {
  position: relative;
  width: 100%;
  margin-top: -60px;
}
.about-left-wrap .about-img {
  position: relative;
  width: 100%;
}
.about-left-wrap .about-img img {
  position: relative;
  width: 100%;
}
.about-left-wrap .about-read-btn {
  position: absolute;
  top: 44%;
  left: 40%;
  display: inline-flex;
  width: 90px;
  height: 90px;
  background-color: #F7931E;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2px;
  border: 2px solid #fff;
  z-index: 1;
  font-family: "Orbitron", sans-serif;
  color: #fff;
  font-weight: 500;
}

.about-right-content {
  position: relative;
  width: 100%;
  z-index: 1;
}
.about-right-content h5 {
  position: relative;
  width: 100%;
  color: #F7931E;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}
.about-right-content p {
  position: relative;
  width: 100%;
  color: #A7A7A7;
  font-size: 16px;
  margin-bottom: 10px;
}

/*### About us css end ####*/
/*### Services css start ####*/
.services-wrapper {
  position: relative;
  width: 100%;
  padding: 80px 0px;
  background-color: #292D3C;
  overflow: hidden;
}
.services-wrapper .common-title h4 span {
  background-color: #3D4356;
  color: #F7931E;
}
.services-wrapper .common-title h3 {
  color: #fff;
}

#services-slider .slick-list {
  width: 150%;
}
#services-slider .services-sld-items {
  position: relative;
  padding: 0px 15px;
}

#services-slider .services-sld-items:nth-child(odd) .services-wrap {
  flex-direction: column-reverse;
}
#services-slider .services-sld-items:nth-child(odd) .services-wrap .services-btn {
  top: auto;
  bottom: 0;
}

.services-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background-color: #1D202C;
}
.services-wrap .services-content {
  position: relative;
  width: 100%;
  padding: 15px 15px;
  min-height: 160px;
}
.services-wrap .services-content h4 {
  position: relative;
  width: 100%;
  font-size: 50px;
  color: #2E3038;
  font-weight: 600;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 5px;
}
.services-wrap .services-content h3 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 22px;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.services-wrap .services-content .services-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: #F7931E;
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}
.services-wrap .services-content .services-btn i {
  position: relative;
  transform: rotate(45deg);
}
.services-wrap .services-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.services-wrap .services-img img {
  position: relative;
  width: 100%;
  transition: all 0.5s;
}
.services-wrap:hover .services-img img {
  transform: scale(1.1);
}

#services-slider .slick-track {
  position: relative;
  display: flex;
}

#services-slider .testim-thumbnail-sld-items {
  border-right: 0.5px solid #F4ECE4;
  height: auto;
  position: relative;
  min-height: auto;
}

#services-slider button.slick-arrow {
  position: absolute;
  right: 50px;
  top: -50px;
  background: #1D202C;
  border: 0;
  padding: 0;
  font-size: 16px;
  color: #F7931E;
  width: 30px;
  height: 30px;
}

#services-slider button.slick-arrow.slick-prev {
  right: 85px;
}

/*### Services css end ####*/
/*### introducing-guard css start ####*/
.introducing-guard-wrapper {
  position: relative;
  width: 100%;
  padding-top: 60px;
}

.introducing-guard-content {
  position: relative;
  width: 90%;
  margin-left: auto;
}

.introducing-guard-img {
  position: relative;
  width: 100%;
  text-align: right;
}
.introducing-guard-img img {
  position: relative;
  width: 90%;
  margin-left: auto;
}

.testimonials-wrapper {
  position: relative;
  width: 100%;
}
.testimonials-wrapper .testimonials-inner-wrap {
  position: relative;
  width: 100%;
  background-color: #F5F5F5;
  margin-bottom: -60px;
  z-index: 1;
}
.testimonials-wrapper .testimonials-inner-wrap .testimonials-left-img {
  position: relative;
  width: 100%;
}
.testimonials-wrapper .testimonials-inner-wrap .testimonials-left-img img {
  position: relative;
  width: 100%;
}
.testimonials-wrapper .testimonials-inner-wrap .testimonials-content-wrap {
  position: relative;
  width: 100%;
  padding: 15px 15px;
}
.testimonials-wrapper .testimonials-inner-wrap .testimonials-content-wrap .title {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}
.testimonials-wrapper .testimonials-inner-wrap .testimonials-content-wrap .title h3 {
  position: relative;
  width: 100%;
  color: #000;
  font-size: 40px;
  font-weight: 600;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 10px;
}
.testimonials-wrapper .testimonials-inner-wrap .testimonials-content-wrap .title h4 {
  position: relative;
  width: 100%;
  color: #F7931E;
  font-size: 20px;
  font-weight: 600;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 10px;
}
.testimonials-wrapper .testimonials-inner-wrap .testimonials-content-wrap h5 {
  position: relative;
  width: 100%;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.testimonials-wrapper .testimonials-inner-wrap .testimonials-content-wrap .rating {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}
.testimonials-wrapper .testimonials-inner-wrap .testimonials-content-wrap .rating p {
  position: relative;
  width: 100%;
  color: #969696;
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.testimonials-wrapper .testimonials-inner-wrap .testimonials-content-wrap p {
  position: relative;
  width: 100%;
  color: #1D202C;
  font-size: 16px;
  margin-bottom: 10px;
}
.testimonials-wrapper .testimonials-inner-wrap .testimonials-content-wrap h6 {
  position: relative;
  width: 100%;
  color: #1D202C;
  font-size: 16px;
  font-weight: 400;
  padding-left: 30px;
}
.testimonials-wrapper .testimonials-inner-wrap .testimonials-content-wrap h6::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 1px;
  background-color: #F7931E;
  left: 0;
  top: 8px;
}

/*### introducing-guard css end ####*/
/*#### Footer css start ####*/
.footer-top-wrapper {
  position: relative;
  width: 100%;
  background-color: #1B2336;
}
.footer-top-wrapper .line {
  position: relative;
  width: 100%;
}
.footer-top-wrapper .line hr {
  margin-top: 0;
  border-top: 0px solid #28324A;
  opacity: 1;
  background-color: #28324A;
}

.footer-call-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0px;
}
.footer-call-wrap .icon {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: #F7931E;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.footer-call-wrap .info {
  position: relative;
  width: calc(100% - 50px);
  padding-left: 5px;
}
.footer-call-wrap .info h6 {
  position: relative;
  width: 100%;
  color: #F7931E;
  font-size: 16px;
  margin-bottom: 5px;
}
.footer-call-wrap .info h5 {
  position: relative;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
}
.footer-call-wrap .info h5 a {
  color: #fff;
}

.footer-social {
  position: relative;
  width: 100%;
  height: 100%;
  border-left: 1px solid #28324A;
  border-right: 1px solid #28324A;
  display: inline-flex;
  align-items: center;
  padding: 30px 0px;
}
.footer-social ul {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
}
.footer-social ul li {
  position: relative;
  margin-right: 20px;
}
.footer-social ul li a {
  font-size: 20px;
  color: #fff;
  transition: all 0.5s;
}
.footer-social ul li a:hover {
  color: #fff;
}

.newsletter-footer-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0px;
}
.newsletter-footer-wrap .newsletter-foot-title {
  position: relative;
  width: 30%;
  text-align: right;
  padding-right: 10px;
}
.newsletter-footer-wrap .newsletter-foot-title h5 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 16px;
  margin-bottom: 0px;
}
.newsletter-footer-wrap .newsletter-foot-right {
  position: relative;
  width: 70%;
}

/*####*/
.newsletter-wrap {
  position: relative;
  width: 100%;
}

.newsletter-wrap p {
  position: relative;
  width: 100%;
  color: #BEBEBE;
  font-size: 15px;
}

.newsletter-frm {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.newsletter-frm .input-text {
  position: relative;
  width: calc(100% - 100px);
}

.newsletter-frm .input-text .form-control {
  padding: 10px 10px;
  border-radius: 0px 0px 0px 0px;
  background-color: #2B3650;
  border: 1px solid #2B3650;
  border-right-color: #2B3650;
  color: #fff;
  height: 45px;
}

.newsletter-frm .input-text .form-control:focus {
  box-shadow: none;
  outline: none;
}

.newsletter-frm .input-text .form-control::-moz-placeholder {
  color: #6B6B6B;
}

.newsletter-frm .input-text .form-control::placeholder {
  color: #6B6B6B;
}

.newsletter-frm .submit {
  position: relative;
  width: 100px;
}

.newsletter-frm .submit .btn-warning {
  position: relative;
  width: 100%;
  background-color: #F7931E;
  border-color: #F7931E;
  color: #fff;
  height: 45px;
  padding: 0;
  font-weight: 600;
  border-radius: 0px 0px 0px 0px;
}

/*###*/
.home .footer-call-wrap, .home .footer-social, .home .newsletter-footer-wrap {
  padding-top: 90px;
}

/*#### top Footer css end ####*/
/*##### Footer css start ####*/
.footer-wrapper {
  position: relative;
  width: 100%;
  background-color: #1B2336;
  padding-top: 80px;
  padding-bottom: 60px;
}

.footer-inner-wrap {
  position: relative;
  width: 100%;
}
.footer-inner-wrap h3 {
  position: relative;
  width: 100%;
  color: #F7931E;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 35px;
}
.footer-inner-wrap p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-family: "Orbitron", sans-serif;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.footer-logo {
  position: relative;
  width: 100%;
}

/**/
.footer-inner-wrap .contact-det-list {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-inner-wrap .contact-det-list .icon {
  position: relative;
  width: 30px;
  color: #F7931E;
  font-size: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer-inner-wrap .contact-det-list .content {
  position: relative;
  width: calc(100% - 30px);
  padding-left: 5px;
}

.footer-inner-wrap .contact-det-list .content h4 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 14px;
  margin-bottom: 5px;
}

.footer-inner-wrap .contact-det-list .content p {
  position: relative;
  font-size: 14px;
  word-break: break-all;
  margin-bottom: 0px;
  color: #fff;
  text-transform: uppercase;
  font-family: "Prompt", sans-serif;
}

.footer-inner-wrap .contact-det-list .content p a {
  color: #fff;
}

/**/
.footer-menu {
  position: relative;
  width: 100%;
}
.footer-menu ul {
  position: relative;
  width: 100%;
}
.footer-menu ul li {
  position: relative;
  width: 100%;
  padding: 5px 0px;
  padding-left: 20px;
}
.footer-menu ul li::before {
  content: "\f111";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "fontawesome";
  font-size: 6px;
  color: #fff;
}
.footer-menu ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-copyright {
  position: relative;
  width: 100%;
}
.footer-copyright p {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 12px;
  margin-bottom: 0;
  font-weight: 400;
}

/*##### Footer css end ####*/
/*### inner pages css start ###*/
.inner-banner {
  position: relative;
  width: 100%;
  padding: 0px 0px;
  z-index: 1;
}
.inner-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.inner-banner img {
  position: relative;
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.inner-banner .inner-banner-cont {
  position: absolute;
  bottom: 10%;
  width: 100%;
  left: 0;
  z-index: 2;
}

.inner-banner .inner-banner-cont h1 {
  position: relative;
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0px;
  text-align: right;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 10px;
}

.inner-banner .inner-banner-cont .breadcrumb {
  position: relative;
  width: 100%;
  justify-content: end;
}

.inner-banner .inner-banner-cont .breadcrumb li {
  position: relative;
  color: #fff;
  font-size: 16px;
}

.inner-banner .inner-banner-cont .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

.inner-banner .inner-banner-cont .breadcrumb li a {
  position: relative;
  color: #F7931E;
  font-size: 16px;
}

.main-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.cms-content {
  position: relative;
  width: 100%;
}

.cms-content h3 {
  position: relative;
  width: 100%;
  color: #000;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cms-content h4 {
  position: relative;
  width: 100%;
  color: #F7931E;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cms-content h5 {
  position: relative;
  width: 100%;
  color: #A7A7A7;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cms-content p {
  position: relative;
  width: 100%;
  color: #A7A7A7;
  font-size: 15px;
  margin-bottom: 10px;
}

.cms-content ul {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.cms-content ul li {
  position: relative;
  width: 100%;
  padding-left: 20px;
  font-size: 15px;
  color: #A7A7A7;
  margin-bottom: 8px;
}

.cms-content ul li:before {
  content: "\f111";
  font-family: fontawesome;
  font-size: 10px;
  position: absolute;
  left: 0px;
  top: 4px;
  color: #F7931E;
}

/*### inner pages css end ###*/
/*### About us page css start ####*/
.about-page-wrapper {
  position: relative;
  width: 100%;
  padding-top: 30px;
}
.about-page-wrapper .about-left-wrap {
  margin-top: 0px;
}

/*### About us page css end ####*/
/*### Contact us page css start ####*/
.contact-us-wrapper {
  position: relative;
  width: 100%;
  background-color: #F5F5F5;
  padding: 60px 0px;
}

.contact-left-form-wrap {
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 20px 20px;
}
.contact-left-form-wrap .common-title h3 {
  font-size: 22px;
}
.contact-left-form-wrap .common-title h4 {
  font-size: 18px;
  color: #F7931E;
}

.form-sec {
  position: relative;
  width: 100%;
}
.form-sec .form-group {
  position: relative;
  width: 100%;
}
.form-sec .form-group .form-control {
  position: relative;
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #173C4B;
}
.form-sec .form-group .form-control:focus {
  box-shadow: none;
  border-color: #F7931E;
}
.form-sec .form-group .comon-btn2 {
  padding: 8px 30px;
  border-radius: 5px;
}

.contact-info-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 25px 25px;
  border-radius: 5px;
  /**/
  /**/
}
.contact-info-wrap .contact-det-list {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.contact-info-wrap .contact-det-list .icon {
  position: relative;
  width: 30px;
  color: #F7931E;
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  border-radius: 50%;
}
.contact-info-wrap .contact-det-list .content {
  position: relative;
  width: calc(100% - 30px);
  padding-left: 5px;
}
.contact-info-wrap .contact-det-list .content h4 {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.contact-info-wrap .contact-det-list .content p {
  position: relative;
  font-size: 16px;
  word-break: break-all;
  margin-bottom: 0px;
  color: #000000;
}
.contact-info-wrap .contact-det-list .content p a {
  color: #000000;
}
.contact-info-wrap h4 {
  position: relative;
  width: 100%;
  font-size: 22px;
  color: #1B2336;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 15px;
}
.contact-info-wrap > p {
  position: relative;
  width: 100%;
  color: #A7A7A7;
  font-size: 16px;
  margin-bottom: 15px;
}
.contact-info-wrap .footer-social {
  border: 0px;
  height: auto;
}
.contact-info-wrap .footer-social ul li a {
  color: #F7931E;
}

/*### Contact us page css end ####*/
/*#### Services page css start ####*/
.services-page-list-wrap .services-list:nth-child(odd) .services-wrap {
  flex-direction: column-reverse;
}
.services-page-list-wrap .services-list:nth-child(odd) .services-wrap .services-btn {
  top: auto;
  bottom: 0;
}

/*#### Services page css end ####*/
/*#### FAQ Page css start ###*/
.faq-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
  background-color: #F5F5F5;
}

.faq-wrap {
  position: relative;
  width: 100%;
}
.faq-wrap .accordion-item {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
  border: 1px solid #e6e6e6;
}

.faq-wrapper .accordion-button {
  position: relative;
  color: #000;
  font-size: 18px;
  box-shadow: none;
  padding-right: 42px;
}

.faq-wrapper .accordion-button::after {
  content: "+";
  font-family: "fontawesome";
  background-color: #1B2336;
  color: #fff;
  width: 40px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-image: none;
}

.faq-wrapper .accordion-button:not(.collapsed)::after {
  content: "\f068";
  transform: rotate(0);
  font-family: "fontawesome";
}

.faq-wrapper .accordion-button:not(.collapsed) {
  background-color: #F7931E;
  color: #ffffff;
}

/*#### FAQ Page css end ###*/
/*#### Registraion Form css start #####*/
.registraion-form-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
  background-color: #F5F5F5;
}

.registraion-form-wrap {
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 40px 40px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.0705882353);
  border-radius: 8px;
}
.registraion-form-wrap .form-group {
  position: relative;
  width: 100%;
}
.registraion-form-wrap .form-group label {
  position: relative;
  width: 100%;
  color: #000;
  font-size: 16px;
  margin-bottom: 8px;
}
.registraion-form-wrap .form-group label span {
  color: #c02b0a;
  font-size: 12px;
}
.registraion-form-wrap .form-group .form-control {
  position: relative;
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #173C4B;
  border-radius: 10px;
}
.registraion-form-wrap .form-group .form-control:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #F7931E;
}
.registraion-form-wrap .form-group.FileUpload-box label {
  position: relative;
}
.registraion-form-wrap .form-group.FileUpload-box label .form-control {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0px;
  opacity: 0;
}
.registraion-form-wrap .form-group.FileUpload-box label .Custom-UploadFile {
  width: 100%;
  background: rgba(0, 0, 0, 0.02);
  border: 1px dashed #ccc;
  border-radius: 4px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  min-height: 160px;
}
.registraion-form-wrap .form-group.FileUpload-box label .Custom-UploadFile .FileClick-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  color: #3E3E3E;
  background-color: #F3F3F3;
  box-shadow: unset;
  text-transform: uppercase;
  font-weight: 600;
  font-family: inherit;
  font-style: unset;
  padding: 5px 20px;
  min-height: 42px;
  font-size: 13px;
}
.registraion-form-wrap .form-group.FileUpload-box label .Custom-UploadFile .FileClick-btn:hover {
  background: #f6961d;
  transition: 1s;
}

/*#### Registraion Form css end #####*/
/*#### testimonials css start ####*/
.testimonials-page-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
  background-color: #F5F5F5;
}

.testimonials-list {
  position: relative;
  width: 100%;
  padding: 15px 15px;
  background-color: #fff;
}
.testimonials-list h3 {
  position: relative;
  width: 100%;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.testimonials-list .rating-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.testimonials-list .rating-wrap .rating {
  position: relative;
  font-size: 16px;
  color: #F7931E;
  margin-right: 10px;
}
.testimonials-list .rating-wrap span {
  position: relative;
  color: #969696;
  font-size: 14px;
  margin-top: 0px;
  margin-bottom: 0px;
}
.testimonials-list p {
  position: relative;
  width: 100%;
  color: #000;
  font-size: 15px;
  margin-bottom: 10px;
}
.testimonials-list h6 {
  position: relative;
  width: 100%;
  color: #1D202C;
  font-size: 16px;
  font-weight: 400;
  padding-left: 30px;
}
.testimonials-list h6::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 1px;
  background-color: #F7931E;
  left: 0;
  top: 8px;
}

/**/
.rate-area {
  float: left;
  border-style: none;
}

.rate-area:not(:checked) > input {
  position: absolute;
  top: -9999px;
  clip: rect(0, 0, 0, 0);
}

.rate-area:not(:checked) > label {
  float: right;
  width: 0.8em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 180%;
  color: lightgrey;
}

.rate-area:not(:checked) > label:before {
  content: "★";
}

.rate-area > input:checked ~ label {
  color: #F7931E;
}

.rate-area:not(:checked) > label:hover,
.rate-area:not(:checked) > label:hover ~ label {
  color: #F7931E;
}

.rate-area > input:checked + label:hover,
.rate-area > input:checked + label:hover ~ label,
.rate-area > input:checked ~ label:hover,
.rate-area > input:checked ~ label:hover ~ label,
.rate-area > label:hover ~ input:checked ~ label {
  color: #F7931E;
}

/**/
.testimonials-review-form {
  position: relative;
  width: 100%;
  padding: 15px 15px;
  background-color: #fff;
}
.testimonials-review-form .form-group {
  position: relative;
  width: 100%;
  display: block;
  clear: both;
}
.testimonials-review-form .form-group > label {
  position: relative;
  width: 100%;
  color: #000;
  font-size: 16px;
  margin-bottom: 6px;
  clear: both;
}
.testimonials-review-form .form-group .form-control {
  position: relative;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #171717;
  border-radius: 5px;
}
.testimonials-review-form .form-group .form-control:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #F7931E;
}

/*#### testimonials css end ####*/
/*### ratings page css start ####*/
.ratings-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}
.ratings-wrapper table {
  border: 1px solid #dee2e6;
}
.ratings-wrapper table thead {
  vertical-align: middle;
}
.ratings-wrapper table thead tr td {
  background-color: #1B2336;
  color: #fff;
  font-size: 15px;
}
.ratings-wrapper table tbody tr td {
  font-size: 14px;
  color: #000;
  padding: 10px 10px;
}

/*### ratings page css end ####*/
/*### single our services css start ####*/
.single-our-services-wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}
.single-our-services-wrapper .single-srv-left-img {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.single-our-services-wrapper .single-srv-left-img img {
  position: relative;
  width: 100%;
}

.single-services-content {
  position: relative;
  width: 100%;
}
.single-services-content h3 {
  position: relative;
  width: 100%;
  color: #1B2336;
  font-size: 30px;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.single-services-content p {
  position: relative;
  width: 100%;
  color: #A7A7A7;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 10px;
}


/*### single our services css end ####*//*# sourceMappingURL=style.css.map */


.password-mismatch-message {
  font-size: 14px;
  color: red;
}

.wpcf7-form .fa.fa-eye-slash{
  display: none !important;
}

.footer-call-wrap .info h6 {
    text-transform: lowercase;
}