.header {
  color: white;
  padding: 2.5% 10% 5% 10%;
  background-color: #3b45da;
}
.header .logo {
  display: flex;
  align-items: center;
}
.header .logo img {
  height: 4rem;
  margin: 1rem;
}
h1 {
  margin: 0 1rem 1rem 0;
  font-size: 3rem;
}
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  outline: none;
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  font-size: 1.25rem;
  margin-top: 2rem;
  background-color: #f79b08;
  transition: all 0.3s linear;
}
.button:hover {
  color: white !important;
  background-color: #ffc600;

  /* background-color: #dbd368; */
}

.header .content .part {
  padding: 0 !important;
}
.header .content {
  margin: 0 !important;
}
.content {
  display: flex;
  flex-wrap: wrap;
  margin: 5% 0;
}
.content .part {
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  width: 50%;
}
.content .part img {
  max-height: 20rem;
}
.content .part p {
  margin: 2rem 0;
  max-width: 80%;
  font-size: 1.5rem;
  color: #263035;
}
.right {
  padding: 4rem;
  padding-right: 10%;
}
.left {
  padding: 4rem;
  padding-left: 10%;
}
.image {
  align-items: center;
  background-color: #3b45da;
}

.content-right {
  direction: ltr;
}
.content-right .part{
  direction: rtl;
}



.keep {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5% 10%;
}

h2 {
  padding: 2rem 0;
  font-size: 1.75rem;
  font-weight: normal;
}
.keep .input {
  display: flex;
  justify-content: center;
  width: 100%;
}
.keep .input .button {
  border-radius: 0.5rem 0 0 0.5rem;
  margin: 0;
}
.keep .input input {
  border: none;
  outline: none;
  width: 30%;
  padding: 0 4rem;
  font-size: 1.25rem;
  border-radius: 0 0.5rem 0.5rem 0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 6px 12px 0 rgba(0, 0, 0, 0.05);
}

.end {
  padding: 2.5% 10%;
  color: white;
  background-image: url(./assets/title.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 80px;
}

@media screen and (max-width: 900px) {
  .content .part {
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 5%;
  }
  .content .part p {
    max-width: 100%;
  }
  .content .part img {
    height: 15rem;
    width: auto;
  }
  .keep {
    padding: 5% 1%;
  }
}