@import url('https://fonts.googleapis.com/css2?family=Khand:wght@300;400;500;600;700&family=Poppins: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');

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

body {
  font-family: "Poppins", sans-serif;
  background-color: #0a0a0a;
}

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

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

ul {
  padding: 0;
  margin: 0;
}

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

:root {
  --c1: #000;
  --c2: #fff;
  --c3: #0aa9ed;
  --c4: #b8b8b8;
  --f1: "Khand";
}

/* inner-wrapper */

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

.inner-header:before {
  width: 100%;
  height: 100%;
  content: "";
  background: rgb(0 0 0 / 85%);
  position: absolute;
  left: 0;
  top: 0;
}

.inner-header .container {
  position: relative;
  height: 100%;
}

.inner-header .inner-header-title h2 {
  color: #fff;
  font-size: 120px;
  font-weight: 300;
  text-transform: uppercase;
}

/* end inner-wrapper */

/* header */

.header {
  padding: 30px 0px;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 999 !important;
  transition: all .5s;
  background-color: transparent;
  padding-top:5px;
}

.header-nav ul {
  display: flex;
  justify-content: space-evenly;
  gap: 50px;
  align-items: center;
}

.header-nav ul li a {
  color: var(--c2);
  font-family: var(--f1);
  font-size: 20px;
  transition: all .5s;
  position: relative;
  text-transform: capitalize;
}

.header-nav ul li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 1px;
  background-color: var(--c3);
  transition: all .5s;
}

.header-nav ul li a:hover::before {
  right: unset;
  left: 0;
  width: 100%;
}

.header-logo {
  width: 70%;
  transform: scale(1);
  margin: 0 auto;
  transition: all .5s;
  margin-left:0px;
}


/* banner */


section.banner {
  position: relative;
  height: 957px;
}

.banner-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
}

.banner-img video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  padding-top: 200px;
}

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

.banner-title h4 {
  text-transform: uppercase;
  color: var(--c3);
  font-size: 22px;
  font-weight: 300;
}

.banner-title h2 {
    color: var(--c2);
    margin: 5px 0px 20px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 300;
    text-transform: uppercase;
}
.web-btn a {
    transition: all .5s;
    position: relative;
    padding: 25px 85px;
    background-color: var(--c3);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--c2);
    overflow: hidden;
    text-transform: uppercase;
}

.web-btn a:hover {
  box-shadow: 0px 0px 15px 0px var(--c2);
}

.banner-btn a::before {
  content: 'Get A Quote' !important;
}

.web-btn a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all .5s;
    border-radius: 5px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c2);
    font-weight: 600;
    visibility: visible;
    opacity: 1;
    letter-spacing: 2px;
}

.web-btn a:hover::before {
  top: -100px;
}

.web-btn a::after {
    content: '\f061';
    font-family: 'FontAwesome';
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    transition: all .5s;
    border-radius: 5px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c2);
    font-weight: 500;
    font-size: 20px;
}

.web-btn a:hover::after {
  bottom: 0;
}

/* spacing */

.spacing {
  padding: 130px 0px 0px;
}

/* about */

.about-btn a::before {
  content: 'Learn More';
}

.web-title h2 {
    color: var(--c3);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 40px;
}
.about-main h2 {
    font-size: 40px;
    color: var(--c3);
    font-weight: 600;
}
p {
  color: var(--c2);
  font-size: 16px;
  line-height: 1.5;
  margin: 0 !important;
}

.about-img {
  overflow: hidden;
  border-radius: 13px;
}

.about-img img {
  border-radius: 13px;
  transition: all .5s;
}

.about-img img:hover {
  transform: scale(1.1);
}
.about-content {
    padding-left: 30px;
}

.about-content p {
    line-height: 1.8;
}
.about-video video {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 15px;
  height: 430px;
}

.about-video {
  border-radius: 15px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/*   background-color: #000000ad; */
  border-radius: 15px;
  z-index: 1;
}

/* service */

.service-btn a::before {
  content: 'Learn More';
}

.service-img video {
    object-fit: cover;
    width: 100% !important;
    height: 135px;
    aspect-ratio: 1.2;
}
.service-box {
    background: #121212;
    padding: 20px;
    border-radius: 20px;
    border: 2px solid var(--c3);
    cursor: pointer;
    transition: all .5s;
	height:100%;
}
.service-box:hover {
    box-shadow: 0 8px 15px #0AA9ED;
}
.service-content {
    background-color: #121212;
    padding: 0px 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.service-content h3 {
    color: var(--c3);
    font-weight: 600;
    font-size: 20px;
	margin-top:10px;
}

.service-content p {
  margin: 20px 0px 0px !important;
  line-height:27px;
}

.brands-img {
  margin: 0px 20px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 100%;
  width:180px !important;
}

/* mini-banner */

.mini-banner-btn a::before {
  content: 'WORK WITH US' !important;
}

.mini-img img {
  object-fit: cover;
  height: 570px;
}

.mini-bg .col-lg-4 {
  padding: 0;
  height: 100%;
  /* display: flex; */
  /* align-items: center; */
}

/* .mini-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
} */
.second-content {
    position: relative;
}
.banner-main-con {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.mini-banner {
    position: relative;
    z-index: 1;
  
    margin-top: 100px;
    overflow: hidden;
}

.mini-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000001c;
    z-index: -1;
}
.mini-banner-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--c2);
}
.mini-banner-content {
    padding: 0 10px;
}
.footer {
  margin: 100px 0px 30px;
}

