:root {
  --main-font:"Poppins", sans-serif;
  --sec-font:"Cairo", sans-serif;
  font-size: 20px;
  scroll-behavior: smooth;
  --main-color:#6de754;
  --sec-color:#161815;
  --third-color:#f8f8f8;
  --add-color:#272727;
  --color_1: #6de754;
  --color_2: #a419ae;
  --color_3: #55b3f1;
  --color_4: #21d8d8;
  --color_5: #2176d8;
  --color_6: #da277a;
}

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

html {
  font-family: var(--main-font);
}

html[lang=ar] * {
  font-family: var(--sec-font);
}
html[lang=ar] li.language .langs h1 {
  font-size: 17px !important;
}
html[lang=ar] li.language .langs h1:hover {
  background-color: var(--main-color);
}
html[lang=ar] article.free-design section .content {
  text-align: right;
}

::-moz-selection {
  background-color: var(--main-color);
  color: var(--third-color);
}

::selection {
  background-color: var(--main-color);
  color: var(--third-color);
}

body {
  overflow-x: hidden;
  background-color: var(--sec-color);
  color: var(--third-color);
}

section {
  padding: 3rem 0;
  width: 100dvw;
  overflow-x: hidden;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  margin: auto;
}

button {
  padding: 0.5rem 0.7rem;
  border-radius: 5px;
  border: 1px solid var(--main-color);
  transition: all ease-in-out 0.2s;
  -webkit-transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  -ms-transition: all ease-in-out 0.2s;
  cursor: pointer;
}
button.btn-fill {
  background-color: var(--main-color);
}
button.btn-fill a {
  color: var(--sec-color);
}
button.btn-fill:hover {
  background-color: inherit;
}
button.btn-fill:hover a {
  color: var(--third-color);
}
button.btn-nofill {
  background-color: inherit;
}
button.btn-nofill a {
  color: var(--third-color);
}
button.btn-nofill:hover {
  background-color: var(--main-color);
}
button.btn-nofill:hover a {
  color: var(--sec-color);
}
button a {
  font-size: 1rem;
  font-weight: 500;
  transition: all ease-in-out 0.2s;
  -webkit-transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  -ms-transition: all ease-in-out 0.2s;
  width: 100%;
  height: 100%;
}

.main-ul {
  margin-top: 1rem;
}
.main-ul li {
  background-color: var(--add-color);
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 0.5rem;
}
.main-ul li svg {
  width: 2rem;
}
.main-ul li svg path {
  stroke: var(--main-color);
}
.main-ul li svg path.fill {
  fill: var(--main-color);
}
.main-ul li h5 {
  font-size: 0.8rem;
  font-weight: 600;
}
.main-ul li p {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  opacity: 0.8;
}

@media (min-width: 600px) {
  button {
    padding: 0.5rem 1rem;
    border: 2px solid var(--main-color);
  }
  button a {
    font-size: 2rem;
  }
  .main-ul {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    -moz-justify-content: center;
    -moz-align-items: center;
    -moz-flex-direction: row;
    -o-justify-content: center;
    -o-align-items: center;
    -o-flex-direction: row;
    -ms-justify-content: center;
    -ms-align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .main-ul li {
    margin: 0;
    width: 48%;
    height: 210px;
  }
  .main-ul li h5 {
    font-size: 1rem;
  }
  .main-ul li p {
    aspect-ratio: 5/1;
  }
}
@media (min-width: 900px) {
  .main-ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    -moz-justify-content: space-between;
    -moz-align-items: center;
    -moz-flex-direction: row;
    -o-justify-content: space-between;
    -o-align-items: center;
    -o-flex-direction: row;
    -ms-justify-content: space-between;
    -ms-align-items: center;
    gap: 1rem;
  }
  .main-ul li {
    margin: 0;
    width: calc((100% - 2rem) / 3);
    min-height: 200px;
    height: 230px;
  }
}
#openMenu {
  cursor: pointer;
  background-color: var(--sec-color);
  border: 1px solid var(--main-color);
  display: flex;
  padding: 0.3rem;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 999;
}
#openMenu svg {
  width: 2rem;
  height: 2rem;
}
#openMenu svg path:first-of-type {
  stroke: var(--third-color);
}
#openMenu svg path:last-of-type {
  stroke: var(--main-color);
}

