/* Styles for www.botley.me.uk */

/* Variables */

:root {
	--body-text-color: #5E5C7F;
	--dark: #353353;
	--pink: #FF4C60;
	--pink-hover: #e53145;
	--grey: #F9F9FF;
	--yellow: #FFD15C;
	--fb-messenger: #0078FF;
	--fb-messenger-hover: #0368db;
	--text-muted: #6c757d;
}

/* General */

body {
	color: var(--body-text-color);
	background-color: var(--grey);
	line-height: 1.7;
	font-size: 16px;
	font-family: "Rubik", sans-serif;
	padding: 0px;
	margin: 0px;
}

.modal-backdrop {
	opacity: 0.75 !important;
}

a {
	color: var(--body-text-color);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	outline: none;
	cursor: pointer;
}

	a div {
		cursor: pointer !important;
	}

	a:hover {
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		text-decoration: none;
		color: var(--pink);
	}

p a {
	color: var(--body-text-color);
	border-bottom: 1px dashed;
}

	p a:hover {
		color: var(--pink) !important;
		text-decoration: none;
		border-bottom: 1px solid;
	}

.jump-anchor {
	display: block;
	margin-bottom: 110px;
}

.btn {
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	font-size: 16px;
	overflow: hidden;
	line-height: 1;
	padding: 12px 32px;
	-webkit-border-radius: 999px;
	-moz-border-radius: 999px;
	border-radius: 999px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	font-weight: 700;
	cursor: pointer !important;
	color: #fff !important;
}

	.btn:hover {
		-webkit-animation-name: button-push;
		animation-name: button-push;
		-webkit-animation-duration: 0.3s;
		animation-duration: 0.3s;
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
		-webkit-animation-iteration-count: 1;
		animation-iteration-count: 1;
		cursor: pointer !important;
		color: #fff !important;
	}
	
	.btn.scrollable-link,
	.btn.scrollable-link:hover {
		color: #fff;
	}

	@-webkit-keyframes button-push {
		50% {
			-webkit-transform: scale(0.8);
			transform: scale(0.8);
			cursor: pointer !important;
		}
		100% {
			-webkit-transform: scale(1);
			transform: scale(1);
			cursor: pointer !important;
		}
	}

strong {
	font-weight: 700;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: 700;
	color: var(--dark);
}

h3 {
	font-size: 1.3rem;
}

.alert {
	border-radius: 0px !important;
	border-width: 0px 0px 0px 10px !important;
}

.rounded {
	-webkit-border-radius: 30px !important;
	-moz-border-radius: 30px !important;
	border-radius: 30px !important;
	overflow: hidden !important;
}

/* Re-usable */

.bg-b-pink {
	background-color: var(--pink);
}

.text-b-pink {
	color: var(--pink);
}

.btn-pink {
	background-color: var(--pink);
	color: #fff !important;
}

	.btn-pink:hover {
		color: #fff !important;
	}

	.shadow-b-pink {
	    -webkit-box-shadow: 0px 5px 20px 0px rgba(249, 123, 139, 0.5);
	    -moz-box-shadow: 0px 5px 20px 0px rgba(249, 123, 139, 0.5);
	    box-shadow: 0px 5px 20px 0px rgba(249, 123, 139, 0.5);
	}

.btn-fb-messenger {
	background-color: var(--fb-messenger);
	color: #fff;
}

	.btn-fb-messenger:hover {
		background-color: var(--fb-messenger-hover);
		color: #fff;
	}

.bg-b-blue {
	background-color: rgb(108, 108, 229);
}

	.shadow-b-blue {
		-webkit-box-shadow: 0px 5px 20px 0px rgba(108, 108, 229, 0.5);
		-moz-box-shadow: 0px 5px 20px 0px rgba(108, 108, 229, 0.5);
		box-shadow: 0px 5px 20px 0px rgba(108, 108, 229, 0.5);
	}

.bg-b-yellow {
	background-color: var(--yellow);
}

	.shadow-b-yellow {
	    -webkit-box-shadow: 0px 5px 20px 0px rgba(249, 215, 76, 0.5);
	    -moz-box-shadow: 0px 5px 20px 0px rgba(249, 215, 76, 0.5);
	    box-shadow: 0px 5px 20px 0px rgba(249, 215, 76, 0.5);
	}

.flex-column.nav-pills .nav-link {
	padding-left: 0px;
}

	.flex-column.nav-pills .nav-link:hover,
	.flex-column.nav-pills .active .nav-link {
		background-color: var(--grey);
		padding-left: 1rem;
		border-left: 5px solid var(--pink);
		border-radius: 0px;
		color: var(--pink);
	}

.dark-striped .img-thumbnail {
	background-color: rgba(0, 0, 0, 0.25);
}

/* Modal */

.modal-services {
	max-width: 650px;
}

