/*--------------------
IMPORT Google Fonts
--------------------*/

/* font for menu, headings, text */
@import url(https://fonts.googleapis.com/css?family=Krona+One);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,700);



/*--------------------
COLOURS
--------------------*/

/*	Navy Blue:	HEX=0b162a	RGB=11,22,42
	Orange:		HEX=ec3f1d	RGB=236,63,29
	White:		HEX=ffffff	RGB=255,255,255
	Black:		HEX=000000	RGB=0,0,0
*/



/*--------------------
1. GENERAL
--------------------*/

* {
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}
html, body {
	font-size: 16px;
	min-width: 303px;
	scroll-behavior: smooth;
}
a {
	text-decoration: none;
}



/*--------------------
2. HEADER
--------------------*/

nav {
	position: sticky;
	top: -120px;
	z-index: 10;
	font-size: 1rem;
}
.row-nav {
	width: 100%;
	height: 70px;
}

/* Logo, Title */
#logo-title {
	height: 120px;
	padding-top: 30px;
	background-color: #0b162a;
}
.logotitle {
	float: left;
}
#logo {
	width: 15%;
	height: 80px;
	background-image: url(../images/logo_80.png);
    background-position: 30px center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
	-o-background-size: contain;
    background-size: contain;
}
#title {
	width: 85%;
	height: 80px;
	background-image: url(../images/name_80.png);
    background-position: 37% center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
	-o-background-size: contain;
    background-size: contain;
}

/* Search */
#search {
	background-color: #0b162a;
	padding-top: 20px;
	padding-left: 30px;
}
#searchfield {
	height: 100%;
	position: relative;	
}
#searchf {
	height: 45px;
	width: 10%;		
	min-width: 200px;			
	background-color: #0b162a;
	border-radius: 15px;			
	border: 2px solid #ec3f1d;
	padding: 10px;
	color: #ffffff;
	margin-right: 10px;
	position: relative;
	top: -10px;
	font-family: Roboto, Arial, sans-serif;		
	font-size: 1em;
	background-image: none;
   	background-position: -100px 3px; 
   	background-repeat: no-repeat;
    -webkit-transition: width 3s ease-in-out, background-position 5s ease-in-out; 
    transition: width 3s ease-in-out, background-position 5s ease-in-out;
}
#searchf:focus {
	outline: none;
	width: 1000px;
    background-image: url('../images/logo_search_38.png');
   	background-position: 170% 3px;
}
#searchbtn {
	width: 35px;
	height: 35px;
	background-color: #0b162a;
	background-image: url("../images/search_30.png");
	background-position: center;
	background-repeat: no-repeat;
	border-style: none;
	position: relative;
	top: 3px;
	display: inline-block;
}
#searchbtn:hover {
	cursor: pointer;
}
#searchbtn:focus {
	outline: none;
}
/* Search message - Modals */
.modal {
    display: none; 
    position: fixed; 
    z-index: 11; 
    padding-top: 100px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.9);
}
#newModal1 #newMessage1, #newModal2 #newMessage2, #newModal3 #newMessage3, #newModal4 #newMessage4, #newModal5 #newMessage5, #newModal6 #newMessage6, #newModal7 #newMessage7 {
	margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;				
    text-align: center;
    line-height: 1.6;
    padding: 20px 0;
    height: 150px;
	color: #ffffff;
	font-family: Roboto, Arial, sans-serif;		
	font-size: 16px;
	text-transform: none;
}
#newModal1 #newClose1, #newModal2 #newClose2, #newModal3 #newClose3, #newModal4 #newClose4, #newModal5 #newClose5, #newModal6 #newClose6, #newModal7 #newClose7 {
	position: absolute;
    top: 15px;
    right: 35px;
    font-size: 30px;
    transition: 0.3s;
    transition: color 0.4s;
    color: #ec3f1d;
	font-family: "Krona One", Calibri, sans-serif;
}
#newModal1 #newClose1:hover, #newModal2 #newClose2:hover, #newModal3 #newClose3:hover, #newModal4 #newClose4:hover, #newModal5 #newClose5:hover, #newModal6 #newClose6:hover, #newModal7 #newClose7:hover {
	cursor: pointer;
}
a.modal-link {
	color: #ec3f1d;
	transition: color 0.4s;
}
a.modal-link:hover {
	color: #ffffff;
}