#toTop {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  -moz-justify-content: center;
  -moz-align-items: center;
  -moz-flex-direction: row;
  -o-justify-content: center;
  -o-align-items: center;
  -o-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  cursor: pointer;
  z-index: 9999;
  border: 2px solid var(--sec-color);
}
#toTop svg {
  width: 2rem;
  height: 2rem;
}
#toTop svg path {
  fill: var(--sec-color);
}
#toTop:hover {
  background-color: var(--sec-color);
  border: 2px solid var(--main-color);
}
#toTop:hover svg path {
  fill: var(--main-color);
}

.transition-div {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100vh;
  background-color: #161815;
  z-index: 999999;
  transition: width 1s;
  overflow: hidden;
}

.settings {
  position: fixed;
  left: 0;
  top: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  cursor: pointer;
  z-index: 9999;
}
.settings > *:not(svg) {
  box-shadow: 0 0 34px -13px black;
  -webkit-box-shadow: 0 0 34px -13px black;
  -moz-box-shadow: 0 0 34px -13px black;
  -o-box-shadow: 0 0 34px -13px black;
  -ms-box-shadow: 0 0 34px -13px black;
}
.settings .settings-elements {
  position: absolute;
  background-color: var(--third-color);
  border-radius: 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  top: 1rem;
  left: 0;
  padding: 0;
  text-align: center;
  direction: ltr;
}
.settings .settings-elements .active {
  background-color: var(--main-color);
}
.settings .settings-elements > li {
  border-bottom: 1px solid var(--sec-color);
  position: relative;
  border-radius: 0.25rem;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  -moz-justify-content: center;
  -moz-align-items: center;
  -moz-flex-direction: row;
  -o-justify-content: center;
  -o-align-items: center;
  -o-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
}
.settings .settings-elements > li .child {
  transition: all ease-in-out 0.2s;
  -webkit-transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  -ms-transition: all ease-in-out 0.2s;
}
.settings .settings-elements > li .right {
  right: -220px !important;
}
.settings .settings-elements > li:hover {
  background-color: var(--main-color);
}
.settings .settings-elements > li svg path {
  stroke: var(--sec-color);
}
.settings .settings-elements li.language svg {
  width: 2rem;
  height: 2rem;
}
.settings .settings-elements li.language .langs {
  position: absolute;
  right: 100dvw;
  top: 0;
  background-color: var(--third-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -webkit-align-items: center;
  -moz-justify-content: space-between;
  -moz-align-items: center;
  -moz-flex-direction: row;
  -o-justify-content: space-between;
  -o-align-items: center;
  -o-flex-direction: row;
  -ms-justify-content: space-between;
  -ms-align-items: center;
  gap: 1rem;
  padding: 0;
  height: 50px;
  width: 200px;
  border-radius: 0.25rem;
  box-shadow: 0 0 34px -13px black;
  -webkit-box-shadow: 0 0 34px -13px black;
  -moz-box-shadow: 0 0 34px -13px black;
  -o-box-shadow: 0 0 34px -13px black;
  -ms-box-shadow: 0 0 34px -13px black;
}
.settings .settings-elements li.language .langs h1 {
  font-size: 20px;
  display: inline-block;
  color: var(--sec-color);
  transition: all ease-in-out 0.1s;
  -webkit-transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  padding: 10px;
  border-radius: 0.25rem;
}
.settings .settings-elements li.language .langs h1:hover {
  background-color: var(--main-color);
}
.settings .settings-elements li.colors {
  position: relative;
}
.settings .settings-elements li.colors svg {
  width: 1.5rem;
  height: 1.5rem;
}
.settings .settings-elements li.colors .colors-pallete {
  position: absolute;
  right: 100dvw;
  top: 0;
  background-color: var(--third-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -webkit-align-items: center;
  -moz-justify-content: space-between;
  -moz-align-items: center;
  -moz-flex-direction: column;
  -o-justify-content: space-between;
  -o-align-items: center;
  -o-flex-direction: column;
  -ms-justify-content: space-between;
  -ms-align-items: center;
  gap: 1rem;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.25rem;
  overflow: hidden;
  box-shadow: 0 0 34px -13px black;
  -webkit-box-shadow: 0 0 34px -13px black;
  -moz-box-shadow: 0 0 34px -13px black;
  -o-box-shadow: 0 0 34px -13px black;
  -ms-box-shadow: 0 0 34px -13px black;
}
.settings .settings-elements li.colors .colors-pallete svg {
  margin-top: 0.5rem;
}
.settings .settings-elements li.colors .colors-pallete li {
  height: 100%;
  width: 50px;
}
.settings .settings-elements li.colors .colors-pallete #color_1 {
  fill: #6de754;
}
.settings .settings-elements li.colors .colors-pallete #color_2 {
  fill: #a419ae;
}
.settings .settings-elements li.colors .colors-pallete #color_3 {
  fill: #55b3f1;
}
.settings .settings-elements li.colors .colors-pallete #color_4 {
  fill: #21d8d8;
}
.settings .settings-elements li.colors .colors-pallete #color_5 {
  fill: #2176d8;
}
.settings .settings-elements li.colors .colors-pallete #color_6 {
  fill: #da277a;
}
.settings .toggle-mode {
  position: absolute;
  background-color: var(--third-color);
  border-radius: 0.25rem;
  width: 50px;
  height: 50px;
  top: 6rem;
  left: 0;
  padding: 0;
  text-align: center;
  direction: ltr;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  -moz-justify-content: center;
  -moz-align-items: center;
  -moz-flex-direction: row;
  -o-justify-content: center;
  -o-align-items: center;
  -o-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
}
.settings .toggle-mode svg {
  width: 1.7rem;
  height: 1.7rem;
}
.settings .toggle-mode svg path {
  fill: var(--sec-color);
}
.settings .toggle-mode:hover {
  background-color: var(--main-color);
}