.modal-rounded {
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	padding: 30px;
}

	.modal-rounded .modal-header {
		padding: 0 0 1rem 0;
	}

	.modal-rounded .modal-body {
		padding: 0px;
	}

		.modal-rounded. modal-body img {
			width: 100%;
		}

		.modal-rounded .modal-body p:last-child {
			margin-bottom: 1rem;
		}

	.modal-rounded .modal-footer {
		padding-bottom: 0px;
	}


/* Header */

header.header {
	background-color: var(--dark);
	border-bottom: solid 1px rgba(0, 0, 0, 0.05);
	min-height: 80px;
}

	header.fixed-top {
	    position: fixed;
	    top: 0;
	    right: 0;
	    left: 0;
	    z-index: 1030;
	}

header.header .navbar {
	padding: 0px;
}

	header.header .navbar .navbar-brand {
		font-size: 36px;
		font-weight: 700;
		line-height: 80px;
		padding: 0px;
		color: #FFF;
	}

		header.header .navbar .navbar-brand:hover {
			color: var(--yellow);
		}

	header.header .navbar .navbar-nav li:not(:last-child) {
		padding-right: 3rem;
	}

	header.header .navbar .navbar-toggler {
		border-color: #fff;
	}

	header.header .navbar .nav-item .nav-link {
		color: #fff;
		font-weight: 700;
		padding: 0px;
		cursor: pointer;
	}

		@media (max-width: 991px) {
			header.header .navbar .nav-item:not:first-child {
				margin-top: 1rem;
			}

			header.header .navbar .nav-item:first-child .nav-link {
				border-top: solid 1px rgba(255, 255, 255, 0.15);
			}

			header.header .navbar .nav-item:last-child .nav-link {
				margin-bottom: 1rem;
			}

			header.header .navbar .nav-item .nav-link {
				border-bottom: solid 1px rgba(255, 255, 255, 0.15);
				padding: 1rem;
			}

			header.header .navbar .navbar-nav li:not(:last-child) {
				padding-right: 0rem;
			}
		}

	header.header .navbar .nav-item .nav-link:hover {
		color: var(--pink);
	}

	header.header .navbar .active .nav-link,
	header.header .navbar .active .nav-link:hover {
		color: var(--yellow);
	}

/* Sections */

section {}

	section .container {
		padding-top: 110px;
		padding-bottom: 110px;
	}
	
		section.first {
			margin-top: 80px;
		}

		@media (max-width: 768px) {
			section .container {
				padding-top: 80px;
				padding-bottom: 80px;
			}
		}

	section.dark,
	footer.dark {
		background-color: var(--dark);
	}

		section.dark h2 {
			color: #FFF;
		}

		section.dark .text-muted {
			color: rgba(255,255,255,0.7) !important;
		}

	section.dark-striped {
		background-image: linear-gradient(
			45deg,
			var(--dark) 16.67%,
			var(--body-text-color) 16.67%,
			var(--body-text-color) 50%,
			var(--dark) 50%,
			var(--dark) 66.67%,
			var(--body-text-color) 66.67%,
			var(--body-text-color) 100%
		);
		background-size: 4.24px 4.24px;
	}

		section.dark-striped h2 {
			color: #fff;
		}

		section.dark-striped .text-muted {
			color: rgba(255,255,255,0.7) !important;
		}

	section.grey {
		background-color: #f1f1f1;
	}

	section.striped {
		background-image: linear-gradient(
			45deg,
			rgba(204, 204, 204, 0.60) 16.67%,
			var(--grey) 16.67%,
			var(--grey) 50%,
			rgba(204, 204, 204, 0.60) 50%,
			rgba(204, 204, 204, 0.60) 66.67%,
			var(--grey) 66.67%,
			var(--grey) 100%
		);
		background-size: 4.24px 4.24px;
	}

/* Section: Breadcrumbs */

section.breadcrumbs {
	margin-top: 80px;
}

	section.breadcrumbs .container {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
		margin-bottom: 0px;
	}

	section.breadcrumbs .breadcrumb {
		background: none;
	}

	section.breadcrumbs .breadcrumb-item a {
		color: rgba(0,0,0,0.55);
	}

		section.breadcrumbs .breadcrumb-item a:hover {
			color: rgba(0,0,0,0.55);
			border-bottom: 1px solid;
			color: var(--pink-hover);
		}

	section.breadcrumbs .active {
		color: rgba(0,0,0,0.35);
	}
	
/* Section: Generic Page */

section.generic_page {
	height: calc(100vh - 188px);
	min-height: 600px !important;	
}

/* Section: Home */

