@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
}

h1, h2, h3, h4 {
  font-weight: 700;
  color: #252b46;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  font-weight: 400;
  color: #9194a1;
  margin-bottom: 15px;
}

a {
  font-size: 15px;
  color: #9194a1;
  font-weight: 500;
}
a:hover {
  color: #fa5757;
}

.last {
  margin-right: 0;
}

input {
  padding: 10px 12px;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid #5368df;
  transition: 0.3s ease-in-out;
}

button {
  border: none;
  outline: none;
  border-radius: 6px;
  text-align: center;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid white;
  transition: 0.3s ease-in-out;
}
button.login {
  background-color: #fa5757;
  color: white;
  border-color: #fa5757;
  text-transform: uppercase;
  letter-spacing: 1px;
}
button.login:hover {
  background-color: white;
  color: #fa5757;
}
button.google-btn {
  background-color: #5368df;
  color: white;
}
button.google-btn:hover {
  border-color: #5368df;
  color: #5368df;
  background-color: white;
}
button.fire-btn {
  color: #9194a1;
}
button.fire-btn:hover {
  border-color: #9194a1;
  background-color: white;
}
button.pannel-btn {
  background-color: #5368df;
  color: white;
}
button.pannel-btn:hover {
  color: #5368df;
  border-color: #5368df;
  background-color: white;
}
button.ext-btn {
  background-color: #5368df;
  color: white;
}
button.ext-btn:hover {
  background-color: white;
  color: #5368df;
  border-color: #5368df;
}
button.ask-btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-color: #5368df;
  color: white;
}
button.ask-btn:hover {
  color: #5368df;
  border-color: #5368df;
  background-color: white;
}

header {
  position: relative;
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  header {
    padding: 30px 50px;
  }
  header nav {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
  }
  header nav ul {
    display: flex;
    align-items: center;
  }
  header nav ul li {
    margin-right: 20px;
  }
  header .menu {
    display: none !important;
  }
}
@media (max-width: 767px) {
  header nav {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
    text-align: center;
    background-color: #252b46;
    border-radius: 6px;
    width: 95%;
  }
  header nav ul li {
    padding-bottom: 20px;
    padding-top: 20px;
    border-bottom: 1px solid #9194a1;
  }
  header nav ul li a {
    color: white;
  }
  header nav button {
    margin-top: 15px;
    width: 100%;
    background-color: #252b46 !important;
  }
}
header nav {
  display: none;
}
header .menu {
  cursor: pointer;
}
header .close {
  display: none;
  cursor: pointer;
}
header .close i {
  font-size: 30px;
  color: #252b46;
}

