/*
-----------------------------------
generale
-----------------------------------
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
    color: #2d3142;
}

h1 {
	font-size: 34px;
	font-family: 'Libre Baskerville', serif;
	color: #edbe6e;
	font-weight: 400;
	line-height: 1.2em;
}

@media (max-width:768px) {	
	h1{
		font-size: 28px;
	}
}

h2 {
	font-size: 28px;
	font-family: 'Libre Baskerville', serif;
	color: #edbe6e;
	font-weight: 400;
	line-height: 1.2em;
}

h3 {
	font-size: 22px;
	font-family: 'Libre Baskerville', serif;
	color: #edbe6e;
	font-weight: 400;
	line-height: 1.2em;
}

h4 {
	font-size: 17px;
	font-family: 'Libre Baskerville', serif;
	color: #edbe6e;
	font-weight: 400;
	line-height: 1.2em;
}

h5 {
	font-size: 124px;
	font-family: 'Inspiration', cursive;
	font-weight: 400;
	color: #edbe6e;
}

p {
	font-size: 18px;
	font-family: 'Raleway', sans-serif;
	color: #868585;
	line-height: 1.2em;
}

.container {
	width: 1240px;
	margin: 0 auto;
}

@media (max-width:1240px) {
	.container {
	width: 100%;
	}
}

.btn {
	background-color: #edbe6e;
	font-size: 16px;
	font-family: 'Raleway', sans-serif;
	color: #ffffff;
	border: 2px solid #edbe6e;
	padding: 5px 30px;
	border-radius: 20px;
}

.btn:hover {
	background-color: transparent;
	color: #868585;
	border: 2px solid #edbe6e;
	transition: .5s;
	cursor: pointer;
}

.btn-invers {
	background-color: #ffffff;
	font-size: 16px;
	font-family: 'Raleway', sans-serif;
	color: #edbe6e;
	border: 2px solid #ffffff;
	padding: 5px 30px;
	border-radius: 20px;
}

.btn-invers:hover {
	background-color: transparent;
	color: #868585;
	border: 2px solid #ffffff;
	transition: .5s;
	cursor: pointer;
}

/*
-----------------------------
MENIU
-----------------------------
*/

.continut-navigation-home {
	height: 120px;
}

.continut-navbar {
	display: inline-flex;
	flex-wrap: wrap;
	width: 100%;
}

.hamburger-menu {
	display: none;
}

.logo-menu {
	padding: 30px 0 10px;
	width: 40%;
}

.navbar-principal {
	padding: 80px 0 10px;
	width: 60%;
}

.navbar-container {
	float: right;
}

.menu-items {
	display: inline-flex;
	flex-wrap: wrap;
}

.menu-items a{
	font-size: 17px;
	font-family: 'Libre Baskerville', serif;
	color: #868585;
	font-weight: 400;
	line-height: 1.2em;
	padding: 0 0 0 20px;
}

.menu-items a:hover {
	color: #edbe6e;
}

.active-btn a{
	color: #edbe6e;
	text-transform: uppercase;
}

.text-contact-header {
	display: none;
}

/* dropdown meniu */

.dropdown {
	overflow: hidden;
}
  
.dropdown .dropbtn {
	background-color: #ffffff;
	border: none;
	font-size: 17px;
	font-family: 'Libre Baskerville', serif;
	color: #868585;
	font-weight: 400;
	line-height: 1.2em;
	padding: 0 0 0 20px;
}
  
.dropdown:hover .dropbtn {
	color: #edbe6e;
	text-transform: uppercase;
}
  
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}
  
.dropdown-content a {
	float: none;
	color: #868585;
	padding: 12px 20px;
	text-decoration: none;
	display: block;
	text-align: left;
}
  
.dropdown-content a:hover {
	background-color: #ddd;
	color: #ffffff;
}
  
.dropdown:hover .dropdown-content {
	display: block;
}

.buton-mobile-meniu {
	display: none;
}

@media (max-width: 1240px){
	.continut-navigation-home {
		height: auto;
	}

	.continut-navbar {
		display: inline-flex;
		flex-wrap: wrap;
		flex-direction: column;
		width: 100%;
	}

	.hamburger-menu {
		display: none;
	}

	.logo-menu {
		padding: 30px 0 20px;
		width: 100%;
	}

	.logo-menu img{
		width: 50%;
		height: auto;
		margin: 0 25%;
	}

	.navbar-principal {
		padding: 0px;
		width: 100%;
	}

	.navbar-container {
		float: none;
		text-align: center;
	}

	.menu-items {
		padding: 0 0 20px 0;
	}

	.menu-items a{
		padding: 0 10px 0 10px;
	}

	.text-contact-header {
	display: none;
	}
	
	.dropdown .dropbtn {
		padding: 0 20px;
	}
	  
	.dropdown-content a {
		padding: 12px 20px;
	}
}

