* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
header {
  max-width: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
body {
    font-family: 'Roboto', sans-serif;
    color:#001126;
}
a,
li {
    font-weight: 500;
    font-size: 22px;
    color: #001126;
    text-decoration: none;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 10%;
}
.logo {
  max-width: 10%;
  max-height: 10%;
  cursor: pointer;
}
.nav__links {
  list-style: none;
}
.nav__links li {
  display: inline-block;
  padding: 0px 20px;
}
.nav__links li a {
  transition: all 0.3s ease 0s;
}
.nav__links li a:hover {
  color: #00add4;
}
.container {
  background-color: #d5eaf5;
  display: flex;
  align-items: center;
  height: 400px;
  width: 100%;
  flex-direction: column;
  justify-content: space-evenly;
}
.items {
    display: flex;
    flex-direction: column;

}

@keyframes slide-up {
    from {
        opacity: .25;
        margin-top: 500px;
    }

    to {
        opacity: 1;
        margin-top: 0px;
    }
}

.slide-up {
    animation: slide-up 2s;
    transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
.slide-down {
    animation: slide-down 2s;
    transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
.text {
  max-width: 100%;
  list-style-type: none;
  font-size: 42px;
  font-weight: 900;
  margin: 0 auto;
  padding: 10px;
}
.small-text {
  max-width: 100%;
  list-style: none;
  font-size: 1rem;
  font-weight: 300;
  margin: 0 auto;
  padding: 10px;
}
.smaller-text {
    max-width: 100%;
    list-style: none;
    font-size: 0.6rem;
    font-weight: 300;
    margin: 0 auto;
    padding: 10px;
}
.btn {
  margin: 0 auto;
  padding-top: 20px;
  list-style: none;
}
.button {
    height: 42px;
    width: 140px;
    border-radius: 30px;
    background-color: #00add4;
    border: none;
    font-weight: 500;
    font-size: 17px;
    color: white;
    padding:16px;
}

.tittle {
  font-size: 42px;
  font-weight: 500;
}
.list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.img {
  display: flex;
  flex-direction: column;
  margin: 40px;
  max-width: 20%;
  font-size: 15px;
  text-align: center;
}
.logo1 {
  height: 80px;
  width: 80px;
  margin: 0 auto;
  padding-bottom: 8px;
}
.text-div {
  background-color: #ffff;
}
.wraper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3em;
  grid-auto-rows: minmax(100px, auto);
}
.small-title {
  text-align: center;
  font-size: 22px;
  margin: 10px;
  color: #00add4;
}
.text-div {
  text-align: center;
  border-radius: 30px;
  background-color: #f0f7fa;
  padding: 5px;
  font-size: 17px;
  color: #000;
  font-weight: 300;
}
form {
  display: flex;
  flex-direction: column;
}
input {
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
  border: none;
}
.footer {
  display: flex;
  text-align: center;
  background-color: #f0f7fa;
  color: gray;
}
html {
  scroll-behavior: smooth;
}