section.home {
	padding: 0;
	background-image: url("../images/intro-background.jpg");
	background-size: cover;
	height: calc(100vh - 80px);
	min-height: 650px !important;
	margin-top: 80px;
	background-repeat: no-repeat;
}

	@media (max-width: 780px) {
		section.home {
			background-position: top center;
			background-repeat: no-repeat;
		}
	}

	section.home .overlay {
		background-image: linear-gradient(
			45deg,
			rgba(204, 204, 204, 0.99) 16.67%,
			rgba(249, 249, 255, 0.95) 16.67%,
			rgba(249, 249, 255, 0.95) 50%,
			rgba(204, 204, 204, 0.99) 50%,
			rgba(204, 204, 204, 0.99) 66.67%,
			rgba(249, 249, 255, 0.95) 66.67%,
			rgba(249, 249, 255, 0.95) 100%
		);
		background-size: 4.24px 4.24px;
	    z-index: 100;
	    width: 100%;
	    height: 100%;
	    position: relative;
	    top: 0px;
	    margin-left: 0px !important;
	    margin-right: 0px !important;
	}

	section.home .intro {
		position: relative;
		z-index: 101;
		width: 80%;
		margin: auto;
		text-align: center;
		margin-top: -45px;
	}
	
		@media (max-width: 780px) {
			section.home .intro {
				margin-top: -135px;
			}
		}

		section.home .intro .photo {
			width: 140px;
			height: 140px;
			margin: auto;
			-webkit-border-radius: 999px;
			-moz-border-radius: 999px;
			border-radius: 999px;
			margin-bottom: 1.5rem;
			overflow: hidden;
		}

			section.home .intro .photo img {
				width: 350px;
				margin-left: -105px;
			}

		section.home .intro h1 {
			font-size: 2rem;
			line-height: 2rem;
			margin-bottom: 20px;
		}

		section.home .intro p {
			margin-bottom: 1.3rem;
		}

		section.home .intro .nav-social-icons {
			margin-bottom: 1.3rem;
		}

		section.home .intro .nav-social-icons .nav-item {
			font-size: 1.5rem;
		}
		
			@media (max-width: 990px) {
				section.home .intro .nav-social-icons .nav-item {
					font-size: 2.2rem;
				}
			}

		section.home .intro .nav-social-icons .nav-item .nav-link {
			padding-top: 0px;
			padding-bottom: 0px;
		}

			section.home .intro .nav-social-icons .nav-item .nav-link:hover {
				color: var(--yellow);
			}

		section.home .scroll-down {
		    position: absolute;
		    bottom: 40px;
		    left: 0;
		    width: 100%;
		    z-index: 1;
		}

			@media (max-width: 812px) {
				section.home .scroll-down {
					display: none;
				}

				section.home {
					height: auto !important;
					min-height: auto !important;
					margin-top: 80px;
				}

					section.home .overlay {
						padding-bottom: 80px;
						padding-top: 130px;
					}
					
						@media (max-width: 787px) {
							section.home .overlay {
								padding-bottom: 0px;
							}
						}

					section.home .overlay .inner {
						padding-top: 0px;
						margin-top: 0px;
					}
			}

			section.home .scroll-down .mouse-wrapper {
			    font-size: 14px;
			    display: block;
			    max-width: 100px;
			    margin: auto;
			    text-align: center;
			}

				section.home .scroll-down .mouse-wrapper:hover {
					color: var(--body-text-color);
					opacity: 0.5;
					text-decoration: none;
				}

				section.home .scroll-down .mouse-wrapper .mouse {
				    border: solid 2px;
				    border-radius: 16px;
				    display: block;
				    margin: auto;
				    margin-top: 10px;
				    height: 26px;
				    position: relative;
				    width: 20px;
				}

					section.home .scroll-down .mouse-wrapper .mouse .wheel {
					    background: var(--pink);
					    border-radius: 100%;
					    display: block;
					    position: absolute;
					    top: 8px;
					    left: 50%;
					    transform: translateX(-50%);
					    height: 4px;
					    width: 4px;
					    -webkit-animation: ani-mouse 1s linear infinite;
					    -moz-animation: ani-mouse 1s linear infinite;
					    animation: ani-mouse 1s linear infinite;
					}

						@-webkit-keyframes ani-mouse {
							0% {
								top: 29%;
							}
							15% {
								top: 50%;
							}
							50% {
								top: 50%;
							}
							100% {
								top: 29%;
							}
						}
						@-moz-keyframes ani-mouse {
							0% {
								top: 29%;
							}
							15% {
								top: 50%;
							}
							50% {
								top: 50%;
							}
							100% {
								top: 29%;
							}
						}
						@keyframes ani-mouse {
							0% {
								top: 29%;
							}
							15% {
								top: 50%;
							}
							50% {
								top: 50%;
							}
							100% {
								top: 29%;
							}
						}

/* Section: About */

