/**
* Template Name: Chillibrani
* Updated: 15.7.2023
* Template URL: https://chillibrani.cz
* Author: Fresh Mill studio, tvorba webovych stranek
* License: https://www-freshmill.cz
*/

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Readex+Pro:wght@200;300;400;500;600;700&display=swap');

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #ce1212;
  --color-secondary: #37373f;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Poppins', sans-serif;
  color: #000
}

a {
  color: #eb2c2f;
  text-decoration: none;
}

a:hover {
  color: #ec2727;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Readex Pro', sans-serif;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 35px 0;
}


/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #000;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #eb2c2f;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  -webkit-box-shadow: 0px 0px 35px -14px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 35px -14px rgba(0,0,0,0.75);
box-shadow: 0px 0px 35px -14px rgba(0,0,0,0.75);
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }
}

.header.sticked {
  -webkit-box-shadow: 0px 0px 35px -14px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 35px -14px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 35px -14px rgba(0,0,0,0.75);
  background-color: #fff;
}

img.custom-logo {
  width: 100%;
  height: 85px;
  object-fit: contain;
}
.social-icons {
  display: flex;
}
button.btn-facebook {
  background-color: #1877f2;
  border: none;
  border-radius: 10px 0 0 10px;
  color: #fff;
  padding: 15px 25px;
  font-size: 20px;
  height: 50px;
  width: 50px;
  display: flex;
  align-content: center;
  justify-content: center;
}
button.btn-facebook:hover {
  background-color: #000;
}
button.btn-instagram {
  background-color: #e1306c;
  border: none;
  border-radius: 0 10px 10px 0;
  color: #fff;
  font-size: 20px;
  padding: 15px 25px;
  height: 50px;
  width: 50px;
  display: flex;
  align-content: center;
  justify-content: center;
}
button.btn-instagram:hover {
  background-color: #000;
}
section {
  scroll-margin-top: 90px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 17px;
    font-family: 'Readex Pro', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar ul li a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    bottom: -35px;
    left: 0;
    background-color: #eb2c2f;
    visibility: hidden;
    width: 0px;
    transition: all 0.1s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: #eb2c2f;
  }
  .navbar .dropdown ul li a:before {
      height: 0;
    }
  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: 'Readex pro', sans-serif;
    border-bottom: 20px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
    border-color: #eb2c2f;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #eee;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: var(--color-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}
@media only screen and (max-width: 575px) {
  img.custom-logo {
    height: 50px;
  }
}
/*--------------------------------------------------------------
# UVOD
--------------------------------------------------------------*/
/* SLIDER */

.title h2 {
  font-size: 50px;
  font-weight: 600;
  color: #000;
  padding-bottom: 25px;
}
@media only screen and (max-width: 991px) {
  .title h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .title h2 {
    font-size: 25px;
  }
}
body {
    background-image: url('/wp-content/uploads/bg.jpg');
    background-position: left top;
    background-size: auto;
    background-repeat: repeat;
    background-attachment: scroll;
}

/* BUTTONS */
button.btn-red-border {
  border: 2px solid #000;
  background-color: transparent;
  padding: 15px 45px;
  color: #000;
  font-weight: 500;
  border-radius: 0 20px 0 20px;
  transition: .5s;
}
button.btn-red-border:hover {
  background-color: #000;
  color: #fff;
  transition: .5s;
}

/*--------------------------------------------------------------
# UVOD
--------------------------------------------------------------*/
/* SLIDER */
section.slider-bg {
  background-color: #ec5c1f;
  padding-bottom: 0;
}

