* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

ul {
  list-style: none;
}

button,
.change p,
.question--container {
  cursor: pointer;
}

button, a, .change p {
  transition: all 0.3s ease-in-out;
}

a {
  text-decoration: none;
}

.main--container {
  padding: 0 2em;
  text-align: center;
  overflow: hidden;
  margin-top: 5.0625em;
}

.info {
  color: hsl(229, 31%, 21%);
  font-size: 0.9375em;
  line-height: 25px;
  opacity: 0.5;
}

.title--same--styles {
  color: hsl(229, 31%, 21%);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 52px;
  letter-spacing: -0.075px;
}

.btn--same--styles {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.25px;
  box-shadow: 0px 8px 8px -4px rgba(73, 93, 207, 0.2);
  border-radius: 5px;
  border: 2px solid;
  background-color: #5267DF;
  color: #fff;
}

@media (min-width: 860px) {
  .title--same--styles {
    font-size: 2rem;
    letter-spacing: -0.1px;
  }
  .info {
    font-size: 1.125rem;
    line-height: 28px;
  }
}
@media (min-width: 1200px) {
  .main--container {
    padding: 0 10.3125em;
  }
}
/*hover state and focus state*/
button:hover, button:focus {
  background-color: #fff;
  color: #5267DF;
}

.hero--section .firefox--btn:hover, .hero--section .firefox--btn:focus {
  border-color: hsl(229, 31%, 21%);
}

.change p:hover, .change p:focus {
  color: #FA5959;
}

.form--container .btn--same--styles:focus, .form--container .btn--same--styles:hover {
  background-color: #fff;
  color: #FA5959;
}

.FAQs .question--container:hover .question {
  color: #FA5959;
}

footer li a:hover, footer li a:focus {
  color: #FA5959;
}

/*mobile design*/
/*Header start*/
header {
  display: flex;
  padding: 2.5em 2em 0 2em;
  position: relative;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.filter--white {
  filter: invert(95%) sepia(0%) saturate(0%) hue-rotate(165deg) brightness(158%) contrast(103%);
  transition: all 0.7s ease-in-out;
}

.menu {
  width: 18px;
  height: 15px;
  position: relative;
}
.menu span {
  position: absolute;
  width: 100%;
  height: 3px;
  transition: all 0.3s ease-in-out;
  background-color: hsl(229, 31%, 21%);
}
.menu span:first-child {
  top: 0;
}
.menu span:nth-child(2) {
  top: 6px;
}
.menu span:last-child {
  top: 12px;
}
.menu.active span {
  background-color: #fff;
}
.menu.active span:first-child, .menu.active span:last-child {
  top: 0;
}
.menu.active span:nth-child(2) {
  opacity: 0;
}
.menu.active span:first-child {
  transform: rotate(-45deg);
}
.menu.active span:last-child {
  transform: rotate(45deg);
}

nav button, nav li {
  text-align: center;
  font-size: 1.25rem;
  line-height: 17px;
  letter-spacing: 2.308px;
  text-transform: uppercase;
  padding: 1.5em 0;
  border-top: 1px solid rgba(255, 255, 255, 0.150000006);
}

nav {
  position: fixed;
  left: 100%;
  top: 0;
  transition: all 0.5s ease-in-out;
  min-height: 109vh;
  width: 100%;
  background: hsl(229, 31%, 21%);
  z-index: -1;
  padding: 0 2em;
}
nav ul {
  margin-top: 5.875em;
}
nav.active {
  left: 0;
}
nav li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.150000006);
}
nav li a {
  color: #FFF;
}
nav button {
  padding: 0.8em;
  background-color: transparent;
  border-radius: 5px;
  border: 2px solid #FFF;
  width: 100%;
  margin-top: 1.5em;
  color: #FFF;
}

