@charset "UTF-8";
/*
    Farnosti Nizny Hrusov 
    CSS v1.0 , 21.02.2020
    Bootstrap v4.4.1
    by Matus Bartko
*/
body {
  font-family: "Montserrat";
}
b{
    font-weight:700;    
}

/*
Standard declaration
*/
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.max-width {
  max-width: 100%;
}

/*
    Buttons
*/
.btn {
  background: #2C5FA1;
  color: white;
  border-radius: 0px;
  padding: 9px 20px;
  position: relative;
}

.btn:after {
  content: "";
  display: block;
  position: absolute;
  left: 20px;
  bottom: 10px;
  width: 0;
  height: 1px;
  background: white;
  transition: .3s all ease-in-out;
}

.btn:hover {
  color: white;
  color:white !important;
}

.btn:hover:after {
  width: calc(100% - 40px);
}

.btn-small {
  padding: 6px 10px;
  font-size: 14px;
}

.btn-small:after {
  left: 10px;
  bottom: 7px;
}

.btn-small:hover:after {
  left: 10px;
  width: calc(100% - 20px);
}

.btn-style-2 {
  border: 1px solid #2C5FA1;
  border-radius: 8px;
  padding: 10px 40px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
}

/*
0 Navigation
*/
#nav-icon1,
#nav-icon2,
#nav-icon3,
#nav-icon4 {
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  margin: 15px 15px 0 0;
  z-index: 100;
}

#nav-icon1 span,
#nav-icon3 span,
#nav-icon4 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: black;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon4 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(2) {
  top: 8px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(3) {
  top: 16px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -2px;
  left: 0px;
}

#nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon4.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 20px;
  left: 0px;
}

/* 1. Navigation 
 -------------*/
.mobile-menu {
  position: fixed;
  display: none;
  z-index: 30;
  top: 80px;
  background: white;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.mobile-menu ul {
  padding: 0;
  background: white;
}

.mobile-menu ul li {
  list-style-type: none;
  padding: 15px 0;
  text-align: center;
  border-bottom: 1px solid #d4d4d4;
}

.mobile-menu ul li a {
  color: black;
}

.mobile-menu ul li a:hover {
  color: black;
}

.mobile-menu ul li .submenu {
  border-top: 1px solid #d4d4d4;
  margin-top: 10px;
  margin-bottom: -15px;
  display: none;
}

.grey-bg {
  top: 0;
  background: #161616;
}

nav {
  background: white;
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0;
  z-index: 100;
  padding: 0 100px;
  transition: .3s all ease-in-out;
}

nav .logo {
  margin: 15px 0;
}

nav .logo img {
  max-width: 250px;
}

nav .navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

nav .navigation ul {
  float: right;
  padding: 0;
  margin: 0;
}

nav .navigation ul li {
  margin: 0px 15px;
  padding: 0;
  display: inline-block;
  list-style-type: none;
  position: relative;
}

nav .navigation ul li:hover ul {
  display: block;
  position: absolute;
  top: 60px;
  left: -20px;
  background: white;
  z-index: 30;
}

nav .navigation ul li a {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  transition: .2s all ease-in-out;
}

nav .navigation ul li a:hover {
  text-decoration: none;
  color: #2C5FA1;
}

nav .navigation ul li ul {
  display: none;
  margin: 0;
}

nav .navigation ul li ul li {
  padding: 10px 15px;
  width: 100%;
  position: relative;
}

nav .navigation ul li ul li a {
  display: block;
  text-decoration: none;
  margin-left: -1px;
  white-space: nowrap;
  color: #333;
}

nav .navigation ul li ul li a:hover {
  float: none;
  text-decoration: underline;
}

nav .navigation ul .active {
  position: relative;
}

nav .navigation ul .active a {
  color: #2C5FA1;
}

nav .navigation ul .active:after {
  display: block;
  position: absolute;
  content: "";
  bottom: 9px;
  height: 5px;
  width: 100%;
  left: 0;
  background: #2C5FA1;
}

nav .mobile-menu-hamburger {
  float: right;
  margin-top: 15px;
  margin-right: 15px;
}

.main-nav-scrolled {
  position: fixed;
  top: 00px;
  width: 100%;
  z-index: 20;
  left: 0;
  transition: .3s all ease-in-out;
}

/* 1.5. Breadcrumb
 -------------*/
.breadcrumb {
  position: relative;
  margin-top: 110px;
  margin-bottom: 0;
  height: 60vh;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  overflow: hidden;
  background-color: black;
}

.breadcrumb:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: .3;
}

.breadcrumb .slider{
    max-width:103vw;    
}

.breadcrumb img {
  max-width: 100%;
  opacity: .5;
  width:100%;
}

.breadcrumb h4 {
  padding-left: 100px;
  position: absolute;
  font-size: 42px;
  color: white;
  z-index: 2;
  width: 50vw;
  font-weight: 300;
  line-height: 52px;
}

.small-breadcrumb {
  height: 250px;
}

