* {
  box-sizing: border-box;
  font-family: Inter, Helvetica, Apple Color Emoji, Segoe UI Emoji,
    NotoColorEmoji, Noto Color Emoji, Segoe UI Symbol, Android Emoji,
    EmojiSymbols, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Noto Sans, sans-serif;
}

::selection {
  background-color: rgb(179 212 252);
  color: var(--Black);
  transition: 0.3s;
}

:root {
  --Black: #000000;
  --White: #ffffff;
  --Gray: gray;
  --GrayBetween: #ddd;
  --Dark: #262626;
  --Text-light: #6b6f76;
}

.highlight {
  color: var(--Dark);
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--White);
}

a {
  text-decoration: none;
  color: var(--Black);
}

.container .wrapper {
  padding: 0;
}

/* Header */

.container .wrapper header {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  background-color: var(--White);
  width: 100%;
  padding: 0px 20px;
  z-index: 99;
  background: rgba(255, 255, 255, 0.349);
  backdrop-filter: blur(3.5px);
  -webkit-backdrop-filter: blur(3.5px);
}

.container .wrapper header .brand h3 a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.container .wrapper header .brand h3 a span {
  color: var(--Black);
  margin-left: 10px;
}

.container .wrapper header nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container .wrapper header nav ul li {
  list-style-type: none;
  padding: 0 20px;
}

.container .wrapper header nav ul li a {
  font-weight: 600;
  color: var(--Dark);
}

.container .wrapper header nav ul li a:hover {
  color: var(--Black);
}

.container .wrapper header nav ul li:nth-child(4) a {
  padding: 10px 20px;
  background-color: var(--Black);
  color: var(--White);
  border-radius: 10px;
  font-size: 17px;
  font-weight: bold;
}

.container .wrapper header nav ul li:nth-child(4) a:hover {
  box-shadow: 0 0 0 3px #0000003f;
}

.container .wrapper header nav ul li:nth-child(4) a:active {
  transform: scale(0.98);
}

.container .wrapper header .hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 99;
}

.container .wrapper header .hamburger span {
  height: 1px;
  width: 20px;
  background-color: var(--Black);
  margin: 3px;
  transition: 0.1s;
}

/* Toggle Menu */
.container .wrapper header .hamburger.open span:nth-child(1) {
  transform: rotate(-45deg);
  transform-origin: center;
}

.container .wrapper header .hamburger.open span:nth-child(2) {
  display: none;
}

.container .wrapper header .hamburger.open span:nth-child(3) {
  transform: rotate(45deg);
  transform-origin: center;
  margin-top: -4px;
}

.container .wrapper header nav ul.open {
  display: block;
}

body.open {
  overflow: hidden;
  overflow-y: hidden;
}

/* Hero */

.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 90px 20px;
}

.hero img {
  width: auto;
}

.hero h1 {
  font-size: 40px;
  max-width: 1000px;
  width: 100%;
  margin: auto;
  font-weight: 900;
}

.hero p {
  font-size: 17px;
  color: var(--Gray);
  max-width: 500px;
  margin: 20px auto;
  margin-bottom: 10px;
  line-height: 33px;
}

.hero a {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: var(--Black);
  color: var(--White);
  border-radius: 10px;
  font-size: 17px;
  font-weight: bold;
}

.hero a:hover {
  box-shadow: 0 0 0 4px #0000003f;
}

.hero a:active {
  transform: scale(0.98);
}

/* Offers */
.offers {
  padding: 60px 20px;
  text-align: center;
  max-width: 1300px;
  margin: 100px auto;
  margin-bottom: 0;
  padding-bottom: 40px;
}

.offers h1 {
  font-size: 50px;
  font-weight: 900;
  max-width: 800px;
  margin: auto;
}

.offers p {
  color: var(--Gray);
  margin-top: 30px;
}

.offers .content {
  display: grid;
  place-items: center;
  grid-template-columns: 1fr 1fr;
  max-width: 800px;
  margin: 40px auto;
}

