/* font family */
@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Great+Vibes&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* Primary root declaration */
:root {
  --primary: #005d5f;
  --secondary: #e0e33e;
  --black: #212429;
  --white: #fff;
  --crimson: "Crimson Pro", serif;
  --greatVibes: "Great Vibes", cursive;
  --roboto: "Roboto", sans-serif;
}

*,
html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--roboto);
  font-size: 1.2rem;
  line-height: 150%;
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--crimson);
  font-weight: 600;
}

.btn-primary {
  color: var(--white);
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.main-banner {
  min-height: 100vh;
  background-image: url("../images/group-people-working-out-business-plan-office.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.main-banner .content {
  padding: 3rem;
  width: 50%;
}
@media (max-width: 500px) {
  .main-banner .content {
    width: 100%;
    padding: 1.5rem;
  }
}

.themes {
  position: relative;
}
.themes h2 {
  font-size: 4rem;
  line-height: 95%;
}
@media (max-width: 900px) {
  .themes h2 {
    font-size: 1.5rem;
  }
}
.themes .image {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}
.themes .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.themes .count {
  font-size: 156px;
  color: #f0c660;
} /*# sourceMappingURL=styles.css.map */


.bg-gray{
  background: #eef8ff;
}