/* Navigation */
#navigation {
	padding-top: 15px;
	padding-left: 30px;
	background-color: #0b162a;
	font-family: "Krona One", Calibri, sans-serif;	
	font-size: 1.125em;	
	text-transform: uppercase;
}
.menu {
	width: 15%;	
	max-width: 200px;
	height: 40px;	
	float: left;
	padding-top: 10px;
	padding-left: 10px;
	margin-right: 20px;
}
.menu a {
	color: #ec3f1d;
	display: block;
	transition: color 0.4s;
}
.menu a:hover {
	color: #ffffff;
}
.active a {
	color: #ffffff;
}
#user-ico {
	color: #ec3f1d; 
    font-size: 45px;
    transition: color 0.4s;
}
#user-ico:hover {
	color: #ffffff;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
	left: 0px;
	background-color: #0b162a;
	max-width: 190px;
    min-width: 95%;
    z-index: 1;
	text-align: left;
	text-transform: uppercase;
	padding-top: 12px;
	border-radius: 10px;
}
.dropdown-content a {
    color: #ec3f1d;
    padding: 12px 10px;
    text-decoration: none;
    display: block;
	border-radius: 10px;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown-user {
    position: relative;
    display: inline-block;
    float: right;
    right: 30px;
	top: -10px;
}
.dropdown-content-user {
    display: none;
    position: absolute;
	left: -70px;
	top: 52px;
    background-color: #0b162a;
    min-width: 100px;
    z-index: 1;
	text-align: left;
	text-transform: uppercase;
	border-radius: 10px;
	padding-top: 12px;
}
.dropdown-content-user a {
    color: #ec3f1d;
    padding: 12px 10px;
    text-decoration: none;
    display: block;
	border-radius: 10px;
	transition: color 0.4s;
}
.dropdown-user:hover .dropdown-content-user {
    display: block;
}
.dropdown-content-user a:hover {
	color: white;
}



/*--------------------
3. SECTION
--------------------*/

section {
	font-size: 1rem;
}

/* Site content section */
#site-content {
	width: 100%;
	height: 400px;
	padding-top: 50px;
}
.empty {
	width: 8%;
	height: 300px;
	float: left;
}
.site-content-section {
	width: 24%;
	height: 300px;
	float: left;
	margin: 0px 2%;
	font-family: "Krona One", Calibri, sans-serif;	
	font-size: 1.6875em;	
	text-transform: uppercase;
}
.site-content-section p {
	height: 20%;
	background-color: #0b162a;
	color: #ec3f1d;
	text-align: center;
	padding-top: 12px;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}
.site-content-section a {
	display: block;
	height: 80%;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
	-o-background-size: cover;
    background-size: cover;
    border-bottom-left-radius: 15px; 
    border-bottom-right-radius: 15px;
    transition: 1.5s linear;
}
.site-content-section a:hover {
	border-top-right-radius: 15px;
	border-top-left-radius: 15px;
	opacity: 0.7;
}
#bikes-link {
	background-image: url(../images/bikes_small_blue.jpg);
}
#bikes-link:hover {	
	background-image: url(../images/bikes_small_orange.jpg);
}
#accessories-link {
	background-image: url(../images/accessories_small_blue.jpg);	
}
#accessories-link:hover {
	background-image: url(../images/accessories_small_orange.jpg);	
}
#clothing-link {
	background-image: url(../images/clothing_small_blue.jpg);	
}
#clothing-link:hover {
	background-image: url(../images/clothing_small_orange.jpg);	
}

