@charset "UTF-8";
/**
 * Table of Contents:
 *
 * 0.0 - Import css & Reset
 * 1.0 - Elements
 * 2.0 - Form Styling
 * 3.0 - Typography & HTML
 *   3.1 - List
 *   3.2 - Tables
 *   3.3 - Heading
 *   3.4 - Paragraph
 *   3.5 - Links
 *   3.6 - Buttons
 * 4.0 - Layout
 * 5.0 - Header - Hero - Navigations
 *   5.1 - Header
 *   5.2 - Desktop Nav (Main Menu)
 *   5.3 - Mobile Nav
 *   5.4 - Superfish
 * 6.0 - Content & Pages
 *   6.1 - Pages
 *   6.2 - Category Page & Single page
 *   6.3 - Comments
 * 7.0 - Widgets
 * 8.0 - Footer
 * 9.0 - Media Queries
 */
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Muli:wght@400;700;800&display=swap");
.wrapper:after, .clearfix:after, hr:after, .wpfood-heading-post:after, .clear:after, .entry-content:after, .comment-content:after, .comment-navigation:after, .textwidget:after, .nav-links:after {
  clear: both;
  content: ".";
  display: block;
  font-size: 0;
  height: 0;
  line-height: 0;
  overflow: hidden;
}

.post-meta span:before, .sf-arrows a.sf-with-ul:after, ul.fancy li:before, ol.fancy li:before {
  display: none;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

/**
 * 0.0 - Import css & Reset
 * Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
 * along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
 * Styles based on Normalize v5.0.0 @link https://github.com/necolas/normalize.css
 */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, main, nav, section {
  display: block;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
}

blockquote, q {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  quotes: none;
}

a:hover, a:active, a:focus {
  outline: 0;
}

a img {
  border: 0;
}

::-moz-selection {
  background: #fcce39;
  color: #222;
  text-shadow: none;
}

::selection {
  background: #fcce39;
  color: #222;
  text-shadow: none;
}

/*************** 1.0 - Elements *************************/
hr {
  background: #fcce39;
  border: 0;
  height: 2px;
  width: 100%;
  margin: 4em auto;
  display: block;
  clear: both;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

figure {
  margin: 0;
}

del {
  opacity: 0.8;
}

b, strong {
  font-weight: 700;
}

dfn, cite, em, i {
  font-style: italic;
}

code, kbd, tt, var, samp, pre {
  font-family: Inconsolata, monospace;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

/* Alignments */
.alignleft {
  display: inline;
  float: left;
}

.alignright {
  display: inline;
  float: right;
}

.aligncenter {
  display: block;
  margin: 0 auto 1em;
}

.textcenter {
  text-align: center;
}

/* Clear */
.clearfix, hr, .wpfood-heading-post, .clear, .entry-content, .comment-content, .comment-navigation, .textwidget, .nav-links {
  clear: both;
}

/* blockquote */
blockquote {
  border-left: 1px solid #fcce39;
  font-style: italic;
  margin-bottom: 1.6667em;
  margin-left: 25px;
  padding-left: 0.7778em;
}
blockquote p {
  margin-bottom: 1.6667em;
}
blockquote > p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 800;
}

/*************** 2.0 - Form Styling *************************/
input,
select,
textarea {
  font-size: 1.063em;
  line-height: 1.5em;
  text-align: left;
  color: #fcce39;
  background: #fff;
  border: 1px solid #d3d3d3;
  margin: 0;
  padding: 0.5em 1em;
  width: 100%;
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  font-family: "Muli", sans-serif;
}
input:focus,
select:focus,
textarea:focus {
  color: #333;
}

button[disabled],
input[disabled],
select[disabled],
textarea[disabled] {
  cursor: default;
  opacity: 0.5;
}

form button,
form input[type=button],
form input[type=reset],
form input[type=submit] {
  cursor: pointer;
  width: auto;
  float: right;
  min-width: 150px;
}
form button:hover, form button:focus,
form input[type=button]:hover,
form input[type=button]:focus,
form input[type=reset]:hover,
form input[type=reset]:focus,
form input[type=submit]:hover,
form input[type=submit]:focus {
  outline: 0;
}
@media all and (max-width: 580px) {
  form button,
form input[type=button],
form input[type=reset],
form input[type=submit] {
    float: left;
  }
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
  height: 210px;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
  width: auto;
}

label {
  font-weight: 800;
  font-size: 15px;
  color: #222;
  padding: 0 0 0.5em;
  margin: 0;
  text-align: left;
  display: inline-block;
  width: 100%;
}
label i {
  color: #f01d1d;
  font-style: normal;
}

form {
  display: inline-block;
  width: 100%;
}
form p {
  margin: 0;
}
form .row .col-ds {
  margin: 0;
}

/* Placeholder text color -- selectors need to be separate to work. */
form ::-webkit-input-placeholder {
  color: #222;
  opacity: 1;
  filter: alpha(opacity=100);
}

form :-moz-placeholder {
  color: #222;
  opacity: 1;
  filter: alpha(opacity=100);
}

form ::-moz-placeholder {
  color: #222;
  opacity: 1;
  filter: alpha(opacity=100);
}

form :-ms-input-placeholder {
  color: #222;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* Search form */
.search-form {
  display: inline-block;
  position: relative;
  width: 100%;
}
.search-form input {
  float: left;
  width: auto;
  min-width: 200px;
}
.search-form button {
  float: left;
  margin-left: 1em;
}

/* Contact form 7 plugin Alerts Messages */
.wpcf7-form-control-wrap {
  display: inline-block;
  width: 100%;
  margin: 0 0 20px;
}

div.wpcf7-mail-sent-ok,
div.wpcf7-mail-sent-ng,
div.wpcf7-spam-blocked,
div.wpcf7-validation-errors {
  clear: both;
  font-size: 0.875em;
  margin: 0;
  width: 100%;
  padding: 1em 0.5em;
}

.wpcf7 form div.wpcf7-response-output {
  padding: 0.5em;
  margin: 1em 0;
  font-size: 0.85em;
  width: 100%;
  float: left;
  clear: both;
}

form span.wpcf7-not-valid-tip {
  font-size: 14px;
  float: left;
  clear: both;
  margin: 5px 0 0;
  color: #c00000;
}

div.wpcf7 img.ajax-loader {
  margin-right: -20px;
}

/*************** 3.0 - Typography & HTML *************************/
/* 3.1 - Lists */
ul, ol {
  margin: 0 0 1.5em 0.3em;
  list-style-position: inside;
}
ul li, ol li {
  padding: 0.4em 0;
}
ul li p, ol li p {
  margin: 0 0 1em;
}
ul li ul, ul li ol, ol li ul, ol li ol {
  margin-bottom: 0;
}
ul.no-style, ol.no-style {
  list-style-type: none;
  text-decoration: underline;
}
ul.fancy li, ol.fancy li {
  list-style-type: none;
  padding-left: 20px;
  position: relative;
}
ul.fancy li:before, ol.fancy li:before {
  font-weight: 900;
  content: "";
}
ul.fancy li svg, ol.fancy li svg {
  position: absolute;
  left: 0;
  top: 7px;
  color: #fcce39;
}

ol {
  list-style: decimal;
  list-style-position: outside;
  padding-left: 15px;
  margin-left: 1em;
}

/* 3.2 - Tables */
table {
  border-collapse: separate;
  border-spacing: 0;
  margin: 2.5em 0;
  width: 100%;
  border-width: 0;
  border-style: solid;
  border-color: #cdc7c3;
}
table td, table th {
  border-width: 0;
  border-style: solid;
  border-color: #cdc7c3;
  padding: 0.5em 1em;
  vertical-align: middle;
  word-break: break-all;
  text-align: left;
}
table tr:nth-child(even) {
  background-color: #cdc7c3;
}

/* 3.3 - Heading */
h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  margin: 0 0 0.5em;
  line-height: normal;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  color: #000;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: #000;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
  color: #fcce39;
}

h1 {
  font-size: 4.1176470588em;
}
@media all and (max-width: 580px) {
  h1 {
    font-size: 60px;
  }
}

h2 {
  font-size: 2.8235294118em;
  margin-bottom: 0.4em;
  line-height: 1.08em;
}

h3 {
  font-size: 1.8235294118em;
  margin-bottom: 1em;
}

h4 {
  font-size: 1.2352941176em;
  margin-bottom: 0.9em;
}

h5 {
  font-size: 1em;
  font-family: "Muli", sans-serif;
  font-weight: 800;
  margin: 0 0 0.95em;
}
h5:before {
  content: "";
  width: 21px;
  height: 5px;
  position: relative;
  top: -2px;
  display: inline-block;
  vertical-align: middle;
  background: #06623b;
  margin-right: 12px;
}

h6 {
  font-size: 0.8235294118em;
}

/* 3.4 - Paragraph */
p {
  font-size: 1em;
  margin: 1em 0;
  line-height: 1.6em;
}
p:empty {
  display: none !important;
}
@media all and (max-width: 580px) {
  p {
    font-size: 15px;
  }
}

/* 3.5 - Links */
a {
  color: #000000;
  text-decoration: none;
}
a:hover {
  color: #222;
  text-decoration: none;
}

/* 3.6 - Buttons */
a.btn, a.button,
input[type=button],
input[type=reset],
input[type=submit] {
  display: inline-block;
  padding: 0.55em 0.8em;
  background: #fcce39;
  color: #222;
  text-align: center;
  font-size: 21px;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  line-height: normal;
  border: 0;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-clip: padding-box;
}
a.btn:hover, a.button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  background: #e5af00;
}

a.btn, a.button {
  margin: 1em 0;
}

/*************** 4.0 Layout *************************/
html body {
  font-family: "Muli", sans-serif;
  font-size: 1.063em;
  /* default fotn size is 16px */
  line-height: normal;
  background: #fff;
  color: #222;
  height: 100%;
  margin: 0;
}
html body.open-menu {
  position: fixed;
  overflow: hidden;
}

#main {
  width: 100%;
  padding: 2.5em 0;
  min-height: 20em;
  /* just to add height to empty post content */
  position: relative;
  z-index: 2;
  overflow: hidden;
}
#main.home-page {
  padding: 0 0 2.5em;
  overflow: visible;
}
#main.home-page .wrapper {
  margin-top: -75px;
}
@media all and (max-width: 580px) {
  #main.home-page .wrapper {
    text-align: center;
    margin-top: -25px;
  }
}