.offers .content .offer {
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.offers .content .offer h3 {
  color: var(--Dark);
  margin-bottom: 20px;
}

.offers .content .offer p {
  margin-top: 0;
}

.templates {
  text-align: center;
  margin-bottom: 40px;
  padding-top: 30px;
  padding: 20px;
}

.templates h1 {
  font-size: 50px;
  font-weight: 900;
}

.templates .content {
  max-width: 1100px;
  margin: auto;
  text-align: left;
  margin-top: 60px;
}

.templates .content h2 {
  margin: 20px;
}

.templates .content .templates-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.templates .content .templates-content a {
  margin: 10px 20px;
}

.templates .content .templates-content a .template {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-radius: 10px;
  transition: 0.2s;
  padding: 20px;
  box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
  position: relative;
}

.templates .content .templates-content a .template:nth-child(1) .new {
  position: absolute;
  left: 20px;
  top: -10px;
  z-index: inherit;
  background-color: var(--Black);
  color: var(--White);
  border: 1px solid var(--Black);
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: bold;
  transition: 0.2s;
}

.templates .content .templates-content a .template:nth-child(1):hover .new {
  background-color: var(--White);
  color: var(--Black);
}

.templates .content .templates-content a .template:hover {
  transform: translateY(-5px);
}

.templates .content .templates-content a .template .text {
  padding: 0 10px;
  text-align: left;
  width: 100%;
  margin-top: 5px;
}

.templates .content .templates-content a .template .text p {
  color: var(--Gray);
  font-size: 15px;
  line-height: 25px;
}

.templates .content .templates-content a .template img {
  width: 100%;
  border-radius: 5px;
  border: 3px solid var(--Black);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.templates .content .templates-content a .template .details {
  padding: 20px 10px;
  padding-top: 0px;
  padding-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.templates .content .templates-content a .template .details span {
  margin: 0 10px;
  background-color: var(--Black);
  color: var(--White);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: bold;
}

.templates .content .templates-content a .template .details span:nth-child(1) {
  margin: 0;
}

/* Gumroad Profile  */

.gumroad-profile {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  padding: 60px 20px;
}

.gumroad-profile h1 {
  font-size: 50px;
  font-weight: 900;
}

.gumroad-profile p {
  color: var(--Text-light);
  line-height: 30px;
  margin-bottom: 40px;
}

.gumroad-follow-form-embed {
  zoom: 1;
  display: flex;
  max-width: 500px;
  margin: 20px auto;
}

.gumroad-follow-form-embed * {
  margin: 0;
  border: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box !important;
}
            
.gumroad-follow-form-embed input {
  flex: 1;
  margin-right: .75rem;
  outline: none;
  font-family: "Mabry Pro", sans-serif;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  line-height: 1.3;
  border: solid 0.0625rem #000;
  border-radius: 10px;
  display: block;
  width: 100%;
  background-color: #ffffff;
  color: #000;
}

.gumroad-follow-form-embed button {
  background: #000;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.3;
  padding: 0.875rem 1rem;
  border: solid 0.0625rem #000;
  border-radius: 10px;
  font-family: "Mabry Pro", sans-serif;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
        
.gumroad-follow-form-embed button:hover {
  /*background-color: #ff90e8;
  color: #000;
  transform: translate(-0.25rem, -0.25rem);
  box-shadow: 4px 4px 0px #000;*/
  box-shadow: 0 0 0 3px #0000003f;
}

.gumroad-follow-form-embed button:active {
  transform: scale(0.98);
}

/* faqs */
.faqs {
  text-align: center;
  margin-top: 50px;
  padding: 20px;
}

.faqs h1 {
  font-size: 50px;
  font-weight: 900;
}

.faqs .content {
  max-width: 1100px;
  margin: auto;
  text-align: left;
}

.faqs .content .faq {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.faqs .content .faq p {
  color: var(--Dark);
  line-height: 30px;
  margin-left: 10px;
}

.faqs .content .faq p,
.faqs .content .faq h2 {
  width: 50%;
}

/* Tweets */
.tweets {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.tweets h1 {
  font-size: 50px;
  font-weight: 900;
}

.tweets p {
  color: var(--Text-light);
  line-height: 30px;
  max-width: 700px;
  margin: auto;
  font-size: 16px;
}

.tweets .content {
  max-width: 1100px;
  margin: 30px auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0 1px;
}

.tweets .content .tweet {
  margin: 10px;
}

.tweets .content .tweet .twitter-tweet {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 10px;
}

/* Get in touch */
.getintouch {
  padding: 20px;
  text-align: center;
  max-width: 1100px;
  margin: auto;
}

.getintouch h1 {
  font-size: 50px;
  font-weight: 900;
}

.getintouch .content {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  margin: auto;
}

.getintouch .content .twitter,
.getintouch .content .linkedin {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.getintouch .content .twitter a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--White);
  background-color: #1da1f2;
  max-width: 130px;
  height: 40px;
  padding: 10px;
  width: 100%;
  border-radius: 10px;
  font-weight: bold;
}

.getintouch .content .twitter a:hover {
  box-shadow: 0 0 0 4px rgba(92, 191, 252, 0.281);
}

.getintouch .content .twitter a:active {
  transform: scale(0.98);
}

.getintouch .content .twitter a span {
  margin-left: 5px;
}

.getintouch .content .linkedin a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--White);
  background-color: #2867b2;
  max-width: 130px;
  height: 40px;
  padding: 10px;
  width: 100%;
  border-radius: 10px;
  font-weight: bold;
}

.getintouch .content .linkedin a:hover {
  box-shadow: 0 0 0 4px #2866b246;
}

.getintouch .content .linkedin a:active {
  transform: scale(0.98);
}

.getintouch .content .linkedin a span {
  margin-left: 5px;
}

footer {
  max-width: 1100px;
  margin: auto;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

footer .copyright,
footer .contact,
footer .social-media {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

footer .copyright .logo {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

footer .copyright .logo span,
footer .social-media span {
  color: var(--Black);
  font-weight: 550;
  margin-top: 5px;
}

footer .copyright h5 {
  color: var(--Text-light);
  font-weight: initial;
  font-size: 12px;
}

footer .contact a,
footer .social-media a {
  color: var(--Text-light);
  font-size: 13px;
}

footer .contact span,
footer .social-media span {
  margin-bottom: 12px;
  color: var(--Black);
  font-weight: 550;
}

footer .contact a {
  margin-bottom: 10px;
  font-size: 13px;
}

/* Media Queries */

@media only screen and (max-width: 1200px) {
  .tweets .content {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 1100px) {
  .templates .content .templates-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 800px) {
  .tweets .content {
    place-items: center;
    grid-template-columns: 1fr;
  }

  .tweets .content .tweet {
    margin: 10px 0;
  }
}

@media only screen and (max-width: 650px) {
  .templates .content .templates-content {
    grid-template-columns: 1fr;
  }

  .templates .content .templates-content a {
    margin: 20px 0;
  }

  .templates .content h2 {
    margin: 20px 0px;
  }
}

@media only screen and (max-width: 750px) {
  .container .wrapper header {
    position: relative;
  }

  .hero {
    padding-top: 0;
  }

  .container .wrapper header nav ul {
    background-color: var(--White);
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    padding: 20px 0;
    margin-top: 10px;
    display: none;
    box-shadow: 0px 32px 41px 1px rgba(185, 185, 185, 0.19);
    margin-top: 30px;
  }

  .container .wrapper header nav ul li {
    padding: 10px 20px;
  }

  .container .wrapper header nav ul li:nth-child(4) {
    margin-top: 10px;
  }

  .container .wrapper header .hamburger {
    display: flex;
  }

  .offers {
    margin-top: 0;
  }

  .hero h1,
  .offers h1,
  .templates h1,
  .getintouch h1,
  .tweets h1 {
    font-size: 40px;
  }

  .faqs .content .faq {
    display: block;
    margin-bottom: 40px;
    text-align: center;
  }

  .faqs .content .faq p {
    margin-left: 0;
  }

  .faqs .content .faq p,
  .faqs .content .faq h2 {
    width: 100%;
  }

  .hero img {
    width: 70%;
  }
}

@media only screen and (max-width: 700px) {
  footer {
    flex-direction: column-reverse;
    padding: 40px 20px;
  }

  footer .copyright {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }

  footer .copyright .logo,
  footer .social-media {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  footer .social-media {
    margin-bottom: 35px;
  }

  footer .contact {
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 400px) {
  .offers .content {
    grid-template-columns: 1fr;
  }

  .gumroad-follow-form-embed {
    flex-direction: column;
  }

  .gumroad-follow-form-embed input {
    margin-bottom: 20px;
  }

  .gumroad-follow-form-embed button {
    width: 100%;
  }
}
