@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Balsamiq+Sans&family=Josefin+Sans&display=swap');

*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

p
{
  font-weight: 300;
  color: #111;
}

body
{
  min-height: 1000px;
}

.home
{
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: left;
  align-items: center;
  background: url(images/banner1.png);
  background-size: cover;
}

/* home banner text */



.home .content
{
max-width: 500px;
font-family: 'Poppins', sans-serif;
text-align: center;
margin-left: 12rem;
}


.home .content h2
{
  font-size: 6em;
  color: #2A4E50;
}


.home .content p
{
  font-size: 22px;
  letter-spacing: 2px;
  color: rgb(0, 0, 0);
}

/* #button## */

.btn
{
  font-size: 1em;
  color: #fff;
  background: #decec5;
  display: inline-block;
  padding: 10px 30px;
  margin-top: 20px;
  border-radius: 10px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  transition: 0.5s;
}

.btn:hover
{
  letter-spacing:6px;
}


/* the header */

/* # header */
header
{
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 40px 100px;
z-index: 10000;
display: flex;
justify-content: space-between;
align-items: center;
transition: 0.5s;
}

img {
  width: 90px; 
  height: auto; 
  position: absolute; 
  top: 0; 
  left: 0; 
  margin: 10px; 
}

header .navigation
{
  position: right;
  display: flex;
}

header .navigation li
{
  list-style: none;
  margin-right: 30px;
}

header .navigation li a
{
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
}

header.sticky .navigation li a
{
  color: rgb(255, 255, 255);
}

header .navigation li a:hover
{
  color: #ffffff;
}




/* about page */
.about
{
  /* width: 100%;
  margin: auto;
  text-align: center;
  padding-top: 100px; */

  position: relative;
  width: 100%;
  min-height: 100vh;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  background: url(images/banner2.png);
  background-size: cover;
  
  
}

.title{
  width:100%;
  align-items: right;
  margin-left: 15rem;
  position: relative;
  top: 6rem;
  padding-left: 25rem;
  
  /* padding-top: 20rem; */
}
h1{
  font-size: 36px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #2A4E50;
}


p{
  color:rgb(0, 0, 0);
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
  font-family: 'Poppins', sans-serif;
}

.row{
  margin-top: 10%;
  width: 80%;
  margin-left: 15rem;
  display: flex;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
}

.boxes{
  flex-basis: 31%;
  background-color: #DECFC5;
  border-radius: 10px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
  margin: 2rem;
  width: 25rem;
  transition:
}

.boxes:hover{
  box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);

}

html {
  scroll-behavior: smooth;
}