/* Imports */
/* Icons */
@import url("../../boxicons@2.1.1/css/boxicons.min.css");
/* Fonts */
@import url("../../css2");
/* General Styling */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style-type: none;
}

:root {
  --color-primary: #588CE8;
  --color-secondary: #2f3338;
}

::selection {
  background-color: var(--color-primary);
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0px 0px 0px 0px #30353a;
}

body {
  background: var(--color-secondary);
  overflow-x: hidden;
}
.bodyInnerpages,
.homePage {
  background: url(../images/dark-bg.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.homePage {
  background: url(../images/inner-bg.jpeg);
}
a {
  display: inline-block;
  color: inherit;
  transition: all 300ms ease-in-out;
}

ul,
ol,
dl,
address,
label {
  margin-bottom: 0;
}

.imgFluid {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

button:focus {
  outline: none;
}

i[class^="bx"] {
  vertical-align: middle;
}

/* Universal Classes */
.mar-y {
  margin: 4rem 0;
}

.padd-y {
  padding: 4rem 0;
}

.gotham-bold {
  font-family: var(--font-gotham);
}

.color-primary {
  color: var(--color-primary) !important;
}

.color-secondary {
  color: var(--color-secondary);
}

.bg-primary {
  background: var(--color-primary);
}

.bg-secondary {
  background: var(--color-secondary);
}

/* ThemeBtn */
.themeBtn {
  width: fit-content;
  display: block;
  color: #fff;
  background: url(../images/themeBtn-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-size: 1.0rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  outline: none;
  padding: 1rem 1.75rem;
  transition: all 300ms ease-in-out;
  text-align: center;
}

.themeBtn i {
  font-size: 1.5rem;
}

.themeBtn--border {
  background: url(../images/themeBtn-bg2.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.themeBtn--secondary {
  background: url(../images/themeBtn-bg3.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.themeBtn--center {
  margin: 0.5rem auto;
}

.themeBtn--full {
  width: 100%;
}

.themeBtn:hover {
  background: url(../images/themeBtn-bg3.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: #fff;
}

.themeBtn--lightHover:hover {
  background: url(../images/themeBtn-hover-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: var(--color-secondary);
}

.header-main__btn.themeBtn a {
  transition: all 300ms ease-in-out;
}
.header-main__btn.themeBtn a:hover {
  color: var(--color-primary);
}

/* Section Heading */
.section-content .subHeading {
  font-size: 2.5rem;
  line-height: 1;
}

.section-content .heading {
  font-size: 3rem;
  line-height: 1;
}

.section-content .heading-sm {
  font-size: 2rem;
  line-height: 1;
}

.section-content p {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.5px;
}
/* Sidebar */
.sidebar {
  height: 100vh;
  color: #fff;
  background-color: #00000050;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  border-right: 2px solid #ffffff50;
  padding: 0.5rem;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
.sidebar::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-primary);
  transform: translateX(-100%);
  transition: all 300ms ease-in-out;
}
.sidebar i {
  position: relative;
  z-index: 1;
}
.sidebar:hover {
  padding: 1rem 1rem;
  border-right: 2px solid var(--color-secondary);
}
.sidebar:hover::before {
  transform: translateX(0%);
}
/* Header */
.headerBar {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 1rem 0;
}
.headerBar.innerpagetitle {
  position: static;
}
.headerBar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.headerBar-main__logo {
  width: 240px;
}
.headerBar-main__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.headerBar-main__nav {
  display: flex;
  align-items: center;
}
.headerBar-main__nav li {
  position: relative;
}
.headerBar-main__nav li a {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0;
  margin: 0 0.5rem;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.25px;
}
.headerBar-main__nav li a::after {
  content: "";
  width: 25px;
  height: 10px;
  background-color: var(--color-primary);
  position: absolute;
  bottom: -75%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 300ms ease-in-out;
  clip-path: polygon(100% 100%, 51% 60%, 0 100%, 50% 0);
  opacity: 0;
  visibility: hidden;
}
.header {
  width: 100%;
  height: 100vh;
  background-color: var(--color-secondary);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  transform: translateX(-100%);
  transition: all 1000ms ease-in-out;
}
.header.active {
  transform: translateX(0%);
}
.headerInner {
  display: flex;
}
.header-main {
  width: 45%;
  height: 100vh;
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid #ffffff50;
  padding: 7rem 0 3rem 11rem;
  overflow-y: auto;
  overflow-x: hidden;
}
.header-main__logo {
  width: 350px;
  margin-bottom: 2.5rem;
}
.header-main__logo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-main__nav li {
  position: relative;
  width: max-content;
}
.header-main__nav li a {
  color: #fff;
  font-size: 1.3rem;
  padding: 0rem 0.25rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.25px;
}
.header-main__nav li a::after {
  content: "";
  width: 25px;
  height: 10px;
  background-color: var(--color-primary);
  position: absolute;
  bottom: -75%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 300ms ease-in-out;
  clip-path: polygon(100% 100%, 51% 60%, 0 100%, 50% 0);
  opacity: 0;
  visibility: hidden;
}
.header-main .socailIcons {
  margin: 0 0 1rem;
}
.header-main .socailIcons li a {
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  color: #fff;
}
.header-main__nav li a:hover::after,
.headerBar-main__nav li a:hover::after,
.headerBar-main__nav li a.active::after,
.header-main__nav li a.active::after {
  bottom: -30%;
  opacity: 1;
  visibility: visible;
}
.header-main__nav li a:is(:hover, .active),
.headerBar-main__nav li a:is(:hover, .active) {
  color: var(--color-primary);
}
.closebox {
  width: 60px;
  height: 60px;
  border: 1px solid #ffffff50;
  font-size: 2rem;
  color: #ffffff50;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  margin: 2rem;
  transition: all 300ms ease-in-out;
}
.closebox:hover {
  background-color: #fff;
  color: var(--color-primary);
  cursor: pointer;
}
/* Dropdown */
.dropDown {
  width: 295px;
  background-color: #00000038;
  border-radius: 5px;
  backdrop-filter: blur(10px);
  border: 2px solid #ffffff2e;
  box-shadow: 0 0 30px rgb(0 0 0 / 28%);
  position: absolute;
  top: 150%;
  left: 0%;
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transition: max-height 0.8s ease-out;
  overflow: hidden;
}
.dropDown li {
  width: 100%;
}
.dropDown li a {
  width: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  padding: 1rem 1rem;
}
.dropDown li a::after {
  content: none;
}
.dropDown li a:hover {
  background: var(--color-primary);
  color: #fff;
}
.header-main__nav li:hover .dropDown,
.headerBar-main__nav li:hover .dropDown {
  opacity: 1;
  visibility: visible;
  max-height: 500px;
  transition: max-height 0.8s ease-in;
}

/* Banner */
.banner {
  width: 100%;
  height: 100vh;
  position: relative;
}
.banner::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #00000020;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.banner-video video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.banner__content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  z-index: 1;
}
.banner__content .heading {
  font-size: 4.5rem;
}
.runingText {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ityped-cursor {
  font-size: 1em;
  opacity: 1;
  animation: blink 0.3s infinite;
  animation-direction: alternate;
}
@keyframes blink {
  100% {
    opacity: 0;
  }
}
/* Our Mission */
.ourMission-card {
  width: 100%;
  height: 100%;
  padding-bottom: 6rem;
}
.ourMission-card__video {
  width: 100%;
  height: 100%;
}
.ourMission-card__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ourMission-card__content .title {
  font-size: 2rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0.75rem;
  transition: all 300ms ease-in-out;
  color: var(--color-primary);
}
.ourMission-card__content .title:hover {
  color: #fff;
}
/* Services */
.services {
  width: 80%;
  margin-left: auto;
  padding: 2rem;
  background-color: #fff;
  z-index: 2;
}

.services::before {
  content: "";
  width: 12%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -11.95%;
  background-color: #fff;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.services-card {
  width: 100%;
  height: 100%;
  padding: 5rem 2rem;
  color: #fff;
  text-align: center;
}

.services-bg {
  background-image: url("../images/services-bg1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 300ms ease-in-out;
  clip-path: polygon(50% 0, 100% 20%, 100% 80%, 50% 100%, 0 80%, 0 20%);
}

.services-bg img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(337deg) brightness(106%) contrast(101%);
}

.services-bg:hover {
  transform: scale(1.05);
}

.services-card__img {
  width: 50px;
  height: auto;
  margin-bottom: 0.5rem !important;
  display: block;
  margin: 0 auto;
}

.services-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-card__content .title {
  font-size: 1.75rem;
}

.services-card__content a:hover {
  color: #fff;
}

.login-forget-btn a:hover {
  color: var(--color-secondary);
}

.services-card__content a i {
  font-size: 1.5rem;
}
/* Contact Us */
.contact {
  position: relative;
  overflow-x: hidden;
  z-index: 1;
}

.contactLinks a {
  width: fit-content;
}

.contactLinks a img {
  width: 75px;
  height: auto;
  object-fit: cover;
}

.contactLinks a:hover {
  color: inherit;
}

.contactLinks a div span {
  font-weight: 600;
  transition: all 300ms ease-in-out;
}

.contactLinks a:hover div span {
  color: var(--color-primary);
}

.contact__form {
  background-color: #ffffffd6;
  padding: 10rem 2rem;
  clip-path: polygon(0 23%, 50% 3%, 100% 23%, 100% 78.3%, 50% 97%, 0 78.3%);
  position: relative;
}

/* InputField */
.inputField {
  padding: 0.5rem;
}

.inputField :is(input, textarea) {
  width: 100%;
  height: auto;
  color: #000000;
  border-bottom: 2px solid #00000060 !important;
  padding: 0.75rem 0.5rem;
  resize: none;
  border: none;
  font-weight: 600;
  accent-color: var(--color-primary);
  outline: none;
}

.inputField :is(input, textarea)::placeholder {
  color: #000000;
}

/* Footer */
.footer {
  width: 100%;
  height: 100%;
  background: url(../images/footer-bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: -15rem;
}

.footer-main {
  padding: 16rem 0 2rem;
}

.footer-main__logo {
  width: 90%;
  height: auto;
}

.footer-main__content .heading {
  font-size: 1.5rem;
  position: relative;
  margin-bottom: 1.75rem;
}

.footer-main__content .heading::before {
  content: "";
  width: 50px;
  height: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-primary);
}

.footer-main__content ul li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-main__content ul li a:hover,
.footer-main__content ul li a.active {
  color: var(--color-primary);
}

.footer-main__content ul li a i {
  font-size: 1.5rem;
}

.footer__copyright a:hover {
  color: var(--color-primary);
}
/* SocailIcons */
.socailIcons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.socailIcons a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-primary);
  border-radius: 100%;
  color: var(--color-primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
}

.socailIcons a:hover {
  background: var(--color-primary);
  color: #fff;
}
/* InnerBanner */
.innerBanner {
  width: 100%;
  height: 100%;
  position: relative;
  margin-top: 8rem;
}
.innerBanner-img {
  width: 100%;
  height: 600px;
}
.innerBanner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0 20px 1px #588CE8;
  border-radius: 1rem;
}
.innnerBanner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.innerBanner-login {
  background-image: url("../images/inner-bg-6.png");
}

.innerBanner-signUp {
  background-image: url("../images/inner-bg-7.png");
}
/* Login */
.login {
  margin-bottom: 18rem;
  padding-top: 6rem;
}

.login-forget-btn p {
  padding: 0.5rem;
}

.login-forget-btn a {
  text-decoration: underline !important;
}

.shape__img img {
  clip-path: polygon(50% 0, 100% 20%, 100% 80%, 50% 100%, 0 80%, 0 20%);
}

.testimonials-card img {
  clip-path: circle(50% at 50% 50%);
}

.launchingsoon-video video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.inner-services .services-card {
  padding: 2rem;
}
.inner-services .services-card__content a:hover {
  color: var(--color-secondary);
}
/* services-dropdown */
.services-dropdown {
  margin-top: 8rem;
}
.servicesCard {
  width: 100%;
  height: 100%;
  margin: 0.5rem 0;
}
.servicesCard::before {
  content: "";
  width: 100%;
  height: 400px;
  background-color: #00000050;
  position: absolute;
  top: 0;
  left: 0;
}
.servicesCard-bg {
  width: 100%;
  height: 400px;
}
.servicesCard-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.servicesCard-heading {
  position: absolute;
  top: 28%;
  left: 10%;
  transform: translateY(50%);
}
.servicesCard-heading h2 {
  letter-spacing: 0.05em;
  text-shadow: -1px 1px 6px #000;
  padding-bottom: 8px;
}
.servicesCard-btn {
  position: absolute;
  top: -50px;
  right: -50px;
}
.servicesCard-btn a {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 800ms ease;
}
.servicesCard-btn a > i {
  transform: rotate(140deg);
  font-size: 1.5rem;
}
.servicesCard-btn a:hover {
  width: 80px;
  height: 80px;
}

.list li {
  position: relative;
  padding-left: 1.5rem;
}

.list li::before {
  content: "\ed40";
  font-family: boxicons !important;
  font-weight: 400;
  color: var(--color-primary);
  position: absolute;
  top: 2px;
  left: 0;
}
/* Mobile Responsive */
@media (max-width: 575.98px) {
  .section-content .heading {
    font-size: 2rem;
  }
  .headerBar {
    display: none;
  }
  .sidebar {
    height: auto;
    position: absolute;
    right: 0;
    left: auto;
    border: none;
    background: none;
    z-index: 2;
  }
  .sidebar::before {
    content: none;
  }
  .sidebar:hover {
    padding: 2rem;
    border: none;
  }
  .header-main {
    width: 73% !important;
    padding: 3rem;
    overflow-x: auto;
  }
  .header-main__logo {
    width: 300px;
  }
  .banner__content {
    width: 80%;
  }
  .banner__content .heading {
    font-size: 3rem;
  }
  .innerBanner-img {
    height: 400px;
  }
  .innnerBanner-content {
    transform: translate(-50%, -50%);
  }
  .servicesCard-btn {
    right: 0;
  }
  .about__content {
    text-align: center;
  }
  .list li {
    width: fit-content;
    margin: auto;
  }
  .contact__form {
    clip-path: polygon(50% 8%, 100% 20%, 100% 80%, 50% 92%, 0% 80%, 0% 20%) !important;
  }
  .footer-main__logo {
    width: 55%;
  }
}

@media (max-width: 991.98px) {
  .section-content .heading {
    font-size: 2rem;
  }
  .headerBar {
    display: none;
  }
  .sidebar {
    height: auto;
    position: absolute;
    right: 0;
    left: auto;
    border: none;
    background: none;
    z-index: 2;
  }
  .sidebar::before {
    content: none;
  }
  .sidebar:hover {
    padding: 2rem;
    border: none;
  }
  .header-main {
    width: 65%;
    padding: 3rem;
    overflow-x: auto;
  }
  .header-main__logo {
    width: 300px;
  }
  .banner__content {
    width: 80%;
  }
  .banner__content .heading {
    font-size: 2.5rem !important;
  }
  .innerBanner-img {
    height: 400px;
  }
  .innnerBanner-content {
    transform: translate(-50%, -50%);
  }
  .servicesCard-btn {
    right: 0;
  }
  .about__content {
    text-align: center;
  }
  .list li {
    width: fit-content;
    margin: auto;
  }
  .contact__form {
    clip-path: polygon(50% 2%, 100% 20%, 100% 80%, 50% 98%, 0% 80%, 0% 20%);
  }
  .footer-main__logo {
    width: 55%;
  }
}