/* Promo section */
#promo {
	width: 100%;
	height: 70px;
	background-color: #0b162a;
	border-radius: 10px;
}
#promo-one, #promo-two {
	width: 50%;
	height: 70px;
	float: left;
}
#promo-one {
	border-right: 2px solid #ec3f1d;
}
#promo-two {
	border-left: 2px solid #ec3f1d;
}
a.promo-discount {
	display: block;
	width: 100%;
	height: 70px;
	text-decoration: none;
	position: relative;
}
p.promo-big, p.promo-small {
	width: 60%;
	padding: 0px;
	margin: 0px auto;
	color: #ec3f1d;
	text-align: center;
	position: relative;
	top: 7px;
	display: block;	
}
p.promo-big {
	font-family: "Krona One", Calibri, sans-serif;		
	text-transform: uppercase;
	font-size: 1.3125em;
	margin-top: 3px;
}
p.promo-small {
	font-family: Roboto, Arial, sans-serif;		
	font-size: 1em;
	margin-top: 7px;
}
#shopping-ico, #group-ico {
	position: relative;
	top: 14px;
	left: 30px;
	font-size: 40px;
	display: block;
	width: 20%;
	float: left;
	color: #ec3f1d;
	opacity: 1;
	-webkit-animation: animationpromo 3s linear infinite;
    animation: animationpromo 3s linear infinite;
}
.promo-big span {
	-webkit-animation: animationpromo 3s linear infinite;
    animation: animationpromo 3s linear infinite;
}
@-webkit-keyframes animationpromo {
	0% {color: #ec3f1d;;}
	50% {color: white;}
	100% {color: #ec3f1d;;}
}
@keyframes animationpromo {
	0% {color: #ec3f1d;;}
	50% {color: white;}
	100% {color: #ec3f1d;;}
}

/* Contact section */
#contact {
	width: 100%;
	height: 600px;
}
#map {
	width: 45%;
	height: 100%;
	float: left;
	padding-top: 50px;
}
#contact-details {
	width: 55%;
	height: 100%;	
	float: left;
}
#bkbmap {
	width: 80%;
	height: 500px;
	border-radius: 15px;
	margin-left: 15%;
	margin-right: 5%;
}
#address-details {
	width: 100%;
	height: 300px;
	line-height: 30px;
	padding-top: 50px;
}
#hours-details {
	width: 100%;
	height: 300px;
	line-height: 30px;
	padding-top: 10px;
}
#address-details-container-large {
	width: 70%;
	height: 210px;
	margin: auto;
	background-color: #0b162a;
	color: #ec3f1d;
	border-radius: 15px;
	padding-left: 35px;
	padding-top: 14px;
}
#address-details-container-large .titles {
	width: 35%;
	height: 210px;
	float: left;
	font-family: "Krona One", Calibri, sans-serif;		
	text-transform: uppercase;
	font-size: 1em;
}
#address-details-container-large .details {
	width: 65%;
	height: 210px;
	float: right;
	color: #ffffff;
	font-family: Roboto, Arial, sans-serif;		
	font-size: 1em;
}
address {
	font-style: normal;
}
#hours-details-container-large {
	width: 70%;
	height: 240px;
	margin: auto;
	background-color: #0b162a;
	color: #ec3f1d;
	border-radius: 15px;
	padding-left: 35px;
	padding-top: 15px;
}
#hours-details-container-large .titles {
	width: 35%;
	height: 240px;
	float: left;
	font-family: "Krona One", Calibri, sans-serif;		
	text-transform: uppercase;
	font-size: 1em;
}
#hours-details-container-large .details {
	width: 65%;
	height: 240px;
	float: right;
	color: #ffffff;
	font-family: Roboto, Arial, sans-serif;		
	font-size: 1em;
}
#address-details-container-small, #hours-details-container-small {
	display: none;
}
#weekdays {
	width: 40%;
	height: 240px;
	float: left;
}
#dayhours {
	width: 60%;
	height: 240px;
	float: left;
}



/*--------------------
4. FOOTER
--------------------*/

