@import url(http://fonts.googleapis.com/css?family=Raleway:400,300,500,700,800);
@import url(https://fonts.googleapis.com/css?family=Courgette);

/*!
 * Clean v2.0.0
 * Homepage: http://scripteden.com
 * Copyright 2015 Script Eden
 * Licensed under MIT
*/

/* ---------------------------------------------- /*
 * CSS Custom Properties for Theme Support
/* ---------------------------------------------- */

:root {
	/* Light theme colors */
	--bg-primary: #ffffff;
	--bg-secondary: #f5f5f5;
	--bg-card: #ffffff;
	--bg-overlay: rgba(255, 255, 255, 0.5);
	
	--text-primary: #222222;
	--text-secondary: #666666;
	--text-muted: #999999;
	--text-light: #ffffff;
	
	--accent-primary: #FDC057;
	--accent-secondary: #E7746F;
	--accent-hover: #999999;
	
	--border-color: #d4d4d4;
	--border-light: #D8E1E4;
	
	--shadow-light: rgba(0, 0, 0, 0.1);
	--shadow-medium: rgba(0, 0, 0, 0.15);
	--shadow-dark: rgba(0, 0, 0, 0.2);
}

.dark-mode {
	/* Dark theme colors */
	--bg-primary: #1a1a1a;
	--bg-secondary: #2d2d2d;
	--bg-card: #2a2a2a;
	--bg-overlay: rgba(26, 26, 26, 0.8);
	
	--text-primary: #ffffff;
	--text-secondary: #e0e0e0;
	--text-muted: #cccccc;
	--text-light: #ffffff;
	
	--accent-primary: #FDC057;
	--accent-secondary: #E7746F;
	--accent-hover: #bbbbbb;
	
	--border-color: #404040;
	--border-light: #454545;
	
	--shadow-light: rgba(0, 0, 0, 0.3);
	--shadow-medium: rgba(0, 0, 0, 0.5);
	--shadow-dark: rgba(0, 0, 0, 0.7);
}

body {
	font: 300 14px/1.8 'Raleway', sans-serif;
	color: var(--text-secondary);
	background-color: var(--bg-primary);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transition: background-color 0.3s ease, color 0.3s ease;
}

/* Smooth scrolling for iOS */
html {
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--accent-primary);
	transition: color 0.3s ease;
}

a:hover {
	text-decoration: none;
	color: var(--accent-hover);
}

/* ---------------------------------------------- /*
 * Transition elsements
/* ---------------------------------------------- */


.navbar a,
.form-control {
	-webkit-transition: all 0.4s ease-in-out 0s;
	   -moz-transition: all 0.4s ease-in-out 0s;
		-ms-transition: all 0.4s ease-in-out 0s;
		 -o-transition: all 0.4s ease-in-out 0s;
			transition: all 0.4s ease-in-out 0s;
}

a,
.btn {
	-webkit-transition: all 0.125s ease-in-out 0s;
	   -moz-transition: all 0.125s ease-in-out 0s;
		-ms-transition: all 0.125s ease-in-out 0s;
		 -o-transition: all 0.125s ease-in-out 0s;
			transition: all 0.125s ease-in-out 0s;
}

/* ---------------------------------------------- /*
 * Reset box-shadow
/* ---------------------------------------------- */

.btn,
.form-control,
.form-control:hover,
.form-control:focus,
.navbar-custom .dropdown-menu {
	-webkit-box-shadow: none;
			box-shadow: none;
}

/* ---------------------------------------------- /*
 * Typography
/* ---------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
	font: 700 40px/1.2 Raleway, sans-serif;
	text-transform: uppercase;
	letter-spacing: 5px;
	margin: 5px 0 5px;
	color: var(--text-primary);
	transition: color 0.3s ease;
}

h2 {
	font-size: 30px;
	margin: 0 0 30px;
}

h3 {
	font-size: 13px;
	letter-spacing: 1px;
	margin: 0 0 5px;
}

h4 {
	font-size: 12px;
	letter-spacing: 1px;
}

h5 {
	font-size: 12px;
	letter-spacing: 1px;
	font-weight: 400;
}

h6 {
	font-size: 11px;
	letter-spacing: 1px;
	font-weight: 400;
}

/* ---------------------------------------------- /*
 * Reset border-radius
/* ---------------------------------------------- */

.btn,
.iconbox,
.progress,
#filter li,
.scroll-up a,
.form-control,
.input-group-addon {
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
		 -o-border-radius: 3px;
			border-radius: 3px;
}


/* ---------------------------------------------- /*
 * Input-group
/* ---------------------------------------------- */

.input-group .form-control {
	z-index: auto;
}

.input-group-addon {
	background: #D8E1E4;
	border: 2px solid #D8E1E4;
	padding: 6px 15px;
	font-weight: 700;
}

/* ---------------------------------------------- /*
 * Inputs styles
/* ---------------------------------------------- */

.form-control {
	background: #FFF;
	border: 1px solid #D8E1E4;
	font-size: 12px;
	padding: 0 15px;
}

.form-control:focus{
    border-color: rgba(135, 135, 135, 0.7);
}

.input-lg,
.form-horizontal .form-group-lg .form-control {
	height: 38px;
	font-size: 13px;
}

.input-sm,
.form-horizontal .form-group-sm .form-control {
	font-size: 11px;
	height: 30px;
}

textarea.form-control {
	padding: 15px;
    max-width: 100%;
    min-width: 100%;
}

/* ---------------------------------------------- /*
 * Custom button style
/* ---------------------------------------------- */

.btn {
	font-family: Raleway, sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 13px;
	padding: 8px 26px;
	border: 0;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn.active {
	outline: inherit !important;
}

/* Button size */

.btn-lg,
.btn-group-lg > .btn {
	padding: 10px 25px;
	font-size: 13px;
    background: rgba(17, 17, 17, 0.8);
    color: #fff;
    margin: 5px;
}
.btn-lg:hover,
.btn-group-lg > .btn:hover{
    background: rgba(17, 17, 17, 1.8);
    color: #fff;
}

.btn-sm,
.btn-group-sm > .btn {
	padding: 6px 25px;
	font-size: 11px;
}

.btn-xs,
.btn-group-xs > .btn {
	padding: 5px 25px;
	font-size: 10px;
}

.btn .icon-before {
	margin-right: 6px;
}

.btn .icon-after {
	margin-left: 6px;
}

/* ---------------------------------------------- /*
 * General Styles
/* ---------------------------------------------- */

.pfblock {
	padding: 120px 0 100px;
}

.pfblock-gray {
	background: var(--bg-secondary);
	transition: background-color 0.3s ease;
}

.pfblock-image {
	padding: 0;
}

.calltoaction h1,
.calltoaction h2,
.calltoaction h3,
.calltoaction h4,
.calltoaction h5,
.calltoaction h6,
.pfblock-image,
.pfblock-image h1,
.pfblock-image h2,
.pfblock-image h3,
.pfblock-image h4,
.pfblock-image h5,
.pfblock-image h6 {
	color: #fff;
}

.pfblock-header {
	text-align: center;
	margin: 0 0 60px;
}

.pfblock-header-left {
	text-align: left;
}

.pfblock-header-left .pfblock-line {
	width: inherit;
	margin: 30px 0;
}

.pfblock-title{
    font-weight: 800;
}

.pfblock-subtitle {
	font-family: Raleway, "Times New Roman", Times, sans-serif;
	font-style: normal;
	font-size: 18px;
}

.pfblock-line {
	background: rgba(135, 135, 135, 0.5);
	width: 100px;
	height: 1px;
	margin: 30px auto;
}

.pfblock-icon {
	font-size: 32px;
}
.calltoaction *{
    text-align: center;
}
.calltoaction {
    background: url(../images/patternDark.png);
	background-color: #222;
	background-repeat: no-repeat;
	background-position: 0 0;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
		 -o-background-size: cover;
			background-size: cover;
	padding: 50px 0;
	color: #999;
}

.calltoaction h2 {
	font-size: 20px;
	letter-spacing: 1px;
	margin-bottom: 5px;
}

.calltoaction-decription{
    padding-top: 20px;
    padding-bottom: 30px;
    font-size: 20px;
    color: #fff;
}

.calltoaction-btn {
	text-align: center;
}

.calltoaction-btn > .btn {
    background: rgba(255, 255, 255, .8);
    color: #111;
	margin-top: 5px;
	margin-bottom: 5px;
}
.calltoaction-btn > .btn:hover{
    background: #fff;
}

.long-down {
	margin-bottom: 40px;
}

/* ---------------------------------------------- /*
 * Home
/* ---------------------------------------------- */

#home {
	background: url(../images/background.png);
	background-color: #222;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
		 -o-background-size: cover;
			background-size: cover;
	padding: 0;
}

.home-overlay {
    background-color: rgba(44, 62, 80, 0.3);
    /*background-image: url("../images/pattern.png");*/
    background-repeat: repeat;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.intro {
	position: absolute;
	width: auto;
	top: 50%;
	left: 50%;
	text-align: center;
	-webkit-transform: translate(-50%, -50%);
	   -moz-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		 -o-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
	background-color: rgba(255, 255, 255, 0.5);
	padding: 40px;
	border-radius: 15px;
	max-width: 800px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.intro h1{
    font-weight: 800;
    color: #222;
}

.intro .start {
    color: #333;
}

.intro a {
    color: #E7746F;
    font-weight: 500;
}

.intro a:hover {
    color: #222;
    text-decoration: underline;
}

.start {
	font-family: Raleway, "Times New Roman", Times, sans-serif;
	font-size: 16px;
	font-style: normal;
	text-transform: none;
	margin: 15px 0;
}

/* ---------------------------------------------- /*
 * Servise
/* ---------------------------------------------- */

.iconbox {
	background: var(--bg-card);
	border-bottom: 1px solid var(--border-color);
	text-align: center;
	padding: 40px 20px;
	margin: 0 0 20px;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}

.iconbox-icon {
	margin: 0 0 15px;
	font-size: 32px;
	color: #222;
}

.iconbox-title {
	margin: 0 0 15px;
	padding: 0;
}

/* ---------------------------------------------- /*
 * Skills
/* ---------------------------------------------- */

.chart {
    display: inline-block;
    height: 140px;
    margin: 50px 0;
    position: relative;
    text-align: center;
    width: 140px;
}
.chart canvas {
    left: 0;
    position: absolute;
    top: 0;
}
.percent {
    display: inline-block;
    font-size: 25px;
    font-weight: 300;
    line-height: 140px;
    z-index: 2;
}
.percent:after {
    content: "%";
    font-size: 50%;
    margin-left: 0.1em;
}

/* ---------------------------------------------- /*
 * Contact
/* ---------------------------------------------- */

.ajax-response {
	text-align: center;
}

/* ---------------------------------------------- /*
 * Footer
/* ---------------------------------------------- */

#footer {
	background: #222;
	text-align: center;
	padding: 40px 0;
	color: #FFF;
}

.copyright {
	margin: 0;
}

.copyright a{
    border-bottom: 1px dotted #fff;
}

#footer span{
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    color: #ff5252;
}

/* Change Icon Color */
.fa{
	color: black;
}

.fa-angle-down {
	color: white;
}

.social-links {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
}

.social-links li {
	display: inline-block;
	margin: 5px;
}

.social-links a {
	width: 36px;
	height: 36px;
	display: block;
	line-height: 35px;
	text-align: center;
	border: 1px solid rgba(0, 0, 0, .5);
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
			border-radius: 3px;
	font-size: 14px;
	color: rgba(0, 0, 0, .2);
}

.social-links a:hover {
	border: 1px solid rgba(0, 0, 0, .8);
	color: rgba(0, 0, 0, .8);
}

/* ---------------------------------------------- /*
 * Navigation
/* ---------------------------------------------- */

.header {
	border-bottom: 1px solid #f5f5f5;
	position: relative;
	width: 100%;
	z-index: 998;
}

.navbar-custom {
	border: 0;
	border-radius: 0;
	margin: 0;
	text-transform: uppercase;
	font-family: Raleway, sans-serif;
}

.navbar-custom,
.navbar-custom .dropdown-menu {
	background: #fff;
	padding: 0;
}

.navbar-custom .navbar-brand,
.navbar-custom .navbar-nav > li > a,
.navbar-custom .navbar-nav .dropdown-menu > li > a {
	font-size: 11px;
	letter-spacing: 3px;
	color: #222;
}

.navbar-custom .nav li.active,
.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus,
.navbar-custom .navbar-nav > li.active a {
	background: none;
	outline: 0;
	color: #E7746F;
}

.navbar-custom .navbar-brand {
	font-weight: 700;
	font-size: 22px;
    font-family: Courgette, cursive;
    text-transform: capitalize;
}

.navbar-custom .dropdown-menu {
	border: 0;
	border-top: 2px solid #E7746F;
	border-radius: 0;
}

.navbar-custom .dropdown-menu > li > a {
	padding: 10px 20px;
}

.navbar-custom .nav .open > a,
.navbar-custom .dropdown-menu > li > a:hover,
.navbar-custom .dropdown-menu > li > a:focus {
	background: #f5f5f5;
}

.navbar-custom .navbar-toggle .icon-bar {
	background: #222;
}

/* ---------------------------------------------- /*
 * Scroll to top
/* ---------------------------------------------- */

.scroll-up {
	position: fixed;
	display: none;
	z-index: 999;
	bottom: 2em;
	right: 2em;
}

.scroll-up a {
	background-color: rgba(135, 135, 135, 0.5);
	display: block;
	width: 35px;
	height: 35px;
	text-align: center;
	color: #fff;
	font-size: 15px;
	line-height: 30px;
}

.scroll-up a:hover,
.scroll-up a:active {
	background-color: rgba(235, 235, 235, .8);
	color: #e7746f;
}

/* ---------------------------------------------- /*
 * Dark Mode Toggle
/* ---------------------------------------------- */

.dark-mode-toggle {
	position: fixed;
	display: block;
	z-index: 999;
	bottom: 5em;
	right: 2em;
}

.dark-mode-toggle button {
	background-color: rgba(135, 135, 135, 0.9);
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.dark-mode-toggle button:hover {
	background-color: rgba(231, 116, 111, 0.9);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.dark-mode-toggle button:active {
	transform: translateY(0);
}

.dark-mode-toggle i {
	position: absolute;
	transition: all 0.3s ease;
}

#lightIcon {
	opacity: 1;
	transform: scale(1);
}

#darkIcon {
	opacity: 0;
	transform: scale(0.8);
}

/* Dark mode active state */
.dark-mode #lightIcon {
	opacity: 0;
	transform: scale(0.8);
}

