/*------------------------------------------------------------
	Reset css #1b75bc #939597
	  font-family: Montserrat, Arial, Helvetica, sans-serif;
	  'Roboto', sans-serif;		color:#1b75bc;
	  Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
------------------------------------------------------------*/
/*Breakpoints
min-width: 768px
min-width: 1024px
min-width: 1366px
min-width: 1920px
min-width: 2560px*/

/*Media Queries
$mq-retina: "(-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi)";*/

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

@font-face {
  font-family: Bebas;
  src: url('../fonts/BebasKai-Regular.otf');
}

body {
	background-color:black;
	overflow-x: hidden;
}

* {
    padding: 0;
    margin: 0;
}

/* ------------- LOGO -------------- */
.Logo {
	padding-left: 100%; 
	margin-bottom: 2%;
	background-image: url("../Obraz/Logo.png");
	height: 125px;
	width: 125px;
	background-size: contain;
	background-repeat: no-repeat;
 	background-position: center center;
}

.Logo-Menu {
	padding-left: 50%;
	background-image: url("../Obraz/Logo.png");
	height: 70px;
	width: 80px;
	background-size: contain;
	background-repeat: no-repeat;
 	background-position: center center;
}

.Logo-Footer {
	background-image: url("../Obraz/Logo.png");
	height: 80px;
	width: 100px;
	background-size: contain;
	background-repeat: no-repeat;
 	background-position: center center;
}

@media (max-width: 2560px) {
  .Logo {
    height: 110px;
    width: 110px;
  }
  .Logo-Menu {
    height: 60px;
    width: 70px;
  }
}

@media (max-width: 1920px) {
	.Logo {
		height: 100px;
		width: 100px;
	}
   
	.Logo-Menu {
		height: 55px;
		width: 65px;
	}
}

@media (max-width: 1366px) {
	.Logo {
		height: 90px;
		width: 90px;
	}
	
	.Logo-Menu {
		height: 50px;
		width: 60px;
	}
}

@media (max-width: 1024px) {
	.Logo {
		height: 80px;
		width: 80px;
	}
	
	.Logo-Menu {
		height: 45px;
		width: 55px;
	}
}

@media (max-width: 768px) {
	.Logo {
		height: 70px;
		width: 70px;
	}
  
	.Logo-Menu {
		height: 40px;
		width: 50px;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}
}
/* ################################# */
/* ----------- LOADING ------------- */
.loading {
    height: 100vh;
}

.loader {    
    position: fixed;    
    z-index: 9999;  
    top: 0; 
    left: 0;
    width:100%;
    height:100%;    
    background: black; 
    display: flex;
    justify-content: center;    
    align-items: center;
}	
/* ################################### */
/* -------------- MENU --------------- */
.navbar-default .navbar-collapse {
    border-color: rgba(255,255,255,.02);
}


.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}

.navbar-default .nav li a {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
}

.navbar-brand {
  left: 5%;
  position: absolute;
}

@media(min-width: 768px) {
    .navbar-default {
        padding: 25px 0;
	    border: 0;
        background-color: transparent;
        -webkit-transition: padding .3s;
        -moz-transition: padding .3s;
        transition: padding .3s;
    }

    .navbar-default .navbar-brand {
        font-size: 2em;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        transition: all .3s;
    }

    .navbar-default .navbar-nav>.active>a {
        border-radius: 3px;
		text-decoration:none;

    }
 
	.navbar-default.navbar-shrink {
        padding: 10px 0;
        background-color: black;
    }
	
	.navbar-brand {
  		transform: translateX(-0%);
  		left: 10%;
  		position: absolute;
	}

	.navbar-nav .nav-item.active .nav-link,
	.navbar-nav .nav-item:focus .nav-link,
	.navbar-nav .nav-item:hover .nav-link,
	.navbar-nav .nav-item:visited .nav-link {
		text-decoration:none;
		color: #1b75bc !important;
	}
}
/* ################################## */
/* ------------ PARALLAX ------------ */
.forest, 
.forest-layer {
    height: 34vh;
}