/* desktop design*/
@media (min-width: 860px) {
  .menu {
    display: none;
  }
  nav {
    position: relative;
    left: 0;
    min-height: auto;
    width: auto;
    background: none;
    z-index: auto;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 3em;
  }
  nav ul {
    margin: 0;
    display: flex;
    gap: 3em;
  }
  nav li a {
    color: hsl(229, 31%, 21%);
  }
  nav li a:hover {
    color: #FA5959;
  }
  nav li:last-child {
    border: none;
  }
  nav button {
    border-radius: 5px;
    background: #FA5959;
    box-shadow: 0px 8px 8px -4px rgba(37, 43, 70, 0.2);
    padding: 0.921em 2.47em 0.841em 2.64em;
    color: #FFF;
    border: 2px solid #FA5959;
    margin: 0;
  }
  nav button:hover {
    background-color: #FFF;
    color: #FA5959;
  }
  nav li, nav button {
    margin: 0;
    font-size: 0.8125em;
    letter-spacing: 1.5px;
  }
}
@media (min-width: 1200px) {
  header {
    padding: 2.5em 10.3125em 0 10.6875em;
  }
  header li {
    width: 5.7692307692em;
  }
  .logo img {
    width: 9.3125em;
  }
}
/*Header end*/
/*hero section start*/
.hero--section {
  display: flex;
  flex-direction: column-reverse;
  gap: 3em;
}
.hero--section .hero--img {
  width: 100%;
}
.hero--section h1 {
  color: hsl(229, 31%, 21%);
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.094px;
  margin-top: 1.6em;
  margin-bottom: 0.533em;
}
.hero--section .info {
  margin-bottom: 2.8em;
}
.hero--section .btns--container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875em;
}
.hero--section button {
  padding: 0.713em 1.148em 0.713em 1.212em;
}
.hero--section .firefox--btn {
  background: #F7F7F7;
  color: hsl(229, 31%, 21%);
  border-color: #F7F7F7;
}

