* {
  box-sizing: border-box;
}

:root {

  --accent-color-blue: #252ee5;
  --accent-color-lime: #cee45b;
  --accent-color-blurple: #676af5;

  --accent-color: var(--accent-color-lime);

  /* Button */

  --button-bg: #000;
  --button-text: #fff;
  --button-hover-bg: var(--accent-color );
  --button-hover-text: #fff;

  /*Dark Header*/
  --header-dark-bg: #18181c;
  --header-dark-text: #ffffff;
  --header-dark-button-bg: #ffffff;
  --header-dark-button-text: #222222;

  --header-white-bg: #ffffff;
  --header-white-text: #222222;
  --header-white-button-bg: #222222;
  --header-white-button-text: #ffffff;  

  --header-light-bg: #dbe0fb;
  --header-light-bg-grad-1: #fff;
  --header-light-bg-grad-2: #dbe0fb;
  --header-light-bg: linear-gradient(to bottom, var(--header-light-bg-grad-1), var(--header-light-bg-grad-2));
  --header-light-text: #000;
  --header-light-desc: #222;
  --header-light-button-bg: #222222;
  --header-light-button-text: #dbe0fb;

  --header-bg: var(--header-light-bg);
  --header-text: var(--header-light-text);
  --header-desc: var(--header-light-desc);
  --header-button-bg: var(--header-light-button-bg);
  --header-button-text: var(--header-light-button-text);
  --features-icon: var(--accent-color);

  --plugin-support-bg: var(--accent-color);
  --plugin-support-title: #111111;
  --plugin-support-desc: #595959;

  --1280-width: 960px;
  --960-width: 720px;
  --768-width: calc(100% - 48px);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "hk grotesk", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: 0;
}

a:link, a:visited {
  text-decoration: none;
  color: var(--accent-color );
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1;
  font-family: "hk grotesk", sans-serif;
  font-weight: 400;
}

.center {
  text-align: center;
}

.lazyload {
  opacity: 0;
  position: relative;
  top: -20px;
  width: 100%;
  height: 360px;
  transition: opacity 0.5s ease, top 0.5s ease;
  vertical-align: middle;
}
.lazyload.loaded {
  opacity: 1;
  top: 0;
  height: auto;
}