.dark-mode #darkIcon {
	opacity: 1;
	transform: scale(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.dark-mode-toggle {
		bottom: 4em;
		right: 1.5em;
	}
	
	.dark-mode-toggle button {
		width: 44px;
		height: 44px;
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.dark-mode-toggle {
		bottom: 3.5em;
		right: 1em;
	}
	
	.dark-mode-toggle button {
		width: 44px;
		height: 44px;
		font-size: 16px;
	}
}

/* ---------------------------------------------- /*
 *Scroll Down
/* ---------------------------------------------- */

.scroll-down {
	position: absolute;
	left: 50%;
	bottom: 40px;
	border: 2px solid #fff;
	border-radius: 50%;
	height: 50px;
	width: 50px;
	margin-left: -15px;
	display: block;
	z-index: 10;
    text-align: center;
}

.scroll-down span{
    position: relative;
    color: #fff;
    -webkit-animation-name: drop;
	-webkit-animation-duration: 1s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-delay: 0s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-play-state: running;
	animation-name: drop;
	animation-duration: 1s;
	animation-timing-function: linear;
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-play-state: running;
}

@-webkit-keyframes drop	{
	0%   { top:0px;  opacity: 0;}
	30%  { top:10px; opacity: 1;}
	100% { top:25px; opacity: 0;}
}

@keyframes drop	{
	0%   { top:0px;  opacity: 0;}
	30%  { top:10px; opacity: 1;}
	100% { top:25px; opacity: 0;}
}

/* ---------------------------------------------- /*
 * Preloader
/* ---------------------------------------------- */

#preloader {
	background: #FFF;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 9999;
}