footer {
	width: 100%;
	height: 250px;
	background-color: #0b162a;
	font-size: 1rem;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
#footer-us {
	width: 33%;
	height: 250px;
	float: left;
	padding-top: 55px;
	font-family: "Krona One", Calibri, sans-serif;	
	font-size: 1em;	
	text-transform: uppercase;
}
#footer-logo-social {
	width: 34%;
	height: 250px;
	float: left;
	padding-top: 35px;
}
#footer-terms {
	width: 33%;
	height: 250px;
	float: left;
	padding-top: 35px;
	font-family: "Krona One", Calibri, sans-serif;	
	font-size: 1em;	
	text-transform: uppercase;
}
#footer-us-container {
	width: 70%;
	height: 150px;
	margin-left: 20%;
	margin-right: 10%;
	text-align: center;
	line-height: 40px;
	padding-top: 10px;
}
#footer-us-container p a {
	color: #ec3f1d;
	transition: color 0.4s;
}
#footer-us-container p a:hover {
	color: #ffffff;
}
#footer-terms-container {
	width: 70%;
	height: 180px;
	margin-left: 10%;
	margin-right: 20%;
	text-align: center;
	line-height: 40px;
	padding-top: 10px;
}
#footer-terms-container p a {
	color: #ec3f1d;
	transition: color 0.4s;
}
#footer-terms-container p a:hover {
	color: #ffffff;
}
#footer-logo-social-container {
	width: 70%;
	height: 180px;
	margin: auto;
	text-align: center;
	line-height: 40px;
}
#logo-bottom {
	height: 100px;
	width: 100%;
	background-image: url(../images/logo_100.png);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
	-o-background-size: contain;
    background-size: contain;
}
#ico-container {
	height: 40px;
	width: 270px;	
	margin: 30px auto 10px;
}
#fb-ico {
	width: 16%;
	height: 40px;
	color: #3d5b99;
	font-size: 36px;
	float: left;	
	margin-left: 13%;
	margin-right: 13%;
}
#yt-ico {
	width: 16%;
	height: 40px;
	color: #ea2427;
	font-size: 36px;
	float: left;
}
#ig-ico {
	width: 16%;
	height: 40px;
	color: #d65361;
	font-size: 36px;
	float: left;	
	margin-left: 13%;
	margin-right: 13%;
}
#back-top {
	position: fixed;
    z-index: 8;
    bottom: 30px;
    right: 20px;
}
#back-top-btn {
	color: #ec3f1d;
	width: 30px;
	height: 40px;
	padding-left: 5px;
	padding-right: 5px;
	border-radius: 5px;
	transition: 0.4s linear;
}
#back-top-btn:hover {
	color: #0b162a;
	background-color: rgba(236,63,29,1);
}



/*-------------------------------------
5a. SCREEN SIZE: 992px-1199px (laptops)
-------------------------------------*/