@media (max-width:768px) {
	#navbar {
		width: 100%;
		height: 70px;
		position: fixed;
		top: 0;
		left: 0;
		align-items: center;
		background-color: #edede5;
		z-index: 1000;
	}

	.continut-navbar {
		width: 100%;
		display: inline-flex;
		flex-wrap: wrap;
	}

	.hamburger-menu {
		display: inherit;
		cursor: pointer;
		padding: 20px 0 0 20px;
		width: 15%;
		z-index: 1500;
	}

	.logo-menu {
		position: absolute;
		top: 0;
		right: 0;
		padding: 10px 20px 20px 0;
		width: 80%;
	}

	.logo-menu img{
		float: right;
		width: 70%;
		height: auto;
		margin: 0;
	}

	.navbar-principal {
		display: flex;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: rgba(237, 237, 229, 0.9);
		align-items: center;
		justify-content: center;
		flex-direction: column;
		opacity: 0;
		margin: 0 auto !important;
		transform: translate(-150%);
		transition: transform 0.8s ease-in-out;
		z-index: -100;
	}

	.menu-open .navbar-principal {
		opacity: 1;
		transform: translate(0%);
		z-index: 100;
	}

	.menu-items {
		display: inline-flex;
		flex-wrap: wrap;
		flex-direction: column;
	}

	.menu-items a{
		font-size: 20px;
		font-family: 'Libre Baskerville', serif;
		color: #868585;
		font-weight: 400;
		line-height: 1.8em;
		padding: 0;
	}

	.menu-items a:hover {
		color: #edbe6e;
	}

	.active-btn a{
		text-transform: uppercase;
		color: #edbe6e;
	}

	.text-contact-header {
		display: inline-flex;
		flex-wrap: wrap;
		flex-direction: column;
		width: 80%;
		text-align: center;
		margin: 50px 10% 0 10%;
	}

	.text-contact-header h3{
		line-height: 1.5em;
	}

	.text-contact-header a{
		font-size: 16px;
		font-family: 'Libre Baskerville', serif;
		color: #868585;
		font-weight: 400;
		line-height: 1.8em;
		padding: 0 0 0px 0;
	}

	.social-media-contact-header {
		padding-top: 20px;
	}

	.hamburger-meniu-x {
		display: none;
	}

	.menu-open .hamburger-menu .hamburger-meniu-lines {
		display: none;
	}

	.menu-open .hamburger-menu .hamburger-meniu-x {
		display: block;
	}
	
	.dropdown {
		display: none;
	}

	.buton-mobile-meniu {
		display: block;
	}
}

/*
-----------------------------
HEADER COACHING
-----------------------------
*/

#header-coaching {
	width: 100%;
}

.continut-header-coaching {
	width: 1240px;
	height: 500px;
	text-align: center;
	background-image: url("../img/coaching/header-coaching-anca-zlavog.png");
	background-repeat: no-repeat;
	display: block;
	padding: none;
	border-bottom: 20px solid #edbe6e;
}

.imagine-header-coaching {
	display: none;
}

.imagine-tablet-header-coaching {
	display: none;
}

.text-header-coaching {
	width: 35%;
	float: right;
	text-align: left;
	line-height: 2em;
	margin-right: 150px;
}

.text-drt-header-coaching {
	padding-top: 200px;
}

.text-drt-header-coaching h1{
	color: #ffffff;
	padding-bottom: 20px;
}

@media (max-width:1240px) {
	#header-coaching {
		background-color: #c9a180;
	}
	
	.continut-header-coaching {
		width: 100%;
		height: auto;
		text-align: center;
		background-image: none;
		background-repeat: no-repeat;
		display: block;
		padding: none;
		border-bottom: 20px solid #edbe6e;
	}

	.imagine-tablet-header-coaching {
		display: block;
	}

	.imagine-tablet-header-coaching img{
		width: 100%;
		height: auto;
	}

	.text-header-coaching {
		width: 90%;
		float: none;
		text-align: center;
		margin: 0 auto;
		padding-bottom: 50px;
	}

	.text-drt-header-coaching {
		padding-top: 50px;
	}
}

