@font-face {
  font-family: "Proxima Nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  /* Name of the font */
  src: url("../fonts/ProximaNova.otf") format("truetype");
  /* Path to the font file */
}

@font-face {
  font-family: "Quantico";
  src: url("../fonts/Quantico.ttf") format("truetype");
  /* Path to the font file */
}

@font-face {
  font-family: "Quantico_bold";
  src: url("../fonts/Quantico_bold.ttf") format("truetype");
  /* Path to the font file */
}

:root {
  --black-dark-color--: #0b0b0c;
  --orange-color--: #ff5722;
  --white-color--: #ffffff;
  --white-70--: rgba(255, 255, 255, 0.7);
  --black-90--: rgba(11, 11, 12, 0.9);
  --text-color: #616060d3;
}

body {
  font-family: "Proxima Nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.navbar {
  background: var(--black-dark-color--);
}

.navbar-brand img {
  width: 200px;
  height: 80px;
  color: var(--white-color--);
}

.nav-link-mail {
  color: var(--white-color--);
  font-size: 16px;
  border-right: 1px solid var(--white-color--);
}

.nav-link-mail:hover a {
  color: var(--orange-color--);
}

.navbar .fab {
  font-size: 24px;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
  color: var(--white-color--);
  background-color: rgb(22, 22, 24);
}

.navbar .fab:hover {
  background: var(--orange-color--);
}

.navbar a {
  color: var(--white-color--);
  text-decoration: none;
}

.hero-banner {
  background: var(--black-dark-color--);
  display: flex;
  align-items: center;
  position: relative;
  min-height: 90svh;
}

.banner-heading {
  color: var(--white-color--);
  font-size: 64px;
  line-height: 120%;
  font-weight: 700;
}

.quantico {
  font-family: Quantico, Arial, sans-serif;;
}

.banner-image-section {
  position: absolute;
  right: 5%;
  bottom: 0;
}

.text {
  font-size: 16px;
  line-height: 160%;
  color: var(--black-dark-color--);
  margin: 0;
}

.white-70 {
  color: var(--white-70--);
}

.button {
  display: flex;
  padding: 0.75em 1em;
  align-items: center;
  border: 1px solid var(--orange-color--);
  background: var(--orange-color--);
  font-family: "Proxima Nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--white-color--);
  font-size: 1em;
  line-height: 110%;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.button:hover {
  background: transparent;
  color: var(--white-color--);
}

.fab {
  font-size: 30px;
}

.semibold {
  font-weight: 600;
}

.about {
  padding: 140px;
}

.button-dark {
  background: var(--black-dark-color--);
  border-color: var(--black-dark-color--);
}

.button-dark:hover {
  border: 1px solid var(--black-dark-color--);
  color: var(--black-dark-color--);
}

.content-section {
  padding-left: 50px;
}

.title {
  font-family: Quantico, Arial, sans-serif;;
  color: var(--orange-color--);
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
}

.heading {
  color: var(--black-dark-color--);
  font-size: 40px;
  line-height: 120%;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-auto-columns: 1fr;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.item-1 {
  grid-column: 1 / span 2;
  background: var(--black-dark-color--);
  display: flex;
  align-items: center;
  min-height: 560px;
}

.item-2,
.item-3 {
  grid-column: auto;
}

.item-2 {
  grid-column: auto;
  display: flex;
  min-height: 500px;
  background-image: url(../images/feature-2-bg.webp);
  background-position: 50% 50%;
  background-size: cover;
}

.item-3 {
  grid-column: auto;
  display: flex;
  justify-content: space-between;
  min-height: 500px;
  background-image: url(../images/feature-3-bg.webp);
  background-position: 50% 50%;
  background-size: cover;
}

.item-4 {
  grid-column: 1 / span 2;
  background: var(--black-dark-color--);
  display: flex;
  min-height: 560px;
  background-image: radial-gradient(circle farthest-corner at 50% 50%,
      hsla(14.389140271493215, 100%, 56.67%, 0.2),
      var(--black-dark-color--) 69%);
}

.feature-heading {
  color: var(--white-color--);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 110%;
  font-weight: 700;
}

.feature-left {
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-right {
  display: flex;
  align-items: center;
  justify-content: end;
}

.image {
  /* max-width: 80%; */
  /* height: 300px; */
  aspect-ratio: 1;
}

.feature-top {
  flex-direction: column;
}

.feature-text {
  width: 80%;
  padding-top: 50px;
  margin: 0 auto;
}

.feature-image {
  max-width: 50%;
}

.feature-heading-2 {
  color: var(--white-color--);
  font-size: 24px;
  font-weight: 700;
}

.white-title {
  color: var(--white-color--);
}

/* =========================================================== */

.testimonial {
  padding: 150px;
}

.testimonial-content {
  max-width: 60%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.name {
  font-size: 16px;
  color: var(--orange-color--);
  font-family: "Quantico", Arial, sans-serif;;
}

.testimonial-image img {
  height: 75px;
}

.footer {
  background: var(--black-dark-color--);
  padding: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.footer-text-wraper {
  width: 80%;
  margin: auto;
}

.footer-text {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Proxima Nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 64px;
  line-height: 120%;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white-color--);
}

.button-outlined {
  background: transparent;
}

.button-outlined:hover {
  background: var(--orange-color--);
}

.footer .absolute {
  position: absolute;
  bottom: 0;
  padding-bottom: 20px;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright-text {
  color: var(--white-color--);
  font-size: 14px;
  text-align: center;
  margin-bottom: 0;
}

.extra-bold {
  font-weight: 700;
  font-size: 16px;
}

.copyright-footer {
  padding: 20px;
  background: var(--black-dark-color--);
}

.banner {
  background: var(--orange-color--);
  color: var(--black-dark-color--);
  padding: 40px;
}

.banner-title {
  font-size: 64px;
  font-weight: 800;
}

.main-content {
  padding: 50px;
}

.sub-heading {
  font-size: 20px;
  color: var(--black-90--);
  font-weight: 600;
}

ul li {
  color: #616060d3;
  font-size: 16px;
  margin-left: 20px;
}

ul {
  margin-left: 20px;
}

.main-content .text {
  color: #616060d3;
  text-transform: none;
}

.main-content .heading {
  font-size: 24px;
  border-left: 4px solid var(--orange-color--);
}

.copyright-text img {
  /* filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(299deg) brightness(102%) contrast(102%); */
  margin-left: 20px;
}

.copyright-text img:hover {
  filter: invert(41%) sepia(49%) saturate(2745%) hue-rotate(346deg) brightness(100%) contrast(102%);
}

.main-content .heading {
  font-size: 24px;
  border-left: 4px solid var(--orange-color--);
}

.link-text ul li {
  display: inline;
  justify-content: space-between;
  align-items: center;
  color: var(--white-color--);
}

.link-text ul {
  margin: 0;
  margin-top: 20px;
  padding: 0;
}

.link-text ul li a {
  color: var(--white-color--);
  text-decoration: none;
}

.link-text ul li a:hover {
  color: var(--orange-color--);
}