/* FONTS
  font-family: 'Lato', sans-serif;
  font-family: 'Oxanium', ;
*/

/*
  linear-gradient(to right, #52c234, #061700); verde
  linear-gradient(to right, #ad5389, #3c1053);
  linear-gradient(to right, #d38312, #a83279); nice 
  main color used - #203a43
  SB hair salon color - #D35500
*/

/****************************/
/****** CSS VARIABLES *******/

:root {

  --main-color: #FF8D3A;
  --main-color: -webkit-linear-gradient(to right,#D35500, #FF8D3A);
  --main-color: linear-gradient(to right,#D35500,#FF8D3A);

  --writing-color: #e6e6e6;
  --black-writing-color: #222;
}

body {
  font-family: 'Oxanium', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  background-color: #f5f5f5;
  letter-spacing: 1px;
}

/********************************
            Custom Classes
*********************************/
.bold {
  font-weight: bold;
}

.oxanium-400 {
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
}

.mark {
  background: #FF8D3A;
  color: #222;
  border-radius: 3px;
}

.mleft {
  margin-left: -1rem;
}

.checkmark-style {
  color: #222;
  border-radius: 50%;
  background: #FF8D3A;
  box-shadow:  5px 5px 10px #00000090,
                -5px -5px 10px #ffffff40;
}

/********************************
              SLIDES
*********************************/

.overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 3;
	background-color: rgba(0, 0, 0, 0.65);
}

.slides-navigation {
  z-index: 6;
}

.slides-navigation .prev,
.slides-navigation .next {
	width: 40px;
	height: 40px;
	background-size: cover;
	background-repeat: no-repeat;
}

.slides-navigation a.prev {
	left: 20px;
	background-image: url(../img/icons/prev.png);
}

.slides-navigation a.next {
	right: 20px;
	background-image: url(../img/icons/next.png);
}

.titleMessage {
	position: absolute;
    width: 100%;
    height: 250px;
    top: 50%;
    z-index: 5;
    text-align: center;
    margin-top: -125px;
}

.titleMessage .heading p {
	color: #fff;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4);
    font-weight: 100;
    letter-spacing: 7px;
}

.titleMessage .heading .main {
  font-size: 50px;
  font-weight: 400;
}

.titleMessage .heading .sub {
  font-size: 18px;
  font-weight: 200;
}

.section {
	padding: 50px 0;
}

/********************************
             ABOUT
*********************************/
.aboutImage {
  max-width: 100%;
  height: 350px;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
}

.aboutBackground {
  background: url(../img/pattern.jpg) center center no-repeat;
  background-size: cover;
  
  background: linear-gradient(to right, #8e9eab, #eef2f3);
}

h4.description {
  margin-bottom: 5px;
  font-weight: 600;
}

/********************************
  SKILLS/ APTITUDINI SECTION
*********************************/
.paddingSection {
  padding-bottom: 40px;
}

.skillsSection,
.contactSection {
	background: var(--main-color);
	color: var(--black-writing-color);
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.62);
    -moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.62);
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.62);
}

.skill {
	text-align: center;
	margin-left: 10px;
}

.skill h4 {
  font-size: 1.15rem;
  color: #222;
}

p.noMargin {
  margin-bottom: 0;
}

.fa-hand-point-left,
.fa-hand-point-right {
  color: #cec289;
  font-weight: 200;
}

small.notice {
  color: #222;
  font-weight: 200;
}

p.extraDetails {
  font-size: 80%;
  font-weight: 200;
  color: #222;
}

.chart {
	position: relative;
  width: 152px;
  height: 152px;
  display: inline-block;
  text-align: center;
  margin-bottom: 20px;
  background-color: #222;
  border-radius: 100%;
}

.chart canvas {
	position: absolute;
    left: 0;
    top: 0;
}

.chart .percent {
	color: #FF8D3A;
    line-height: 160px;
    display: inline-block;
    font-size: 35px;
}

.chart .percent:after {
	content: '%';
} /*** SKILLS SECTION END ***/

/********************************
  STATISTICI SECTION
*********************************/
.squareItem {
	margin-top: 30px;
    position: relative;
}