@media (max-width:768px) {	
	.imagine-header-coaching {
		display: block;
	}

	.imagine-header-coaching img{
		margin-top: 40px;
		width: 100%;
		height: auto;
	}

	.imagine-tablet-header-coaching {
		display: none;
	}
}

/*
-----------------------------
PACHETE COACHING
-----------------------------
*/

#pachete-coaching {
	text-align: center;
}

.continut-pachete-coaching {
	margin: 0 auto;
	padding: 100px 0;
	width: 100%;
}

.titlu-pachete-coaching {
	margin: 0 auto;
	text-align: center;
	width: 200px;
}

.titlu-pachete-coaching h5{
	position: relative;
	top: 0px;
	left: -30px;
}

.titlu-pachete-coaching h2{
	color: #868585;
	position: relative;
	top: -20px;
	left: 30px;
	text-align: right;
}

.categorii-pachete-coaching {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	width: 1000px;
	margin: 30px auto;
}

.categorie-pachet-coaching {
	width: 30%;
}

.categorie-pachet-coaching img{
	padding-bottom: 10px;
	filter: drop-shadow(0.4rem 0.4rem 0.4rem rgba(0, 0, 0, 0.4));
}

.categorie-pachet-coaching p{
	padding: 10px 0 20px 0;
}

.titlu-coaching-de-grup {
	color: #868585;
}

.btn-coaching-de-grup {
	background-color: #868585;
	border-color: #868585;
}

.btn-coaching-de-grup:hover {
	border-color: #868585;
}

.sesiune-gratuita-pachet-coaching p {
	padding: 50px 0 20px;
}

.sesiune-gratuita-pachet-coaching {
    width: 600px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.btn-sesiune-gratuita-pachet-coaching {
	background-color: #edede5;
	border-color: #edede5;
	color: #868585;
	border-radius: 30px;
}

.btn-sesiune-gratuita-pachet-coaching:hover {
	border-color: #edede5;
}

@media (max-width:1240px) {
	.categorii-pachete-coaching {
		width: 90%;
		margin: 30px auto;
	}

	.categorie-pachet-coaching {
		width: 28%;
	}
}

@media (max-width:768px) {	
	.categorii-pachete-coaching {
		width: 80%;
		margin: 30px auto;
	}

	.categorie-pachet-coaching {
		width: 100%;
		padding-bottom: 100px;
	}

	.sesiune-gratuita-pachet-coaching {
		width: 80%;
		margin: 0 auto;
	}
}

/*
-----------------------------
PENTRU TINE 
-----------------------------
*/

#pentru-tine {
	text-align: center;
	background-color: #edbe6e;
}

.continut-pentru-tine {
	display: inline-flex;
	flex-wrap: wrap;
	padding: 100px 0;
	width: 1240px;
	margin: 0 auto;
}

.titlu-pentru-tine {
	width: 520px;
}

.titlu-pentru-tine h5 {
	color: #ffffff;
	position: relative;
	top: 0;
	left: 0px;
}

.titlu-pentru-tine h2 {
	color: #868585;
	position: relative;
	top: -20px;
	right: 130px;
	line-height: 1em;
	text-align: right;
}

.paragraf-pentru-tine {
	width: 704px;
	text-align: left;
}

.punct-paragraf-pentru-tine {
	display: inline-flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.punct-paragraf-pentru-tine img{
	padding-right: 9px;
}

.punct-paragraf-pentru-tine p{
	width: 665px;
	text-align: left;
	color: #ffffff;
}

@media (max-width:1240px) {
	.continut-pentru-tine {
		width: 100%;
		margin: 0 auto;
	}

	.titlu-pentru-tine h2 {
		right: 50px;
	}

	.titlu-pentru-tine {
		width: 40%;
	}

	.paragraf-pentru-tine {
		width: 60%;
	}

	.punct-paragraf-pentru-tine p{
		width: 80%;
	}
}

@media (max-width:768px) {
	.titlu-pentru-tine h2 {
		right: 70px;
	}

	.titlu-pentru-tine {
		width: 80%;
		margin: 0 auto;
	}

	.paragraf-pentru-tine {
		width: 90%;
		padding-top: 50px;
	}

	.punct-paragraf-pentru-tine {
		justify-content: center;
	}

	.punct-paragraf-pentru-tine p{
		width: 80%;
	}
}

/*
-----------------------------
START CHANGE
-----------------------------
*/

#start-change {
	text-align: center;
	background-color: #edede5;
}

