* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: system-ui;
}

body {
  padding: 0px;
  box-sizing: border-box;
  background-color: rgb(223, 223, 223);
}

.logo {
  width: 300px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.logo img {
  width: 100%;
}
.container {
  max-width: 1024px;
  margin: 0 auto;
}
.search-box form {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-box form select {
  width: 40%;
  border: none;
  padding: 10px;
  border-radius: 10px;
  margin-right: 10px;
  color: blue;
  font-weight: bold;
}
@media only screen and (max-width: 600px) {
  .search-box form {
    flex-direction: column;
  }
  .search-box form select {
    width: 100%;
    margin-bottom: 10px;
  }
}
.search-box form select:focus {
  border: none;
}

.search-box form select option:focus {
  border: none !important;
}
.search-box form select option:active {
  border: none !important;
}

.search-box form input[type="submit"] {
  width: 20%;
  background-color: green;
  color: white;
  padding: 10px;
  border: none;
  font-size: 20px;
  border-radius: 18px;
  margin-left: 10px;
  text-transform: uppercase;
}

@media only screen and (max-width: 600px) {
  .search-box form input[type="submit"] {
    font-size: 16px;
    width: 90%;
    margin-left: 0px;
  }
}
main .feature {
  width: 100%;
  display: flex;
  justify-content: right;
  align-items: center;
  margin-bottom: 50px;
}
main .feature h3 {
  background-color: yellow;
  font-size: 30px;
  padding: 5px 50px;
  border-bottom-left-radius: 50px;
}
main .container {
  background-color: white;
  margin-top: 50px;
  margin-bottom: 50px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

main .container article {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
@media only screen and (max-width: 600px) {
  main .container article {
    flex-direction: column;
  }
}
main .container article .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

main .container article h2 {
  color: skyblue;
  font-size: 35px;
}

main .container article p {
  color: rgb(100, 100, 100);
  font-size: 25px;
}
main .container article p span {
  color: skyblue;
}

@media only screen and (max-width: 600px) {
  main .container article .content {
    padding: 20px;
  }
  main .container article h2 {
    color: skyblue;
    font-size: 25px;
  }
  main .container article p {
    font-size: 16px;
  }
}
main .container {
  padding-bottom: 50px;
}

.media img {
  width: 100%;
}
.btn {
  width: 300px;
  background-color: green;
  color: white;
  padding: 10px;
  border: none;
  font-size: 20px;
  border-radius: 18px;
  text-transform: uppercase;
  cursor: pointer;
}
@media only screen and (max-width: 600px) {
  .btn {
    width: 90%;
    background-color: green;
    color: white;
    padding: 10px;
    border: none;
    font-size: 16px;
    border-radius: 18px;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 20px;
    margin-top: 10px;
  }
}

.help-btn {
  position: fixed;
  background-color: rgb(255, 145, 0);
  color: white;
  right: -1px;
  bottom: 100px;
  padding: 10px;
  padding-right: 50px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.help-btn span {
  padding: 0px 10px;
  background-color: white;
  color: rgb(255, 145, 0);
  border-radius: 50px;
  font-weight: bold;
}
.bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 600px) {
  .bottom {
    flex-direction: column;
  }
}
.bottom .content-box {
  padding: 50px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border-radius: 20px;
  margin-bottom: 50px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}
.bottom .content-box .btn {
  background-color: rgb(95, 94, 94);
  width: 200px;
}
.bottom .content-box p {
  margin-top: 10px;
  margin-bottom: 10px;
  color: rgb(80, 80, 80);
}
.bottom .content-box p span {
  color: skyblue;
}