.wrapper {
  margin: 0 auto;
  padding: 0;
  width: 95%;
  max-width: 65em;
  position: relative;
  z-index: 2;
  clear: both;
}

#content {
  float: left;
  width: 100%;
  max-width: 780px;
  padding-right: 35px;
  border-right: 1px solid #d3d3d3;
}
@media all and (max-width: 980px) {
  #content {
    max-width: 100%;
    border: 0;
    padding-right: 0;
  }
}

#sidebar {
  float: right;
  max-width: 275px;
}
@media all and (max-width: 980px) {
  #sidebar {
    display: none;
  }
}
#sidebar ul {
  margin: 0 0 1em;
}
#sidebar ul li {
  list-style-type: none;
  padding: 0 0 1.5em;
}
#sidebar ul li h4 {
  text-decoration: underline;
  margin-bottom: 0.5em;
}

span.post-author, span.post-time {
  font-size: 14px;
  color: #afafaf;
}

.row {
  margin: 0 -8px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.row.row-gutter {
  margin: 0;
}
.row.row-gutter .col-ds {
  padding: 0;
}
.row.row-turnir .thumb {
  margin-top: 0;
}
.row.row-turnir .inner {
  padding: 0 21px 70px;
}
.row.row-turnir .inner h3 {
  margin-bottom: 0.5em;
  text-decoration: underline;
}
.row.row-turnir .inner a.btn {
  width: calc(100% - 40px);
  position: absolute;
  bottom: 0;
  left: 20px;
}
.row .col-ds {
  padding: 0 8px;
  margin-bottom: 2em;
  width: 100%;
  max-width: 100%;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media all and (max-width: 580px) {
  .row .col-ds {
    flex-basis: 100%;
  }
}
.row .col-ds .block {
  position: relative;
  background: #f4f4f4;
  height: 100%;
}
@media all and (max-width: 580px) {
  .row .col-ds .block {
    max-width: 350px;
    margin: auto;
  }
}

.half {
  width: 49%;
  float: left;
}
.half .half-ar {
  float: right;
}

.holder-section {
  padding: 3em 0;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

/*************** 5.0 - Header - Hero - Navigations ************************/
/* 5.1 - Header */
header.site-header {
  padding: 17px 0 20px;
  position: relative;
  background: #05613a ;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
}
header.site-header #logo {
  float: left;
}
header.site-header .site-title {
  font-size: 0;
  margin: 0;
  max-width: 208px;
}
header .site-title {
  margin: 0 auto;
  display: inline-block;
  position: relative;
  z-index: 2;
}
header .site-title img {
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
header .site-title:hover img {
  opacity: 0.7;
}

#breadcrumb {
  padding-top: 30px;
  color: #bfbfbf;
  font-size: 15px;
}
#breadcrumb a {
  color: #222;
  text-decoration: underline;
}

/* Hero */
.hero-holder {
  overflow: hidden;
  width: 100%;
  position: relative;
  text-align: center;
  color: #fff;
  background-color: #077446;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.hero-holder .wrapper {
  padding: 4.5em 0 9em;
  /*display: -ms-flexbox;
  display: flex;
  align-items: center;*/
  z-index: 3;
}
@media all and (max-width: 580px) {
  .hero-holder .wrapper {
    padding: 2em 0 4em;
  }
}
.hero-holder .wrapper .cta {
  float: left;
  width: 100%;
  max-width: 700px;
  text-align: left;
}
.hero-holder .wrapper .cta h1 {
  text-transform: uppercase;
  line-height: 68px;
  margin-bottom: 0.3em;
  color: #fff;
}
.hero-holder .wrapper .cta p {
  font-size: 18px;
  color: #a3a1b5;
  max-width: 500px;
  margin-bottom: 1.5em;
}
.hero-holder .wrapper .cta p.subtitle {
  color: #fcce39;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0;
}
.hero-holder .wrapper .cta .btn {
  font-size: 23px;
  margin: 0;
}

.subnav {
  border-bottom: 1px solid #ddd;
}
.subnav ul {
  margin: 0;
  display: inline-block;
  width: 100%;
  float: left;
}
@media all and (max-width: 580px) {
  .subnav ul {
    display: flex;
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
  }
}
.subnav ul li {
  display: inline-block;
  float: left;
  margin-right: 40px;
  font-size: 16px;
  font-weight: 800;
  padding: 0;
}
@media all and (max-width: 580px) {
  .subnav ul li {
    margin-right: 25px;
  }
}
.subnav ul li:last-child {
  margin-right: 0;
}
.subnav ul li.current-menu-item a {
  color: #222;
}
.subnav ul li.current-menu-item a:after {
  background: #fcce39;
}
.subnav ul li a {
  float: left;
  position: relative;
  color: #7c7c7c;
  padding: 30px 0;
}
@media all and (max-width: 580px) {
  .subnav ul li a {
    padding: 20px 0;
    margin-top: 0;
  }
}
.subnav ul li a:after {
  content: "";
  width: 52px;
  height: 5px;
  position: absolute;
  left: 50%;
  top: auto;
  bottom: 0;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.subnav ul li a:hover, .subnav ul li a.current {
  color: #222;
}
.subnav ul li a:hover:after, .subnav ul li a.current:after {
  background: #fcce39;
}

.footer-nav {
  float: right;
  margin: 0;
}
.footer-nav ul {
  margin: 15px 0 0;
}
.footer-nav ul li {
  display: inline-block;
  float: left;
  margin-right: 20px;
  padding: 0;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.42px;
}
.footer-nav ul li:last-child {
  margin-right: 0;
}
.footer-nav ul li a {
  color: #bfbfbf;
  text-transform: uppercase;
}
.footer-nav ul li a:hover {
  color: #222;
}

/* 5.2 - Desktop Nav (Main Menu) */
.desktop-nav {
  float: right;
  position: relative;
  margin-top: 18px;
}
.desktop-nav > ul > li {
  margin: 0 25px 0 0;
}
.desktop-nav > ul > li:last-child {
  margin-right: 0;
}
.desktop-nav > ul > li > ul > li {
  margin: 0;
  padding: 0;
  display: block;
}
.desktop-nav > ul > li > a {
  line-height: 18px;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.42px;
  padding: 0 0 0.5em;
}
.desktop-nav > ul > li > a:hover, .desktop-nav > ul > li.current-menu-item > a, .desktop-nav > ul > li.current-page-ancestor > a {
  color: #fcce39;
}
.desktop-nav ul ul {
  display: none;
  top: 100%;
  left: 0;
  width: 10em;
  min-width: 10em;
  padding: 0.5em 0;
  overflow: hidden;
  background: #fff;
  border-width: 3px 0 0;
  border-style: solid;
  border-color: #fff;
}
.desktop-nav ul ul li a {
  padding: 0.5em 0.5em 0.5em 0.8em;
  background: #fff;
  color: #2d2b40;
  display: block;
  text-align: left;
}
.desktop-nav ul ul li a:hover {
  color: #222;
}

/* 5.3 - Mobile Nav */
.menu-toggle {
  display: none;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  z-index: 10;
  font-size: 14px;
  text-transform: uppercase;
  color: #fcce39;
}
.menu-toggle span {
  display: inline-block;
  vertical-align: middle;
  font-weight: 800;
  margin-right: 14px;
}
.menu-toggle svg {
  font-size: 2.5em;
  vertical-align: middle;
}
.menu-toggle:hover {
  color: #fcce39;
}

.mobile-nav {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  right: 0;
  top: 89px;
  width: 100%;
  height: 100%;
  padding-top: 3em;
  border-bottom: 5px solid transparent;
  background: #077446;
  -webkit-border-radius: 0px 0px 3px 3px;
  border-radius: 0px 0px 3px 3px;
  background-clip: padding-box;
}
.mobile-nav ul, .mobile-nav ul li {
  float: left;
  width: 100%;
  text-align: center;
  clear: both;
}
.mobile-nav ul li a {
  padding: 0.5em 0;
  font-size: 31px;
  font-weight: 800;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
}
@media all and (max-width: 360px) {
  .mobile-nav ul li a {
    font-size: 24px;
  }
}
.mobile-nav ul li:last-child a {
  border: 0;
}
.mobile-nav ul ul {
  position: relative;
  left: 0;
  top: 0;
}
.mobile-nav ul ul li {
  border: none;
}
.mobile-nav ul ul li a {
  font-size: 0.9em;
  padding-left: 2em;
  text-transform: lowercase;
}

/* 5.4 - Superfish */
.sf-menu, .sf-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sf-menu {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.sf-menu li {
  position: relative;
}
.sf-menu li:hover > ul, .sf-menu li.sfHover > ul {
  display: block;
}
.sf-menu > li {
  display: inline-block;
}
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
  display: block;
}
.sf-menu ul {
  left: 0;
  z-index: 2;
  position: absolute;
  min-width: 12em;
  /* allow long menu items to determine submenu width */
  *width: 12em;
  /* no auto sub width for IE7, see white-space comment below */
}
.sf-menu ul ul {
  top: 0;
  left: 100%;
  position: absolute;
}
.sf-menu a {
  display: block;
  position: relative;
  text-decoration: none;
  zoom: 1;
  /* IE7 */
}

.sf-arrows a.sf-with-ul {
  padding-right: 0;
}

.sf-arrows a.sf-with-ul:after {
  font-weight: 900;
  content: "";
}

.sf-arrows a.sf-with-ul svg {
  margin-left: 5px;
}

/*************** 6.0 - Content ************************/
.wrapper .post, .wrapper .page {
  display: inline-block;
  width: 100%;
}

article {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 1em;
}
article:last-of-type {
  margin-bottom: 0;
}

/* post meta */
.post-meta {
  display: inline-block;
  width: 100%;
}
.post-meta span {
  font-weight: 800;
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
  margin-right: 40px;
  color: #ccc;
}
.post-meta span:before {
  font-weight: 400;
}
.post-meta span.post-comment:before {
  content: "";
}
.post-meta span.post-time:before {
  content: "";
}
.post-meta span.post-category:before {
  content: "";
}
.post-meta span.post-link:before {
  display: none;
}
.post-meta span svg {
  color: #ccc;
  margin-right: 5px;
}
.post-meta span a {
  color: #ccc;
}

/* Thumb */
.thumb {
  margin: 1em auto;
  display: inline-block;
  width: 100%;
}

.thumb-avatar {
  margin: 0 auto 2em;
  width: 100px;
  height: 100px;
  overflow: hidden;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-clip: padding-box;
}

/* Page & Post Nav + Prev & Next */
.post-navigation {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 1em 0 0;
}

.nav-block {
  float: right;
}

.link-nav {
  display: inline-block;
  margin: 0 0.15em;
}
.link-nav a {
  display: inline-block;
  color: #222;
  background: #f4f4f4;
  text-align: center;
  width: 37px;
  height: 40px;
  line-height: 40px;
  margin: 0.25em;
}
.link-nav a:hover {
  color: #fff;
  background: #fcce39;
}

.pagination {
  margin-top: 1em;
  float: right;
}
.pagination .pagination-page {
  display: none;
}
.pagination a, .pagination span {
  color: #222;
  font-weight: 800;
  display: inline-block;
  background: #f4f4f4;
  margin: 0 1px;
  display: inline-block;
  width: 37px;
  height: 40px;
  line-height: 37px;
}
.pagination span.current, .pagination a:hover {
  color: #fff;
  background: #222;
}
.pagination a.prev {
  margin-right: 10px;
}
.pagination a.next {
  margin-left: 10px;
}

/* 6.1 - Pages */
/* Home Page */
/* Other Pages */
.template-page .wrapper {
  max-width: 720px;
}

.promo-page .wrapper {
  max-width: 65em;
}
.promo-page .wrapper h3 {
  margin-bottom: 0.5em;
  text-decoration: underline;
}
.promo-page .row .col-ds .block {
  background: transparent;
}

.podrska-page #content h4 {
  margin: 1em 0 0.35em;
}

/* 6.2 - Category Page & Single page */
.category-page {
  margin-bottom: 5em;
}
.category-page h2 {
  margin-bottom: 0.8em;
}
.category-page article .row .col-ds {
  margin-bottom: 0;
}
.category-page article .row .col-ds:first-child {
  max-width: 175px;
}
@media all and (max-width: 580px) {
  .category-page article .row .col-ds:first-child {
    max-width: 100%;
  }
}
.category-page article .row p {
  margin: 0.75em 0;
}
.category-page article .row h3 {
  margin-bottom: 0.35em;
  text-decoration: underline;
}
.category-page .thumb {
  float: left;
  max-width: 175px;
  margin: 0 25px 25px 0;
}
.category-page .thumb img {
  display: block;
  width: 100%;
}
@media all and (max-width: 580px) {
  .category-page .thumb {
    max-width: 100%;
    max-height: 200px;
    overflow: hidden;
    margin: 0 0 1em;
  }
}

/*************** 8.0 - Footer ************************/
#footer {
  position: relative;
  z-index: 2;
}
#footer .wrapper {
  padding: 35px 0;
  border-top: 1px solid #ededed;
}
@media all and (max-width: 980px) {
  #footer .wrapper {
    padding-top: 1em;
  }
}
#footer p {
  margin: 0;
}
@media all and (max-width: 980px) {
  #footer .site-title {
    float: none;
    margin: 1em auto 0;
    width: 170px;
    display: block;
  }
}
@media all and (max-width: 980px) {
  #footer .footer-nav li {
    float: none;
  }
}
@media all and (max-width: 980px) {
  #footer .footer-nav {
    display: block;
    float: none;
    text-align: center;
  }
}

