/* You can add global styles to this file, and also import other style files */
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --primary-color: #0091dc;
  --light-bg: #f7fafc;
  --primary-active-color: rgba(4, 22, 139, 0.3);
  --primary-color-rgb: rgb(0, 176, 116);
  --primary-hover-color: rgba(4, 22, 139, 0.1);
  --primary-dark-hover-color: #222d5e;
  --secondary-color: #336b87;
  --success-color: #699468;
  --danger-color: #fc1239;
  --warning-color: #ff9500;
  --primary-danger-hover-color: #dd0327e8;
  --primary-light-bg-color: #edf1f7;
  --primary-light-color: #dbe7f5;
  --secondary-light-color: #9fb1c8;
  --primary-text-color: #ffffff;
  --primary-text-dark-color: #000000;
  --primary-text-dark-900-color: #1f1f1f;
  --primary-text-dark-700-color: #464646;
  --primary-text-dark-500-color: #838383;
  --primary-text-dark-300-color: #c3c3c3;
  --primary-text-dark-100-color: #f2f2f2;
  --primary-accent-color: #90afc5;
  --shadow-50: 0 3px 6px rgba(0, 0, 0, 0.06);
  --shadow-100: 0 3px 6px rgba(0, 0, 0, 0.16);
  --shadow-300: 0 3px 16px rgba(0, 0, 0, 0.16);
  --shadow-500: 0 3px 26px rgba(0, 0, 0, 0.16);
  --basic-border: 1px solid var(--primary-text-dark-color);
  --basic-border-700: 1px solid var(--primary-text-dark-700-color);
  --basic-border-500: 1px solid var(--primary-text-dark-500-color);
  --basic-border-300: 1px solid var(--primary-text-dark-300-color);
  --primary-gradient: linear-gradient(87deg, #0091dc 0, #53c3fc 100%);
  --warning-gradient: linear-gradient(87deg, #dc3e00 0, #dc6300 100%);
  --danger-gradient: linear-gradient(87deg, #dc0000 0, #dc3e00 100%);
  --primary-gradient-xlight: linear-gradient(
    87deg,
    rgba(83, 196, 252, 0.05) 0,
    rgba(0, 147, 220, 0.1) 100%
  );
}

* {
  font-family: "Raleway", sans-serif;
}

.btn-wrapper {
  padding: 10px;
}

body {
  background: var(--primary-light-bg-color);
}

main {
  width: calc(100% - 220px);
  margin-left: 220px;
  background: var(--primary-light-bg-color);
}

.main-container {
  padding: 2em;
  margin-bottom: 100px;
  margin-top: 50px;
}

.action-wrapper {
  padding: 0 0 20px 0;
}

.actions {
  border-top: 1px solid var(--primary-text-dark-100-color);
  padding: 0;
  text-align: center;
}

.hover-shadow {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.hover-shadow:hover {
  -webkit-box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1) !important;
}

.p-0 {
  padding: 0;
}

.pl-0 {
  padding-left: 0px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-20 {
  padding-right: 20px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.p-10 {
  padding: 10px;
}

.p-20 {
  padding: 20px;
}

.m-0 {
  margin: 0;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.m-10 {
  margin: 10px;
}

.m-20 {
  margin: 20px;
}

.center-item-wrapper {
  text-align: center;
}

.action-btn {
  float: right;
  background: var(--primary-color);
  color: var(--primary-text-color);
  opacity: 0.8;
}

.action-btn:hover {
  background: var(--primary-color);
  color: var(--primary-text-color);
  opacity: 1;
}

.t-primary {
  background: var(--primary-gradient);
  color: var(--primary-text-color);
  border: none;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  margin: 10px 0;
  font-size: 0.9rem;
}

.t-primary span {
  font-size: 0.9em;
}

.t-primary:hover {
  background: var(--primary-gradient);
  color: var(--primary-text-color);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.fab-btn-wrapper {
  width: 100%;
  position: fixed;
  bottom: 70px;
  right: 70px;
  text-align: right;
  z-index: 10;
}

.fab-btn-wrapper .fab-btn {
  border-radius: 30px;
  background: var(--primary-gradient);
  color: var(--primary-text-color);
  border: none;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  padding: 10px 20px;
}

.fab-btn-wrapper .fab-btn:hover {
  background: var(--primary-gradient);
  color: var(--primary-text-color);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

a {
  color: var(--primary-color) !important;
}

.page-item.active .page-link {
  color: #ffffff !important;
}

.page-header-wrapper {
  padding: 1em 1em 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0px;
  z-index: 1;
  background: var(--light-bg);
}

.page-header-wrapper button {
  margin-top: 15px !important;
}

.page-header-wrapper .search-wrapper {
  float: right;
  -webkit-box-shadow: var(--shadow-300);
          box-shadow: var(--shadow-300);
  background: #ffffff;
  padding: 10px 20px;
  margin-bottom: 1em;
  border-radius: 30px;
}

.card-wrapper {
  padding: 1em;
}

.card {
  -webkit-box-shadow: 0 0 2rem 0 rgba(136, 152, 170, 0.15);
          box-shadow: 0 0 2rem 0 rgba(136, 152, 170, 0.15);
  padding: 1em;
  border-radius: 8px;
  border: 0;
}

.label {
  font-weight: 500;
  color: var(--secondary-color);
}

.label i {
  padding-right: 5px;
}

.title {
  font-weight: 500;
  font-size: 1.2em;
  color: var(--secondary-color);
}

.inner-text {
  color: var(--primary-text-dark-700-color);
}

.input-wrapper input {
  border: none;
  outline: none;
  padding: 2px;
  width: 90%;
}

button:disabled {
  cursor: not-allowed;
}

.page-heading {
  border-bottom: 1px solid var(--primary-text-dark-300-color);
  padding: 0 0 1em;
}

.page-heading p:nth-child(1) {
  font-size: 1.2em;
  font-weight: 500;
  color: var(--primary-text-dark-700-color);
  margin-bottom: 5px;
}

.page-heading p:nth-child(2) {
  font-size: 0.9em;
  color: var(--primary-text-dark-500-color);
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cursor-pointer {
  cursor: pointer;
}

.bg_light {
  background: var(--primary-gradient-xlight);
}

.landing {
  background: var(--light-bg);
}

.landing .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 8px 16px;
  background: var(--primary-gradient);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--primary-text-color);
}

.landing .header__brand {
  font-size: 24px;
  font-weight: 600;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.landing .header__brand:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.landing .header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.landing .header__menu--item {
  padding: 16px;
  font-weight: 500;
  cursor: pointer;
  color: var(--primary-text-color);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.landing .header__menu--item:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.landing .header__menu--item:hover span {
  border-bottom: 1px solid;
}

.landing .main {
  padding: 15% 10%;
}

.landing .main__message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.landing .main__message--welcome {
  font-size: 36px;
  font-weight: 300;
}

.landing .main__message--brand {
  font-size: 60px;
  font-weight: 500;
}

.landing .main__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.landing .main__image img {
  width: 100%;
  -webkit-transform: translatey(0px);
          transform: translatey(0px);
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}

.landing .about {
  padding: 100px 10%;
}

.landing .about__heading {
  text-align: center;
  margin-bottom: 8px;
}

.landing .about__heading span {
  font-size: 36px;
  font-weight: 400;
  position: relative;
}

.landing .about__subheading {
  text-align: center;
}

.landing .about__subheading p {
  font-weight: 300;
  width: 100%;
}

.landing .about__content {
  margin-top: 32px;
}

.landing .about__content--item {
  padding: 24px;
  min-height: 200px;
}

.landing .about__content--item-inner-wrapper {
  text-align: center;
  background: var(--primary-text-color);
  padding: 24px;
  border-radius: 8px;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}

.landing .about__content--item-inner-wrapper:hover {
  -webkit-box-shadow: 0px 0px 30px 1px rgba(5, 148, 222, 0.15);
  box-shadow: 0px 0px 30px 1px rgba(5, 148, 222, 0.15);
}

.landing .about__content--item-icon img {
  width: 120px;
}

.landing .about__content--item-icon svg {
  font-size: 32px;
  color: var(--primary-color);
}

.landing .about__content--item-title {
  font-weight: 500;
  padding-top: 12px;
  padding-bottom: 12px;
}

.landing .about__content--item-subtitle {
  font-weight: 300;
}

.landing .how {
  padding: 100px 10%;
}

.landing .how__heading {
  text-align: center;
  margin-bottom: 8px;
}

.landing .how__heading span {
  font-size: 36px;
  font-weight: 400;
  position: relative;
}

.landing .how__subheading {
  text-align: center;
}

.landing .how__subheading p {
  font-weight: 300;
  width: 100%;
}

.landing .how__content {
  margin-top: 32px;
}

.landing .contact {
  background: var(--primary-gradient-xlight);
  padding: 100px 10%;
}

.landing .contact__heading {
  text-align: center;
  margin-bottom: 8px;
}

.landing .contact__heading span {
  font-size: 36px;
  font-weight: 400;
  position: relative;
}

.landing .contact__subheading {
  text-align: center;
}

.landing .contact__subheading p {
  font-weight: 300;
  width: 100%;
}

.landing .contact__subheading p svg {
  color: var(--primary-color);
  padding-right: 4px;
}

.landing .contact__content {
  margin-top: 32px;
}

.achievements_item {
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.achievements_item p {
  margin: 0;
}

.achievements_item img {
  width: 100%;
  max-width: 800px;
  padding: 20px;
}

.achievements_item::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 2px;
  width: 5px;
  height: 11px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  border-color: var(--primary-color);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.services_wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.services_item {
  padding: 24px;
  width: 50%;
  float: left;
}

.services_item-inner-wrapper {
  text-align: center;
  background: var(--primary-text-color);
  padding: 24px;
  border-radius: 8px;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}

.services_item-inner-wrapper:hover {
  -webkit-box-shadow: 0px 0px 30px 1px rgba(5, 148, 222, 0.15);
  box-shadow: 0px 0px 30px 1px rgba(5, 148, 222, 0.15);
}

.associations_wrapper .media {
  text-align: center;
}

.associations_wrapper .media img {
  width: 100%;
  padding: 20px;
  max-width: 320px;
  margin: 0 auto;
  -webkit-transform: translatey(0px);
          transform: translatey(0px);
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}

.associations_wrapper .content {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.associations_item {
  padding: 8px;
  width: 50%;
  float: left;
}

.associations_item-inner-wrapper {
  text-align: center;
  background: var(--primary-text-color);
  padding: 12px;
  border-radius: 8px;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  font-size: 12px;
}

.associations_item-inner-wrapper:hover {
  -webkit-box-shadow: 0px 0px 30px 1px rgba(5, 148, 222, 0.15);
  box-shadow: 0px 0px 30px 1px rgba(5, 148, 222, 0.15);
}

.center-item-wrapper {
  text-align: center;
}

@media (max-width: 768px) {
  .landing .header {
    padding: 8px 10px;
  }
  .landing .header__brand {
    font-size: 16px;
  }
  .landing .header__menu--item {
    font-size: 0.8em;
    padding: 12px 8px;
    font-weight: 500;
  }
  .landing .main {
    margin-top: 50px;
  }
  .landing .main__message--welcome {
    font-size: 28px;
  }
  .landing .main__message--brand {
    font-size: 40px;
  }
  .landing .main__image {
    margin-top: 30px;
  }
  .landing .associations_item {
    width: 100%;
  }
  .landing .services_item {
    width: 100%;
  }
  .secret-modal .form-wrapper {
    padding: 2em 0;
  }
}

ul li {
  text-align: left;
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-20px);
            transform: translatey(-20px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-20px);
            transform: translatey(-20px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}
/*# sourceMappingURL=main.css.map */