html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #d8e0e9;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #0E0E0E;
}

body {
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 0.9rem;
  }
}

h1, h2 {
  width: 100%;
  margin: 0 auto 80px;
  padding: 0;
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
}

.Wrapper {
  margin: 0 auto;
  padding: 0 5px;
  width: 1170px;
  max-width: 100%;
  overflow: hidden;
}

.Wrapper_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  align-content: center;
}

.Wrapper_flex_center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.Wrapper h3 {
  margin: 30px auto;
  width: 80%;
  font-weight: 500;
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  .Wrapper h3 {
    width: 100%;
  }
}

.Wrapper h3:first-of-type {
  margin-top: 0;
}

.Wrapper pre {
  display: block;
  width: 80%;
  margin: 10px auto;
  padding: 20px 10px 0px;
  background-color: #f5d796;
  overflow: hidden;
}

@media screen and (max-width: 550px) {
  .Wrapper pre {
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  .Wrapper pre {
    font-size: 0.8rem;
  }
}

.Wrapper .Descr {
  width: 80%;
}

@media screen and (max-width: 768px) {
  .Wrapper .Descr {
    width: 100%;
  }
}

.Wrapper .Descr code {
  display: block;
  margin: 10px auto;
  padding: 20px 10px;
  background-color: #f5d796;
}

@media screen and (max-width: 425px) {
  .Wrapper .Descr code {
    font-size: 0.8rem;
  }
}

.Wrapper .Descr span {
  font-weight: 600;
  color: #f5d796;
  text-shadow: 1px 1px 4px #0E0E0E;
}

.Wrapper .Options {
  width: 80%;
  border-collapse: collapse;
}

@media screen and (max-width: 768px) {
  .Wrapper .Options {
    width: 100%;
  }
}

@media screen and (max-width: 432px) {
  .Wrapper .Options {
    font-size: 0.7rem;
  }
}

@media screen and (max-width: 350px) {
  .Wrapper .Options {
    font-size: 0.55rem;
  }
}

.Wrapper .Options thead {
  background-color: #f5d796;
}

.Wrapper .Options th, .Wrapper .Options td {
  width: 100px;
  border: 1px solid #0E0E0E;
  padding: 5px;
  text-align: center;
  vertical-align: middle;
}

.Wrapper .Options th:nth-of-type(2n + 1), .Wrapper .Options td:nth-of-type(2n + 1) {
  background-color: #f5d79666;
}

.Wrapper .Options th:last-of-type, .Wrapper .Options td:last-of-type {
  width: 40%;
}

/******************************** PRELOAD ********************************/
#preload {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  background-color: #0E0E0E;
  transition: all 0.5s;
  z-index: 999999;
}

#preload svg {
  position: absolute;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
}

/******************************** HEADER ********************************/
.Header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 10px 0;
  width: 100%;
  text-align: center;
  background-color: #f5d796;
  z-index: 14;
}

@media screen and (max-width: 650px) {
  .Header {
    height: 45px;
  }
}

.OpenNav {
  position: absolute;
  top: 10px;
  left: 15px;
  display: none;
  width: 30px;
  height: 24px;
  background-clip: content-box;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  background-color: #0E0E0E;
  transition: all 0.5s;
  z-index: 111;
}

.OpenNav::after, .OpenNav::before {
  position: absolute;
  left: 0;
  display: block;
  width: 30px;
  height: 2px;
  content: "";
  background-color: #0E0E0E;
  transition: all 0.5s;
}

.OpenNav::before {
  top: -10px;
}

.OpenNav::after {
  top: 10px;
}

@media screen and (max-width: 650px) {
  .OpenNav {
    display: block;
  }
}

.OpenNav_open {
  background-color: transparent;
}

.OpenNav_open::before {
  top: 0;
  transform: rotate(45deg);
}

.OpenNav_open::after {
  top: 0;
  transform: rotate(-45deg);
}

.Navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding: 0 10px;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 650px) {
  .Navbar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    flex-wrap: wrap;
    background-color: #f5d796;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.5s;
    z-index: 100;
  }
}

.Navbar_open {
  opacity: 1;
  transform: translateY(0);
}

.Navbar a {
  display: block;
  padding: 5px 5px;
  text-decoration: none;
  color: #0E0E0E;
}

.Navbar-List {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0;
}