.continut-start-change {
	margin: 0 auto;
	padding: 100px 0;
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.titlu-start-change {
	width: 400px;
	margin: 0 auto;
}

.simbol-titlu-start-change img{
	padding-top: 50px;
	padding-bottom: 10px;
	filter: drop-shadow(0.4rem 0.4rem 0.4rem rgba(0, 0, 0, 0.4));
}

.simbol-titlu-start-change p{
	padding-bottom: 100px;
}

.pachete-start-change h3{
	color: #868585;
}

.preturi-pachete-start-change {
	display: inline-flex;
	flex-wrap: wrap;
}

.pret-pachet-start-change {
	width: 130px;
	height: 60px;
	border: 2px solid #868585;
	border-radius: 10px;
	margin: 10px 5px 20px;
	padding-top: 15px;
}

.cifre-pachete-start-change {
	font-size: 20px !important;
	font-weight: bold;
}

.pret-pachet-start-change p{
	font-size: 16px;
}

.continut-pachet-start-change {
	width: 700px;
	float: right;
}

.paragraf-continut-start-change {
	background-color: #edede5;
	border-radius: 20px;
	box-shadow: 0px 7px 11px 5px rgba(0,0,0,0.3);
	text-align: left;
	padding: 80px;
}

.paragraf-continut-start-change h3{
	color: #868585;
}

.punct-paragraf-start-change {
	display: inline-flex;
	flex-wrap: wrap;
	margin: 10px 0 0;
}

.punct-paragraf-start-change img{
	width: 15px;
	margin-right: 10px;
	padding-top: 3px;
}

.punct-paragraf-start-change p{
	width: 515px;
	text-align: left;
}

.sesiune-paragraf-start-change {
	display: inline-flex;
	flex-wrap: wrap;
	width: 540px;
	margin-top: 20px;
}

.text-sesiune-paragraf-start-change {
	text-align: left;
	width: 320px;
	margin-right: 20px;
}

.btn-sesiune-paragraf-start-change {
	width: 200px;
	border-radius: 40px;
	background-color: #868585;
	border: 2px solid #868585;
}

.btn-sesiune-paragraf-start-change:hover {
	border: 2px solid #868585;
}

@media (max-width:1240px) {
	.titlu-start-change {
		width: 30%;
	}

	.continut-pachet-start-change {
		width: 65%;
		margin-right: 20px;
	}

	.paragraf-continut-start-change {
		padding: 50px 70px;
	}

	.punct-paragraf-start-change p{
		width: 90%;
	}

	.sesiune-paragraf-start-change {
		width: 85%;
	}

	.text-sesiune-paragraf-start-change {
		width: 50%;
	}

	.btn-sesiune-paragraf-start-change {
		width: 35%;
	}
}

@media (max-width:768px) {	
	.titlu-start-change {
		width: 100%;
	}

	.simbol-titlu-start-change p{
		padding-bottom: 50px;
	}

	.continut-pachet-start-change {
		width: 100%;
		margin-right: 0px;
	}

	.paragraf-continut-start-change {
		padding: 50px;
		border-radius: 0px;
		box-shadow: 0px 7px 11px 5px rgba(0,0,0,0);
	}

	.punct-paragraf-start-change p{
		width: 90%;
	}

	.sesiune-paragraf-start-change {
		width: 90%;
		justify-content: center;
	}

	.text-sesiune-paragraf-start-change {
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}

	.btn-sesiune-paragraf-start-change {
		width: 45%;
	}
}

/*
-----------------------------
BE THE CHANGE
-----------------------------
*/

#be-change {
	text-align: center;
}

