:root {
  --main-font: "Manrope", sans-serif;
  --white: #ffffff;
  --black: #000000;
  --gardient: linear-gradient(90deg, rgba(137, 211, 156, 1) 0%, rgba(255, 174, 146, 1) 100%);
  --gardient-v2: linear-gradient(90deg, rgba(255, 232, 175, 1) 0%, rgba(255, 197, 51, 1) 50%, rgba(255, 232, 175, 1) 100%);
  --gardient-revese: linear-gradient(90deg, rgba(255, 174, 146, 1) 0%, rgba(137, 211, 156, 1) 100%);
  --header: 72px;
}
@media (min-width: 1200px) {
  :root {
    --header: 72px;
  }
}
@media (min-width: 1400px) {
  :root {
    --header: 83px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

main {
  overflow: hidden;
}

body {
  background: #ffffff;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
}

.container {
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 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-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.container-fluid {
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 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-right: auto;
  margin-left: auto;
}

img {
  display: block;
  height: auto;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.social .social-link {
  flex: 0 0 auto;
  width: 32px;
}

.gardient-title-l {
  background: linear-gradient(270deg, #8dd29c 0%, #fdaf93 100%);
  color: transparent;
  background-clip: text;
}

.form-group {
  position: relative;
}
.form-group .form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4285714286;
  color: var(--white);
}
.form-group .form-control,
.form-group .form-select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  transition: all 0.3s;
  outline: none;
}
.form-group .form-control::placeholder,
.form-group .form-select::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.form-group .form-control:focus,
.form-group .form-select:focus {
  border-color: var(--gardient);
}
.form-group .form-select option {
  color: #000000;
}

.home-background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/*# sourceMappingURL=common.css.map */