#parallax {	
    background-color: black; 
}

.forest {	
    position: relative;	
    z-index: 10;
}

.forest-layer {	
    background-position: bottom;
    background-size: cover;	
    background-repeat: repeat-x;
    width: 100%;
    position: absolute;
}

.forest .parallax {	
    position: fixed;
}

/* SLIDER */
.slideshow {
  list-style-type: none;
}

.slideshow,
.slideshow:after { 
    top: -16px; /*Not sure why I needed this fix*/
	position: fixed;
    width: 100%;
    height: 34vh;
    left: 0px;
    z-index: 0; 
}

.slideshow li span { 
	position: absolute;
    width: 100%;
    height: 34vh;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    animation: imageAnimation 30s infinite linear; 
}

.slideshow li:nth-child(1) span { 
    background-image: url("../Obraz/main/main_jms_1.jpg"); 
	animation-delay: 0s	 
}

.slideshow li:nth-child(2) span { 
    background-image: url("../Obraz/main/main_jms_2.jpg");
    animation-delay: 15s;
}

@keyframes imageAnimation { 
  0% {opacity: 0.0}
  15% {opacity: 1.0}
  50% {opacity: 1.0}
  57% {opacity: 0.0}
  100% {opacity: 0.0}
}

.no-cssanimations .cb-slideshow li span {
	opacity: 1;
}

.parallax-mask {
    background: linear-gradient(to bottom, transparent 40%, black 100%);
    background-size: cover;	
    transform: translateZ(0) scale(1);
    z-index: 8;
}

/* PARALLAX - SCROLL ICON */
.scroll {
    position: absolute; 	
    top: 82%;
    left: 50%;	
}

.scroll a {	
    padding-top: 70px;
}

.scroll a span {	
    position: absolute;
    top: 0;	
    left: 50%;
    width: 19px;
    height: 19px;
    margin-left: -12px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: scroll 1.9s infinite;	
    animation: scroll 1.9s infinite;	
    box-sizing: border-box;
}
    
@-webkit-keyframes scroll { 
    0% {
        -webkit-transform: rotate(-45deg) translate(0, 0); 
        opacity: 0;
        } 
        
    50% { 
        opacity: 1; 
        }
            
    100% { 
        -webkit-transform: rotate(-45deg) translate(-20px, 20px);   
        opacity: 0;
        }
}

@keyframes scroll {
    0% {    
        transform: rotate(-45deg) translate(0, 0); 
        opacity: 0;
        }
    
    50% {
        opacity: 1;
        }
    
    100% {
        transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0; 
        }
}

@media(min-width: 768px) {
	.forest, 
	.forest-layer {
		height: 50vh;
	}
	.slideshow,
	.slideshow:after { 
		height: 50vh;
	}

	.slideshow li span { 
		height: 50vh;
	}
		.scroll {	
    top: 88%;
	}
}

@media(min-width: 992px) {
	.forest, 
	.forest-layer {
		height: 75vh;
	}
	.slideshow,
	.slideshow:after { 
		height: 75vh; 
	}

	.slideshow li span { 
		height: 75vh;

	}
		.scroll {	
    top: 90%;	
	}
	.scroll a span {	
    width: 22px;
    height: 22px;
	}
}
@media(min-width: 1366px) {
	.forest, 
	.forest-layer {
		height: 100vh;
	}
	.slideshow,
	.slideshow:after { 
		height: 100vh;
	}

	.slideshow li span { 
		height: 100vh;
	}
	.scroll {
    top: 85%;
	}
	.scroll a span {	
    width: 28px;
    height: 28px;
	}
}

main {
  position: relative;
  z-index: 98;
  background-color: black;
}

/* Section */
.section {
  min-height: 100vh;
  padding: 55px 10%;
  box-sizing: border-box;
}

.sectionKontak {
  min-height: 100vh;
  padding: 60px 0%;
  box-sizing: border-box;
}