@media screen and (max-width: 650px) {
  .Navbar-List {
    flex-wrap: wrap;
    width: 100%;
    margin: 30px auto;
  }
}

.Navbar-Link {
  display: inline-block;
  padding: 0 5px;
  font-size: 1rem;
}

@media screen and (max-width: 650px) {
  .Navbar-Link {
    width: 100%;
    margin: 5px auto;
  }
}

.Navbar-Link a {
  color: #fcfaf9;
  text-shadow: 1px 1px 1px #0E0E0E80;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.25s;
}

@media screen and (max-width: 650px) {
  .Navbar-Link a {
    padding: 10px;
    font-size: 1.2rem;
  }
}

.Navbar-Link a:hover {
  color: #0E0E0E80;
  text-shadow: 1px 1px 1px #fcfaf9;
  border-color: #0E0E0E80;
}

@media screen and (max-width: 650px) {
  .Navbar-Link a:hover {
    border-color: transparent;
  }
}

@media screen and (max-width: 650px) {
  .Navbar-Social {
    width: 100%;
    margin: 30px auto;
  }
}

.Navbar-Social a {
  width: 35px;
  height: 35px;
  border: 1px solid transparent;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  padding: 5px;
  transition: all 0.2s;
}

@media screen and (max-width: 650px) {
  .Navbar-Social a {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }
}

.Navbar-Social a:hover {
  background-color: #0E0E0E80;
}

.Navbar-Social a:hover svg {
  fill: #fcfaf9;
}

/******************************** QUICK START ********************************/
.QuickStart {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 135px 0 0;
  height: auto;
}

.QuickStart h1 {
  margin: 0 auto 50px;
  padding: 0;
  font-size: 3.1rem;
  line-height: 55px;
  font-weight: 450;
  text-align: center;
  color: #f5d796;
  text-shadow: 1px 1px 4px #0E0E0E80;
}

.QuickStart h1 span {
  display: block;
  font-size: 0.5em;
}

.QuickStart-About {
  margin: 50px auto 0;
  width: 590px;
  max-width: 100%;
  overflow: auto;
}

@media screen and (max-width: 560px) {
  .QuickStart-About {
    width: 420px;
    font-size: 0.7rem;
  }
}

@media screen and (max-width: 425px) {
  .QuickStart-About {
    width: 360px;
  }
}

.QuickStart-About pre {
  width: 100%;
  background: none;
}

@media screen and (max-width: 425px) {
  .QuickStart-About pre {
    padding: 20px 0 0;
    font-size: 0.6rem;
  }
}

@media screen and (max-width: 360px) {
  .QuickStart-About pre {
    font-size: 0.53rem;
  }
}

/******************************** FEATURES ********************************/
.Features {
  padding: 80px 0 0;
}

.Features .Feature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px;
  width: 400px;
  max-width: 100%;
  vertical-align: middle;
}

.Features .Feature-Img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #0E0E0E;
  background-color: #f5d796;
}

@media screen and (max-width: 425px) {
  .Features .Feature-Img {
    margin-right: 15px;
    width: 90px;
    height: 90px;
  }
}

.Features .Feature-Img img {
  width: 65px;
  height: 65px;
}

@media screen and (max-width: 425px) {
  .Features .Feature-Img img {
    width: 50px;
    height: 50px;
  }
}

.Features .Feature-Text {
  width: 280px;
}

@media screen and (max-width: 425px) {
  .Features .Feature-Text {
    width: 200px;
    flex-grow: 1;
  }
}

.Features .Feature-Name {
  margin: 5px 0 8px;
  font-weight: 400;
  font-size: 1.4rem;
}

.Features .Feature-Descr {
  margin: 5px 0;
  line-height: 1.3rem;
  font-size: 0.9rem;
}

@media screen and (max-width: 425px) {
  .Features .Feature {
    max-width: 100%;
  }
}

/******************************** LGALLERY ********************************/
.Lgallery {
  padding: 80px 0 0;
  z-index: 1001
}

.TemplateLgallery {
  position: relative;
  width: 300px;
  height: auto;
  margin: 0 20px 30px;
}

.TemplateLgallery-Item {
  width: 100%;
  height: 200px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  overflow-y: hidden;
  cursor: pointer;
}