/* UVODNI POPIS WEBU */
section.uvodni-popis-bg {

}
.uvodni-popis h1 {
  font-size: 35px;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
}
@media only screen and (max-width: 991px) {
  .uvodni-popis h1 {
  font-size: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .uvodni-popis h1 {
  font-size: 21px;
  }
}
@media only screen and (max-width: 575px) {
  .uvodni-popis h1 {
  font-size: 18px;
  }
}

/* BLOG */
section.blog-bg {
  padding-top: 45px;
  padding-bottom: 45px;
}
.blogbox {
  border-top: 7px solid #fa0304;
  background-color: #fff;
  margin-bottom: 25px;
  box-shadow: 0px 4px 20px rgba(43, 89, 255, 0.08);
}
.blogbox .obrazek img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
/* [1] The container */
.blogbox .obrazek {
  height: 300px; /* [1.1] Set it as per your need */
  overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}

/* [2] Transition property for smooth transformation of images */
.blogbox .obrazek img {
  transition: transform .5s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.blogbox .obrazek:hover img {
  transform: scale(1.5);
}


.blogbox .desc {
  padding: 25px;
}
.blogbox .desc  h3 {
  font-size: 20px;
  color: #000;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 18px;
}
.blogbox .desc p {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  line-height: 1.5;
}
.blogbox .cta {
  padding: 0;
}
.blogbox .cta button.btn-red {
  border: none;
  background-color: #eb2c2f;
  padding: 15px 35px;
  color: #fff;
  font-weight: 500;
  border-radius: 0 25px 0 0;
  transition: .5s;
}
.blogbox .cta button.btn-red:hover {
  background-color: #000;
}

.buttons {
  margin-top: 35px;
}
@media only screen and (max-width: 991px) {
  .blogbox .desc  h3  {
  font-size: 15px;
  }
  .blogbox .desc p {
    font-size: 13px;
  }
  .blogbox {
    padding: 5px;
  }
}
/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
/* FOOTER */
footer {
  background-color: #fff;
}
section.paticka-bg {
  border-top: 8px solid #eb2c2f;
}
.paticka-bg p {
  font-size: 16px;
  color: #000;
  font-weight: 700;
  line-height: 1.5;
}
.paticka-bg .logos {
  display: flex;
  justify-content: center;
  align-items: center;
}
.paticka-bg .logos img {
  width: 100%;
  height: 90px;
  object-fit: contain;
}

/* SOCKET */
section.socket-bg {
  border-top: 3px solid #f0ece3;
}
.socket-bg .left-side {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.socket-bg .left-side p {
  margin-bottom: 0;
  font-size: 15px;
  color: #000;
  font-weight: 400;
}
.socket-bg .left-side a {
  color: #eb2c2f;
  text-decoration: underline;
  font-weight: 600;
}
.socket-bg .left-side a:hover {
  color: #000;
  text-decoration: none;
}

.socket-bg .right-side {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}
.socket-bg .right-side p {
  margin-bottom: 0;
  font-size: 15px;
  color: #000;
  font-weight: 400;
}
.socket-bg .right-side a {
  color: #eb2c2f;
  text-decoration: underline;
  font-weight: 600;
}
.socket-bg .right-side a:hover {
  color: #000;
  text-decoration: none;
}
@media only screen and (max-width: 991px) {
  .paticka-bg p {
    font-size: 12px;
  }
  .socket-bg .left-side {
    justify-content: center;
  }
  .socket-bg .right-side {
    justify-content: center;
  }
  .socket-bg .left-side p {
    font-size: 13px;
  }
  .socket-bg .right-side p {
    font-size: 13px;
  }
  .paticka-bg .logos img {
    height: 60px;
  }
}
@media only screen and (max-width: 575px) {
  .paticka-bg .logos {
    display: block;
  }
}

/*--------------------------------------------------------------
# BLOG
--------------------------------------------------------------*/
/* BREADCRUMBS */
section.bread-bg {
  padding-top: 120px;
  padding-bottom: 0;
}

/*--------------------------------------------------------------
# PODSTRANKA
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# DETAIL CLANKU
--------------------------------------------------------------*/
.detailclanku {
  padding-top: 160px;
}
.detailclanku .obrazek > img {
  max-width: 100%;
  height: auto;
  margin: 16px 0 32px;
}
@media only screen and (max-width: 1199px) {
  .detailclanku h1 {
    font-size: 30px;
  }
  .detailclanku h2 {
    font-size: 22px;
  }
  .detailclanku p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .detailclanku h1 {
    font-size: 20px;
  }
  .detailclanku h2, .detailclanku h3, .detailclanku h4, .detailclanku h5, .detailclanku h6 {
    font-size: 18px;
    line-height: 1.5;
  }
  .detailclanku p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .detailclanku {
    padding-top: 100px;
  }
  .detailclanku h1 {
    font-size: 18px;
  }
  .detailclanku h2, .detailclanku h3, .detailclanku h4, .detailclanku h5, .detailclanku h6 {
    font-size: 16px;
    line-height: 1.5;
  }
}

/*--------------------------------------------------------------
# FORMULAR
--------------------------------------------------------------*/
.buttonred {
  font-family: 'Readex Pro', sans-serif;
  color: #fff;
  background-color: #1d2327;
  border: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 0px;
  clear: both;
  width: 100%;
  line-height: 3.2;
  display: inline-block;
  transition: all 0.5s, color 0.3s 0.3s;
  cursor: pointer;
}
.buttonred:hover {
  background-color: #fd2a2a;
  color: #fff;
}
.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-acceptance-missing {
	border: 5px solid red;
	margin-top: -30px;
}
.wpcf7 span.wpcf7-not-valid-tip {
	background-color: #f3f2f2;
	color: #333;
	font-size: 12px;
	padding: 5px;
}
.wpcf7 .wpcf7-mail-sent-ok {
	border: 5px solid white;
	margin-top: -30px;
}

div.wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 1em;
    font-size: 14px;
}
.wpcf7-form-control.wpcf7-text {
    border: 2px solid #e5e5e5;
    background-color: #ffffff;
    border-radius: 3px;
    height: 50px;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 600;
    width: 100%;
    padding-left: 25px;
    font-size: 14px;
    margin-top: 15px;
}
.wpcf7-form-control {
    margin-top: 15px;
}
.wpcf7-form-control.wpcf7-textarea {
    border: 2px solid #e5e5e5;
    background-color: #ffffff;
    border-radius: 3px;
    height: 50px;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 600;
    width: 100%;
    padding-left: 25px;
    padding-top: 15px;
    height: 180px;
    font-size: 14px;
}
.wpcf7-form-control.wpcf7-date.wpcf7-validates-as-required.wpcf7-validates-as-date {
    border: 2px solid #e5e5e5;
    background-color: #ffffff;
    border-radius: 3px;
    height: 50px;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 600;
    width: 100%;
    padding-left: 25px;
    font-size: 14px;
}
.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-tel {
    border: 2px solid #e5e5e5;
    background-color: #ffffff;
    border-radius: 3px;
    height: 50px;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 600;
    width: 100%;
    padding-left: 25px;
    font-size: 14px;
}
.wpcf7 :focus {
  color: #333;
  background-color: #fec3c142 !important;
  outline:0;
  border: 2px solid #fc4644;
}

.wpcf7-form-control.wpcf7-number {
    border: 2px solid #e5e5e5;
    background-color: #ffffff;
    border-radius: 3px;
    height: 50px;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 600;
    width: 100%;
    padding-left: 25px;
    font-size: 14px;
}
.wpcf7-select {
    border: 2px solid #e5e5e5;
    background-color: #ffffff;
    border-radius: 3px;
    height: 50px;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 600;
    width: 100%;
    padding-left: 25px;
    font-size: 14px;
    margin-top: 15px;
}
.wpcf7-form-control-wrap.yourmessage:before {
  width: 0rem !important;
  position: relative;
}
.wpcf7-form-control-wrap.your-name:before {
  width: 0rem !important;
  position: relative;
}
.wpcf7-form-control-wrap.last-name:before {
  width: 0rem !important;
}
.wpcf7-form-control-wrap.phone-number:before {
  width: 0rem !important;
}
.wpcf7-form-control-wrap.youremail:before {
  width: 0rem !important;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    background-color: #ca0e0eb3;
    border: 2px solid #ca0e0e;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
}
::-webkit-input-placeholder { /* WebKit browsers */
    color: #686868 !important;
    opacity: 1;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #686868 !important;
    opacity: 1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #686868 !important;
    opacity: 1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #686868 !important;
    opacity: 1;
}