section.about {}

	section.about .text-muted {
		margin-bottom: 2rem;
	}

	section.about .photo {
		width: 250px;
		height: 250px;
		-webkit-border-radius: 999px;
		-moz-border-radius: 999px;
		border-radius: 999px;
		overflow: hidden;
		margin: auto;
		border: 5px solid var(--pink);
	}

			section.about .photo img {
				width: 350px;
				margin-left: -50px;
			}

	section.about .about-bubble {
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
		border-radius: 30px;
	}

		section.about .about-bubble p:last-child {
			padding-bottom: 0px;
			margin-bottom: 0px;
		}

		@media (max-width: 990px) {
			/* Generated Using: https://leaverou.github.io/bubbly/ */
			section.about .about-bubble:after {
				content: '';
				position: absolute;
				top: 0;
				left: 50%;
				width: 0;
				height: 0;
				border: 20px solid transparent;
				border-bottom-color: #fff;
				border-top: 0;
				margin-left: -20px;
				margin-top: 30px;
			}

			section.about .about-bubble {
				margin: auto;
				margin-top: 3rem;
			}
		}
		@media (min-width: 991px) {
			/* Generated Using: https://leaverou.github.io/bubbly/ */
			section.about .about-bubble:after {
				content: '';
				position: absolute;
				left: 0;
				top: 15%;
				width: 0;
				height: 0;
				border: 20px solid transparent;
				border-right-color: #fff;
				border-left: 0;
				margin-top: -20px;
			}
		}

/* Section: Services */

section.services {}

	section.services .text-muted {
		margin-bottom: 1rem;
	}

	section.services .container {}

	section.services .service-box {
		margin: 0px auto 0px auto;
		background: #FFF !important;
		color: var(--dark);
		cursor: pointer !important;
		border: none;
	}
	
		section.services .service-box .card-header {
			padding: 30px 30px 0px 30px;
			border-bottom: 0px;
			margin: 5px 5px 0px 5px;
			-webkit-border-top-left-radius: 25px;
			-webkit-border-top-right-radius: 25px;
			-moz-border-radius-topleft: 25px;
			-moz-border-radius-topright: 25px;
			border-top-left-radius: 25px;
			border-top-right-radius: 25px;
		}

		section.services .service-box .card-body {
			padding: 30px 30px 0px 30px;
		}
		
		section.services .service-box .card-footer {
			padding: 0px 30px 30px 30px;
			background: none;
			border-top: 0px;
		}

		section.services .service-box .icon p {
			text-align: center;
			font-size: 4rem;
			line-height: 4rem;
			margin-bottom: 1.5rem;
		}

		section.services .service-box .details h3 {}

		section.services .service-box {
			-webkit-transition: all 0.3s ease-in-out;
			-moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
			cursor: pointer;
		}

			section.services .service-box:hover,
			section.services .service-box:focus {
				-webkit-transition: all 0.3s ease-in-out;
				-moz-transition: all 0.3s ease-in-out;
				transition: all 0.3s ease-in-out;
			    -webkit-box-shadow: 0 .5rem 1rem rgba(0,0,0,.15), inset 0px 0px 0px 5px var(--pink) !important;
			    -moz-box-shadow: 0 .5rem 1rem rgba(0,0,0,.15), inset 0px 0px 0px 5px var(--pink) !important;
			    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15), inset 0px 0px 0px 5px var(--pink) !important;
				border: none;
			}

				section.services .service-box:hover h3,
				section.services .service-box:focus h3 {
					-webkit-transition: all 0.3s ease-in-out;
					-moz-transition: all 0.3s ease-in-out;
					transition: all 0.3s ease-in-out;
					color: var(--pink);
				}
				
				section.services .service-box:hover .btn-pink {
					background-color: var(--pink-hover);
					box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
					cursor: pointer !important;
				}
		
				section.services .service-box:focus .btn-pink {
					-webkit-animation-name: button-push;
					animation-name: button-push;
					-webkit-animation-duration: 0.3s;
					animation-duration: 0.3s;
					-webkit-animation-timing-function: linear;
					animation-timing-function: linear;
					-webkit-animation-iteration-count: 1;
					animation-iteration-count: 1;
					cursor: pointer !important;
				}

	section.services .get-in-touch {
		color: rgba(255,255,255,0.7);
		margin-top: 1rem;
		margin-bottom: 0px;
	}

		section.services .get-in-touch a:hover {
			color: var(--yellow) !important;
		}

/* Section: WebApps */