.button,
.button:link,
.button:visited {
  font-family: "hk grotesk";
  font-weight: 500;
  background: var(--button-bg);
  border: 2px solid var(--button-bg);
  border: 0;
  padding: 14px 42px;
  color: var(--button-text) !important;
  margin-top: 16px;
  display: inline-block;
  border-radius: 3px;
  font-size: 14px;
  transition-duration: 0.2s;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.7;
}
.button.secondary {
  border: 0;
  background: transparent;
  color: var(--button-bg) !important;
}
.button.gradient {
  background: #8E2DE2;
  background: -webkit-linear-gradient(to right, #4A00E0, #8E2DE2);
  background: linear-gradient(to right, #4A00E0, #8E2DE2);
}
.button:hover {
  transform: translate3d(0, 3px, 0);
  background: var(--button-hover-bg);
  color: var(--button-hover-text) !important;  
}
.button.secondary:hover {
  border-color: transparent;
  background: transparent;
  color: var(--button-hover-bg) !important;
}
.button.gradient:hover {
  background: #8E2DE2;
  background: -webkit-linear-gradient(45deg, #4A00E0, #8E2DE2);
  background: linear-gradient(45deg, #4A00E0, #8E2DE2);
  transition-duration: 0.3s;
}

img {
  display: block;
}

.label {
  color: rgba(0, 0, 0, 0.5);
  margin-top: 6px;
  font-size: 0.8rem;
  display: inline-block;
}

.super-header {
  color: var(--header-text);
  background: var(--header-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.super-header .featured-nav {
  width: 100%;
  position: relative;
  z-index: 10;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.super-header .featured-nav .nav-inner {
  width: 1080px;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.super-header .featured-nav .nav-inner h1 {
  margin-right: 54px;
  font-size: 1.8rem;
  font-weight: 500;
}
.super-header .featured-nav .nav-inner nav {
  font-family: "hk grotesk";
  font-size: 1rem;
}
.super-header .featured-nav .nav-inner nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.super-header .featured-nav .nav-inner nav ul li {
  margin-right: 16px;
}
.super-header .featured-nav .nav-inner nav ul li a:link, .super-header .featured-nav .nav-inner nav ul li a:visited {
  color: #fff;
}
.super-header .featured-nav .nav-inner .button {
  margin-right: 0;
  margin-left: auto;
  margin-top: 0;
  background: var(--header-button-bg);
  border-color: var(--header-button-bg);
  font-size: 1rem;
  color: var(--header-button-text) !important;
}
.super-header .featured-nav.style-2 {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.super-header .featured-nav.style-2 .nav-inner {
  width: calc(100% - 320px);
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.super-header .featured-nav.style-2 .nav-inner h1 {
  margin-right: 54px;
  font-size: 1.8rem;
  font-weight: 500;
}
.super-header .featured-nav.style-2 .nav-inner nav {
  font-family: "hk grotesk";
  font-size: 1.1rem;
}
.super-header .featured-nav.style-2 .nav-inner nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.super-header .featured-nav.style-2 .nav-inner nav ul li {
  margin-right: 32px;
}
.super-header .featured-nav.style-2 .nav-inner nav ul li a:link, 
.super-header .featured-nav.style-2 .nav-inner nav ul li a:visited {
  color: var(--header-text);
}
.super-header .featured-nav.style-2 .nav-inner .button {
  margin-right: 0;
  margin-left: auto;
  margin-top: 0;
  background: var(--header-button-bg);
  font-size: 1.2rem;
  color: var(--header-button-text);
}
.super-header .featured-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.super-header .featured-header.style-1 .fh-inner {
  width: 100%;
  text-align: center;
}
.super-header .featured-header.style-1 .fh-inner h1 {
  font-size: 2.3rem;
}
.super-header .featured-header.style-1 .fh-inner .fh-title {
  margin: auto;
  text-align: center;
  width: 720px;
}
.super-header .featured-header.style-1 .fh-inner .fh-title h2 {
  font-size: 3.2rem;
}
.super-header .featured-header.style-1 .fh-inner .fh-title .button {
  display: inline-block;
  margin: auto;
}
.super-header .featured-header.style-1 .fh-inner .fh-title .fh-title-logo {
  display: block;
  height: 60px;
  width: 60px;
  background: #016cf7;
  border-radius: 7px;
  margin-right: 24px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--header-text);
  font-size: 1.6rem;
}
.super-header .featured-header.style-1 .fh-inner p {
  margin-top: 42px;
  font-size: 1.2rem;
  line-height: 1.7;
}
.super-header .featured-header.style-1 .fh-inner .button {
  margin-top: 32px;
  font-size: 1.2rem;
  padding: 16px 24px;
  background: #016cf7;
  border-radius: 7px;
  color: var(--header-text);
  font-weight: 400;
  margin-right: auto;
  margin-left: auto;
  display: inline-block;
}
.super-header .featured-header.style-1 .fh-top {
  width: 100%;
  padding-top: 96px;
  padding-bottom: 124px;
}
.super-header .featured-header.style-1 .fh-top .fh-inner {
  width: 1080px;
  margin: auto;
}
.super-header .featured-header.style-1 .fh-top .button {
  margin-top: 64px;
  background: transparent;
  border: 2px solid #333;
}
.super-header .featured-header.style-1 .fh-bottom {
  width: 100%;
}
.super-header .featured-header.style-1 .fh-bottom .fh-inner {
  width: 1080px;
  margin: auto;
}
.super-header .featured-header.style-1 .fh-bottom .fh-inner .img-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.super-header .featured-header.style-1 .fh-bottom .fh-inner .img-container img {
  max-width: 100%;
  margin-bottom: 42px;
  border-radius: 7px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

/* Featured Header: Style 2 */
.super-header .featured-header.style-2 {
  padding-top: 42px;
  position: relative;
  overflow: hidden;
}
.super-header .featured-header.style-2:before {
  content: " ";
  height: calc(100vh - 200px);
  display: block;
  width: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.super-header .featured-header.style-2:after {
  content: " ";
  background: #fff;
  height: 250px;
  display: block;
  width: 100%;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50% 50% 0 0;
  transform: scale(1.75);
  overflow: hidden;
}
.super-header .featured-header.style-2 .featured-header-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: calc(100% - 320px);
  margin: auto;
  position: relative;
  z-index: 3;
}
.super-header .featured-header.style-2 .fh-top {
  width: 960px;
  margin-bottom: 124px;
}
.super-header .featured-header.style-2 .fh-top .fh-inner {
  padding-right: 64px;
  text-align: center;
}
.super-header .featured-header.style-2 .fh-top .fh-title h2 {
  font-weight: bold;
  font-size: 5rem;
  color: var(--header-text);
  margin-bottom: 32px;
}
.super-header .featured-header.style-2 .fh-top .sub-title {
  font-size: 2rem;
  line-height: 1.4;
  font-family: "hk grotesk";
  margin-top: initial;
  color: var(--header-desc);
}
.super-header .featured-header.style-2 .fh-top p {
  font-size: 1.3rem;
}
.super-header .featured-header.style-2 .fh-top .short-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.super-header .featured-header.style-2 .fh-top .short-features li {
  border: 2px solid #ccc;
  padding: 24px 32px;
  border-radius: 5px;
  margin-right: 26px;
  text-align: center;
}
.super-header .featured-header.style-2 .fh-top .short-features li h4 {
  font-size: 2.5rem;
}
.super-header .featured-header.style-2 .fh-top .short-features li span {
  font-size: 0.8rem;
  line-height: 1.4;
  display: block;
  margin-top: 14px;
}
.super-header .featured-header.style-2 .fh-top .button {
  font-size: 1.2rem;
}
.super-header .featured-header.style-2 .fh-top .button.secondary {
  margin-left: 16px;
}
.super-header .featured-header.style-2 .fh-bottom {
  width: 1320px;
  margin: auto;
  padding-bottom: 46px;
}
.super-header .featured-header.style-2 .fh-bottom .fh-inner {
  padding-left: 0;
}
.super-header .featured-header .fh-bottom .img-container {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 0px 32px 10px rgba(0, 0, 0, 0.2);
}
.super-header .featured-header .fh-bottom .img-container img {
  max-width: 100%;
  height: auto;
}
.super-header .featured-header .fh-bottom .img-container .flexslider {
  background: transparent;
  border: 0;
  height: 800px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0;
  transition-delay: 0.4s;
}
.super-header .featured-header .fh-bottom .img-container .flexslider .slides {
  opacity: 1;
  transition-duration: 0.5s;
}
.super-header .featured-header .fh-bottom .img-container .flexslider.loading-posts {
  height: 400px;
  background: #ffffff;
  position: relative;
  transition-delay: 0.4s;
}
.super-header .featured-header .fh-bottom .img-container .flexslider.loading-posts .slides {
  opacity: 0;
  transition-duration: 0.5s;
}
.super-header .featured-header .fh-bottom .img-container .flexslider.loading-posts .spinner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
}
.spinner {
  width: 40px;
  height: 40px;
  margin: 0;
  background-color: var(--header-text);
  border-radius: 100%;  
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}
.super-header .featured-header .fh-bottom .img-container .flexslider .spinner-container {
  display: none;
}
.super-header .featured-header.fh-bottom .img-container .flexslider.loading-posts:before {
  content: ' ';
  background: -webkit-linear-gradient(to right, #4A00E0, #8E2DE2);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #4A00E0, #8E2DE2);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}

/* Featured Header: Style 3 */
.super-header.style-3 {
  background: #fff;
  position: relative;
}
.super-header.style-3 .shape {
  height: 1200px;
  width: 1920px;
  background: var(--accent-color);
  position: absolute;
  border-radius: 48px;
  opacity: 1;
  transform: translate3d(45%, -17%, 0) rotate(10deg);
}
.super-header.style-3 .shape.two {
  transform: translate3d(44%, -15%, 0) rotate(14deg);
  opacity: 0.2;
}
.super-header .featured-header.style-3 {
  padding-top: 42px;
  position: relative;
  overflow: hidden;
}
.super-header .featured-header.style-3:before {
  content: " ";
  height: calc(100vh - 200px);
  display: block;
  width: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.super-header .featured-header.style-3 .fh-bottom .img-container .flexslider {
  height: 600px;
  height: auto;
}
.super-header .featured-header.style-3 .featured-header-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: calc(100% - 320px);
  margin: auto;
  position: relative;
  z-index: 3;
}
.super-header .featured-header.style-3 .fh-top {
  width: 960px;
  width: 40%;
  margin-bottom: 124px;
}
.super-header .featured-header.style-3 .fh-top .fh-inner {
  padding-right: 64px;
  text-align: left;
}
.super-header .featured-header.style-3 .fh-top .fh-title h2 {
  font-weight: bold;
  font-size: 5rem;
  color: var(--header-text);
  margin-bottom: 32px;
}
.super-header .featured-header.style-3 .fh-top .sub-title {
  font-size: 2rem;
  line-height: 1.4;
  font-family: "hk grotesk";
  margin-top: initial;
  color: var(--header-desc);
}
.super-header .featured-header.style-3 .fh-top p {
  font-size: 1.3rem;
}
.super-header .featured-header.style-3 .fh-top .short-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.super-header .featured-header.style-3 .fh-top .short-features li {
  border: 2px solid #ccc;
  padding: 24px 32px;
  border-radius: 5px;
  margin-right: 26px;
  text-align: center;
}
.super-header .featured-header.style-3 .fh-top .short-features li h4 {
  font-size: 2.5rem;
}
.super-header .featured-header.style-3 .fh-top .short-features li span {
  font-size: 0.8rem;
  line-height: 1.4;
  display: block;
  margin-top: 14px;
}
.super-header .featured-header.style-3 .fh-top .button {
  font-size: 1.2rem;
}
.super-header .featured-header.style-3 .fh-top .button.secondary {
  margin-left: 16px;
}
.super-header .featured-header.style-3 .fh-bottom {
  width: 1320px;
  width: 60%;
  margin: auto;
  padding-bottom: 46px;
}
.super-main .main-section {
  padding: 96px 0;
}
.super-main .main-section .titles {
  width: 1320px;
  margin: auto auto 64px auto;
  text-align: center;
}
.super-main .main-section .titles .label {
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 12px;
  margin-top: 0;
  font-size: 0.9rem;
}
.super-main .main-section .titles h2 {
  font-size: 2.5rem;
  font-weight: 600;
}
.super-main .main-section .titles h2.large {
  font-family: europa;
  font-size: 8rem;
  font-weight: 700;
}
.super-main .main-section .titles p {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  color: rgba(0, 0, 0, 0.5);
}
.super-main .main-section .mf-left,
.super-main .main-section .mf-right {
  width: 38%;
}
.super-main .main-section .mf-left .titles,
.super-main .main-section .mf-right .titles {
  width: 100%;
  text-align: left;
}
.super-main .main-section .mf-left .titles h2,
.super-main .main-section .mf-right .titles h2 {
  line-height: 1.3;
}
.super-main .main-section .mf-left .titles p,
.super-main .main-section .mf-right .titles p {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.super-main .main-section .mf-left img,
.super-main .main-section .mf-right img {
  max-width: 100%;
  max-width: 200%;
  height: auto;
}
.super-main .main-section .mf-right {
  width: 58%;
  overflow: hidden;
  height: 600px;
}
.super-main .main-section.revert .mf-inner {
  flex-direction: row-reverse !important;
}
.super-main .main-section.demos {
  background: #ffffff;
  color: #eee;
  border: none;
}
.super-main .main-section.demos .titles h2 {
  color: #222;
}
.super-main .main-section.demos .titles p {
  color: #555555;
}
.super-main .main-section.demos .sub-titles {
  width: 1080px;
  margin: auto;
  margin-bottom: 24px;
}
.super-main .main-section.demos .demos-posts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 42px;
  row-gap: 42px;
  grid-column-gap: 42px;
  grid-row-gap: 42px;
  /*flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;*/
  width: calc(100% - 320px);
  margin: auto;
}
.super-main .main-section.demos .demos-posts article {
  margin-bottom: 6%;
  position: relative;
  color: #666666;
}
.super-main .main-section.demos .demos-posts article .img-container {
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  top:0;
  transition-duration: 0.7s;
}
.super-main .main-section.demos .demos-posts article .img-container:hover {
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.25);
  top: 10px;
  transition-duration: 0.7s;
  background-color: #000;
}
.super-main .main-section.demos .demos-posts article .img-container a {
  display: block;
  border-radius: 10px;
}
.super-main .main-section.demos .demos-posts article .img-container .button {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -40%, 0);
  opacity: 0;
  transition-duration: 0.5s;
  transition-delay: 0s;
  background: #000 !important;
  color: #fff !important;
  font-size: 20px;
}
.super-main .main-section.demos .demos-posts article .img-container:hover .button {
  transform: translate3d(-50%, -50%, 0);
  transition-duration: 0.5s;
  transition-delay: 0s;
  opacity: 1;
  background: var(--accent-color-blue) !important;
  color: #fff !important;
}

.super-main .main-section.demos .demos-posts article .img-container img {
  max-width: 100%;
  height: auto;
  transition-duration: 0.5s;
  opacity: 1;
}
.super-main .main-section.demos .demos-posts article .img-container:hover img {
  opacity: 0.2;
  transition-duration: 0.5s;
}
.super-main .main-section.demos .demos-posts article .title-container {
  margin-top: 42px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.super-main .main-section.demos .demos-posts article .title-container .label {
  background: #000;
  padding: 2px 12px;
  border-radius: 3px;
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 1px;
  margin-left: 12px;
  margin-top: 0;
  text-transform: uppercase;
}
.super-main .main-section.demos .demos-posts article .title-container h4 {
  font-weight: 600;
  font-size: 2rem;
}
.super-main .main-section.demos .demos-posts article .title-container h4 a {
  color: #333;
}
.super-main .main-section.demos .demos-posts article .text-container .button {
  color: #666666;
  font-size: 1rem;
  font-weight: 700;
}
.super-main .main-section.demos .demos-posts article .text-container .button-transparent {
  background: transparent;
  padding: 0;
  border-radius: 0;
  border-color: transparent;
}
.super-main .main-section.demos .demos-posts article .text-container .button-with-arrow {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.super-main .main-section.demos .demos-posts article .text-container .button-with-arrow .fas {
  margin-top: 2px;
  margin-left: 12px;
  font-size: 0.8rem;
}
.super-main .main-section.demos .demos-posts article:hover {
  transition-duration: 0.5s;
}
.super-main .main-section.demos .demos-posts article:hover .img-container {
  transition-duration: 0.5s;
}
/*.super-main .main-section.demos .demos-posts article.main-demo:hover {
  color: #fff;
}*/
.super-main .main-section.demos .demos-posts article.main-demo:hover .img-container {
  background: #252ee5;
}
.super-main .main-section.demos .demos-posts article.writer-demo:hover .img-container {
  background: #ff573d;
}

.super-main .main-section.demos .demos-posts article.demo-grid:hover .img-container {
  background: #ffd720;
}
.super-main .main-section.demos .demos-posts article.demo-grid-light:hover .img-container {
  background: #000000;
}

.super-main .main-section.demos .demos-posts article.friends-demo:hover .img-container {
  background: #6ae8c9;
}
.super-main .main-section.demos .demos-posts article.bold-demo:hover .img-container {
  background: #ff753a;
}
.super-main .main-section.demos .demos-posts article.corporate-demo:hover .img-container {
  background: #fed637;
}
.super-main .main-section.demos .demos-posts article.green-demo:hover .img-container {
  background: #5dc004;
}
.super-main .main-section.demos .demos-posts article.demo-orange:hover .img-container {
  background: #ff7c00;
}
.super-main .main-section.demos .demos-posts article.circle-demo:hover .img-container {
  background: #e3cdbc;
  color: #222222;
}
.super-main .main-section.demos .demos-posts article.cookery-demo:hover .img-container {
  background: #364710;
  color: #dd9933;
}
.super-main .main-section.demos .demos-posts article.creativa-demo:hover .img-container {
  background: #ffd9c4;
  color: #333333;
}
.super-main .main-section.demos .demos-posts article.explorer-demo:hover .img-container {
  background: #fd9a34;
  color: #333333;
}
.super-main .main-section.demos .demos-posts article.style-demo:hover .img-container {
  background: #dc3f13;
}
.super-main .main-section.demos .demos-posts article.note-demo:hover .img-container {
  background: #abc2ce;
}
.super-main .main-section.demos .demos-posts article.golden-demo:hover .img-container {
  background: #ffbb1a;
  color: #222222;
}
.super-main .main-section.demos .demos-posts article.video-demo:hover .img-container {
  background: #222222;
  color: #ffffff;
}
.super-main .main-section.demos .demos-posts article.mountain-demo:hover .img-container {
  background: #353941;
  color: #fcc520;
}
.super-main .main-section.demos .demos-posts article.slider-demo:hover .img-container {
  background: #f8525a;
  color: #ffffff;
}
.super-main .main-section.demos .demos-posts article.shutter-demo:hover .img-container {
  background: #fed710;
  color: #222222;
}
.super-main .main-section.demos .demos-posts article.burnt-orange-demo:hover .img-container {
  background: #d35509;
  color: #ffffff;
}
.super-main .main-section.demos .demos-posts article.seaside-demo:hover .img-container {
  background: #aac9d4;
  color: #222222;
}
.super-main .main-section.demos .demos-posts article.classic-demo:hover .img-container {
  background: #aac9d4;
  color: #222222;
}
/*.super-main .main-section.demos .demos-posts .gutter-sizer {
  width: 3.5%;
}
.super-main .main-section.demos .demos-posts .grid-sizer {
  width: 31%;
}
.super-main .main-section.demos .demos-posts .grid-item {
  width: 31%;
}*/
.super-main .main-section.demos .demos-posts .grid-item.reminder,
.super-main .main-section.demos .demos-posts .grid-item.seaside-demo {
  margin: 0;
}
.super-main .main-section.demos .demos-posts .grid-item .new-marker {
  background: tomato;
  color: #fff;
  font-size: 0.9rem;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: -15px;
  left: -15px;
  z-index: 1;
}
.super-main .main-section.mobile {
  background: #000;
  color: #eee;
}
.super-main .main-section.mobile .titles .label {
  color: #666666;
}
.super-main .main-section.mobile .titles h2 {
  color: #fff;
}
.super-main .main-section.mobile .titles p {
  color: #999999;
}
.super-main .main-section.demos.mobile .mobile-posts {
  width: 780px;
}
.super-main .main-section.mobile .mobile-posts .gutter-sizer {
  width: 30px;
}
.super-main .main-section.mobile .mobile-posts .grid-sizer {
  width: 375px;
}
.super-main .main-section.mobile .mobile-posts .grid-item {
  width: 375px;
}
.super-main .main-section.mobile .mobile-posts article {
  position: relative;
}
.super-main .main-section.demos.mobile .mobile-posts article .img-container {
  background: #1a1a1a;
  height: 667px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-radius: 42px;
}
.super-main .main-section.mobile .mobile-posts article .img-container .mob-container {
  border-radius: 32px;
  height: 632px;
  overflow: hidden;
}
.super-main .main-section.mobile .mobile-posts article.friends-demo {
  margin-top: 150px;
}
.super-main .main-section.button-section {
  background: var(--accent-color);
}
.super-main .main-section.button-section .button-section-inner {
  width: 1080px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.super-main .main-section.button-section .button-section-inner .button {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  display: inline-block;
  font-size: 1.2rem;
  color: var(--accent-color ) !important;
  background: #111;
  border-color: #111;
}
.super-main .main-section.button-section .button-section-inner .button:hover {
  background: #000;
  color: #fff !important;
  border-color: #000;
}
.super-main .main-section.media-archive-features .mf-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 1320px;
  margin: auto;
}
.super-main .main-section.media-archive-features .mf-inner .mf-content {
  width: 100%;
}
.super-main .main-section.media-archive-features .mf-inner .mf-content img {
  max-width: 100%;
}
.super-main .main-section.media-archive-features .media-archive-footer {
  padding-top: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.super-main .main-section.media-archive-features .media-archive-footer .button {
  margin-right: 8px;
}
.super-main .main-section.media-features {
  background: #fafafa;
}
.super-main .main-section.media-features .mf-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 1080px;
  margin: auto;
}
.super-main .main-section.media-features .mf-inner .mf-left,
.super-main .main-section.media-features .mf-inner .mf-right {
  width: 48%;
}
.super-main .main-section.media-features .mf-inner .mf-right {
  width: 48%;
  overflow: hidden;
  height: auto;
}
.super-main .main-section.media-features .mf-inner .mf-right img {
  max-width: 100%;
  height: auto;
}
.super-main .main-section.media-features.media-features-video {
  background: #111;
  color: #fafafa;
}
.super-main .main-section.media-features.media-features-video .titles .label {
  color: #fafafa;
}
.super-main .main-section.media-features.media-features-video .titles p {
  color: #fafafa;
}
.super-main .main-section.features {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.super-main .main-section.features .featured-section {
  width: 40%;
}
.super-main .main-section.features .featured-section img {
  max-width: 100%;
  height: auto;
}
.super-main .main-section.features .featured-section .fs-inner {
  padding: 32px;
}
.super-main .main-section.features .featured-section.features-left, .super-main .main-section.features .featured-section.features-right {
  background: coral;
  width: 30%;
}
.super-main .main-section.inner-pages-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.super-main .main-section.inner-pages-section .inner-pages {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 90%;
  margin: auto;
  /*width: calc( 100% + calc(100% / 6) );*/
  position: relative;
}
.super-main .main-section.inner-pages-section .inner-pages article {
  width: calc( calc(100% / 4) - (42px * 3 / 4 ));
  margin-bottom: 42px;
}
.super-main .main-section.inner-pages-section .inner-pages article .art-inner {
  background: #fafafa;
  padding: 24px;
  border-radius: 10px;
}
.super-main .main-section.inner-pages-section .inner-pages article .img-container {
  height: 400px;
  overflow: hidden;
}
.super-main .main-section.inner-pages-section .inner-pages article img {
  max-width: 100%;
}
.super-main .main-section.inner-pages-section .inner-pages article h4 {
  margin-top: 24px;
  text-align: center;
}
.super-main .main-section.inner-pages-section .inner-pages article h4 a:link, .super-main .main-section.inner-pages-section .inner-pages article h4 a:visited {
  color: #222;
}
.super-main .main-section.inner-pages-section .inner-pages .gutter-sizer {
  width: 42px;
}
.super-main .main-section.inner-pages-section .inner-pages .grid-sizer {
  width: calc( calc(100% / 4) - (42px * 3 / 4 ) );
}
.super-main .main-section.inner-pages-section .inner-pages .grid-item {
  width: calc( calc(100% / 4) - (42px * 3 / 4 ) );
}
.super-main .main-section.features-list-section {
  background: #000;
}
.super-main .main-section.features-list-section .titles .label {
  color: #666666;
}
.super-main .main-section.features-list-section .titles h2 {
  color: #fff;
}
.super-main .main-section.features-list-section .titles p {
  color: #999999;
}
.super-main .main-section.features-list-section .features-list {
  width: 1080px;
  margin: auto;
}
.super-main .main-section.features-list-section .features-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  
}
.super-main .main-section.features-list-section .features-list ul li {
  background: #222;
  display: flex;
  padding: 42px;
  border-radius: 10px;
  flex-direction: column;
}
.super-main .main-section.features-list-section .features-list ul li .icon-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.super-main .main-section.features-list-section .features-list ul li .icon-container span {
  display: block;
  color: var(--features-icon);
  font-size: 2.5rem;
}
.super-main .main-section.features-list-section .features-list ul li div {
  padding: 0;
  text-align: left;
  margin-bottom: 12px;
}
.super-main .main-section.features-list-section .features-list ul li div h4 {
  font-weight: 600;
  line-height: 1.2;
  font-size: 1.5rem;
  color: #e6e6e6;
}
.super-main .main-section.features-list-section .features-list ul li div p {
  font-size: 1rem;
  color: #999999;
}
.super-main .main-section.plugin-support {
  background: var(--plugin-support-bg);
}
.super-main .main-section.plugin-support .mf-inner {
  width: 1080px;
  margin: auto;
}
.super-main .main-section.plugin-support .titles {
  width: 1080px;
}
.super-main .main-section.plugin-support .titles span {
  color: var(--plugin-support-desc);  
}
.super-main .main-section.plugin-support .titles h2 {
  color: var(--plugin-support-title);
}
.super-main .main-section.plugin-support .titles p {
  color: var(--plugin-support-desc);  
}
/*.super-main .main-section.plugin-support .mf-inner .mf-left {
  width: 48%;
}
.super-main .main-section.plugin-support .mf-inner .mf-right {
  width: 48%;
  height: auto;
}*/
.super-main .main-section.plugin-support .list-of-plugins {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  border: 3px solid #111;
  background: #111;
  border-radius: 10px;
}
.super-main .main-section.plugin-support .list-of-plugins .plugin {
  background: var(--plugin-support-bg);
  padding: 32px;
  color: var(--plugin-support-title);  
}
.super-main .main-section.plugin-support .list-of-plugins .plugin:nth-child(1) {
  border-radius: 10px 0 0 0;
}
.super-main .main-section.plugin-support .list-of-plugins .plugin:nth-child(3) {
  border-radius: 0 10px 0 0;
}
.super-main .main-section.plugin-support .list-of-plugins .plugin:nth-last-child(3) {
  border-radius: 0 0 0 10px;
}
.super-main .main-section.plugin-support .list-of-plugins .plugin:nth-last-child(1) {
  border-radius: 0 0 10px 0;
}
.super-main .main-section.plugin-support .list-of-plugins .plugin .plugin-inner .text {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.super-main .main-section.plugin-support .list-of-plugins .plugin .plugin-inner .text .icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  width: 54px;
  height: 54px;
  font-size: 1.5rem;
  margin-right: 12px;
}
.super-main .main-section.documentation-support {
  border-top: 1px solid #ddd;
  position: relative;
  z-index: 10;
}
.super-main .main-section.documentation-support .mf-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 1080px;
  margin: auto;
}
.super-main .main-section.documentation-support .mf-inner .media-titles {
  text-align: center;
}
.super-main .main-section.documentation-support .mf-left,
.super-main .main-section.documentation-support .mf-right {
  width: 48%;
  height: auto;
}
.super-main .main-section.information {
  color: #ffffff;
  background: #111111;
  position: relative;
  overflow: hidden;
}
.super-main .main-section.information:before {
  content: " ";
  background: #ffffff;
  height: 250px;
  display: block;
  width: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: -300px;
  border-radius: 0 0 50% 50%;
  transform: scale(1.75);
  overflow: hidden;
}
.super-main .main-section.information .titles p {
  color: #ffffff;
}
.super-main .main-section.information .button {
  margin-top: 32px;
  font-size: 1.2rem;
  padding: 16px 24px;
  margin-top: 64px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 7px;
  color: #ffffff;
  font-weight: 400;
  margin-right: auto;
  margin-left: auto;
  display: inline-block;
}

@media only screen and (max-width: 1280px) {
  .super-header .featured-nav.style-2 .nav-inner {
    width: calc(100% - 140px);
  }
  .super-header .featured-header.style-3 .featured-header-inner {
    width: calc(100% - 140px);
  }
  .super-main .main-section.demos .demos-posts {
    width: calc(100% - 140px);  
  }
  .super-main .main-section.demos .demos-posts article .img-container {
    height: 400px;
  }
  .super-main .main-section.demos .demos-posts article .img-container a {
    height: calc(400px - (18px * 2));
  }
  .super-main .main-section .titles {
    width: var(--1280-width);
  }
  .super-main .main-section.features-list-section .features-list {
    width: var(--1280-width);
  }
  .super-main .main-section.features-list-section .features-list ul {
    grid-template-columns: 1fr 1fr;
  }
  .super-main .main-section.media-archive-features .mf-inner {
    width: var(--1280-width);  
  }
  .super-main .main-section.media-archive-features .mf-inner .mf-content img {
    max-width: 80%;
    height: auto;
    margin: auto;
  }
  .super-main .main-section.button-section .button-section-inner {
    width: var(--1280-width);  
  }
  .super-main .main-section.plugin-support .titles {
    width: var(--1280-width);
  }
  .super-main .main-section.plugin-support .mf-inner {
    width: var(--1280-width);
  }
  .super-main .main-section.plugin-support .list-of-plugins {
    grid-template-columns: 1fr 1fr;
  }
  .super-main .main-section.plugin-support .list-of-plugins .plugin:nth-child(1) {
    border-radius: 10px 0 0 0;
  }
  .super-main .main-section.plugin-support .list-of-plugins .plugin:nth-child(2) {
    border-radius: 0 10px 0 0;
  }
  .super-main .main-section.plugin-support .list-of-plugins .plugin:nth-child(3) {
    border-radius: 0 0 0 0;
  }
  .super-main .main-section.plugin-support .list-of-plugins .plugin:nth-last-child(3) {
    border-radius: 0 0 0 0;
  }
  .super-main .main-section.plugin-support .list-of-plugins .plugin:nth-last-child(2) {
    border-radius: 0 0 0 10px;
  }
  .super-main .main-section.plugin-support .list-of-plugins .plugin:nth-last-child(1) {
    border-radius: 0 0 10px 0;
  }
  .super-main .main-section.media-features .mf-inner {
    width: var(--1280-width);
  }
  .super-main .main-section .titles p {
    width: 80%;
  }
  .super-main .main-section.plugin-support.embed-support .list-of-plugins .plugin:last-child {
    display: none;
  }
  .super-main .main-section.plugin-support.embed-support .list-of-plugins .plugin:nth-last-child(3) {
    border-radius: 0 0 0 10px;
  }
  .super-main .main-section.plugin-support.embed-support .list-of-plugins .plugin:nth-last-child(2) {
    border-radius: 0 0 10px 0;
  }
  .super-main .main-section.plugin-support.embed-support .list-of-plugins .plugin:nth-last-child(1) {
    border-radius: 0 0 10px 0;
  }
  .super-main .main-section.documentation-support .mf-inner {
    width: var(--1280-width);
  }
}
@media only screen and (max-width: 1024px) {
  body {
    font-size: 16px;
  }
  .super-header .featured-nav.style-2 {
    height: 170px;
  }
  .super-header .featured-nav.style-2 .nav-inner {
    width: calc(100% - 110px);
  }
  .super-header .featured-header.style-3 .featured-header-inner {
    width: calc(100% - 110px);
  }
  .super-header .featured-header.style-3 .fh-top .fh-title h2 {
    font-size: 4rem;
  }
  .super-header .featured-header.style-3 .fh-top .sub-title {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .super-header .featured-header.style-3 .fh-top .fh-inner {
    padding-right: 42px;
  }
  .super-main .main-section .titles h2.large {
    font-size: 6rem;
  }
  .super-main .main-section .titles h2 {
    font-size: 2rem;
  }
  .super-main .main-section.demos .demos-posts article .img-container {
    height: 277px;
  }
  .super-main .main-section.demos .demos-posts article .img-container a {
    height: calc(277px - (18px * 2));
  }
  .super-main .main-section.demos .demos-posts article .title-container h4 {
    font-size: 1.5rem;
  }
  .super-main .main-section.demos .demos-posts article .title-container .label {
    padding: 1px 7px;
    font-size: 0.6rem;
  }

}
@media only screen and (max-width: 960px) {
  .button,
  .button:link,
  .button:visited {
    padding: 12px 34px;
  }
  .super-header .featured-nav.style-2 {
    height: 140px;
  }
  .super-header .featured-nav.style-2 .nav-inner .button {
    font-size: 1rem;
  }
  .super-header .featured-nav.style-2 .nav-inner {
    width: calc(100% - 80px);
  }
  .super-header .featured-header.style-3 .featured-header-inner {
    width: calc(100% - 80px);
    flex-direction: column;
  }
  .super-header .featured-header.style-3 .fh-top {
    width: 100%;
    margin-bottom: 64px;
  }
  .super-header .featured-header.style-3 .fh-top .fh-inner {
    text-align: center;
    padding-right: 0;
  }
  .super-header .featured-header.style-3 .fh-top .button.secondary:hover {
    color: #fff !important;
  }
  .super-header .featured-header.style-3 .fh-bottom {
    width: 80%;
  }
  .super-main .main-section.demos .demos-posts {
    width: calc(100% - 80px);  
  }
  .super-main .main-section.demos .demos-posts article .img-container {
    height: 276px;
  }
  .super-main .main-section.demos .demos-posts article .img-container a {
    height: calc(276px - (18px * 2));
  }
  .super-main .main-section .titles {
    width: var(--960-width);
  }
  .super-main .main-section.button-section .button-section-inner {
    width: var(--960-width);  
  }
  .super-main .main-section.features-list-section .features-list {
    width: var(--960-width);
  }
  .super-main .main-section.features-list-section .features-list ul {
    grid-template-columns: 1fr 1fr;
  }
  .super-main .main-section.media-archive-features .mf-inner {
    width: var(--960-width);  
  }
  .super-main .main-section.media-archive-features .mf-inner .mf-content img {
    max-width: 80%;
    height: auto;
    margin: auto;
  }
  .super-main .main-section.plugin-support .titles {
    width: var(--960-width);
  }
  .super-main .main-section.plugin-support .mf-inner {
    width: var(--960-width);
  }
  .super-main .main-section.media-features .mf-inner {
    width: var(--960-width);
  }
  .super-main .main-section.documentation-support .mf-inner {
    width: var(--960-width);
  }
}
@media only screen and (max-width: 768px) {
  .super-header .featured-nav.style-2 .nav-inner {
    width: calc(100% - 42px);
  }
  .super-header .featured-header.style-3 .featured-header-inner {
    width: calc(100% - 42px);
  }
  .super-main .main-section.demos .demos-posts {
    width: calc(100% - 42px);  
  }
  .super-main .main-section.demos .demos-posts article .img-container {
    height: 223px;
  }
  .super-main .main-section.demos .demos-posts article .img-container a {
    height: calc(223px - (18px * 2));
  }
  .super-main .main-section .titles {
    width: var(--768-width);
  }
  .super-main .main-section.button-section .button-section-inner {
    width: var(--768-width);  
  }
  .super-main .main-section.features-list-section .features-list {
    width: var(--768-width);
  }
  .super-main .main-section.media-archive-features .mf-inner {
    width: var(--768-width);  
  }
  .super-main .main-section.demos.mobile .mobile-posts {
    width: var(--768-width);
  }
  .super-main .main-section.demos.mobile .mobile-posts .grid-item {
    width: 48%;
  }
  .super-main .main-section.demos.mobile .mobile-posts .grid-sizer {
    width: 48%;
  }
  .super-main .main-section.demos.mobile .demos-posts .gutter-sizer {
    width: 4%;
  }
  .super-main .main-section.demos .demos-posts article .img-container img {
    height: auto;
  }
  .super-main .main-section.demos.mobile .mobile-posts article .img-container {
    height: 544px;
  }
  .super-main .main-section.mobile .mobile-posts article .img-container .mob-container {
    height: calc( 544px - 36px);
  }
  .super-header .featured-header.style-3 .fh-bottom {
    width: 100%;
  }
  .super-main .main-section.plugin-support .titles {
    width: var(--768-width);
  }
  .super-main .main-section.plugin-support .mf-inner {
    width: var(--768-width);
  }
  .super-main .main-section.media-features .mf-inner {
    width: var(--768-width);
  }
  .super-main .main-section.documentation-support .mf-inner {
    width: var(--768-width);
  }
}
@media only screen and (max-width: 600px) {
  .super-header .featured-nav.style-2 .nav-inner {
    width: calc(100% - 32px);
  }
  .super-header .featured-header.style-3 .featured-header-inner {
    width: calc(100% - 32px);
  }
  .super-main .main-section.demos .demos-posts {
    width: calc(100% - 32px);  
  }
  .super-main .main-section.features-list-section .features-list ul {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }
  .super-main .main-section.features-list-section .features-list ul li {
    padding: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .super-header .featured-nav.style-2 .nav-inner {
    width: calc(100% - 24px);
  }
  .super-header .featured-header.style-3 .featured-header-inner {
    width: calc(100% - 24px);
  }
  .super-main .main-section.demos .demos-posts {
    width: calc(100% - 24px);  
  }
  .super-header .featured-nav.style-2 {
    height: 96px;
  }
  .super-header .featured-nav.style-2 .nav-inner {
    width: calc(100% - 42px)
  }
  .super-header .featured-nav.style-2 .nav-inner nav {
    width: 100%;
  }
  .super-header .featured-nav.style-2 .nav-inner nav ul {
    /*flex-direction: column;*/
    justify-content: space-between;
    margin: auto;
    font-size: 1rem;
  }
  .super-header .featured-nav.style-2 .nav-inner nav ul li {
    margin-right: 16px;
  }
  .super-header .featured-nav.style-2 .nav-inner .button {
    display: none;
  }
  .super-header .featured-header.style-3 {
    padding-top: 16px;
  }
  .super-header .featured-header.style-3 .fh-top {
    margin-bottom: 32px;
  }
  .super-header .featured-header.style-3 .fh-top .fh-title h2 {
    font-size: 3rem;
    margin-bottom: 16px;
  }
  .super-header .featured-header.style-3 .fh-top .sub-title {
    font-size: 1.2rem;
  }
  .super-header .featured-header.style-3 .fh-top .button.secondary {
    margin-left: 0;
  }
  .super-header .featured-header.style-3 .fh-top .button {
    font-size: 1rem;
  }
  .super-main .main-section .titles h2.large {
    font-size: 4rem;
  }
  .super-main .main-section.demos .demos-posts {
    width: calc(100% - 54px);
  }
  .super-main .main-section.demos .demos-posts .grid-sizer {
    width: 100%;
  }
  .super-main .main-section.demos .demos-posts .gutter-sizer {
    width: 0;
  }
  .super-main .main-section.demos .demos-posts .grid-item {
    width: 100%;
  }
  .super-main .main-section.demos .demos-posts .grid-item .new-marker {
    width: 50px;
    height: 50px;
  }
  .super-main .main-section.features-list-section .features-list ul {
    grid-template-columns: 1fr;
  }
  .super-main .main-section.media-archive-features .media-archive-footer {
    padding-top: 0;
    flex-direction: column;
  }
  .super-main .main-section.plugin-support .list-of-plugins {
    grid-template-columns: 1fr;
  }
  .super-main .main-section.plugin-support .list-of-plugins .plugin:nth-child(1) {
    border-radius: 10px 10px 0 0;
  }
  .super-main .main-section.plugin-support .list-of-plugins .plugin:nth-child(2) {
    border-radius: 0 0 0 0;
  }
  .super-main .main-section.plugin-support .list-of-plugins .plugin:nth-child(3) {
    border-radius: 0 0 0 0;
  }
  .super-main .main-section.plugin-support .list-of-plugins .plugin:nth-last-child(3) {
    border-radius: 0 0 0 0;
  }
  .super-main .main-section.plugin-support .list-of-plugins .plugin:nth-last-child(2) {
    border-radius: 0 0 0 0;
  }
  .super-main .main-section.plugin-support .list-of-plugins .plugin:nth-last-child(1) {
    border-radius: 0 0 10px 10px;
  }
  .super-main .main-section.media-features .mf-inner {
    flex-direction: column;
  }
  .super-main .main-section.media-features .mf-inner .mf-left, 
  .super-main .main-section.media-features .mf-inner .mf-right {
    width: 100%;
  }
  .super-main .main-section.media-archive-features .mf-inner .mf-content img {
    max-width: 100%;
  }
  .super-main .main-section.plugin-support.embed-support .list-of-plugins .plugin:last-child {
    display: none;
  }
  .super-main .main-section.plugin-support.embed-support .list-of-plugins .plugin:nth-last-child(3) {
    border-radius: 0 0 10px 10px;
  }
  .super-main .main-section.plugin-support.embed-support .list-of-plugins .plugin:nth-last-child(2) {
    border-radius: 0 0 10px 0;
    display: none;
  }
  .super-main .main-section.plugin-support.embed-support .list-of-plugins .plugin:nth-last-child(1) {
    border-radius: 0 0 10px 0;
    display: none;
  }
  .super-main .main-section.demos.mobile .mobile-posts .grid-item {
    width: 100%;
  }
  .super-main .main-section.demos.mobile .mobile-posts .grid-sizer {
    width: 100%;
  }
  .super-main .main-section.demos.mobile .demos-posts .gutter-sizer {
    width: 0;
  }
  .super-main .main-section.mobile .mobile-posts article.friends-demo {
    margin-top: 0;
  }
  .super-main .main-section.documentation-support .mf-inner {
    flex-direction: column;
  }
  .super-main .main-section.documentation-support .mf-left, .super-main .main-section.documentation-support .mf-right {
    width: 100%;
    height: auto;
}
}