.continut-be-change {
	margin: 0 auto;
	padding: 100px 0;
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.titlu-be-change {
	width: 400px;
	margin: 0 auto;
}

.simbol-titlu-be-change img{
	padding-top: 50px;
	padding-bottom: 10px;
	filter: drop-shadow(0.4rem 0.4rem 0.4rem rgba(0, 0, 0, 0.4));
}

.simbol-titlu-be-change p{
	padding-bottom: 100px;
}

.pachete-be-change h3{
	color: #868585;
}

.preturi-pachete-be-change {
	display: inline-flex;
	flex-wrap: wrap;
}

.pret-pachet-be-change {
	width: 130px;
	height: 60px;
	border: 2px solid #868585;
	border-radius: 10px;
	margin: 10px 5px 20px;
	padding-top: 15px;
}

.cifre-pachete-be-change {
	font-size: 20px !important;
	font-weight: bold;
}

.pret-pachet-be-change p{
	font-size: 16px;
}

.continut-pachet-be-change {
	width: 700px;
	float: right;
}

.paragraf-continut-be-change {
	background-color: #ffffff;
	border-radius: 20px;
	box-shadow: 0px 7px 11px 5px rgba(0,0,0,0.3);
	text-align: left;
	padding: 80px;
}

.paragraf-continut-be-change h3{
	color: #868585;
}

.punct-paragraf-be-change {
	display: inline-flex;
	flex-wrap: wrap;
	margin: 10px 0 0;
}

.punct-paragraf-be-change img{
	width: 15px;
	margin-right: 10px;
	padding-top: 3px;
}

.punct-paragraf-be-change p{
	width: 515px;
	text-align: left;
}

.sesiune-paragraf-be-change {
	display: inline-flex;
	flex-wrap: wrap;
	width: 540px;
	margin-top: 20px;
}

.text-sesiune-paragraf-be-change {
	text-align: left;
	width: 320px;
	margin-right: 20px;
}

.btn-sesiune-paragraf-be-change {
	width: 200px;
	border-radius: 40px;
	background-color: #868585;
	border: 2px solid #868585;
}

.btn-sesiune-paragraf-be-change:hover {
	border: 2px solid #868585;
}

.buton-teme-coaching {
  background-color: #fff;
  font-family: 'Raleway', sans-serif;
  width: 100%;
  color: #868585;
  cursor: pointer;
  padding: 10px 0px;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  transition: 0.4s;
  display: inline-flex;
  flex-wrap: wrap;
}

.buton-teme-coaching img {
	position: relative;
	top: 3px;
	left: 0px;
	margin-right: 30px;
}

.buton-teme-coaching h3 {
	width: 80%;
}

.temeascunsecoaching {
	background-color: #fff;
	width: 100%;
	padding: 0;
	text-align: left;
	margin: 0 auto;
	display: none;
	overflow: hidden;
}

.appear, .buton-teme-coaching:hover {
	background-color: #fff;
}

.temeascunsecoaching p{
	padding: 0 30px 0 50px;
}

@media (max-width:1240px) {
	.titlu-be-change {
		width: 30%;
	}

	.continut-pachet-be-change {
		width: 65%;
		margin-right: 20px;
	}

	.paragraf-continut-be-change {
		padding: 50px 70px;
	}

	.punct-paragraf-be-change p{
		width: 90%;
	}

	.sesiune-paragraf-be-change {
		width: 85%;
	}

	.text-sesiune-paragraf-be-change {
		width: 50%;
	}

	.btn-sesiune-paragraf-be-change {
		width: 35%;
	}
}

@media (max-width:768px) {	
	.titlu-be-change {
		width: 100%;
	}

	.simbol-titlu-be-change p{
		padding-bottom: 50px;
	}

	.continut-pachet-be-change {
		width: 100%;
		margin-right: 0px;
	}

	.paragraf-continut-be-change {
		padding: 50px;
		border-radius: 0px;
		box-shadow: 0px 7px 11px 5px rgba(0,0,0,0);
	}

	.punct-paragraf-be-change p{
		width: 90%;
	}

	.sesiune-paragraf-be-change {
		width: 90%;
		justify-content: center;
	}

	.text-sesiune-paragraf-be-change {
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}

	.btn-sesiune-paragraf-be-change {
		width: 50%;
	}
}

/*
-----------------------------
COACHING GRUP
-----------------------------
*/
#coaching-grup {
	text-align: center;
	background-color: #edbe6e;
}

