@import url("header.css");
@import url("landing.css");
@import url("about.css");
@import url("cycle.css");
@import url("canapply.css");
@import url("whatinit.css");
@import url("howitworks.css");
@import url("timeline.css");
@import url("number.css");
@import url("ourclients.css");
@import url("ourchampions.css");
@import url("newsletter.css");
@import url("footer.css");
@import url("marketingtech.css");
@import url("healthtech.css");
@import url("value.css");

/* Start Global Rules */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  --gray-color: #5e5e5e;
  --header-color: #2063ae;
  --button-color: #1f62ae;
  --title-color: #1f62ae;
  --white-color: #fff;
  --black-color: #000;
  --about-section: #8c8c8c;
  --number-section: #1f62ae;
  --border-popup-color: #38383890;
  --main-transtion: all 0.5s ease;
  --padding-top: 30px;
  --padding-bottom: 30px;
  --header-height: 60px;
  --z-tooltip: 10;
  --z-fixed: 100;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Raleway", sans-serif;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
/* Small */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
/* Medium */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
/* Large */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/* End Global Rules */
