/**
 * Anastasija main styles file
 * by valicos
 **/

/* fonts */
@font-face {
	font-family: 'Montserrat-Regular';
	src: url( '../fonts/Montserrat-Regular.woff' ) format( 'woff' ),
	url( '../fonts/Montserrat-Regular.ttf' ) format( 'truetype' );
}
@font-face {
	font-family: 'Montserrat-Bold';
	src: url( '../fonts/Montserrat-Bold.woff' ) format( 'woff' ),
	url( '../fonts/Montserrat-Bold.ttf' ) format( 'truetype' );
}
@font-face {
	font-family: 'OpenSans-Regular';
	src: url( '../fonts/open-sans-regular.woff' ) format( 'woff' ),
	url( '../fonts/open-sans-regular.ttf' ) format( 'truetype' );
}
@font-face {
	font-family: 'OpenSans-Bold';
	src: url( '../fonts/open-sans-700.woff' ) format( 'woff' ),
	url( '../fonts/open-sans-700.ttf' ) format( 'truetype' );
}

/* general */
body {
	font-family: 'OpenSans-Regular', sans-serif;
	font-size: 16px;
	background-color: #fff;
	position: relative;
	color: #555;
}
a {
	transition: all 0.3s;
}
p {
	line-height: 1.3;
}
.z-0 {
	z-index: 0;
}
.z-100 {
	z-index: 100;
}
.p-relative {
	position: relative;
}
.p-absolute {
	position: absolute;
}
.a-left {
	text-align: left;
}
.a-center {
	text-align: center;
}
.padding-0 {
	padding: 0 !important;
}
.padding-text,
.padding-list {
	padding: 20px 10px;
	font-size: 0.9rem;
}
.margin-0 {
	margin: 0 !important;
}
.spacer-1 {
	height: 10px;
}
.spacer-2 {
	height: 20px;
}
.spacer-3 {
	height: 30px;
}
.spacer-4 {
	height: 40px;
}
.spacer-5 {
	height: 50px;
}
h1 {
	font-size: 18px;
	margin: 5px 0 7px;
	line-height: 1;
}
h3 {
	font-size: 1.85rem;
	margin: 0;
	line-height: 1;
}
h4 {
	font-size: 1.6rem;
	margin: 0;
	line-height: 1.2
}
ul.padded-list {
	list-style: none;
}
ul.padded-list li {
	margin-bottom: 25px;
	text-indent: -2em;
}
ul.padded-list li:before {
	padding-right: 13px;
	width: 10px;
	height: 10px;
}
ul.padded-list li:nth-child(odd):before {
	content: url( '../img/list_bullet_odd.png' );
}
ul.padded-list li:nth-child(even):before {
	content: url( '../img/list_bullet_even.png' );
}
.underline {
	height: 0;
	border-bottom: 1px solid #fff;
	display: inline-block;
	margin: 0 auto;
	width: 240px;
}
.bookmark {
	height: 20px;
	display: inline-block;
	background-color: #923f8d;
	margin: 0 auto;
	width: 300px;
}

/* General media queries */
@media ( min-width: 576px ) {
	h1 {
		font-size: 20px;
	}
	.underline {
		width: 300px;
	}
}
@media ( min-width: 768px ) {
	h1 {
		font-size: 22px;
	}
}
@media ( min-width: 992px ) {
	h1 {
		font-size: 26px;
	}
	.padding-text {
		padding: 20px 75px;
	}
	.padding-list {
		padding: 20px 50px;
	}
}
@media ( min-width: 1200px ) {
	.padding-text {
		padding: 20px 160px;
	}
	.padding-list {
		padding: 20px 100px;
	}
}

/* top-bar */
.top-bar {
	text-align: center;
	background-image: url( "../img/background.jpg" );
	background-position: right;
	background-repeat: no-repeat;
	background-size: 75% auto;
}
.top-bar .signature {
	max-width: 220px;
	height: auto;
}

/* menu-bar */
#menu-bar-container {
	top: 130px;
}
.menu-bar {
	background-color: #c89ac6;
	background-color: rgba( 189, 77, 183, 0.75 );
}
.navbar-dark .navbar-nav .nav-link {
	color: #fff;
	margin: 5px;
	padding: 5px;
	font-size: 0.9rem;
}
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:active,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
	color: #fff;
	background-color: rgba( 189, 77, 183, 1 );
}
.navbar-toggler {
	margin: 17px;
}
/* lg menu styling */
@media ( min-width: 768px ) {
	#menu-bar-container {
		top: 135px;
	}
}
@media ( min-width: 992px ) {
	#menu-bar-container {
	top: 138px;
	}
}
@media ( min-width: 1200px ) {
	#menu-bar-container {
		top: 139px;
	}
	.menu-bar {
		background-color: rgba( 189, 77, 183, 0.55 );
	}
	.navbar-dark .navbar-nav .nav-link {
		margin: 22px 15px;
		border-bottom: 2px solid transparent;
	}
	.navbar-dark .navbar-nav .nav-link:focus,
	.navbar-dark .navbar-nav .nav-link:active,
	.navbar-dark .navbar-nav .nav-link:hover,
	.navbar-dark .navbar-nav .nav-link.active {
		border-bottom: 2px solid #fff;
		background-color: transparent;
	}
}

