/* FONT IMPORT */

/* Google Font */

@import url("https://fonts.googleapis.com/css2?family=Averia+Serif+Libre:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
@import url('https://fonts.cdnfonts.com/css/lucida-unicode-calligraphy');

/* Local Font */

@font-face {
  font-family: "rodfat";
  src: url("../fonts/rodfat.ttf");
}

@font-face {
  font-family: "aptos";
  src: url("../fonts/aptos.ttf");
}

:root {
  --white: #fff;
  --black: #000;
  --primary: #0078a4;
  --secondary: #ff3399;
  --font-aptos: "aptos", sans-serif;
  --font-lucida-unicode-calligraphy: 'Lucida Unicode Calligraphy', sans-serif;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  background: url(../images/banner-bg1.jpg) no-repeat center/cover;
  overflow-x: hidden;
  height: 100%;
  font-family: "Averia Serif Libre", serif;
}

section {
  position: relative;
}

h2,
h3,
h4 {
  font-family: var(--font-aptos);
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: #e3be8f;
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: #e3be8f;
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.preLoader.black {
  background-color: var(--white);
  z-index: 11113;
}

.preLoader.white {
  z-index: 11112;
  background-color: var(--primary);
}

/* PRELOADER */

/* NAV HEADER CSS */
a.top-logo {
  margin: auto;
  width: 235px;
  display: block;
}

.header {
  width: 100%;
  position: absolute;
  top: 8%;
  left: 0;
  z-index: 1;
  right: 0;
  text-align: center;
  user-select: none;
}

.headerLogo {
  margin-bottom: 1.5rem;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.header__wrap {
  margin-top: -8rem;
}

.header__toggle a {
  display: block;
  width: 28px;
  height: 30px;
}

.header__toggle a span:after,
.header__toggle a span:before {
  content: "";
  position: absolute;
  left: 0;
  top: -9px;
}

.header__toggle a span:after {
  top: 9px;
}

.header__toggle a span {
  position: relative;
  display: block;
}

.header__toggle a span,
.header__toggle a span:after,
.header__toggle a span:before {
  width: 100%;
  height: 3px;
  background: var(--secondary);
  transition: all 0.3s;
  backface-visibility: hidden;
  border-radius: 2px;
}

/* on activation */

.header__toggle.on a span {
  background-color: transparent;
}

.header__toggle.on a span:before {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.on a span:after {
  transform: rotate(-45deg) translate(7px, -8px);
}

.header__toggle.on+.header__nav {
  opacity: 1;
  visibility: visible;
}

.header__nav {
  background: #00999985;
  position: relative;
  width: max-content;
  padding: 1rem;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s;
}

.header__nav li a {
  font-size: 1.25rem;
  color: var(--white);
  padding: 0 0;
  display: inline-block;
  text-transform: capitalize;
  position: relative;
}

.navbar-nav {
  align-items: center;
  gap: 4.5rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1.25rem;
  color: var(--primary);
  padding: 0 0;
  display: inline-block;
  text-transform: capitalize;
  position: relative;
}

.navbar-nav .nav-item .nav-link:hover {
  color: var(--secondary);
}

.navbar-nav .nav-item .nav-link:before {
  content: "";
  position: absolute;
  background: var(--primary);
  width: 6px;
  height: 2px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -2.5rem;
}

.navbar-nav .nav-item:last-child .nav-link:before {
  display: none;
}

.navbar-collapse {
  background: url(../images/borderLine.png) no-repeat;
  background-position: center;
  height: 73px;
  width: 100%;
}

/* !NAV HEADER CSS */

.mainSec {
  height: 92vh;
  display: flex;
  align-items: center;
  padding: 0 32rem;
  padding-right: 21.72rem;
  width: 100%;
}

.banPath {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 1.5rem;
  z-index: -1;
}

.mainWrap {
  /* margin-bottom: 10rem; */
  overflow-y: auto;
  height: 570px;
  margin-top: 8rem;
}

.references-img {
  cursor: pointer;
}

.references-img img {
  width: 250px;
  object-fit: contain;
  margin-top: 1rem;
}

.bannerlaptop {
  position: absolute;
  inset: 0;
}

.bannerlaptop::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.bannerlaptop img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mainContent h2 {
  color: var(--primary);
  font-size: 1.375rem;
  margin: 0 0 0.5rem;
}

.mainContent p {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 28px;
  font-family: var(--font-aptos);
}

.callBox h3 {
  color: var(--primary);
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.callBox h3 span {
  font-size: 1rem;
}

.callBox a {
  color: var(--secondary);
  font-size: 1.25rem;
  font-family: "rodfat";
}

.callBox {
  border: 1px solid var(--secondary);
  width: 180px;
  height: 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  margin: 0 0 0 auto;
}

.virtualBox {
  border: 2px solid var(--secondary);
  width: 370px;
  padding: 35px 0;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 40%;
  transform: rotate(350deg);
  position: absolute;
  left: 11rem;
  top: 32%;
  transition: 0.8s ease;
  cursor: pointer;
}

.virtualBox:hover {
  opacity: 100%;
}

.virtualBox h3 {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.virtualBox p {
  color: var(--primary);
  text-align: center;
  font-size: 0.875rem;
  margin: 0;
  width: 80%;
  font-weight: 300;
}

.uniqueBox {
  top: inherit;
  bottom: 6rem;
  left: 4rem;
}

.uniqueBox p {
  width: 91%;
}

.hireBox {
  left: inherit;
  right: 5rem;
  width: 460px;
  transform: rotate(370deg);
  border-radius: 2rem;
  top: 34%;
}

.hireBox p {
  width: 85%;
}

.bannerSlider .swiper-pagination {
  margin-bottom: 8rem;
}

.bannerSlider .swiper-pagination-bullet {
  border: 1px solid var(--primary);
  width: 12px;
  height: 12px;
  opacity: 100%;
  background: transparent;
}

.bannerSlider .swiper-pagination-bullet-active {
  background: var(--secondary);
  border-color: var(--secondary);
}

.aboutImage {
  text-align: right;
  margin-bottom: -1.5rem;
}

.aboutImage img {
  border-radius: 10px;
}

.aboutContent p {
  margin-bottom: 1rem;
}

.aboutContent .callBox {
  margin: -0.5rem 0 0 auto;
}

.aboutFlex {
  display: flex;
  align-items: center;
}

.referenceContent .callBox {
  margin: 8rem 0 0 auto;
}

.serviceContent ul li span {
  color: var(--primary);
  font-size: 0.875rem;
}

.serviceContent ul {
  display: flex;
  flex-flow: column wrap;
  gap: 0px 1rem;
  max-height: 210px;
  list-style: disc;
  list-style-position: inside;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.serviceContent .callBox {
  margin: 0 0 0 auto;
}

.quoteForm input {
  background: transparent;
  border: unset;
  border-bottom: 1px solid var(--primary);
  border-radius: unset;
  height: 20px;
  outline: unset;
  box-shadow: unset !important;
  padding-left: 0;
}

.quoteForm label {
  text-transform: uppercase;
  font-family: "rodfat";
  color: var(--secondary);
  margin: 0;
}

.quoteForm span {
  color: var(--primary);
  text-transform: uppercase;
  font-family: "rodfat";
  font-size: 0.875rem;
  display: block;
  margin-bottom: 10px;
}

.formFlex {
  display: flex;
  gap: 2rem;
}

.leftSlide {
  width: 300px;
}

.quoteForm button {
  background: url(../images/btnShape.png) no-repeat;
  width: 140px;
  height: 39px;
  color: var(--white);
  font-family: "rodfat";
  font-size: 0.875rem;
  outline: unset;
  border: unset;
  margin: 0.625rem 0 1rem 0;
}

.quoteContent .callBox {
  margin: -4rem 0 0 auto;
}

.bannerSlider {
  padding-bottom: 0.5rem;
}

/* about-page */
.about-page {
  align-items: center;
}

.about-page .mainWrap {
  margin: 0;
}

.main-wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

ul.left-navigation li a {
  width: 200px;
  background: #0000ff;
  display: block;
  padding: 0px 4px;
  font-size: 1rem;
  color: var(--white);
  text-align: center;
  line-height: 26px;
  border-radius: 10px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-family: var(--font-lucida-unicode-calligraphy);
}

ul.left-navigation {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 0;
  /* margin-top: 6.5rem; */
  margin-left: -2rem;
  position: absolute;
  left: 24%;
  z-index: 111;
  top: 0;
  bottom: 0;
  margin: auto;
  justify-content: center;
}

ul.left-navigation li {
  width: 100%;
}

.copyright {
  background: var(--secondary);
  text-align: center;
  border-radius: 24px 27px 130px 118px;
  padding: 2em;
  margin: 4px 3rem 0;
  position: relative;
}

.copyright .box {
  display: block;
  position: absolute;
  top: 50%;
  left: 10rem;
  transform: translateY(-50%);
  width: 80px;
  height: 20px;
  background: var(--black);
  border-radius: 100px;
}

.copyright .center-box {
  display: block;
  width: 450px;
  height: 30px;
  background: var(--black);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0%, 94% 100%, 8% 100%);
}

.copyright .circle {
  display: block;
  position: absolute;
  top: 50%;
  right: 10rem;
  transform: translateY(-50%);
  width: 30px;
  aspect-ratio: 1;
  background: var(--black);
  border-radius: 100%;
}

.copyright p {
  font-size: 24px;
  color: var(--black);
  font-family: var(--font-lucida-unicode-calligraphy);
  margin: 0;
}

.copyright a {
  font-size: 24px;
  color: var(--black);
  font-family: var(--font-lucida-unicode-calligraphy);
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary);
}

/* Handle on hover */
/* ::-webkit-scrollbar-thumb:hover {
  background: #555;
} */
.mainContent {
  margin-top: 1rem;
  width: 97%;
}

.mainSec.abtpg .mainContent {
  width: 93%;
}

.mainSec.abtpg .mainContent p {}

form.quote-form input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgb(234 234 234 / 80%);
  padding-bottom: 1rem;
  font-size: 1rem;
  font-family: var(--font-aptos);
  margin-bottom: 1rem;
  color: var(--white);
}

form.quote-form input::placeholder,
form.quote-form textarea::placeholder {
  color: #0078a4;
}

form.quote-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgb(234 234 234 / 80%);
  padding-bottom: 3rem;
  font-size: 1rem;
  font-family: "rodfat";
  margin-bottom: 0.7rem;
  resize: none;
  color: var(--white);
}

.mainSec.requestpg .mainWrap {
  margin-top: 9rem;
}

.reqstBtn {
  background: url(../images/btnShape.png) no-repeat top center / cover;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 39px;
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--font-aptos);
}

form.quote-form .reqstBtn {
  margin-top: 1.5rem;
}

ul.servc-list {
  margin-left: 0.7rem;
  margin-bottom: 1.5rem;
  column-count: 2;
}

ul.servc-list2 {
  margin-left: 0.7rem;
  margin-bottom: 1.5rem;
  column-count: 2;
}

ul.servc-list li {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 400;
  font-family: var(--font-aptos);
}

ul.servc-list li {
  position: relative;
  padding-left: 1.2rem;
}

ul.servc-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.mainSec.abtepg figure {
  text-align: right;
}

.mainSec.abtepg .mainContent p {}

.mainSec.abtepg .mainContent figure img {
  border-radius: 10px;
}

.mainSec.abtepg .mainContent a i {
  font-size: 2.2rem;
  color: #0077b5;
}

footer {
  width: 100%;
}

.mainSec.requestpg .mainContent {
  width: 89%;
}

.outlook__img {
  position: absolute;
  top: 16%;
  left: 1.1rem;
  transform: translateY(-50%);
}

.outlook__img img {
  width: 300px;
}

.mouse__img {
  position: absolute;
  bottom: 15rem;
  right: 5rem;
}

.mouse__imgLine {
  height: 310px;
  position: absolute;
  top: 10%;
  right: 4.5rem;
  filter: brightness(0) saturate(100%) invert(13%) sepia(100%) saturate(5648%) hue-rotate(323deg) brightness(100%) contrast(104%);
  transform: rotate(14deg);
  z-index: -1;
}

.mainSec.abtepg .aboutImg {
  margin-right: 10rem;
}

.servicepg .mainContent h2 {
  width: 75%;
  text-align: center;
  margin-bottom: 1rem;
}