section.webapps {}

	section.webapps .text-muted {
		margin-bottom: 1rem;
	}

	section.webapps .container {}

	section.webapps .webapp-box {
		margin: 1rem auto 1rem auto;
		display: block;
		background: #FFF !important;
		color: var(--dark);
		overflow: hidden !important;
	}

		section.webapps .webapp-box .thumb {
			display: block;
			margin: 5px 5px 0 5px;
			background-color: #f9f9f9;
			overflow: hidden !important;
			-webkit-border-top-left-radius: 25px;
			-webkit-border-top-right-radius: 25px;
			-moz-border-radius-topleft: 25px;
			-moz-border-radius-topright: 25px;
			border-top-left-radius: 25px;
			border-top-right-radius: 25px;
			text-align: center;
			padding-top: 30px;
			padding-bottom: 30px;
		}

			section.webapps .webapp-box .thumb img {
				margin: auto;
				height: 150px;
			}

		section.webapps .webapp-box .details h3 {
			margin-bottom: 0.75rem;
		}

		section.webapps .webapp-box {
			-webkit-transition: all 0.3s ease-in-out;
			-moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
			cursor: pointer;
		}

			section.webapps .webapp-box:hover,
			section.webapps .webapp-box:focus {
				-webkit-transition: all 0.3s ease-in-out;
				-moz-transition: all 0.3s ease-in-out;
				transition: all 0.3s ease-in-out;
			    -webkit-box-shadow: 0 .5rem 1rem rgba(0,0,0,.15), inset 0px 0px 0px 5px var(--pink) !important;
			    -moz-box-shadow: 0 .5rem 1rem rgba(0,0,0,.15), inset 0px 0px 0px 5px var(--pink) !important;
			    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15), inset 0px 0px 0px 5px var(--pink) !important;
			    color: var(--pink);
			    cursor: cursor !important;
			}

				section.webapps .webapp-box:hover h3,
				section.webapps .webapp-box:focus h3 {
					-webkit-transition: all 0.3s ease-in-out;
					-moz-transition: all 0.3s ease-in-out;
					transition: all 0.3s ease-in-out;
					color: var(--pink);
				}

		section.webapps .webapp-box .text-muted {
			margin-bottom: 1rem;
		}

		section.webapps .webapp-box:hover .btn-pink {
			background-color: var(--pink-hover);
			box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
			cursor: pointer !important;
		}

		section.webapps .webapp-box:focus .btn-pink {
			-webkit-animation-name: button-push;
			animation-name: button-push;
			-webkit-animation-duration: 0.3s;
			animation-duration: 0.3s;
			-webkit-animation-timing-function: linear;
			animation-timing-function: linear;
			-webkit-animation-iteration-count: 1;
			animation-iteration-count: 1;
			cursor: pointer !important;
		}

	section.webapps .get-in-touch {
		margin-top: 1rem;
		margin-bottom: 0px;
	}

/* Section: Flying */

section.flying {}

	section.flying .text-muted {
		margin-bottom: 2rem;
	}

	section.flying .flying-photos img {
		width: 100%;
		height: 100%;
	}

	section.flying .photo {
		border: 5px solid var(--dark);
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		margin-bottom: 2rem;
		overflow: hidden;
	}

		/* Small devices (landscape phones, 576px and up) */
		@media (min-width: 576px) {
			section.flying .photo {
				height: 240px;
			}
		}

		/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
		@media (min-width: 768px) {
			section.flying .photo {
				height: 210px;
			}
		}

		/* Large devices (desktops, 992px and up) */
		@media (min-width: 992px) {
			section.flying .photo {
				height: 290px;
			}
		}

		/* Extra large devices (large desktops, 1200px and up) */
		@media (min-width: 1200px) {
			section.flying .photo {
				height: 350px;
			}
		}

/* Section: Contact */

section.contact {}

	section.contact .form-group label {
		font-weight: bold;
	}

/* Section: WebApp Header */

section.webapp-header {
	margin-top: 80px;
}

	section.webapp-header + .breadcrumbs {
		margin-top: 0px;
	}

	section.webapp-header .text-muted {
		margin-bottom: 0px;
	}

	section.webapp-header .icon {
		text-align: center;
	}

		section.webapp-header .icon img {
			width: 150px;
		}

/* Section: WebApp Features */

section.webapp-features {}

	section.webapp-features .container {}

	section.webapp-features .rounded .text-muted {
		color: var(--text-muted) !important;
	}

	section.webapp-features .list-group-flush .list-group-item {
		padding: 0.75rem;
		list-style-type: none;
	}

	section.webapp-features .photo {
		overflow: hidden !important;
	}

		section.webapp-features .photo img {
			margin: auto !important;
		}

	section.webapp-features .content p:last-child {
		margin-bottom: 0px;
	}

	section.webapp-features .list-group-item i {
		width: 20px;
		text-align: left;
	}
	
	section.webapp-features .testimonial a {
		border-bottom: 1px dashed var(--body-text-color);
	}
	
		section.webapp-features .testimonial a:hover {
			border-bottom: 1px solid var(--pink);
		}

/* Section: WebApp Screenshots */

section.webapp-screenshots {}

	section.webapp-screenshots .text-muted {
		margin-bottom: 0px;
	}

	section.webapp-screenshots .photo {
		overflow: hidden !important;
		height: auto;
	}

		section.webapp-screenshots .photo img {
			width: 100%;
			height: 100%;
			cursor: zoom-in;
		}

	section.webapp-screenshots .modal-content {
		background: none;
		border: 0px;
	}

	section.webapp-screenshots .modal .modal-photo {
		padding: .25rem;
		background-color: #fff;
		border: 1px solid #dee2e6;
		border-radius: .25rem;
	}

	section.webapp-screenshots .modal .modal-caption {
		background: rgba(0,0,0,0.60);
		color: #fff;
		min-width: 100px;
		width: auto;
		margin: 1rem auto;
	}

	section.webapp-screenshots .modal .modal-footer {
		border-top: 0px;
	}