.TemplateLgallery-Item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 1024px) {
  .TemplateLgallery {
    transition: all 0.5s;
  }
  .TemplateLgallery:hover {
    transform: scale(0.8) rotate3d(-1, 1, 0, -20deg);
    box-shadow: -10px -10px 2px 0.3px rgba(0, 0, 0, 0.6), -20px -20px 3px 0.3px rgba(0, 0, 0, 0.3), -30px -30px 4px 0.3px rgba(0, 0, 0, 0.1);
  }
}

/******************************** LGPARENT ********************************/
.Lgparent {
  padding: 80px 0 0;
}

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

.TemplateParent-Item {
  display: block;
  position: relative;
  z-index: 12;
  width: 100%;
  height: 240px;
}

.TemplateParent-Item img:not(.LGallerySlider-Slide) {
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all 0.5s;
}

.TemplateParent-Item span {
  position: relative;
//  bottom: 0;
//  left: 0;
//  padding: 1px 0;
  display: block;
  width: 20%;
  height: 20%;
//  line-height: 20px;
  text-align: center;
//  color: #fcfaf9;
//  background-color: #0E0E0E80;
  transition: all 0.5s;
  z-index: -1;
}

@media screen and (min-width: 1024px) {
  .TemplateParent-Item:hover img:not(.LGallerySlider-Slide) {
    opacity: 0.4;
    transform: scale(1.2);
  }

  .TemplateParent-Item:hover span {
    height: 30px;
    line-height: 30px;
    opacity: 1;
    z-index: 1000;
  }
}

@media screen and (max-width: 1024px) {
  .TemplateParent-Item:hover img:not(.LGallerySlider-Slide) {
    opacity: 0.4;
    transform: scale(1.2);
  }

  .TemplateParent-Item:hover span {
    height: 30px;
    line-height: 30px;
    opacity: 1;
    z-index: 1000;
  }
}


/******************************** LGSLIDER ********************************/
.Lgslider {
  padding: 80px 0 0;
}

.TemplateSlider {
  margin: 0 auto;
  margin: 0 auto;
  width: 1020px;
  max-width: 100%;
  height: 550px;
  max-height: 70%;
}

/******************************** LGPREVIEW ********************************/
.Lgpreview {
  padding: 80px 0 0;
}

.TemplatePreview {
  width: 1020px;
  max-width: 100%;
  height: 550px;
  margin: 0 auto;
}

/******************************** LGCARUSEL ********************************/
.Lgcarusel {
  padding: 80px 0 0;
}

.TemplateCarusel {
  width: 100%;
  max-width: 100%;
  height: 400px;
  max-height: 100%;
  text-align: center;
  overflow: hidden;
}

.TemplateCarusel .LGCarusel-Slide picture img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/******************************** LGCARUSEL - RANDOM HTML ********************************/
.CardOfGoofs {
  padding: 10px 50px;
  width: 980px;
  max-width: 100%;
  height: 320px;
}

.CardOfGoofs .LGCarusel {
  overflow: visible !important;
}

.CardOfGoofs .LGCarusel-Slider {
  overflow: visible !important;
}

.CardOfGoofs .LGCarusel svg {
  fill: #000 !important;
}

.CardOfGoofs .LGCarusel .LGCarusel-Button_next {
  right: -45px !important;
}

.CardOfGoofs .LGCarusel .LGCarusel-Button_prev {
  left: -45px !important;
}

.CardOfGoofs .newGood {
  position: relative;
  padding: 0 10px;
  width: 250px;
  height: 300px;
  border-radius: 10px;
  color: #211b29;
  background-color: #f5d79680;
  box-shadow: 1px 1px 4px #000;
}

.CardOfGoofs .newGood img {
  margin: 20px auto;
  width: 60%;
  border-radius: 10px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.CardOfGoofs .newGood h3 {
  margin: 10px auto;
}

.CardOfGoofs .newGood button {
  position: absolute;
  bottom: 20px;
  left: calc(50% - 100px / 2);
  padding: 5px 0px;
  border: 1px solid #000;
  border-radius: 10px;
  width: 100px;
  font-weight: bold;
  color: #fff;
  background-color: #83192d;
  cursor: pointer;
}

.CardOfGoofs .newGood button:hover {
  background-color: #451930;
}

/******************************** METHODS & THANKS ********************************/
.Methods, .Thanks {
  padding: 80px 0 0;
}

.Thanks {
  margin-top: 80px;
  padding-bottom: 0;
  padding: 40px 0;
  background-color: #f5d79680;
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
