@import url("https://fonts.googleapis.com/css2?family=montserrat:wght@400;500;600;700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=montserrat:wght@400;500;600;700&amp;family=Afacad:wght@400;500;600;700&amp;display=swap");

:root {
  --primary: #4787e9;
  --violet: #9093fe;
  --white: #ffffff;
  --black: #130820;
  --bgLight: #adc9f1;
  --bgLight2: #edf5ff;
  --borderColor: #e5e5e5;
  --fontColor: #5f7d95;
  --titleColor: #383463;
  --shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
  --gradient: radial-gradient(circle, #91b1e2 0%, rgb(255 255 255) 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "montserrat", sans-serif;
  font-size: 16px;
  color: var(--fontColor);
}

body.rtl {
  direction: rtl;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 10px;
  height: 100%;
}

body::-webkit-scrollbar-track {
  background: var(--bgLight);
}

body::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

body::-webkit-scrollbar-thumb:hover {
  background: var(--violet);
}

.golden-text,
h1,
h2 {
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: auto;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "montserrat", sans-serif;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--titleColor);
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
  font-weight: normal;
}

h5 {
  font-size: 18px;
  font-weight: normal;
}

a {
  text-decoration: none;
}

p {
  margin-bottom: 0;
}

.btn:focus {
  box-shadow: 0 0 0 0rem var(--black);
}

.btn-custom {
  font-family: "montserrat", sans-serif;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  border: none;
  background: var(--primary);
  display: inline-block;
  text-align: center;
  width: 155px;
  height: 54px;
  border-radius: 10px;
  transition: 0.4s;
}

.btn-custom:hover {
  color: var(--white);
  background: var(--violet);
}

a.btn-custom {
  padding: 14px 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  box-shadow: 0 0 0 30px #222 inset !important;
}

input:-webkit-autofill {
  -webkit-text-fill-color: var(--white) !important;
}

.preview-header .navbar-brand img {
  width: 90px;
}

.preview-header .btn-custom {
  padding: 12px 18px;
  height: auto;
  width: auto;
}

.preview-header {
  transition: 0.2s;
}

.preview-header.active {
  background: var(--bgLight);
}

.preview-section {
  background-size: cover;
  background-position: center top;
  text-align: center;
}

.preview-section .overlay {
  background: var(--gradient);
  padding: 50px 0 100px 0;
}

.preview-section h1 {
  font-size: 80px;
  font-weight: 700;
  text-transform: capitalize;
}

.preview-section p {
  font-size: 18px;
  margin: 30px 0;
}

.preview-section a {
  color: var(--primary);
}

.preview-section .btn-custom {
  padding: 16px 25px;
  width: auto;
  color: var(--white);
}

.copyright {
  background: var(--bgLight);
  padding: 25px 15px;
  text-align: center;
  font-family: "montserrat", sans-serif;
}

.copyright a {
  color: var(--primary);
}

#preloader {
  background: var(--bgLight);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.4s;
  z-index: 1100;
}

#preloader .loader {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 150px;
}

.btn-container {
  display: flex;
  gap: 15px;
}

.android-btn {
  background-color: #3ddc84;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
}

.apple-btn {
  background-color: #1d1d1f;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
}


/*# sourceMappingURL=style.css.map */