html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

main {
  background-image: url(../imgs/bg-overlay.png);
  background-attachment: fixed;
  background-size: contain;
}

a {
  color: #F6B93B;
}

.btn-primary {
  background-color: #F6B93B;
}

.kpy {
  padding: 80px 0;
}

.width-100 {
  width: 100%;
}

/* scroll */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
}

::-webkit-scrollbar-thumb {
  background: #F6B93B;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4A69BD;
}

.bg-primary {
  background-color: #4A69BD !important;
}

/* nav start */
header {
  padding-top: 142px;
}

.navbar {
  transition: all 500ms;
}
.navbar .Logo {
  transition: all 500ms;
}

.nav-item a {
  color: #fff;
  transition: all 500ms;
}
.nav-item a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #F6B93B;
  transition: all 500ms;
  margin: 0 auto;
}
.nav-item a:hover::after {
  width: 100%;
}
.nav-item a:hover {
  color: #F6B93B;
}
.nav-item a.active {
  color: #F6B93B !important;
}
.nav-item a.active::after {
  width: 100%;
}

/* Hero start */
.hero .form_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgb(255, 255, 255);
  padding: 30px 30px 30px 30px;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.062);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero .form_main:hover:before {
  left: -500px;
}
.hero .form_main:before {
  position: absolute;
  content: "";
  width: 380px;
  height: 360px;
  background-color: #F6B93B;
  transform: rotate(45deg);
  left: -200px;
  bottom: 30px;
  z-index: -1;
  border-radius: 30px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.082);
  transition: all 800ms;
}
@media (max-width: 992px) {
  .hero .form_main:before {
    left: -240px;
  }
}
.hero .heading {
  font-size: 2em;
  color: #2e2e2e;
  font-weight: 700;
  margin: 5px 0 10px 0;
  z-index: 2;
}
.hero .inputContainer {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin-bottom: 20px;
}
.hero .inputIcon {
  position: absolute;
  left: 3px;
}
.hero .inputField {
  width: 100%;
  height: 30px;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid rgb(173, 173, 173);
  margin: 10px 0;
  color: black;
  font-size: 1.2em;
  font-weight: 500;
  box-sizing: border-box;
  padding-left: 30px;
}
.hero .inputField:focus {
  outline: none;
  border-bottom: 2px solid rgb(199, 114, 255);
}
.hero .inputField::-moz-placeholder {
  color: rgb(80, 80, 80);
  font-size: 1em;
  font-weight: 500;
}
.hero .inputField::placeholder {
  color: rgb(80, 80, 80);
  font-size: 1em;
  font-weight: 500;
}
.hero #button {
  z-index: 2;
  position: relative;
  width: 100%;
  border: none;
  background-color: #4A69BD;
  height: 40px;
  color: white;
  font-size: 1.2em;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 10px;
  cursor: pointer;
}
.hero #button:hover {
  background-color: #5d78c4;
}
.hero .forgotLink {
  z-index: 2;
  font-size: 1em;
  font-weight: 500;
  color: #F6B93B;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 20px;
  transition: all 500ms;
}
.hero .forgotLink:hover {
  text-decoration: underline;
  color: #4A69BD;
}
.hero .curved {
  width: 100%;
  bottom: -30px;
}

