:root {
  --black: #100e17;
  --gray: #201c29;
  --light-gray: #c2c2c2;
  --orange: #ff8a00;
  --pink: #da1b60;
  --coral: #f44336;
  --violet: #9c27b0;
  --light-blue: #03a9f4;
  --green: #4caf50;
  --light-green: #8bc34a;
  --white: #fff;
  --deep-gray: #7a7a8c;

  --line-gradient: linear-gradient(to right, #ff8a00, #da1b60);
  --line-gradient-reverse: linear-gradient(to right, #da1b60, #ff8a00);
  --line-gradient-translucent: linear-gradient(to right, rgba(255,138,0, 0.2), rgba(218,27,96, 0.2));  

  --nav-hover-color: #201c29;

  --adv-background-color: #1f1c28;
  --adv-avatar-color: #1e1e1e;

  --card-background: #17141d;

  --header-height: 130px;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

b,
strong {
  font-weight: 700;
}

time {
  color: var(--deep-gray);
}

p {
  margin: 0 0 1rem 0;
}

html {
  font-family: -system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
}

body {
  display: flex;
  flex-direction: column;
  background-color: var(--black);
}

.main-page {
    display: flex;
    flex-direction: column;
  }

.site-header {
  font-family: Rubik, Lato, "Lucida Grande", "Lucida Sans Unicode", Tahoma,
    Sans-Serif;
  height: var(--header-height);
  border-bottom: 1px solid var(--gray);
  display: flex;
  align-items: center;
  position: relative;
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 0 40px;
  height: var(--header-height);
  flex: 0;
}

.site-header .logo > a {
  display: flex;
  align-items: center;
}

.site-header .logo > a:before {
  background-image: linear-gradient(to left, #ff8a00, #da1b60);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
}

.icon-logo-star {
  width: 30px;
  height: 30px;
  margin: 0 0.5rem 0 0;
  fill: var(--orange);
  transition: 2s ease-out;
}

.icon-logo-star:hover {
  transform: rotate(720deg);
}

.icon-logo-text {
  fill: var(--white);
  height: 40px;
  width: 180px;
}

.middle-nav-wrap {
  flex: 1;
  height: var(--header-height);
}

.main-section {
  display: flex;
  height: var(--header-height);
}

.main-section > li {
  height: var(--header-height);
  flex: 1;
  transition: 0.3s;

  border-right: 1px solid var(--gray);
}

.main-section li > a {
  font-size: 0.8rem;
  color: var(--white);
  height: 100%;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-section li > a > svg {
  fill: none;
  width: 36px;
  height: 36px;
  margin: 0 auto 0.5rem;
  stroke-width: 2;
  stroke: var(--light-gray);
  transition: 0.3s;
}

.icon-nav-articles {
  color: var(--orange);
}

.icon-nav-video {
  color: var(--pink);
}

.icon-nav-almanac {
  color: var(--coral);
}

.icon-nav-snippets {
  color: var(--violet);
}

.icon-nav-newsletter {
  color: var(--light-blue);
}

.icon-nav-jobs {
  color: var(--green);
}

.icon-nav-guides {
  color: var(--light-green);
}

.main-section li:hover {
  background-color: var(--nav-hover-color);
}

.main-section:hover svg {
  stroke: currentColor;
}

.main-section > li:first-child a {
  border-left: 1px solid #201c29;
}

.search {
  flex: 0 0 400px;
  padding: 0 40px;
}

.search-form {
  background: var(--white);
  padding: 3px;
  border-radius: 30px;
  display: flex;
}

.search-field {
  display: flex;
  background: var(--gray);
  border: 0;
  min-width: 0;
  flex: 1;
  color: var(--white);
  padding: 0.75rem 2.5rem 0.75rem 1.5rem;
  border-radius: 30px;
  font-size: 100%;
  margin: 0;
  outline: none;
}

.icon-search {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-40px, -50%);
  transform: translate(-40px, -50%);
  fill: url(#orange-to-pink);
  cursor: pointer;
}

.button-invisible {
  border: 0;
  background: 0;
  padding: 0;
}

.search-form:focus-within {
  background-image: linear-gradient(to right, var(--orange), var(--pink));
}

.page-site {
  font-family: Rubik, Lato, "Lucida Grande", "Lucida Sans Unicode", Sans-Serif;

  max-width: 90vw;
  color: var(--white);
}

.page-site a {
  color: var(--white);
}

.page-site h1 {
  font-family: Rubik, Lato, "Lucida Grande", "Lucida Sans Unicode", Sans-Serif;
  font-size: 2.5em;
  font-weight: 700;
}

.page-wrap {
  padding: .5vw .5vw .5vw .5vw;
  /*display: flex;*/
  /*flex-direction: column;*/
  align-self: center;
  margin: 0;
}

.hero-article {
  display: grid;
  grid-template-columns: 1fr 0px;
  grid-gap: 4rem;
  font-size: 1em;
  margin-bottom: 1rem;
  padding-top: 1rem;
  overflow: hidden;
  position: relative;
  text-align: left;
}

.hero-article h1 {
  color: var(--white);
  font-size:calc(12px + 6vw);
}

.hero-article h1 > a:hover {

}

.hero-article-billboard {
  font-family: 'Luckiest Guy', cursive;
  font-size:calc(12px + 6vw);
  font-weight: 500;
  background: var(--line-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-article-billboard > a {
  color: var(--white);
  background: var(--line-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-article-billboard > a:hover {
  background: var(--line-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-article-billboard:hover {
  background: var(--line-gradient-reverse);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.article-publication-meta {
  white-space: nowrap;
  font-size:calc(8px + .5vw);
  margin: 0 0 0.5rem 0;
}

.article-publication-meta > strong {
  margin: 0 0.3rem 0 0;
}

.article-content-meta {
  display: grid;
  grid-template-columns: 80px auto 1fr;
  grid-template-areas: "avatar author comments" "avatar published updated";
  grid-gap: 0.5rem 2rem;
  align-items: center;
  margin: 0 0 1.5rem 0;
}
.article-content-meta a:hover {
  background: var(--line-gradient-reverse);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-article .article-content-meta .author-avatar,
.hero-article .article-publication-meta .author-avatar {
  grid-area: auto;
}

.author-avatar {
  grid-area: avatar;
  align-self: start;
  position: relative;
}

.author-avatar .half-circle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 56px;
  fill: none;
  stroke: url(#orange-to-pink);
  stroke-width: 8;
  stroke-linecap: round;
  pointer-events: none;
}

.author-avatar img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 12px 10px;
}

.author-name-prefix,
.comments-prefix,
.created-prefix,
.updated-prefix {
  color: var(--deep-gray);
  font-size: 14px;
}

.author-name,
.comments-link {
  font-weight: 500;
  font-size: 16px;
}

.article-comments-meta {
  grid-area: comments;
}

.comments-link {
  display: inline-block;
  position: relative;
  padding-right: 30px;
}

.comments-link .icon-arrow-right {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.author-name:hover,
.comments-link:hover {
  background: var(--line-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.article-content-2 {
  font-family: Rubik, Lato, "Lucida Grande", "Lucida Sans Unicode", Tahoma,
    Sans-Serif;
  line-height: 1.6;
  background: var(--line-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  overflow-wrap: break-word;
  font-size: 1.0em;
  font-weight: 700;
}
.article-content-2 a {
  border-bottom: 1px solid var(--pink);
}

.article-content-2 a:hover {
  border-bottom: 1px solid var(--light-blue);
  background: var(--line-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.article-content-2-title {
  font-family: Rubik, Lato, "Lucida Grande", "Lucida Sans Unicode", Tahoma,
    Sans-Serif;
  line-height: 1.6;
  background: var(--line-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  overflow-wrap: break-word;
  font-size: 1.3em;
  font-weight: 700;
  text-transform: uppercase;
}

.article-content {
  font-family: Rubik, Lato, "Lucida Grande", "Lucida Sans Unicode", Tahoma,
    Sans-Serif;
  line-height: 1.6;
  color: var(--light-gray);
  overflow-wrap: break-word;
  font-size: 1.0em;
  font-weight: 700;
}

.article-content a {
  border-bottom: 1px solid var(--deep-gray);
}

.article-content a:hover {
  border-bottom: 1px solid var(--white);
  background: var(--line-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.read-more {
  background: var(--line-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  box-decoration-break: clone;
  font-weight: 700;
}

.tags {
  margin: 1rem 0 2rem 0;
  padding: 0.5rem 0 1rem;
  line-height: 1.8;
}

.tags a {
  color: var(--deep-gray);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.66rem;
  white-space: nowrap;
  border: 3px solid var(--gray);
  border-radius: 2rem;
  padding: 0.2rem 0.85rem 0.25rem 0.85rem;
}

.tags a:hover {
  border: 3px solid var(--white);
  background: var(--line-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-article-content {
  position: relative;
}

.hero-article::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: radial-gradient(
      ellipse closest-side,
      rgba(15, 14, 22, 0.6),
      #100e17
    ),
    url(images/script-images/background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.75;
}

.hero-article-adv {
  display: flex;
  min-height: 420px;
  max-height: 400px;
}

.back-shape {
  background-color: var(--adv-background-color);
  flex-grow: 1;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-width: 300px;
}

.adv-first-line {
  display: flex;
  margin-bottom: 15px;
}

.adv-images {
  width: 300px;
  height: 366px;
}

.adv-poster {
  margin-top: 20px;
  margin-left: -20px;
}

.adv-poster .adv-images {
  border-radius: 8px;
}

.adv-second-line {
  display: flex;
  flex-direction: row;
  margin-left: -20px;
}

.adv-avatar-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid var(--adv-avatar-color);
  margin-right: 10px;
  filter: grayscale(100%);
}

.adv-text {
  font-size: 14px;
  max-width: 230px;
  color: var(--light-gray);
}
.liner-gradient-link  {
    font-size: 1.2em;
    background: var(--line-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
.liner-gradient-link hover {
    background: var(--line-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
.liner-gradient-link a:hover {
  background: var(--line-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.liner-gradient-link a h2 {
    background: var(--line-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

.popular-articles {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-column-gap: 20px;
  margin-bottom: 4rem;
  margin-top: 2rem;
}

.header-popular-articles {
  display: flex;
  flex-direction: column;
  /*max-height: 500px;*/
  /*min-width: 300px;*/
}

.popular-articles-shape {
  background: linear-gradient(to top, var(--orange), var(--pink));
  flex-grow: 1;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

.pa-first-line {
  width: 100%;
  height: 250px;
}

.pa-second-line {
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 25px;
}

.pa-title {
  font-size: 20px;
  width: 200px;
  white-space: normal;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
  line-height: 1.15;
}
.pa-title h2 {
    font-size: 1.5em;
    color: #ffffff;
    letter-spacing: .1em; 
    width: 200px;
    white-space: normal;
    font-weight: bold;
    margin: 0 0 0.5rem 0;
    line-height: 1.15;
  }

.pa-sponsors {
  font-size: 0.8rem;
  line-height: 1.3em;
}

.pa-sponsors a {
  text-decoration: underline;
}

.card-slider {
  height: 550px;
  width: 90vw;
  display: flex;
  overflow-x: scroll;
  padding-left: 50px;
  padding-top: 20px;
}
.card-image {
    max-width: 300px;    
    max-height: 250px;
    object-fit: cover;
  }
.card-shape {
  min-width: 300px;
  max-height: 450px;
  background-color: var(--card-background);
  box-shadow: -1rem 0 2rem #000;
  transition: 0.3s;
  padding: 1rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.card-shape:hover {
  transform: translateY(-20px);
  margin-right: 100px;
}

.card-shape:not(:first-child):hover {
  transform: translateX(-50px) translateY(-20px);
  margin-right: 80px;
}

.card-shape:not(:first-child) {
  margin-left: -130px;
}

.info-about-pa {
  color: #ffffff;
  font-size: 1em;
  margin-bottom: 10px;
}

.head-pa-title {
  color: #ffffff;
  font-size: 32px;
  width: 150px;
  font-family: "Open Sans";
  font-style: italic;
}

.shape-info-user {
  display: grid;
  grid-template-columns: 0px 1fr;
  grid-column-gap: 0px;
  margin-bottom: 20px;
}

.card-user-avatar {
  width: 170px;
  height: 70px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-info {
}

.card-avatar-image {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  filter: grayscale(100%);
}

.card-user-avatar .half-circle {
  margin-top: 22px;
  position: absolute;
  width: 80px;
  height: 40px;
  fill: none;
  stroke: url(#orange-to-pink);
  stroke-width: 8;
  stroke-linecap: round;
  pointer-events: none;
}

.card-info {
  padding: 15px;
}

.card-info > a {
  font-size: 14px;
  font-weight: 500;
}

.card-tag {
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--deep-gray);
  text-transform: uppercase;
  white-space: nowrap;
  border: 3px solid var(--gray);
  border-radius: 2rem;
  padding: 0.5em 1em;
}

.card-tag:hover {
  border: 3px solid var(--white);
  background: var(--line-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wrap-left-menu {
  margin-top: 2em;
  margin-bottom: 2em;
}

.wrapper-content-site {
  width: 100%;
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-column-gap: 20px;
}

.left-ad-block {
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;

  margin-bottom: 4em;
}

.post {
  margin: 0 0 6rem 0;
  position: relative;
  overflow: hidden;
}

.post:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 80%;
  background-image: radial-gradient(
      ellipse closest-side,
      rgba(0, 0, 0, 0.35),
      #100e17
    ),
    url(https://aerocaribbean-va.com/images/banner/new_logo.png);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.75;
}

.wrap-post {
  display: grid;
  grid-template-columns: 1fr 200px;
  grid-column-gap: 10px;
}

.post-content {
  padding: 2em;
  position: relative;
  z-index: 1;
  height: 500px;
  display: flex;
  flex-direction: column;
}

.post-content h2 {
  font-size: 32px;
  font-weight: 600;
}

.post-avatar {
  height: 500px;
}

.from-post {
  font-weight: bold;
  color: var(--deep-gray);
}

.direct-link-host {
  background: linear-gradient(to right, var(--orange), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  box-decoration-break: clone;
}

.direct-link-host:hover {
  background: var(--white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  box-decoration-break: clone;
}

.direct-link-host svg {
  margin: 0 0 0 0.25rem;
  position: relative;
  top: 0.25rem;
}

.icon-link {
  width: 20px;
  height: 12px;
  fill: #fff;
}

.post .link-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  padding: 1px;
  overflow: visible;
  z-index: 2;
}

.link-line mask svg {
  overflow: visible;
}

.link-line mask > * {
  fill: none;
  stroke: #fff;
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.link-shared-by {
  position: absolute;
  z-index: 3;
  bottom: 2rem;
  right: 0;
  width: 33.33%;
  text-align: center;
  font-size: 0.8rem;
  display: block;
  line-height: 1.2;
  color: #7a7a8c;
}

.author-avatar img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 12px 10px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.author-avatar .half-circle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 56px;
  fill: none;
  stroke: url(#orange-to-pink);
  stroke-width: 8;
  stroke-linecap: round;
  pointer-events: none;
}

.link-shared-by .author-avatar {
  width: 80px;
  margin: 0 auto;
}

.header-post {
  font-size: 16px;
  margin-bottom: 20px;
}

.title-post {
  margin-bottom: 20px;
}

.from-post {
  margin-bottom: 30px;
}

.card-slider::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.card-slider::-webkit-scrollbar-thumb {
  background: #2a868e;
  border-radius: 10px;
  -webkit-box-shadow: inset 2px 2px 2px rgba(255, 255, 255, 0.25),
    inset -2px -2px 2px rgba(0, 0, 0, 0.25);
  box-shadow: inset 2px 2px 2px rgba(255, 255, 255, 0.25),
    inset -2px -2px 2px rgba(0, 0, 0, 0.25);
}

.card-slider::-webkit-scrollbar-track {
  border-radius: 10px;
  background: linear-gradient(
    to right,
    #ff4000,
    #ff4000 1px,
    #ff4000 1px,
    #ff00aa
  );
}

.button {
  background-image: linear-gradient(to top left, #ff8a00, #da1b60);
  color: #fff !important;
  display: inline-block;
  font-family: inherit;
  font-weight: 700;
  border: 0;
  border-radius: 2rem;
  white-space: nowrap;
  padding: 1rem 1.5rem;
  line-height: 1.4;
  position: relative;
  text-align: center;
  transition: 70ms;
}

.button-full-size {
  width: 90%;
}

.button:hover {
  transform: translateY(1px);
}

.mixup-background-star {
  position: absolute;
  top: -2%;
  right: 17%;
  width: 56.14%;
  height: 100%;
  fill: url(#orange-to-pink);
  pointer-events: none;
  filter: saturate(125%);
  z-index: 2;
}

.monthly-mixup {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-template-areas: ". title title . block1 dec3" "dec1 block2 . block3 . ." ". block4 block5 block6 . dec2" ". block7 . . block8 .";
  position: relative;
  color: var(--white);
}

.title-mm {
  grid-area: title;
  font-size: 32px;
  font-weight: bold;
  color: var(--white);
}

.block1-mm {
  grid-area: block1;
  border-left: 4px solid var(--pink);
  border-top: 4px solid var(--pink);
  border-top-left-radius: 16px;
  transform: translateX(calc(4px * -1));
  width: calc(100% + 4px);
  border-right: 1px solid #201c29;
  border-bottom: 1px solid #201c29;
  border-bottom-right-radius: 16px;
}

.block2-mm {
  grid-area: block2;
}

.block3-mm {
  grid-area: block3;
  border-top-left-radius: 16px;
  border-right: 4px solid var(--pink);
  border-bottom: 4px solid var(--pink);
  border-bottom-right-radius: 16px;
}

.block4-mm {
  grid-area: block4;
  border-left: 4px solid var(--pink);
}

.block5-mm {
  grid-area: block5;
  border-left: 4px solid var(--pink);
  border-top: 4px solid var(--pink);
  border-top-left-radius: 16px;
  transform: translate(calc(4px * -1), calc(4px * -1));
  width: calc(100% + 4px);
  height: calc(100% + 4px);
}

.block6-mm {
  grid-area: block6;
}

.block7-mm {
  grid-area: block7;
  border-left: 4px solid var(--pink);
  border-right: 4px solid var(--pink);
  border-bottom: 4px solid var(--pink);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  transform: translateY(calc(4px * -1));
}

.block8-mm {
  grid-area: block8;
  border: 1px solid #201c29;
  border-top: 0;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.block-dec1 {
  grid-area: dec1;
  border-top: 4px solid var(--pink);
  border-right: 4px solid var(--pink);
  border-top-right-radius: 16px;
}

.block-dec2 {
  grid-area: dec2;
}

.block-dec3 {
  grid-area: dec3;
  border-top: 4px solid var(--pink);
}

.content-block {
  background-color: var(--black);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
}

.shadow-mm {
  box-shadow: 0 0 2rem #000;
}

.mixup-design-block-1 {
  background: linear-gradient(
    225.71deg,
    #110e17 -5.46%,
    #da1b60 55.6%,
    #ff8a00 103.75%
  );
  position: relative;
  transform: translateX(4px);
  z-index: 20;
}

.mixup-design-block-2 {
  z-index: 20;
  position: relative;
  background: linear-gradient(
    134.47deg,
    #110e17 0,
    #da1b60 127.34%,
    #ff8a00 195.33%
  );
}

.wrap-code {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.almanac-example {
  font-family: "Operator Mono SSm A", "Operator Mono SSm B", "Operator Mono",
    "Source Code Pro", Menlo, Consolas, Monaco, monospace;
  font-size: 17px;
  align-self: center;
  width: 80%;
}

.language-css {
  color: #f5d67b;
}

.token.selector {
  color: #f5d67b;
}

.token.property,
.token.punctuation {
  color: #72e0d1;
}

.block-mm-post {
  display: flex;
  flex-direction: column;
  padding: 1.5em;
  font-size: 16px;
}

.bmp-header {
  margin-bottom: 2em;
}

.block-mm-post a {
  color: var(--white);
}

.bmp-title > h3 {
  font-size: 24px;
  margin-bottom: 3em;
}

.bmp-user {
  display: grid;
  grid-template-columns: 80px 1fr;
}

.bmp-user-avatar {
  width: 70px;
  height: 70px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bmp-user-avatar .author-avatar {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 12px 10px;
}

.bmp-user-avatar .half-circle {
  position: absolute;
  bottom: -10%;
  left: 0;
  width: 70px;
  height: 50px;
  fill: none;
  stroke: url(#orange-to-pink);
  stroke-width: 8;
  stroke-linecap: round;
  pointer-events: none;
}

.bmp-user-info {
  padding: 1em;
}

.subhead {
  font-size: 12px;
  margin: 0 0 0.25rem;
  color: #939393;
}

.monthly-sponsor-image {
  max-width: 100px;
  display: block;
  margin: 0 auto;
}

.monthly-sponsor-text {
  padding: 1em;
}

.monthly-sponsor-text h5 {
  margin-bottom: 1em;
}

.monthly-sponsor-content {
  font-size: 16px;
}

.monthly-sponsor-content a {
  color: var(--orange);
  text-decoration: underline;
  font-weight: bold;
}

.monthly-sponsor-image > a img {
  max-width: 100%;
  height: auto !important;
}

.block-mm-video {
  display: flex;
  flex-direction: column;
  padding: 1em;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.video-number {
  color: #7a7a8c;
  display: inline;
}

.video-info {
  font-size: 16px;
}

.watch-video-button {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.video-title {
  font-size: 22px;
}

.video-duration {
  color: var(--white);
}

.watch-video-button svg {
  fill: #fff;
  margin-right: 0.5rem;
}

.block-mm-video a {
  color: var(--white);
}

.bmp-v-header {
  font-size: 16px;
}

.footer-jobs-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1em;
}

.footer-jobs {
  color: white;
  display: grid;
  grid-template-columns: 300px 1fr;
}

.job-list > li {
  transition: 0.3s;
}

.job-list > li:hover {
  transform: translateY(-5px);
}

.job-list {
  display: grid;
  grid-gap: 1em;
  grid-template-columns: repeat(3, 1fr);
}

.job-list > li > a {
  height: 100%;
  width: 100%;
  font-size: 16px;
  background: #201c29;
  color: #a1a1af;
  box-shadow: 0 0 2rem #000;
  padding: 1.5rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
}

.job-info strong {
  color: white;
}

.job-info {
  margin-bottom: 1.5rem;
}

.job-list > li > a .icon-pin {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.button-orange-to-pink {
  background-image: linear-gradient(to top left, #ff8a00, #da1b60);
  color: #fff !important;
  display: inline-block;
  font-family: inherit;
  font-weight: 700;
  border: 0;
  border-radius: 2rem;
  white-space: nowrap;
  padding: 0.5rem 0.5rem;
  line-height: 1.4;
  position: relative;
  text-align: center;
  transition: 70ms;
  width: 200px;
  margin: 5px;
}

.button-outline {
  background-color: var(--black);
  color: #fff !important;
  display: inline-block;
  font-family: inherit;
  font-weight: 700;
  border-radius: 2rem;
  border: 3px solid #312d3c;
  white-space: nowrap;
  padding: 0.5rem 0.5rem;
  line-height: 1.4;
  position: relative;
  text-align: center;
  transition: 70ms;
  width: 200px;
  margin: 5px;
}

.button-orange-to-pink .button-outline {
  transition: 0.3s;
}

.button-outline:hover {
  border: 3px solid var(--white);
}

.button-orange-to-pink:hover,
.button-outline:hover {
  transform: translateY(1px);
}

.jobs-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.jobs-header h2 {
  font-size: 1.6rem;
}

.jobs-powered {
  color: #7a7a8c;
  font-size: 16px;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  position: relative;
  width: 150px;
  line-height: 2em;
}

.jobs-powered a {
  font-size: 20px;
  color: white;
  font-weight: bold;
  text-decoration: underline;
}

.wrap-footer {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-newsletter-wrap {
  padding: 2em;
  margin-bottom: 4em;
}

.footer-newsletter {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: white;
}

.nh-title {
  text-align: center;
}

.newsletter-header > .nh-title > h2 {
  font-family: Rubik, Lato, "Lucida Grande", "Lucida Sans Unicode", Tahoma,
    Sans-Serif;
  font-size: 32px;
  font-weight: 700;
}

hr.thick {
  border: 0;
  height: 5px;
  margin: 4rem 0;
  background-image: linear-gradient(to right, var(--orange), var(--pink));
  border-radius: 5px;
  width: 100%;
}

.nh-desc {
  margin-top: 2em;
  text-align: center;
  margin-bottom: 1em;
}

.footer-form-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#subscribe-form {
}

.sub-input-email {
  display: grid;
  grid-template-columns: minmax(150px, 600px) minmax(100px, 200px);
}

.footer-form-wrap form input[type="email"] {
  padding: 1.2em;
  border-radius: 80px 0 0 80px;
  border: none;
  outline: 0;
  font-size: 20px;
  font-weight: 900;
  transition: 0.2s ease-in-out;
  opacity: 1;
  background-color: white;
}

.footer-form-wrap form input[type="submit"] {
  background: var(--line-gradient);
  border: 0;
  color: var(--white);
  font-weight: bold;
  font-size: 20px;
  padding: 1.2em 1.2em 1.2em 2em;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  cursor: pointer;
}

.social-links {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.social-links > a {
  padding: 0.25rem 2rem;
  position: relative;
  color: #7a7a8c;
}

.social-link {
  transition: 0.2s;
}

.social-link strong {
  background: var(--line-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  display: block;
}

.social-link:hover span {
  color: white;
  display: block;
}

.social-link:hover strong {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
}

.footer-colophon {
  display: grid;
  grid-template-columns: 1fr 300px;
  grid-column-gap: 3em;
  margin-bottom: 3em;
}

.footer-colophon > nav {
  max-width: 300px;
  display: flex;
  flex-wrap: wrap;
  margin-left: 2rem;
}

.footer-colophon h4 {
  font-size: 22px;
  margin: 0 0 0.8rem 0;
  color: #fff;
  width: 100%;
  line-height: 1.05;
}

.footer-colophon > nav > a {
  width: 50%;
  color: #b1b1b1;
  line-height: 2em;
}

small {
  font-size: 75%;
}

.footer-colophon-text {
  color: var(--light-gray);
}

.footer-colophon-text span {
  color: var(--orange);
}

.footer-colophon-text a {
  color: var(--white);
}

.footer-partners {
  background: #100e17;
  border-top: 1px solid #201c29;
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
  font-size: 14px;
  padding: 0 2rem;
}

.footer-partner {
  padding: 0 2rem;
  margin: 2rem 0;
  background: #201c29;
  color: #a1a1af;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.codepen-logo {
  max-width: 100%;
  width: 200px;
  height: 38px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.3;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.footer-partner img,
.footer-partner svg {
  display: block;
  margin: 0 auto 1rem;
}

.footer-partner a {
  color: #fff;
}

::selection {
  background-color: var(--violet);
}