.continut-coaching-grup {
	margin: 0 auto;
	padding: 100px 0;
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.titlu-coaching-grup {
	width: 400px;
	margin: 0 auto;
}

.simbol-titlu-coaching-grup img{
	padding-top: 50px;
	padding-bottom: 10px;
	filter: drop-shadow(0.4rem 0.4rem 0.4rem rgba(0, 0, 0, 0.4));
}

.simbol-titlu-coaching-grup h2{
	color: #fff;
}

.simbol-titlu-coaching-grup p{
	color: #fff;
	padding-bottom: 100px;
}

.pachete-coaching-grup h3{
	color: #fff;
}

.preturi-pachete-coaching-grup {
	display: inline-flex;
	flex-wrap: wrap;
}

.pret-pachet-coaching-grup {
	width: 130px;
	height: 60px;
	border: 2px solid #fff;
	border-radius: 10px;
	margin: 10px 5px 20px;
	padding-top: 15px;
}

.cifre-pachete-coaching-grup {
	font-size: 20px !important;
	font-weight: bold;
}

.pret-pachet-coaching-grup p{
	font-size: 16px;
	color: #fff;
}

.continut-pachet-coaching-grup {
	width: 700px;
	float: right;
}

.paragraf-continut-coaching-grup {
	background-color: #edbe6e;
	border-radius: 20px;
	box-shadow: 0px 7px 11px 5px rgba(0,0,0,0.3);
	text-align: left;
	padding: 80px;
}

.paragraf-continut-coaching-grup h3{
	color: #fff;
}

.paragraf-continut-coaching-grup p{
	color: #fff;
}

.punct-paragraf-coaching-grup {
	display: inline-flex;
	flex-wrap: wrap;
	margin: 10px 0 0;
}

.punct-paragraf-coaching-grup img{
	width: 15px;
	margin-right: 10px;
	padding-top: 3px;
}

.punct-paragraf-coaching-grup p{
	width: 515px;
	text-align: left;
	color: #fff;
}

.sesiune-paragraf-coaching-grup {
	display: inline-flex;
	flex-wrap: wrap;
	width: 540px;
	margin-top: 20px;
}

.text-sesiune-paragraf-coaching-grup {
	text-align: left;
	width: 320px;
	margin-right: 20px;
}

.text-sesiune-paragraf-coaching-grup p{
	color: #fff;
}

.btn-sesiune-paragraf-coaching-grup {
	width: 200px;
	border-radius: 40px;
	background-color: #fff;
	border: 2px solid #fff;
	color: #000;
}

.btn-sesiune-paragraf-coaching-grup:hover {
	border: 2px solid #fff;
}

.btn-coaching-de-grup-pachete {
	background-color: #fff;
	border: 2px solid #fff;
	color: #edbe6e;
}

.btn-coaching-de-grup-pachete:hover {
	border: 2px solid #fff;
}

@media (max-width:1240px) {
	.titlu-coaching-grup {
		width: 30%;
	}

	.continut-pachet-coaching-grup {
		width: 65%;
		margin-right: 20px;
	}

	.paragraf-continut-coaching-grup {
		padding: 50px 70px;
	}

	.punct-paragraf-coaching-grup p{
		width: 90%;
	}

	.sesiune-paragraf-coaching-grup {
		width: 85%;
	}

	.text-sesiune-paragraf-coaching-grup {
		width: 50%;
	}

	.btn-sesiune-paragraf-coaching-grup {
		width: 35%;
	}
}

@media (max-width:768px) {	
	.titlu-coaching-grup {
		width: 100%;
	}

	.simbol-titlu-coaching-grup p{
		padding-bottom: 50px;
	}

	.continut-pachet-coaching-grup {
		width: 100%;
		margin-right: 0px;
	}

	.paragraf-continut-coaching-grup {
		padding: 50px;
		border-radius: 0px;
		box-shadow: 0px 7px 11px 5px rgba(0,0,0,0);
	}

	.punct-paragraf-coaching-grup p{
		width: 90%;
	}

	.sesiune-paragraf-coaching-grup {
		width: 90%;
		justify-content: center;
	}

	.text-sesiune-paragraf-coaching-grup {
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}

	.btn-sesiune-paragraf-coaching-grup {
		width: 50%;
	}
}

/*
-----------------------------
POWER SESSION
-----------------------------
*/

#power-session {
	text-align: center;
}

.continut-power-session {
	width: 800px;
	padding: 100px 0;
	margin: 0 auto;
}

.titlu-power-session {
	padding-bottom: 50px;
}

.titlu-power-session img{
	filter: drop-shadow(0.4rem 0.4rem 0.4rem rgba(0, 0, 0, 0.4));
}

.paragraf-power-session {
	padding-bottom: 50px;
}

.paragraf-power-session h3, .pachete-power-session h3{
	color: #868585;
}

.pachete-power-session {
	padding-bottom: 20px;
}

@media (max-width:1240px) {
	
}

@media (max-width:768px) {	
	.continut-power-session {
		width: 80%;
	}
}

/*
-----------------------------
INTREBARI COACHING
-----------------------------
*/

#intrebari-coaching {
	text-align: center;
	background-color: #edede5;
}

.continut-intrebari-coaching {
	padding: 100px 0;
	width: 800px;
}

.continut-intrebari-coaching h3{
	color: #868585;
	text-align: left;
	padding: 0 0 0 50px;
}