header {
  padding: 1rem 0;
  background-color: var(--sec-color);
  width: 100dvw;
  height: 100dvh;
  overflow: hidden;
  position: fixed;
  left: -100dvw;
  top: 0;
  z-index: 9999;
  transition: all ease-in-out 0.4s;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
}
header nav {
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -webkit-align-items: center;
  -moz-justify-content: space-around;
  -moz-align-items: center;
  -moz-flex-direction: column;
  -o-justify-content: space-around;
  -o-align-items: center;
  -o-flex-direction: column;
  -ms-justify-content: space-around;
  -ms-align-items: center;
  position: relative;
}
header nav #closeMenu {
  position: absolute;
  right: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  transition: all ease-in-out 0.2s;
  -webkit-transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  -ms-transition: all ease-in-out 0.2s;
}
header nav #closeMenu:hover path {
  stroke: var(--main-color);
}
header nav .logo a {
  padding: 1rem;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  -moz-justify-content: center;
  -moz-align-items: center;
  -moz-flex-direction: row;
  -o-justify-content: center;
  -o-align-items: center;
  -o-flex-direction: row;
  -ms-justify-content: center;
  -ms-align-items: center;
  gap: 0.5rem;
}
header nav .logo a svg {
  display: inline-block;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M20.886 9.264c-1.502-1.5-3.941-1.5-5.475 0l-6.13 6.131a.981.981 0 0 0 0 1.377a.982.982 0 0 0 1.376 0l6.13-6.131a1.925 1.925 0 0 1 2.722 2.723l-6.037 6.035c.751.75 1.971.75 2.723 0l4.66-4.66c1.531-1.534 1.531-3.973.031-5.475m-2.064 2.033a.982.982 0 0 0-1.376 0l-6.134 6.162c-.751.75-1.97.75-2.72 0c-.376-.375-1.002-.375-1.377 0s-.375 1.002 0 1.375c1.502 1.502 3.942 1.502 5.475 0l6.131-6.129c.375-.406.375-1.033.001-1.408m-2.035-6.129c-1.501-1.502-3.941-1.502-5.475 0l-6.131 6.129a.98.98 0 0 0 0 1.375a.98.98 0 0 0 1.377 0l6.168-6.129a1.934 1.934 0 0 1 2.727 0a.982.982 0 0 0 1.376 0c.352-.406.352-1-.024-1.375zm-2.063 2.031a.978.978 0 0 0-1.376 0l-6.131 6.164a1.933 1.933 0 0 1-2.723 0a1.927 1.927 0 0 1 0-2.723l6.037-6.039a1.928 1.928 0 0 0-2.722 0L3.118 9.264c-1.501 1.502-1.501 3.941 0 5.475c1.501 1.502 3.94 1.502 5.475 0l6.129-6.131c.377-.408.377-1.033 0-1.408z'/%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  width: 1rem;
  height: 1rem;
  padding: 1rem;
}
header nav ul li {
  margin: 1rem 0;
  text-align: center;
  transition: all ease-in-out 0.2s;
  -webkit-transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  -ms-transition: all ease-in-out 0.2s;
}
header nav ul li:hover {
  color: var(--main-color);
}

