@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Arya:wght@400;700&family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  /* Fonts */
  --font-family: "Arya", sans-serif;
  --second-family: "Albert Sans", sans-serif;
  --third-family: "Montserrat", sans-serif;
  --fourth-family: "Manrope", sans-serif;

  /* Colors */
  --primary: #fa9518;
  --white: #fff;
  --white2: #f8f8f8;
  --black: #000;
  --black2: #010101;
  --black3: #222021;
  --grey: #484848;
  --border: #dedede;
  --border2: #d6d7dd;
  --placeholder: #6c6666;
  --green: #00FF00;

  /* shadow */
  --shadow: var(--secondary) 0px 14px 28px, #00000038 0px 10px 10px;
  --btn-shadow: -1px -1px 5px 0px var(--white), 7px 7px 20px 0px #0003, 4px 4px 5px 0px #0002;
}

/* Default */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-color: var(--primary) transparent;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-thumb {
  background: var(--black);
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
::-moz-selection {
  /*  Firefox */
  color: var(--white);
  background: var(--primary);
}
::selection {
  color: var(--white);
  background: var(--primary);
}
html,
body {
  scroll-behavior: smooth;
  /* overflow-x: hidden; */
}
body {
  position: relative;
}
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
b,
i,
u,
ul,
ol,
li,
span {
  margin: 0;
  padding: 0;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
/* Text Stylings */
h1 {
  font-family: var(--font-family);
  color: var(--primary);
  font-size: 92px;
  font-weight: 700;
  letter-spacing: 0.6px;
}
h2 {
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--black2);
  text-transform: uppercase;
  font-size: 30px;
  letter-spacing: 0.04em;
}
h3 {
  font-family: var(--font-family);
  font-size: 32px;
  letter-spacing: 0.15px;
}
h4 {
  font-family: var(--font-family);
  font-size: 65px;
  font-weight: 400;
  line-height: 70px;
  color: var(--white);
  text-transform: uppercase;
}
h5 {
  font-family: var(--font-family);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}
h6 {
  font-family: var(--font-family);
  color: var(--black2);
  font-size: 18px;
  font-weight: 400;
}
p {
  font-family: var(--second-family);
  color: var(--black2);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 70%;
}
/* header */
header {
  width: 100%;
  z-index: 1000;
  box-shadow: var(--white) 0px 2px 5px -1px, var(--white) 0px 1px 3px -1px;
}
header .header-top {
  background-color: var(--black2);
}
header .header-contact span,
header .header-contact span a {
  font-family: var(--font-family);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: 0.55s ease-in-out;
}
header .header-social {
  text-align: right;
}
header .header-social a {
  color: var(--white);
  transition: all 0.55s ease-in-out;
}
header .header-contact span a:hover,
header .header-social a:hover {
  color: var(--primary);
}
/* Navbar */
nav ul {
  gap: 24px;
}
nav ul li a {
  font-family: var(--font-family);
  color: var(--black2) !important; /* applied to overwrite the default bootstrap style */
  font-weight: 500 !important;
  font-size: 18px !important;
  letter-spacing: 0.15px;
  transition: all 0.55s ease-in-out !important;
}
nav ul li a:hover {
  color: var(--primary) !important; /* applied to overwrite the default bootstrap style */
}
.section {
  padding-top: 70px;
  padding-bottom: 70px;
}
section {
  overflow-x: hidden;
}
.sub-heading {
  position: relative;
  width: fit-content;
}
.sub-heading::before {
  content: "";
  height: 8px;
  width: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  position: absolute;
  right: -10px;
  bottom: 0;
  transition: transform 0.5s;
}
/* Footer */
footer {
  background-color: var(--black2);
  text-align: center;
}
footer p {
  color: var(--white);
  opacity: 100%;
  font-weight: 300;
}
/* Button Animation */
.btn-9 {
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}
.btn-9:after {
  position: absolute;
  content: " ";
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  background-image: linear-gradient(315deg, var(--primary) 0%, var(--primary) 74%);
  transition: all 0.3s ease;
}
.btn-9:hover {
  background: transparent;
  box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, 0.5), -4px -4px 6px 0 rgba(116, 125, 136, 0.2), inset -4px -4px 6px 0 rgba(255, 255, 255, 0.5), inset 4px 4px 6px 0 rgba(116, 125, 136, 0.3);
  color: var(--white);
}
.btn-9:hover:after {
  -webkit-transform: scale(2) rotate(180deg);
  transform: scale(2) rotate(180deg);
  box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, 0.5), -4px -4px 6px 0 rgba(116, 125, 136, 0.2), inset -4px -4px 6px 0 rgba(255, 255, 255, 0.5), inset 4px 4px 6px 0 rgba(116, 125, 136, 0.3);
}
/* Scroll-Top Button */
#progress {
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 70px;
  width: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 10000;
  transition: all 0.55s linear;
}
#progress-value {
  display: block;
  height: calc(100% - 15px);
  width: calc(100% - 15px);
  background-color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 35px;
}
#progress i {
  font-size: 34px;
  font-weight: 900;
  transition: all 0.55s ease-in-out;
}
#progress:hover{
  height: 75px;
  width: 75px;
}
#progress i:hover {
  color: var(--primary);
  font-size: 36px;
}
/* Preloader */
/* Preloader  Animation*/
#pre-loader {
  background: var(--white) url(../../images/landing-page/loader.gif) no-repeat center center;
  background-size: 450px;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100000 !important;
}
/* Nav Menu Hover Animation  */
Nav .topBotomBordersOut a {
  position: relative;
}
Nav .topBotomBordersOut a:before,
Nav .topBotomBordersOut a:after {
  content: "";
  position: absolute;
  left: 0px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  opacity: 0;
  transition: all 0.3s;
}
Nav .topBotomBordersOut a:before {
  top: 0px;
  transform: translateY(10px);
}
Nav .topBotomBordersOut a:after {
  bottom: 0px;
  transform: translateY(-10px);
}
Nav .topBotomBordersOut a:hover:before,
Nav .topBotomBordersOut a:hover:after {
  opacity: 1;
  transform: translateY(0px);
}
/* Nav Menu Hover Animation  Ends*/
.sub-heading{
  position: relative;
  cursor: default;
}
.sub-heading::after {
  background: var(--primary);
  position: absolute;
  content: "";
  bottom: 0;
  right: -5px;
  width: 100%;
  height: 7px;
  border-radius: 50%;
  /* clip-path: polygon(48% 48%, 100% 65%, 47% 77%, 0 61%); */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}