/* Section: WebApp FAQs */

section.webapp-faqs {}

	section.webapp-faqs .card {
		border-radius: 0px;
	}

		section.webapp-faqs .card:not(:last-child),
		section.webapp-faqs .card-header {
			border-bottom: 0px;
		}

		section.webapp-faqs .show,
		section.webapp-faqs .collapsing {
			border-top: 1px solid rgba(0,0,0,.125);
		}

		section.webapp-faqs .card .card-body p:last-child {
			margin-bottom: 0px;
		}
		
/* Section: Service Header */

section.services-header {
	margin-top: 80px;
}

	section.services-header + .breadcrumbs {
		margin-top: 0px;
	}

	section.services-header .text-muted {
		margin-bottom: 0px;
	}

	section.services-header .icon {
		text-align: center;
	}
	
		section.services-header .icon i {
			font-size: 4rem;
		}

		section.services-header .icon img {
			width: 4rem;
		}

/* Section: Service Page Cards */

section.servicepage-cards {}

	section.servicepage-cards .item p:last-child {
		margin-bottom: 0px;
	}
	
/* Responsive Web Design Demo */

.responsive-demo-modal {
	max-width: 650px;
}

.responsive-demo-toggles {}

	.responsive-demo-toggles .nav-link {
		border-radius: 0px;
		font-size: 1.25rem;
		width: 4rem;
		text-align: center;
		-webkit-border-top-left-radius: 15px;
		-webkit-border-top-right-radius: 15px;
		-moz-border-radius-topleft: 15px;
		-moz-border-radius-topright: 15px;
		border-top-left-radius: 15px;
		border-top-right-radius: 15px;
	}
	
		.responsive-demo-toggles .nav-link:hover {
			background-color: var(--grey);
			color: var(--pink);
		}
		
		.responsive-demo-toggles .active .nav-link {
			background-color: var(--pink);
			color: #fff;
		}

.responsive-demo {
	text-align: center;
	display: block;
}

	.responsive-demo .responsive-demo-wrapper {
		-webkit-transition: width 0.3s ease-out;
		-moz-transition: width 0.3s ease-out;
		-o-transition: width 0.3s ease-out;
		-ms-transition: width 0.3s ease-out;
		transition: width 0.3s ease-out;
		overflow-x: hidden;
		border: 5px solid var(--pink);			
		height: 380px;
	}

		.responsive-demo.responsive-demo-desktop .responsive-demo-wrapper {
			width: 100%;
		}
		
		.responsive-demo.responsive-demo-tablet .responsive-demo-wrapper {
			width: 75%;
		}
		
		.responsive-demo.responsive-demo-mobile .responsive-demo-wrapper {
			width: 65%;
		}
		
		@media (max-width: 768px) {
			.responsive-demo .responsive-demo-wrapper {
				height: 280px;
			}
			
			.responsive-demo.responsive-demo-tablet .responsive-demo-wrapper {
				width: 90%;
			}
			
			.responsive-demo.responsive-demo-mobile .responsive-demo-wrapper {
				width: 80%;
			}	
		}
	
	.responsive-demo .responsive-demo-iframe {
	    padding: 0px;
	    margin: 0px;
	    border: none;
	    outline: none;
	    transform-origin: top left;
	    -webkit-transform-origin: top left;
	    -o-transform-origin: top left;
	    -ms-transform-origin: top left;
	    -moz-transform-origin: top left;
	    -webkit-overflow-scrolling: touch;
	    overflow: auto;
	}
	
		.responsive-demo.responsive-demo-desktop .responsive-demo-iframe {
		    width: 251%;
		    height: 251%;
		    margin-top: -1px;
		    margin-left: -1px;
		    transform: scale(0.40);
		    -webkit-transform: scale(0.40);
		    -o-transform: scale(0.40);
		    -ms-transform: scale(0.40);
		    -moz-transform: scale(0.40);
		}
		
			@media (max-width: 768px) {
				.responsive-demo.responsive-demo-desktop .responsive-demo-iframe {
				    transform: scale(0.25);
				    -webkit-transform: scale(0.25);
				    -o-transform: scale(0.25);
				    -ms-transform: scale(0.25);
				    -moz-transform: scale(0.25);
				    width: 402%;
				    height: 402%;
				}
			}
		
		.responsive-demo.responsive-demo-tablet .responsive-demo-iframe {
		    width: 201%;
		    height: 200%;
		    transform: scale(0.50);
		    -webkit-transform: scale(0.50);
		    -o-transform: scale(0.50);
		    -ms-transform: scale(0.50);
		    -moz-transform: scale(0.50);
		}
		
		.responsive-demo.responsive-demo-mobile .responsive-demo-iframe {
		    width: 150%;
		    height: 150%;
		    transform: scale(0.67);
		    -webkit-transform: scale(0.67);
		    -o-transform: scale(0.67);
		    -ms-transform: scale(0.67);
		    -moz-transform: scale(0.67);
		}
		
		.responsive-demo .responsive-demo-iframe iframe {
		    background-color: #fdfdfd;
		    width: 100%;
		    height: 100%;
		    display: block;				
			padding: 0px;
			margin: 0px;
			border: none;
			outline: none;
			overflow: auto;
		}

