@font-face {
  font-family: "Lato-Black";
  src: url("fonts/Lato-Black.ttf");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Lato-Italic";
  src: url("fonts/Lato-Italic.ttf");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Lato-Regular";
  src: url("fonts/Lato-Regular.ttf");
  font-style: normal;
  font-weight: 300;
}

/************************
    VARIABLES
************************/
/************************
    GLOBALS RESET
************************/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: "Lato-Regular", sans-serif;
  font-size: 105%;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

a {
  text-decoration: none;
}

a :hover,
a :active,
a :visited,
a :focus {
  border: none;
}

.button {
  background: #8f0000;
  color: white;
  border-radius: 0.5em;
  padding: 0.7em 1em;
  font-family: "Lato-Black", sans-serif;
  font-size: 1.2em;
  display: block;
  text-transform: uppercase;
  border-bottom: 7px solid #770000;
}

.button:hover {
  background: #28a847;
  border-color: #218c3a;
}

.button small {
  font-family: "Lato-Regular", sans-serif;
  text-transform: lowercase;
  margin-top: 5px;
  display: block;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  margin-bottom: 0.5em;
  list-style-position: inside;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2em;
  font-family: "Lato-Black", sans-serif;
}

strong,
.strong {
  font-family: "Lato-Black", sans-serif;
}

.italic {
  font-style: italic;
}

.container {
  width: 1100px;
  margin: auto;
}

/************************
    TOPBAR
************************/
.topbar {
  background: black;
  color: white;
  text-align: center;
  font-size: 1.5em;
  font-family: "Lato-Black", sans-serif;
}