.squareInnerContainer {
	position: relative;
	padding: 50px 15px 35px;
	text-align: center;
	border: 2px solid #444;
	border-top: none;
}

.squareInnerContainer:before,
.squareInnerContainer:after {
	content: '';
	position: absolute;
	top: 0px;
	width: 30%;
	border-bottom: 2px solid #444;
}

.squareInnerContainer:before {
	right: 0px;
}

.squareInnerContainer:after {
	left: 0px
}

.squareContent h2 {
	font-size: 40px;
	margin-bottom: 10px;
	font-weight: 400;
	color: var(--main-color);
}

.squareContent h3 {
	font-size: 13px;
	font-weight: 600;
	margin: 0;
}

.squareIcon {
	position: absolute;
    left: 50%;
    top: -30px;
    width: 40%;
    height: 60px;
    font-size: 45px;
    margin-left: -20%;
    color: #444;
} /*** STATISTICI SECTION SEND ***/

/********************************
  CONTACT SECTION
*********************************/
.contactButton {
	color: #fff;
    padding: 10px 20px;
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 2px;
    margin-top: 10px;
}

.contactButton:hover {
	text-decoration: none;
	color: rgba(21, 53, 12, 1);
	background: #fff;
}

.subHeading {
  margin-bottom: 1.15rem;
  letter-spacing: 1px;
  font-size: 110%;
}

.contacteaza {
  font-size: 17px;
  margin-bottom: 0;
  padding-bottom: 5px;
}

.contactSection {
  font-size: 14px;
}

.carteVizita {
  margin: 0 auto;
  margin-top: 2rem;
  width: 380px;
  padding: 15px 10px;
  border-radius: 20px;
  background: #D35500;
  /* box-shadow: inset 3px 3px 6px #1e3640, 
              inset -3px -3px 6px #2c5260; */
  box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.5) inset;
  -webkit-box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.5) inset;
  -moz-box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.5) inset;
}

#contact .carteVizita a.emailInfo {
  text-transform: lowercase;
}

.contactFA {
  font-size: 1.5rem;
  display: block;
  padding-bottom: 5px;
  color: rgba(255, 255, 255, .7);
}

a.emailInfo {
  text-decoration: none;
  font-size: 15px;
}

.emailInfo a:hover {
  text-decoration: none;
  color: rgba(255, 255, 255, .9);
}

.phone {
  margin-top: 20px;
}

.emailInfo,
.phoneInfo {
  font-size: 15px !important;
  color: #dfdfdf !important;
}

span.phoneInfo {
  color: rgba(255, 255, 255, .5);
  letter-spacing: 3px;
  /* border-bottom: 1px dotted grey; */
}

/********************************
  PORTOFOLIU SECTION
*********************************/
.filter {
  display: none;
}

p.text-uppercase {
  margin-top: 1rem;
  font-weight: bold;
}

.filter a {
	color: #bdc3c7;
	border: 1px solid #bdc3c7;
	padding: 10px 18px;
	display: block;
}

.filter li {
	display: inline-block;
	padding: 5px
}

.filter .current {
	background: var(--main-color);
	border: var(--main-color);
	color: #fff;
}

.filter {
	text-align: center;
	width: 100%;
}

ul#filters {
  padding-left: 0;
}

.section .heading {
	text-align: center;
	padding-bottom: 40px;
	width: 100%;
}

.items li {
	display: inline-block;
	padding: 5px;
}

.itemsContainer {
	width: 100%;
}

.items li img {
	width: 100%;
	-webkit-transition: all 0.2s linear, 1s;
    -moz-transition: all 0.2s linear, 1s;
    -o-transition: all 0.2s linear, 1s;
    -ms-transition: all 0.2s linear, 1s;
    transition: all 0.2s linear, 1s;
}

.items .item {
	position: relative;
	display: block;
	overflow: hidden;
}

.items .icons {
	position: absolute;
    width: 90px;
    height: 40px;
    left: 60%;
    top: 50%;
    margin: -20px auto 0 -47px;
    text-align: center;
    z-index: 3;
}