@media screen and (max-width: 1199px) {
	
	/*--------------------
	1. GENERAL
	--------------------*/
	html, body {
		font-size: 15px;
	}
	
	/*--------------------
	2. HEADER
	--------------------*/
	nav {
		top: -110px;
	}
	.row-nav {
		height: 60px;
	}
	#logo-title {
		height: 110px;
		padding-top: 25px;
	}
	#logo {
		width: 20%;
		height: 75px;
		background-image: url(../images/logo_75.png);
	}
	#title {
		width: 80%;
		height: 75px;
		background-image: url(../images/name_75.png);
	}
	#search {
		padding-top: 18px;
	}
	#searchf {
		height: 42px;
	}
	#searchf:focus {
		width: 860px;
    	background-image: url('../images/logo_search_35.png');
	}
	#searchbtn {
		width: 32px;
		height: 32px;
	}
	/* Search message - Modals */
	#newModal1 #newMessage1, #newModal2 #newMessage2, #newModal3 #newMessage3, #newModal4 #newMessage4, #newModal5 #newMessage5, #newModal6 #newMessage6, #newModal7 #newMessage7 {
		font-size: 15px;
	}
	#navigation {
		padding-top: 11px;
	}
	.menu {
		margin-right: 30px;
	}
	#user-ico {
    	font-size: 42px;
	}
	.dropdown-content {
    	padding-top: 10px;
	}
	.dropdown-content a {
    	padding: 10px 10px;
	}
	.dropdown-content-user {
		padding-top: 7px;
	}
	.dropdown-content-user a {
        padding: 10px 10px;
    }

    /*--------------------
	3. SECTION
	--------------------*/
	#site-content {
		height: 750px;
	}
	.empty {
		display: none;
	}
	.site-content-section {
		width: 40%;
	}
	.site-content-section p {
		padding-top: 15px;
	}
	#bikes-container {
		margin: 0px 3% 50px 7%;
	}
	#accessories-container {
		margin: 0px 7% 50px 3%;
	}
	#clothing-container {
		margin: 0px 30% 50px 30%;
	}
	p.promo-big, p.promo-small {
		left: 20px;
	}
	#shopping-ico, #group-ico {
		left: 20px;
	}
	#bkbmap {
		width: 85%;
		margin-left: 15%;
		margin-right: 0%;
	}
	#address-details-container-large {
		width: 80%;
		padding-left: 25px;
	}	
	#address-details-container-large .titles {
		width: 40%;
	}
	#address-details-container-large .details {
		width: 60%;
	}
	#hours-details-container-large {
		width: 80%;
		padding-left: 25px;
	}
	#hours-details-container-large .titles {
		width: 40%;
	}
	#hours-details-container-large .details {
		width: 60%;
	}

	/*--------------------
	4. FOOTER
	--------------------*/
	#footer-logo-social {
		padding-top: 50px;
	}
	#footer-logo-social-container {
		height: 160px;
	}
	#logo-bottom {
		height: 80px;
		background-image: url(../images/logo_80.png);
	}
	#ico-container {
		width: 230px;	
	}
	#fb-ico {
		width: 18%;
		margin-left: 9%;
		margin-right: 14%;
	}
	#yt-ico {
		width: 18%;
	}
	#ig-ico {
		width: 18%;
		margin-left: 14%;
		margin-right: 9%;
	}
	#back-top {
		right: 15px;
	}
}



/*-------------------------------------
5b. SCREEN SIZE: 768px-991px (tablets)
-------------------------------------*/

@media screen and (max-width: 991px) {
	
	/*--------------------
	1. GENERAL
	--------------------*/
	html, body {
		font-size: 14px;
	}
	
	/*--------------------
	2. HEADER
	--------------------*/
	nav {
		top: -100px;
	}
	.row-nav {
		height: 55px;
	}
	#logo-title {
		height: 100px;
		padding-top: 20px;
	}
	#logo {
		width: 25%;
		height: 70px;
		background-image: url(../images/logo_70.png);
	}
	#title {
		width: 75%;
		height: 70px;
		background-image: url(../images/name_70.png);
	}
	#search {
		padding-top: 14px;
	}
	#searchf {
		height: 38px;
		background-position: -100px 2px; 
	}
	#searchf:focus {
		width: 650px;
    	background-image: url('../images/logo_search_32.png');
    	background-position: 170% 2px;
	}
	#searchbtn {
		width: 31px;
		height: 30px;
		top: 1px;
	}
	/* Search message - Modals */
	#newModal1 #newMessage1, #newModal2 #newMessage2, #newModal3 #newMessage3, #newModal4 #newMessage4, #newModal5 #newMessage5, #newModal6 #newMessage6, #newModal7 #newMessage7 {
		font-size: 14px;
	}
	#navigation {
		padding-top: 2px;
		padding-left: 25px;
		font-size: 1em;
		height: 50px;
	}
	.menu {
		width: 15%;	
		padding-left: 5px;
		padding-top: 11px;
		margin-right: 20px;
	}
	#hiringout-menu {
		width: 16%;
	}
	#user-ico {
    	font-size: 37px;
    	position: relative;
    	top: 5px;
    	right: -5px;
	}
	.dropdown-content {
    	padding-top: 7px;
    	left: 0px;
	}
	.dropdown-content a {
    	padding: 7px 5px;
	}
	.dropdown-content-user {
		padding-top: 4px;
		left: -50px;
	}
	.dropdown-content-user a {
        padding: 7px 5px;
    }

	/*--------------------
	3. SECTION
	--------------------*/
	p.promo-big, p.promo-small {
		width: 70%;
		left: 25px;
		top: 8px;
	}
	#shopping-ico, #group-ico {
		left: 15px;
		top: 12px;
	}
	#address-details-container-large {
		padding-left: 15px;
	}	
	#hours-details-container-large {
		padding-left: 15px;
	}
	
	/*--------------------
	4. FOOTER
	--------------------*/
	footer {
		height: 200px;
		font-size: 0.9rem;
	}
	#footer-us {
		width: 37%;			
		height: 200px;
		padding-top: 30px;
	}
	#footer-logo-social {
		width: 26%;			
		height: 200px;
		padding-top: 25px;
	}
	#footer-terms {
		width: 37%;			
		height: 200px;
		padding-top: 12px;	
	}
	#footer-logo-social-container {
		width: 80%;
		height: 150px;
	}
	#logo-bottom-link {
		display: block;
		width: 120px;
		margin: 0px auto;
	}
	#logo-bottom {
		height: 70px;
		background-image: url(../images/logo_70.png);
	}
	#ico-container {
		width: 150px;
	}
	#fb-ico {
		width: 16%;
		font-size: 30px;
		margin-left: 5%;
		margin-right: 20%;
	}
	#yt-ico {
		width: 16%;
		font-size: 30px;
	}
	#ig-ico {
		width: 16%;
		font-size: 30px;
		margin-left: 22%;
		margin-right: 5%;
	}
	#back-top {
		right: 8px;
	}
}