article.home {
  padding: 1rem 0;
}
article.home section .section-header {
  text-align: center;
  margin: 1rem 0;
}
article.home section .section-header h1 {
  font-size: 1.2rem;
  color: var(--main-color);
}
article.home section .section-header h2 {
  font-size: 1rem;
}
article.home section .email p {
  font-size: 0.6rem;
  text-align: center;
  opacity: 0.8;
}
article.home section .email .input {
  margin-top: 0.5rem;
  border: 3px solid var(--add-color);
  border-radius: 0.5rem;
  padding: 0.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -webkit-align-items: center;
  -moz-justify-content: space-between;
  -moz-align-items: center;
  -moz-flex-direction: row;
  -o-justify-content: space-between;
  -o-align-items: center;
  -o-flex-direction: row;
  -ms-justify-content: space-between;
  -ms-align-items: center;
}
article.home section .email .input input {
  background-color: inherit;
  border: 0;
  outline: 0;
  color: var(--third-color);
}
article.home section .email .input button {
  border-radius: 0.5rem;
  cursor: pointer;
}
article.home section .email .input button:hover {
  color: var(--third-color);
}

article.better-job {
  background-color: var(--main-color);
}
article.better-job section .section-header {
  text-align: center;
  margin-bottom: 1rem;
}
article.better-job section .section-header h2 {
  font-size: 1rem;
  font-weight: 500;
}
article.better-job section .section-header h1 {
  font-size: 1.7rem;
}
article.better-job section .section-header p {
  font-size: 0.7rem;
  opacity: 0.8;
}
article.better-job section .img img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 30px 15px -20px #161815;
  -webkit-box-shadow: 0 30px 15px -20px #161815;
  -moz-box-shadow: 0 30px 15px -20px #161815;
  -o-box-shadow: 0 30px 15px -20px #161815;
  -ms-box-shadow: 0 30px 15px -20px #161815;
}

article.less-time section .section-header {
  text-align: center;
}
article.less-time section .section-header h1 {
  width: 80%;
  margin: 0 auto;
  font-size: 1.5rem;
}
article.less-time section .section-header p {
  width: 80%;
  margin: auto;
  font-size: 0.8rem;
  opacity: 0.8;
  margin: 1rem auto;
}
article.less-time section .section-header button {
  color: var(--third-color);
}
article.less-time section .section-header button:hover {
  color: var(--sec-color);
}
article.less-time section ul.main-ul li:nth-of-type(2) path, article.less-time section ul.main-ul li:nth-of-type(6) path {
  stroke: inherit;
  fill: var(--main-color);
}
article.less-time section ul.main-ul li:nth-of-type(5) path {
  stroke: var(--main-color);
}

