/* 
=============
Variables
=============
*/

:root {
  --clr-primary: rgb(124, 118, 187);
  --clr-secondary: rgba(0, 0, 0, 0.61);
  /*
  --clr-primary-light: #beed8c;
  --clr-grey-1: #102a42;
  --clr-grey-5: #617d98;
  --clr-grey-10: #f1f5f8;
  --clr-white: #fff;
  --ff-primary: "Catamaran", sans-serif;
  --ff-secondary: "Grand Hotel", cursive;
  --transition: all 0.3s linear; */
  --spacing: 0.25rem;
  --radius: 0.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 2px solid red; */
}

main {
  width: 85vw;
  margin: 0 auto;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

/* Navbar */

.navbar {
  background-color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 2vh;
}

.company-name {
  padding: 10px;
  display: flex;
  text-transform: uppercase;
  color: var(--clr-primary);
  font-weight: 600;
  font-size: 1.5rem;
}

.navbar ul {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  min-width: 200px;
}

.btn {
  padding: 10px;
  text-decoration: none;
}

.btn-home {
  color: var(--clr-primary);
}

.btn-contact-us {
  color: white;
  background-color: var(--clr-primary);
  border-radius: 5px;
  margin-left: 15px;
}

/* Main */

.hero {
  padding: 20px 10vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.hero-text {
  flex-direction: column;
  padding: auto auto;
  margin: auto;
  font-size: 2.5rem;
  color: var(--clr-secondary);
}

.hero-text strong {
  color: var(--clr-primary);
}

.hero-image {
  max-width: 30vw;
  height: auto;
  flex-direction: column;
}

/* Services */

.services {
  display: flex;
  flex-direction: column;
}

.services-title {
  margin: 0 auto;
  padding: auto;
  color: var(--clr-primary);
  font-weight: 700;
  font-size: 1.5rem;
  padding-bottom: 1em;
}

.services-description {
  padding: 0 5vw;
  text-align: center;
  color: var(--clr-secondary);
}

.service-cards {
  display: flex;
  padding-top: 1rem;
  flex-wrap: wrap;
  justify-content: space-around;
}

.service-card {
  background-color: rgba(39, 163, 255, 0.16);
  margin: 1em;
  border-radius: 15px;
  padding: 1rem;
  min-width: 200px;
  max-width: 400px;
}

.service-card-icon {
  text-align: center;
  font-size: 2.5rem;
  color: var(--clr-secondary);
}

.service-card-title {
  color: var(--clr-primary);
  font-weight: 700;
  font-size: 1.5rem;
  padding-bottom: 1em;
  text-align: center;
}

.service-card-text {
  color: var(--clr-secondary);
  font-weight: 300;
  font-size: 1rem;
  padding-bottom: 1em;
  text-align: center;
}

/* Footer */

footer {
  background-color: #f6fbff;
  /* height: 300px; */
  padding-bottom: 10px;
  flex-shrink: 0;
  width: 100vw;
}

.footer-content {
  display: flex;
  flex-direction: column;
  max-width: 75vw;
  margin: 0 auto;
}

.legalease {
  margin: 0 auto;
  padding: 1vh 0;
  text-align: center;
}

.copyright {
  margin: 0 auto;
  text-align: center;
}

.footer-fill {
  background-color: #f6fbff;
  height: 20px;
  flex-grow: 1;
}

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

main {
  flex-grow: 1;
  flex-shrink: 0;
}
