@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}
:root {
  --lightBlue: #4f80ff;
  --darkBlue: #001251;
}
body,
html {
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
}
header {
  background-image: url(./home/images/header-bg.png);
  height: 100vh;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}
#logo {
  font-size: 25px;
  font-weight: bold;
  display: inline;
}
#logo span {
  color: var(--lightBlue);
}
a {
  color: black;
}
a:hover {
  color: var(--lightBlue);
}
a:focus {
  color: var(--lightBlue);
  font-weight: 400;
}
.active a {
  color: var(--lightBlue);
  font-weight: 600;
}
nav ul {
  display: inline-block;
  float: right;
  margin-top: 5px;
}
nav {
  padding: 30px 50px;
}

ul li {
  display: inline;
  margin-left: 30px;
  font-weight: 500;
  text-transform: capitalize;
}
nav {
  padding: 30px 50px;
}
nav #icon {
  color: red;
  background-color: red;
}
label #btn,
label #cancel {
  color: var(--darkBlue);
  font-size: 25px;
  float: right !important;
  margin-right: 20px;
  cursor: pointer;
  display: none;
}
#check {
  display: none;
}
.small-heading {
  color: var(--lightBlue);
  font-weight: 600;
  font-size: 18px;
}
.big-heading {
  font-size: 70px;
  max-width: 700px;
  font-weight: bold;
  color: var(--darkBlue);
  margin-top: 30px;
}
.medium-heading {
  font-size: 45px;
  max-width: 700px;
  font-weight: 500;
  color: var(--darkBlue);
  margin-top: 30px;
}
p {
  line-height: 1.5rem;
  font-weight: normal;
  font-size: 16px;
}
button a {
  color: white;
}
button {
  border: none;
  background-color: var(--lightBlue);
  color: white;
  padding: 15px 40px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid var(--lightBlue);
}
button:hover {
  border: 2px solid var(--lightBlue);
  background-color: white;
  color: var(--lightBlue);
}
/* header content */
.content {
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 70vh;
  margin-top: 50px;
}
.small-heading {
  color: var(--lightBlue);
  font-weight: 600;
  font-size: 18px;
}
.big-heading {
  font-size: 70px;
  max-width: 700px;
  font-weight: bold;
  color: var(--darkBlue);
  margin-top: 30px;
}
.content-text {
  max-width: 600px;
  margin: 10px 0 20px 0;
}
/* footer */
.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-bottom: 50px;
}
.footer h3 {
  font-weight: 400;
  color: var(--darkBlue);
  font-size: 22px;
  padding-bottom: 10px;
}
.footer-h1 {
  font-size: 40px !important;
}
@media only screen and (max-width: 860px) {
  header {
    background-image: url(https://static.wixstatic.com/media/ff9a3d_b789d53967b64571996efdcd6de7588c~mv2.png/v1/fill/w_660,h_432,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/199%202.png);
    background-size: contain;
  }
  nav,
  .content,
  .product-container,
  .about-container,
  .articles {
    padding: 20px;
  }
  nav li {
    display: none;
  }
  a:focus {
    color: white;
    font-weight: 400;
  }
  label #btn {
    display: block;
  }
  nav ul {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #191f31;
    top: 80px;
    left: 0;
    text-align: center;
    /* transition: all 0.5s ease; */
  }
  nav ul li {
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }
  nav ul li a {
    font-size: 22px;
    color: white;
  }
  #check:checked ~ ul {
    left: 0;
  }
  /* header content */
  .content {
    padding: 20px;
    margin-top: 200px !important;
  }
  .big-heading {
    font-size: 35px;
    max-width: 100%;
  }

  .medium-heading {
    font-size: 30px;
  }
  .footer {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 50px 0;
    padding: 20px;
  }
  .footer h3 {
    margin-top: 30px;
  }
}
