/* FONTS */
@font-face {
  font-family: "RobotoRegular";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: local("Helvetica Neue Regular"), url("../fonts/Roboto-Regular.woff");
}

/* FONTS END */


/* NULL STYLE */
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button:active,
button:focus {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0 !important;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

body {
  font-family: "RobotoRegular", sans-serif;
  color: #111;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

ul,
ol {
  list-style: none;
}

/* NULL STYLE END */


/* CLASSES */
.wrapper {
  overflow: hidden;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
}

.main {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}

/* CLASSES END */


/* PRELOADER */
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 1001;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.preloader h6 {
  color: #bbb;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

.preloader__loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.preloader__loader span {
  display: inline-block;
  vertical-align: middle;
  width: 0.6em;
  height: 0.6em;
  margin: 0.19em;
  background: #007DB6;
  border-radius: 0.6em;
  -webkit-animation: loading 1s infinite alternate;
  animation: loading 1s infinite alternate;
}

.preloader__loader span:nth-of-type(2) {
  background: #008FB2;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.preloader__loader span:nth-of-type(3) {
  background: #009B9E;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.preloader__loader span:nth-of-type(4) {
  background: #00A77D;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.preloader__loader span:nth-of-type(5) {
  background: #00B247;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.preloader__loader span:nth-of-type(6) {
  background: #5AB027;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.preloader__loader span:nth-of-type(7) {
  background: #A0B61E;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.preloader--hide {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

/* PRELOADER END */


/* HEADER */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: #fff;
  -webkit-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.5);
}

.header__body,
.header__body-inner,
.header__logo {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__body-inner {
  height: 50px;
}

.header__logo {
  margin-right: 30px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (max-width: 1024px) {
  .header__logo {
    margin-right: 20px;
  }
}

@media (max-width: 950px) {
  .header__logo {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}

.header__logo a {
  display: inline-block;
  width: 88px;
  height: 48px;
  position: relative;
  white-space: nowrap;
}

.header__logo a img,
.header__logo a source {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__list {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: inherit;
}

@media (max-width: 950px) {
  .header__list {
    display: block;
  }
}

.header__item {
  display: inline-block;
  height: inherit;
}

@media (max-width: 950px) {
  .header__item {
    height: 30px;
  }
}

@media (max-width: 950px) {
  .header__item:not(:last-child) {
    padding-right: 10px;
    margin: 0px 0px 20px 0px;
  }
}

.header__link {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  font-size: 15px;
  line-height: 1.2;
  z-index: 2;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #000000;
  white-space: nowrap;
  padding: 0 20px;
  text-transform: capitalize;
}


/* HEADER SOCIAL  */
.header-social {
  height: inherit;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.header-social__list,
.header-social__item,
.header-social__list li {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: inherit;
}

.header-social__link {
  display: inline-block;
  width: 40px;
  height: inherit;
  position: relative;
}

@media (min-width: 950px) {
  .header-social__link--facebook:hover {
    background: #3b5998;
  }

  .header-social__link--instagram:hover {
    background: #f09433;
    background: -o-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f09433", endColorstr="#bc1888", GradientType=1);
  }

  .header-social__link--twitter:hover {
    background: #00acee;
  }

  .header-social__link--google:hover {
    background: #dd4b39;
  }

  .header-social__link:hover svg {
    fill: #ffffff;
  }
}

.header-social__link svg {
  width: 50%;
  height: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* HEADER SOCIAL END */


/* NAV  */
.nav {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  height: inherit;
}

@media (max-width: 950px) {
  .nav {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

/* NAV END */


/* BURGER */
.header__burger {
  display: none;
  margin-left: 20px;
}

@media (max-width: 950px) {
  body.lock {
    height: 100%;
    width: 100%;
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
  }

  .header__body {
    height: 50px;
  }

  .header__burger {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
  }

  .header__burger span {
    position: absolute;
    background-color: #000000;
    left: 0;
    width: 100%;
    height: 2px;
    top: 9px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .header__burger:before,
  .header__burger:after {
    content: "";
    background-color: #000000;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .header__burger:before {
    top: 0;
  }

  .header__burger:after {
    bottom: 0;
  }

  .header__burger.active:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 9px;
  }

  .header__burger.active:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 9px;
  }

  .header__burger.active span {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }

  .header__list {
    display: block;
    position: fixed;
    top: -100%;
    left: 0;
    width: 84%;
    height: 100%;
    overflow: auto;
    background: #ffffff;
    z-index: 100;
    padding: 50px 0 20px 10px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow-x: hidden;
  }

  .header__list.active {
    top: 0;
  }

  .header__list li {
    display: block;
  }

  .header__link {
    font-size: 24px;
  }
}

.header__fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-animation: show__header 1s;
  animation: show__header 1s;
  -webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.342);
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.342);
}

/* BURGER END */


/* BUTTON */
.btn {
  position: relative;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
  height: inherit;
}

.btn::before,
.btn::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  opacity: 0.5;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  z-index: -1;
}

.btn::after {
  opacity: 1;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.btn:hover::before,
.btn:hover::after {
  left: 0;
}

.pulse {
  border-radius: 50%;
  -webkit-animation: pulse 0.7s ease-out;
  animation: pulse 0.7s ease-out;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  position: absolute;
}

/* BUTTON END */


/* @KEYFRAMES */
@-webkit-keyframes show__header {
  0% {
    opacity: 0;
    top: -200px;
  }

  100% {
    opacity: 1;
    top: 0;
  }
}

@keyframes show__header {
  0% {
    opacity: 0;
    top: -200px;
  }

  100% {
    opacity: 1;
    top: 0;
  }
}

@-webkit-keyframes pulse {
  to {
    -webkit-transform: scale(2);
    transform: scale(2);
    background-color: #ffffff;
    opacity: 0;
  }
}

@keyframes pulse {
  to {
    -webkit-transform: scale(2);
    transform: scale(2);
    background-color: #ffffff;
    opacity: 0;
  }
}

@-webkit-keyframes right__shift {
  0% {
    left: 0px;
  }

  50% {
    left: 4px;
  }

  100% {
    left: -1px;
  }
}

@keyframes right__shift {
  0% {
    left: 0px;
  }

  50% {
    left: 4px;
  }

  100% {
    left: -1px;
  }
}

@-webkit-keyframes left__roll {
  0% {
    -webkit-transform: translate(-20%, -90%) rotate(0deg);
    transform: translate(-20%, -90%) rotate(0deg);
  }

  50% {
    -webkit-transform: translate(-20%, -90%) rotate(-180deg);
    transform: translate(-20%, -90%) rotate(-180deg);
  }

  100% {
    -webkit-transform: translate(-20%, -90%) rotate(-360deg);
    transform: translate(-20%, -90%) rotate(-360deg);
  }
}

@keyframes left__roll {
  0% {
    -webkit-transform: translate(-20%, -90%) rotate(0deg);
    transform: translate(-20%, -90%) rotate(0deg);
  }

  50% {
    -webkit-transform: translate(-20%, -90%) rotate(-180deg);
    transform: translate(-20%, -90%) rotate(-180deg);
  }

  100% {
    -webkit-transform: translate(-20%, -90%) rotate(-360deg);
    transform: translate(-20%, -90%) rotate(-360deg);
  }
}

@-webkit-keyframes right__roll {
  0% {
    -webkit-transform: translate(0, -40%) rotate(0deg);
    transform: translate(0, -40%) rotate(0deg);
  }

  50% {
    -webkit-transform: translate(0, -40%) rotate(180deg);
    transform: translate(0, -40%) rotate(180deg);
  }

  100% {
    -webkit-transform: translate(0, -40%) rotate(360deg);
    transform: translate(0, -40%) rotate(360deg);
  }
}

@keyframes right__roll {
  0% {
    -webkit-transform: translate(0, -40%) rotate(0deg);
    transform: translate(0, -40%) rotate(0deg);
  }

  50% {
    -webkit-transform: translate(0, -40%) rotate(180deg);
    transform: translate(0, -40%) rotate(180deg);
  }

  100% {
    -webkit-transform: translate(0, -40%) rotate(360deg);
    transform: translate(0, -40%) rotate(360deg);
  }
}

@-webkit-keyframes delay-overflow {
  to {
    overflow: visible;
  }
}

@keyframes delay-overflow {
  to {
    overflow: visible;
  }
}

@-webkit-keyframes loading {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes loading {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* @KEYFRAMES END */


/* HEADER-STYLES */

/* Select the desired style, delete or comment out the rest */

/* WHITE */
body.mouse.white .header {
  background: #ffffff;
}

body.mouse.white .header .btn::before,
body.mouse.white .header .btn::after {
  background: rgb(252, 11, 11);
}

body.mouse.white .header .header__link {
  color: #343A40;
}

body.mouse.white .header .header__link:hover {
  color: #ffffff;
}

body.mouse.white .header .header__link--active {
  color: #ffffff;
  background: rgb(252, 11, 11);
}

body.mouse.white .pulse {
  background: rgb(252, 11, 11);
}

body.mouse.white::-webkit-scrollbar {
  width: 12px;
}

body.mouse.white::-webkit-scrollbar-track {
  background: #bbb;
}

body.mouse.white::-webkit-scrollbar-thumb {
  background: rgb(252, 11, 11);
  border-radius: 8px;
  border: 2px solid #adadad;
}

body.mouse.white::-webkit-scrollbar-thumb:hover {
  background: rgb(221, 2, 2);
}

body.touch.white .header {
  background: #ffffff;
}

body.touch.white .header .header__list {
  background: #ffffff;
}

body.touch.white .header .header__link {
  color: #343A40;
}

body.touch.white .header .header__link--active {
  color: #ffffff;
  background: rgb(252, 11, 11);
}

body.touch.white .header .btn::before,
body.touch.white .header .btn::after {
  display: none;
}

body.touch.white .pulse {
  background: rgb(252, 11, 11);
}

/* WHITE END */


/* WHITE_RED */
body.mouse.red-white-red .header {
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(211, 23, 23)), to(rgb(211, 70, 70)));
  background: -o-linear-gradient(bottom, rgb(211, 23, 23), rgb(211, 70, 70));
  background: linear-gradient(to top, rgb(211, 23, 23), rgb(211, 70, 70));
}

body.mouse.red-white-red .header .header__burger span,
body.mouse.red-white-red .header .header__burger::before,
body.mouse.red-white-red .header .header__burger::after,
body.mouse.red-white-red .header .btn::before,
body.mouse.red-white-red .header .btn::after {
  background: #ffffff;
}

body.mouse.red-white-red .header .header-social__link svg {
  fill: #ffffff;
}

body.mouse.red-white-red .header .header__link {
  color: #ffffff;
}

body.mouse.red-white-red .header .header__link:hover {
  color: #333;
}

body.mouse.red-white-red .header .header__link--active {
  color: #333;
  background: #ffffff;
}

@media (max-width: 950px) {
  body.mouse.red-white-red .header .header__list {
    background: -webkit-gradient(linear, left bottom, left top, from(rgb(211, 23, 23)), to(rgb(211, 70, 70)));
    background: -o-linear-gradient(bottom, rgb(211, 23, 23), rgb(211, 70, 70));
    background: linear-gradient(to top, rgb(211, 23, 23), rgb(211, 70, 70));
  }
}

body.mouse.red-white-red .pulse {
  background: rgb(252, 11, 11);
}

body.mouse.red-white-red::-webkit-scrollbar {
  width: 12px;
}

body.mouse.red-white-red::-webkit-scrollbar-track {
  background: #bbb;
}

body.mouse.red-white-red::-webkit-scrollbar-thumb {
  background: rgb(252, 11, 11);
  border-radius: 8px;
  border: 2px solid #adadad;
}

body.mouse.red-white-red::-webkit-scrollbar-thumb:hover {
  background: rgb(221, 2, 2);
}

body.touch.red-white-red .header {
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(211, 23, 23)), to(rgb(211, 70, 70)));
  background: -o-linear-gradient(bottom, rgb(211, 23, 23), rgb(211, 70, 70));
  background: linear-gradient(to top, rgb(211, 23, 23), rgb(211, 70, 70));
}

body.touch.red-white-red .header .header__burger span,
body.touch.red-white-red .header .header__burger::before,
body.touch.red-white-red .header .header__burger::after {
  background: #ffffff;
}

body.touch.red-white-red .header .header-social__link svg {
  fill: #ffffff;
}

body.touch.red-white-red .header .btn::before,
body.touch.red-white-red .header .btn::after {
  display: none;
}

body.touch.red-white-red .header .header__link {
  color: #ffffff;
}

body.touch.red-white-red .header .header__link--active {
  color: #333;
  background: #ffffff;
}

@media (max-width: 950px) {
  body.touch.red-white-red .header .header__list {
    background: -webkit-gradient(linear, left bottom, left top, from(rgb(211, 23, 23)), to(rgb(211, 70, 70)));
    background: -o-linear-gradient(bottom, rgb(211, 23, 23), rgb(211, 70, 70));
    background: linear-gradient(to top, rgb(211, 23, 23), rgb(211, 70, 70));
  }
}

body.touch.red-white-red .pulse {
  background: rgb(252, 11, 11);
}

/* WHITE_RED END */


/* WHITE_GREEN */
body.mouse.white-green .header {
  background: #ffffff;
}

body.mouse.white-green .header .btn::before,
body.mouse.white-green .header .btn::after {
  background: #04aa7b;
}

body.mouse.white-green .header .header__link:hover {
  color: #ffffff;
}

body.mouse.white-green .header .header__link--active {
  color: #ffffff;
  background: #04aa7b;
}

@media (max-width: 950px) {
  body.mouse.white-green .header .header__list {
    background: #04aa7b;
  }
}

body.mouse.white-green .pulse {
  background-color: #04aa7b;
}

body.mouse.white-green::-webkit-scrollbar {
  width: 12px;
}

body.mouse.white-green::-webkit-scrollbar-track {
  background: #D3CCE3;
}

body.mouse.white-green::-webkit-scrollbar-thumb {
  background: #04aa7b;
  border-radius: 8px;
  border: 2px solid #adadad;
}

body.mouse.white-green::-webkit-scrollbar-thumb:hover {
  background: #11998e;
}

body.touch.white-green .header {
  background: #ffffff;
}

body.touch.white-green .header .btn::before,
body.touch.white-green .header .btn::after {
  display: none;
}

body.touch.white-green .header .header__link--active {
  color: #ffffff;
  background: #04aa7b;
}

@media (max-width: 950px) {
  body.touch.white-green .header .header__list {
    background: #30b161;
  }

  body.touch.white-green .header .header__list ul li,
  body.touch.white-green .header .header__list svg {
    background: #30b161;
  }

  body.touch.white-green .header .header__list .header__link {
    color: #ffffff;
  }
}

body.touch.white-green .pulse {
  background-color: #04aa7b;
}

/* WHITE_GREEN END */


/* GREEN */
body.mouse.green .header {
  background: -webkit-gradient(linear, left top, left bottom, from(#30b161), to(#11998e));
  background: -o-linear-gradient(top, #30b161, #11998e);
  background: linear-gradient(to bottom, #30b161, #11998e);
}

body.mouse.green .header .header__burger span,
body.mouse.green .header .header__burger::before,
body.mouse.green .header .header__burger::after,
body.mouse.green .header .btn::before,
body.mouse.green .header .btn::after {
  background: #ffffff;
}

body.mouse.green .header .header-social__link svg {
  fill: #ffffff;
}

body.mouse.green .header .header__link {
  color: #ffffff;
}

body.mouse.green .header .header__link:hover {
  color: #333;
}

body.mouse.green .header .header__link--active {
  color: #333;
  background: #ffffff;
}

@media (max-width: 950px) {
  body.mouse.green .header .header__list {
    background: -webkit-gradient(linear, left top, left bottom, from(#30b161), to(#11998e));
    background: -o-linear-gradient(top, #30b161, #11998e);
    background: linear-gradient(to bottom, #30b161, #11998e);
  }
}

body.mouse.green .pulse {
  background-color: #30b161;
}

body.mouse.green::-webkit-scrollbar {
  width: 12px;
}

body.mouse.green::-webkit-scrollbar-track {
  background: #D3CCE3;
}

body.mouse.green::-webkit-scrollbar-thumb {
  background: #38ef7d;
  border-radius: 8px;
  border: 2px solid #adadad;
}

body.mouse.green::-webkit-scrollbar-thumb:hover {
  background: #62daa2;
}

body.touch.green .header {
  background: -webkit-gradient(linear, left top, left bottom, from(#30b161), to(#11998e));
  background: -o-linear-gradient(top, #30b161, #11998e);
  background: linear-gradient(to bottom, #30b161, #11998e);
}

body.touch.green .header .header__burger span,
body.touch.green .header .header__burger::before,
body.touch.green .header .header__burger::after {
  background: #ffffff;
}

body.touch.green .header .header-social__link svg {
  fill: #ffffff;
}

body.touch.green .header .btn::before,
body.touch.green .header .btn::after {
  display: none;
}

body.touch.green .header .header__link {
  color: #ffffff;
}

body.touch.green .header .header__link--active {
  color: #333;
  background: #ffffff;
}

@media (max-width: 950px) {
  body.touch.green .header .header__list {
    background: -webkit-gradient(linear, left top, left bottom, from(#30b161), to(#11998e));
    background: -o-linear-gradient(top, #30b161, #11998e);
    background: linear-gradient(to bottom, #30b161, #11998e);
  }
}

body.touch.green .pulse {
  background-color: #30b161;
}

/* GREEN END */


/* WHITE_BLUE */
body.mouse.white-blue .header {
  background: #ffffff;
}

body.mouse.white-blue .header .btn::before,
body.mouse.white-blue .header .btn::after {
  background-color: #4b88d8;
}

body.mouse.white-blue .header .header__link {
  color: #343A40;
}

body.mouse.white-blue .header .header__link:hover {
  color: #ffffff;
}

body.mouse.white-blue .header .header__link--active {
  color: #ffffff;
  background: #4b88d8;
}

@media (max-width: 950px) {
  body.mouse.white-blue .header .header__list {
    background: #4b88d8;
  }
}

body.mouse.white-blue .pulse {
  background-color: #4b88d8;
}

body.mouse.white-blue::-webkit-scrollbar {
  width: 12px;
}

body.mouse.white-blue::-webkit-scrollbar-track {
  background: #D3CCE3;
}

body.mouse.white-blue::-webkit-scrollbar-thumb {
  background: #4b88d8;
  border-radius: 8px;
  border: 2px solid #adadad;
}

body.touch.white-blue .header {
  background: #ffffff;
}

body.touch.white-blue .header .btn::before,
body.touch.white-blue .header .btn::after {
  display: none;
}

body.touch.white-blue .header .header__link {
  color: #343A40;
}

body.touch.white-blue .header .header__link--active {
  color: #ffffff;
  background: #4b88d8;
}

@media (max-width: 950px) {
  body.touch.white-blue .header .header__list {
    background: #4babd8;
  }

  body.touch.white-blue .header .header__list ul li,
  body.touch.white-blue .header .header__list svg {
    background: #4babd8;
  }

  body.touch.white-blue .header .header__list .header__link {
    color: #ffffff;
  }
}

body.touch.white-blue .pulse {
  background-color: #4b88d8;
}

/* WHITE_BLUE END */


/* BLUE */
body.mouse.blue .header {
  background: -webkit-gradient(linear, left bottom, left top, from(#016688), to(#00B4DB));
  background: -o-linear-gradient(bottom, #016688, #00B4DB);
  background: linear-gradient(to top, #016688, #00B4DB);
}

body.mouse.blue .header .header__burger span,
body.mouse.blue .header .header__burger::before,
body.mouse.blue .header .header__burger::after,
body.mouse.blue .header .btn::before,
body.mouse.blue .header .btn::after {
  background: #ffffff;
}

body.mouse.blue .header .header-social__link svg {
  fill: #ffffff;
}

body.mouse.blue .header .header__link {
  color: #ffffff;
}

body.mouse.blue .header .header__link:hover {
  color: #333;
}

body.mouse.blue .header .header__link--active {
  color: #333;
  background: #ffffff;
}

@media (max-width: 950px) {
  body.mouse.blue .header .header__list {
    background: -webkit-gradient(linear, left bottom, left top, from(#016688), to(#00B4DB));
    background: -o-linear-gradient(bottom, #016688, #00B4DB);
    background: linear-gradient(to top, #016688, #00B4DB);
  }
}

body.mouse.blue .pulse {
  background-color: #016688;
}

body.mouse.blue::-webkit-scrollbar {
  width: 12px;
}

body.mouse.blue::-webkit-scrollbar-track {
  background: #D3CCE3;
}

body.mouse.blue::-webkit-scrollbar-thumb {
  background: #00B4DB;
  border-radius: 8px;
  border: 2px solid #adadad;
}

body.mouse.blue::-webkit-scrollbar-thumb:hover {
  background: #016688;
}

body.touch.blue .header {
  background: -webkit-gradient(linear, left bottom, left top, from(#016688), to(#00B4DB));
  background: -o-linear-gradient(bottom, #016688, #00B4DB);
  background: linear-gradient(to top, #016688, #00B4DB);
}

body.touch.blue .header .header__burger span,
body.touch.blue .header .header__burger::before,
body.touch.blue .header .header__burger::after {
  background: #ffffff;
}

body.touch.blue .header .header-social__link svg {
  fill: #ffffff;
}

body.touch.blue .header .btn::before,
body.touch.blue .header .btn::after {
  display: none;
}

body.touch.blue .header .header__link {
  color: #ffffff;
}

body.touch.blue .header .header__link--active {
  color: #333;
  background: #ffffff;
}

@media (max-width: 950px) {
  body.touch.blue .header .header__list {
    background: -webkit-gradient(linear, left bottom, left top, from(#016688), to(#00B4DB));
    background: -o-linear-gradient(bottom, #016688, #00B4DB);
    background: linear-gradient(to top, #016688, #00B4DB);
  }
}

body.touch.blue .pulse {
  background-color: #016688;
}

/* BLUE END */


/* WHITE_GRAY */
body.mouse.white-gray .header {
  background: #ffffff;
}

body.mouse.white-gray .header .btn::before,
body.mouse.white-gray .header .btn::after {
  background-color: #D8D8D8;
}

body.mouse.white-gray .header .header__link {
  color: #343A40;
}

body.mouse.white-gray .header .header__link:hover {
  color: #333;
}

body.mouse.white-gray .header .header__link--active {
  color: #333;
  background: #D8D8D8;
}

@media (max-width: 950px) {
  body.mouse.white-gray .header .header__list {
    background-color: #D8D8D8;
  }
}

body.mouse.white-gray .pulse {
  background-color: #D8D8D8;
}

body.mouse.white-gray::-webkit-scrollbar {
  width: 12px;
}

body.mouse.white-gray::-webkit-scrollbar-track {
  background: #ffffff;
}

body.mouse.white-gray::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 8px;
  border: 2px solid #ffffff;
}

body.mouse.white-gray::-webkit-scrollbar-thumb:hover {
  background: #56595c;
}

body.touch.white-gray .header {
  background: #ffffff;
}

body.touch.white-gray .header .btn::before,
body.touch.white-gray .header .btn::after {
  display: none;
}

body.touch.white-gray .header .header__link {
  color: #343A40;
}

body.touch.white-gray .header .header__link:hover {
  color: #333;
}

body.touch.white-gray .header .header__link--active {
  color: #333;
  background: #D8D8D8;
}

@media (max-width: 950px) {
  body.touch.white-gray .header .header__list {
    background: -webkit-gradient(linear, left bottom, left top, from(#e9e9e9), to(#adadad));
    background: -o-linear-gradient(bottom, #e9e9e9, #adadad);
    background: linear-gradient(to top, #e9e9e9, #adadad);
  }

  body.touch.white-gray .header .header__list ul li,
  body.touch.white-gray .header .header__list svg {
    background: #adadad;
  }
}

body.touch.white-gray .pulse {
  background-color: #D8D8D8;
}

/* WHITE_GRAY END */


/* DARK_GRAY */
body.mouse.dark-gray .header {
  background: -webkit-gradient(linear, left top, left bottom, from(#56595c), to(#2d2f30));
  background: -o-linear-gradient(top, #56595c, #2d2f30);
  background: linear-gradient(to bottom, #56595c, #2d2f30);
}

body.mouse.dark-gray .header .header__burger span,
body.mouse.dark-gray .header .header__burger::before,
body.mouse.dark-gray .header .header__burger::after,
body.mouse.dark-gray .header .btn::before,
body.mouse.dark-gray .header .btn::after {
  background: #ffffff;
}

body.mouse.dark-gray .header .header-social__link svg {
  fill: #ffffff;
}

body.mouse.dark-gray .header .header__link {
  color: #ffffff;
}

body.mouse.dark-gray .header .header__link:hover {
  color: #333;
}

body.mouse.dark-gray .header .header__link--active {
  color: #333;
  background: #ffffff;
}

@media (max-width: 950px) {
  body.mouse.dark-gray .header .header__list {
    background: -webkit-gradient(linear, left top, left bottom, from(#56595c), to(#2d2f30));
    background: -o-linear-gradient(top, #56595c, #2d2f30);
    background: linear-gradient(to bottom, #56595c, #2d2f30);
  }
}

body.mouse.dark-gray .pulse {
  background-color: #56595c;
}

body.mouse.dark-gray::-webkit-scrollbar {
  width: 12px;
}

body.mouse.dark-gray::-webkit-scrollbar-track {
  background: #ffffff;
}

body.mouse.dark-gray::-webkit-scrollbar-thumb {
  background: #56595c;
  border-radius: 8px;
  border: 2px solid #ffffff;
}

body.mouse.dark-gray::-webkit-scrollbar-thumb:hover {
  background: #434343;
}

body.touch.dark-gray .header {
  background: -webkit-gradient(linear, left top, left bottom, from(#56595c), to(#2d2f30));
  background: -o-linear-gradient(top, #56595c, #2d2f30);
  background: linear-gradient(to bottom, #56595c, #2d2f30);
}

body.touch.dark-gray .header .header__burger span,
body.touch.dark-gray .header .header__burger::before,
body.touch.dark-gray .header .header__burger::after {
  background: #ffffff;
}

body.touch.dark-gray .header .header-social__link svg {
  fill: #ffffff;
}

body.touch.dark-gray .header .btn::before,
body.touch.dark-gray .header .btn::after {
  display: none;
}

body.touch.dark-gray .header .header__link {
  color: #ffffff;
}

body.touch.dark-gray .header .header__link--active {
  color: #333;
  background: #ffffff;
}

@media (max-width: 950px) {
  body.touch.dark-gray .header .header__list {
    background: -webkit-gradient(linear, left top, left bottom, from(#56595c), to(#2d2f30));
    background: -o-linear-gradient(top, #56595c, #2d2f30);
    background: linear-gradient(to bottom, #56595c, #2d2f30);
  }
}

body.touch.dark-gray .pulse {
  background-color: #56595c;
}

/* DARK_GRAY END */


/* FULL_BLACK */
body.mouse.full-black .header {
  background: #333;
}

body.mouse.full-black .header a {
  color: rgb(141, 141, 141);
}

body.mouse.full-black .header .header__burger span,
body.mouse.full-black .header .header__burger::before,
body.mouse.full-black .header .header__burger::after {
  background: rgb(141, 141, 141);
}

body.mouse.full-black .header .header__link {
  -webkit-transition: all 0.2s ease !important;
  -o-transition: all 0.2s ease !important;
  transition: all 0.2s ease !important;
}

body.mouse.full-black .header .header__link:hover {
  color: rgb(187, 187, 187);
}

body.mouse.full-black .header .header__link:hover svg {
  fill: rgb(187, 187, 187);
}

body.mouse.full-black .header .header__link--active {
  color: rgb(187, 187, 187);
  background: rgb(70, 70, 70);
}

body.mouse.full-black .header .btn::before,
body.mouse.full-black .header .btn::after {
  background: rgb(70, 70, 70);
}

body.mouse.full-black .header svg {
  fill: rgb(141, 141, 141);
}

body.mouse.full-black .header .header-social__link:hover {
  background: transparent;
}

body.mouse.full-black .header .header-social__link svg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

body.mouse.full-black .header .header-social__link svg:hover {
  fill: rgb(187, 187, 187);
}

@media (max-width: 950px) {
  body.mouse.full-black .header .header__list {
    background: #333;
  }
}

body.mouse.full-black .pulse {
  background-color: rgb(141, 141, 141);
}

body.mouse.full-black::-webkit-scrollbar {
  width: 12px;
}

body.mouse.full-black::-webkit-scrollbar-track {
  background: #bbb;
}

body.mouse.full-black::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 8px;
  border: 2px solid #555;
}

body.mouse.full-black::-webkit-scrollbar-thumb:hover {
  background: rgb(70, 70, 70);
}

body.touch.full-black .header {
  background: #333;
}

body.touch.full-black .header .header__burger span,
body.touch.full-black .header .header__burger::before,
body.touch.full-black .header .header__burger::after {
  background: rgb(141, 141, 141);
}

body.touch.full-black .header .header-social__link svg,
body.touch.full-black .header .header__list svg {
  fill: rgb(141, 141, 141);
}

body.touch.full-black .header .btn::before,
body.touch.full-black .header .btn::after {
  display: none;
}

body.touch.full-black .header .header__list {
  background: #333;
}

body.touch.full-black .header .header__link--active {
  color: rgb(187, 187, 187);
  background: rgb(70, 70, 70);
}

body.touch.full-black .header a {
  color: rgb(187, 187, 187);
}

body.touch.full-black .pulse {
  background-color: rgb(141, 141, 141);
}

/* FULL_BLACK END */


/* YELLOW_BLUE-WHITE */
body.mouse.yellow_blue-white .header {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #ffe601), color-stop(92.74%, #00B4DB));
  background: -o-linear-gradient(bottom, #ffe601 3.82%, #00B4DB 92.74%);
  background: linear-gradient(0deg, #ffe601 3.82%, #00B4DB 92.74%);
}

body.mouse.yellow_blue-white .header .header__burger span,
body.mouse.yellow_blue-white .header .header__burger::before,
body.mouse.yellow_blue-white .header .header__burger::after,
body.mouse.yellow_blue-white .header .btn::before,
body.mouse.yellow_blue-white .header .btn::after {
  background: #ffffff;
}

body.mouse.yellow_blue-white .header .header-social__link svg {
  fill: #ffffff;
}

body.mouse.yellow_blue-white .header .header__link {
  color: #ffffff;
}

body.mouse.yellow_blue-white .header .header__link:hover {
  color: #333;
}

body.mouse.yellow_blue-white .header .header__link--active {
  color: #333;
  background: #ffffff;
}

@media (max-width: 950px) {
  body.mouse.yellow_blue-white .header .header__list {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #ffe601), color-stop(92.74%, #00B4DB));
    background: -o-linear-gradient(bottom, #ffe601 3.82%, #00B4DB 92.74%);
    background: linear-gradient(0deg, #ffe601 3.82%, #00B4DB 92.74%);
  }
}

body.mouse.yellow_blue-white .pulse {
  background-color: #ffe601;
}

body.mouse.yellow_blue-white::-webkit-scrollbar {
  width: 12px;
}

body.mouse.yellow_blue-white::-webkit-scrollbar-track {
  background: #D3CCE3;
}

body.mouse.yellow_blue-white::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #ffe601), color-stop(92.74%, #00B4DB));
  background: linear-gradient(0deg, #ffe601 3.82%, #00B4DB 92.74%);
  border-radius: 8px;
  border: 2px solid #adadad;
}

body.touch.yellow_blue-white .header {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #ffe601), color-stop(92.74%, #00B4DB));
  background: -o-linear-gradient(bottom, #ffe601 3.82%, #00B4DB 92.74%);
  background: linear-gradient(0deg, #ffe601 3.82%, #00B4DB 92.74%);
}

body.touch.yellow_blue-white .header .header__burger span,
body.touch.yellow_blue-white .header .header__burger::before,
body.touch.yellow_blue-white .header .header__burger::after {
  background: #ffffff;
}

body.touch.yellow_blue-white .header .header-social__link svg {
  fill: #ffffff;
}

body.touch.yellow_blue-white .header .btn::before,
body.touch.yellow_blue-white .header .btn::after {
  display: none;
}

body.touch.yellow_blue-white .header .header__link {
  color: #ffffff;
}

body.touch.yellow_blue-white .header .header__link--active {
  color: #333;
  background: #ffffff;
}

@media (max-width: 950px) {
  body.touch.yellow_blue-white .header .header__list {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #ffe601), color-stop(92.74%, #00B4DB));
    background: -o-linear-gradient(bottom, #ffe601 3.82%, #00B4DB 92.74%);
    background: linear-gradient(0deg, #ffe601 3.82%, #00B4DB 92.74%);
  }
}

body.touch.yellow_blue-white .pulse {
  background-color: #ffe601;
}

/* YELLOW_BLUE-WHITE END */


/* GREEN_BLUE-WHITE */
body.mouse.green_blue-white .header {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #38ef7d), color-stop(92.74%, #00B4DB));
  background: -o-linear-gradient(bottom, #38ef7d 3.82%, #00B4DB 92.74%);
  background: linear-gradient(0deg, #38ef7d 3.82%, #00B4DB 92.74%);
}

body.mouse.green_blue-white .header .header__burger span,
body.mouse.green_blue-white .header .header__burger::before,
body.mouse.green_blue-white .header .header__burger::after,
body.mouse.green_blue-white .header .btn::before,
body.mouse.green_blue-white .header .btn::after {
  background: #ffffff;
}

body.mouse.green_blue-white .header .header-social__link svg {
  fill: #ffffff;
}

body.mouse.green_blue-white .header .header__link {
  color: #ffffff;
}

body.mouse.green_blue-white .header .header__link:hover {
  color: #333;
}

body.mouse.green_blue-white .header .header__link--active {
  color: #333;
  background: #ffffff;
}

@media (max-width: 950px) {
  body.mouse.green_blue-white .header .header__list {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #38ef7d), color-stop(92.74%, #00B4DB));
    background: -o-linear-gradient(bottom, #38ef7d 3.82%, #00B4DB 92.74%);
    background: linear-gradient(0deg, #38ef7d 3.82%, #00B4DB 92.74%);
  }
}

body.mouse.green_blue-white .pulse {
  background-color: #38ef7d;
}

body.mouse.green_blue-white::-webkit-scrollbar {
  width: 12px;
}

body.mouse.green_blue-white::-webkit-scrollbar-track {
  background: #D3CCE3;
}

body.mouse.green_blue-white::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #38ef7d), color-stop(92.74%, #00B4DB));
  background: linear-gradient(0deg, #38ef7d 3.82%, #00B4DB 92.74%);
  border-radius: 8px;
  border: 2px solid #adadad;
}

body.touch.green_blue-white .header {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #38ef7d), color-stop(92.74%, #00B4DB));
  background: -o-linear-gradient(bottom, #38ef7d 3.82%, #00B4DB 92.74%);
  background: linear-gradient(0deg, #38ef7d 3.82%, #00B4DB 92.74%);
}

body.touch.green_blue-white .header .header__burger span,
body.touch.green_blue-white .header .header__burger::before,
body.touch.green_blue-white .header .header__burger::after {
  background: #ffffff;
}

body.touch.green_blue-white .header .header-social__link svg {
  fill: #ffffff;
}

body.touch.green_blue-white .header .btn::before,
body.touch.green_blue-white .header .btn::after {
  display: none;
}

body.touch.green_blue-white .header .header__link {
  color: #ffffff;
}

body.touch.green_blue-white .header .header__link--active {
  color: #333;
  background: #ffffff;
}

@media (max-width: 950px) {
  body.touch.green_blue-white .header .header__list {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #38ef7d), color-stop(92.74%, #00B4DB));
    background: -o-linear-gradient(bottom, #38ef7d 3.82%, #00B4DB 92.74%);
    background: linear-gradient(0deg, #38ef7d 3.82%, #00B4DB 92.74%);
  }
}

body.touch.green_blue-white .pulse {
  background-color: #38ef7d;
}

/* GREEN_BLUE-WHITE END */


/* YELLOW-WHITE  */
body.mouse.yellow-white .header {
  background: #ffa501;
}

body.mouse.yellow-white .header .header__burger span,
body.mouse.yellow-white .header .header__burger::before,
body.mouse.yellow-white .header .header__burger::after,
body.mouse.yellow-white .header .btn::before,
body.mouse.yellow-white .header .btn::after {
  background: #ffffff;
}

body.mouse.yellow-white .header .header-social__link svg {
  fill: #ffffff;
}

body.mouse.yellow-white .header .header__link {
  color: #ffffff;
}

body.mouse.yellow-white .header .header__link:hover {
  color: #333;
}

body.mouse.yellow-white .header .header__link--active {
  color: #333;
  background: #ffffff;
}

@media (max-width: 950px) {
  body.mouse.yellow-white .header .header__list {
    background: #ffa501;
  }
}

body.mouse.yellow-white .pulse {
  background-color: #ffa501;
}

body.mouse.yellow-white::-webkit-scrollbar {
  width: 12px;
}

body.mouse.yellow-white::-webkit-scrollbar-track {
  background: #D3CCE3;
}

body.mouse.yellow-white::-webkit-scrollbar-thumb {
  background: #ffa501;
  border-radius: 8px;
  border: 2px solid #adadad;
}

body.mouse.yellow-white::-webkit-scrollbar-thumb:hover {
  background: #fd7e15;
}

body.touch.yellow-white .header {
  background: #ffa501;
}

body.touch.yellow-white .header .header__burger span,
body.touch.yellow-white .header .header__burger::before,
body.touch.yellow-white .header .header__burger::after {
  background: #ffffff;
}

body.touch.yellow-white .header .header-social__link svg {
  fill: #ffffff;
}

body.touch.yellow-white .header .btn::before,
body.touch.yellow-white .header .btn::after {
  display: none;
}

body.touch.yellow-white .header .header__link {
  color: #ffffff;
}

body.touch.yellow-white .header .header__link--active {
  color: #333;
  background: #ffffff;
}

@media (max-width: 950px) {
  body.touch.yellow-white .header .header__list {
    background: #ffa501;
  }
}

body.touch.yellow-white .pulse {
  background-color: #ffa501;
}

/* YELLOW-WHITE END */


/* YELLOW-BLACK */
body.mouse.yellow-black .header {
  background: #ffa501;
}

body.mouse.yellow-black .header .header__burger span,
body.mouse.yellow-black .header .header__burger::before,
body.mouse.yellow-black .header .header__burger::after,
body.mouse.yellow-black .header .btn::before,
body.mouse.yellow-black .header .btn::after {
  background: #343A40;
}

body.mouse.yellow-black .header .header-social__link svg {
  fill: #343A40;
}

body.mouse.yellow-black .header .header__link {
  color: #343A40;
}

body.mouse.yellow-black .header .header__link:hover {
  color: #ffffff;
}

body.mouse.yellow-black .header .header__link--active {
  color: #ffffff;
  background: #343A40;
}

@media (max-width: 950px) {
  body.mouse.yellow-black .header .header__list {
    background: #ffa501;
  }
}

body.mouse.yellow-black .pulse {
  background-color: #ffa501;
}

body.mouse.yellow-black::-webkit-scrollbar {
  width: 12px;
}

body.mouse.yellow-black::-webkit-scrollbar-track {
  background: #D3CCE3;
}

body.mouse.yellow-black::-webkit-scrollbar-thumb {
  background: #ffa501;
  border-radius: 8px;
  border: 2px solid #adadad;
}

body.mouse.yellow-black::-webkit-scrollbar-thumb:hover {
  background: #fd7e15;
}

body.touch.yellow-black .header {
  background: #ffa501;
}

body.touch.yellow-black .header .header__burger span,
body.touch.yellow-black .header .header__burger::before,
body.touch.yellow-black .header .header__burger::after {
  background: #343A40;
}

body.touch.yellow-black .header .header-social__link svg {
  fill: #343A40;
}

body.touch.yellow-black .header .btn::before,
body.touch.yellow-black .header .btn::after {
  display: none;
}

body.touch.yellow-black .header .header__link {
  color: #343A40;
}

body.touch.yellow-black .header .header__link--active {
  color: #ffffff;
  background: #343A40;
}

@media (max-width: 950px) {
  body.touch.yellow-black .header .header__list {
    background: #ffa501;
  }
}

body.touch.yellow-black .pulse {
  background-color: #38ef7d;
}

/* YELLOW-BLACK END */


/* GREEN-BLACK */
body.mouse.green-black .header {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #38ef7d), color-stop(92.74%, #343A40));
  background: -o-linear-gradient(bottom, #38ef7d 3.82%, #343A40 92.74%);
  background: linear-gradient(0deg, #38ef7d 3.82%, #343A40 92.74%);
}

body.mouse.green-black .header .header__burger span,
body.mouse.green-black .header .header__burger::before,
body.mouse.green-black .header .header__burger::after,
body.mouse.green-black .header .btn::before,
body.mouse.green-black .header .btn::after {
  background: #343A40;
}

body.mouse.green-black .header .header-social__link svg {
  fill: #ffffff;
}

body.mouse.green-black .header .header__link {
  color: #ffffff;
}

body.mouse.green-black .header .header__link--active {
  color: #ffffff;
  background: #343A40;
}

@media (max-width: 950px) {
  body.mouse.green-black .header .header__list {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #38ef7d), color-stop(92.74%, #343A40));
    background: -o-linear-gradient(bottom, #38ef7d 3.82%, #343A40 92.74%);
    background: linear-gradient(0deg, #38ef7d 3.82%, #343A40 92.74%);
  }
}

body.mouse.green-black .pulse {
  background-color: #38ef7d;
}

body.mouse.green-black::-webkit-scrollbar {
  width: 12px;
}

body.mouse.green-black::-webkit-scrollbar-track {
  background: #343A40;
}

body.mouse.green-black::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #38ef7d), color-stop(92.74%, #343A40));
  background: linear-gradient(0deg, #38ef7d 3.82%, #343A40 92.74%);
  border-radius: 8px;
  border: 2px solid #adadad;
}

body.touch.green-black .header {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #38ef7d), color-stop(92.74%, #343A40));
  background: -o-linear-gradient(bottom, #38ef7d 3.82%, #343A40 92.74%);
  background: linear-gradient(0deg, #38ef7d 3.82%, #343A40 92.74%);
}

body.touch.green-black .header .header__burger span,
body.touch.green-black .header .header__burger::before,
body.touch.green-black .header .header__burger::after {
  background: #ffffff;
}

body.touch.green-black .header .header-social__link svg {
  fill: #ffffff;
}

body.touch.green-black .header .btn::before,
body.touch.green-black .header .btn::after {
  display: none;
}

body.touch.green-black .header .header__link {
  color: #ffffff;
}

body.touch.green-black .header .header__link--active {
  color: #ffffff;
  background: #343A40;
}

@media (max-width: 950px) {
  body.touch.green-black .header .header__list {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #38ef7d), color-stop(92.74%, #343A40));
    background: -o-linear-gradient(bottom, #38ef7d 3.82%, #343A40 92.74%);
    background: linear-gradient(0deg, #38ef7d 3.82%, #343A40 92.74%);
  }
}

body.touch.green-black .pulse {
  background-color: #38ef7d;
}

/* GREEN-BLACK END */


/* EVENING-SUNSHINE */
body.mouse.evening-sunshine .header {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #1565C0), color-stop(92.74%, #b92b27));
  background: -o-linear-gradient(bottom, #1565C0 3.82%, #b92b27 92.74%);
  background: linear-gradient(0deg, #1565C0 3.82%, #b92b27 92.74%);
}

body.mouse.evening-sunshine .header .header__burger span,
body.mouse.evening-sunshine .header .header__burger::before,
body.mouse.evening-sunshine .header .header__burger::after {
  background: #ffffff;
}

body.mouse.evening-sunshine .header .btn::before,
body.mouse.evening-sunshine .header .btn::after {
  background: #1565C0;
}

body.mouse.evening-sunshine .header .header-social__link svg {
  fill: #ffffff;
}

body.mouse.evening-sunshine .header .header__link {
  color: #ffffff;
}

body.mouse.evening-sunshine .header .header__link--active {
  color: #ffffff;
  background: #1565C0;
}

@media (max-width: 950px) {
  body.mouse.evening-sunshine .header .header__list {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #1565C0), color-stop(92.74%, #b92b27));
    background: -o-linear-gradient(bottom, #1565C0 3.82%, #b92b27 92.74%);
    background: linear-gradient(0deg, #1565C0 3.82%, #b92b27 92.74%);
  }
}

body.mouse.evening-sunshine .pulse {
  background-color: #1565C0;
}

body.mouse.evening-sunshine::-webkit-scrollbar {
  width: 12px;
}

body.mouse.evening-sunshine::-webkit-scrollbar-track {
  background: #343A40;
}

body.mouse.evening-sunshine::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #1565C0), color-stop(92.74%, #b92b27));
  background: linear-gradient(0deg, #1565C0 3.82%, #b92b27 92.74%);
  border-radius: 8px;
  border: 2px solid #adadad;
}

body.touch.evening-sunshine .header {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #1565C0), color-stop(92.74%, #b92b27));
  background: -o-linear-gradient(bottom, #1565C0 3.82%, #b92b27 92.74%);
  background: linear-gradient(0deg, #1565C0 3.82%, #b92b27 92.74%);
}

body.touch.evening-sunshine .header .header__burger span,
body.touch.evening-sunshine .header .header__burger::before,
body.touch.evening-sunshine .header .header__burger::after {
  background: #ffffff;
}

body.touch.evening-sunshine .header .header-social__link svg {
  fill: #ffffff;
}

body.touch.evening-sunshine .header .btn::before,
body.touch.evening-sunshine .header .btn::after {
  display: none;
}

body.touch.evening-sunshine .header .header__link {
  color: #ffffff;
}

body.touch.evening-sunshine .header .header__link--active {
  color: #ffffff;
  background: #1565C0;
}

@media (max-width: 950px) {
  body.touch.evening-sunshine .header .header__list {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #1565C0), color-stop(92.74%, #b92b27));
    background: -o-linear-gradient(bottom, #1565C0 3.82%, #b92b27 92.74%);
    background: linear-gradient(0deg, #1565C0 3.82%, #b92b27 92.74%);
  }
}

body.touch.evening-sunshine .pulse {
  background-color: #1565C0;
}

/* EVENING-SUNSHINE END */


/* ARGON */
body.mouse.argon .header {
  background: -webkit-gradient(linear, left top, left bottom, from(#fdeff9), color-stop(#ec38bc), color-stop(#7303c0), to(#03001e));
  background: -o-linear-gradient(top, #fdeff9, #ec38bc, #7303c0, #03001e);
  background: linear-gradient(to bottom, #fdeff9, #ec38bc, #7303c0, #03001e);
}

body.mouse.argon .header .header__burger span,
body.mouse.argon .header .header__burger::before,
body.mouse.argon .header .header__burger::after {
  background: #ffffff;
}

body.mouse.argon .header .btn::before,
body.mouse.argon .header .btn::after {
  background: #7303c0;
}

body.mouse.argon .header .header-social__link svg {
  fill: #ffffff;
}

body.mouse.argon .header .header__link {
  color: #ffffff;
}

body.mouse.argon .header .header__link--active {
  color: #ffffff;
  background: #7303c0;
}

@media (max-width: 950px) {
  body.mouse.argon .header .header__list {
    background: -webkit-gradient(linear, left top, left bottom, from(#fdeff9), color-stop(#ec38bc), color-stop(#7303c0), to(#03001e));
    background: -o-linear-gradient(top, #fdeff9, #ec38bc, #7303c0, #03001e);
    background: linear-gradient(to bottom, #fdeff9, #ec38bc, #7303c0, #03001e);
  }
}

body.mouse.argon .pulse {
  background-color: #7303c0;
}

body.mouse.argon::-webkit-scrollbar {
  width: 12px;
}

body.mouse.argon::-webkit-scrollbar-track {
  background: #bbb;
}

body.mouse.argon::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left top, left bottom, from(#fdeff9), color-stop(#ec38bc), color-stop(#7303c0), to(#03001e));
  background: linear-gradient(to bottom, #fdeff9, #ec38bc, #7303c0, #03001e);
  border-radius: 8px;
  border: 2px solid #adadad;
}

body.touch.argon .header {
  background: -webkit-gradient(linear, left top, left bottom, from(#fdeff9), color-stop(#ec38bc), color-stop(#7303c0), to(#03001e));
  background: -o-linear-gradient(top, #fdeff9, #ec38bc, #7303c0, #03001e);
  background: linear-gradient(to bottom, #fdeff9, #ec38bc, #7303c0, #03001e);
}

body.touch.argon .header .header__burger span,
body.touch.argon .header .header__burger::before,
body.touch.argon .header .header__burger::after {
  background: #ffffff;
}

body.touch.argon .header .header-social__link svg {
  fill: #ffffff;
}

body.touch.argon .header .btn::before,
body.touch.argon .header .btn::after {
  display: none;
}

body.touch.argon .header .header__link {
  color: #ffffff;
}

body.touch.argon .header .header__link--active {
  color: #ffffff;
  background: #7303c0;
}

@media (max-width: 950px) {
  body.touch.argon .header .header__list {
    background: -o-linear-gradient(300deg, #fdeff9 -15%, #ec38bc, #7303c0, #03001e);
    background: linear-gradient(-210deg, #fdeff9 -15%, #ec38bc, #7303c0, #03001e);
  }
}

body.touch.argon .pulse {
  background-color: #7303c0;
}

/* ARGON END */


/* FLICKR */
body.mouse.flickr .header {
  background: -webkit-gradient(linear, left bottom, left top, from(#ff0084), to(#33001b));
  background: -o-linear-gradient(bottom, #ff0084, #33001b);
  background: linear-gradient(0deg, #ff0084, #33001b);
}

body.mouse.flickr .header .header__burger span,
body.mouse.flickr .header .header__burger::before,
body.mouse.flickr .header .header__burger::after {
  background: #ffffff;
}

body.mouse.flickr .header .btn::before,
body.mouse.flickr .header .btn::after {
  background: #ff0084;
}

body.mouse.flickr .header .header-social__link svg {
  fill: #ffffff;
}

body.mouse.flickr .header .header__link {
  color: #ffffff;
}

body.mouse.flickr .header .header__link--active {
  color: #ffffff;
  background: #ff0084;
}

@media (max-width: 950px) {
  body.mouse.flickr .header .header__list {
    background: -webkit-gradient(linear, left bottom, left top, from(#ff0084), to(#33001b));
    background: -o-linear-gradient(bottom, #ff0084, #33001b);
    background: linear-gradient(0deg, #ff0084, #33001b);
  }
}

body.mouse.flickr .pulse {
  background-color: #ff0084;
}

body.mouse.flickr::-webkit-scrollbar {
  width: 12px;
}

body.mouse.flickr::-webkit-scrollbar-track {
  background: #343A40;
}

body.mouse.flickr::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left bottom, left top, from(#ff0084), to(#33001b));
  background: linear-gradient(0deg, #ff0084, #33001b);
  border-radius: 8px;
  border: 2px solid #adadad;
}

body.touch.flickr .header {
  background: -webkit-gradient(linear, left bottom, left top, from(#ff0084), to(#33001b));
  background: -o-linear-gradient(bottom, #ff0084, #33001b);
  background: linear-gradient(0deg, #ff0084, #33001b);
}

body.touch.flickr .header .header__burger span,
body.touch.flickr .header .header__burger::before,
body.touch.flickr .header .header__burger::after {
  background: #ffffff;
}

body.touch.flickr .header .header-social__link svg {
  fill: #ffffff;
}

body.touch.flickr .header .btn::before,
body.touch.flickr .header .btn::after {
  display: none;
}

body.touch.flickr .header .header__link {
  color: #ffffff;
}

body.touch.flickr .header .header__link--active {
  color: #ffffff;
  background: #ff0084;
}

@media (max-width: 950px) {
  body.touch.flickr .header .header__list {
    background: -webkit-gradient(linear, left bottom, left top, from(#ff0084), to(#33001b));
    background: -o-linear-gradient(bottom, #ff0084, #33001b);
    background: linear-gradient(0deg, #ff0084, #33001b);
  }
}

body.touch.flickr .pulse {
  background-color: #ff0084;
}

/* FLICKR END */


/* FROST */
body.mouse.frost .header {
  background: -webkit-gradient(linear, left bottom, left top, from(#004e92), to(#000428));
  background: -o-linear-gradient(bottom, #004e92, #000428);
  background: linear-gradient(to top, #004e92, #000428);
}

body.mouse.frost .header .header__burger span,
body.mouse.frost .header .header__burger::before,
body.mouse.frost .header .header__burger::after {
  background: #ffffff;
}

body.mouse.frost .header .btn::before,
body.mouse.frost .header .btn::after {
  background: #004e92;
}

body.mouse.frost .header .header-social__link svg {
  fill: #ffffff;
}

body.mouse.frost .header .header__link {
  color: #ffffff;
}

body.mouse.frost .header .header__link--active {
  color: #ffffff;
  background: #004e92;
}

@media (max-width: 950px) {
  body.mouse.frost .header .header__list {
    background: -webkit-gradient(linear, left bottom, left top, from(#004e92), to(#000428));
    background: -o-linear-gradient(bottom, #004e92, #000428);
    background: linear-gradient(to top, #004e92, #000428);
  }
}

body.mouse.frost .pulse {
  background-color: #004e92;
}

body.mouse.frost::-webkit-scrollbar {
  width: 12px;
}

body.mouse.frost::-webkit-scrollbar-track {
  background: #343A40;
}

body.mouse.frost::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left bottom, left top, from(#004e92), to(#000428));
  background: linear-gradient(to top, #004e92, #000428);
  border-radius: 8px;
  border: 2px solid #adadad;
}

body.touch.frost .header {
  background: -webkit-gradient(linear, left bottom, left top, from(#004e92), to(#000428));
  background: -o-linear-gradient(bottom, #004e92, #000428);
  background: linear-gradient(to top, #004e92, #000428);
}

body.touch.frost .header .header__burger span,
body.touch.frost .header .header__burger::before,
body.touch.frost .header .header__burger::after {
  background: #ffffff;
}

body.touch.frost .header .header-social__link svg {
  fill: #ffffff;
}

body.touch.frost .header .btn::before,
body.touch.frost .header .btn::after {
  display: none;
}

body.touch.frost .header .header__link {
  color: #ffffff;
}

body.touch.frost .header .header__link--active {
  color: #ffffff;
  background: #004e92;
}

@media (max-width: 950px) {
  body.touch.frost .header .header__list {
    background: -webkit-gradient(linear, left bottom, left top, from(#004e92), to(#000428));
    background: -o-linear-gradient(bottom, #004e92, #000428);
    background: linear-gradient(to top, #004e92, #000428);
  }
}

body.touch.frost .pulse {
  background-color: #004e92;
}

/* FROST END */


/* ZINC */
body.mouse.zinc .header {
  background: -webkit-gradient(linear, left top, left bottom, from(#ada996), color-stop(#f2f2f2), color-stop(#dbdbdb), to(#eaeaea));
  background: -o-linear-gradient(top, #ada996, #f2f2f2, #dbdbdb, #eaeaea);
  background: linear-gradient(to bottom, #ada996, #f2f2f2, #dbdbdb, #eaeaea);
}

body.mouse.zinc .header .header__burger span,
body.mouse.zinc .header .header__burger::before,
body.mouse.zinc .header .header__burger::after {
  background: #343A40;
}

body.mouse.zinc .header .btn::before,
body.mouse.zinc .header .btn::after {
  background: #343A40;
}

body.mouse.zinc .header .header-social__link svg {
  fill: #343A40;
}

body.mouse.zinc .header .header__link {
  color: #343A40;
}

body.mouse.zinc .header .header__link:hover {
  color: #ffffff;
}

body.mouse.zinc .header .header__link--active {
  color: #ffffff;
  background: #343A40;
}

@media (max-width: 950px) {
  body.mouse.zinc .header .header__list {
    background: -webkit-gradient(linear, left top, left bottom, from(#ada996), color-stop(#f2f2f2), color-stop(#dbdbdb), to(#eaeaea));
    background: -o-linear-gradient(top, #ada996, #f2f2f2, #dbdbdb, #eaeaea);
    background: linear-gradient(to bottom, #ada996, #f2f2f2, #dbdbdb, #eaeaea);
  }
}

body.mouse.zinc .pulse {
  background-color: #eaeaea;
}

body.mouse.zinc::-webkit-scrollbar {
  width: 12px;
}

body.mouse.zinc::-webkit-scrollbar-track {
  background: #343A40;
}

body.mouse.zinc::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left top, left bottom, from(#ada996), color-stop(#f2f2f2), color-stop(#dbdbdb), to(#eaeaea));
  background: linear-gradient(to bottom, #ada996, #f2f2f2, #dbdbdb, #eaeaea);
  border-radius: 8px;
  border: 2px solid #adadad;
}

body.touch.zinc .header {
  background: -webkit-gradient(linear, left top, left bottom, from(#ada996), color-stop(#f2f2f2), color-stop(#dbdbdb), to(#eaeaea));
  background: -o-linear-gradient(top, #ada996, #f2f2f2, #dbdbdb, #eaeaea);
  background: linear-gradient(to bottom, #ada996, #f2f2f2, #dbdbdb, #eaeaea);
}

body.touch.zinc .header .header__burger span,
body.touch.zinc .header .header__burger::before,
body.touch.zinc .header .header__burger::after {
  background: #343A40;
}

body.touch.zinc .header .header-social__link svg {
  fill: #343A40;
}

body.touch.zinc .header .btn::before,
body.touch.zinc .header .btn::after {
  display: none;
}

body.touch.zinc .header .header__link {
  color: #343A40;
}

body.touch.zinc .header .header__link--active {
  color: #ffffff;
  background: #343A40;
}

@media (max-width: 950px) {
  body.touch.zinc .header .header__list {
    background: -webkit-gradient(linear, left top, left bottom, from(#ada996), color-stop(#f2f2f2), color-stop(#dbdbdb), to(#eaeaea));
    background: -o-linear-gradient(top, #ada996, #f2f2f2, #dbdbdb, #eaeaea);
    background: linear-gradient(to bottom, #ada996, #f2f2f2, #dbdbdb, #eaeaea);
  }
}

body.touch.zinc .pulse {
  background-color: #eaeaea;
}

/* ZINC END */

/* HEADER-STYLES END */

/* HEADER END */




/* PRESNTATION CONTENT */

/* INTRO */

.intro {
  min-height: 100vh;
  height: 100%;
  width: 100%;
  position: relative;
  padding-top: 90px;
  z-index: 2;
  color: #ffffff;
}

.intro::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.308);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.intro img,
.intro source {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.intro__inner {
  position: relative;
  z-index: 2;
}

.colors {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  height: 102px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 100%;
  z-index: 2;
  -webkit-transform: translate(-50px, 50%);
  -ms-transform: translate(-50px, 50%);
  transform: translate(-50px, 50%);
  border: 1px solid #000000;
  -webkit-box-shadow: 0px 0px 5px 1px rgba(161, 161, 161, 0.548);
  box-shadow: 0px 0px 5px 1px rgba(161, 161, 161, 0.548);
  border-radius: 10px 0px 0px 10px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
}

@media (max-width: 768px) {
  .colors {
    height: 62px;
  }
}

.colors__coll {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.colors__icon {
  display: inline-block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  width: 50px;
  height: 100%;
  position: relative;
  background: #ffffff;
  cursor: pointer;
  border-right: 1px solid #000000;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.colors__list {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
}

.colors__list:not(:last-child) {
  border-bottom: 2px solid #ffffff;
}

.colors__list li {
  display: inline-block;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  height: 100%;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

@media (max-width: 768px) {
  .colors__list li {
    width: 30px;
    height: 30px;
  }
}

.icon-colors__big,
.icon-colors__small {
  display: inline-block;
  position: absolute;
}

.icon-colors__big svg,
.icon-colors__small svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  fill: #000000;
}

.icon-colors__big {
  width: 30px;
  height: 30px;
  top: 50%;
  left: 8%;
  -webkit-transform: translate(0, -40%);
  -ms-transform: translate(0, -40%);
  transform: translate(0, -40%);
  -webkit-animation: right__roll linear 3s infinite both;
  animation: right__roll linear 3s infinite both;
}

.icon-colors__small {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 46%;
  left: 64%;
  -webkit-animation: left__roll linear 3s infinite both;
  animation: left__roll linear 3s infinite both;
}

.colors-active {
  left: 100%;
  -webkit-transform: translate(-100%, 50%);
  -ms-transform: translate(-100%, 50%);
  transform: translate(-100%, 50%);
}

.colors-active .icon-colors {
  background: #333;
}

.colors-active .icon-colors svg {
  fill: #ffffff;
}

.colors-active .icon-colors__big {
  -webkit-animation: right__roll linear 10s infinite both;
  animation: right__roll linear 10s infinite both;
}

.colors-active .icon-colors__small {
  -webkit-animation: left__roll linear 10s infinite both;
  animation: left__roll linear 10s infinite both;
}


/* DATA_ATTRIBUTES */
[data-color=white] {
  background: -webkit-gradient(linear, left bottom, left top, from(#f3f3f3), to(#d3d3d3));
  background: -o-linear-gradient(bottom, #f3f3f3, #d3d3d3);
  background: linear-gradient(to top, #f3f3f3, #d3d3d3);
}

[data-color=gray-white-red] {
  background: -webkit-gradient(linear, left bottom, left top, from(#f3f3f3), to(#d3d3d3));
  background: -o-linear-gradient(bottom, #f3f3f3, #d3d3d3);
  background: linear-gradient(to top, #f3f3f3, #d3d3d3);
}

[data-color=red-white-red] {
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(252, 11, 11)), to(rgb(180, 1, 1)));
  background: -o-linear-gradient(bottom, rgb(252, 11, 11), rgb(180, 1, 1));
  background: linear-gradient(to top, rgb(252, 11, 11), rgb(180, 1, 1));
}

[data-color=white-green] {
  background-color: #04aa7b;
}

[data-color=green] {
  background: -webkit-gradient(linear, left top, left bottom, from(#38ef7d), to(#11998e));
  background: -o-linear-gradient(top, #38ef7d, #11998e);
  background: linear-gradient(to bottom, #38ef7d, #11998e);
}

[data-color=white-blue] {
  background-color: #4b88d8;
}

[data-color=blue] {
  background: -webkit-gradient(linear, left bottom, left top, from(#016688), to(#00B4DB));
  background: -o-linear-gradient(bottom, #016688, #00B4DB);
  background: linear-gradient(to top, #016688, #00B4DB);
}

[data-color=white-gray] {
  background: -webkit-gradient(linear, left top, left bottom, from(#e9e9e9), to(#bbb));
  background: -o-linear-gradient(top, #e9e9e9, #bbb);
  background: linear-gradient(to bottom, #e9e9e9, #bbb);
}

[data-color=dark-gray] {
  background: -webkit-gradient(linear, left top, left bottom, from(#56595c), to(#2d2f30));
  background: -o-linear-gradient(top, #56595c, #2d2f30);
  background: linear-gradient(to bottom, #56595c, #2d2f30);
}

[data-color=full-black] {
  background-color: #333;
}

[data-color=yellow_blue-white] {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #ffe601), color-stop(92.74%, #00B4DB));
  background: -o-linear-gradient(bottom, #ffe601 3.82%, #00B4DB 92.74%);
  background: linear-gradient(0deg, #ffe601 3.82%, #00B4DB 92.74%);
}

[data-color=green_blue-white] {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #38ef7d), color-stop(92.74%, #00B4DB));
  background: -o-linear-gradient(bottom, #38ef7d 3.82%, #00B4DB 92.74%);
  background: linear-gradient(0deg, #38ef7d 3.82%, #00B4DB 92.74%);
}

[data-color=yellow-white] {
  background: #ffa501;
}

[data-color=yellow-black] {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #343A40), color-stop(92.74%, #ffe601));
  background: -o-linear-gradient(bottom, #343A40 3.82%, #ffe601 92.74%);
  background: linear-gradient(0deg, #343A40 3.82%, #ffe601 92.74%);
}

[data-color=green-black] {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #38ef7d), color-stop(92.74%, #343A40));
  background: -o-linear-gradient(bottom, #38ef7d 3.82%, #343A40 92.74%);
  background: linear-gradient(0deg, #38ef7d 3.82%, #343A40 92.74%);
}

[data-color=evening-sunshine] {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(3.82%, #1565C0), color-stop(92.74%, #b92b27));
  background: -o-linear-gradient(bottom, #1565C0 3.82%, #b92b27 92.74%);
  background: linear-gradient(0deg, #1565C0 3.82%, #b92b27 92.74%);
}

[data-color=argon] {
  background: -webkit-gradient(linear, left top, left bottom, from(#fdeff9), color-stop(#ec38bc), color-stop(#7303c0), to(#03001e));
  background: -o-linear-gradient(top, #fdeff9, #ec38bc, #7303c0, #03001e);
  background: linear-gradient(to bottom, #fdeff9, #ec38bc, #7303c0, #03001e);
}

[data-color=flickr] {
  background: -webkit-gradient(linear, left bottom, left top, from(#ff0084), to(#33001b));
  background: -o-linear-gradient(bottom, #ff0084, #33001b);
  background: linear-gradient(0deg, #ff0084, #33001b);
}

[data-color=frost] {
  background: -webkit-gradient(linear, left bottom, left top, from(#004e92), to(#000428));
  background: -o-linear-gradient(bottom, #004e92, #000428);
  background: linear-gradient(to top, #004e92, #000428);
}

[data-color=zinc] {
  background: -webkit-gradient(linear, left bottom, left top, from(#274046), to(#E6DADA));
  background: -o-linear-gradient(bottom, #274046, #E6DADA);
  background: linear-gradient(to top, #274046, #E6DADA);
}

/* DATA_ATTRIBUTES END */

/* INTRO END  */


/* FOOTER */
.footer {
  min-height: 300px;
  text-align: center;
  background-color: yellowgreen;
}

/* FOOTER END */

/* PRESENTATION CONTENT END */