/* Flex layout */
.flex {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
}

.flex>* {
  flex: 1;
  padding: 0 15px 15px 0;
}

.flex>*:first-child {
  flex: 0 1 100%;
}

/* About section */
#About-section {
  padding-top: 5%;
  color: #effef7;
  background: black;
  min-height: 100%;
  width: 100%;
}

/* Row */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* Justify content center */
.justify-content-center {
  justify-content: center !important;
}

/* No gutters */
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* Heading section */
.heading-section {
  display: inline-block;
  margin-bottom: 0;
  color: white;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}

.heading-section h3 {
  font-size: 12px;
  font-weight: 600;
}

@media only screen and (min-width: 768px) {
  .heading-section h3 {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1024px) {
  .heading-section h3 {
    font-size: 16px;
  }
}

@media only screen and (min-width: 1366px) {
  .heading-section h3 {
    font-size: 18px;
  }
}

@media only screen and (min-width: 1920px) {
  .heading-section h3 {
    font-size: 20px;
  }
}

@media only screen and (min-width: 2560px) {
  .heading-section h3 {
    font-size: 22px;
  }
}

/* Heading text */
.Heading-text {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 2.5%;
}

.Heading-text h1 strong {
  color: #1b75bc;
}

.Heading-text h1 {
  text-align: center;
  color: whitesmoke;
  display: inline-block;
  text-transform: uppercase;
  border-bottom: 4px solid #3498db;
  padding-bottom: 10px;
  margin-top: 40px;
}

/* Image about */
.img-About {
  display: block;
  margin: 5% auto 0;
  height: 97%;
  width: 90% !important;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../Obraz/abuot.png);
  box-shadow: 0 2px 15px rgb(86, 86, 86);
  border: 2px solid #f8f9fa; /* Cieńsze obramowanie */
  border-radius: 5px; /* Mniej zaokrąglone rogi */
   box-sizing: border-box;
   box-shadow: none;
  outline: none; 
  transition: border-color 0.3s ease; /* Animacja zmiany koloru obramowania */
}


/* Zmiana koloru obramowania przy najechaniu */
.img-About:hover {
  border-color: #1b75bc; /* Nowy kolor obramowania */
}

/* Wrap about */
.wrap-about h3 {
  font-size: 30px;
  font-weight: 700;
}

.wrap-about p {
  font-size: 19px;
  font-weight: 150;
}

/* Margin utilities */
.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.mb-2,
.my-2 {
  margin-top: 4.5rem !important;
  margin-bottom: 1.5rem !important;
}

/* Flex display */
.d-flex {
  display: flex !important;
}

/* Align items stretch */
.align-items-stretch {
  align-items: stretch !important;
}

/* Block 6 */
.block-6 .media-body p {
  font-size: 16px;
}

/* Block 6 */
.block-6 .media-body h3 {
  font-size: 8px;
  font-weight: bold;
}

@media only screen and (min-width: 768px) {
  .block-6 .media-body h3 {
    font-size: 10px;
  }
}

@media only screen and (min-width: 1024px) {
  .block-6 .media-body h3 {
    font-size: 12px;
  }
}

