@charset "UTF-8";
/* CSS Document */

/** Import our basics */
@import url(basics.css);

body{
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
}

h1{
    font-weight: 600;
    font-size: 32px;
    border-left: 5px solid #a5206c;
    padding-left: 20px;
}

.h1, .h2, .h3, h1, h2, h3 {
    margin-top: 20px;
    margin-bottom: 40px;
}

h4{
	font-size:16px;
	color:#a5206c;
	font-weight: bolder;
}

p{
	line-height:1.6;
	margin: 0 0 20px;
}

strong{
	color:#a5206c;
}

header .logo{
	padding: 20px 0px;
}

header .nav ul{
	list-style: none;
	padding: 0px;
	margin: 0px -10px;
}

header .nav ul li{
	float: left;
}

.banner{
	background: url('../img/banner.jpg') no-repeat center center;
	width: 100%;
	height: 275px;
}

.content{
	margin-top: 25px;
	margin-bottom: 25px;
}

.row{
	display:flex;
}

.content .row .col-md-4{
	position: sticky;
    top: 150px;
    height: 100%;
    overflow: auto;
}

.content .row .col-md-8.content-block{
	flex: 1;
    padding: 20px;
}

.content .panel,
.content .panel-heading,
.content .panel-footer{
	background: #3c8dbc;
	color: #ffffff;
	border: none;
}

.content .panel{
	-webkit-border-radius: 25px !important;
	-moz-border-radius: 25px !important;
	border-radius: 25px !important;
	overflow: hidden;
}

.content .panel a{
	color: #ffffff;
}

.content .panel hr{
	display: none;
}

.content .panel button{
	border: none;
}

footer a, footer p {
	font-size: 16px;
	line-height:3;
}

footer .nav {
	background-color: #790046;
	color: #ffffff;
	font-size: 11px;
	line-height: 16px;
	padding: 40px 0;
}

	footer .nav h3, footer .nav h4 {
		line-height: 26px;
		font-family: 'Poppins', sans-serif;
		font-weight: bold;
		font-size: 20px;
		margin-bottom: 40px;
		color: #FFFFFF;
	}

footer .nav ul{
	list-style: none;
	padding: 0px;
	margin: 0px;
}

footer .nav a{
	color: #ffffff;
}

footer .nav a:hover{
	color: #aaa;
}

footer .footer-location{
	padding-top:40px;
}

footer .footer-location h4{
	margin-top:0px;
}

footer .footer-socials{
	padding:0;
	padding-top:220px;
}

	footer .footer-socials .footer-youtube,
	footer .footer-socials .footer-spotify {
		padding-left: 0px;
	}

	footer .footer-socials img {
		height: 37px;
		width: 37px;
	}

footer .copyright {
	color: #000000;
	text-align: center;
	line-height: 40px;
	font-size: 14px;
	padding: 10px 0;
}

footer .copyright a{
	color: #790046;
}

@media screen and (max-width:991px){
	.row{
		display:block;
	}
	
	.content .row .col-md-4{
		position: relative;
		top: 0px;
	}
	
	.content .row .col-md-8.content-block{
		flex: none;
		padding: 20px;
	}
	footer .footer-socials {
		padding: 0;
	}

	footer .footer-top-break{
padding-top:40px;
	}
}