main {
  padding: 20px 20px;
  display: flex;
}
@media (min-width: 768px) {
  main {
    padding: 30px 50px;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 767px) {
  main {
    flex-direction: column;
  }
  main .desc {
    order: 2;
  }
  main .illus {
    order: 1;
  }
}
main .illus img {
  width: 100%;
}

.pannels {
  padding: 20px 20px;
}
@media (min-width: 768px) {
  .pannels {
    padding: 30px 50px;
  }
  .pannels .container .show-pannel {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    justify-content: space-around;
  }
  .pannels .container .show-pannel > div {
    padding: 0 20px !important;
  }
  .pannels .container .show-pannel > div span {
    display: block;
    margin-bottom: 0;
    padding-bottom: 15px;
    margin-right: 15px;
    cursor: pointer;
  }
  .pannels .container .pannel {
    margin-bottom: 20px;
  }
  .pannels .container .pannel > div {
    width: 45%;
    text-align: left;
  }
  .pannels .container .pannel .img {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 767px) {
  .pannels .container .pannel {
    margin-top: 20px;
  }
}
.pannels h2, .pannels p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.pannels .container {
  text-align: center;
}
.pannels .container .show-pannel {
  border-bottom: 1px solid #9194a1;
}
.pannels .container .show-pannel > div {
  padding: 20px 0;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.pannels .container .show-pannel > div:first-child {
  border-bottom: 2px solid #fa5757;
}
.pannels .container .show-pannel > div:first-child span {
  color: #252b46;
}
.pannels .container .show-pannel > div span {
  display: block;
  width: fit-content;
  margin-bottom: 0;
  padding-bottom: 15px;
  margin-right: 15px;
  cursor: pointer;
  color: #9194a1;
}
.pannels .container .show-pannel > div span:hover {
  color: #fa5757;
}
.pannels .container .pannel {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pannels .container .pannel.two, .pannels .container .pannel.three {
  display: none;
}
.pannels .container .pannel .img {
  margin-bottom: 20px;
}
.pannels .container .pannel .img img {
  width: 100%;
}

.extensions {
  padding: 20px 20px;
}
@media (min-width: 768px) {
  .extensions {
    padding: 30px 50px;
  }
  .extensions .ext-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
  }
  .extensions .ext-box > div .points {
    text-align: left !important;
  }
}
.extensions h2, .extensions > p {
  text-align: center;
}
.extensions .ext-box > div {
  padding: 20px;
  margin-right: 20px;
  box-shadow: 2px 2px 4px #9194a1;
  text-align: center;
  height: fit-content;
  border-radius: 6px;
}
.extensions .ext-box > div.google {
  margin-top: 20px;
}
.extensions .ext-box > div.firefox {
  margin-top: 40px;
}
.extensions .ext-box > div.opera {
  margin-top: 60px;
}
.extensions .ext-box > div .points {
  text-align: center;
  width: 100%;
  letter-spacing: 5px;
  overflow: hidden;
  font-weight: 600;
}

.ask {
  padding: 20px 20px;
}
@media (min-width: 768px) {
  .ask {
    padding: 30px 50px;
  }
}
.ask h2, .ask > p {
  text-align: center;
}
.ask .q-a {
  margin-top: 30px;
}
.ask .q-a > div {
  border-top: 1px solid #9194a1;
  position: relative;
}
.ask .q-a > div h3 {
  font-weight: 500;
  width: 80%;
  padding: 15px 0;
  margin-bottom: 0;
  cursor: pointer;
}
.ask .q-a > div h3:hover {
  color: #fa5757;
}
.ask .q-a > div p {
  text-align: left;
  display: none;
}
.ask .q-a > div p:last-child {
  padding-bottom: 10px;
}
.ask .q-a > div img {
  position: absolute;
  top: 20px;
  right: 20px;
}
.ask .q-a > div:last-child {
  border-top: 1px solid #9194a1;
}

@media (min-width: 768px) {
  footer > div {
    padding: 30px 50px !important;
  }
  footer .up {
    padding-bottom: 50px;
  }
  footer .up form {
    display: flex;
    justify-content: center;
  }
  footer .up form div {
    margin: 0 !important;
  }
  footer .up form #submit {
    margin-top: 0 !important;
  }
  footer .links {
    display: flex;
    align-items: center;
  }
  footer .links .logo {
    width: 120px;
  }
  footer .links .container {
    width: calc(100% - 120px);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer .links .container .link ul {
    display: flex;
  }
  footer .links .container .link ul li {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  footer .links .logo {
    margin-bottom: 20px;
  }
  footer .links .link {
    margin-bottom: 20px;
  }
  footer .links .link ul li {
    margin-bottom: 20px;
  }
}
footer > div {
  padding: 20px 20px;
}
footer .up {
  text-align: center;
  background-color: #5368df;
}
footer .up h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  word-spacing: 3px;
  color: white;
}
footer .up > p {
  text-align: center;
  color: white;
  word-spacing: 6px;
}
footer .up form div {
  width: 300px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
footer .up form div .error-msg {
  position: absolute;
  left: 0;
  top: 38px;
  font-size: 10px;
  font-weight: 400;
  background-color: #fa5757;
  color: white;
  padding: 5px 5px;
  opacity: 0;
  border-radius: 6px;
}
footer .up form div #email {
  width: 300px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 6px;
}
footer .up form div .error {
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
}
footer .up form #submit {
  background-color: #fa5757;
  color: white;
  margin-top: 30px;
}
footer .up form #submit:hover {
  color: #fa5757;
  border-color: #fa5757;
  background-color: white;
}
footer .links {
  background-color: #252b46;
}
footer .links .logo {
  font-size: 18px;
  color: white;
  font-style: italic;
  font-weight: 400;
  text-align: center;
}
footer .links .container .link ul {
  text-align: center;
}
footer .links .container .social {
  text-align: center;
}
footer .links .container .social a {
  margin-right: 20px;
}
footer .links .container .social a i {
  color: white;
}
footer .links .container .social a i:hover {
  color: #fa5757;
}

.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: #3e52a3;
}

/*# sourceMappingURL=main.css.map */