.topbar .container {
  width: 768px;
  padding: 0.3em 0;
  background-image: url("../images/logo.jpg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

.header {
  padding: 2em 0;
  background-image: url("../images/header.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.header .danielbook {
  position: absolute;
  display: block;
  width: 500px;
  height: 600px;
  background-image: url(../images/danielbook.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  top: -10px;
  right: 18%;
}

.header .first {
  font-family: "Lato-Black", sans-serif;
  font-size: 2em;
  color: #8f0000;
  text-transform: uppercase;
  margin: 0;
}

.header .title {
  width: 540px;
}

.header .strong {
  font-family: "Lato-Black", sans-serif;
  font-size: 1em;
  color: #8f0000;
  margin: 0;
  padding-bottom: 1em;
}

.header .line {
  width: 60%;
  height: 3px;
  background: #b2b2b2;
}

.header ul {
  list-style-type: square;
  margin-top: 1em;
}

.header ul li {
  list-style: none;
}

.header ul li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #8f0000;
  margin-right: 1em;
  margin-bottom: 3px;
}

.header .boxes {
  width: 70%;
  margin-top: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header .boxes div {
  width: 25%;
  text-align: center;
}

.header .boxes div img {
  width: 70px;
}

.header .boxes div p {
  padding: 0;
  margin: 0;
}

.header .boxes div .strong {
  text-transform: uppercase;
  padding: 0.5em 0;
}

.header .boxes .cercle {
  width: 130px;
  height: 130px;
  background-image: url("../images/cercle.png");
  background-repeat: repeat;
  background-position: center center;
  background-size: cover;
  color: white;
  z-index: 2;
}

.header .boxes .cercle p:first-child {
  margin-top: 1.5em;
}

.header .boxes .cercle strong {
  font-family: "Lato-Black", sans-serif;
  font-size: 2em;
}

.header .cercle2 {
  width: 130px;
  height: 130px;
  background-image: url("../images/cercle.png");
  background-repeat: repeat;
  background-position: center center;
  background-size: cover;
  color: white;
  text-align: center;
  z-index: 2;
  margin: auto;
}

.header .cercle2 p:first-child {
  padding-top: 1.5em;
  margin-bottom: 0;
}

.header .cercle2 p:last-child {
  margin-top: 0em;
}

.header .cercle2 strong {
  font-family: "Lato-Black", sans-serif;
  font-size: 2em;
}

.povestea {
  position: relative;
  background-image: url("../images/bg.jpg");
  background-repeat: repeat;
  background-position: center center;
  background-size: cover;
}

.povestea .butoane {
  width: 1050px;
  margin: auto;
  padding: 2em 6em;
  background: white;
  border-radius: 0 0 1em 1em;
  -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 4em;
}

.povestea .butoane .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.povestea .butoane .wrap .box {
  width: 48%;
  text-align: center;
  margin-bottom: 2em;
}

.povestea .butoane .wrap .box p {
  padding: 0.5em;
  margin: 0 2em;
  font-family: "Lato-Black", sans-serif;
  font-size: 1.5em;
  background: #b2b2b2;
  border-radius: 0 0 5px 5px;
}

.povestea .butoane p {
  text-align: center;
  color: black;
}

.povestea .container {
  width: 800px;
  padding-bottom: 3em;
}

.povestea .container .indent {
  margin-left: 2em;
}

.povestea .container .spaceright {
  width: 60%;
}

.povestea .container .spaceleft {
  margin-left: 30%;
}

.povestea .container .spacemore {
  margin-left: 50%;
}

.povestea .container h2 {
  font-family: "Lato-Black", sans-serif;
  text-transform: uppercase;
  margin-top: 1.5em;
}

.povestea .danielright {
  position: absolute;
  left: 50%;
  width: 650px;
  height: 700px;
  background-image: url(../images/danielright.png);
  background-repeat: no-repeat;
  background-position: 50px 70px;
  background-size: 600px 480px;
}

.povestea .danielleft {
  position: absolute;
  left: 15%;
  top: 65%;
  width: 700px;
  height: 900px;
  background-image: url(../images/danielleft.png);
  background-repeat: no-repeat;
  background-position: 50px 20px;
  background-size: 650px 700px;
  z-index: 1;
}

.povestea .testimonial {
  width: 1100px;
  margin: auto;
  position: relative;
  border-radius: 1em;
  padding: 2em;
  background: white;
  -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.povestea .testimonial img {
  position: absolute;
  width: 150px;
  left: -75px;
  border-radius: 50%;
}

.povestea .testimonial h2 {
  text-transform: uppercase;
  font-size: 1.2em;
  margin-left: 4em;
}

.povestea .testimonial p {
  margin-left: 4em;
}

.povestea .testimonial .autor {
  color: #8f0000;
  text-align: right;
  font-family: "Lato-Black", sans-serif;
  font-size: 1.2em;
  margin-left: 0;
  margin-bottom: 0;
  text-transform: uppercase;
}

.povestea .clear {
  display: block;
  height: 100px;
}

.temele {
  color: white;
  padding: 4em 0;
  background-color: #1D1D1D;
  background-image: url("../images/temele.jpg");
  background-repeat: repeat;
  background-position: center center;
  background-size: cover;
}

.temele .boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 3em;
}

.temele .boxes div {
  width: 30%;
  text-align: center;
}

.temele .boxes div img {
  width: 130px;
}

.temele .boxes div h2 {
  text-transform: uppercase;
  padding: 1em 0;
}

.temele .boxes div p {
  padding: 0;
  margin: 0;
}

.temele .boxes div .strong {
  text-transform: uppercase;
  padding: 0.5em 0;
}

.butoane {
  padding-top: 3em;
  padding-bottom: 2em;
  background-color: #8f0000;
  background-image: url("../images/stema.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}

.butoane .container {
  width: 860px;
}

.butoane .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.butoane .flex .box {
  width: 48%;
  text-align: center;
  margin-bottom: 2em;
}

.butoane .flex .box .button {
  background: #28a847;
  border-color: #218C3A;
}

.butoane .flex .box .button:hover {
  background: white;
  color: #28a847;
}

.butoane .flex .box p {
  padding: 0.5em;
  margin: 0 2em;
  font-family: "Lato-Black", sans-serif;
  font-size: 1.5em;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0 0 5px 5px;
}

.butoane p {
  text-align: center;
  color: white;
}

.evenimetul {
  padding: 5em 0;
}

.evenimetul h1 {
  color: #8f0000;
}

.evenimetul ul li {
  background: url("../images/check.png") no-repeat;
  background-size: 25px;
  list-style: none;
  padding-left: 3rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}

.programul {
  padding-top: 5em;
  padding-bottom: 8em;
  background-image: url("../images/bg.jpg");
  background-repeat: repeat;
  background-position: center center;
  background-size: cover;
}

.programul h1 {
  color: #8f0000;
}

.programul .wrap {
  position: relative;
}

.programul .line {
  position: absolute;
  top: -30px;
  left: 17px;
  width: 7px;
  height: calc(100% + 70px);
  background: #8f0000;
  z-index: 1;
}

.programul .line .arrow {
  position: absolute;
  bottom: -20px;
  left: -17px;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 50px solid #8f0000;
}

.programul .slot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2em;
}

.programul .slot .left {
  width: 25%;
  z-index: 2;
}

.programul .slot .left p {
  color: #8f0000;
  font-family: "Lato-Black", sans-serif;
  font-size: 1.5em;
  margin-top: 0;
}

.programul .slot .left img {
  vertical-align: middle;
  width: 40px;
}

.programul .slot .right {
  width: 75%;
}

.programul .slot .right p:first-child {
  margin-top: 0.5em;
  font-size: 1.1em;
}

.ceprimesti {
  padding: 5em 0;
}

.ceprimesti h1 {
  color: #8f0000;
}

.ceprimesti .boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2em;
}

.ceprimesti .boxes div {
  width: 30%;
  text-align: center;
}

.ceprimesti .boxes div img {
  width: 130px;
}

.ceprimesti .boxes div h2 {
  text-transform: uppercase;
  padding: 1em 0;
  font-family: "Lato-Black", sans-serif;
}

.ceprimesti .boxes div p {
  padding: 0;
  margin: 0;
}

.ceprimesti .boxes div .strong {
  text-transform: uppercase;
  padding: 0.5em 0;
}

.ceprimesti .testimonial {
  width: 1100px;
  margin: auto;
  margin-top: 6em;
  position: relative;
  border-radius: 1em;
  padding: 2em;
  background: white;
  -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.ceprimesti .testimonial img {
  position: absolute;
  width: 150px;
  left: -75px;
  border-radius: 50%;
}

.ceprimesti .testimonial h2 {
  text-transform: uppercase;
  font-size: 1.2em;
  margin-left: 4em;
}

.ceprimesti .testimonial p {
  margin-left: 4em;
}

.ceprimesti .testimonial .autor {
  color: #8f0000;
  text-align: right;
  font-family: "Lato-Black", sans-serif;
  font-size: 1.2em;
  margin-left: 0;
  margin-bottom: 0;
  text-transform: uppercase;
}

.daniel {
  color: white;
  padding: 5em 0;
  background-color: #1D1D1D;
  background-image: url("../images/temele.jpg");
  background-repeat: repeat;
  background-position: center center;
  background-size: cover;
}

.daniel .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.daniel .flex .left {
  width: 30%;
}

.daniel .flex .left img {
  width: 100%;
  padding-right: 3.5em;
}

.daniel .flex .right {
  width: 70%;
}

.daniel .flex .right ul {
  margin-left: 4em;
}

.daniel .flex .right ul li {
  margin: 0;
}

.cartea {
  padding: 5em 0;
}

.cartea h1 {
  color: #8f0000;
}

.cartea img {
  display: block;
  margin: auto;
  padding-bottom: 2em;
}

.cartea .indent {
  margin-left: 4em;
}

.cartea .indent strong {
  color: #8f0000;
}

.testimoniale {
  padding: 5em 0;
  background-image: url("../images/bg.jpg");
  background-repeat: repeat;
  background-position: center center;
  background-size: cover;
}

.testimoniale .testimonial {
  width: 1100px;
  margin: auto;
  margin-bottom: 2em;
  position: relative;
  border-radius: 1em;
  padding: 2em;
  background: white;
  -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.testimoniale .testimonial img {
  position: absolute;
  width: 150px;
  left: -75px;
  border-radius: 50%;
}

.testimoniale .testimonial h2 {
  text-transform: uppercase;
  font-size: 1.2em;
  margin-left: 4em;
}

.testimoniale .testimonial p {
  margin-left: 4em;
}

.testimoniale .testimonial .autor {
  color: #8f0000;
  text-align: right;
  font-family: "Lato-Black", sans-serif;
  font-size: 1.2em;
  margin-left: 0;
  margin-bottom: 0;
  text-transform: uppercase;
}

footer {
  text-align: center;
  font-weight: bold;
  color: white;
  padding: 2rem 0;
  background: #8f0000;
}

footer a {
  padding: 0 1rem;
  display: block;
  color: white;
  font-family: "Lato-Regular", sans-serif;
}

footer p {
  padding: 0 1rem;
  margin: auto;
  font-size: 1em;
}
/*# sourceMappingURL=main.css.map */