#status {
	background-image: url(../images/preloader.gif);
	background-position: center;
	background-repeat: no-repeat;
	height: 200px;
	left: 50%;
	margin: -100px 0 0 -100px;
	position: absolute;
	top: 50%;
	width: 200px;
}

/* ---------------------------------------------- /*
 * Media
/* ---------------------------------------------- */

/* Tablet and Mobile - Single Column Stacking */
@media (max-width: 768px) {

	.calltoaction {
		text-align: center;
	}
	
	/* Navigation improvements */
	.navbar-custom .navbar-brand {
		font-size: 18px;
	}
	
	/* About section */
	.iconbox {
		margin-bottom: 30px;
	}
	
	/* Portfolio - Single Column Layout */
	#portfolio .col-xs-12.col-sm-3.col-md-3 {
		width: 100%;
		float: none;
		margin: 0 auto 20px auto;
		max-width: 400px;
	}
	
	#portfolio .container {
		text-align: center;
	}
	
	#portfolio .pfblock-header {
		text-align: center;
	}
	
	#portfolio .pfblock-title,
	#portfolio .pfblock-subtitle {
		text-align: center;
	}
	
	.portfolio-tile {
		height: 200px !important;
	}
	
	/* Sections padding */
	.pfblock {
		padding: 80px 0 60px;
	}
	
	/* Home section */
	.intro h1 {
		font-size: 36px;
	}
	
	.start {
		font-size: 14px;
	}

}

