:root {
  --orange: #ff4c29;
  /* --bg-color: #272829;
  --lightorange: #484848; */
  --bg-color: rgb(245, 238, 234);
  --lightorange: rgb(252, 155, 80);
  --darkorange: #e45826;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  overflow-x: hidden !important;
  overflow-y: scroll;
  background-color: var(--bg-color) !important;
  margin: 0;
  color: black !important;
  font-family: "Rubik", sans-serif;
}

a {
  text-decoration: none !important;
}

.navbar {
  position: relative;
  top: 0px;
  width: 98vw;
  height: 3%;
  box-sizing: border-box;
  overflow: visible;
  justify-content: space-between;
  display: flex;
  align-items: center;
  padding: 0;
  z-index: 10;
}

hr {
  margin-block: 0 3rem !important;
}

.navbar-left img {
  height: 100px;
  object-fit: cover;
}

.navbar a {
  display: flex;
  flex-direction: column;
  color: black;
  text-decoration: none;
  width: 8rem;
  height: 2.5rem;
  transition: all 0.3s;
  cursor: pointer;
  background: var(--bg-color);
  font-size: 1.2em;
  font-weight: 550;
  align-items: center;
  justify-content: center;
}

.navbar a::after {
  margin-top: 5px;
  content: "";
  height: 5px;
  width: 0%;
  background-color: var(--orange);
  transition: all 0.2s ease-out;
}

.navbar a:hover {
  color: var(--orange);
}

.navbar a:hover::after {
  width: 60%;
}

.navbar-left {
  padding: 10px;
  position: relative;
  gap: 1vw;
  display: flex;
  align-items: center;
}

.navbar-right {
  padding: 10px;
  position: relative;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vw;
}

.navbar-right .button {
  position: relative;
  top: 0;
  color: var(--bg-color);
}

.navbar-right .button {
  background-color: var(--orange);
}

.navbar-right .button:hover {
  background-color: var(--lightorange);
  color: black;
}
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header .head-container {
  background-color: var(--bg-color);
  position: relative;
  align-items: center;
  justify-content: center;
  height: 50%;
  width: 100%;
}
.main-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  border-radius: 1%;
}

.main-heading {
  /* background-color: rgba(251, 243, 238, 1); */
  background-color: rgba(252, 155, 80, 0.4);
  top: 4vh;
  left: 6vw;
  display: flex;
  position: absolute;
  height: 50%;
  width: 18vw;
  align-items: center;
  border: 1px solid black;
  border-radius: 5%;
  padding: 1%;
  box-sizing: content-box;
}

.sub-heading {
  bottom: 4vh;
  right: 6vw;
  background-color: rgba(252, 155, 80, 0.4);
  display: flex;
  position: absolute;
  height: 50%;
  width: 18vw;
  align-items: center;
  border: 1px solid black;
  border-radius: 5%;
  padding: 1%;
  box-sizing: content-box;
}

.header .head-container h1 {
  font-weight: 80;
  font-size: 2vw;
}

.sub-heading h1,
.main-heading h1 {
  font-weight: 250 !important;
  font-size: 1.7vw !important;
}

.title {
  position: relative;
  display: flex;
  width: 75%;
  flex-direction: column;
  text-align: center;
  padding-bottom: 5rem;
  align-items: center;
  justify-content: space-evenly;
}

.title h6 {
  font-weight: 100;
}

.button {
  top: 3vh;
  border: 0.15rem solid;
  height: 50px;
  width: 200px;
  position: relative;
  background-color: transparent;
  cursor: pointer;
  overflow: hidden;
  border-radius: 30px;
  color: black;
  transition: all 0.5s ease-in-out;
}

.btn-txt {
  z-index: 1;
  font-weight: 800;
  letter-spacing: 4px;
}

.type1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s ease-in-out;
  background-color: var(--orange);
  border-radius: 30px;
  visibility: hidden;
  height: 10px;
  width: 10px;
  z-index: -1;
}

.button:hover {
  box-shadow: 1px 1px 200px var(--orange);
  color: #fff;
  border: none;
}

.type1:hover::after {
  visibility: visible;
  transform: scale(100) translateX(2px);
}

.about {
  overflow: hidden;
  width: 100vw;
  display: flex;
  align-items: center;
}

.container-abt {
  display: flex;
  width: 100vw;
  height: 80vh;
  overflow: hidden;
  position: relative;
  margin-top: 5rem;
}

.abt-img {
  width: 50vw;
  display: block;
  margin: auto;
  border: 0px solid var(--darkorange);
  border-radius: 1%;
}

.container-abt h1 {
  grid-column-start: 1;
  grid-column-end: 4;
  font-weight: 80;
  font-size: 2vw;
  text-align: center;
}

.container-abt div {
  padding: 2%;
}