/* Section: Blog Homepage Header */

section.blog-header {
	margin-top: 80px;
}

	section.blog-header .icon {
		text-align: center;
	}

		section.blog-header .icon img {
			width: 150px;
		}

section.blog-header + .breadcrumbs {
	margin-top: 0px;
}

/* Section: Blog Homepage */

.blog-card {
	overflow: hidden !important;
}

.blog-card .card {}

	.blog-card .card-body {
		padding: 1.5rem 1.5rem 0 1.5rem;
	}
	
	.blog-card .card-footer {
		padding: 1.5rem;
		border-top: 0px;
		background: none;
	}

	.blog-card .photo {
		margin: 5px 5px 0 5px;
	}

		.blog-card .photo img {
			-webkit-border-top-left-radius: 23px;
			-webkit-border-top-right-radius: 23px;
			-moz-border-radius-topleft: 23px;
			-moz-border-radius-topright: 23px;
			border-top-left-radius: 23px;
			border-top-right-radius: 23px;
			max-width: 100%;
		}

	.blog-card:hover .card {
	    -webkit-transition: all 0.3s ease-in-out;
	    -moz-transition: all 0.3s ease-in-out;
	    transition: all 0.3s ease-in-out;
	    -webkit-box-shadow: 0 .5rem 1rem rgba(0,0,0,.15), inset 0px 0px 0px 5px var(--pink) !important;
	    -moz-box-shadow: 0 .5rem 1rem rgba(0,0,0,.15), inset 0px 0px 0px 5px var(--pink) !important;
	    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15), inset 0px 0px 0px 5px var(--pink) !important;
	    cursor: cursor !important;
	    color: var(--body-text-color);
	}

		.blog-card .card .card-body h3 {
			margin-bottom: 0.75rem;
		}

			.blog-card:hover .card .card-body h3 {
			    -webkit-transition: all 0.3s ease-in-out;
			    -moz-transition: all 0.3s ease-in-out;
			    transition: all 0.3s ease-in-out;
				color: var(--pink);
			}

		.blog-card:hover .card .btn-pink {
			background-color: var(--pink-hover);
			box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
			cursor: pointer !important;
		}

		.blog-card:focus .card .btn-pink {
			-webkit-animation-name: button-push;
			animation-name: button-push;
			-webkit-animation-duration: 0.3s;
			animation-duration: 0.3s;
			-webkit-animation-timing-function: linear;
			animation-timing-function: linear;
			-webkit-animation-iteration-count: 1;
			animation-iteration-count: 1;
			cursor: pointer !important;
		}

/* Section: Blog Post */

section.blog-post .container {
	padding-top: 50px;
	padding-bottom: 40px;
}

	section.blog-post .author a {
		border-bottom: 1px dashed var(--body-text-color);
		text-decoration: none;
	}

		section.blog-post .author a:hover {
			text-decoration: none;
			border-bottom: 1px solid var(--pink);
		}

	section.blog-post .categories {
		padding-left: 0px;
	}

		section.blog-post .categories li {
			display: inline;
		}

			section.blog-post .categories li a {
				margin-left: -0.2rem;
				border-bottom: 1px dashed var(--body-text-color);
			}

				section.blog-post .categories li a:hover {
					text-decoration: none;
					border-bottom: 1px solid var(--pink);
				}

			section.blog-post .categories .label:after {
				margin-right: 0.5rem;
				margin-left: 0px;
			}

			section.blog-post .categories li:after {
				content: "|";
				margin-right: 0.5rem;
				margin-left: 0.5rem;
			}

			section.blog-post .categories li:first-child:after {
				content: "";
			}

			section.blog-post .categories li:last-child:after {
				content: "";
			}

			section.blog-post .categories li a {}

	/*section.blog-post pre code[class*="language-"] {
		box-shadow: -1px 0px 0px 0px #CCC, 0px 0px 0px 1px #CCC;
		border-left-color: var(--pink);
	}

	section.blog-post pre code[class*="language-"] {
		margin-bottom: 0px;
	}

		section.blog-post pre code[class*="language-"] + p {
			margin-top: 1rem;
		}*/
		
	div.code-toolbar > .toolbar {
		right: 1rem !important;
		top: 0.5rem !important;
	}

	section.blog-post .card-body p:last-child {
		margin-bottom: 0px;
	}

	section.blog-post .card-body img {
		max-width: 100%;
	}
	
	section.blog-post .card-body h3 {
		margin-bottom: 1rem;
	}
	
	section.blog-post .card-body hr {
		margin-top: 2rem;
		margin-bottom: 2rem;
	}
	
	section.blog-post .card-body div.captionImage {
		max-width: 100%;
		margin-bottom: 1rem;
	}
	
		section.blog-post .card-body div.captionImage img {
			height: auto;
		}
	
	section.blog-post .captionImage.center {
		margin-left: auto;
		margin-right: auto;
	}
	
	section.blog-post .captionImage .caption {
		font-style: italic;
	}
	
	section.blog-post .image.center {
		display: block;
		margin: auto;
	}
	
	section.blog-post div.code-toolbar {
		margin-bottom: 1rem;
	}