/* Small Mobile devices */
@media (max-width: 480px) {

	h1 {
		font-size: 28px;
		letter-spacing: 2px;
		margin: 10px 0;
	}

	h2 {
		font-size: 22px;
		margin: 0 0 20px;
		letter-spacing: 2px;
	}
	
	h3 {
		font-size: 12px;
	}
	
	/* Navigation */
	.navbar-custom .navbar-brand {
		font-size: 16px;
		letter-spacing: 2px;
	}
	
	.navbar-custom .navbar-nav > li > a {
		padding: 15px;
		font-size: 12px;
	}
	
	/* Home section */
	.intro h1 {
		font-size: 24px;
		line-height: 1.3;
	}
	
	.start {
		font-size: 13px;
		line-height: 1.5;
	}
	
	/* Sections */
	.pfblock {
		padding: 60px 0 40px;
	}
	
	.pfblock-header {
		margin: 0 0 30px;
	}
	
	.pfblock-subtitle {
		font-size: 16px;
		line-height: 1.5;
	}
	
	/* About section */
	.iconbox {
		padding: 30px 15px;
	}
	
	.iconbox-icon {
		font-size: 28px;
		margin: 0 0 10px;
	}
	
	.iconbox-title {
		font-size: 12px;
		margin: 0 0 10px;
	}
	
	.iconbox-desc {
		font-size: 12px;
		line-height: 1.6;
	}
	
	/* Portfolio - Smaller mobile adjustments */
	#portfolio .col-xs-12.col-sm-3.col-md-3 {
		max-width: 350px;
	}
	
	.portfolio-tile {
		height: 200px !important;
	}
	
	/* Call to action buttons */
	.calltoaction h2 {
		font-size: 18px;
		margin-bottom: 20px;
	}
	
	.calltoaction-btn .btn {
		display: block;
		width: 90%;
		margin: 10px auto;
		padding: 12px 20px;
	}
	
	/* Social links */
	.social-links a {
		width: 44px;
		height: 44px;
		line-height: 42px;
		font-size: 16px;
		margin: 5px;
	}
	
	/* Footer */
	#footer {
		padding: 30px 0;
	}
	
	.copyright {
		font-size: 12px;
	}
	
	/* Touch-friendly improvements */
	a, button {
		min-height: 44px;
		min-width: 44px;
	}
	
	/* Scroll button */
	.scroll-down {
		width: 44px;
		height: 44px;
		bottom: 20px;
	}
	
	.scroll-up a {
		width: 44px;
		height: 44px;
		line-height: 40px;
		font-size: 18px;
	}

}


