body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
background-image: linear-gradient(#010504, #010504, #011515, #15223d,#33374c, #67666b);
   /* background-image: linear-gradient(to bottom, #051937, #272d45, #414354, #5b5a63, #737373); */
}
.box-blur{
	height: 148px;
    background-color: #010504;
    width: 100%;
    position: relative;
    top: -43px;
    opacity: 1;
    filter: blur(20px);
}
.call-to-action-btn {
  height: 100px;
  background-color: #f05454;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.call-to-action-btn h3 {
  color: #dddddd;
}

.call-to-action-btn .wrapper {
  margin-left: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
}*/

.call-to-action-btn .wrapper button {
border-radius: 30px 0px 30px 0px;
  width: 200px;
  height: 70px;
  background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, #222831), color-stop(50%, #30475e));
  background: linear-gradient(to left top, #222831 50%, #30475e 50%);
  border-style: none;
  color: #fff;
  font-size: 20px;
  letter-spacing: 3px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  position: relative;
  padding: 0px;
  overflow: hidden;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

.call-to-action-btn .wrapper button span {
  position: absolute;
  display: block;
}

.call-to-action-btn .wrapper button span:nth-child(1) {
  height: 3px;
  width: 200px;
  top: 0px;
  left: -200px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(#f6e58d));
  background: linear-gradient(to right, rgba(0, 0, 0, 0), #f6e58d);
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
  -webkit-animation: span1 2s linear infinite;
          animation: span1 2s linear infinite;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes span1 {
  0% {
    left: -200px;
  }
  100% {
    left: 200px;
  }
}

@keyframes span1 {
  0% {
    left: -200px;
  }
  100% {
    left: 200px;
  }
}

.call-to-action-btn .wrapper button span:nth-child(2) {
  height: 70px;
  width: 3px;
  top: -70px;
  right: 0px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#f6e58d));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #f6e58d);
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 1px;
  -webkit-animation: span2 2s linear infinite;
          animation: span2 2s linear infinite;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

@-webkit-keyframes span2 {
  0% {
    top: -70px;
  }
  100% {
    top: 70px;
  }
}

@keyframes span2 {
  0% {
    top: -70px;
  }
  100% {
    top: 70px;
  }
}

.call-to-action-btn .wrapper button span:nth-child(3) {
  height: 3px;
  width: 200px;
  right: -200px;
  bottom: 0px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), to(#f6e58d));
  background: linear-gradient(to left, rgba(0, 0, 0, 0), #f6e58d);
  border-top-left-radius: 1px;
  border-bottom-left-radius: 1px;
  -webkit-animation: span3 2s linear infinite;
          animation: span3 2s linear infinite;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

@-webkit-keyframes span3 {
  0% {
    right: -200px;
  }
  100% {
    right: 200px;
  }
}

@keyframes span3 {
  0% {
    right: -200px;
  }
  100% {
    right: 200px;
  }
}

.call-to-action-btn .wrapper button span:nth-child(4) {
  height: 70px;
  width: 3px;
  bottom: -70px;
  left: 0px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(#f6e58d));
  background: linear-gradient(to top, rgba(0, 0, 0, 0), #f6e58d);
  border-top-right-radius: 1px;
  border-top-left-radius: 1px;
  -webkit-animation: span4 2s linear infinite;
          animation: span4 2s linear infinite;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

@-webkit-keyframes span4 {
  0% {
    bottom: -70px;
  }
  100% {
    bottom: 70px;
  }
}

@keyframes span4 {
  0% {
    bottom: -70px;
  }
  100% {
    bottom: 70px;
  }
}

.call-to-action-btn .wrapper button:hover {
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform: rotate(-3deg) scale(1.1);
          transform: rotate(-3deg) scale(1.1);
  -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
}

.call-to-action-btn .wrapper button:hover span {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.footer-box {
  padding-top: 30px;
  height: 330px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #222831;
}

.footer-box .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #dddddd;
}

.footer-box .box .box-1 {
  margin: 0px 150px 0px 20px;
}

.footer-box .box .box-1 ul {
  -webkit-padding-start: 0px !important;
          padding-inline-start: 0px !important;
}

.footer-box .box .box-1 ul li {
  list-style-type: none;
  margin: 10px 0px 10px 0px;
}

.footer-box .box .box-1 ul li a {
  text-decoration: none;
  color: #dddddd;
}

.footer-box .box .box-1 ul li a img {
  height: 100px;
  width: 100px;
}

.footer-box .box .box-2 {
  margin: 0px 150px 0px 20px;
}

.footer-box .box .box-2 h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: gray;
}

.footer-box .box .box-2 ul {
  -webkit-padding-start: 0px !important;
          padding-inline-start: 0px !important;
}

.footer-box .box .box-2 ul li {
  list-style-type: none;
  margin: 10px 0px 10px 0px;
}

.footer-box .box .box-2 ul li a {
  text-decoration: none;
  color: #dddddd;
}

.footer-box .box .box-3 {
  margin: 0px 150px 0px 20px;
}

.footer-box .box .box-3 h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: gray;
}

.footer-box .box .box-3 ul {
  -webkit-padding-start: 0px !important;
          padding-inline-start: 0px !important;
}

.footer-box .box .box-3 ul li {
  list-style-type: none;
  margin: 10px 0px 10px 0px;
}

.footer-box .box .box-3 ul li a {
  text-decoration: none;
  color: #dddddd;
}

.footer-box .copyright-box {
  margin-top: 20px;
}

.footer-box .copyright-box copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #dddddd;
}

@media screen and (max-width: 1100px) {
  .footer-box {
    width: 100%;
    height: 350px;
  }
  .footer-box .box .box-1 {
    margin: 0px 20px 0px 20px;
  }
  .footer-box .box .box-2 {
    margin: 0px 20px 0px 20px;
  }
  .footer-box .box .box-3 {
    margin: 0px 20px 0px 20px;
  }
  .footer-box .copyright-box {
    text-align: center;
  }
}

@media screen and (max-width: 680px) {
  .call-to-action-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 150px;
  }
  .call-to-action-btn h3 {
    margin: 0px 10px 10px 10px;
    text-align: center;
  }
  .call-to-action-btn .wrapper {
    width: 200px;
    height: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .call-to-action-btn .wrapper button {
    width: 200px;
    height: 55px;
  }
  .footer-box {
    width: 100%;
    height: 850px;
  }
  .footer-box .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-box .box .box-1 {
    margin: 0px 50px 0px 50px;
  }
  .footer-box .box .box-2 {
    margin: 0px 50px 0px 50px;
  }
  .footer-box .box .box-3 {
    margin: 0px 50px 0px 50px;
  }
  .footer-box .copyright-box {
    text-align: center;
  }
}

@media screen and (max-width: 320px) {
  .footer-box {
    width: 100%;
    height: 850px;
  }
  .footer-box .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-box .box .box-1 {
    margin: 0px 50px 0px 50px;
  }
  .footer-box .box .box-2 {
    margin: 0px 50px 0px 50px;
  }
  .footer-box .box .box-3 {
    margin: 0px 50px 0px 50px;
  }
}

@media screen and (max-width: 300px) {
  .footer-box {
    height: 900px;
  }
}

.hero-img-header img {
  width: 100%;
  height: 600px;
 /* -webkit-box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
          box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4); */
}

.hero-img-header .hero-box {
  
  opacity: 0.8;
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 30px;
}

.hero-img-header .hero-box h1 {
  font-size: 105px;
  color: aliceblue;
}

.despre-noi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px 150px!important;
}

.despre-noi .despre-noi-text h1 {
  text-align: center;
}

.despre-noi .despre-noi-text p {
      
  text-align: justify;
    font-size: 16px!important;
    color: white!important;
margin: 60px 30px 60px 0!important;
}

.despre-noi .despre-noi-text h2{
    font-size: 55px!important;
    color: #00d4ff;
}

.despre-noi .despre-noi-poza img {
  height: 600px!important;
  width: 800px!important;
    margin-top: 70px;
  -webkit-box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
          box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
}
.servicii-box h2 {
  font-size: 58px!important;
      margin: 90px!important;
    color: #00d4ff!important;
  text-align: center;
}

.hero-img-header-servicii img {
  width:100%;
  height: 800px;
  -webkit-box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
          box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
  }

.hero-img-header-servicii .hero-box-servicii {
  width: 100%;
  height: 170px;
  background-color: black;
  opacity: 0.8;
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.hero-img-header-servicii .hero-box-servicii h1 {
  text-align: center;
  font-size: 60px;
  color: aliceblue;
}

.box-introducere-servicii {
  margin-bottom: 50px;
}

.box-introducere-servicii h1 {
  
  text-align: center;
}

.box-introducere-servicii h3 {
  text-align: center;
}

.box-prezentare-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 20px 40px 0px 40px;
}

.box-prezentare-1 .box-prezentare-text-1 {
  margin-top: 80px;
  margin-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.box-prezentare-1 .box-prezentare-text-1 h2 {
  text-align: center;
}

.box-prezentare-1 .box-prezentare-text-1 p {
  text-align: justify;
}

.box-prezentare-1 .box-prezentare-text-1 .box-mare {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.box-prezentare-1 .box-prezentare-text-1 .box-mare .box-check-1 ul {
  margin: 0px !important;
  padding: 0 !important;
}

.box-prezentare-1 .box-prezentare-text-1 .box-mare .box-check-1 ul li {
  margin: 20px 40px 0px 40px;
  list-style-type: none;
  text-decoration: none;
}

.box-prezentare-1 .box-prezentare-text-1 .box-mare .box-check-2 ul {
  margin: 0px !important;
  padding: 0 !important;
}

.box-prezentare-1 .box-prezentare-text-1 .box-mare .box-check-2 ul li {
  margin: 20px 40px 0px 40px;
  list-style-type: none;
  text-decoration: none;
}

.box-prezentare-poza-1 img {
  -webkit-box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
          box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
  width: 800px;
  height: 600px;
margin-right: 63px;
}

.box-prezentare-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 20px 40px 0px 40px;
}

.box-prezentare-2 .box-prezentare-poza-2 img {
  -webkit-box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
          box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
  width: 750px;
  height: 500px;
}

.box-prezentare-2 .box-prezentare-text-2 {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 30px;
}

.box-prezentare-2 .box-prezentare-text-2 .box-mare-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.box-prezentare-2 .box-prezentare-text-2 .box-mare-2 .box-check-2-1 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.box-prezentare-2 .box-prezentare-text-2 .box-mare-2 .box-check-2-1 ul li {
  margin: 0px 20px 0px 80px;
  list-style-type: none;
  text-decoration: none;
}

.box-prezentare-2 .box-prezentare-text-2 .box-mare-2 .box-check-2-2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.box-prezentare-2 .box-prezentare-text-2 .box-mare-2 .box-check-2-2 ul li {
  margin: 0px 20px 0px 80px;
  list-style-type: none;
  text-decoration: none;
}

.box-prezentare-2 .box-prezentare-text-2 h2 {
  text-align: center;
}

.box-prezentare-2 .box-prezentare-text-2 h3 {
  text-align: center;
}

.box-prezentare-2 .box-prezentare-text-2 p {
  text-align: justify;
}

.box-prezentare-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 20px 40px 0px 40px;
}

.box-prezentare-3 .box-prezentare-text-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 30px;
  margin-top: 50px;
}

.box-prezentare-3 .box-prezentare-text-3 .box-mare-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-left: 55px;
}

.box-prezentare-3 .box-prezentare-text-3 .box-mare-3 .box-check-3-1 ul li {
  margin: 20px 20px 0px 0px;
  list-style-type: none;
  text-decoration: none;
}

.box-prezentare-3 .box-prezentare-text-3 .box-check-3-2 ul li {
  margin: 20px 20px 0px 0px;
  list-style-type: none;
  text-decoration: none;
}

.box-prezentare-3 .box-check-3-3 ul li {
  margin: 20px 20px 0px 0px;
  list-style-type: none;
  text-decoration: none;
}

h2 {
  text-align: center;
}

h3 {
  text-align: center;
}

p {
  text-align: justify;
}

.box-prezentare-poza-3 img {
  -webkit-box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
          box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
  width: 750px;
  height: 500px;
}

.box-prezentare-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 10px 40px 0px 40px;
}

.box-prezentare-4 .box-prezentare-poza-4 img {
  -webkit-box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
          box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
  width: 750px;
  height: 630px;
}

.box-prezentare-4 .box-prezentare-text-4 {
  margin-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.box-prezentare-4 .box-prezentare-text-4 .box-audit .box-check-4-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-left: 40px;
}

.box-prezentare-4 .box-prezentare-text-4 .box-audit .box-check-4-1 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.box-prezentare-4 .box-prezentare-text-4 .box-audit .box-check-4-1 ul li {
  margin: 20px 20px 0px 0px;
  list-style-type: none;
  text-decoration: none;
}

.box-prezentare-4 .box-prezentare-text-4 .box-mare-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-left: 60px;
}

.box-prezentare-4 .box-prezentare-text-4 .box-mare-4 .box-check-4-2 ul {
  margin-left: 0px;
}

.box-prezentare-4 .box-prezentare-text-4 .box-mare-4 .box-check-4-2 ul li {
  margin: 20px 40px 0px 0px;
  list-style-type: none;
  text-decoration: none;
}

.box-prezentare-4 .box-prezentare-text-4 .box-mare-4 .box-check-4-3 ul {
  margin-left: 60px;
}

.box-prezentare-4 .box-prezentare-text-4 .box-mare-4 .box-check-4-3 ul li {
  margin: 20px 40px 0px 0px;
  list-style-type: none;
  text-decoration: none;
}

.box-prezentare-4 .box-prezentare-text-4 h2 {
  text-align: center;
}

.box-prezentare-4 .box-prezentare-text-4 h3 {
  text-align: center;
}

.box-prezentare-4 .box-prezentare-text-4 p {
  text-align: justify;
}

.box-prezentare-5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 20px 40px 20px 40px;
}

.box-prezentare-5 .box-prezentare-text-5 {
  margin-right: 30px;
  margin-top: 100px;
}

.box-prezentare-5 .box-prezentare-text-5 .box-campanie .box-check-5-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.box-prezentare-5 .box-prezentare-text-5 .box-campanie .box-check-5-1 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.box-prezentare-5 .box-prezentare-text-5 .box-campanie .box-check-5-1 ul li {
  margin: 20px 20px 0px 0px;
  list-style-type: none;
  text-decoration: none;
}

.box-prezentare-5 .box-prezentare-text-5 h2 {
  text-align: center;
}

.box-prezentare-5 .box-prezentare-text-5 h3 {
  text-align: center;
}

.box-prezentare-5 .box-prezentare-text-5 p {
  text-align: justify;
}

.box-prezentare-5 .box-prezentare-poza-5 img {
  -webkit-box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
          box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
  width: 780px;
  height: 500px;
}


/* Style the tab */
.tab {
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Style the buttons inside the tab */
.tab button {
  -webkit-box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
          box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
  margin: 0px 40px 20px 40px;
  border: 2px solid #ffffff00;
  float: left;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 22px;
  width: 250px;
  height: 250px;
}

.tab button i {
  color: #222831;
  font-size: 150px;
  -webkit-transition: -webkit-transform .9s;
  transition: -webkit-transform .9s;
  transition: transform .9s;
  transition: transform .9s, -webkit-transform .9s;
}

.tab button i:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.tab button h3 {
  text-align: center;
  padding-top: 25px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #00d4ff;
}

.tab button.active {
  background-color: #00d4ff;
}

/* Style the tab content */
.tabcontent {
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: 20px;
  margin-right: 40px;
}

@media screen and (max-width: 1670px) {
  .tab button {
    margin: 0px 10px 10px 10px;
    width: 250px;
    height: 250px;
  }
  .tab button i {
    font-size: 150px;
  }
  .tab button h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 1370px) {
  .tab button {
    margin: 0px 10px 10px 10px;
    width: 200px;
    height: 200px;
  }
  .tab button i {
    font-size: 100px;
  }
  .tab button h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 1120px) {
  .box-introducere-servicii h1 {
    text-align: center;
  }
  .box-introducere-servicii h3 {
    text-align: center;
  }
  .tab button {
    margin: 0px 10px 10px 10px;
    width: 160px;
    height: 170px;
  }
  .tab button i {
    font-size: 70px;
  }
  .tab button h3 {
    font-size: 17px;
  }
}

@media screen and (max-width: 970px) {
  .box-introducere-servicii h1 {
    margin: 0px 40px 10px 40px;
    text-align: center;
  }
  .box-introducere-servicii h3 {
    margin: 0px 40px 10px 40px;
    text-align: center;
  }
  .tab button {
    margin: 0px 10px 10px 10px;
    width: 120px;
    height: 150px;
  }
  .tab button i {
    font-size: 50px;
  }
  .tab button h3 {
    font-size: 15px;
    text-align: center;
  }
}

@media screen and (max-width: 800px) {
  .box-introducere-servicii h1 {
    margin: 0px 40px 10px 40px;
    text-align: center;
  }
  .box-introducere-servicii h3 {
    margin: 0px 40px 10px 40px;
    text-align: center;
  }
  .tab button {
    margin: 0px 10px 10px 10px;
    width: 95px;
    height: 140px;
  }
  .tab button i {
    font-size: 40px;
  }
  .tab button h3 {
    margin: 0px 0px 40px 0px;
    text-align: center;
    font-size: 15px;
  }
}

@media screen and (max-width: 600px) {
  .box-introducere-servicii h1 {
    margin: 0px 40px 10px 40px;
    text-align: center;
  }
  .box-introducere-servicii h3 {
    margin: 0px 40px 10px 40px;
    text-align: center;
  }
  .tab button {
    margin: 0px 2px 0px 2px;
    width: 95px;
    height: 140px;
  }
  .tab button i {
    font-size: 40px;
  }
  .tab button h3 {
    margin: 0px 0px 40px 0px;
    text-align: center;
    font-size: 15px;
  }
}

@media screen and (max-width: 460px) {
  .box-introducere-servicii h1 {
    margin: 0px 40px 10px 40px;
    text-align: center;
  }
  .box-introducere-servicii h3 {
    margin: 0px 40px 10px 40px;
    text-align: center;
  }
  .tab button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 80px;
    height: 140px;
  }
  .tab button i {
    font-size: 30px;
  }
  .tab button h3 {
    margin: 0px 0px 40px 0px;
    text-align: center;
    font-size: 15px;
  }
}

@media screen and (max-width: 1600px) {
  .box-prezentare-1 .box-prezentare-text-1 {
    margin-top: 10px;
  }
  .box-prezentare-1 .box-prezentare-poza-1 img {
    width: 450px;
    height: 300px;
  }
}

@media screen and (max-width: 1200px) {
  .box-prezentare-1 .box-prezentare-text-1 {
    margin-top: 30px;
  }
  .box-prezentare-1 .box-prezentare-poza-1 img {
    width: 350px;
    height: 400px;
  }
}

@media screen and (max-width: 1020px) {
  .box-prezentare-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .box-prezentare-1 .box-prezentare-poza-1 img {
    margin-top: 15px;
    width: 550px;
    height: 350px;
  }
}

@media screen and (max-width: 690px) {
  .box-prezentare-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .box-prezentare-1 .box-prezentare-text-1 {
    margin-left: 30px;
  }
  .box-prezentare-1 .box-prezentare-poza-1 img {
    margin-top: 15px;
    width: 450px;
    height: 350px;
  }
}

@media screen and (max-width: 530px) {
  .box-prezentare-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: justify;
    margin-left: 40px;
    margin-right: 40px;
  }
  .box-prezentare-1 .box-prezentare-text-1 h3 {
    text-align: justify;
    font-size: 17px;
  }
  .box-prezentare-1 .box-prezentare-text-1 p {
    text-align: justify;
    font-size: 15px;
  }
  .box-prezentare-1 .box-prezentare-text-1 .box-mare {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .box-prezentare-1 .box-prezentare-text-1 .box-mare .box-check-1 {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .box-prezentare-1 .box-prezentare-text-1 .box-mare .box-check-1 ul li {
    font-size: 15px;
  }
  .box-prezentare-1 .box-prezentare-text-1 .box-mare .box-check-2 {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .box-prezentare-1 .box-prezentare-text-1 .box-mare .box-check-2 ul li {
    font-size: 15px;
  }
  .box-prezentare-1 .box-prezentare-poza-1 img {
    margin-top: 15px;
    width: 200px;
    height: 150px;
  }
}

@media screen and (max-width: 1690px) {
  .box-prezentare-2 .box-prezentare-poza-2 img {
    width: 450px;
    height: 400px;
  }
  .box-prezentare-2 .box-prezentare-text-2 {
    margin-top: 10px;
  }
}

@media screen and (max-width: 1390px) {
  .box-prezentare-2 .box-prezentare-poza-2 img {
    width: 350px;
    height: 400px;
  }
  .box-prezentare-2 .box-prezentare-text-2 {
    margin-top: 5px;
    font-size: 15px;
  }
  .box-prezentare-2 .box-prezentare-text-2 .box-mare-2 .box-check-2-1 ul li {
    font-size: 15px;
  }
  .box-prezentare-2 .box-prezentare-text-2 .box-mare-2 .box-check-2-2 ul li {
    font-size: 15px;
  }
}

@media screen and (max-width: 1260px) {
  .box-prezentare-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .box-prezentare-2 .box-prezentare-poza-2 img {
    width: 750px;
    height: 500px;
  }
  .box-prezentare-2 .box-prezentare-text-2 {
    margin-top: 5px;
    font-size: 15px;
  }
  .box-prezentare-2 .box-prezentare-text-2 .box-mare-2 .box-check-2-1 ul li {
    font-size: 15px;
  }
  .box-prezentare-2 .box-prezentare-text-2 .box-mare-2 .box-check-2-2 ul li {
    font-size: 15px;
  }
}

@media screen and (max-width: 850px) {
  .box-prezentare-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .box-prezentare-2 .box-prezentare-poza-2 img {
    width: 400px;
    height: 300px;
  }
  .box-prezentare-2 .box-prezentare-text-2 {
    margin-top: 5px;
    font-size: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 50px;
  }
  .box-prezentare-2 .box-prezentare-text-2 .box-mare-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .box-prezentare-2 .box-prezentare-text-2 .box-mare-2 .box-check-2-1 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .box-prezentare-2 .box-prezentare-text-2 .box-mare-2 .box-check-2-1 ul li {
    font-size: 15px;
  }
  .box-prezentare-2 .box-prezentare-text-2 .box-mare-2 .box-check-2-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .box-prezentare-2 .box-prezentare-text-2 .box-mare-2 .box-check-2-2 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .box-prezentare-2 .box-prezentare-text-2 .box-mare-2 .box-check-2-2 ul li {
    font-size: 15px;
  }
}
/*# sourceMappingURL=app.css.map */





.contact-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.contact-page .container-form-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
  height: 500px;
  width: 500px;
    top: -100px;
    position: relative;
}

.contact-page .container-form-box input, .contact-page .container-form-box select, .contact-page .container-form-box textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid black;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

.contact-page .container-form-box .clasa-buton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-page .container-form-box .clasa-buton button {
  background-color: #000000;
  color: white;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
}

.contact-page .container-form-box h4 {
  text-align: center;
  font-size: 25px;
}

.contact-page .box-contact-poza img {
  height: 540px;
  width: 1400px;
}





.hero-img-header-about img {
  width: 100%;
  height: 800px;
box-shadow: 0 8px 12px rgb(0 0 0 / 40%);
}

.hero-img-header-about .hero-box-about {
  width: 100%;
  height: 170px;
  background-color: black;
  opacity: 0.8;
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.hero-img-header-about .hero-box-about h1 {
  text-align: center;
  font-size: 60px;
  color: aliceblue;
}

.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 50px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 50px;
}

.about .about-text {
  margin-top: 0px;
}

.about .about-text h1 {
  text-align: center;
    font-size: 55px!important;
    color: #00d4ff;
}

.about .about-text hr{
  width: 50%;
}

.about .about-text h3 {
  text-align: center;
color: #00d4ff;
}

.about .about-text p {
  text-align: justify;
  margin-right: 30px;
	margin-left: 130px;
	color:white;
margin-top: 50px;
}

.about .about-poza img {
    width: 800px;
    height: 550px;
    margin-right: 130px;
margin-top: 30px;
}


.box-about-1 {
  background-color: #5b5a63;
  height: 130px;
}

.box-about-1 h1 {
  padding-top: 50px;
  text-align: center;
  color: #00d4ff;
  opacity: 100%;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
}

.box-about-1 h1:hover {
  opacity: 50%;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.about-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 50px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 50px;
}

.about-2 .about-poza-2 img {
    width: 800px;
    height: 550px;
    margin-left: 130px;
margin-top: 80px;
}


.about-2 .about-text-2 {
  margin-top: 65px;
}

.about-2 .about-text-2 hr{
  width: 80%;
margin-left: 75px;

}

.about-2 .about-text-2 h1 {
  text-align: center;
font-size: 55px!important;
    color: #00d4ff;
margin-right: 75px;

}

.about-2 .about-text-2 h3 {
  text-align: center;
color: #00d4ff;
margin-right: 75px;
}

.about-2 .about-text-2 p {
  text-align: justify;
      margin-right: 130px;
    margin-left: 30px;
color:white;
}
.box-beneficii .box-beneficii-1 i {
    -webkit-box-shadow: 0 8px 12px rgb(0 0 0 / 40%)!important;
    box-shadow: 0 8px 12px rgb(0 0 0 / 40%)!important;
    font-size: 200px!important;
    color: whitesmoke!important;
    padding: 30px!important;
}

.box-beneficii .box-beneficii-1 p {
    font-size: 42px!important;
    color: #00d4ff!important;
}
.startup-box {
margin:0px 150px 0px 150px!important;;

}
.startup-box .startup-img img {
    height: 550px!important;
    width: 800px!important;
    -webkit-box-shadow: 0 8px 12px rgb(0 0 0 / 40%)!important;
    box-shadow: 0 8px 12px rgb(0 0 0 / 40%)!important;
}
.startup-box .startup-text {
display:flex;
align-items:center;
justify-content:center;
flex-direction:column;


}
.startup-box hr{
width:400px!important;
}
.startup-box .startup-text p {
    font-size: 16px!important;
    margin: 50px 0px 50px 30px!important;
    color: white!important;
    text-align: justify!important;

}
.startup-box h3{
color: #00d4ff!important;
font-size:55px;
}

@media screen and (max-width: 1755px) {
.despre-noi .despre-noi-poza img{
	height:500px!important;
	width:550px!important
	}
.despre-noi .despre-noi-text h2 {
    font-size: 58px!important;	}
}
@media screen and (max-width: 1650px) {
.despre-noi .despre-noi-poza img{
	height:400px!important;
	width:450px!important
	}
.despre-noi .despre-noi-text p{
	font-size:14px!important;
	margin: 30px 45px 60px 0!important;
	}
.despre-noi .despre-noi-text h2 {
    font-size: 48px!important;	}


}