/*----------------------------------------
5c. SCREEN SIZE: 320px-767px (smartphones)
----------------------------------------*/

@media screen and (max-width: 767px) {
	
	/*--------------------
	1. GENERAL
	--------------------*/
	html, body {
		font-size: 14px;
	}

	/*--------------------
	2. HEADER
	--------------------*/
	nav {
		position: static;
	}
	#logo-title {
		height: 90px;
		padding-top: 10px;
	}
	#logo {
		display: none;
	}
	#title {
		width: 90%;
		margin-left: 5%;
		background-position: center center;
	}
	#search {
		padding-top: 18px;
		padding-left: 20px;
	}
	#searchf {
		width: 205px;
		-webkit-transition: background-position 2.5s ease-in-out, width 2s ease-in-out; 
    	transition: background-position 2.5s ease-in-out, width 2s ease-in-out;
	}
	#searchf:focus {
		width: 80%;
	}
	#searchbtn {
		width: 25px;
		height: 25px;
		background-image: url("../images/search_25.png");
		top: 0px;
	}
	/* Search message - Modals */
	#newModal1 #newMessage1, #newModal2 #newMessage2, #newModal3 #newMessage3, #newModal4 #newMessage4, #newModal5 #newMessage5, #newModal6 #newMessage6, #newModal7 #newMessage7 {
		font-size: 14px;
	}
	#navigation {
		height: 390px;
		text-align: center;
		padding-left: 0px;
	}
	.menu {
		width: 50%;
		max-width: 100%;
		margin-left: 25%;
	}
	#hiringout-menu {
		width: 50%;
		margin-left: 25%;
	}
	#user {
		width: 50%;
		height: 46px;
		top: 0px;
		left: 0px;
		float: left;
		margin-left: 25%;
	}
	#user-ico {
		top: 5px;
		right: 0px;
		width: 100%;
		display: block;
	}
	.dropdown {
	    transition: height 1s linear;
	}
	.dropdown-content {
	    left: 0px;
	    padding-left: 0px;
	}
	.dropdown-content a {
	    padding: 12px 10px;
	}
	.dropdown:hover {
		height: 162px;
	}
	.dropdown-user {
	    right: 0px;
		top: 0px;
	}
	.dropdown-content-user {
		left: 0px;
		top: 47px;
	    width: 100%;
	    padding-left: 0px;
	}
	.dropdown-content-user a {
	    padding: 12px 10px;	    
	}

	/*--------------------
	3. SECTION
	--------------------*/
	#site-content {
		height: 1100px;
	}
	.site-content-section {
		width: 90%;
	}
	#bikes-container, #clothing-container, #accessories-container {
		margin: 0px 5% 50px 5%;
	}
	#promo {
		height: 140px;
	}
	#promo-one, #promo-two {
		width: 100%;
	}
	#promo-one {
		border-bottom: 1px solid #ec3f1d;
		border-right: none;
	}
	#promo-two {
		border-top: 1px solid #ec3f1d;
		border-left: none;
	}
	p.promo-big, p.promo-small {
		width: 80%;			
		left: 20px;
	}
	p.promo-big {
		font-size: 1.2145em;
	}
	#shopping-ico, #group-ico {
		top: 15px;
		left: 10px;
		font-size: 30px;
		width: 20%;
	}
	#contact {
		height: 1060px;
	}
	#map {
		width: 100%;
		height: 375px;
	}
	#contact-details {
		width: 100%;
		height: 685px;	
	}
	#bkbmap {
		width: 90%;
		height: 300px;
		margin: 0px auto;
	}
	#address-details {
		width: 100%;
		height: 345px;
		padding-top: 25px;
	}
	#hours-details {
		width: 100%;
		height: 340px;
		padding-top: 25px;
	}
	#address-details-container-large, #hours-details-container-large {
		display: none;
	}
	#address-details-container-small, #hours-details-container-small {
		display: block;
	}
	#address-details-container-small {
		width: 90%;
		height: 295px;
		margin: 0px auto;
		padding-left: 10%;
		padding-top: 14px;
		background-color: #0b162a;
		color: #ec3f1d;
		border-radius: 15px;
		font-family: "Krona One", Calibri, sans-serif;		
		text-transform: uppercase;
		font-size: 1em;
	}
	#address-details-container-small address {
		color: #ffffff;
		font-family: Roboto, Arial, sans-serif;		
		font-size: 1em;
		text-transform: none;
		padding-left: 10%;
	}
	#hours-details-container-small {
		width: 90%;
		height: 265px;
		margin: 0px auto;
		padding-left: 10%;
		padding-top: 15px;
		background-color: #0b162a;
		color: #ec3f1d;
		border-radius: 15px;
		font-family: "Krona One", Calibri, sans-serif;		
		text-transform: uppercase;
		font-size: 1em;
	}
	#weekdays-small {
		width: 40%;
		height: 240px;
		float: left;
		color: #ffffff;
		font-family: Roboto, Arial, sans-serif;		
		font-size: 1em;
		text-transform: none;
		margin-left: 10%;
	}
	#dayhours-small {
		width: 40%;
		height: 240px;
		float: left;
		color: #ffffff;
		font-family: Roboto, Arial, sans-serif;		
		font-size: 1em;
	}

	/*--------------------
	4. FOOTER
	--------------------*/
	footer {
		height: 460px;
		font-size: 0.7855rem;
		top: 0px;
	}
	#footer-us {
		width: 100%;
		height: 140px;
		padding-top: 0px;
	}
	#footer-logo-social {
		width: 100%;
		height: 140px;
		padding-top: 20px;
	}
	#footer-terms {
		width: 100%;
		height: 180px;
		padding-top: 0px;
	}
	#footer-us-container {
		width: 100%;
		height: 140px;
		margin: 0px auto;
	}
	#footer-terms-container {
		width: 100%;
		height: 180px;
		margin: 0px;
		padding-top: 10px;
	}
	#footer-logo-social-container {
		width: 100%;
		height: 140px;
	}
	#logo-bottom {
		height: 50px;	
		background-image: url(../images/logo_50.png);
	}
	#ico-container {
		height: 35px;
		width: 160px;	
		margin: 15px auto;
	}
	#fb-ico {
		width: 20%;
		height: 35px;
		font-size: 25px;
		margin-left: 0px;
		margin-right: 20%;
	}
	#yt-ico {
		width: 20%;
		height: 35px;
		font-size: 25px;
	}
	#ig-ico {
		width: 20%;
		height: 35px;
		font-size: 25px;
		margin-left: 20%;
		margin-right: 0px;
	}
	#back-top {
		display: none;
	}
}