@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

*{
  font-family: 'Montserrat', sans-serif;
}
html body{
  height: 100%;
}
.top{
  background-color: #5359B3;
  height: 85px;
  display: flex;
  justify-content: center;
}
nav.top img{
  width: auto;
  height: auto;
  padding: 10px 0px;
}

section{
  background-image: url(../img/bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  /* min-height: 100vh;  */
  /* position: relative; */
  /* height: auto; */
}
section div.header h1{
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  padding-top: 60px;
}
.header-heading{
  text-transform: uppercase;
  color: white;
}

h2 span{
  text-transform: capitalize;
  font-weight: 400;
}
.main-btn{
  background-color: #5359B3;
  color: white;
  width: 200px;
  height: 70px;
  border-radius: 14px;
  font-weight: 500;
  font-size: 25px;
}

.main-btn:hover{
  color: white;
  letter-spacing: 4px;
  transition: 0.5s;
}

.content-h2{
  text-transform: uppercase;
  color: #5359B3;
  margin-top: 39px;
}

p{
  font-size: 27px;
  line-height: 35px;
  margin-top: 27px;
  color: #525252;
}

h5{
  color: #5359B3;
}

.btn-list{
  background-color: #5359B3;
  color: white;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 20px;
  width: auto;
}

.btn-list:hover{
  color: white;
  letter-spacing: 2px;
  transition: 0.3s;
}

.footer{
  background-color: #5359B3;
  width: 100%;
  color: white;
}

a{
  text-decoration: none;
}