.sub-heading:hover::after {
  transform: scaleX(1);
  transform-origin: right;
}
.sub-heading:hover.sub-heading::before {
  display: none;
    }
    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

/* Media query for Fonts  */
@media (max-width: 1299px) {
  h1 {
    font-size: 75px;
  }
  h2 {
    font-size: 22px;
  }
  p {
    font-size: 15px;
  }
}
@media (max-width: 929px) {
  .section {
    padding-top: 35px;
    padding-bottom: 35px;
}
}
.btn-toggle {
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
  padding: 12px;
  padding-top: 24px;
  background-color: transparent;
  border-color: transparent;
  outline: none;
  transform: translateZ(0);
  transition: transform 0.1s ease-out;
  margin: 0;
  box-shadow: none !important;
}
.btn-toggle:active {
  transform: translateY(4px);
}
.btn-toggle:focus .line:after {
  background-color: black;
}
.line {
  display: block;
  width: 38px;
  padding: 2.5px;
}
.line:after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background-color: black;
  border-radius: 2px;
  transform: translateZ(0) rotate(0);
  transition: background-color 0.2s ease-out;
}
.open {
  width: fit-content;
}
.open .line:nth-child(1) {
  animation: jump-1 0.9s forwards ease;
}
.open .line:nth-child(1):after {
  animation: line-1 0.9s forwards ease-in-out;
}
.open .line:nth-child(2) {
  animation: jump-2 0.9s forwards ease;
}
.open .line:nth-child(2):after {
  animation: line-2 0.9s forwards ease-in-out;
}
.close .line:nth-child(1) {
  animation: jump-1 0.9s reverse ease;
}
.close .line:nth-child(1):after {
  animation: line-1 0.9s reverse ease-in-out;
}
.close .line:nth-child(2) {
  animation: jump-2 0.9s reverse ease;
}
.close .line:nth-child(2):after {
  animation: line-2 0.9s reverse ease-in-out;
}
.open .line:nth-child(3), .close .line:nth-child(3) {
  animation: jump-3 0.9s forwards ease-out;
}
@keyframes line-1 {
  10% {
      transform: translateZ(0) rotate(0);
 }
  80% {
      transform: translateZ(0) rotate(395deg);
 }
  90%, 100% {
      transform: translateZ(0) rotate(405deg);
 }
}
@keyframes line-2 {
  10% {
      transform: translateZ(0) rotate(0);
 }
  20% {
      transform: translateZ(0) rotate(10deg);
 }
  90%, 100% {
      transform: translateZ(0) rotate(-405deg);
 }
}
@keyframes jump-1 {
  10% {
      transform: translateY(0);
 }
  50% {
      transform: translateY(-90px);
 }
  90%, 100% {
      transform: translateY(-7.5px);
 }
}
@keyframes jump-2 {
  10% {
      transform: translateY(0);
 }
  50% {
      transform: translateY(-75px);
 }
  85%, 100% {
      transform: translateY(-22.5px);
 }
}
@keyframes jump-3 {
  10% {
      transform: translateY(-7.5px) rotate(15deg);
 }
  30% {
      transform: translateY(-30px) rotate(-10deg);
 }
  50% {
      transform: translateY(7.5px) rotate(5deg);
 }
  80% {
      transform: translateY(0);
 }
}
@keyframes glow {
  50% {
      box-shadow: rgba(131, 131, 131, 0.4) 0 0 2px 2px;
 }
}