/*--------------------------------*/
/***** Simple Portfolio Tiles *****/
/*--------------------------------*/

.portfolio-tile {
	display: block;
	width: 100%;
	height: 150px !important;
	background: #f0f0f0;
	border: 1px solid #ddd;
	margin-bottom: 20px;
	overflow: hidden;
	position: relative;
}


.portfolio-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* GitHub logo specific styling for proper fit */
.portfolio-tile img.github-logo {
	object-fit: contain;
	background-color: #fff;
	padding: 20px;
	box-sizing: border-box;
}


/* Button container for side-by-side buttons */
.button-container {
	display: flex;
	gap: 15px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

/* Equal-sized buttons */
.btn-equal {
	flex: 1;
	min-width: 200px;
	max-width: 200px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	color: #fff !important;
}

/* Hover animation - card-like pop effect */
.btn-equal:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	filter: brightness(1.05);
	color: #fff !important;
}

/* Prevent button text color from changing when clicked/visited */
.btn-equal:visited,
.btn-equal:active,
.btn-equal:focus {
	color: #fff !important;
}

/* Card-like hover effect for all linked images */
a img {
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

a img:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	filter: brightness(1.05);
}


/*-----------------------*/
/***** Quote Rotator *****/
/*-----------------------*/

.cbp-qtrotator {
	position: relative;
	margin: 3em auto 0em auto;
	max-width: 90%;
	width: 90%;
}