.items .icons i {
	color: #fff;
    font-size: 20px;
    margin-top: 9px;
}

.items a {
	width: 40px;
    height: 40px;
    background: var(--main-color);
    position: relative;
    display: inline-block;


    -webkit-transition: all 0.2s linear, 0.2s;
    -moz-transition: all 0.2s linear, 0.2s;
    -o-transition: all 0.2s linear, 0.2s;
    -ms-transition: all 0.2s linear, 0.2s;
    transition: all 0.2s linear, 0.2s;
}

.items .imageOverlay {
	width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;

    -webkit-transition: all 0.2s linear, 1s;
    -moz-transition: all 0.2s linear, 1s;
    -o-transition: all 0.2s linear, 1s;
    -ms-transition: all 0.2s linear, 1s;
    transition: all 0.2s linear, 1s;
}

.items .item:hover .imageOverlay {
	opacity: 1;
}

.items .openButton {
	float: left;
	left: -300px;
}

.items .projectLink {
	float: right;
	right: -300px;
}

.items .item:hover .openButton {
	left: 0px;
}

.items .item:hover .projectLink {
	right: 0px;
}

.items .item:hover img {
	-webkit-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}

.items {
	padding: 0;
} /*** PORTOFOLIU SECTION END ***/

/**********************************************
  NAVIGATION/ Sticky Bar + HAMBURGER MENU END
***********************************************/
#navigation {
	background: var(--main-color);
    padding: 10px 10px;
    z-index: 100;
    width: 100%;
    -webkit-box-shadow: 0px 8px 13px 2px rgba(0,0,0,0.62);
    -moz-box-shadow: 0px 8px 13px 2px rgba(0,0,0,0.62);
    box-shadow: 0px 8px 13px 2px rgba(0,0,0,0.62);
}

#navigation li {
	padding: 0 10px;
}

.carteVizita a,
#navigation li a {
	color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 200;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, .7);
}

.carteVizita a:hover,
#navigation li a:hover {
  color: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.carteVizita a:hover:before,
#navigation li a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

#navigation li a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: white;
  visibility: hidden;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 0.4s ease-in-out 0s;
          transition: all 0.4s ease-in-out 0s;
}

.navbar-brand {
    color: rgba(255, 255, 255, 1);
    padding-bottom: 8px;
    font-size: 1.15rem;
    font-weight: 400;
}

.navbar-brand:hover {
    color: #fff;
}

.navbar-brand img {
  width: 40px;
}

.navbar-toggler-icon {
	background: url(../img/icons/menu.png);
	background-size: 100%;
}

.fixedNav #navigation {
	position: fixed;
	top: 0;
}

.loader {
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 1000;
}

.loader .inner {
	width: 100%;
	height: 100%;
	background: url(../img/loader.gif) center center no-repeat;
} /*** NAVIGATION/ Sticky Bar + HAMBURGER MENU END ***/

/* fix pentru dunga din jurul meniului */
button:focus {
  outline: 0px auto -webkit-focus-ring-color;
}

/********************************
            FOOTER
*********************************/
.copyrightSection {
	background: var(--main-color);
	color: #fff;
  padding: 30px 5px;
  
  width: 100%;
  -webkit-box-shadow: -1px -7px 12px -2px rgba(136,136,136,1);
  -moz-box-shadow: -1px -7px 12px -2px rgba(136,136,136,1);
  box-shadow: -1px -7px 12px -2px rgba(136,136,136,1);
}

.copyrightSection p {
	margin: 0;
}

i.fa-heart {
  color: #fff;
  font-size: 14px;
}

p.copyright {
  font-weight: 600;
  color: #cdc9c9;
}

p.creator {
  padding-top: 8px;
  font-size: 85%;
  font-weight: 200;
  color: #cdc9c9;
  letter-spacing: 1.5px;
}

.sm {
  color: #f6f6f6;
}

.creators:hover {
  text-decoration: none;
  text-shadow: 1px 0px 15px rgba(255, 255, 255, 0.8);
}

kbd {
  border-radius: 1px;
  background-color: #21252940;
  
}






















