@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: rgba(37, 143, 218, 0.722);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #022d66;
}
.logo a img {
  max-width: 350px;
  width: 100%;
  padding: 15px;
}
.navigation {
  display: flex;
  justify-content: space-between;
}
.menu {
  display: flex;
  padding-right: 30px;
  padding-top: 35px;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  z-index: 1;
  transition: 0.5s;
}
.menu li {
  list-style-type: none;
}
.menu li a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 20px 10px;
  font-size: 18px;
  white-space: nowrap;
  font-weight: bold;
  list-style: 1;
  transition: 0.3s;
}
.menu li a:hover {
  font-size: 20px;
  color: rgb(207, 235, 245);
}
.hamburger {
  position: relative;
  width: 30px;
  height: 4px;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  z-index: 2;
  transition: 0.3s;
}
.hamburger:before,
.hamburger:after {
   content: "";
   position: absolute;
   height: 4px;
   right: 0;
   background: #fff;
   border-radius: 10px;
   transition: 0.3s;
 }
 .hamburger:before {
  top: -10px;
  width: 20px;
 }
 .hamburger:after {
  top: 10px;
  width: 25px;
 }
  .toggle-menu {
  position: absolute;
  width: 37px;
  height: 35px;
  z-index: 3;
  cursor: pointer;
  opacity: 0;
 }
 .hamburger,
 .toggle-menu {
  display: none;
 }
 .navigation input:checked ~ .hamburger {
  background: transparent;
 }
 .navigation input:checked ~ .hamburger:before {
  top: 0;
  transform: rotate(-45deg);
  width: 30px;
 }
 .navigation input:checked ~ .hamburger::after {
  top: 0;
  transform: rotate(45deg);
  width: 30px;
 }
 .navigation input:checked ~ .menu {
  right: 0;
 }
 .bannerHome {
  background-image: url("images/Saskatoon.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 700px;
  margin-bottom: 30px;
}
.bannerHome h1 {
  font-size: 2.5rem;
  font-weight: bold;
  padding-top: 60px;
  padding-left: 25px;
  color: #000;
}
.bannerHome p {
    font-size: 1.5rem;
    padding-top: 15px;
    padding-left: 25px;
    color: #000;
}
.BannerClouds {
  background-image: url("images/Clouds.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
  margin: 20px;
}
.banner h1 {
  font-size: 1.5rem;
  font-weight: bold;
  padding-top: 20px;
  padding-left: 25px;
  color: #000;
}
.banner {
  background-image: url("images/Saskatoon.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 700px;
  margin-bottom: 30px;
}
.banner p {
  font-size: 1rem;
  padding-top: 15px;
  padding-left: 25px;
  padding-right: 25px;
  color: #000;
}
.bannerContact {
  background-image: url("images/Saskatoon.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 700px;
}
.bannerContact h1 {
  font-size: 1.5rem;
  font-weight: bold;
  padding-top: 20px;
  padding-left: 25px;
  color: #000;
}
.bannerContact p {
  font-size: 1rem;
  padding-top: 15px;
  padding-left: 25px;
  padding-right: 25px;
  color: #000;
}
.bannerContact p a {
  color: 000;
} 
.flexContainer {
  display: flex;
  gap: 20px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0px 120px 30px 120px;
}
.flexContainerRev {
  display: flex;
  gap: 20px;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  margin: 0px 120px 30px 120px;
}
.box {
  background: #061c41;
  color: #fff;
  width: 350px;
  min-width: 300px;
  box-shadow: 0 3px 5px rgb(78, 97, 136);
  padding: 15px 0px;
}
.boxRev {
  background: #061c41;
  color: #fff;
  width: 350px;
  min-width: 300px;
  box-shadow: 0 3px 5px rgba(148, 145, 145, 1);
  padding: 15px 0px;
}
.box h2 {
  text-align: center;
  padding: 5px 15px;
}
.box p {
  text-align: center;
  padding: 15px;
}
.boxServices {
  background: #061c41;
  color: #fff;
  width: 350px;
  min-width: 300px;
  box-shadow: 0 3px 5px rgb(78, 97, 136);
  padding: 15px 50px;
}
.boxServices li {
  font-size: 18px;
  text-align: center;
  padding: 5px;
}
.image img {
  width: 60vw;
  max-width: 600px;
}
.imageRev img {
  width: 60vw;
  max-width: 600px;
}
.testimonial {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  min-height: 400px;
  text-align: center;
  margin: 20px 20px 0 20px;
}
.testimonialSmallText {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  min-height: 400px;
  text-align: center;
  margin: 20px 20px 0 20px;
  font-size: .95rem;
}
@media only screen and (max-width: 767px){
.testimonial{
    padding: 20px;
    text-align: center;
}
}
.footer {
  height: 200px;
  position: relative;
  width: 100%;
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  background: #022d66;
}
.contact a {
  color: #fff;
  text-decoration: none;
}
.imageContact img {
  width: 80vw;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 25px;

}

@media screen and (max-width: 800px) {
  .flexContainer {
    flex-direction: column;
    align-items: center;
    margin: 0px 0px 30px 0px;
  }
  .flexContainerRev {
    flex-direction: column;
    align-items: center;
    margin: 0px 0px 30px 0px;
  }
  .image img {
    width: 500px;
    justify-content: center;
    align-items: center;
  }
  .imageRev img {
    width: 500px;
    justify-content: center;
    align-items: center;
  }
  .footer {
    height: 350px;
    flex-direction: column;
  }
}

 @media screen and (max-width: 688px) {
.bannerHome p, .banner h1{
    padding-left: 0px;
  }
    .logo a img {
      width: 275px;
      display: inline-block;
      padding: 0px;
    }
    .toggle-menu {
      position: absolute;
      top: 5px;
      right: 5px;
      display: block;
    }
    .hamburger {
      position: absolute;
      top: 20px;
      right: 10px;
      display: block;
    }
    .header {
      display: block;
      text-align: center;
      padding: 10px 20px;
    }
    .navigation {
      padding-top: 0;
    }
    .menu {
      justify-content: start;
      flex-direction: column;
      align-items: center;
      position: fixed;
      top: 0;
      right: -100vw;
      background-color: rgba(6, 28, 65, .7);
      -webkit-backdrop-filter: blur(6px);
      backdrop-filter: blur(6px);
      width: 100vw;
      height: 100%;
      padding-right: 0;
      padding-top: 170px;
    }
    .menu li {
      align-items: center;
    }
    .menu li a {
      color: white;
      text-align: center;
      font-size: 22px;
      box-shadow: 0 1px 0 rgba(211,211,211,.2);
    }
    .menu li a:hover {
      font-size: 22px;
      color: rgb(207, 235, 245);
    }
    .banner p {
      padding-top: 30px;
      text-align: center;
    }
    .banner h1 {
      padding-top: 30px;
      text-align: center;
    }
    .bannerHome p {
      padding-top: 30px;
      text-align: center;
    }
    .bannerHome h1 {
      padding-top: 30px;
      padding-left: 0px;
      text-align: center;
    }
    .image img {
      width: 360px;
    }
    .imageRev img {
      width: 360px;
    }
    .bannerContact p a {
      font-size: .85rem;
      color: 000;
    } 
 }