article.features {
  background-color: var(--main-color);
  color: var(--sec-color);
}
article.features section .top, article.features section .botm {
  margin: 1rem 0;
  text-align: center;
}
article.features section .top .caption p, article.features section .botm .caption p {
  font-size: 0.8rem;
  opacity: 0.9;
  margin: 1rem 0;
}
article.features section .top .caption button, article.features section .botm .caption button {
  border: 1px solid var(--sec-color);
}
article.features section .top .caption button:hover, article.features section .botm .caption button:hover {
  background-color: var(--sec-color);
  color: var(--third-color);
}
article.features section .top .feature-img img, article.features section .botm .feature-img img {
  width: 100%;
  margin: 1rem 0;
}
article.features section .top {
  border-bottom: 3px dotted var(--sec-color);
}

article.free-design section .content {
  text-align: center;
}
article.free-design section .content p {
  font-size: 0.8rem;
  opacity: 0.8;
  margin: 1rem 0;
}
article.free-design section .content button {
  color: var(--third-color);
}
article.free-design section .content button:hover {
  color: var(--sec-color);
}
article.free-design section .img {
  margin-top: 1rem;
}
article.free-design section .img img {
  width: 100%;
}

footer {
  background-color: var(--main-color);
}
footer section > * {
  color: var(--sec-color);
}
footer section .footer-header {
  text-align: center;
  margin-bottom: 1rem;
}
footer section .footer-header h1 {
  font-size: 2rem;
}
footer section .footer-header p {
  font-size: 0.58rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}
footer section .footer-header button {
  border: 1px solid var(--sec-color);
}
footer section .footer-header button a {
  color: var(--sec-color);
}
footer section .footer-header button:hover {
  background-color: var(--sec-color);
}
footer section .footer-header button:hover a {
  color: var(--third-color);
}
footer section .footer-uls ul {
  text-align: center;
  padding: 1rem;
}
footer section .footer-uls ul:not(.support) {
  border-bottom: 1px dotted var(--sec-color);
}
footer section .footer-uls ul:not(.support) a {
  position: relative;
}
footer section .footer-uls ul:not(.support) a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  background-color: var(--sec-color);
  width: 0;
  height: 0.15rem;
  border-radius: 1rem;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
}
footer section .footer-uls ul li.header {
  font-weight: 700;
  font-size: 1.3rem;
}
footer section .footer-uls ul li {
  margin: 0.5rem 0;
}
footer section .footer-uls ul li:hover a::after {
  width: 100%;
}
footer section .footer-uls ul.support li a svg {
  width: 1.5rem;
  margin-top: 0.5rem;
}
footer section ul.copy-right {
  padding-top: 1rem;
  border-top: 2px solid var(--sec-color);
  display: grid;
  grid-template-columns: 1fr;
}
footer section ul.copy-right li {
  text-align: center;
}
footer section ul.copy-right li > * {
  font-size: 0.8rem;
}