/* animation effect*/
/* fade */
.holder-section.holder-fade .fade-effect {
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out;
  -moz-transition: opacity 0.6s ease-in-out;
  -ms-transition: opacity 0.6s ease-in-out;
  -o-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}
.holder-section.holder-fade.active-section .fade-effect {
  opacity: 1;
}

/* zoom */
.holder-section.holder-zoom .zoom-effect {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.holder-section.holder-zoom.active-section .zoom-effect {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/* fade 2 */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  opacity: 0;
}

.active-section .fadeIn,
.loaded .cta.fadeIn {
  animation: fadeIn ease 1s;
  -webkit-animation: fadeIn ease 1s;
  -moz-animation: fadeIn ease 1s;
  -o-animation: fadeIn ease 1s;
  -ms-animation: fadeIn ease 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.loaded .cta.fadeIn {
  animation-delay: 0.5s;
}

/*************** 9.0 - Media Queries and responsive *************************/
@media screen and (max-width: 980px) {
  .subnav ul::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar for IE, Edge and Firefox */
  .subnav ul {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  /* Media Query for Mobile menu */
  .menu-toggle, #mobile-nav {
    display: inline-block;
  }

  .desktop-nav {
    display: none;
  }

  #nav ul li {
    width: 100%;
  }

  #nav ul ul {
    position: relative;
  }

  .sf-arrows a.sf-with-ul {
    padding-right: 0.75em;
  }
}
@media screen and (min-width: 981px) {
  .mobile-nav {
    display: none !important;
  }
}

/*# sourceMappingURL=styles.css.map */