/* banner */
.banner {
	height: 320px;
	background-image: url( "../img/banner.jpg" );
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	color: #fff;
	text-align: center;
}
.banner h2 {
	padding: 15px 0;
	position: relative;
	top: 50%;
	font-size: 20px;
}
.banner .underline {
	position: relative;
	top: 45%;
}
@media ( min-width: 576px ) {
	.banner {
		height: 480px;
	}
	.banner h2 {
		font-size: 24px;
	}
	.banner .underline {
		position: relative;
		top: 48%;
	}
}
@media ( min-width: 768px ) {
	.banner {
		height: 540px;
	}
	.banner h2 {
		font-size: 32px;
	}
}
@media ( min-width: 992px ) {
	.banner {
		height: 640px;
	}
}

/* Services section */
.service-image-wrapper img {
	max-width: 95%;
}
.service-title {
	margin: 25px 0 0;
	color: #7475a1;
}
.service-underline {
	width: 250px;
	border-color: #7475a1;
}
.service-text {
	margin: 25px 0;
	font-size: 0.9rem;
	text-align: left;
	padding: 20px 10px;
	margin: 0;
}
.service-link {
	padding: 8px 15px;
	color: #fff;
	background-color: #7475a1;
	font-size: 0.8rem;
	font-weight: bold;
}
.service-link span {
	font-size: 1.2rem;
	padding-left: 5px;
}
.service-link:focus,
.service-link:active,
.service-link:hover {
	color: #fff;
	background-color: rgba( 116, 117, 161, 0.75 );
	text-decoration: none;
}
@media ( min-width: 992px ) {
	.service-text {
		padding: 20px 40px;
	}
}

/* Greetings section */
.greetings-wrapper {
	background-image: url( "../img/greetings.jpg" );
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	color: #fff;
}
.greetings {
	max-width: 1140px;
	margin: 0 auto;
}
.greetings-text {
	font-size: 0.9rem;
}

/* About me */
.about-us-title {
	margin: 25px 0 0;
	color: #7475a1;
}
.about-me .underline {
	border-color: #7475a1;
}
.signature-image-wrapper {
	text-align: right;
}
.signature-image-wrapper img {
	width: 170px;
	height: auto;
}
.about-us-text {
	font-size: 0.9rem;
}

/* Auditors */
.auditors-title {
	margin: 25px 0 0;
	color: #7475a1;
	padding: 0 50px 10px;
}
.auditors .underline {
	border-color: #7475a1;
}
.padded-list li {
	font-size: 0.9rem;
}

/* Description */
.description-wrapper {
	color: #fff;
	background-color: rgba( 189, 77, 183, 0.55 );
}
.description {
	max-width: 1140px;
	margin: 0 auto;
}
.description-title {
	margin: 25px 0 0;
	padding: 0 50px 10px;
}

/* Why learning */
.why-learning-title {
	margin: 25px 0 0;
	padding: 0 50px 10px;
	color: #7475a1;
}
.why-learning .underline {
	border-color: #7475a1;
}

/* What will learn */
.what-will-learn-wrapper {
	color: #fff;
	background-color: #7475a1;
}
.what-will-learn {
	max-width: 1140px;
	margin: 0 auto;
}
.what-will-learn-title {
	margin: 25px 0 0;
	padding: 0 50px 10px;
}
.what-will-learn .bookmark{
	background-color: #464982;
}

/* Methods */
.methods-title {
	margin: 25px 0 0;
	padding: 0 50px 10px;
	color: #7475a1;
}
.methods .underline {
	border-color: #7475a1;
}

/* Informations */
.informations {
	border: 2px solid #923f8d;
}
.informations-title {
	margin: 25px 0 0;
	padding: 0 0 10px;
	color: #923f8d;
}
.informations .underline {
	border-color: #923f8d;
}
.m-bkg {
	color: #fff;
	margin: 5px;
	padding: 7px 12px;
	font-size: 0.9rem;
	background-color: #923f8d;
	display: inline-block;
	width: 120px;
}
.info-detail {
	font-size: 1.2rem;
	padding: 5px 0 10px;
}
.informations .padded-list {
	text-align: left;
}
.informations .padded-list li {
	margin-bottom: 10px;
}
.informations-text a,
.informations-text span {
	color: #333;
	text-decoration: underline;
}

/* Registration */
.registration-title {
	margin: 0;
	padding: 0 50px 10px;
	color: #7475a1;
}
.registration .underline {
	border-color: #7475a1;
}
.registration-detail {
	border: 1px solid #777;
	padding: 2px 15px 5px;
	margin: 10px 25px;
}
.registration-text {
	font-size: 0.9rem;
}
.simple-list {
	font-size: 0.9rem;
	list-style-type: none;
}
form label {
	padding-left: 10px;
	line-height: 1.2;
	position: relative;
	top: -3px;
}
.registration-link {
	padding: 8px 25px;
	color: #fff;
	background-color: #923f8d;
	font-size: 0.8rem;
	font-weight: bold;
}
.registration-linkspan {
	font-size: 1.2rem;
	padding-left: 5px;
}
.registration-link:focus,
.registration-link:active,
.registration-link:hover {
	color: #fff;
	background-color: #b25fad;
	text-decoration: none;
}
.error-msg {
	font-size: 0.9rem;
	color: #ff3355;
}

/* Footer */
.footer-wrapper {
	color: #fff;
	background-color: rgba( 189, 77, 183, 0.55 );
}
.footer a {
	color: #fff;
	font-weight: bold;
	border-bottom: 1px solid transparent;
}
.footer a:focus,
.footer a:active,
.footer a:hover {
	color: #fff;
	border-bottom: 1px solid #fff;
	text-decoration: none;
}
