/*
______________________

    BASIC STYLES
______________________
*/

* {  
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
}

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

html {
  font-family: 'Roboto', sans-serif;
  font-size: 100%;
  font-weight: 400;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #eae9e4 url(../img/bg-body.jpg) 0 0;
}


/* -----------------
   Main containers
-------------------- */

.full-width {
  clear: both;
  width: 100%;
  /* overflow: hidden; */   /* BG Fix */
}

.page-width {
  max-width: 1240px;
  margin: 0 auto;
  overflow: hidden;   /* BG Fix */
}


/* ----------------------
   Main layout elements
------------------------- */

header, footer, section, nav {
  display: block;   /* older, non HTML-5 browsers fix */
}

.header, .footer {
  clear: both;
  position: relative;
  /* overflow: hidden; */
}

.content {
  clear: both;
  position: relative;
  /* overflow: hidden; */
}


/* -----------------
   Common elements
-------------------- */

p, h1, h2, h3, h4 {
  text-align: left;
}

.clear {
  clear: both;
}

.cleaner {
  clear: both;
  height: 0;
  content: "";
  overflow: hidden;
}

.nod, .no-display {
  display: none;
}

ul {
  padding: 0;
  list-style-type: none;
  text-align: left;
}

img {
  border: 0;
  margin: 0;
  padding: 0;
  color: transparent;
  font-size: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

a img {
  /* padding */
  /* border */
}

a:hover img {
  /* border */
}

sub, sup, small {
  font-size: 75%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table, thead, tbody, tfoot, td, th, tr {
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
}

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

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

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-justify {
  text-align: justify !important;
}

.text-upper {
  text-transform: uppercase !important;
}

b, strong {
  font-weight: bold;
}


/*
___________________________________

     STYLES (MartinMuzik.cz)  
___________________________________
*/

/* ---------
   Buttons
------------ */

button, .button {
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.2em;
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  background: #83b20c;   /* #f9de0b #ff7e0b */
  /* border-width: 0; */
  border: 1px solid #7aa408;  /* #4ea408 #5c7d08 */
  text-decoration: none;
  outline: none;
  cursor: pointer;
  padding: 12px 18px 12px 18px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 1px 3px 1px rgba(0,0,0,0.3);
  -moz-box-shadow: 0px 1px 3px 1px rgba(0,0,0,0.3);
  box-shadow: 0px 1px 3px 1px rgba(0,0,0,0.3);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

button:hover, .button:hover {
  color: #fff;
  background: #adda1b;  /* #f9970b */
  border: 1px solid #aae50b;
  -webkit-box-shadow: 0px 1px 3px 1px rgba(0,0,0,0.4);
  -moz-box-shadow: 0px 1px 3px 1px rgba(0,0,0,0.4);
  box-shadow: 0px 1px 3px 1px rgba(0,0,0,0.4);
}


/* --------
   Header
----------- */

.header .page-width {
  position: relative;
  padding: 1.5rem 2rem;
  /* overflow: hidden; */
}

.header h1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 4rem;
  font-weight: 400;
  color: #999;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  padding: 2rem 1.5rem;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
  border-bottom: 2px dotted #bcbcbc;
}

.header h1 > span {
  font-weight: 600;
  color: #4f4f4f;
  padding-left: 15px;
  /* text-transform: none; */
}


/* --------
   Footer
----------- */

.footer {
  padding-top: 0;
  padding-bottom: 0;
}

.footer .page-width {
  position: relative;
  padding: 2rem 2rem;
  /* overflow: hidden; */
}

.footer .contacts {
  background-color: #222;
  padding: 2rem 3rem;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.footer .contacts p {
  line-height: 1.5;
  padding: 1.5rem 0;
  text-align: left;
  border-top: 1px dashed #4f4f4f;
}

.footer .contacts p:first-child {
  border-top: none;
}

.footer .contacts p > strong {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #fff;
  padding-left: 7px;
  padding-right: 5px;
}

.footer .contacts span.info {
  font-size: 1rem;
  color: #999;
  padding: 0 5px 0 5px;
}

.footer .contacts .contact-ico span.info {
  font-size: 1.25rem;
  padding-left: 0;
}

.footer .contacts .bi {
  font-size: 1.25rem;
  color: #999;
}

.footer .contacts a {
  display: inline-block;
  vertical-align: baseline;
  text-decoration: none;
  outline: none;
}

.footer .contacts a,
.footer .contacts a > .bi {
  font-size: 1.25rem;
  font-weight: 400;
  color: #e09200;   /* #f9b808 */
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer .contacts a:hover,
.footer .contacts a:hover > .bi {
  color: #f0aa1c;   /* #fffec5 */
}


/* ---------
   Content
------------ */

.content {}

.content .page-width {
  position: relative;
  padding: 2rem 2rem;
  /* overflow: hidden; */
}

.content .col-50 {
  float: left;
  /*width: 50%;*/
}

.content .col-50.col-image {
  width: 52%;
  padding: 2.5rem 2.5rem 0 2.5rem;
}

.content .col-50.col-text {
  width: 48%;
}

.content h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #4f4f4f;
  line-height: 1.2;
  text-align: center;
  padding: 2rem 0 2.5rem 0;
}

.content p {
  font-size: 1.25rem;
  text-align: center;
  padding: 0.5rem 0;
}

.content p > span {
  font-size: 1rem;
  color: #2e7d32;
  padding-left: 10px;
  padding-right: 5px;
}

.content a {
  color: #004080;
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.content a:hover {
  color: #1a73e8;
  /*text-decoration: underline;*/
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 2px;
}

.content a > .bi {
  color: #e09200;   /* #f9b808, #ff8c00 */
  font-size: 1.25rem;
  padding-left: 6px;
}

.content img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  margin: 0 auto;
  text-align: center;
}

/*
______________________

    SMALL DEVICES
______________________
*/

@media (max-width: 1199.98px) {
}

@media (max-width: 1023.98px) {
}

@media (max-width: 991.98px) {
    .content .col-50 {
        float: none;
        width: 100% !important;
    }

    .content .col-50.col-image {
        max-width: 520px;
        margin: 0 auto;
    }

    .content .col-50.col-image,
    .content .col-50.col-text {
        padding: 2rem 1rem;
    }

    .content h2 {
        padding-top: 1rem;
    }

    .footer .page-width {
        padding: 0;
    }

    .footer .contacts {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
    }

    .footer .contacts p {
        text-align: center;
    }

    .footer .contacts .contact-email span.info {
        display: block;
    }
}

@media (min-width: 992px) {
}

@media (max-width: 767.98px) {
}

@media (min-width: 768px) {
}

@media (max-width: 575.98px) {
    .header h1 {
        font-size: 3.5rem;
    }

    .content .page-width {
        padding: 2rem 1rem;
    }

    .content h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 576px) {
}

@media (max-width: 859.98px) {
    .header h1 {
        line-height: 1.3;
    }

    .header h1 > span {
        display: block;
        padding: 0.5rem 0;
    }
}

@media (max-width: 519.98px) {
    .content p {
        padding: 1rem 0;
    }

    .content p > span {
        display: block;
        padding-top: 0.1rem;
    }
}

@media (max-width: 459.98px) {
    .footer .contacts a {
        display: block;
    }
}