.footer-logo {
  width: 90%;
}

.footer-item h2 {
  color: var(--c3);
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-item ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.footer-item ul li {
  color: var(--c2);
  font-size: 15px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.footer-item ul li a {
  color: var(--c2);
  font-weight: 500;
  transition: all .5s;
}

.footer-item ul li a:hover {
  margin-left: 10px;
  color: var(--c3);
}

.footer-bottom {
  margin-top: 50px;
  padding: 30px 0px 0px;
  border-top: 1px solid var(--c2);
}

.footer-bottom .footer-item ul {
  flex-direction: row;
  gap: 30px;
  justify-content: end;
  margin: 0;
}

.footer-bottom .footer-item ul li a:hover {
  margin: 0;
}

/* loader */

.overlay {
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  z-index: 999999;
  background-color: #0a0a0a;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.overlay-loader {
  width: 300px;
}

.brands-img a {
  display: block !important;
}

.brands-img a img {
  height: 180px;
  object-fit: contain;
  width: 180px;
}

.mini-bg .row {
  height: 100%;
  align-items: center;
  justify-content: center;
}

.mini-img {
  height: 100%;
  align-items: center;
  display: flex;
  width: 100%;
}

/* RESPONSIVE MENU */

.responsive-menu {
  position: fixed;
  top: -100%;
  left: 0%;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #000000c9;
}

.responsive-menu.active {
  top: 0;
  transition: all .5s;
}

.responsive-menu-main {
  padding: 30px 50px 50px 50px;
  width: 90%;
  background-color: var(--c1);
  height: 100%;
  position: relative;
  left: -100% !important;
}

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

.responsive-logo {
  width: 100px;
  margin-bottom: 20px;
}

.responsive-links ul li a {
  color: var(--c2);
  padding: 10px 0px;
  display: block !important;
  position: relative;
  font-weight: 500;
  font-size: 24px;
  transition: all .5s;
}

.responsive-links ul li {
  border-bottom: 1px solid #ffffff4a;
  position: relative;
}

.resp-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--c7);
  padding: 6px 0px;
}

.responsive-icon a i {
  display: block;
  font-family: 'FontAwesome';
}

.responsive-icon {
  position: absolute;
  top: 40px;
  right: 40px;
}

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

.responsive-links ul li ul {
  border-top: 1px solid #8080803d;
}

.responsive-links ul li i.active::before {
  content: "\f068";
}

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

.responsive-links ul li.active::before {
  content: "\f068";
}

.responsive-links ul li ul li ul li:has(strong) {
  border-bottom: 0px;
  margin-top: 10px;
}

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

.responsive-links::-webkit-scrollbar {
  width: 10px;
  background-color: transparent;
}

.responsive-links::-webkit-scrollbar-thumb {
  background: var(--c1);
  border-radius: 0;
}

.responsive-links ul li ul li a {
  padding-left: 30px;
}

.responsive-links ul li ul li ul li a {
  padding-left: 60px;
}

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

/* contact */

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

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

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

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

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

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

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

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

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

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

.contact-us {
  padding-bottom: 100px;
}

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

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

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

/* Contact Us */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wrap-form-submit input:hover,
.contact-submit-btn input:hover {
  box-shadow: 0px 10px 60px 0px #0aa9ed59;
  color: var(--c3);
}

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

.inner-header-title {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.inner-header .container .row {
  height: 100%;
}

.web-title h4 {
  color: var(--c2);
}

.values-box {
  gap: 20px;
  align-items: center;
  text-align: center;
  padding: 0px 30px;
  border: 1px solid var(--c3);
  transition: all .5s;
  border-radius: 12px;
  margin: 15px 0px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.values-box i {
  color: var(--c3);
  font-size: 50px;
}

.values-box h3 {
  color: var(--c3);
  font-size: 40px;
  font-weight: 300;
  text-transform: uppercase;
}

.values-box:hover {
  box-shadow: 0px 0px 10px 0px var(--c3);
}

.why-choose-box p {
  font-size: 20px;
}

.videos-box iframe {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.videos-box {
  margin: 20px 0px;
}

.services-single-btn a::before {
  content: 'Book Now';
}

.about-img video {
  height: 400px;
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
}

.about-content.w-full {
  width: 100%;
}