.linie-categorie-valori {
	width: 100%;
	height: 5px;
	background-color: #edbe6e;
	text-align: center;
	margin: 10px auto;
}

.buton-intrebari-coaching {
  background-color: #edede5;
  font-family: 'Raleway', sans-serif;
  width: 800px;
  color: #868585;
  cursor: pointer;
  padding: 10px 20px;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  transition: 0.4s;
}

.buton-intrebari-coaching img {
	position: relative;
	top: 5px;
	left: 0px;
	margin-right: 20px;
}

.paragraf2 {
	background-color: #fff;
	width: 800px;
	padding: 0 0 30px 0;
	text-align: left;
	margin: 0 auto;
	display: none;
	overflow: hidden;
}

.active, .buton-intrebari-coaching:hover {
	background-color: #fff;
}

.paragraf2 p{
	padding: 0 30px 0 50px;
}

@media (max-width:1240px) {
	
}

@media (max-width:768px) {	
	.continut-intrebari-coaching {
		width: 90%;
	}

	.buton-intrebari-coaching {
	  width: 100%;
	}

	.paragraf2 {
		width: 100%;
	}
}

/*
-----------------------------
PROGRAMARE
-----------------------------
*/

#programare {
	text-align: center;
}

.continut-programare {
	text-align: center;
	background-image: url("../img/homepage/programare-homepage-anca-zlavog.png");
	height: 600px;
}

.text-continut-programare {
	width: 500px;
	padding-left: 50%;
	text-align: left;
	color: #ffffff;
	padding-top: 190px;
}

.text-continut-programare h2{
	color: #ffffff;
	padding-bottom: 20px;
}

.text-continut-programare p{
	color: #ffffff;
	padding-bottom: 50px;
}

.buton-programare .btn {
	width: 180px;
	text-align: center;
	padding: 10px 20px;
}

.buton-programare .btn:hover{
	color: #ffffff;
	cursor: pointer;
}

@media (max-width:1240px) {
	.continut-programare {
		background-image: url("../img/homepage/programare-1240-homepage-anca-zlavog.png");
	}

	.text-continut-programare {
		width: 400px;
		padding-left: none;
		padding-top: 170px;
	}
}

@media (max-width:768px) {
	.continut-programare {
		background-image: none;
		background-color: #868585 !important;
		height: inherit;
	}

	.text-continut-programare {
		width: 90%;
		padding-left: 0;
		text-align: center;
		color: #ffffff;
		padding: 100px 0;
		margin: 0 auto;
	}

	.text-continut-programare h2{
		padding-bottom: 10px;
	}

	.text-continut-programare p{
		padding-bottom: 30px;
	}

	.buton-programare .btn {
		color: #edbe6e;
		border: 2px solid #ffffff;
		background-color: #ffffff;
	}

	.buton-programare .btn:hover {
		color: #ffffff;
		border: 2px solid #ffffff;
		background-color: #868585;
	}
}

/*
-----------------------------
NEWSLETTER
-----------------------------
*/
#newsletter {
	background-color: #edbe6e;
}

.continut-newsletter {
	padding-bottom: 50px;
}

.categorii-newsletter {
	display: inline-flex;
	flex-wrap: wrap;
}

.text-newsletter {
	width: 50%;
	padding: 50px 0 50px 0;
}

.text-newsletter h2 {
	color: #898989;
	padding-bottom: 10px;
}

.text-newsletter p{
	color: #ffffff;
}

.formular-newsletter {
	width: 45%;
	text-align: right;
	padding-top: 50px;
}

.form-style {
	float: right;
}

.form-name-label {
	width: 290px;
	background-color: #ffffff;
	border: 0px solid #ffffff;
	border-radius: 25px;
	padding: 10px 0px 10px 20px;
	margin: 5px 0;
	color: #f0a322 !important;
}

.form-btn-label {
	background-color: #edbe6e;
	color: #ffffff;
	padding: 10px 30px;
	border-radius: 25px;
	border: 2px solid #ffffff;
	margin: 10px 0px;
	float: right;
	font-size: 16px;
}

.form-btn-label:hover {
	background: #ffffff;
	color: #edbe6e;
	border: 2px solid #ffffff;
	transition: 0.5s;
	cursor: pointer;
}

#g-recaptcha {
   display: inline-flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   width: 100%;
}

.g-recaptcha {
   float: left;
}

.g-recaptcha-newsletter {
	float: right;
	margin-top: 10px;
}

.g-recaptcha-trimite {
	float: right;
}

.error {
	float: right;
	text-align: right;
}