@media only screen and (min-width: 1366px) {
  .block-6 .media-body h3 {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1920px) {
  .block-6 .media-body h3 {
    font-size: 16px;
  }
}

@media only screen and (min-width: 2560px) {
  .block-6 .media-body h3 {
    font-size: 18px;
  }
}

/* Width 100% */
.w-100 {
  width: 100% !important;
}

/* Display block */
.d-block {
  display: block !important;
}

/* Text center */
.text-center {
  text-align: center !important;
}

/* Padding top */
.pt-md-4,
.py-md-4 {
  padding-top: 1rem !important;
}

/* Justify content center */
.justify-content-center {
  justify-content: center !important;
}

/* Col-md */
.col-md {
  flex-basis: 0;
  flex-grow: 1;
  min-width: 0;
  max-width: 100%;
}

/* Media query for larger screens */
@media (min-width: 768px) {
  .heading-section {
    display: inline-block;
    margin-bottom: 0;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
  }
}

/* Media query for larger screens */
@media (min-width: 992px) {
  .wrap-about h3 {
    font-size: 20px;
  }

  .wrap-about p {
    font-size: 14px;
  }
}

/* Media query for larger screens */
@media (min-width: 1024px) {
  .wrap-about h3 {
    font-size: 25px;
  }

  .wrap-about p {
    font-size: 14px;
  }
}

/* Media query for larger screens */
@media (min-width: 1320px) {
  .wrap-about h3 {
    font-size: 30px;
    font-weight: 700;
  }

  .wrap-about p {
    font-size: 18px;
    font-weight: 150;
  }
}

@media (min-width: 1920px) {
  .wrap-about h3 {
    font-size: 30px;
    font-weight: 700;
  }

  .wrap-about p {
    font-size: 19px;
    font-weight: 150;
  }
}

/* Media query for larger screens */
@media (min-width: 768px) {
  .text-md-left {
    padding-top: 2.5%;
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-top {
    padding-top: 3%;
  }

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

/* Width 100% */
.w-100 {
  width: 100% !important;
}

/* Services 2 padding */
.services-2-padding {
  padding-top: 5%;
}

/* Services 2 */
.services-2 {
  justify-content: left;
}

.services-2 span {
  position: relative;
  font-weight: 300;
  font-size: 50px;
  line-height: 1;
  color: #d1002c;
}

.services-2 span:after {
  position: absolute;
  top: 55px;
  left: 0;
  right: 0;
  height: 1px;
  content: '';
  width: 100%;
  background: #d9d9e1;
}

.services-2 h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.3;
}


.services-2  .services-icon {
	width: 60px;
	color: #1b75bc;
}

.services-2  .services-icon2 {
	padding-left: 20%;
	color: #1b75bc;
	width: 60px;
}

.services-2 .text {
  	padding-left: 10px;
}

@media(min-width: 1024px){
	.services-2 {
	justify-content: center;
}	
}

/* Media query for high-resolution screens */
@media only screen and (-webkit-min-device-pixel-ratio: 1.25) and (min-width: 1366px) {
.heading-section {
font-size: 18px;
display: inline-block;
color: white;
margin-bottom: 0;
font-weight: 600;
letter-spacing: 0.5px;
text-transform: uppercase;
position: relative;
}
	
	.mb-5 {
		margin-top:-2%!important;
		margin-bottom: 1rem!important; 
	}
	.my-5 {
  	margin-top: 1rem !important;
}
}

#Service-section {
	color:#effef7;
	background: black;	 
}

.services-section {
	padding-top: 3%;
	width: 100%;
}

.services-section h1 {
	text-align: center;
  	font-size: 32px;
  	font-weight: 500;
  	margin-bottom: 20px;
}

.services-section h1 strong {
  	color: #1b75bc;
}

.row h3 strong {
  	color: #1b75bc;
}

.service {
  	text-align: center;
  	margin: 20px 0;
}

.service-icon {
  	width: 60px;
  	height: 60px;
  	margin: auto;
  	background: #ecf6ff;
  	border-radius: 50%;
  	color: #1b75bc;
  	line-height: 60px;
  	font-size: 25px;
}

.service-name {
  	font-weight: 600;
  	font-size: 18px;
  	margin: 20px 0;
}

.service-desc {
  	max-width: 400px;
  	margin: auto;
  	color: whitesmoke;
  	font-size: 17px;
}

.owl-dots {
  	text-align: center;
  	margin-top: 40px;
}

.owl-dot {
  	width: 14px;
  	height: 14px;
  	background: #808080 !important;
  	margin: 0 6px;
  	border-radius: 14px;
  	outline: none;
  	transition: .3s linear;
}

.owl-dot.active {
  	width: 36px;
  	background: #1b75bc !important;
}

.owl-dot:hover {
  	width: 36px;
  	background: #1b75bc !important;
}

:root {
  --marquee-width: 80vw;
  --marquee-height: 10vh;
  /* --marquee-elements: 12; */ /* defined with JavaScript */
  --marquee-elements-displayed: 1;
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee {
  width: var(--marquee-width);
  height: var(--marquee-height);
  background-color: black;
  overflow: hidden;
  position: relative;
}
.marquee:before, .marquee:after {
  position: absolute;
  width: 5rem;
  height: 100%;
  content: "";
  z-index: 1;
}
.marquee:before {
  left: 0;
  background: linear-gradient(to right, black 0%, transparent 100%);
}
.marquee:after {
  right: 0;
  background: linear-gradient(to left, black 0%, transparent 100%);
}
.marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
}
/* .marquee-content:hover {
  animation-play-state: paused;
} */
@keyframes scrolling {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
}
.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-align: center; */
  flex-shrink: 0;
  width: var(--marquee-element-width);
  max-height: 100%;
  font-size: calc(var(--marquee-height)*3/4); /* 5rem; */
  white-space: nowrap;
}