/*vision & Mission start*/
.VisionMission {
  overflow: hidden;
}
.VisionMission .card {
  position: relative;
  width: 70%;
  height: 320px;
  background: linear-gradient(-45deg, #F6B93B 0%, #DE1A02 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.VisionMission .card img {
  width: 200px;
}
.VisionMission .card2 {
  background: linear-gradient(-135deg, #DE1A02 0%, #F6B93B 100%);
}
.VisionMission .card2 img {
  width: 260px;
}
.VisionMission .card:hover {
  transform: rotate(-5deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.VisionMission .card2:hover {
  transform: rotate(5deg) scale(1.1);
}
.VisionMission .card__content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: #fff;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.VisionMission .card:hover .card__content {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 1;
}
.VisionMission .card__title {
  margin: 0;
  font-size: 24px;
  color: #333;
  font-weight: 700;
}
.VisionMission .card__description {
  margin: 10px 0 0;
  font-size: 14px;
  color: #777;
  line-height: 1.4;
}
.VisionMission .card:hover svg {
  scale: 0;
  transform: rotate(-45deg);
}

/* Metrics start*/
.Metrics {
  background-image: url(../imgs/MetricsBG.svg);
  background-position: center center;
  background-size: cover;
  padding: 80px 70px 170px;
}
.Metrics .card {
  width: 240px;
  height: 240px;
  background: #fff;
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  transition: transform 500ms ease-in-out;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.231372549);
}
.Metrics .card:hover {
  transform: scale(1.1);
  background: #4A69BD;
}
.Metrics .card:hover::before, .Metrics .card:hover::after {
  opacity: 1;
}
.Metrics .card:hover::before {
  background-image: linear-gradient(180deg, #DE1A02, #F6B93B);
}
.Metrics .card span {
  color: #4A69BD;
}
.Metrics .card h2 {
  z-index: 1;
  font-size: 2em;
}
.Metrics .card img, .Metrics .card h3 {
  z-index: 1;
}
.Metrics .card::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 130%;
  animation: rotBGimg 5s linear infinite;
  transition: all 1s linear;
  opacity: 0;
}
.Metrics .card::after {
  content: "";
  position: absolute;
  background: #fff;
  inset: 5px;
  border-radius: 50%;
  opacity: 0;
}
@keyframes rotBGimg {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 992px) {
  .Metrics {
    padding: 80px 70px 30px;
  }
}
/* Offer start*/
.Offer h2 {
  color: #4A69BD;
}
.Offer .card {
  position: relative;
  height: auto;
  background: #4A69BD;
  border-radius: 20px;
  padding: 20px;
  padding-left: 130px;
  transition: 0.3s;
  max-width: 80%;
  margin: auto;
  box-shadow: 0 1px 25px rgba(0, 0, 0, 0.2);
}
.Offer .card:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
}
.Offer .card .G-content {
  width: 80%;
}
.Offer .card:hover {
  filter: drop-shadow(5px 5px 0px #F6B93B) drop-shadow(5px 5px 0px #DE1A02) drop-shadow(5px 5px 0px #4A69BD);
  scale: 1.05;
}
.Offer .card-left:hover {
  filter: drop-shadow(-5px 5px 0px #F6B93B) drop-shadow(-5px 5px 0px #DE1A02) drop-shadow(-5px 5px 0px #4A69BD);
  scale: 1.05;
}
.Offer img {
  position: absolute;
  top: 18px;
  left: 18px;
}
@media (max-width: 992px) {
  .Offer .card {
    padding-left: unset;
    text-align: center;
  }
  .Offer img {
    position: unset;
    margin-bottom: 10px;
  }
}

/* Shots start */
.Shots img {
  transition: all 500ms;
  margin: auto;
}
.Shots img:hover {
  transform: scale(1.1) translateY(-5px);
}

/* footer start */
footer {
  padding: 40px 0 0;
  background-color: #4A69BD;
  color: #fff;
}
footer a {
  color: #fff;
  margin: 2px;
  font-size: 14px;
  text-decoration: none;
  transition: all 500ms;
}
footer a:hover {
  color: #F6B93B;
}
footer .f-nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #F6B93B;
  transition: all 500ms;
  margin: 0 auto;
}
footer .f-nav a:hover::after {
  width: 100%;
}
footer div.up {
  position: fixed;
  right: 3%;
  bottom: 3%;
  opacity: 0;
  transition: all 500ms;
  cursor: pointer;
  z-index: 99;
}
footer div.up img {
  border-radius: 50%;
  width: 35px;
  border: 2px solid transparent;
  transition: all 500ms;
}
footer div.up img:hover {
  border: 2px solid #F6B93B;
}
footer .copyright p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-top: 1px solid gainsboro;
}
footer .social img, footer .up img {
  transition: all 500ms;
}
footer .social img:hover, footer .up img:hover {
  transform: translatey(-5px) scale(1.1);
}

@media (max-width: 992px) {
  footer .f-nav {
    text-align: center;
  }
}
/* footer end *//*# sourceMappingURL=main.css.map */