@media (max-width:1240px) {
	.continut-newsletter {
		width: 90%;
	}
}

@media (max-width:768px) {
	.categorii-newsletter {
		flex-direction: column;
		padding: 100px 0 100px 0;
	}

	.text-newsletter {
		width: 80%;
		padding: 0px 0 40px 0;
		text-align: center;
		margin: 0 auto;
	}

	.formular-newsletter {
		width: 70%;
		text-align: center;
		padding: 0px;
		margin: 0 auto;
	}

	.form-style {
		float: none;
		text-align: center;
	}

	.form-name-label {
		width: 100%;
		padding: 10px 0px 10px 20px;
	}

	.form-btn-label {
		margin: 20px 0px;
		float: none;
	}
}

/*
-----------------------------
footer
-----------------------------
*/

#footer {
	text-align: center;
	background-color: #868585;
}

.continut-footer {
	display: inline-flex;
	flex-wrap: wrap;
}

.logo-footer {
	display: block;
	padding: 50px 100px 50px 0;
}

.linkuri-footer {
	display: block;
	text-align: left;
	padding: 50px 100px 50px 0;
}

.linkuri-footer a, .contact-footer a{
	color: #ffffff;
	font-size: 16px;
	font-family: 'Raleway', sans-serif;
	line-height: 1.4em;
}

.linkuri-footer a:hover, .contact-footer a:hover{
	color: #edbe6e;
}

.contact-footer {
	text-align: left;
	padding-top: 50px;
}

.social-media-contact-footer {
	padding-top: 30px;
}

.logo-jai {
	padding: 50px 0 0 100px;
}

@media (max-width:1240px) {
	.logo-footer {
		display: block;
		width: 100%;
		height: auto;
		padding: 50px 0px 30px 0;
	}

	.linkuri-footer {
		display: inline-block;
		width: 48%;
		text-align: right;
		padding: 0px 40px 0px 0;
	}

	.linkuri-footer a, .contact-footer a{
		color: #ffffff;
		font-size: 16px;
		font-family: 'Raleway', sans-serif;
		line-height: 1.4em;
	}

	.linkuri-footer a:hover, .contact-footer a:hover{
		color: #edbe6e;
	}

	.contact-footer {
		text-align: left;
		padding: 0px 0px 0px 0px;
	}

	.social-media-contact-footer {
		padding-top: 50px;
	}

	.logo-jai {
		display: block;
		width: 100%;
		height: auto;
		padding: 50px 0 50px 0px;
	}
	
}

@media (max-width:768px) {
	.linkuri-footer {
		display: none;
	}

	.contact-footer {
		text-align: center;
		padding: 0px 0px 0px 0px;
		margin: 0 auto;
	}

	.social-media-contact-footer {
		padding-top: 30px;
	}

	.social-media-contact-footer img {
		width: 40px;
		height: auto;
		padding: 0 10px;
	}
}

/*
-------------------------------
UNDER-FOOTER
-------------------------------
*/
#under-footer {
	background-color: #000000;
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}

#under-footer a, #under-footer p{
	color: #868585;
	font-size: 14px;
	font-family: 'Raleway', sans-serif;
}

#under-footer a:hover{
	color: #edbe6e;
}

.under-footer-stanga {
	padding: 10px 0 10px 5%;
}

.under-footer-dreapta {
	padding: 10px 5% 10px 0;
}

@media (max-width:1240px) {
	#under-footer {
		text-align: center;
		justify-content: center;
	}

	.under-footer-stanga {
		width: 100%;
		padding: 20px 0 5px 0;
		text-align: center;
	}

	.under-footer-dreapta {
		width: 100%;
		padding: 5px 0 20px 0;
		text-align: center;
	}
}

#buton-sus {
	background-color: #868585;
	width: 30px;
	height: 40px;
	padding: 10px 5px 5px;
	border-radius: 10px 0 0 10px;
	z-index: 2000;
	position: fixed;
	bottom: 50px;
	right: 0px;
}

@media (max-width:768px) {
	#buton-sus {
		display: none;
	}
}


/*
-------------------------------
BUTON MATERIALE GRATUITE
-------------------------------
*/


#buton-material-gratuit {
	position: fixed;
	bottom: 50px;
	left: 30px;
	z-index: 1999;
}

@media (max-width:768px) {

	#buton-material-gratuit {
		position: fixed;
		bottom: 10px;
		left: 70vw;
		z-index: 1999;
	}

	#buton-material-gratuit img{
		height: 25vw;
	}
}