.info {
  width: 50%;
  height: 100%;
  display: grid;
  margin: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  row-gap: 1vw;
  gap: 2vw;
  line-height: 1.7;
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.info-block {
  display: flex;
  background-color: var(--lightorange);
}

.info-block p {
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0;
}

.info h1 {
  text-transform: capitalize;
  font-weight: 500;
  font-size: 2.5rem;
}

.info :not(h1) {
  padding: 0.5rem 1rem 0.5rem 1rem;
  border-radius: 10px;
}

.keyfeatures {
  padding-top: 120px;
  padding-bottom: 120px;
  line-height: 1.7;
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: black;
}

.keyfeatures .container {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

.header .shape-1 {
  position: absolute;
  right: 30px;
  bottom: 180px;
}

.head-container .shape-1 {
  left: 30px;
  bottom: 50px;
  z-index: 1 !important;
}

.core-value .has-shapes {
  z-index: 2;
  pointer-events: none;
}
.core-value .shape-1 {
  right: -14px;
  top: -25px;
}
.core-value .shape-2 {
  left: -30px;
  bottom: -20px;
}

.info .has-shapes {
  pointer-events: none;
}

.info .shape-1 {
  top: 5vh;
  right: 0.3vw;
}

.info .shape-2 {
  bottom: 0;
  left: 40px;
}

.info .shape-3 {
  left: -50px;
  top: 0;
}

.bg-tertiary {
  background: #fbfbfb !important;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.align-items-center {
  align-items: center !important;
}

.icon-box-item {
  z-index: 3;
}
.icon-box-item .block {
  padding: 35px 27px;
  box-shadow: 0px 25px 65px 0px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  background-color: var(--lightorange);
}

.block {
  background-color: var(--lightorange);
}

.icon-box-item .icon {
  display: inline-block;
  height: 90px;
  width: 90px;
  line-height: 90px;
  font-size: 32px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
  background-color: var(--orange);
}

.position-relative {
  position: relative !important;
}

.gy-4 {
  --bs-gutter-y: 1.5rem;
}
.rounded-number {
  font-size: 24px !important;
  height: 70px !important;
  width: 70px !important;
  border-radius: 8px !important;
  font-weight: 800;
  line-height: 70px !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.col-md-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-lg-6 {
  flex: 0 0 auto;
  width: 50%;
}
.section-title {
  margin-bottom: 30px;
}
.ps-0 {
  padding-left: 0 !important;
}

.ps-lg-5 {
  padding-left: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-lg-0 {
  margin-top: 0 !important;
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.has-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.has-shapes .shape {
  z-index: 9;
  position: absolute;
  color: var(--orange);
}

.values {
  color: var(--orange);
}

.wrapper {
  display: inline-flex;
  list-style: none;
  height: 120px;
  width: 100%;
  padding-top: 40px;
  font-family: "Poppins", sans-serif;
  justify-content: center;
  padding-left: 0;
}

.wrapper .icon {
  position: relative;
  background: #fff;
  border-radius: 50%;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #fff;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
  background: #1877f2;
  color: #fff;
}

.wrapper .linkedin:hover,
.wrapper .linkedin:hover .tooltip,
.wrapper .linkedin:hover .tooltip::before {
  background: #1da1f2;
  color: #fff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background: #e4405f;
  color: #fff;
}

.fab {
  color: black;
}

.fa-instagram::before {
  content: "\f16d";
  font-family: FontAwesome;
}

.fa-facebook::before {
  content: "\f230";
  font-family: FontAwesome;
}

.fa-linkedin::before {
  content: "\f08c";
  font-family: FontAwesome;
}

.shape {
  z-index: -2 !important;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: black;
  transition: all 0.3s ease;
}

.navbar-right.active {
  top: 11vh;
  z-index: 10 !important;
}

.navbar-right.active a::after {
  display: none;
}

.navbar-right.active * {
  margin-block: 0.8rem;
}

.navbar-right.active button {
  margin-top: 1.5rem;
}

.line {
  display: none;
}

.line.active {
  display: block;
  height: 1px !important;
  width: 80vw !important;
  margin: 0 !important;
  color: black;
}

@media (width < 1024px) {
  .wrapper .tooltip {
    display: none;
  }

  .main-img {
    width: 90vw;
  }

  .main-heading {
    top: 2rem;
    background-color: rgba(252, 155, 80, 0.8);
    height: 50%;
  }

  .main-heading h1,
  .sub-heading h1 {
    font-family: "Rubik", sans-serif;
    font-size: 2.8vw !important;
    font-weight: 400 !important;
  }

  .sub-heading {
    bottom: 0;
    background-color: rgba(252, 155, 80, 0.8);
    height: 50%;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .navbar-left img {
    height: 50px;
    object-fit: cover;
  }

  .navbar-left a::after {
    display: none;
  }

  .navbar-right {
    position: fixed;
    width: 100%;
    top: -100%;
    left: 0;
    gap: 0;
    flex-direction: column;
    background-color: var(--bg-color);
    transition: all 0.3s ease;
  }

  .title-box {
    order: -1;
  }

  .header .shape-1 {
    top: 50px;
    right: 3px;
  }

  .head-container .shape-1 {
    left: 10px;
    top: -90px;
  }

  .shape {
    height: 36;
    width: 36;
  }

  .container-abt {
    flex-direction: column;
  }

  .container-abt img {
    display: none;
  }

  .info h1 {
    order: 1;
  }

  .info :not(h1) {
    order: 2;
  }

  .info {
    width: 100%;
    padding: 5rem;
  }

  .keyfeatures {
    padding-top: 0;
  }
}

@media (width < 576px) {
  .info h1 {
    margin-bottom: 2rem;
  }

  .info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 4rem !important;
  }

  .info::after {
    display: none;
  }

  .container-abt {
    height: 80vh;
    margin-top: 0;
  }

  .about {
    margin-block: 2rem !important;
  }
}