.no-breadcrumb {
  margin-top: 150px;
}

/* 2. Main section 
 -------------*/
main {
  margin-top: 30px;
  padding: 0 100px;
  min-height:60vh;
}

/* 3. Section Title
 -------------*/
.container-fluid .section-title:nth-child(1n+2) {
  margin-top: 50px;
}

.section-title {
  margin-bottom: 50px;
}

.section-title span {
  font-size: 14px;
  color: #707070;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
}

.section-title .line {
  display: block;
  width: 30px;
  height: 2px;
  background: #707070;
  margin: 10px 0 20px;
}

.section-title p {
  width: 80%;
  font-size: 16px;
  color: #73777f;
}

.section-content img{
    max-width:100%;    
}

/* 4. Blog 
 -------------*/
.article-post {
  margin-bottom: 50px;
  overflow:hidden;
}

.article-post .image {
  float: left;
  margin-right: 20px;
}

.article-post .image img {
  max-width: 100%;
}

.article-post .content h3 {
  font-size:22px;
  font-weight: 600;
}

.article-post .content .info {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 10px;
}
.article-post .content .info i {
    margin-right:5px;    
}

.farskyoznam img {
  margin-bottom: 50px;
  max-width: 100%;
}

/* x. Informácie 
 -------------*/
.info-item {
  margin-bottom: 100px;
}

.info-item .circle-image {
  float: left;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 40px;
}

.info-item h2 {
  font-weight: 600;
}

.info-item p {
  width: 80%;
}

/* x. Isotope 
 -------------*/
.isotope .item{
    width:32%;
    display:inline-block;
    margin-bottom:20px;
}

/* x. Contact 
 -------------*/
.contact img {
  
  margin-bottom: 20px;
}

.contact h4 {
  font-size: 18px;
  font-weight: 700;
}

.contact ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.contact .input-group input[type=text], .contact .input-group input[type=email] {
  width: 100%;
  padding: 10px;
  margin-bottom: 40px;
}

.contact .input-group textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 30px;
}

/* x. Image addon 
 -------------*/
.image-addon {
  margin-top: 50px;
  padding: 0 100px;
}
.image-addon img{
  padding: 0 10vw;    
}

/* x. Albums 
 -------------*/
.albums{
    text-align:center;
    margin-bottom:25px;
}
.albums img{
    margin-bottom:20px;
}
.albums h2{
    font-size: 20px;
    color:black;
}

/* x. Footer 
 -------------*/
footer {
  position: relative;
  border-top: 1px solid #333;
  padding: 30px 100px;
  margin-top: 50px;
  background: url("../themes/farnost-nizny-hrusov/assets/img/footer-bg.png");
  background-size:cover;
  background-position:center center;
}

footer:before {
  background-size: cover;
  background-position: center center;
  content: "";
  display: block;
  position: absolute;
  top: -240px;
  left: 9%;
  opacity: .15;
  width: 80vw;
  height: 40vh;
  z-index: -1;
}

footer img {
  margin-bottom: 20px;
}

footer h4 {
  font-size: 22px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}

footer p {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 20px;
}

footer ul {
  list-style-type: none;
  padding: 0;
}

footer ul li {
  font-size: 15px;
  color: #474747;
  line-height: 30px;
  font-weight: 500;
}

footer ul li a {
  transition: .1s all ease-in-out;
}

footer ul li a:hover {
  color: #2C5FA1;
}

footer .footer-post img {
  float: left;
  max-width: 188px;
  margin-right: 20px;
}

footer .footer-post h5 {
  font-size: 22px;
  font-weight: 600;
}

footer .social ul li {
  float: left;
  border-radius: 50%;
  background: #a7a7a7;
  margin: 0 10px;
  padding: 5px;
  width: 40px;
  text-align: center;
  height: 40px;
  color: white;
  transition: .1s all ease-in-out;
}

footer .social ul li:hover {
  background: #2C5FA1;
}

footer .copyright {
  padding: 20px 0 0px;
}

footer .copyright p {
  margin: 0;
}

footer .copyright p a {
  color: #2C5FA1;
}

table{
    font-size:18px;    
}

table th {
  padding-right: 15px;
}

table td {
  padding-right: 15px;
}

/* Customize the label (the container) */
.custom-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #aaaaaa;
}

/* On mouse-over, add a grey background color */
.custom-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {
  left: 8px;
  top: 5px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#accordion ul{
    list-style-type:none;
}

.info{
    margin-bottom:15px;
}
.info i{
    margin-right:10px;    
}
.simpleParallax{
    height:100%;    
}
.pagination li{
  display: inline-block;
}

.pagination a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  border: 1px solid #ddd;
}

.pagination a.active {
  background-color: #2C5FA1;
  color: white;
  border: 1px solid #2C5FA1;
}

.pagination li a:hover:not(.active) {background-color: #ddd;}
.pagination .active a{background: #2C5FA1;color:white;}

.pagination li:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.pagination li:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}