/* Footer */

footer.footer {
	border-top: solid 1px rgba(0, 0, 0, 0.05);
	padding: 2rem 0;
	color: #fff;
}

	footer.footer .footer-menu-container {
		padding-bottom: 2rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.10);
	}
	
	footer.footer .flex-column .nav-item {
		padding: 0 0 0.25rem 0;
	}
	
		footer.footer .flex-column .nav-item:last-child {
			padding: 0;
		}

	footer.footer .flex-column .nav-link {
		color: #ccc;
		display: inline;
		padding: 0px;
	}
	
		footer.footer .flex-column .nav-link:hover {
			color: #fff;
		}

	footer.dark p {}

		footer.dark p:last-child {
			margin-bottom: 0px;
		}
		
	footer.footer .copyright {
		text-align: center;
		padding-top: 2rem;
	}
	
	footer.footer .copyright a {
		color: #fff;
	}
	
		footer.footer .copyright a:hover {
			color: #fff !important;
			border-color: #fff;
		}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

/* Sidebar Nav */

.nav-sidebar .title {}

/* Sidebar Search */

.search-sidebar {}

	#Blog_SearchForm_SearchForm .form-group label {
		display: none;
	}

	.search-sidebar .title {}

		.search-sidebar .title .text-muted {
			margin-bottom: 0.5rem;
		}

	.search-sidebar form {}

		.search-sidebar form .form-group {
			margin-bottom: 0px;
		}

		.search-sidebar .form-searchfield .form-searchfield {
			margin-right: 0px;
			padding-right: 0px;
			margin-bottom: 1rem;
		}

			.search-sidebar .form-searchfield .form-searchfield input {
				border-right: 0px;
				-webkit-border-top-right-radius: 0;
				-moz-border-radius-topright: 0;
				border-top-right-radius: 0;
				-webkit-border-bottom-right-radius: 0;
				-moz-border-radius-bottomright: 0;
				border-bottom-right-radius: 0;
			}

		.search-sidebar .btn-toolbar {
			padding-left: 0px;
		}

/* Tags */

.tags-sidebar {}

	.tags-sidebar .title h3 {
	}

	.tags-sidebar ul,
	.post-tags {
		width: 100%;
		display: flex;
		padding-left: 0px;
		margin-bottom: 0px;
		flex-wrap: wrap;
	}

		.tags-sidebar ul li,
		.post-tags li {
			float: inline;
			list-style-type: none;
		}

			.tags-sidebar ul li a,
			.post-tags li a {
				padding: 0.5rem 1rem 0.5rem 1rem;
				margin-right: 0.5rem;
				-webkit-border-radius: 20px;
				-moz-border-radius: 20px;
				border-radius: 20px;
				min-width: 75px;
				text-align: center;
				font-weight: 400;
				margin-top: 1rem;
				margin-bottom: 0px;
			}

/* Scroll To Top */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: rgba(0, 0, 0, 0.2);
    width: 40px;
    height: 40px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 100%;
    z-index: 4;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

	.scroll-to-top i {
		color: #fff;
		margin: 0;
		position: relative;
		left: 13px;
		top: 8px;
		font-size: 16px;
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		transform: translateY(0px);
		-webkit-transition: all 0.1s ease-in-out;
		-moz-transition: all 0.1s ease-in-out;
		transition: all 0.1s ease-in-out;
	}

	.scroll-to-top:hover {
	    background: var(--pink);
	}
	
	@media (max-width: 800px) {
		.scroll-to-top {
			display: none;
		}
	}

/* Pagination */

.pagination .page-link {
	color: var(--body-text-color);
}

	.pagination .page-link:hover {
		color: var(--pink);
		background-color: var(--grey);
	}

	.pagination .active .page-link,
	.pagination .page-link:focus {
		background-color: #6c757d;
		border: 1px solid #6c757d;
		color: #fff;
	}

/* Form */

.form-group label {
	font-weight: 700;
}

.form-check {
	margin-bottom: 1rem;
}