.cbp-qtrotator .cbp-qtcontent {
	position: absolute;
	min-height: 200px;
	border-top: 1px solid #f4f4f4;
	border-bottom: 1px solid #f4f4f4;
	padding: 2em 0;
	top: 0;
	z-index: 0;
	opacity: 0;
	width: 100%;
}

.no-js .cbp-qtrotator .cbp-qtcontent {
	border-bottom: none;
}

.cbp-qtrotator .cbp-qtcontent.cbp-qtcurrent,
.no-js .cbp-qtrotator .cbp-qtcontent {
	position: relative; 
	z-index: 100;
	pointer-events: auto;
	opacity: 1;
}

.cbp-qtrotator .cbp-qtcontent:before,
.cbp-qtrotator .cbp-qtcontent:after {
	content: " ";
	display: table;
}

.cbp-qtrotator .cbp-qtcontent:after {
	clear: both;
}

.cbp-qtprogress {
	position: absolute;
	background: #FF5252;
	height: 1px;
	width: 0%;
	top: 0;
	z-index: 1000;
}

.cbp-qtrotator blockquote {
	margin: 0;
	padding: 0;
    border: 0;
    font-size: 12px;
}

.cbp-qtrotator blockquote p {
	font-size: 2em;
	color: #888;
	font-weight: 300;
	margin: 0.4em 0 1em;
}

.cbp-qtrotator blockquote footer {
	font-size: 1.2em;
}

.cbp-qtrotator blockquote footer:before {
	content: '― ';
}

.cbp-qtrotator .cbp-qtcontent img {
	float: right;
	margin-left: 3em;
}

/* Example for media query */
@media screen and (max-width: 30.6em) { 

	.cbp-qtrotator {
		font-size: 70%;
	}

	.cbp-qtrotator img {
		width: 80px;
	}

}

