* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Core Sans C;
}
body {
  scroll-behavior: smooth;
}
li {
  list-style-type: none;
}
a {
  text-decoration: none;
}
.scrollTotop {
  position: fixed;
  right: 100px;
  bottom: 70px;
  font-size: 20px;
  width: 40px;
  color: #000;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #eee;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  cursor: pointer;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  padding: 10px;
  display: none;
}

.scrollTotop:hover {
  color: #fff;
  background-color: crimson;
}
.specialArticle {
  position: relative;
  padding: 10px 0;
  font-weight: bold;
  font-size: 30px;
}
.specialArticle::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 100%;
  left: -30px;
  top: 0;
  background-color: #8a33fd;
}

.hero {
  position: relative;
}
.hero header {
  background-color: #fff;
  width: 100%;
  padding: 20px 10px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: fixed;
  z-index: 999;
  top: 0;
  box-shadow: 6px 3px 13px 4px #00000069;
}
.hero header .links {
  display: flex;
  justify-content: space-between;
}
.hero header .links a {
  color: #807d7e;
  font-size: 22px;
  margin-right: 8px;
  padding: 8px 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.hero header .links a.active {
  color: #3c4242;
}
.hero header .links a:hover {
  color: white;
  background-color: rgba(0, 0, 0, 0.8);
}

.hero header .search {
  display: flex;
  align-items: center;
  position: relative;
  width: 200px;
}
.hero header .search input {
  padding: 10px 5px 10px 40px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  outline: none;
  margin: 0 5px;
  border: 1px solid #f6f6f6;
  background-color: #f6f6f6;
  width: 40%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.hero header .search input:focus {
  border: 2px solid #8a33fd;
  width: 100%;
}
.hero header .search img {
  position: absolute;
  left: 10px;
}

.hero header .buttons i {
  padding: 10px;
  margin-right: 10px;
  background-color: #eee;
  border-radius: 10px;
  color: #3c4242;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.hero header .buttons i:hover {
  color: #fff;
  background-color: #3c4242;
}
.hero header .buttons i.active {
  color: #fff;
  background-color: #3c4242;
}
.hero header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.hero header .header-content.active {
  left: 0%;
}
.bar {
  display: none;
  font-size: 25px;
  cursor: pointer;
}
@media (width < 992px) {
  .hero header .header-content {
    position: fixed;
    height: 100%;
    width: 67%;
    top: 0;
    left: -100%;
    z-index: 999;
    background-color: rgb(0 0 0 / 60%);
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
  }
  .hero header .links {
    flex-direction: column;
    justify-content: space-between;
    height: 50%;
  }
  .hero header .links li a {
    color: #fff;
  }
  .hero header .bar {
    display: block;
  }
}
/* contact us */
.container {
  margin-top: 95px;
  display: flex;
}
@media (width < 992px) {
  .container {
    flex-direction: column;
  }
}

.container .img img {
  width: 100%;
  max-width: 100%;
  height: 100%;
}
.container form {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px 0 0 50px;
}
#errorMessage {
  padding: 0;
  margin-bottom: 20px;
  font-size: 35px;
  font-weight: bold;
  color: red;
  text-align: center;
  background-color: #eee;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  display: none;
}

.container form input,
.container form textarea {
  padding: 15px 20px;
  width: 90%;
  font-size: 20px;
  margin: 15px 0;
  border: 1px solid black;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.container form input:focus,
.container form textarea:focus {
  outline: none;
  border: 1px solid #8a33fd;
}
.container form textarea {
  resize: none;
  height: 200px;
}
.container form input[type="submit"] {
  align-self: flex-start;
  width: 150px;
  background-color: #8a33fd;
  color: #fff;
  cursor: pointer;
  border: none;
}

.container form div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.container form div label {
  font-size: 25px;
  font-weight: bold;
}
/* footer */

.footer {
  padding: 30px 20px 0;
  background-color: #3c4242;
  color: #f6f6f6;
  margin-top: 30px;
}
.footer a {
  color: #f6f6f6;
}
.footer .our-links {
  display: flex;
  justify-content: space-evenly;

  flex-wrap: wrap;
}
.footer .our-links h2 {
  font-size: 30px;
  margin: 20px 0;
}
.footer .our-links li {
  margin-bottom: 10px;
  font-size: 20px;
}
@media (width <992px) {
  .footer .our-links {
    justify-content: space-between;
  }
}
@media (width <768px) {
  .footer .our-links {
    flex-direction: column;
  }
}
.footer .contact-us {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.footer .contact-us .social-media {
  display: flex;
  justify-content: space-between;
}
.footer .contact-us .social-media a {
  margin-right: 10px;
}
.footer .contact-us .apps {
  margin-bottom: 30px;
}
.footer .contact-us .apps h1 {
  margin-bottom: 20px;
}
.footer .contact-us .apps ul {
  display: flex;
}
@media (width <768px) {
  .footer .contact-us {
    margin-top: 40px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer .copywrite {
  text-align: center;
  padding: 20px 0;
}