@media(min-width: 600px) {
  html { font-size: 12px; }
  :root {
    --marquee-width: 80vw;
    --marquee-height: 16vh;
    --marquee-elements-displayed: 2;
  }
  .marquee:before, .marquee:after { width: 10rem; }
}
@media(min-width: 768px){
  html { font-size: 12px; }
  :root {
    --marquee-width: 80vw;
    --marquee-height: 16vh;
    --marquee-elements-displayed: 2;
  }
  .marquee:before, .marquee:after { width: 15rem; }
}
@media(min-width: 1024px){
  html { font-size: 12px; }
  :root {
    --marquee-width:80vw;
    --marquee-height: 16vh;
    --marquee-elements-displayed: 4;
  }
  .marquee:before, .marquee:after { width: 15rem; }
}

	
@media only screen and (-webkit-min-device-pixel-ratio: 1.25) and (min-width: 1366px) {
.Heading-text {
	text-align: center;
  	font-size: 29px;
  	font-weight: 500;
	padding-bottom:0;
}

.Heading-text h1 strong{
  	color: #1b75bc;
}

.Heading-text h1{
  	text-align: center;
	color:whitesmoke;
  	display: inline-block;
 	text-transform: uppercase;
  	border-bottom: 4px solid #3498db;
  	padding-bottom: 5px;
  	margin-top: 0px;
}
	.service {
		margin: 0 0 0 0;
}
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
}

.separator::before, .separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #fff;
}

.separator::before {
    margin-right: .50em;
	margin-left: .50em;	
}

.separator::after {
    margin-left: .50em;
	margin-right: .50em;
}

.align-items-stretch:hover {
    color: #1b75bc;
}

/* --- CONTACT --- */
#Contact-section {
	background:black;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100vh;
	position: relative;
	width: 100%;
	min-height:20.5vh;
	color: #FFF;
	z-index:-100;
}

#Contact-section .container > .row {
  	padding-left: 5%;
  	padding-right: 5%;
}

#Contact-section h3 {
	text-align: center;
}

#Contact-section hr {
	border-color: rgba(255,255,255,.8); 
}

/* --- TITLE SECTION --- */
.TitleSection {
    background-image:url("../Obraz/Kontakt.png");
  	color:white;
  	height:17vh;
	width: 100vw;
	text-transform: uppercase;
  	position:relative;
  	padding:0;
		-webkit-mask-image: -webkit-gradient(linear, left 90%, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)))
}

.TitleSection h1 { 
  	margin:0;
  	position: absolute;
  	top: 50%;
  	left: 50%;
	letter-spacing: 0.8px;
  	transform: translate(-50%, -50%);
  	font-family: Montserrat, Arial, Helvetica, sans-serif;
  	font-weight: bold;
  	font-size:4em;
	text-shadow: 2px 2px 8px black;
}