@media (max-width: 599px) {
  .settings li.colors .right {
    right: -70px !important;
  }
}
@media (min-width: 600px) {
  #openMenu svg {
    width: 3rem;
    height: 3rem;
  }
  .settings .settings-elements {
    top: 5rem;
  }
  .settings li.colors .right {
    right: -420px !important;
  }
  .settings li.colors .colors-pallete {
    flex-direction: row !important;
    height: 50px !important;
  }
  .settings .toggle-mode {
    top: 10rem;
  }
  header nav {
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    -webkit-justify-content: space-around;
    -webkit-align-items: center;
    -moz-justify-content: space-around;
    -moz-align-items: center;
    -moz-flex-direction: column;
    -o-justify-content: space-around;
    -o-align-items: center;
    -o-flex-direction: column;
    -ms-justify-content: space-around;
    -ms-align-items: center;
    position: relative;
  }
  header nav #closeMenu {
    width: 3rem;
    height: 3rem;
  }
  header nav .logo a {
    font-size: 3rem;
  }
  header nav .logo a svg {
    width: 2rem;
    height: 2rem;
    padding: 2rem;
  }
  header nav ul li a {
    font-size: 2rem;
  }
  header nav .nav-btns button {
    margin: 0 0.5rem;
  }
  article.home section .section-header h1 {
    font-size: 2.5rem;
  }
  article.home section .section-header h2 {
    font-size: 2rem;
  }
  article.home section .email {
    width: 70%;
    margin: auto;
  }
  article.home section .email p {
    font-size: 0.7rem;
  }
  article.home section .email .input input {
    font-size: 1rem;
  }
  article.home section .email .input button {
    font-size: 1rem;
  }
  article.better-job section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    -moz-justify-content: space-between;
    -moz-align-items: center;
    -moz-flex-direction: row;
    -o-justify-content: space-between;
    -o-align-items: center;
    -o-flex-direction: row;
    -ms-justify-content: space-between;
    -ms-align-items: center;
    gap: 1rem;
  }
  article.better-job section .section-header {
    flex: 1;
  }
  article.better-job section .section-header h2 {
    font-size: 1.3rem;
  }
  article.better-job section .section-header h1 {
    font-size: 3rem;
  }
  article.better-job section .section-header p {
    font-size: 1rem;
    opacity: 0.9;
  }
  article.better-job section .img {
    flex: 0.7;
  }
  article.better-job section .img img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 30px 15px -20px #161815;
    -webkit-box-shadow: 0 30px 15px -20px #161815;
    -moz-box-shadow: 0 30px 15px -20px #161815;
    -o-box-shadow: 0 30px 15px -20px #161815;
    -ms-box-shadow: 0 30px 15px -20px #161815;
  }
  article.less-time section .section-header h1 {
    width: 100%;
    font-size: 2rem;
  }
  article.less-time section .section-header p {
    width: 100%;
    font-size: 1rem;
  }
  article.less-time section .section-header button {
    font-size: 1.3rem;
  }
  article.features section .top, article.features section .botm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    -moz-justify-content: space-between;
    -moz-align-items: center;
    -moz-flex-direction: row;
    -o-justify-content: space-between;
    -o-align-items: center;
    -o-flex-direction: row;
    -ms-justify-content: space-between;
    -ms-align-items: center;
    gap: 1rem;
    margin: 2rem 0;
  }
  article.features section .top .caption, article.features section .botm .caption {
    flex: 1;
  }
  article.features section .top .caption p, article.features section .botm .caption p {
    font-size: 1.1rem;
  }
  article.features section .top .caption button, article.features section .botm .caption button {
    font-size: 1rem;
  }
  article.features section .top .feature-img, article.features section .botm .feature-img {
    flex: 1;
  }
  article.features section .top {
    border-bottom: 0;
  }
  article.free-design section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    -moz-justify-content: space-between;
    -moz-align-items: center;
    -moz-flex-direction: row;
    -o-justify-content: space-between;
    -o-align-items: center;
    -o-flex-direction: row;
    -ms-justify-content: space-between;
    -ms-align-items: center;
    gap: 1rem;
  }
  article.free-design section .content {
    text-align: left;
    flex: 1;
  }
  article.free-design section .content h2 {
    font-size: 1.2rem;
  }
  article.free-design section .content button {
    font-size: 1rem;
  }
  article.free-design section .img {
    flex: 1;
  }
  footer section .footer-header h1 {
    font-size: 3rem;
  }
  footer section .footer-header p {
    font-size: 1rem;
  }
  footer section .footer-header button a {
    font-size: 1rem;
  }
  footer section .footer-uls {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  footer section .footer-uls ul:not(.support) {
    border-bottom: 0;
  }
  footer section .footer-uls ul.support {
    border-top: 1px solid var(--sec-color);
    grid-column: 1/4;
  }
  footer section .footer-uls ul.support li a svg {
    width: 1.5rem;
    margin-top: 0.5rem;
  }
  footer section ul.copy-right {
    grid-template-columns: repeat(3, 1fr);
  }
  footer section ul.copy-right li {
    border-right: 1px solid var(--sec-color);
    text-align: center;
  }
  footer section ul.copy-right li:nth-child(2) {
    border-right: 1px solid var(--sec-color);
    border-left: 1px solid var(--sec-color);
  }
}
@media (min-width: 900px) {
  #openMenu {
    display: none;
  }
  header {
    left: 0;
    height: -moz-fit-content;
    height: fit-content;
    background-color: var(--add-color);
    padding: 0;
  }
  header nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    -webkit-justify-content: space-around;
    -webkit-align-items: center;
    -moz-justify-content: space-around;
    -moz-align-items: center;
    -moz-flex-direction: row;
    -o-justify-content: space-around;
    -o-align-items: center;
    -o-flex-direction: row;
    -ms-justify-content: space-around;
    -ms-align-items: center;
  }
  header nav #closeMenu {
    display: none;
  }
  header nav .logo a {
    font-size: 1rem;
  }
  header nav .logo a svg {
    width: 1rem;
    height: 1rem;
    padding: 1rem;
  }
  header nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    -moz-justify-content: space-between;
    -moz-align-items: center;
    -moz-flex-direction: row;
    -o-justify-content: space-between;
    -o-align-items: center;
    -o-flex-direction: row;
    -ms-justify-content: space-between;
    -ms-align-items: center;
    gap: 0 1rem;
  }
  header nav ul li a {
    font-size: 0.8rem;
  }
  header nav .nav-btns button a {
    font-size: 0.7rem;
  }
  article.home {
    margin-top: 5rem;
  }
  article.home section .section-header h1 {
    font-size: 3rem;
  }
  article.home section .section-header h2 {
    font-size: 2.5rem;
  }
  article.home section .email {
    width: 50%;
  }
  article.home section .email p {
    font-size: 0.7rem;
  }
  article.home section .email .input {
    padding: 0.5rem;
    gap: 0 1rem;
  }
  article.home section .email .input input {
    flex: 1;
  }
  article.better-job {
    background: var(--main-color);
  }
  article.better-job section .section-header {
    color: var(--sec-color);
  }
  article.better-job section .section-header h2 {
    font-size: 1.7rem;
  }
  article.better-job section .section-header h1 {
    font-size: 3.5rem;
  }
  article.better-job section .section-header p {
    font-size: 1rem;
    width: 80%;
    margin: auto;
  }
  article.better-job section .img {
    text-align: right;
    flex: 0.5;
  }
  article.better-job section .img img {
    width: 80%;
  }
  article.features section .top, article.features section .botm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    -moz-justify-content: space-between;
    -moz-align-items: center;
    -moz-flex-direction: row;
    -o-justify-content: space-between;
    -o-align-items: center;
    -o-flex-direction: row;
    -ms-justify-content: space-between;
    -ms-align-items: center;
    gap: 0 1rem;
    margin: 0;
  }
  article.features section .top .caption, article.features section .botm .caption {
    flex: 1;
  }
  article.features section .top .caption p, article.features section .botm .caption p {
    font-size: 1rem;
  }
  article.features section .top .caption button, article.features section .botm .caption button {
    font-size: 1rem;
  }
  article.features section .top .feature-img, article.features section .botm .feature-img {
    flex: 1;
  }
  article.features section .top {
    border-bottom: 0;
  }
  article.free-design section .content h2 {
    font-size: 2.5rem;
  }
  footer section .footer-uls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  footer section .footer-uls ul.features {
    border-right: 1px solid var(--sec-color);
    border-left: 1px solid var(--sec-color);
  }
  footer section .footer-uls ul.support {
    border-top: 0;
    grid-column: 3/4;
  }
  footer section .footer-uls ul.support li a svg {
    width: 1.5rem;
    margin-top: 0.5rem;
  }
  footer section ul.copy-right {
    margin-top: 2rem;
  }
  footer section ul.copy-right li {
    border-right: 0;
  }
}/*# sourceMappingURL=style.css.map */