
body{
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-size:cover;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.head-container{
  position: fixed;
  width: 95%;
  top: 0px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 0 50px 4px black;
  height: 25px;
  font-weight: bold;
  text-decoration: none;
  color: black;
  display: flex;
  margin: 0;
  padding: 25px 35px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  z-index: 999;
}

.left-header{
  font-size: 20px;
  font-weight: bolder;
  text-transform: uppercase;
}

.middle-header a{
  text-transform: uppercase;
  text-decoration: none;
  color: black;
  padding: 5px 0px;
  margin: 0px 20px;
  font-size: 20px;
  font-weight: 400;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
}

.middle-header a:hover{
  border-bottom: rgb(0, 128, 255) 2px solid;
  color: rgb(0, 128, 255);
}

.landing {
  background-image: url(/img/bg.jpeg);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

.landing-header{
  width: 75%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.landing-header h1{
  font-size: 40px;
}

.landing-header h2{
  padding-bottom: 20px;
}

.button-28 {
  appearance: none;
  background-color: transparent;
  border: 2px solid #1A1A1A;
  border-radius: 15px;
  box-sizing: border-box;
  color: #000000;
  cursor: pointer;
  display: inline-block;
  font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  min-height: 50px;
  min-width: 0;
  outline: none;
  padding: 14px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}

.button-28:disabled {
  pointer-events: none;
}

.button-28:hover {
  color: #fff;
  background-color: #1A1A1A;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-28:active {
  box-shadow: none;
  transform: translateY(0);
}

.about{
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding-bottom: 50px;
}

.about-header{
  width: 75%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
  padding-top: 30px;
}

.about-header h1{
  font-size: 60px;
  font-weight: 700;
  padding-top: 30px;
  color: rgb(0, 94, 255);
}

.about-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  overflow: hidden;
  width: 70%;
}

.about-right{
  padding-left: 80px;
  text-align: center;
  font-size: 20px;
}

.about-left{
  padding-right: 80px;
}

.services {
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

.services-header{
  width: 75%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.services-cards{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.services-card{
  margin-left: 12px;
  margin-right: 12px;
  transition: all 0.7s;
  box-shadow: 0 0 50px 4px black;
}
.services-header{
  width: 75%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-bottom: 70px;
}

.services-header h1{
  font-size: 40px;
}

.services-card h2{
  color: rgb(0, 94, 255);
}

.services-card:hover{
  transform: scale(1.1);
}