.snd--child {
  display: grid;
  place-content: center;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.snd--child img {
  grid-area: 1/1;
}

.shape {
  width: 162%;
  height: 80%;
  background-color: #5267DF;
  border-radius: 316.5px;
  grid-area: 1/1;
  transform: translate(10%, 26%);
  z-index: -1;
}

@media (min-width: 800px) {
  .info {
    width: 61%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 860px) {
  .main--container {
    margin-top: 5.96875em;
  }
  .hero--section {
    flex-direction: initial;
    align-items: center;
    text-align: left;
  }
  .hero--section h1 {
    font-size: 3rem;
    line-height: 52px;
    letter-spacing: -0.15px;
    margin-top: 0;
    margin-bottom: 0.5em;
  }
  .hero--section .snd--child {
    width: 100%;
  }
  .hero--section .info {
    width: auto;
    margin-bottom: 1.77777em;
  }
  .hero--section .btns--container {
    justify-content: initial;
    gap: 1em;
  }
}
@media (min-width: 1200px) {
  .hero--section {
    gap: 0em;
  }
  .hero--section .info {
    width: 30em;
  }
  .snd--child img {
    width: 121%;
  }
}
@media (min-width: 1300px) {
  .hero--section {
    gap: 4.21875em;
  }
}
/*hero section end*/
/* features section start*/
.features .title--same--styles {
  margin-top: 5.8333em;
}
.features .info {
  margin-bottom: 2.665em;
}

.change p {
  color: hsl(229, 31%, 21%);
  font-size: 1rem;
  line-height: 17px;
  letter-spacing: 0.533px;
  border-top: 1px solid rgba(37, 43, 70, 0.2);
  padding: 1.25em 0;
}
.change span {
  height: 4px;
  background: #FA5959;
  margin: 0 auto;
}
.change .s1 {
  width: 143px;
  display: block;
}
.change .s2 {
  width: 120px;
}
.change .s3 {
  width: 90px;
}

.list--of--features {
  padding-top: 4.506875em;
  border-top: 1px solid rgba(37, 43, 70, 0.2);
  display: flex;
  flex-direction: column-reverse;
}
.list--of--features .title--same--styles {
  margin-top: 16%;
}
.list--of--features .info {
  margin-bottom: 1em;
}
.list--of--features .img {
  width: 100%;
}
.list--of--features .shape {
  transform: translate(-47%, 18%);
  height: 99%;
}
.list--of--features button {
  padding: 0.713em 1.72em 0.713em 1.72em;
  margin-bottom: 5.5em;
}

@media (min-width: 700px) {
  .list--of--features .img {
    width: 80%;
    margin: 0 auto;
  }
}
@media (min-width: 860px) {
  .features .title--same--styles {
    margin-top: 3.33335em;
  }
  .features .info {
    margin-bottom: 4em;
    width: 30em;
  }
  .change {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5.65625em;
  }
  .change p {
    border-top: none;
  }
  .list--of--features {
    text-align: left;
    flex-direction: row-reverse;
    gap: 3em;
    align-items: center;
    padding-top: 4.5125em;
  }
  .list--of--features .info {
    width: 24.7222222222em;
  }
  .list--of--features .snd--child {
    width: 100%;
  }
  .list--of--features .img {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .list--of--features {
    border: none;
    gap: 4em;
    margin-left: -4em;
  }
  .change {
    border-bottom: 1px solid rgba(37, 43, 70, 0.2);
    width: 45.625em;
    margin: 0 auto;
  }
  .change .s {
    width: 15.1875rem;
  }
}
@media (min-width: 1300px) {
  .list--of--features {
    gap: 7.8125em;
  }
}
/* features section end*/
/* download section start*/
.download .type--of-browser {
  border-radius: 15px;
  background: #FFF;
  box-shadow: 0px 10px 20px -5px rgba(73, 93, 207, 0.2);
  margin-bottom: 2.5em;
  padding-bottom: 1.5em;
}
.download img {
  padding-top: 3.0625em;
}
.download .add {
  color: hsl(229, 31%, 21%);
  font-size: 1.25rem;
  margin-top: 1.6em;
  margin-bottom: 0.3em;
  font-weight: 500;
  letter-spacing: 0.25px;
}
.download .version {
  padding-bottom: 2.13em;
}
.download .version.info {
  line-height: 28px;
  margin-bottom: 0;
}
.download button {
  padding: 0.713em 2.536em 0.713em 2.536em;
  display: block;
  margin: 1.712em auto 0 auto;
}

@media (min-width: 860px) {
  .download > .info {
    width: 30em;
  }
  .browsers {
    display: flex;
    gap: 1em;
    position: relative;
    margin-top: 3em;
  }
  .browsers .type--of-browser {
    width: 33%;
  }
  .browsers .type--of-browser:nth-child(2) {
    transform: translateY(17%);
  }
  .browsers .type--of-browser:last-child {
    transform: translateY(32%);
  }
  .browsers svg {
    width: 100%;
  }
}
@media (min-width: 1000px) {
  .download {
    margin-top: 10%;
  }
}
/* download section end */
/*FAQs start*/
.FAQs--container .title--same--styles {
  line-height: 30px;
  margin-bottom: 0.66em;
}
.FAQs--container .info {
  margin-bottom: 4.2667em;
}
.FAQs--container .FAQs {
  text-align: left;
  border-bottom: 1px solid rgba(37, 43, 70, 0.1476934552);
  margin-bottom: 1.5em;
}
.FAQs--container .FAQs.active .answer {
  display: block;
}
.FAQs--container .FAQs.active .arrow {
  transform: rotate(180deg);
}
.FAQs--container .FAQs.active .arrow .str {
  stroke: #FA5959;
}
.FAQs--container .question--container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75em;
}
.FAQs--container .arrow {
  transition: all 0.3s ease-in-out;
}
.FAQs--container .question {
  color: #242A45;
  font-size: 0.9375rem;
  line-height: 32px;
}
.FAQs--container .answer {
  color: hsl(229, 31%, 21%);
  font-size: 0.9375rem;
  line-height: 30px;
  letter-spacing: 0.141px;
  margin-top: 26px;
  display: none;
}
.FAQs--container button {
  margin-top: 3.424em;
  padding: 0.713em 1.72em 0.713em 1.72em;
  margin-bottom: 8.786em;
}

@media (min-width: 860px) {
  .FAQs--container {
    width: 70%;
    margin: 9.3125em auto 0 auto;
  }
  .FAQs--container .info {
    width: 30em;
  }
  .FAQs--container .question {
    font-size: 1.125rem;
  }
  .FAQs--container .answer {
    width: 33.75em;
  }
}
/*FAQs end*/
.form--container {
  background-color: #5267DF;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.form--container h4 {
  color: #FFF;
  line-height: 28px;
  width: 82%;
  margin: 0 auto 1.333em auto;
}
.form--container p {
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 4.615px;
  order: -1;
  padding-top: 5em;
}
.form--container form {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.form--container .input--container {
  z-index: 3;
  display: grid;
  place-items: center;
}
.form--container input {
  color: rgba(37, 43, 70, 0.25);
  font-size: 0.875rem;
  line-height: 28px;
  letter-spacing: 0.25px;
  padding: 0.713em 8.929em 0.713em 1.426em;
  margin-bottom: 1.852em;
  border: none;
  border-radius: 5px;
  width: 22.2142857143em;
  grid-area: 1/1;
}
.form--container img {
  grid-area: 1/1;
  z-index: 2;
  transform: translate(8.4375rem, -0.75rem);
  display: none;
}
.form--container .error {
  position: absolute;
  background: #FA5959;
  top: -1%;
  width: 19.6875rem;
  padding: 3.25em 7.9375em 0.375em 0px;
  z-index: 1;
  border-radius: 5px;
  display: none;
}
.form--container .error p {
  font-style: italic;
  font-size: 0.625em;
  padding: 0;
  margin: 0;
  width: 98%;
  letter-spacing: 0.25px;
  line-height: normal;
}
.form--container .btn--same--styles {
  padding: 0.713em 8.286em 0.713em 8.358em;
  margin-bottom: 4.26em;
  width: 22.2142857143em;
  background-color: #FA5959;
  border-color: #FA5959;
}

@media (min-width: 860px) {
  .form--container .title--same--styles {
    width: 12.75em;
    margin-top: 0.75em;
    margin-bottom: 1.125em;
  }
  .form--container p {
    font-size: 0.8125rem;
    letter-spacing: -0.1px;
  }
  .form--container form {
    flex-direction: row;
    justify-content: center;
    gap: 2.5em;
    padding-bottom: 4.5em;
    position: relative;
  }
  .form--container img {
    transform: translate(8.4375rem, 0);
  }
  .form--container .error {
    transform: translateX(-5.125em);
    width: 19.875rem;
  }
  .form--container input {
    margin: 0;
  }
  .form--container .btn--same--styles {
    margin: 0;
    width: auto;
    padding-left: 1.712em;
    padding-right: 1.712em;
  }
  .form--container .btn--same--styles:hover, .form--container .btn--same--styles:focus {
    background-color: #fff;
    color: #FA5959;
  }
}
/* footer start*/
footer {
  text-align: center;
}
footer .first--child {
  background-color: hsl(229, 31%, 21%);
}
footer .fi {
  padding-top: 2.5em;
}
footer ul {
  margin-top: 2.4375em;
  margin-bottom: 3em;
}
footer li {
  font-size: 0.9375rem;
  margin-bottom: 2.1333em;
  line-height: 17px;
  letter-spacing: 1.731px;
  text-transform: uppercase;
}
footer li a {
  color: #FFF;
}
footer .t {
  padding-bottom: 2.6875em;
}
footer p.attribution {
  color: white;
  font-size: 0.7em;
  line-height: 1.6;
  background: hsl(229, 31%, 21%);
  padding-bottom: 1em;
}
footer p.attribution a {
  color: white;
  text-decoration: underline;
}

@media (min-width: 860px) {
  footer .first--child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2em 2.3125em;
  }
  footer .fi {
    display: flex;
    align-items: center;
    gap: 4.0625em;
    padding: 0;
  }
  footer ul {
    display: flex;
    margin: 0;
  }
  footer li {
    margin: 0 2.9333em 0 0;
    font-size: 0.8125em;
    letter-spacing: 0.03125em;
  }
  footer .t {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  footer .first--child {
    padding-left: 10.3125em;
    padding-right: 10.3125em;
  }
}
/* footer end*//*# sourceMappingURL=main.css.map */