/* Basic */
body {
  color: #888;
  font: 1.5vw/2.4vw 'Cabin', sans-serif;
  background: #fff;
  margin: 0; padding: 0;

  -webkit-font-smoothing: subpixel-antialiased !important;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: #423FFF;
  font-family: 'Vollkorn', serif;
}
h1 {
  font-size: 4em;
  line-height: 1.2em;
  margin: 0;
}
h2 {
  font-size: 2.667em;
  line-height: 1.2em;
  margin-top: 0;
}

sup {
  color: #888;
  font: normal 0.4em/0 'Cabin', Arial, sans-serif;
}

.fontDecorative {font-family: 'Vollkorn', serif;}
.fontRegular {font-family: 'Cabin', sans-serif;}

.reset {
  list-style: none;
  margin: 0; padding: 0;
}

.textCrop {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.marginBottom {margin-bottom: 3em;}

.sharing {margin-bottom: 2em;}

.base {
  width: 80%;
  margin: auto; padding: 7em 0;
  box-sizing: border-box;
}

.form input,
.form textarea {width: 100%;}

.bgBlack {background: #000;}
.bgWhite {background: #fff;}
.bgGray {background: #F2F2F2;}
.bgGray ul.cards li {background: #FFF!important;}

.error {color: #FF3F3F;}
.success {color: #00A67A;}

.hidden {display: none!important;}
.opacity {opacity: 0; pointer-events: none;}

  /* UI Form Elements */
  input[type="text"],
  input[type="search"],
  textarea,
  button[type="submit"] {
    font: 1em 'Cabin', sans-serif;
    height: 3.111em;
    margin: 0; padding: 0.833em;
    border: solid #000;
    border-width: 0 0 2px 0;
    border-radius: 0;
    box-sizing: border-box;
    vertical-align: top;
    transition: all 0.2s;
  }

  input[type="text"][invalid],
  input[type="search"][invalid],
  textarea[invalid] {
    color: #FF3F3F;
    border-color: #FF3F3F;
  }
  input[type="text"][invalid] + label,
  input[type="search"][invalid] + label,
  textarea[invalid] + label {color: #FF3F3F;}

  input[type="text"]:hover,
  input[type="text"]:focus,
  input[type="search"]:hover,
  input[type="search"]:focus,
  textarea:hover,
  textarea:focus {
    color: #423FFF;
    background: #FFF;
    border-color: #423FFF;
    outline: none;
  }

  input[type="text"]:hover + label,
  input[type="text"]:focus + label,
  input[type="search"]:hover + label,
  input[type="search"]:focus + label,
  textarea:hover + label,
  textarea:focus + label {color: #423FFF;}

  textarea {resize: vertical;}
  textarea.multiline {height: 10.25em;}

  button {
    font: 1em 'Cabin', sans-serif;
    background: transparent;
    margin: 0; padding: 0;
    border: 0;
    outline: none;
  }
  button[type="submit"] {
    color: #fff;
    font-weight: 400;
    background: #000;
    padding: 0.833em 1.389em;
  }
  button[type="submit"]:hover {
    background: #423FFF;
    border-color: #423FFF;
    cursor: pointer;
  }
  button[type="submit"]:active {
    background: #0C2EAB;
    border-color: #0C2EAB;
    cursor: pointer;
  }

    /* More Button */
    .more {
      font-weight: bold;
      background: rgba(0,0,0,.05);
      width: 100%;
      padding: 1.5em;
      box-sizing: border-box;
      cursor: pointer;
      transition: all 0.2s;
    }
    .more:hover {
      color: #fff;
      background: #423FFF;
    }
    .more:active {
      color: #fff;
      background: #0C2EAB;
    }
    /*-- ENd of More Button --*/

    /* Form */
    .form {color: #000;}
    .form .formItem {
      display: flex; display: -webkit-flex;
      flex-direction: column; -webkit-flex-direction: column;

      margin-bottom: 2.222em;
    }
    .form .formItem label {
      display: block;
      order: 0; -webkit-order: 0;
    }
    .form .formItem * {order: 1; -webkit-order: 1;}

    .form label {
      display: block;
      font-weight: 700;
      margin-bottom: 0.556em;
      user-select: none;
    }

    .formNote {
      display: inline-block;
      padding: 0.833em;
      vertical-align: top;
    }
    .formComplex .formCol2 .formItem {width: calc(50% - 1em);}
    .formComplex .formCol3 .formItem {width: calc(33.33% - 1.33em);}
    .formItem.captchaBox {position: relative;}
    .formItem.captchaBox .captchaImg {
      position: absolute;
      bottom: .35em; left: .2em;
    }
    .formItem.captchaBox .captchaImg img {border-right: 2px solid #f2f2f2;}
    .formItem.captchaBox input {
      width: 33%;
      padding-left: 5.7em;
    }
    /*-- End of Form --*/
  /*-- End of UI Form Elements --*/

  /* Rate */
  .rate a,
  .rate > span {
    display: block;
    color: #ff3f3f!important;
    padding: 0.5em .7em;
    border: 2px solid #000;
  }
  .rate .count {color: #000;}
  .rate .heart {color: #ff3f3f;}
  .rate a:hover {border-color: #423FFF;}
  .rate a:hover .count {color: #423FFF;}
  .rate a:active {border-color: #0C2EAB;}
  .rate a:active .count {color: #0C2EAB;}
  .rate.true a,
  .rate.true > span {
    border-color: rgba(0,0,0,0.1);
    cursor: default;
  }
  .rate.true a .count,
  .rate.true > span .count {color: #888;}
  /*-- End of Rate --*/

  /* Links */
  a:link {
    color: #000;
    text-decoration: none;
    transition: all 0.2s;
  }
  a:visited {color: #444;}
  a:hover,
  .current > a,
  a.current {color: #423FFF!important;}
  a:active {color: #0C2EAB!important;}

  .noVisited a:visited,
  a:visited.noVisited {color: #000;}

  .invert a,
  a.invert,
  .invert.noVisited a:visited,
  a:visited.invert.noVisited {color: #fff;}

  .invert a:hover,
  a.invert:hover {color: #4575ff!important;}

  .invert .icon:hover {color: #4575ff!important;}

  .invert input:focus,
  .invert input:hover {
    color: #4575ff!important;
    border-color: #4575ff!important;
  }
  
  .invert .subscribe button:hover {color: #4575ff;}

  .invert .current > a,
  .invert a.current {color: #4575ff!important;}
  .invert a:active {color: #0C2EAB!important;}
  /*-- End of Links --*/

  /* Icons */
  .icon {
    color: #000;
    cursor: pointer;
  }
  .icon:focus,
  .icon:hover,
  .icon.current {color: #423FFF!important;}

  .icon:active {color: #0C2EAB!important;}

    /* Icon Close */
    .iconClose {
      position: relative;
      display: block;
      width: 1.333em; height: 1.333em;
      transition: all 0.2s;
    }
    .iconClose:before {
      content: '';
      display: block;
      position: absolute;
      top: calc(50% - 1px); left: 0;
      width: 100%;
      border-bottom: 2px solid;
      transform: rotate(45deg); -webkit-transform: rotate(45deg);
    }
    .iconClose::after {
      content: '';
      display: block;
      position: absolute;
      top: calc(50% - 1px); left: 0;
      width: 100%;
      border-bottom: 2px solid;
      transform: rotate(135deg); -webkit-transform: rotate(135deg);
    }
    /*-- End of Icon Close --*/

    /* Icon Burger */
    .iconBurger {
      position: relative;
      display: block;
      width: 1.333em; height: 1.333em;
      border: solid;
      border-width: 2px 0;
      box-sizing: border-box;
      transition: all 0.2s;
    }
    .iconBurger:before {
      content: '';
      display: block;
      position: absolute;
      top: calc(50% - 1px); left: 0;
      width: 100%;
      border-bottom: 2px solid;
    }
    /*-- End of Icon Burger --*/

    /* Icon Search */
    .iconSearch {
      position: relative;
      display: block;
      width: 1.333em; height: 1.333em;
      box-sizing: border-box;
      transition: all 0.2s;
    }
    .iconSearch::after {
      content: '';
      display: block;
      position: absolute;
      top: 0; left: 0;
      width: 80%; height: 80%;
      border: 2px solid;
      border-radius: 100%;
      box-sizing: border-box;
    }

    .iconSearch:before {
      content: '';
      display: block;
      position: absolute;
      bottom: 15.8%; right: calc(-6.5% + 1px);
      width: 44.853%;
      border-bottom: 2px solid;
      transform: rotate(45deg); -webkit-transform: rotate(45deg);   
    }
    /*-- End of Icon Search --*/

    /* Icon Dots */
    .iconDots {
      position: relative;
      width: 24px; height: 100%;
      padding: 0.5em 0;
      box-sizing: border-box;
    }
    .iconDots:before {
      content: '\22EF';
      position: absolute;
      top: 10px; right: 0;
      display: block;
      font-size: 30px;
      width: 24px;
    }
    /*-- End of Icon Dots --*/

    /* Icon Arrow */
    .iconArrow {
      position: absolute;
      top: 0;
      width: 50%; height: 100%;
      box-sizing: border-box;
      transition: all 0.2s;
    }
    .iconArrow:before {
      content: '';
      position: absolute;
      top: calc(50% - 0.5em);
      width: 1em; height: 1em;
      border: solid;
      border-width: 2px 2px 0 0;
    }
    /*-- End of Icon Arrow --*/
  /*-- End of Icons --*/

  /* Socials */
  .socials a {
    display: inline-block;
    width: 1.2em; height: 1.2em;
    margin-right: 0.7em;
    box-shadow: 0 0 0 1px #000 inset;
    }
  .socials a img {
    display: block;
    width: 100%; height: 100%;
  }
  .socials a {background: #fff;}
  .socials a:hover {background: #423FFF;}
  .socials a:active {background: #0C2EAB;}
  /*-- End of Socials --*/

  /* Subscribe */
  .subscribe {position: relative;}
  .subscribe input {
    width: 100%;
    color: #fff;
    font-size: 1em;
    background: transparent!important;
    padding: 0 5em 0.2em 0;
    border: solid #fff;
    border-width: 0 0 2px 0;

    transition: none;
  }
  .subscribe button {
    position: absolute;
    top: 0.833em; right: 0;
    color: #fff;
    font-size: 1em;
    background: transparent;
    height: auto;
    padding: 0 0 0.2em 0;
    border: none;
    cursor: pointer;
  }
  .subscribe input:hover {transition: all 0.2s!important;}
  .subscribe input:hover,
  .subscribe input:focus {
    color: #423FFF;
    border-color: #423FFF;
    outline: 0;
  }
  .subscribe button:hover {
    color: #423FFF;
    background: transparent!important;
  }
  .subscribe button:active {color: #0C2EAB!important;}
    .subscribe input:-webkit-autofill {
    -webkit-text-fill-color: #fff!important;
    -webkit-box-shadow: inset 0 0 0 50px #000 !important;
  }
  .subscribe input:-webkit-autofill:focus {-webkit-text-fill-color: #4575ff!important;}
  .subscribe input::-ms-clear {display: none;}
  .subscribe .formNote {padding-left: 0;}
  /*-- End of Subscribe --*/

  /* Flex */
  .flex {display: flex; display: -webkit-flex;}
  .flexDirCol {flex-direction: column; -webkit-flex-direction: column;}
  .flexWrap {flex-wrap: wrap; -webkit-flex-wrap: wrap;}
  .flexBetween {justify-content: space-between; -webkit-justify-content: space-between;}
  .flexJC {justify-content: center; -webkit-justify-content: center;}
  .flexVAlignCenter {align-items: center; -webkit-align-items: center;}
  /*-- End of Flex --*/

  /* Aligns */
  .aLeft {text-align: left;}
  .aRight {text-align: right;}
  /*-- End of Aligns --*/

  /* Subcategories */
  .subcategories sup {
    position: absolute;
    top: 1em;
    font-size: .75em;
    margin-left: .1em;
  }
  .subcategories ul.headings {
    width: calc(100% - 1em - 24px);
    padding-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
  }
  .subcategories ul.headings li {
    position: relative;
    display: inline-block;
    margin-right: 2em;
  }
  .subcategories ul.headings li a {
    display: inline-block;
    padding: 0.5em 0;
  }
  .subcategories ul.headings li:first-child sup {display: none;}
  .subcategories ul.headings li.current a {color: #423FFF;}
  .subcategories ul.headings li.current:before {
    content: '';
    position: absolute;
    right: 0; bottom: -.5em; left: 0;
    border-bottom: 10px solid #423FFF;
  }
  .cropContent {
    position: relative;
    margin-left: 1em; padding-bottom: 10px;
  }
    /* Context Menu */
    .contextMenu {
      display: none;
      position: absolute; z-index: 110;
      line-height: 1.8;
      top: 100%; right: 0;
      max-height: 200px;
      padding: 0.5em 0;
      border: 2px solid #000;
      overflow: auto;
    }
    .contextMenu li {
      position: relative;
      white-space: nowrap;
    }
    .contextMenu li a {
      display: block;
      padding: 0 2em 0 1em;
    }
    .contextCheckbox {display: none;}
    .contextCheckbox:checked + .contextMenu {display: block;}
    .contextCheckbox:checked + .contextMenu + .fade {
      position: fixed; z-index: 100;
      top: 0; right: 0; bottom: 0; left: 0;
    }
    /*-- End of Context Menu --*/
  /*-- End of Subcategories --*/

  /* Breadcrumbs */
  .breadcrumbs {margin-bottom: 1em;}
  /*-- End of Breadcrumbs --*/

  /* Tags */
  .itemTags ul.tagit:hover,
  .itemTags ul.tagit-active {border-color: #423FFF!important;}
  .itemTags ul.tagit:hover + label,
  .itemTags ul.tagit-active + label {color: #423FFF!important;}

  .itemTags ul.tagit {
    display: flex; display: -webkit-flex;
    flex-wrap: wrap; -webkit-flex-wrap: wrap;

    color: #000;
    font: 1em 'Cabin', sans-serif;
    background: #FFF;
    width: 100%; min-height: 3.111em;
    margin: 0; padding: calc(0.833em - 6px) 0.833em 0.833em 0.833em;
    border: solid #000;
    border-width: 0 0 2px 0;
    box-sizing: border-box;
    vertical-align: top;
    list-style: none;
    cursor: text;
    transition: all 0.2s;
  }
  .itemTags ul.tagit li {
    display: flex; display: -webkit-flex;

    position: relative;
    margin: 6px 3px 1px; padding-right: 1em;
  }
  .itemTags ul.tagit li.tagit-choice {
    display: flex; display: -webkit-flex;
    align-items: center; -webkit-align-items: center;
  }
  .itemTags ul.tagit li.tagit-choice:hover {
    color: #FF3F3F;
    text-decoration: line-through;
  }
  .itemTags ul.tagit li .tagit-close {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    cursor: pointer;
  }

  .itemTags ul.tagit li .text-icon,
  .itemTags input.tagit-hidden-field {display: none;}
  .itemTags ul.tagit li .ui-icon {
    display: flex; display: -webkit-flex;
    align-items: center; -webkit-align-items: center;
    justify-content: center; -webkit-justify-content: center;

    position: relative;
    display: block;
    width: 1em; height: 1em;
    cursor: pointer;
  }

  .itemTags ul.tagit .tagit-new input[type="text"] {
    font: 1em 'Cabin', sans-serif;
    height: auto;
    margin: 0; padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    outline: none;
  }
  /*-- End of Tags --*/

  /* Autocomplete */
  .ui-helper-hidden-accessible {display: none!important;}
  .ui-autocomplete  {
    position: absolute; z-index: 101;
    top: 0; left: 0;
    list-style: none;
    background: #FFF;
    max-height: 300px;
    margin: 0; padding: 0;
    border: 2px solid #000!important;
    box-sizing: border-box!important;
    overflow-y: auto!important;
    overflow-x: initial!important;
    white-space: nowrap;
    cursor: default;
  }
  .ui-autocomplete li {
    display: block!important;
    color: #423FFF;
    font: 1em 'Cabin', sans-serif!important;
  }
  .ui-autocomplete::-webkit-scrollbar-thumb {
    background-clip: content-box;
    min-height: 20px;
    border-radius: 1rem;
    border: 3px solid transparent;
    box-shadow: inset 0 0 0 4px rgba(0,0,0,.2);
  }
  .ui-autocomplete li.ui-state-focus {
    color: #423FFF!important;
    background: inherit!important;
    margin: 0; padding: 0;
    border: 0!important;
  }
  .ui-autocomplete .ui-menu-item-wrapper {padding: 0.5rem .8rem!important;}
  .ui-autocomplete .ui-state-active {
    color: #fff;
    background: #423FFF;
  }
  .ui-autocomplete li:nth-child(2n) {background-color: #f2f2f2!important;}
  /*-- End of Autocomplete --*/

  /* Scrollbars */
  .scrollbars *::-webkit-scrollbar {background: transparent!important;}
  .scrollbars *::-webkit-scrollbar-corner {background: 0 0;}
  .scrollbars *::-webkit-scrollbar {width: 13px; height: 13px;}
  .scrollbars *::-webkit-scrollbar-thumb {
    min-height: 20px;
    background-clip: content-box;
    border-radius: 1rem;
    border: 3px solid transparent;
    box-shadow: inset 0 0 0 4px rgba(128,128,128,.5);
  }
  .scrollbars *::-webkit-scrollbar-thumb:active {box-shadow: inset 0 0 0 4px #423FFF;}
  /*-- End of Scrollbars --*/
/*-- End of Basic --*/

/* Header */
header.headerLayout {background: #F2F2F2;}
header.headerLayout .base {padding: 7em 0 0 0;}
header.headerLayout .base .logo {
  width: 40%; max-width: 13.5em;
  margin: 0;
}
header.headerLayout .base .logo img {width: 100%;}
header.headerLayout nav .iconSearch {margin-right: 1.333em;}
header.headerLayout .slogan {
  white-space: nowrap;
  font-size: 0.895em;
}
header.headerLayout .base .substring {display: none;}

header.headerLayout.mainPage .base {display: block;}
header.headerLayout.mainPage .base .slogan {display: none;}
header.headerLayout.mainPage .base .substring {
  display: block;
  width: 34.5%;
}
header.headerLayout.mainPage .base .substring a {display: block;}
header.headerLayout.mainPage .base .logo {
  width: 100%; max-width: 100%;
  margin-bottom: 2em;
}

  /* Floating Header */
  header.headerLayout.headerFloating {
    position: fixed; z-index: 100;
    top: 0; right: 0; left: 0;
    border-bottom: 2px solid #000;
    background: rgba(242, 242, 242,.9);

    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  }
  header.headerLayout.headerFloating .base {padding: 1em 0;}
  header.headerLayout.headerFloating .slogan {display: none;}

  header.headerLayout.headerFloating {padding: 0;}
  header.headerLayout.headerFloating .base {
    display: flex; display: -webkit-flex;
    justify-content: space-between; -webkit-justify-content: space-between;
    align-content: center; -webkit-align-content: center;
  }
  header.headerLayout.headerFloating .base .substring {display: none;}
  header.headerLayout.headerFloating .base .logo {
    width: 40%; max-width: 13.5em;
    margin: 0;
  }
  /*-- End of the Floating Header --*/
/*-- End of Header --*/

/* Menu */
.sideNav {
  display: flex; display: -webkit-flex;

  position: fixed; z-index: 1000;
  top: 0; left: 100%; bottom: 0;
  color: #888;
  font-size: 1.2em;
  line-height: 1.6em;
  min-width: 25%; max-width: 100%;
  box-sizing: border-box;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.sideNav .sideNavContent {
  width: 100%;
  padding: 2em;
  overflow: auto;
}
.sideNav a {
  display: inline-block;
  margin-bottom: 0.5em;
}
.sideNav .group,
.sideNav span {
  display: inline-block;
  margin-bottom: 2em;
}
.sideNav .iconClose {
  position: absolute;
  top: 1em; right: 5%;
  color: #fff;
}

.menu {display: none;}
.menu:checked + .sideNav {transform: translateX(-100%); -webkit-transform: translateX(-100%);}
.menu:checked + .sideNav + .fade {
  position: fixed; z-index: 100;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(40,40,40,.8);
  transition: all 0.2s;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
/*-- End of Menu --*/

/* Categories */
.categories .base {
  display: flex; display: -webkit-flex;
  flex-wrap: wrap; -webkit-flex-wrap: wrap;
  justify-content: space-between; -webkit-justify-content: space-between;

  padding: 2em 0 7em;
}

  /* Title */
  .categories .title {
    display: flex; display: -webkit-flex;

    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    padding: 10%;
    transition: all 0.2s;
  }
  .categories .title h2 {
    color: #000;
    margin: 0;
    transition: all 0.2s;
  }
  .categories .title sup {
    display: inline-block;
    line-height: 0;
    width: 0;
  }
  .categories .title:hover {box-shadow: 0 0 0 0.722em #423FFF inset;}
  .categories .title:hover h2 {color: #423FFF;}
  /*-- End of Title --*/

  /* Section */
  .categories .box {
    position: relative;
    width: calc(50% - 0.5em);
    margin-top: 1em;
    background: #fff;
  }
  .categories .box:before {
    content: '';
    display: block;
    padding-top: 100%;
  }
  .categories .box:nth-child(1),
  .categories .box:nth-child(2) {margin: 0;}
  /*-- End of Section --*/

  /* Images */
  .categories .images {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    overflow: hidden;
  }
  .categories .images li {
    position: absolute;
    width: 50%;
    transition: all 0.2s;
  }
  .categories .images li:hover {width: 60%;}
  .categories .images li:before {
    content: '';
    display: block;
    padding-top: 100%;
  }
  .categories .images .cell {
    display: flex; display: -webkit-flex;
    justify-content: center; -webkit-justify-content: center;
    align-items: center; -webkit-align-items: center;

    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
  }
  .categories .images li img {max-width: 100%; max-height: 100%;}

    /* Line */
    .categories .line .title {
      justify-content: center; -webkit-justify-content: center;
      align-items: flex-end; -webkit-align-items: flex-end;
    }
    .categories .line li:nth-child(1) {top: 15%; left: -20%;}
    .categories .line li:nth-child(2) {top: 15%; left: 25%;}
    .categories .line li:nth-child(3) {top: 15%; right: -20%;}
    .categories .line li:nth-child(4) {display: none}
    .categories .line li:nth-child(5) {display: none}
    /*-- End of Line --*/
    
    /* Bricks */
    .categories .bricks .title {
      justify-content: flex-start; -webkit-justify-content: flex-start;
      align-items: flex-start; -webkit-align-items: flex-start;
    }
    .categories .bricks li:nth-child(1) {bottom: 10%; left: -35%;}
    .categories .bricks li:nth-child(2) {bottom: 10%; left: 25%;}
    .categories .bricks li:nth-child(3) {bottom: 10%; right: -35%;}
    .categories .bricks li:nth-child(4) {bottom: -25%; left: -5%;}
    .categories .bricks li:nth-child(5) {bottom: -25%; right: -5%;}
    /*-- End of Bricks --*/

    /* Diagonal */
    .categories .diagonal .title {
      justify-content: flex-end; -webkit-justify-content: flex-end;
      align-items: flex-end; -webkit-align-items: flex-end;

      text-align: right;
    }
    .categories .diagonal li:nth-child(1) {bottom: 0; left: -25%;}
    .categories .diagonal li:nth-child(2) {bottom: 15%; left: -10%;}
    .categories .diagonal li:nth-child(3) {bottom: 33%; left: 10%;}
    .categories .diagonal li:nth-child(4) {bottom: 48%; left: 25%;}
    .categories .diagonal li:nth-child(5) {top: -15%; right: 10%;}
    /*-- End of Diagonal --*/

    /* Corners */
    .categories .corners .title {
      justify-content: center; -webkit-justify-content: center;
      align-items: center; -webkit-align-items: center;

      text-align: center;
    }
    .categories .corners li:nth-child(1) {top: -15%; left: -15%;}
    .categories .corners li:nth-child(2) {top: -15%; right: -15%;}
    .categories .corners li:nth-child(3) {bottom: -15%; left: -15%;}
    .categories .corners li:nth-child(4) {bottom: -15%; right: -15%;}
    .categories .corners li:nth-child(5) {display: none;}
    /*-- End of Corners --*/
  /*-- End of Images --*/
/*--End of Categories --*/

/* Catalog Feed */
.catalogFeed ul.cards {
  display: flex; display: -webkit-flex;
  flex-wrap: wrap; -webkit-flex-wrap: wrap;

  margin: -1em 0 1em -1em;
}
.catalogFeed ul.cards li {
  background: #FFF;
  width: calc(25% - 1em);
  margin: 1em 0 0 1em; padding: 2em;
  vertical-align: top;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.2s;
}
.catalogFeed ul.cards li:hover {
  background: #FFF;
  box-shadow: 0 0 0 0.722em #423FFF inset;
}
.catalogFeed ul.cards li figure {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 1em;
}
.catalogFeed ul.cards li figure:before {
  content: '';
  display: block;
  padding-top: 100%;
}
.catalogFeed ul.cards li figure img {max-width: 100%; max-height: 100%;}
.catalogFeed ul.cards li figure a {
  display: flex; display: -webkit-flex;
  align-items: flex-end; -webkit-align-items: flex-end;
  justify-content: center; -webkit-justify-content: center;

  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
}
.catalogFeed ul.cards li figure:hover + a {color: #423FFF;}
.catalogFeed ul.cards li figure:active + a {color: #0C2EAB;}
/*-- End of Catalog Feed --*/

/* Super Grid */
.superGrid .base ul.cards li {
  display: flex; display: -webkit-flex;
  flex-direction: column; -webkit-flex-direction: column;
  justify-content: center; -webkit-justify-content: center;
}
.superGrid .base ul.cards li figure a {
  align-items: center; -webkit-align-items: center;

  overflow: hidden;
}
.superGrid .base ul.cards li figure img {width: 100%; max-height: inherit;}
.superGrid ul.cards li figure:before {padding-top: 55%;}
.superGrid .base ul.cards li:nth-child(1) {width: calc(50% - 1em);}
.superGrid .base ul.cards li:nth-child(8) {
  font-size: 0;
  width: 0; height: 0;
  opacity: 0;
}

@supports (display: grid) {
  .superGrid .base ul.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1em;
    margin: 0;
  }
  .superGrid .base ul.cards li {width: auto; margin: 0;}
  .superGrid .base ul.cards li:nth-child(1) {
    width: auto;
    grid-area: 1 / 1 / 3 / 3;
  }
/*  .superGrid .base ul.cards li:nth-child(2) {grid-area: 1 / 3 / 3 / 4;}*/
  .superGrid .base ul.cards li:nth-child(8) {
    font-size: inherit;
    width: inherit; height: inherit;
    opacity: 1;
  }

  .superGrid .base ul.cards li figure + a {
    position: relative;
    padding-bottom: 1.6em;
  }
  .superGrid .base ul.cards li figure + a b {
    display: block;
    position: absolute;
    top: 0; right: 0; left: 0;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: top;
  }
}
/*-- End of Super Grid --*/

/* Search */
.searchBar {
  position: fixed;
  z-index: 100;
  right: 0; left: 0; bottom: 100%;
  border-bottom: 2px solid #000;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.searchBar .base {
  position: relative;
  padding: 2em 0;
}
.searchBar ul {
  color: #fff!important;
  font-size: 1em!important;
  background: transparent!important;
  width: 100%;
  padding: 0 2.833em!important;
  border-color: #FFF!important;
}
.searchBar input {color: #fff;}
.searchBar .iconClose {
  position: absolute;
  top: calc(2.833em + 4px); left: 0;
  color: #fff;
}
.searchBar .iconSearch {
  position: absolute;
  top: calc(2.833em + 4px); right: 0;
  color: #fff;
}
.searchBar button[type="submit"] {
  background: transparent!important;
  width: 1.333em; height: 1.333em;
  padding: 0;
  border: 0;
}

.search {display: none;}
.search:checked + .searchBar {transform: translateY(100%); -webkit-transform: translateY(100%);}
.search:checked + .searchBar + .fade {
  position: fixed;
  z-index: 90;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(40,40,40,.8);
  transition: all 0.2s;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
/*-- End of Search --*/

/* Search Form */
.searchForm {margin-bottom: 2em;}
.searchForm input {width: 100%;}
/*-- End of Search Form --*/

/* Article Grid */
.articleVideo .video {position: relative;}
.articleVideo .video:before {
  content: '';
  display: block;
  padding-top: 50%;
}
.articleVideo .video iframe {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
}
.articleContent {
  color: #000;
  font-size: 1.2em;
  line-height: 1.8;
  padding: 5% 8%;
  border-bottom: 2px solid #F2F2F2;
  box-sizing: border-box;
}
.articleInfo {
  padding: 2em 8%;
  border-bottom: 2px solid #F2F2F2;
}
/* Article Tags */
.articleTags {margin-bottom: 2em; padding: 2em 8%;}
.articleTags a {margin-left: 1em;}
.articleTags a:first-child {margin-left: 0;}
.articleTags a:before {
  color: #ccc;
  content: '#\202F';
}
/*-- End of Article Tags --*/

.articleContent p:first-child {margin-top: 0;}
.articleContent p:last-child {margin-bottom: 0;}
.articleContent a {border-bottom: 1px solid rgba(0,0,0,0.3);}
.articleContent a:hover {border-color: #423FFF;}
.articleContent a:active {border-color: #0C2EAB;}
/*-- End of Article Content --*/

/* Slideshow */
.slideshow {border-bottom: 2px solid #F2F2F2;}
.slideshow .slideshowContent {position: relative;}
.slideshow .slideshowContent:before {
  content: '';
  display: block;
  padding-top: 50%;
}
.slideshow .slideshowData {
  position: absolute;
  top: 15%; right: 15%; bottom: 15%; left: 15%;
}
.slideshow .slideshowData .image {max-width: 100%; max-height: 100%;}

.slideshowControllers .buttonsBox .buttonLeft {left: 0;}
.slideshowControllers .buttonsBox .buttonRight {right: 0;}
.slideshowControllers .buttonsBox .buttonLeft:hover {box-shadow: 0.722em 0 0 0 #423FFF inset;}
.slideshowControllers .buttonsBox .buttonRight:hover {box-shadow: -0.722em 0 0 0 #423FFF inset;}
.slideshowControllers .buttonsBox .buttonLeft:before {
  left: 10%;
  -webkit-transform: rotate(-135deg); transform: rotate(-135deg);
}
.slideshowControllers .buttonsBox .buttonRight:before {
  right: 10%;
  transform: rotate(45deg); -webkit-transform: rotate(45deg);
}
.slideshow .bullitsBox {
  position: absolute;
  right: 30%; bottom: 2%; left: 30%;
  height: 3em;
}
.slideshow .bullitsBox .bullit {
  display: block;
  width: 12px;
  height: 12px;
  margin-left: 10px; padding: 0;
  box-shadow: 0 0 0 2px #000 inset;
  border-radius: 100%;
  cursor: pointer;
}
.slideshow .bullitsBox .bullit:first-child {margin: 0;}
.slideshow .bullitsBox .bullit:hover {box-shadow: 0 0 0 2px #423FFF inset;}
.slideshow .bullitsBox .bullitActive {
  background: #423FFF;
  box-shadow: none;
}
/*-- End of Slideshow --*/

/* StaticPage */
.staticPage .article a[name] {
  position: relative;
  top: calc(-100px - 1em);
  display: inline-block;
}
/*-- End of Static Page --*/

/* Footer */
footer {color: #888;}
footer .base .row {
  display: flex; display: -webkit-flex;
  justify-content: space-between; -webkit-justify-content: space-between;
  margin-bottom: 1em;
}
footer .base .row > div {width: 25%;}
footer .base .row .logo img {width: calc(100% - 1em);}
footer .base .row .subscribe {
  width: 50%;
  margin-top: -.5em;
}
footer .base .row:first-child a,
footer .base .row:first-child span {
  display: inline-block;
  margin-bottom: 0.5em;
}
footer .base .row:first-child .socials a {margin: 0 0 0 0.7em;}
footer .base .row .contacts,
footer .base .row .developer {text-align: right;}
/*-- End of Footer --*/

/* Global Dimention */
@media screen and (min-width: 1200px) {
  body {
    font-size: 18px;
    line-height: 28px;
  }
  .base {max-width: 1200px!important;}
}
@media screen and (max-width: 1600px) {
  .sideNav {min-width: 35%;}
}
/*-- End of Global Dimention --*/

/* iPhone etc. */
@media only screen 
and (max-width : 767px)
and (orientation : portrait) {
  
  body {
    font-size: 16px;
    line-height: 26px;
  }
  
  h1 {
    font-size: 2.5em;
    line-height: 1.2em;
    margin: 0;
  }
  
  h2 {
    font-size: 1.6em;
    line-height: 1.2em;
    margin-top: 0;
  }

  .base {
    width: 90%;
    padding: 3em 0;
  }

  /* Form */
  .form .formCol2 {flex-direction: column; -webkit-flex-direction: column;}
  .form.formComplex .formCol2 .formItem {width: 100%;}
  .form .formItem.captchaBox input {width: 100%;}
  .form button[type="submit"] {width: 100%;}
  /*-- End of Form --*/

  /* Menu */
  .sideNav {min-width: 100%;}
  /*-- End of Menu --*/
  
  /* Categories */
  .categories .title {padding: 2em;}
  .categories .base {padding: 2em 0 3em;}
  .categories .base > div {
    width: 100%;
    margin-top: 1em;
  }
  .categories .base > div:nth-child(2) {margin-top: 1em;}
  /*-- End of Categories --*/
  
  /* Header */
  header.headerLayout {
    padding: 0;
    border-bottom: 2px solid #000;
  }
  header.headerLayout .base {padding: 1em 0;}
  header.headerLayout .base .logo,
  header.headerLayout.mainPage .base .logo {
    width: 40%; max-width: 13.5em;
    margin: 0;
  }
  header.headerLayout .slogan,
  header.headerLayout.mainPage .base .substring {display: none;}

  header.headerLayout.mainPage .base,
  header.headerLayout .base {
    display: flex; display: -webkit-flex;
    justify-content: space-between; -webkit-justify-content: space-between;
    align-content: center; -webkit-align-content: center;
  }
  header.headerLayout .base .substring {display: none;}
  /*-- End of Header --*/
  
  /* Catalog Feed */
  .catalogFeed .base ul.cards li {
    width: calc(50% - 1em);
    padding: 1em;
  }
  .catalogFeed .base ul.cards li:hover {box-shadow: 0 0 0 0.4em #423FFF inset;}
  /*-- End of Catalog Feed --*/
  
  /* Super Grid */
  .superGrid .base ul.cards li:nth-child(1) {width: 100%;}

  @supports (display: grid) {
    .superGrid .base ul.cards {grid-template-columns: 1fr;}
    .superGrid .base ul.cards li {
      width: auto;
      padding: 10%;
    }
    .superGrid .base ul.cards li:nth-child(1) {grid-area: 1 / 1 / 2 / 2;}
    .superGrid .base ul.cards li:nth-child(2) {grid-area: auto;}
    .superGrid .base ul.cards li:nth-child(8) {display: none;}
  }
  /*-- End of Super Grid --*/

  /*-- Article Content --*/
  .articleInfo {text-align: center;}
  .articleInfo div {width: 100%;}
  .articleInfo .source {margin-top: 0.5em;}
  .articleInfo .rate {margin-top: 1em;}
  /*-- End of Article Content --*/
  
  /* Slideshow */
  .slideshow .slideshowContent:before {padding-top: 100%;}
  .slideshow .slideshowData {top: 15%; right: 15%; bottom: 15%; left: 15%;}
  .slideshow .bullitsBox {
    position: absolute;
    right: 30%; bottom: 0.5%; left: 30%;
    height: 3em;
  }
  .slideshowControllers .buttonsBox .buttonLeft:before {left: 15%;}
  .slideshowControllers .buttonsBox .buttonRight:before {right: 15%;}
  /*-- End of Slideshow --*/
  
  /* Content Grid */
  .contentGrid .article {width: 100%;}
  .contentGrid .info {width: 100%;}
  /*-- End of Content Grid --*/
 
  /* Footer */
  footer .base .row {
    flex-direction: column; -webkit-flex-direction: column;

    margin-bottom: 1em;
  }
  footer .base .row > div {
    width: 100%;
    margin-top: 1em;
  }
  footer .base .row .logo img {max-width: 40%; min-width: 20%;}
  footer .base .row .subscribe {width: 100%; margin: 2em 0 1em;}
  footer .base .row:first-child a {
    display: block;
    margin-bottom: 0.5em;
  }
  footer .base .row .contacts,
  footer .base .row .developer {text-align: left;}
  footer .base .row:last-child div:first-child {order: 2; -webkit-order: 2;}
  footer .base .row:last-child div:last-child {order: 3; -webkit-order: 3;}
  footer .base .row:first-child .socials a {
    display: inline-block;
    margin: 0 0.7em 0 0;
  }
  /*-- End of Footer --*/
}

/* iPhone etc. */
@media only screen 
and (max-width : 960px)
and (orientation : landscape) {
  
  body {
    font-size: 16px;
    line-height: 26px;
  }
  
  h1 {
    font-size: 3em;
    line-height: 1.2em;
    margin: 0;
  }

  h2 {
    font-size: 1.6em;
    line-height: 1.2em;
    margin-top: 0;
  }

  .base {
    width: 90%;
    padding: 2em 0;
  }

  /* Icons */
  .iconSearch,
  .iconBurger {width: 1em; height: 1em;}
  /*-- End of Icons --*/

  /* Form */
  .form .formCol2 {flex-direction: column; -webkit-flex-direction: column;}
  .form.formComplex .formCol2 .formItem {width: 100%;}
  .form .formItem.captchaBox input {width: 100%;}
  .form button[type="submit"] {width: 100%;}
  /*-- End of Form --*/
  
  /* Menu */
  .sideNav {min-width: 100%;}
  /*-- End of Menu --*/

  /* Header */
  header.headerLayout {
    padding: 0;
    border-bottom: 2px solid #000;
  }
  
  header.headerLayout .base,
  header.headerLayout.headerFloating .base {padding: 0.5em 0;}
  header.headerLayout .base .logo,
  header.headerLayout.mainPage .base .logo,
  header.headerLayout.headerFloating .base .logo {
    width: 20%; max-width: 13.5em;
    margin: 0;
  }
  header.headerLayout .slogan,
  header.headerLayout.mainPage .base .substring {display: none;}

  header.headerLayout.mainPage .base,
  header.headerLayout .base {
    display: flex; display: -webkit-flex;
    justify-content: space-between; -webkit-justify-content: space-between;
    align-content: center; -webkit-align-content: center;
  }
  header.headerLayout .base .substring {display: none;}
  /*-- End of Header --*/
  
  /* Catalog Feed */
  .catalogFeed .base ul.cards li {
    width: calc(33.33% - 1em);
    padding: 1em;
  }
  .catalogFeed .base ul.cards li:hover {box-shadow: 0 0 0 0.4em #423FFF inset;}
  /*-- End of Catalog Feed --*/
  
  /* Super Grid */
  .superGrid .base ul.cards li:nth-child(1) {width: 100%;}

  @supports (display: grid) {
    .superGrid .base ul.cards {grid-template-columns: repeat(2, 1fr);}
    .superGrid .base ul.cards li {
      width: auto;
      padding: 10%;
    }
    .superGrid .base ul.cards li:nth-child(1) {grid-area: 1 / 1 / 2 / 2;}
    .superGrid .base ul.cards li:nth-child(2) {grid-area: auto;}
    .superGrid .base ul.cards li:nth-child(8) {display: none;}
  }
  /*-- End of Super Grid --*/

  /*-- Article Content --*/
  .articleInfo {text-align: center;}
  .articleInfo .date,
  .articleInfo .source,
  .articleInfo .rate {width: 100%;}
  .articleInfo .source {margin-top: 0.5em;}
  .articleInfo .rate {margin-top: 1em;}
  /*-- End of Article Content --*/
  
  /* Slideshow */
  .slideshow .slideshowData {top: 15%; right: 15%; bottom: 15%; left: 15%;}
  .slideshow .bullitsBox {
    position: absolute;
    right: 30%; bottom: 0.5%; left: 30%;
    height: 3em;
  }
  .slideshowControllers .buttonsBox .buttonLeft:before {left: 15%;}
  .slideshowControllers .buttonsBox .buttonRight:before {right: 15%;}
  /*-- End of Slideshow --*/
  
  /* Content Grid */
  .contentGrid .article {width: 100%;}
  .contentGrid .info {width: 100%;}
  /*-- End of Content Grid --*/

  /* Footer */
  footer .base .row {
    flex-wrap: wrap; -webkit-flex-wrap: wrap;

    margin-bottom: 1em;
  }
  footer .base .row > div {
    width: 33.33%;
    margin-top: 1em;
  }
  footer .base .row .logo {width: 100%;}
  footer .base .row .logo img {max-width: 40%; min-width: 20%;}
  footer .base .row .subscribe {width: 100%; margin: 2em 0 1em;}
  footer .base .row:first-child a {
    display: block;
    margin-bottom: 0.5em;
  }
  footer .base .row .contacts,
  footer .base .row .developer {text-align: left;}
  footer .base .row:last-child div:first-child {order: 2; -webkit-order: 2;}
  footer .base .row:last-child div:last-child {
    order: 3; -webkit-order: 3;
    
    text-align: right;
  }
  footer .base .row:first-child .socials a {
    display: inline-block;
    margin: 0 0.7em 0 0;
  }
  /*-- End of Footer --*/
}



body { transition: all 150ms; }
html:not(.wf-active) { background: #F2F2F2; }
html:not(.wf-active) body {
    animation: animAlert 1s;
    -webkit-animation: animAlert 1s;
    }

@keyframes animAlert {
    0% {opacity: 0;}
    50% {opacity: 0;}
    100% {opacity: 1;}
    }


/* Map */
#mapdiv a {display: none!important;}
#mapdiv circle {
  stroke-opacity: 1;
  stroke-width: 2px;
  fill: transparent;
}
#mapdiv circle + g path,
#mapdiv circle + path {stroke-width: 2px; fill: transparent;}
#mapdiv circle:hover,
#mapdiv circle:hover + g path,
#mapdiv circle:hover + path {stroke: #423FFF!important;}
/*-- End of Map --*/