.ParalaxTitleSection {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/* --- CONTACT BOX --- */
.map-container {
  	width:100% !important;
	height: 48vh !important;
   	left:0px !important;
 } 

.map-container iframe {
	left:0;
	position:absolute;
}

/* --- EMAIL --- */
.whiterow{
	left: 100%;
}

#form-feedback {
	color: #5cb85c;
	opacity: 0;
	margin-right: 10px;
	padding-top:2px;
	font-weight:bold;
	transition: all .5s ease-out;
		-webkit-transition: all .5s ease-out;
		-moz-transition: all .5s ease-out;
		-o-transition: all .5s ease-out;
}

#form-feedback2 {
	color: red;
	opacity: 0;
	margin-right: -25%;
	padding-top:2px;
	font-weight:bold;
	transition: all .5s ease-out;
		-webkit-transition: all .5s ease-out;
		-moz-transition: all .5s ease-out;
		-o-transition: all .5s ease-out;
}

@media(min-width: 768px) {
	.form-group {
	color:white;
}
   .hidden-mobile {
          display: none;
        }
	
.whiterow {
	background: rgba(0, 0, 0, 0.9);
	z-index: 100;
	left: 63%;
	top: 0px;
	height: 50vh !important;
}

.btn-success{
	width:100%;
	height:45%;
}

.btn span {
	font-size:17px
}
}

/* --- FOOTER --- */
.site-footer {
  	background-color:black;
  	padding:10px 0 0 10px;
  	line-height:24px;
	color:#737373;
	z-index: 89;
}

.site-footer hr {
  	border-top-color:#bbb;
  	opacity:0.5
}

.site-footer a {
	color:#737373;
}

.site-footer .links a:hover {
  	color:#1b75bc;
  	text-decoration:none;
}

.copyright-text {
	text-align: center;
  	margin:0;
  	font-size: 10px;
}
.container a {
	text-decoration: none;
}

.footer-navigation .Logo-Footer {   
	padding-left: 100%;
}
.footer-top{
	padding-top:4%;
}

.links{
	padding-top:5%;
}

.footer-navigation a {
    text-decoration: none;
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #8f9296;
	justify-content: center;    
    align-items: center;
	text-align: center;
	font-weight:bold;
}

.footer-navigation h3  {
	text-decoration: none;
    text-transform: uppercase;
	text-align: center;
	font-size: 18px;
    color: #8f9296;
    font-weight:bold;
}

.footer-navigation p {
    font-size: 13px;
    text-decoration: none;
}

.footer-navigation p.links a {
    color: #8f9296;
    text-decoration: none;
}

.opening-time {
    padding-left:0;
}

.opening-time li{
      list-style: none;
	  
}
.opening-time li span{
    float:left;
	padding-left: 10px;
	padding-right: 10px;
}
.fa-times	{
    color: red;
	height: 15px;
	width: 15px;
}

.fa-times strong {
    color: red;
}

.fa-check {
	height: 15px;
	width: 15px;
	color: green;
}

.footer-contacts p {
    display: inline-block;
    color: #8f9296;
    vertical-align: middle;
	padding-top:2%;
	font-weight:bold;
	font-size: 11px;
}

.footer-contacts p a {
    color: #1b75bc; /*#1b75bc*/
	font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    text-decoration: none;
	font-weight:bold;
	font-size: 11px;
}

.fa.footer-contacts-icon {
    background-color: #33383b;
    color: #fff;
    font-size: 14px;
    width: 28px;
    height: 28px;
    border-radius: 80%;
    text-align: center;
    line-height: 28px;
    margin: 5px 15px 10px 0;
}

@media (min-width: 992px) {
.footer-contacts p {
	font-size: 10px;
}

.footer-contacts p a {
	font-size: 10px;
}
}
@media (min-width: 1199px) {
.footer-contacts p {
	font-size: 14px;
}

.footer-contacts p a {
	font-size: 14px;
}
}



