@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');


* {

  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
}

body {
  height: 100%;
  width: 100%;
  background: url(strike.png);
  background-size: cover;
  background-repeat: no-repeat;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  height: 100%;

}

<<<<<<< HEAD

=======
>>>>>>> 3c7f3f44c770a31d8667d85a94125e1c79c42650
nav {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.3rem;
}

.one {
  color: black;
  border: 1px solid aliceblue;
  font-size: 1.1rem;
  padding: 24px;
  background-color: aliceblue;
  font-weight: bold;
  transition: color 0.2s;
  text-decoration: none;
  border-radius: 4px;
  transition: ease .40s;
}

#logo {
  position: absolute;
  width: calc(50px + 4vw);
  left: 1.5rem;
  top: 1.5rem;
  z-index: 3;
}

nav ul {
  margin-top: 1.5rem;
  margin-right: 0.5rem;
  padding: 10px 25px;
  z-index: 1;
}

nav ul li {
  display: inline-block;
  list-style: none;
  margin: 20px 20px;
}

nav ul li a {
  color: aliceblue;
  text-decoration: none;
}

.icon {
  transition: color 0.2s;
  text-decoration: none;
  border-radius: 4px;
  transition: ease .40s;
}

.icon:hover {
  color: #04DACA;
}

.one:hover {
  filter: brightness(100%);
}

@keyframes transitionIn {
  from {
    opacity: 0;
    transform: rotateX(-20deg);
  }

  to {
    opacity: 4;
    transform: rotateX(0);

  }
}



h1 {
  left: 1.5rem;
  width: fit-content;
  position: absolute;
  bottom: 25%;
  font-size: calc(1.8rem + 1.2vw);
}

.hpsa-main {
  color: whitesmoke;
}

.about-us {
  position: absolute;
  bottom: 15%;
  left: 1.6rem;
  color: black;
  padding: 1.2rem 2.5rem 1.2rem 2.5rem;
  text-decoration: none;
  transition: color 0.2s;
  background: aliceblue;
  border-radius: 4px;
  transition: ease .40s;
  font-size: 1rem;
}


.about-us:hover {
  filter: brightness(50%);
}

a {
  text-decoration: none;
  color: aliceblue;
}

.hamburgMenu {
  font-size: 4rem;
  z-index: 2;
}

.toggle-button {
  display: none;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}


/*
Phislophy
*/

#us {
  position: absolute;
  top: 120%;
  left: 2%;
}


.item1 {
  grid-area: header;
}

.item2 {
  grid-area: menu;
}

.item3 {
  grid-area: main;
}

.item4 {
  grid-area: right;
}

.item5 {
  grid-area: footer;
}
<<<<<<< HEAD
#us{
  font-size: 4rem;
}
=======
>>>>>>> 3c7f3f44c770a31d8667d85a94125e1c79c42650

.philosophy-section {
  display: grid;
  grid-template-areas:
    'menu menu header header right right'
    'menu menu main main right right'
    'menu menu footer footer right right';
  gap: 10px;
  /* background-color: #2196F3; */
  padding: 10px;
  position: absolute;
  top: 130%;
  width: 98.9vw;
  height: 100vh;
  line-height: 1.9;
}

.philosophy-section > div {
  /* background-color: rgba(255, 255, 255, 0.8); */
  text-align: center;
  padding: 20px 0;
  font-size: calc(5px + 1rem);

}

#image-section {
  position: relative;
  left: 20%;
  right: 20%;
  clip-path: polygon(14% 22%, 51% 14%, 91% 21%, 100% 51%, 92% 90%, 55% 98%, 17% 90%, 7% 57%);
  width: 20vw;
  height: 20vw;
}

@media screen and  (max-width:640px) {
  .philosophy-section {
    display: flex;
    flex-direction: column;
  }

  #image-section {
    left: 0;
    right: 0;
    align-self: center;
  }
}

/*
  Footer */


.footer {
  position: relative;
  background-color: #111;
  color: #fff;
  padding: 40px 0;
  top: 285vh;
}

.inside-container {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.rows {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.footer-content {
  margin-bottom: 40px;
  font-size: 1.3rem;

}

.footer-col {
  flex-basis: 40%;
  font-size: 1.3rem;
}


h3,
h4 {
  margin: 0 0 20px 0;
  font-weight: bold;

}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin-bottom: 10px;

  text-decoration: none;


}

a {
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
<<<<<<< HEAD
  .footer{
    position: relative;
    top:350vh;
  }

=======
>>>>>>> 3c7f3f44c770a31d8667d85a94125e1c79c42650
  .footer-content {
    flex-basis: 50%;
    text-align: center;

  }

  .footer-col {
    text-align: center;
    flex-basis: 50%;
  }
}

@media screen and (max-width: 479px) {
  .footer-content {
    flex-basis: 100%;
  }

  .footer-col {
    flex-basis: 100%;
  }
}