/* init pmg_global */
@charset "UTF-8";
@font-face {
  font-family: "source-sans-pro";
  src: url("/template/assets/fonts/source-sans-pro/SourceSansPro-Regular.otf") format("woff2");
  src: url("/template/assets/fonts/source-sans-pro/SourceSansPro-Regular.otf") format("woff");
}
@font-face {
  font-family: "source-sans-pro-italic";
  src: url("/template/assets/fonts/source-sans-pro/SourceSansPro-It.otf") format("woff2");
  src: url("/template/assets/fonts/source-sans-pro/SourceSansPro-It.otf") format("woff");
}
@font-face {
  font-family: "source-sans-pro-bold";
  src: url("/template/assets/fonts/source-sans-pro/SourceSansPro-Bold.otf") format("woff2");
  src: url("/template/assets/fonts/source-sans-pro/SourceSansPro-Bold.otf") format("woff");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --main-color: rgba(255, 255, 255, 1);
  --main-color2: rgba(27, 27, 29, 1);
  --main-color3: rgba(40, 52, 68, 1);
  --main-colo4: rgba(50, 52, 58, 1);
  --main-color5: rgba(27, 27, 29, 1);
}
html, body {
  font-family: "source-sans-pro";
  overflow-x: clip;
  background: rgba(27, 27, 29, 0.1);
  position: relative;
  /* toDO */
  /* background-image: url("https://www.transparenttextures.com/patterns/lyonnette.png");  */
}
.hiddenBoby {
  overflow: hidden;
}
a {
  text-decoration: none !important;
}
/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--main-color3);
  border-radius: 2px;
}
::-webkit-scrollbar-track {
  background-color: var(--main-color);
  border-radius: 2px;
}
input[type="number"] {
  -webkit-appearance: textfield;
  appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.standart-button {
  background: var(--main-color2);
  box-shadow: 0px 4px 5px rgba(51, 61, 73, 0.24);
  border-radius: 8px;
  color: var(--main-color);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  line-height: 35px;
  letter-spacing: 0.75px;
  width: 160px;
  font-family: "source-sans-pro";
  position: relative;
  overflow: hidden;
  height: 35px;
}
.standart-button .btn__text {
  position: absolute;
  transition: 0.3s;
  top: 0;
  text-align: center;
  width: 100%;
  height: 100%;
}
.standart-button .after-text {
  position: absolute;
  top: 100%;
  display: block;
  width: 100%;
  height: 100%;
  content: "CITEȘTE";
  line-height: 35px;
  transition: top 0.3s;
  text-transform: uppercase;
}
.standart-button:hover .after-text {
  top: 0;
}
.standart-button:hover > .btn__text {
  top: -100%;
}
.standart-button:hover {
  background-color: var(--main-color);
  transition: 0.4s all;
  color: var(--main-color2);
}
.title-with-description {
  color: var(--main-color3);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.75px;
  /* line-height:20px; */
}
.title-with-description p {
  margin: 14px 0px 0px 0px;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1px;
}
.arows {
  background: var(--main-color);
  position: relative;
}
.box-hr {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}
.box-hr hr {
  height: 0.5px;
  color: var(--main-color2);
  background-color: var(--main-color3);
  border: none;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.2;
}
.overlay-img {
  position: absolute;
  background: rgba(27, 27, 29, 0.7);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.shadow-pop-upp {
  position: fixed;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(27, 27, 29, 0.2);
  justify-content: center;
  align-items: center;
  display: none;
  left: 0;
  top: 0;
}
.pop-upp {
  z-index: 5;
  width: 680px;
  height: 446px;
  border-radius: 10px;
  background-color: var(--main-color);
  padding: 20px 30px 80px 30px;
  transition: 1.5s;
  position: fixed;
  display: none;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.pop-upp__inputs-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  margin-top: 25px;
}
.pop-upp__inputs-box input {
  height: 30px;
  padding: 9px 0px 9px 10px;
  padding: 9px 10px 9px 10px;
  font-size: 16px;
  font-family: "source-sans-pro";
  font-weight: 200;
  line-height: 28px;
  letter-spacing: 1px;
  word-wrap: break-word;
  outline: none;
  border-radius: 5px;
  background-color: rgba(178, 178, 178, 0.25);
  transition: 0.3s;
  border: none;
  color: var(--main-color3);
  width: 46%;
}
.pop-upp__inputs-box input::placeholder {
  color: rgba(40, 52, 68, 0.4);
}
.pop-upp__inputs-box input:focus {
  background-color: whitesmoke;
}
.pop-upp__close {
  /* // float: right; */
  display: flex;
  justify-content: right;
  cursor: pointer;
}
.pop-upp__close figure {
  transition: 0.3s;
  opacity: 0.6;
  width: 25px;
}
.pop-upp__close figure img {
  width: 100%;
}
.pop-upp__close figure:hover {
  transition: 0.3s;
  opacity: 1;
}
.pop-upp textarea {
  width: 100%;
  color: var(--main-color3);
  outline: none;
  border: none;
  font-weight: 200;
  line-height: 28px;
  letter-spacing: 1px;
  font-size: 16px;
  font-family: "source-sans-pro";
  word-wrap: break-word;
  resize: none;
  resize: vertical;
  height: 185px;
  min-height: 30px;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.3s;
  background-color: rgba(178, 178, 178, 0.25);
  padding: 15px 15px 0px 15px;
  resize: none;
}
.pop-upp textarea::placeholder {
  color: rgba(40, 52, 68, 0.4);
}
.pop-upp textarea:focus {
  background-color: whitesmoke;
}
.pop-upp__button-box {
  margin-top: 10px;
}
.pop-upp__button-box button {
  background-color: var(--main-color);
  color: var(--main-color2);
  float: right;
}
.pop-upp__button-box button:hover {
  background-color: var(--main-color2);
  color: var(--main-color);
}
.toast {
  position: absolute;
  top: 50%;
  right: 30px;
  border-radius: 7px;
  background: #fff;
  padding: 20px 35px 20px 25px;
  border-left: 4px solid green;
  border-top: 4px solid green;
  border-right: 4px solid green;
  overflow: hidden;
  transform: translateX(calc(100% + 30px));
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
}
.toast.active {
  transform: translateX(0%);
}
.toast .toast-content {
  display: flex;
  align-items: center;
}
.toast .check {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  background-color: green;
  color: #fff;
  font-size: 20px;
  border-radius: 5px;
}
.toast .check figure img {
  width: 14px;
  filter: brightness(0) invert(1);
}
.toast .message {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}
.toast .message .text {
  font-size: 20px;
  font-weight: 400;
  color: #666666;
}
.toast .message .text.text-1 {
  font-weight: 600;
  color: #333;
}
.toast .close {
  position: absolute;
  top: 10px;
  right: 15px;
  padding: 5px;
  cursor: pointer;
  opacity: 0.7;
}
.toast .close figure img {
  width: 19px;
  /* filter: brightness(0) invert(1); */
}
.toast .close:hover {
  opacity: 1;
}
.toast .progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: #ddd;
}
.toast .progress:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: green;
}
.toast .progress.active:before {
  animation: progress 5s linear forwards;
}
.toast.error {
  border-left: 4px solid red;
  border-top: 4px solid red;
  border-right: 4px solid red;
}
.toast.error .progress:before {
  background-color: red;
}
.toast.error .check {
  background-color: red;
}
@keyframes progress {
  100% {
    right: 100%;
  }
}
.container {
  width: 100%;
  margin: 0 auto;
  /* padding: 0 30px;    */
}
.container__big {
  max-width: 1922px;
}
.container__mediu {
  max-width: 1140px;
  background-color: var(--main-color);
}
.container__small {
  max-width: 1008px;
}
/* phone global css */
@media (max-width: 1024px) {
  .toast {
    position: fixed;
    z-index: 20;
    max-width: 50%;
  }
  .toast .message .text {
    font-size: 14px;
  }
  .toast .check {
    min-width: 35px;
  }
  .box-hr {
    width: 100%;
    margin: 0 auto;
  }
  .standart-button:hover .after-text {
    top: 100%;
  }
  .standart-button:hover > .btn__text {
    top: 0;
  }
  .standart-button:hover {
    background-color: var(--main-color2);
    color: var(--main-color);
  }
  .standart-button .btn__text:hover {
    background-color: var(--main-color2);
    color: var(--main-color);
  }
  .pop-upp {
    width: 70%;
    margin: 0 auto;
    height: auto;
    min-height: 300px;
    padding: 20px 30px 30px 30px;
  }
  .pop-upp .pop-up-description div {
    font-size: 22px;
    text-align: center;
  }
  .pop-upp .pop-up-description p {
    font-size: 13px;
    text-align: center;
  }
  .pop-upp__inputs-box {
    margin-bottom: 0px;
    flex-direction: column;
    margin-top: 14px;
  }
  .pop-upp__inputs-box input {
    width: 100%;
    margin-bottom: 5px;
  }
  .pop-upp textarea {
    width: 100%;
    resize: none;
  }
  .pop-upp__button-box {
    margin: 0 auto;
    margin-top: 1vh;
    width: 155px;
  }
  .pop-upp__button-box button {
    background-color: var(--main-color);
    color: var(--main-color2);
    float: right;
  }
  .pop-upp__button-box button:hover {
    background-color: var(--main-color);
    color: var(--main-color2);
  }
  .pop-upp__button-box button .btn__text:hover {
    background-color: var(--main-color);
    color: var(--main-color2);
  }
  .pop-upp__close {
    padding-bottom: 10px;
    position: relative;
    min-height: 10px;
  }
  .pop-upp__close > figure {
    position: absolute;
    right: 0;
  }
  .pop-upp__user-input .title-with-description {
    line-height: 0px;
  }
  .pop-upp__user-input .title-with-description div {
    font-size: 20px;
  }
  .pop-upp__user-input .title-with-description p {
    font-size: 11px;
    line-height: 14px;
  }
  .title-with-description {
    line-height: 28px;
  }
  .title-with-description div {
    text-align: center;
  }
  .title-with-description p {
    text-align: center;
  }
  .container-information {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .pop-upp__inputs-box input {
    width: 100%;
  }
  .pop-upp {
    width: 90%;
    padding: 20px 20px 30px 20px;
  }
  .pop-upp__close {
    right: -10px;
    top: -10px;
  }
}
@media screen and (max-height: 450px) and (orientation: landscape) {
  .pop-upp {
    z-index: 100;
    height: 75%;
    min-height: 100px;
    padding: 10px 20px 20px 20px;
  }
  .pop-upp .pop-up-description div {
    font-size: 22px;
    text-align: center;
  }
  .pop-upp .pop-up-description p {
    font-size: 13px;
    text-align: center;
  }
  .pop-upp__inputs-box {
    margin-bottom: 0px;
    flex-direction: row;
    justify-content: space-between;
  }
  .pop-upp__inputs-box input {
    width: 45.5%;
    margin-bottom: 5px;
  }
  .pop-upp textarea {
    width: 95%;
    max-height: 75px;
  }
  .pop-upp__user-input .title-with-description {
    line-height: 0px;
  }
  .pop-upp__user-input .title-with-description div {
    font-size: 15px;
  }
  .pop-upp__user-input .title-with-description p {
    font-size: 11px;
    line-height: 14px;
  }
}

/* end pmg_global */
/* init pmg_404 */
.error-page {
  padding-top: 55px;
  height: calc(100vh - 296px);
  /*   background: rgba(0, 0, 0, 0.2); */
}
.error-page .error {
  margin: 0 auto;
  font-size: clamp(35px, 6vw, 150px);
  line-height: initial;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 40px 0;
}
.error-page .error span {
  text-align: center;
  padding: 0 20px;
  display: block;
}
.error-page .error .go-home {
  margin-top: 30px;
  padding: 8px 20px;
  font-size: 26px;
  background: #1d1d1d;
  color: #ffffff;
  border-radius: 5px;
  max-width: 200px;
  text-align: center;
  width: 100%;
}
.error-page .box-in {
  height: 100%;
}
.error-page .container {
  height: 100%;
}

/* end pmg_404 */
/* init pmg_footer */
.box-footer .bg-color {
  background-color: var(--main-color2);
  color: var(--main-color);
}
.box-footer__container-info {
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 25px 0px 40px 0px;
  /* // justify-content:space-between; */
}
.box-footer__linkuri li {
  list-style-type: none;
  height: 27px;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
}
.box-footer__linkuri li a {
  text-decoration: none;
  color: var(--main-color);
}
.box-footer__linkuri .item-menu {
  text-decoration: none;
  /* // height: 33px; */
  position: relative;
}
.box-footer__linkuri .item-menu::after {
  position: absolute;
  content: '';
  margin-top: 26px;
  display: block;
  width: 0;
  height: 0.9px;
  background: var(--main-color);
  transition: width 0.3s;
}
.box-footer__linkuri .item-menu:hover::after {
  width: 100%;
}
.box-footer__contacts {
  width: 340px;
  position: relative;
}
.box-footer__contacts-data {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.88px;
  word-wrap: break-word;
  align-items: center;
  display: flex;
  justify-content: left;
  /* padding:  0px  0px 5px  0px; */
  height: 27px;
}
.box-footer__contacts-data figure {
  display: flex;
  width: 13px;
  height: 13px;
  margin-right: 5px;
}
.box-footer__contacts-data figure img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}
.box-footer__contacts-data a {
  display: flex;
  align-items: center;
  justify-content: left;
  text-decoration: none;
  color: var(--main-color);
}
.box-footer__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.69px;
  word-wrap: break-word;
  height: 60px;
  border-bottom: dotted 1px;
  display: flex;
  margin-bottom: 18px;
  align-items: center;
}
.box-footer__social-media {
  display: flex;
  height: 45px;
  width: 240px;
  padding-top: 5px;
  justify-content: space-between;
  align-items: end;
  position: absolute;
  bottom: 0;
  position: relative;
  list-style-type: none;
}
.box-footer__social-media a {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.box-footer__social-media li {
  background-color: rgba(255, 255, 255, 0.85);
  top: 0;
  border-radius: 20px;
  display: flex;
  align-items: end;
  justify-content: center;
  font-size: 0;
  width: 35px;
  height: 35px;
  position: relative;
}
.box-footer__social-media li img {
  height: 18px;
  width: 100%;
  border-radius: 20px;
}
.box-footer__social-media figure {
  width: 30px;
  position: absolute;
  position: relative;
}
.box-footer__social-media figure img {
  width: 100%;
}
.box-footer__recomandation {
  display: flex;
  align-items: center;
}
.box-footer__linkuri-box {
  display: flex;
  justify-content: space-around;
  min-width: 340px;
}
/* footer box mobile */
@media (max-width: 1024px) {
  .box-footer__container-info {
    max-width: 100%;
    width: 100%;
    padding: 25px 20px 40px 20px;
    margin: 0 auto;
    flex-direction: column;
  }
  .box-footer__contacts {
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .box-footer__contacts-data {
    justify-content: left;
  }
  .box-footer__linkuri-box {
    min-width: auto;
    justify-content: center;
    flex-flow: column;
    align-items: center;
  }
  .box-footer__linkuri {
    margin-bottom: 15px;
  }
  .box-footer__title {
    justify-content: center;
  }
  .box-footer__social-media {
    margin: 0 auto;
    padding-top: 30px;
  }
  .box-footer__recomandation {
    justify-content: center;
  }
  .box-footer__linkuri .item-menu::after {
    display: none;
  }
  .box-footer__social-media {
    padding-top: 5px;
  }
}
.box-footer .footer_facebook a {
  background-image: url("/template/assets/img/svg2/facebook.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
}
.box-footer .footer_instagram a {
  background-image: url("/template/assets/img/svg2/instagram.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
}
.box-footer .footer_whatsapp a {
  background-image: url("/template/assets/img/svg2/watsup.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
}
.box-footer .footer_telegram a {
  background-image: url("/template/assets/img/svg/telegram.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
}
.box-footer .footer_viber a {
  background-image: url("/template/assets/img/svg/Vector2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
}

@media (max-width: 500px){
.box-footer__container-info {
  padding: 25px 15px 40px 15px;
}

}
/* end pmg_footer */
/* init pmg_head */

/* end pmg_head */
/* init pmg_header */
.header-area {
  height: 55px;
  width: 100%;
  position: fixed;
  z-index: 15;
}
.header-area .shadow {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  transition: 0.6s;
}
.header-area .shadowDark {
  background: black;
  backdrop-filter: blur(0px);
  box-shadow: 0px 2px 5px rgba(10, 10, 10, 0.7);
}
.header-area__content {
  color: var(--main-color);
  width: 100%;
  height: 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin: 0 auto;
  padding: 0 20px;
}
.header-area__logo {
  width: 189px;
  height: 47px;
}
.header-area__menu {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  flex-direction: row;
  list-style: none;
  align-items: center;
}
.header-area__menu li {
  margin: 0px 0px 0px 22px;
  letter-spacing: 1px;
  position: relative;
  height: 18px;
}
.header-area__menu li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--main-color);
  display: inline-block;
  text-decoration: none;
}
.header-area__menu li a figure {
  display: flex;
  align-items: end;
  margin: 0px 3px 0px 7.5px;
  transition: 0.5s;
}
.header-area__menu li a::after {
  content: '';
  margin-top: 6px;
  display: block;
  width: 0;
  height: 1.5px;
  background: var(--main-color);
  transition: width 0.3s;
}
.header-area__menu li a:hover::after {
  width: 100%;
}
.header-area__menu .dropdown .item-menu {
  width: 100%;
}
.header-area__menu .dropdown a::after {
  display: none;
}
.header-area__menu .dropdown ul {
  padding-top: 18px;
  display: none;
  position: absolute;
  border-radius: 2px;
  list-style-type: none;
  z-index: 3;
}
.header-area__menu .dropdown ul li {
  width: 125px;
  height: auto;
  margin: 0px;
  z-index: 3;
  /* padding: 14px 13px 10px 13px; */
  font-size: 12px;
  transition: 0.3s all;
  background-color: rgba(27, 27, 29, 0.7);
  cursor: pointer;
  min-width: 235px;
}
.header-area__menu .dropdown ul li span {
  padding-left: 10px;
}
.header-area__menu .dropdown ul li:last-child {
  border-radius: 0px 0px 2px 2px;
}
.header-area__menu .dropdown ul li a {
  padding: 5px 13px 5px 13px;
  width: 100%;
}
.header-area__menu .dropdown ul li:hover {
  background-color: #1b1b1d;
}
.header-area__menu .dropdown:hover figure {
  transform: rotate(-180deg);
}
.header-area__menu .dropdown:hover ul {
  display: block;
  z-index: 3;
}
.header-area__burger-menu {
  display: none;
}
.pll-parent-menu-item .main-list-subelements .lang-item {
  min-width: 100% !important;
}
.header-bottom {
  height: 55px;
  background-color: #454242;
}
.phone-menu {
  display: none;
}
/* @media (max-width: 560px) {
  
   
} */
@media (max-width: 1024px) {
  .header-area__logo {
    display: flex !important;
    align-items: end !important;
    /* justify-content: center !important; */
  }
  .header-area__logo figure img {
    /* width: 169px; */
    height: 37px;
  }
  .header-area__menu {
    display: none;
  }
  .header-area__burger-menu {
    display: block;
    /*  margin-right:10px ; */
  }
  .header-area__burger-menu .burger-icon {
    display: block;
    z-index: 12;
    width: 25px;
    height: 25px;
    pointer-events: none;
  }
  .header-area__burger-menu .burger-icon-active {
    pointer-events: all;
  }
  .header-area__burger-menu #menu_checkbox {
    display: none;
  }
  .header-area__burger-menu label {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  .header-area__burger-menu label:before {
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: 1.2s cubic-bezier(0, 0.96, 1, 0.02) background-color;
  }
  .header-area__burger-menu label div {
    position: relative;
    top: 0;
    height: 4px;
    background-color: #32343a;
    background-color: white;
    margin-bottom: 3px;
    transition: 0.3s ease transform, 0.3s ease top, 0.3s ease width, 0.3s ease right;
    border-radius: 2px;
  }
  .header-area__burger-menu label div:first-child {
    width: 25px;
  }
  .header-area__burger-menu label div:last-child {
    margin-bottom: 0;
  }
  .header-area__burger-menu label div:nth-child(2) {
    right: 0;
    width: 25px;
  }
  .header-area__burger-menu #menu_checkbox:checked + label div:first-child {
    top: 8px;
    transform: rotateZ(48deg);
  }
  .header-area__burger-menu #menu_checkbox:checked + label div:last-child {
    top: -8px;
    transform: rotateZ(45deg);
    opacity: 0;
  }
  .header-area__burger-menu #menu_checkbox:checked + label div:nth-child(2) {
    top: 1.1px;
    right: 0px;
    transform: rotateZ(-48deg);
  }
  .phone-menu {
    display: block;
    position: fixed;
    left: -100vw;
    overflow-y: scroll;
    height: 100vh;
    width: 100vw;
    transition: 0.5s;
    z-index: 11;
    background-color: white;
  }
  .phone-menu .links {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 40px;
    /* .dropdown{width: 300px;} */
  }
  .phone-menu .links > li {
    margin: 0px 0px 20px 0px;
    font-size: 20px;
    font-weight: 800;
  }
  .phone-menu .links li {
    letter-spacing: 1px;
    list-style-type: none;
    text-align: center;
  }
  .phone-menu .links li a {
    text-decoration: none;
    color: black;
  }
  .phone-menu .links .dropdown ul {
    display: flex;
    flex-direction: column;
    /* justify-content: space-around; */
  }
  .phone-menu .links .dropdown ul > li {
    font-weight: 100;
    font-size: 16px;
    margin-top: 9px;
  }
  .phone-menu-active {
    left: 0vw;
  }
}

@media (max-width: 500px){
.header-area__content {
  padding: 0 15px;
}

}
/* end pmg_header */
/* init pmg_azienda_certificazioni_section_slider_logo_azionde */
.box-azienda_certificazioni_section_slider_logo_azionde .slick-slider-container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.box-azienda_certificazioni_section_slider_logo_azionde .slick-slider-logo {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin: 0 auto;
  padding-bottom: 80px;
}
.box-azienda_certificazioni_section_slider_logo_azionde .slick-slide {
  margin: 0 1px;
  padding: 30px 0;
  height: 80px;
}
.box-azienda_certificazioni_section_slider_logo_azionde .slick-slide img {
  width: auto;
  height: 100%;
}
.box-azienda_certificazioni_section_slider_logo_azionde .slick-slider-logo__every {
  border: 1px solid transparent;
}
.box-azienda_certificazioni_section_slider_logo_azionde .slick-slider-logo__every:hover {
  border: 1px solid #e9e9e9;
  background: linear-gradient(to right, #c3c3c3 2px, transparent 2px) 0 0, linear-gradient(to right, #c3c3c3 2px, transparent 2px) 0 100%, linear-gradient(to left, #c3c3c3 2px, transparent 2px) 100% 0, linear-gradient(to left, #c3c3c3 2px, transparent 2px) 100% 100%, linear-gradient(to bottom, #c3c3c3 2px, transparent 2px) 0 0, linear-gradient(to bottom, #c3c3c3 2px, transparent 2px) 100% 0, linear-gradient(to top, #c3c3c3 2px, transparent 2px) 0 100%, linear-gradient(to top, #c3c3c3 2px, transparent 2px) 100% 100%;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}
.box-azienda_certificazioni_section_slider_logo_azionde .slick-slider-logo__every:hover img {
  opacity: 1;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: 1;
}
.box-azienda_certificazioni_section_slider_logo_azionde .slick-slider-logo__every img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.7;
}
.box-azienda_certificazioni_section_slider_logo_azionde .slick-track {
  display: flex;
  align-items: center;
}
.box-azienda_certificazioni_section_slider_logo_azionde .slick-slide {
  display: flex !important;
  justify-content: center;
}
.box-azienda_certificazioni_section_slider_logo_azionde .slick-dots {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  list-style-type: none;
}

/* end pmg_azienda_certificazioni_section_slider_logo_azionde */
/* init pmg_bestworkers */
.box-bestworkers__container {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
}
.box-bestworkers__general-info {
  max-width: 100%;
  width: 50%;
  padding: 0 10px;
}
.box-bestworkers .bestworkers-title {
  margin-top: 50px;
  margin-bottom: 50px;
  font-weight: bold;
  line-height: 40px;
  text-transform: uppercase;
  font-size: clamp(20px, 4vw, 42px);
}
.box-bestworkers__text {
  margin-bottom: 50px;
  font-weight: 200;
  line-height: 25px;
}
.box-bestworkers__more-info:hover {
  background-color: var(--main-color2);
  color: var(--main-color);
}
.box-bestworkers__slider-box {
  max-width: 100%;
  width: 50%;
  padding: 0 10px;
  /* height: 600px; */
  overflow: hidden;
  background-color: var(--main-color);
}
.box-bestworkers__slider {
  width: 100%;
  /* width: 400px; */
  position: relative;
  height: 400px;
  overflow: hidden;
  /* .swiper-wrapper{
            height: 300px;
        } */
}
.box-bestworkers__slider .swiper-slide {
  height: 100%;
}
.box-bestworkers__slider .swiper-slide .photo img {
  border-radius: 15px;
  object-fit: cover;
  object-position: center;
  height: 250px;
  width: 100%;
}
.box-bestworkers__slider .swiper-slide .slide-text {
  padding-top: 20px;
}
.box-bestworkers__slider .swiper-slide .name {
  font-size: 30px;
  font-weight: 800;
}
.box-bestworkers__slider .swiper-slide .role {
  font-size: 18px;
  opacity: 0.6;
}
.box-bestworkers .swiper-button-box {
  width: 100px;
  position: absolute;
  right: 0px;
  bottom: 0px;
  display: flex;
  justify-content: space-between;
}
.box-bestworkers .swiper-button-next, .box-bestworkers .swiper-button-prev {
  color: black;
}
.box-bestworkers .swiper-button-next::after, .box-bestworkers .swiper-button-prev::after {
  font-size: 16px;
}
.box-bestworkers .swiper-button-next, .box-bestworkers .swiper-button-prev {
  position: relative;
  height: 30px;
}
.box-bestworkers .swiper-button-next::before, .box-bestworkers .swiper-button-prev::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 1;
}
.box-bestworkers .swiper-button-next:hover::before, .box-bestworkers .swiper-button-prev:hover::before {
  background: rgba(27, 27, 29, 0.1);
}
@media (hover: none) and (pointer: coarse) {
  .swiper-button-next:hover::before, .swiper-button-prev:hover::before {
    background: none !important;
  }
}
@media (max-width: 1024px) {
  /*     .swiper-button-next:hover::before,
      .swiper-button-prev:hover::before {
    background: none !important;
      } */
  .bestworkers-title {
    font-size: 28px;
  }
  .box-bestworkers__container {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  .box-bestworkers__slider .swiper-slide .name {
    font-size: 22px;
  }
  .box-bestworkers__slider .swiper-slide .role {
    font-size: 16px;
  }
  .box-bestworkers__slider-box {
    height: 600px;
  }
  .box-bestworkers__slider {
    width: 50%;
    margin: 0 auto;
  }
  .swiper-button-box {
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
  }
  .swiper-button-next::after, .swiper-button-prev::after {
    font-size: 14px;
  }
  .box-bestworkers__general-info {
    width: 100%;
  }
  .box-bestworkers__slider-box {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .box-bestworkers__slider {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .box-bestworkers__slider {
    width: 100%;
    margin: 0 auto;
  }
}
.swiper-slide-item {
  background: rgba(27, 27, 29, 0.1);
  padding: 15px;
  border-radius: 15px;
}

@media (max-width: 500px){
.box-bestworkers__container {
  padding: 0 15px;
}

}
/* end pmg_bestworkers */
/* init pmg_blogsinglenews */
.news-single-page {
  max-width: 1140px;
  margin: 0 auto;
  background-color: white;
  min-height: 70vh;
}
.site-main {
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 950px;
  margin: 0 auto;
}
.paragraph-block p {
  word-wrap: break-word;
}
.paragraph-block h1 {
  font-size: 28px;
  margin: 15px 0px 15px 0px;
}
.paragraph-block h2 {
  font-size: 21px;
  margin: 15px 0px 15px 0px;
}
.paragraph-block h3 {
  font-size: 19px;
  font-weight: bolder;
  font-family: 'source-sans-pro-bold';
  margin: 15px 0px 15px 0px;
}
.paragraph-block hr {
  opacity: 0.5;
  margin: 20px 0px 20px 0px;
}
.paragraph-block p {
  margin: 15px 0px 15px 0px;
  font-size: 18px;
}
.paragraph-block ul {
  padding: 0px 10px 0px 30px;
}
.paragraph-block img {
  border-radius: 10px;
  margin: 25px 0px 25px 0px;
  width: 450px;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.paragraph-block video {
  border-radius: 10px;
  margin: 25px 0px 25px 0px;
  height: auto;
  width: 450px;
}
@media (max-width: 1024px) {
  .paragraph-block img {
    width: 50vw;
  }
  .paragraph-block video {
    width: 50vw;
  }
}
@media (max-width: 576px) {
  .paragraph-block img {
    width: 80vw;
  }
  .paragraph-block video {
    width: 80vw;
  }
  .paragraph-block p {
    display: flex;
    justify-content: center;
  }
  .paragraph-block .wp-video {
    margin: 0 auto;
    width: 80vw !important;
  }
}

/* end pmg_blogsinglenews */
/* init pmg_blogslider */
.box-blogslider .box-blogslider__swiper-container {
  overflow: hidden;
  position: relative;
  height: 517px;
  background-color: var(--main-color);
}
.box-blogslider .box-blogslider__swiper-container .swiper-slide {
  height: 480px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  border-radius: 5px;
}
.box-blogslider .box-blogslider__swiper-container .swiper-slide img {
  width: 60%;
  transition: 0.3s;
  height: 100%;
  margin: 0;
  transform: scale(1.01);
  object-fit: cover;
  object-position: center;
}
.box-blogslider .box-blogslider__swiper-container .swiper-slide__overlay-info-box {
  width: 699px;
  height: 100%;
  width: 40%;
  z-index: 2;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: rgba(27, 27, 29, 0.5);
  background: var(--main-color3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.box-blogslider .box-blogslider__swiper-container .swiper-slide__inner-info {
  width: 80%;
  /* button::after{content: "READ MORE"} */
}
.box-blogslider .box-blogslider__swiper-container .swiper-slide__inner-info h3 {
  color: var(--main-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  word-wrap: break-word;
  margin-bottom: 33px;
}
.box-blogslider .box-blogslider__swiper-container .swiper-slide__inner-info h2 {
  color: var(--main-color);
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
  word-wrap: break-word;
  margin-bottom: 23px;
}
.box-blogslider .box-blogslider__swiper-container .swiper-slide__inner-info p {
  color: var(--main-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
  margin-bottom: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.box-blogslider .box-blogslider__swiper-container .swiper-slide:hover img {
  transition: 0.4s all;
  z-index: 1;
  transform: scale(1.1);
}
.box-blogslider .box-blogslider__swiper-container .swiper-slide:hover .swiper-slide__inner-info h2 {
  text-decoration: underline;
}
.box-blogslider .box-blogslider__swiper-container .swiper-pagination {
  bottom: 0px;
  z-index: 1;
}
.box-blogslider .box-blogslider__swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 70px;
  height: 7px;
  border-radius: 2px;
  opacity: 1;
  background: rgba(40, 52, 68, 0.3);
}
.box-blogslider .box-blogslider__swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: #283444;
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .box-blogslider__swiper-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
  .box-blogslider .box-blogslider__swiper-container .swiper-slide:hover img {
    transform: scale(1.01);
    z-index: 0;
  }
  .box-blogslider .box-blogslider__swiper-container .swiper-slide:hover .swiper-slide__inner-info h2 {
    text-decoration: none;
  }
}
@media (max-width: 786px) {
  .box-blogslider .box-blogslider__swiper-container .swiper-slide {
    position: relative;
  }
  .box-blogslider .box-blogslider__swiper-container .swiper-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .box-blogslider .box-blogslider__swiper-container .swiper-slide__overlay-info-box {
    width: 50%;
    height: 100%;
    border-top-right-radius: 0;
  }
  .box-blogslider .box-blogslider__swiper-container .swiper-slide__inner-info p {
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    max-height: 240px;
    overflow: hidden;
    margin-top: -45px;
  }
  .box-blogslider .box-blogslider__swiper-container .swiper-slide img {
    object-fit: cover;
    object-position: center;
    width: 50%;
    height: 100%;
  }
  .box-blogslider .box-blogslider__swiper-container .swiper-slide__inner-info h3 {
    position: absolute;
    top: 15px;
    width: 100%;
    left: 0;
    text-align: center;
    font-weight: 800;
  }
  .box-blogslider .box-blogslider__swiper-container .swiper-slide__inner-info h2 {
    position: absolute;
    top: 40px;
    width: 100%;
    left: 0;
    text-align: center;
  }
  .phone-version {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    margin-top: 10px;
    bottom: 20px;
  }
}
@media (max-width: 500px) {
  .box-blogslider .box-blogslider__swiper-container .swiper-slide {
    flex-flow: column;
  }
  .box-blogslider .box-blogslider__swiper-container .swiper-slide__overlay-info-box {
    width: 100%;
    height: 50%;
    border-top-right-radius: 0;
  }
  .box-blogslider .box-blogslider__swiper-container .swiper-slide img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 50%;
  }
}

@media (max-width: 500px){
.box-blogslider .box-blogslider__swiper-container {
  padding: 0 15px;
}

}
/* end pmg_blogslider */
/* init pmg_calculator */

/* end pmg_calculator */
/* init pmg_contact */
.box-contact .bg-color {
  background-color: var(--main-color);
}
.box-contact__container {
  width: 100%;
  max-height: 700px;
  padding-bottom: 40px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.box-contact__user-input {
  width: 40%;
  background: var(--main-color);
  height: 100%;
  height: 510px;
  order: 2;
}
.box-contact .btitle {
  color: var(--main-color3);
  font-size: 19px;
  font-weight: 700;
}
.box-contact .map__title {
  display: flex;
  align-items: baseline;
}
.box-contact__inputs-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  margin-top: 25px;
}
.box-contact__inputs-box input {
  height: 30px;
  padding: 9px 9px 9px 10px;
  font-size: 16px;
  font-family: "source-sans-pro";
  font-weight: 200;
  line-height: 28px;
  letter-spacing: 1px;
  word-wrap: break-word;
  outline: none;
  border-radius: 5px;
  transition: 0.3s;
  border: none;
  /* color: var(--main-color3); */
  color: rgba(40, 52, 68, 0.4);
  width: 49%;
  background-color: rgba(178, 178, 178, 0.25);
}
.box-contact__inputs-box input::placeholder {
  color: rgba(40, 52, 68, 0.4);
}
.box-contact__inputs-box input:focus {
  background-color: whitesmoke;
}
.box-contact textarea {
  width: 100%;
  /* color: var(--main-color3); */
  color: rgba(40, 52, 68, 0.4);
  outline: none;
  border: none;
  font-weight: 200;
  line-height: 28px;
  letter-spacing: 1px;
  font-size: 16px;
  font-family: "source-sans-pro";
  word-wrap: break-word;
  resize: none;
  resize: vertical;
  height: 247px;
  max-height: 287px;
  min-height: 30px;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.3s;
  background-color: rgba(178, 178, 178, 0.25);
  padding: 15px 15px 0px 15px;
}
.box-contact textarea::placeholder {
  color: rgba(40, 52, 68, 0.4);
}
.box-contact textarea:focus {
  background-color: whitesmoke;
}
.box-contact__button-box {
  display: flex;
  margin-top: 40px;
  justify-content: end;
}
.box-contact__button-box button {
  background-color: var(--main-color);
  color: var(--main-color2);
}
.box-contact__button-box button:hover {
  background-color: var(--main-color2);
  color: var(--main-color);
}
.box-contact__image-container {
  order: 1;
  width: 55%;
  border-radius: 5px;
  height: 510px;
}
.box-contact__image-container iframe {
  width: 100%;
  height: 470px;
  margin-top: 15px;
}
.box-contact__adress {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8799999952px;
  color: var(--main-color3);
  /* padding-left: 20px; */
  margin-top: 0;
}
/* box contact mobile */
@media (max-width: 1024px) {
  .box-contact__container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    flex-direction: column;
    max-height: 350vh;
    /* max-height: auto !important; */
  }
  .box-contact__image-container iframe {
    height: 40vh;
  }
  .box-contact__image-container {
    width: 100%;
    height: auto;
    order: 2;
    margin-bottom: 20px;
  }
  .box-contact__user-input {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 45px;
    height: auto;
    order: 1;
  }
  .box-contact .btitle {
    text-align: center;
  }
  .box-contact__adress {
    width: 100%;
    text-align: center;
  }
  .box-contact__inputs-box {
    flex-direction: column;
    margin-bottom: 0;
  }
  .box-contact__inputs-box input {
    margin-bottom: 5px;
    box-sizing: border-box;
    height: 50px;
    width: 100%;
  }
  .box-contact__button-box {
    justify-content: center;
  }
  .box-contact__button-box button:hover {
    background-color: var(--main-color);
    color: var(--main-color2);
  }
  .box-contact__button-box button .btn__text:hover {
    background-color: var(--main-color);
    color: var(--main-color2);
  }
  .box-contact textarea {
    height: 40vh;
    box-sizing: border-box;
    width: 100%;
  }
}

@media (max-width: 500px){
.box-contact__container {
  padding: 0 15px;
}

}
/* end pmg_contact */
/* init pmg_faqs */
.faq-container .badge {
  padding-right: 15px;
}
.page-bottom .container .row {
  justify-content: center;
}
.search-bar {
  margin-bottom: 30px;
  margin-left: 30px;
  margin-right: 30px;
  display: flex;
  gap: 10px;
}
.search-bar .faq-search-input {
  padding-left: 20px;
  width: 80%;
  border-color: #1d1d1b;
  color: #1d1d1b;
  background: #e7f1ff;
}
.search-bar .faq-search-input:focus {
  background: #FFF;
  outline: none;
  border-radius: 0%;
  border-color: #1d1d1b;
}
.search-bar .faq-search-button {
  color: #FFF;
  border: none;
  background: #dab451;
  width: 20%;
  min-width: 60px;
}
.faq-not-found {
  padding-left: 30px;
  display: none;
}
.faq-not-found-visible {
  display: block;
}
.accordion {
  margin: 0 auto;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  margin-bottom: 30px;
}
.accordion .accordion-item {
  border: none;
  background: none;
  border-bottom: 1px solid #dab451;
}
.accordion .accordion-item .accordion-header {
  padding: 0px;
  border: none;
  background: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.accordion .accordion-item .accordion-header:hover {
  background: #dab451;
  padding-left: 10px;
}
.accordion .accordion-item .accordion-header .accordion-button {
  width: 100%;
  text-align: left;
  padding: 0px;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  color: #1d1d1b;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: none !important;
}
.accordion .accordion-item .accordion-header .accordion-button .badge {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 14px;
  float: left;
  border-radius: 100px;
  border-top-right-radius: 0;
  text-align: center;
  background: #1d1d1b;
  color: #fff;
  font-size: 12px;
  margin-right: 20px;
}
.accordion .accordion-item .accordion-body {
  padding: 30px;
  padding-left: 35px;
  padding-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  color: #32343a;
  line-height: 28px;
  letter-spacing: 1px;
  border-top: 1px solid #f3f8ff;
}
.accordion .accordion-item .accordion-body p {
  margin-bottom: 14px;
}
.accordion .accordion-item-hidden {
  display: none;
}
@media (max-width: 991px) {
  .accordion {
    margin-bottom: 30px;
  }
  .accordion .accordion-item .accordion-header .accordion-button {
    line-height: 26px;
    margin-top: 10px;
  }
}

/* end pmg_faqs */
/* init pmg_feedback */
@charset "UTF-8";
/* file sender */
.file-sender .feedback-title {
  margin-top: 50px;
  margin-bottom: 10px;
}
.file-sender__form-box {
  /* margin: 0 auto; */
  margin-left: auto;
  height: 100vh;
  width: 700px;
}
.file-sender form p {
  position: relative;
}
.file-sender form p .file-sender__inputs-block {
  padding: 0px;
  margin-bottom: 35px;
  margin-right: 5px;
  height: 30px;
  padding: 9px 0px 9px 10px;
  font-size: 16px;
  font-family: "source-sans-pro";
  font-weight: 200;
  line-height: 28px;
  letter-spacing: 1px;
  word-wrap: break-word;
  outline: none;
  border-radius: 5px;
  transition: 0.3s;
  border: none;
  color: var(--main-color3);
  content: "";
  width: 400px;
  background-color: rgba(178, 178, 178, 0.25);
}
.file-sender form p .file-sender__inputs-block::placeholder {
  color: rgba(40, 52, 68, 0.4);
}
.file-sender form p .file-sender__inputs-block:focus {
  background-color: whitesmoke;
}
.file-sender .error-message {
  color: red;
}
.file-sender .display-none {
  display: none;
}
.file-sender .input-error {
  position: absolute;
  left: 1%;
  top: 60%;
  font-family: 'source-sans-pro-italic';
  font-size: 14px;
}
.file-sender .file-upload-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.file-sender .file-upload-box input {
  display: none;
}
.file-sender .file-upload-box label:first-child {
  width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  padding: 5px 5px 5px 0px;
  border-radius: 5px;
  background-color: var(--main-color);
  color: var(--main-color2);
  transition: all 0.5s;
  cursor: pointer;
  box-shadow: 1px 1px 15px 3px gray;
}
.file-sender .file-upload-box label:first-child:hover {
  background-color: var(--main-color2);
  color: var(--main-color);
}
.file-sender .file-upload-box label:last-child {
  max-width: 150px;
  height: auto;
  word-wrap: break-word;
}
.file-sender .file-upload-box #file-upload-button {
  background-color: #4CAF50;
}
.file-sender #dropArea {
  border: 2px dotted #ccc;
  padding: 14px 14px 14px 14px;
  text-align: center;
  width: 380px;
  /* width: 560px; */
  border-radius: 6px;
  height: auto;
}
.file-sender #dropArea.drag-over {
  border-color: #4CAF50;
}
.file-sender textarea {
  /* width: 560px; */
  width: 380px;
  color: var(--main-color3);
  outline: none;
  border: none;
  font-weight: 200;
  line-height: 28px;
  letter-spacing: 1px;
  font-size: 16px;
  font-family: "source-sans-pro";
  word-wrap: break-word;
  resize: none;
  resize: vertical;
  max-height: 297px;
  max-height: 227px;
  height: 137px;
  min-height: 30px;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.3s;
  background-color: rgba(178, 178, 178, 0.25);
  padding: 15px 15px 0px 15px;
  margin-bottom: 25px;
}
.file-sender textarea::placeholder {
  color: rgba(40, 52, 68, 0.4);
}
.file-sender textarea:focus {
  background-color: whitesmoke;
}
.file-sender .button-forma {
  background-color: var(--main-color);
  color: var(--main-color2);
  transition: 0.5s;
}
.file-sender .button-forma:hover {
  background-color: var(--main-color2);
  color: var(--main-color);
}
.file-sender .button-forma:first-child {
  border: 1px dotted #ccc;
  box-shadow: 0px 4px 5px rgba(51, 61, 73, 0.34);
  margin-right: 5px;
}
.file-sender form p:last-child {
  width: 625px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .file-sender__form-box {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    min-height: 100vh;
    height: auto;
  }
  .file-sender form p .file-sender__inputs-block {
    box-sizing: border-box;
    height: 50px;
    width: 100%;
  }
  .file-sender #dropArea {
    width: 100%;
    box-sizing: border-box;
  }
  .file-sender textarea {
    width: 100%;
    box-sizing: border-box;
  }
  .file-sender .button-forma:first-child {
    margin: 0 auto;
    order: 2;
  }
  .file-sender .file-upload-box label:first-child:hover {
    background-color: var(--main-color);
    color: var(--main-color2);
  }
  .file-sender #anulare {
    margin: 0 auto;
    order: 1;
    margin-bottom: 20px;
  }
  .file-sender .button-forma:hover {
    background-color: var(--main-color);
    color: var(--main-color2);
  }
  .file-sender form p:last-child {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 500px){
.file-sender__form-box {
  padding: 0 15px;
}

}
/* end pmg_feedback */
/* init pmg_hero */
.box-hero {
  height: 516px;
  color: var(--main-color);
}
.box-hero .img-box {
  position: relative;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  /* transition: background-image 0.34s ease-in-out;  */
}
.box-hero__content {
  display: flex;
  justify-content: space-between;
  /* align-items: start; */
  height: 516px;
  width: 100%;
}
.box-hero__date-title-box {
  flex-shrink: 0;
  z-index: 1;
  /* width: 100%; */
  width: 450px;
}
.box-hero__date {
  display: inline-block;
  text-decoration: none;
  position: relative;
  color: white;
  font-size: 15px;
  font-weight: 700;
  word-wrap: break-word;
  padding: 120px 0px 0px 0px;
}
.box-hero__date::before {
  content: '';
  position: absolute;
  bottom: 25px;
  width: 64%;
  height: 3px;
  border-radius: 2px;
  background-color: var(--main-color);
}
.box-hero__title h2 {
  color: white;
  font-size: 48px;
  font-weight: 700;
  word-wrap: break-word;
  white-space: nowrap;
  overflow: hidden;
}
.box-hero__title h3 {
  color: white;
  font-size: 14px;
  font-weight: 400;
  word-wrap: break-word;
  width: 434px;
  max-height: 70px;
  overflow: hidden;
}
.box-hero__button {
  margin-top: 26px;
}
.box-hero__swiper {
  align-self: end;
  width: 600px;
  z-index: 1;
  height: 270px;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
}
.box-hero__swiper .swiper-wrapper {
  height: 200px;
}
.box-hero__swiper .swiper-wrapper .swiper-slide {
  width: 202px;
  height: 187px;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}
.box-hero__swiper .swiper-wrapper .swiper-slide .swiper-border-radius {
  border-radius: 8px;
  background: rgba(27, 27, 29, 0.8);
  height: 100%;
  width: 100%;
}
.box-hero__swiper .swiper-wrapper .swiper-slide img {
  object-fit: cover;
  object-position: center;
}
.box-hero__swiper .swiper-wrapper .swiper-slide figure {
  width: 100%;
  height: 100%;
}
.box-hero__swiper .swiper-wrapper .swiper-slide .swiper-date {
  padding: 95px 0px 0px 0px;
  margin-left: 15px;
  color: white;
  font-size: 10px;
}
.box-hero__swiper .swiper-wrapper .swiper-slide .swiper-title {
  color: white;
  font-size: 15px;
  font-weight: 700;
  width: 105px;
  margin: 9px 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.box-hero__swiper .swiper-wrapper .swiper-slide .swiper-block-text {
  z-index: 2;
}
.box-hero__swiper .swiper-pagination {
  display: flex;
  justify-content: space-between;
  min-width: 70px;
  width: auto;
}
.box-hero__swiper .swiper-pagination .swiper-pagination-bullet {
  min-width: 50px;
  height: 4px;
  border-radius: 2px;
  background: var(--main-color);
  opacity: 1;
}
.box-hero__swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--main-color3);
}
.box-hero .title-description {
  color: white;
  font-size: 20px;
  font-weight: 700;
}
.box-hero .overlay-img {
  background: rgba(27, 27, 29, 0.6);
  z-index: 1;
}
/* box hero mobile */
@media (max-width: 1024px) {
  .box-hero {
    height: 100vh;
  }
  .box-hero .img-box {
    background-size: cover !important;
    transition: none;
    background-repeat: no-repeat !important;
    background-position: center !important;
    height: 100vh;
  }
  .box-hero__content {
    flex-direction: column;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
  .box-hero__date {
    display: inline-block;
    padding: 0px 0px 0px 0px;
  }
  .box-hero__date-title-box {
    width: 100%;
    margin-top: 15vh;
  }
  .box-hero__date {
    font-size: 11px;
  }
  .box-hero__title h2 {
    font-size: 40px;
    max-height: 30vh;
    white-space: normal;
  }
  .box-hero__title h3 {
    width: auto;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .box-hero__swiper {
    width: 100%;
    margin: 0 auto;
    height: 40%;
  }
  .box-hero__swiper .swiper-wrapper {
    margin-top: 0%;
  }
  .box-hero__swiper .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    height: 30px;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%);
  }
  .box-hero__swiper .swiper-pagination .swiper-pagination-bullet {
    width: 50px;
    height: 4px;
    border-radius: 2px;
    background: var(--main-color);
    opacity: 1;
  }
  .box-hero__swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--main-color3);
  }
  .box-hero__swiper .swiper-wrapper .swiper-slide .swiper-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .box-hero__swiper.swiper-pagination {
    bottom: 20px;
  }
  .box-hero__date-title-box {
    width: 100%;
  }
  .box-hero__swiper {
    width: 100%;
    height: 40%;
  }
  .box-hero__swiper .swiper-wrapper {
    margin-top: 0%;
  }
}
@media screen and (max-height: 450px) and (orientation: landscape) {
  .box-hero__date-title-box {
    width: 40%;
  }
  .box-hero__content {
    flex-direction: row;
  }
  .box-hero__date {
    padding: 26px 0px 0px 0px;
  }
  .box-hero__swiper {
    width: 60%;
    height: 69%;
  }
  .box-hero__swiper .swiper-wrapper {
    height: 100%;
  }
  .swiper-slide {
    height: 20vh;
  }
  .box-hero__swiper .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
  }
}

@media (max-width: 500px){
.box-hero__content {
  padding: 0 15px;
}

}
/* end pmg_hero */
/* init pmg_news */
.box-news__content {
  background-color: var(--main-color);
}
.box-news__down-box {
  margin-top: 24px;
  border: solid var(--main-color);
  position: relative;
}
.box-news__swiper-container {
  /* height: 425px; */
  overflow: hidden;
}
.box-news__swiper-container .swiper-button-next {
  color: var(--main-color2);
  width: 14.6px;
  height: 26px;
  /* margin-top: 6%; */
  display: block;
  margin-right: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -50px;
}
.box-news__swiper-container .swiper-button-prev {
  color: var(--main-color2);
  width: 14.6px;
  height: 26px;
  /* margin-top: 6%; */
  margin-left: 10px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -50px;
}
.box-news__swiper-container .swiper-button-next::after, .box-news__swiper-container .swiper-button-prev::after {
  font-size: 31px;
}
.box-news__swiper-container .swiper-slide__wrapper {
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
  margin: 0 auto;
  max-width: 250px;
}
.box-news__swiper-container .swiper-slide a {
  text-decoration: none;
  color: var(--main-color2);
}
.box-news__swiper-container .swiper-slide .swiper-slide-up {
  margin-bottom: 10px;
}
.box-news__swiper-container .swiper-slide .swiper-slide-up .resize {
  overflow: hidden;
  height: 177px;
}
.box-news__swiper-container .swiper-slide .swiper-slide-up img {
  width: 100%;
  transition: 0.3s;
  transform: scale(1.01);
  height: 100%;
  /* object-fit: cover; */
  object-position: center;
}
.box-news__swiper-container .swiper-slide .swiper-slide-up p {
  color: var(--main-color2);
  font-size: 12px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.88px;
  margin-bottom: 10px;
}
.box-news__swiper-container .swiper-slide .swiper-slide-up h3 {
  font-size: 16px;
  font-size: 21px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 1px;
}
.box-news__swiper-container .swiper-slide .swiper-slide-bottom {
  color: var(--main-color2);
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.88px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.box-news__swiper-container .swiper-slide:hover .swiper-slide-up h3 {
  text-decoration: underline;
}
.box-news__swiper-container .swiper-slide:hover .swiper-slide-up img {
  transform: scale(1.12);
  transition: 0.3s;
}
.box-news .swiper-pagination {
  display: flex;
  justify-content: center;
  min-width: 70px;
  max-width: 200px;
  left: 50% !important;
  transform: translateX(-50%);
  bottom: -20px !important;
}
.box-news .swiper-pagination .swiper-pagination-bullet {
  min-width: 50px;
  height: 4px;
  border-radius: 2px;
  background: #c3c3c3;
  opacity: 1;
}
.box-news .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--main-color3);
}
@media (max-width: 1024px) {
  .box-news__swiper-container .swiper-button-next {
    display: block;
    margin-right: 0px;
  }
  .box-news__swiper-container .swiper-button-prev {
    display: block;
    margin-left: 0px;
  }
  .box-news__content {
    width: 100%;
    margin: 0 auto;
  }
  .box-news__swiper-container .swiper-slide .swiper-slide-up h3 {
    font-size: 18px;
    line-height: 23px;
  }
  .box-news__swiper-container .swiper-slide:hover .swiper-slide-up h3 {
    text-decoration: none;
  }
  .swiper-slide .swiper-slide-up img {
    border-radius: 12px;
  }
  .box-news__swiper-container .swiper-slide:hover .swiper-slide-up img {
    transform: scale(1.01);
    transition: none;
  }
  .box-news__swiper-container .swiper-slide .swiper-slide-bottom {
    line-height: 23px;
  }
  .swiper-button-next::after, .swiper-button-prev::after {
    font-size: 25px !important;
  }
}

@media (max-width: 500px){
.box-news__content {
  padding: 0 15px;
}

}
@media (max-width: 800px){
.box-news .swiper-button-next {
  margin-right: 0px;
}
.box-news .swiper-button-prev {
  margin-left: 0px;
}

}
@media (max-width: 1200px){
.box-news__swiper-container .swiper-slide__wrapper {
  max-width: 100%;
}
.box-news__swiper-container .swiper-button-next {
  margin-right: 10px;
}
.box-news__swiper-container .swiper-button-prev {
  margin-left: 10px;
}
.box-news__swiper-container {
  height: auto;
}
.box-news .swiper-button-prev {
  left: -31px;
}
.box-news .swiper-button-next {
  right: -31px;
}
/* .container{
  padding: 0 20px;
} */
.box-news__content {
  padding: 0 20px;
}

}
/* end pmg_news */
/* init pmg_ordinarnews */

/* end pmg_ordinarnews */
/* init pmg_ourpeople */
.box-ourpeople .ourpeople-title {
  margin-bottom: 50px;
  margin-top: 50px;
}
.box-ourpeople__images {
  /* width: 800px; */
  width: 100%;
  height: 450px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
  grid-template-columns: 12% 26% 14% 10% 10% 23%;
  grid-template-rows: 20% 20% 20% 20% 10%;
}
.box-ourpeople__images figure {
  width: 100%;
}
.box-ourpeople__images figure img {
  width: 100%;
  border-radius: 3px;
}
.box-ourpeople img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.box-ourpeople__image1 {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 4;
  height: 100%;
}
.box-ourpeople__image1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.box-ourpeople__image2 {
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 3;
}
.box-ourpeople__image3 {
  grid-column-start: 5;
  grid-column-end: 7;
  grid-row-start: 1;
  grid-row-end: 3;
}
.box-ourpeople__image4 {
  grid-column-start: 1;
  grid-column-end: 1;
  grid-row-start: 4;
  grid-row-end: 6;
}
.box-ourpeople__image5 {
  grid-column-start: 2;
  grid-column-end: 2;
  grid-row-start: 4;
  grid-row-end: 6;
}
.box-ourpeople__image6 {
  grid-column-start: 3;
  grid-column-end: 6;
  grid-row-start: 3;
  grid-row-end: 6;
}
.box-ourpeople__image7 {
  grid-column-start: 6;
  grid-column-end: 6;
  grid-row-start: 3;
  grid-row-end: 6;
}
@media (max-width: 1024px) {
  .box-ourpeople__container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  .box-ourpeople__images {
    width: 100%;
    margin: 0 auto;
    grid-template-columns: none;
    /* grid-template-rows: none; */
    /* grid-template-columns: 10% 20% 15% 15% 15% 20%;
        grid-template-rows: 10% 20% 15% 15% 15% 20%; */
  }
}
@media (max-width: 776px) {
  /*     .box-ourpeople__images{
        display: flex;
        justify-content: center;
    } */
  /*      .box-ourpeople__image1{display: none;}
     .box-ourpeople__image2{display: none;}
     .box-ourpeople__image3{display: none;}
     .box-ourpeople__image4{display: none;}
     .box-ourpeople__image5{display: none;}
     .box-ourpeople__image6 img{}
     .box-ourpeople__image7{display: none;} */
}

@media (max-width: 500px){
.box-ourpeople__container {
  padding: 0 15px;
}
.box-ourpeople__images {
  gap: 5px;
}
.box-ourpeople__image3 {
  display: none;
}
.box-ourpeople__image2 {
  display: none;
}
.box-ourpeople__image7 {
  display: none;
}
.box-ourpeople__image6 {
  grid-column-start: 4;
  grid-column-end: 6;
  grid-row-start: 1;
  grid-row-end: 6;
}
.box-ourpeople__image5 {
  display: none;
}
.box-ourpeople__image4 {
  grid-column-start: 3;
}

}
/* end pmg_ourpeople */
/* init pmg_parteneri */
/*  ! marquee logic  */
:root {
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 40s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}
.box-parteneri .wrapper {
  padding-top: 40px;
  background: var(--main-color);
}
.box-parteneri .wrapper .swiper-slide {
  height: 480px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  border-radius: 5px;
}
.box-parteneri .marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(var(--mask-direction, to right), rgba(0, 0, 0, 0), black 5%, black 80%, rgba(0, 0, 0, 0));
}
.box-parteneri .marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .box-parteneri .marquee__group {
    animation-play-state: paused;
  }
}
.box-parteneri .marquee--reverse .marquee__group {
  animation-direction: reverse;
}
@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}
.box-parteneri .marquee__box-image {
  border-left: solid 0.1px rgba(40, 52, 68, 0.5);
  height: 100px;
  width: 300px;
  padding: 0px 0px 0px 80px;
}
.box-parteneri .marquee__box-image img {
  height: 100%;
  /* height: 100px; */
  width: 63%;
}
.box-parteneri .marquee__box-image div {
  width: 100%;
}
.box-parteneri .wrapper {
  display: flex;
  flex-direction: column;
  margin: auto;
  max-width: 100vw;
}

/* end pmg_parteneri */
/* init pmg_partteneri */
/*  ! marquee logic  */
:root {
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 40s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}
.box-parteneri .wrapper {
  padding-top: 40px;
  background: var(--main-color);
}
.box-parteneri .wrapper .swiper-slide {
  height: 480px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  border-radius: 5px;
}
.box-parteneri .marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(var(--mask-direction, to right), rgba(0, 0, 0, 0), black 5%, black 80%, rgba(0, 0, 0, 0));
}
.box-parteneri .marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .box-parteneri .marquee__group {
    animation-play-state: paused;
  }
}
.box-parteneri .marquee--reverse .marquee__group {
  animation-direction: reverse;
}
@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}
.box-parteneri .marquee__box-image {
  border-left: solid 0.1px rgba(40, 52, 68, 0.5);
  height: 100px;
  width: 300px;
  padding: 0px 0px 0px 80px;
}
.box-parteneri .marquee__box-image img {
  height: 100%;
  /* height: 100px; */
  width: 63%;
}
.box-parteneri .marquee__box-image div {
  width: 100%;
}
.box-parteneri .wrapper {
  display: flex;
  flex-direction: column;
  margin: auto;
  max-width: 100vw;
}
@media (max-width: 576px) {
  .box-parteneri .marquee__box-image {
    height: 50px;
    width: 128px;
    padding: 8px 0px 0px 50px;
  }
}

/* end pmg_partteneri */
/* init pmg_price */
.box-price .price__content {
  padding: 0 20px;
}
.box-price__swiper-slide-price code {
  font-family: "source-sans-pro", sans-serif;
}
.box-price__content {
  height: 100%;
  width: 100%;
}
.box-price__up-box {
  position: relative;
}
.box-price__up-box .box-price-center {
  height: 40px;
}
.box-price__up-box .box-price-center div {
  text-align: center;
}
.box-price__buttons {
  bottom: 0;
  display: flex;
  min-width: 195px;
}
.box-price__buttons button {
  margin-right: 20px;
  color: var(--main-color3);
  font-family: "source-sans-pro";
  position: relative;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.75px;
  height: 28px;
  background-color: rgba(27, 27, 29, 0);
  opacity: 0.7;
  border: none;
  cursor: pointer;
  transition: 0.1s;
  overflow: hidden;
  z-index: 3;
}
.box-price__buttons button:hover {
  opacity: 1;
}
.box-price__buttons .button-border {
  border-bottom: 1px solid #283444;
  opacity: 1;
  transition: 0.4s ease-in;
}
.box-price__bottom-box {
  padding-top: 47px;
  position: relative;
}
.box-price__swiper-container {
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  padding: 20px 1px;
  opacity: 0;
}
.box-price__swiper-container .swiper-button-next {
  color: var(--main-color2);
  width: 14.6px;
  height: 26px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
}
.box-price__swiper-container .swiper-button-next::after, .box-price__swiper-container .swiper-button-prev::after {
  font-size: 31px;
}
.box-price__swiper-container .swiper-button-prev {
  color: var(--main-color2);
  width: 14.6px;
  height: 26px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -10px;
  /* margin-top: 3%;
            margin-left: 10px; */
}
.box-price__swiper-container .swiper-slide {
  height: 485px;
}
.box-price__swiper-container .swiper-slide__wrapper {
  height: 485px;
  width: 100%;
  max-width: 237px;
  transition: 0.4s;
  background-color: var(--main-color);
  /* border-radius: 5px;
        box-shadow: 6px 6px 7px rgba(0, 0, 0, 0.45); */
  border-radius: 20px;
  box-shadow: 3px 3px 15px 0px rgba(0, 0, 0, 0.4);
}
.box-price__swiper-container .swiper-slide__wrapper:hover {
  /* box-shadow: 13px 22px 48px rgba(0, 0, 0, 0.23); */
  box-shadow: 10px 0px 10px 5px rgba(0, 0, 0, 0.23);
}
.box-price__swiper-container .swiper-slide .swiper-slide-title-box {
  padding: 46px 0px 0px 0px;
  display: flex;
}
.box-price__swiper-container .swiper-slide .swiper-slide-title-box h2 {
  color: var(--main-color3);
  font-size: 22px;
  margin: 0 auto;
  line-height: 19.2px;
  letter-spacing: 1px;
  font-weight: 900;
  border-bottom: solid 2px;
  padding: 0px 0px 12px 0px;
}
.box-price__swiper-container .swiper-slide .box-price__swiper-slide-price {
  color: --main-color2;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  line-height: 10px;
  padding: 14px 2px 18px 20px;
  word-wrap: break-word;
  /* height: 70px; */
}
.box-price__swiper-container .swiper-slide .box-price__swiper-slide-price span {
  font-size: 29px;
  font-weight: 400;
  line-height: 51px;
  letter-spacing: 2.12px;
  padding: 0px 8px 0px 8px;
}
.box-price__swiper-container .swiper-slide .box-price__swiper-slide-price code {
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.88px;
  word-wrap: break-word;
}
.box-price__swiper-container .swiper-slide .box-price__details {
  list-style: none;
  height: 220px;
  padding: 0px 8px 12px 21px;
  overflow: hidden;
}
.box-price__swiper-container .swiper-slide .box-price__details ul li {
  padding: 0px 0px 6px 0;
  display: grid;
  grid-template-columns: 18px auto;
  color: var(--main-color5);
  font-size: 12px;
  font-weight: 500;
  font-weight: 100;
  letter-spacing: 0.88px;
  word-wrap: break-word;
  overflow: hidden;
}
.box-price__swiper-container .swiper-slide .box-price__details ul li .itemflag2 {
  height: 15px;
  width: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='10px' height='10px' viewBox='0 0 24 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12.6111L8.92308 17.5L20 6.5' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  display: block;
  background-repeat: no-repeat;
  /* margin-right: 8px; */
}
.box-price__swiper-container .swiper-slide .box-price__details ul li p {
  padding: 0px 0px 5px 0px;
  word-wrap: break-word;
}
.box-price__swiper-container .swiper-slide .box-price__confirm-block {
  color: var(--main-color2);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  display: flex;
  justify-content: center;
  height: 35px;
}
.box-price__swiper-container .swiper-slide .box-price__confirm-block .standart-button {
  background-color: var(--main-color);
  color: var(--main-color2);
}
.box-price__swiper-container .swiper-slide .box-price__confirm-block .standart-button:hover {
  background-color: var(--main-color2);
  color: var(--main-color);
}
.box-price__swiper-container.centered .swiper-wrapper {
  justify-content: center;
}
.swiper-pagination {
  display: flex;
  justify-content: center;
  min-width: 70px;
  max-width: 200px;
  left: 50% !important;
  transform: translateX(-50%);
  bottom: -20px !important;
}
.swiper-pagination .swiper-pagination-bullet {
  min-width: 50px;
  height: 4px;
  border-radius: 2px;
  background: #c3c3c3;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: var(--main-color3);
}
/* calculator */
.calculator_box {
  font-weight: 400;
  font-size: 16px;
  color: Black;
  letter-spacing: 1px;
}
.calculator_box form {
  display: flex;
  justify-content: space-between;
}
.calculator_box .poster {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 10px;
}
.calculator_box .form__radio-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.calculator_box .form__radio-box .form_radio_btn input[type="radio"] {
  display: none;
}
.calculator_box .form__radio-box .form_radio_btn label {
  margin-right: 5px;
  display: inline-block;
  cursor: pointer;
  line-height: 23px;
  border: 1px solid #999;
  border-radius: 12px;
  user-select: none;
  padding: 1px 30px;
  font-size: 20px;
}
.calculator_box .form__radio-box .form_radio_btn input[type="radio"]:checked + label {
  background: rgba(40, 52, 68, 0.9);
  color: var(--main-color);
}
.calculator_box .form__radio-box .form_radio_btn label:hover {
  color: #243644;
}
.calculator_box .form__radio-box .form_radio_btn input[type="radio"]:disabled + label {
  background: #243644;
  color: #666;
}
.calculator_box .form__select-data-box .form__select-data {
  margin-bottom: 20px;
  margin-top: 25px;
}
.calculator_box .form__select-data-box .form__select-data label {
  font-size: 19px;
}
.calculator_box .form__select-data-box .form__select-data .form__data {
  position: relative;
  max-width: 180px;
  width: 100%;
}
.calculator_box .form__select-data-box .form__select-data .form__data select {
  z-index: 1;
  cursor: pointer;
  font-weight: 500;
  margin-top: 10px;
  border: none;
  font-size: 17px;
  font-family: "source-sans-pro";
  border-bottom: solid 1px;
  width: 160px;
  background-color: var(--main-color);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #999;
  border-radius: 29px;
  padding-left: 15px;
  box-sizing: content-box;
  height: 27px;
}
.calculator_box .form__select-data-box .form__select-data .form__data select:focus {
  outline: none;
}
.calculator_box .form__select-data-box .form__select-data .form__data .select-arrow {
  position: absolute;
  padding: 3px;
}
.calculator_box .form__select-data-box .form__select-data .form__data .select-arrow figure {
  display: flex;
  align-items: center;
  transform: rotate(1deg);
  transition: 0.3s;
}
.calculator_box .form__select-data-box .form__select-data .form__data .select-arrow figure img {
  width: 10px;
  filter: brightness(0) invert(0);
}
.calculator_box .form__select-data-box .form__select-data .form__data .select-arrow .figure-selected {
  transform: rotate(-180deg);
}
.calculator_box .form__select-data-box .form-check {
  display: flex;
  align-items: center;
}
.calculator_box .form__select-data-box .form-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  border: none;
  cursor: pointer;
  outline: none;
}
.calculator_box .form__select-data-box .form-check input:checked[type="checkbox"] {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: #243644;
  border-color: #243644;
}
.calculator_box .form__select-data-box .form-check .form-check-label {
  line-height: 25px;
  margin-left: 15px !important;
  cursor: pointer;
}
.calculator_box .form_contact {
  padding: 40px 40px 40px 40px;
  width: 40%;
  position: relative;
  float: right;
  background-color: rgba(50, 52, 58, 0.09);
  border-radius: 20px;
}
.calculator_box .form_contact .form_name {
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
  color: var(--main-color3);
  display: block;
  text-align: center;
  margin-bottom: 40px;
}
.calculator_box .form_contact .form_prev {
  display: block;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  margin-bottom: 8px;
}
.calculator_box .form_contact .form_price {
  display: block;
  font-weight: 800;
  font-size: 35px;
  line-height: 41px;
  color: #243644;
  margin-bottom: 40px;
}
.calculator_box .form_contact p {
  font-family: "source-sans-pro-italic";
}
.calculator_box .form_contact input[type="text"] {
  height: 45px;
  padding: 9px 9px 9px 10px;
  font-size: 16px;
  font-family: "source-sans-pro";
  font-weight: 200;
  line-height: 28px;
  letter-spacing: 1px;
  word-wrap: break-word;
  outline: none;
  border-radius: 5px;
  transition: 0.3s;
  border: none;
  color: var(--main-color3);
  width: 90%;
  background-color: rgba(178, 178, 178, 0.25);
  margin-bottom: 10px;
}
.calculator_box .form_contact input[type="text"]:last-of-type {
  margin-bottom: 40px;
}
.calculator_box .form_contact input::placeholder {
  color: rgba(40, 52, 68, 0.4);
}
.calculator_box .form_contact input:focus {
  background-color: whitesmoke;
}
.calculator_box .form_contact .btn_form_contact {
  margin-top: 40px;
  background-color: var(--main-color);
  color: var(--main-color2);
  /* width: 100%; */
}
.calculator_box .form_contact .btn_form_contact:hover {
  background-color: var(--main-color2);
  color: var(--main-color);
}
.box-price .form__data:hover select {
  scale: 1.02 !important;
  transition: 0.3s all;
}
.box-price .form__data:hover .select-arrow figure img {
  scale: 1.4;
  transition: 0.3s all;
}
.box-price .form_radio_btn:hover {
  scale: 1.02 !important;
  transition: 0.3s all;
}
/* box-price mobile */
@media (max-width: 1024px) {
  /* .box-price__swiper-container .swiper-button-next {
    margin-right: 0px;
  }
  .box-price__swiper-container .swiper-button-prev {
    margin-left: 0px;
  } */
  /* .box-price__swiper-container .swiper-slide .swiper-slide__wrapper {
    max-width: 100%;
    width: 100%;
  } */
  /* calculator */
  .box-price__swiper-container .swiper-button-prev {
    left: -20px;
  }
  .box-price__swiper-container .swiper-button-next {
    right: -20px;
  }
  .box-price__content {
    width: 100%;
    margin: 0 auto;
  }
  .box-price__buttons {
    margin: 0 auto;
    /* width: 230px; */
    width: 100%;
    justify-content: center;
    /* max-width: 390px; */
  }
  .box-price__buttons button {
    font-size: 13px;
    height: auto;
    margin-right: 10px;
  }
  .box-price__bottom-box {
    padding-top: 20px;
  }
  .box-price__swiper-container {
    padding: 10px 20px;
  }
  .box-price__swiper-container .swiper-button-next::after, .box-price__swiper-container .swiper-button-prev::after {
    font-size: 25px;
  }
  .box-price__swiper-container .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .box-price__swiper-container .swiper-slide .swiper-slide__wrapper:hover {
    box-shadow: 6px 6px 7px rgba(0, 0, 0, 0.45);
  }
  .box-price__swiper-container .swiper-slide .box-price__confirm-block .standart-button:hover {
    background-color: var(--main-color);
    color: var(--main-color2);
  }
  .box-price__swiper-container .swiper-slide .box-price__confirm-block .standart-button .btn__text:hover {
    background-color: var(--main-color);
    color: var(--main-color2);
  }
  form {
    flex-direction: column;
    align-items: center;
  }
  .calculator_box .poster {
    text-align: center;
  }
  .calculator_box .form__radio-box {
    margin-bottom: 20px;
    width: 400px;
    margin: 0 auto;
  }
  .calculator_box .form__radio-box .form_radio_btn label {
    padding: 1px 10px;
    font-size: 16px;
  }
  .form_radio_btn label:hover {
    color: black;
  }
  .calculator_box .form_contact {
    margin-top: 10px;
    width: 90%;
    padding: 15px 15px 15px 15px;
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .btn_form_contact .btn__text:hover {
    background-color: var(--main-color);
    color: var(--main-color2);
  }
  .form_contact .btn_form_contact:hover {
    background-color: var(--main-color) !important;
    color: var(--main-color2) !important;
  }
}
@media (max-width: 576px) {
  .calculator_box .form__radio-box {
    margin-bottom: 20px;
    width: 100%;
  }
  .box-price__swiper-container .swiper-slide .swiper-slide__wrapper {
    max-width: 250px;
    width: 100%;
  }
  .calculator_box .form_contact {
    width: 100%;
  }
  .box-price__buttons {
    flex-flow: column;
  }
  .box-price__buttons button {
    margin-right: 0px;
    padding: 10px 0;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }
}
select.form-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("/template/assets/img/svg/arrow-down-Servicii.svg");
  background-position: calc(100% - 20px) calc(1em + 2px);
  background-repeat: no-repeat;
}
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.select-arrow {
  position: absolute;
  right: 10px;
  top: calc(50% + 5px);
  transform: translateY(-50%);
  cursor: pointer;
  pointer-events: none;
}

@media (max-width: 500px){
.box-price .price__content {
  padding: 0 15px;
}
.box-price__swiper-container .swiper-button-prev {
  left: -15px;
}
.box-price__swiper-container .swiper-button-next {
  right: -15px;
}

}
/* end pmg_price */
/* init pmg_questions(faq) */
.box-qiestions .questions-box {
  padding-bottom: 100px;
}
.box-qiestions__title {
  font-size: 70px;
  color: rgba(40, 52, 68, 0.2);
  font-family: "source-sans-pro-bold";
  font-weight: 900;
  padding-bottom: 50px;
}
.box-qiestions__questions {
  padding-bottom: 80px;
}
.box-qiestions__questions .details {
  font-weight: 400;
  font-size: 14px;
  text-wrap: pretty;
  line-height: 2;
  margin-block-end: 0.5rem;
  border: 1px solid transparent;
  border-radius: 5px;
  background-color: rgba(40, 52, 68, 0.05);
  max-height: 54px;
  overflow: hidden;
  transition: 0.2s;
  margin-bottom: 21px;
  position: relative;
}
.box-qiestions__questions .detailsActive {
  border: 1px solid #283444;
  max-height: 100%;
  transition: 0.25s all;
  position: relative;
  z-index: 10;
}
.box-qiestions__questions .detailsActive summary::before {
  transform: rotate(270deg);
}
.box-qiestions__questions summary {
  display: block;
  font-weight: bold;
  font-size: 18px;
  line-height: 2.73;
  color: #283444;
  padding: 3px 20px 19px 21px;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  transition: 0.45s margin ease-out, 0.25s border-bottom ease-out;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.box-qiestions__questions summary::before {
  content: "";
  border-width: 0.4rem;
  border-radius: 3.5px;
  border-style: solid;
  border-color: transparent transparent transparent #211f1f;
  position: absolute;
  top: 1.3rem;
  right: -10px;
  transform: rotate(90deg);
  transform-origin: 0.2rem 50%;
  transition: 0.45s transform ease;
  padding-right: 15px;
}
.box-qiestions__questions .details .qusetions-tab-text {
  padding: 1rem;
  color: rgba(40, 52, 68, 0.7);
  font-size: 16px;
  padding-top: 0;
  word-wrap: break-word;
}
.box-qiestions__questions .details .qusetions-tab-text h1 {
  font-size: 24px;
  margin: 0px 0px 15px 0px;
}
.box-qiestions__questions .details .qusetions-tab-text h2 {
  font-size: 16px;
  margin: 15px 0px 15px 0px;
}
.box-qiestions__questions .details .qusetions-tab-text h3 {
  font-size: 14px;
  font-weight: bolder;
  font-family: "source-sans-pro-bold";
  margin: 15px 0px 15px 0px;
}
.box-qiestions__questions .details .qusetions-tab-text hr {
  opacity: 0.5;
  margin: 20px 0px 20px 0px;
}
.box-qiestions__questions .details .qusetions-tab-text p {
  margin: 15px 0px 15px 0px;
  font-size: 14px;
}
.box-qiestions__questions .details .qusetions-tab-text ul {
  padding: 0px 10px 0px 30px;
}
.box-qiestions__image-box {
  transition: 0.5s;
}
.box-qiestions__image-box figure img {
  width: 100%;
  height: 48.2vh;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}
.box-qiestions .box-qiestions__questions2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.box-qiestions .box-qiestions__questions2 .details {
  max-width: 100%;
  width: 100%;
}
@media (max-width: 1024px) {
  .box-qiestions__questions-bottom-box {
    grid-template-columns: 100%;
  }
  .box-qiestions .questions-box {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  .box-qiestions__image-box {
    display: none;
  }
  .box-qiestions__title {
    font-size: 85px;
    grid-column-start: 1;
  }
  .box-qiestions__questions summary {
    font-size: 16px;
  }
  .box-qiestions__questions summary::after {
    right: 2px;
  }
  .box-qiestions .questions-box {
    padding-bottom: 0px;
  }
}
@media (max-width: 576px) {
  .box-qiestions__title {
    text-align: center;
    font-size: 50px;
  }
}

@media (max-width: 500px){
.box-qiestions .questions-box {
  padding: 0 15px;
}

}
/* end pmg_questions(faq) */
/* init pmg_recenzii */
.box-recenzii__content {
  background-color: var(--main-color);
}
.box-recenzii__up-box {
  padding-bottom: 20px;
}
.box-recenzii__swiper-container {
  position: relative;
  overflow: hidden;
  background-image: url("/template/assets/img/images/hero-background.jpg");
  border-radius: 10px;
  transition: 0.5s;
  transition: background-image 0.5s ease-in-out;
  padding-bottom: 40px;
}
.box-recenzii__swiper-container .swiper-wrapper {
  min-height: 100px;
}
.box-recenzii__swiper-container .swiper-wrapper .swiper-slide {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  padding: 40px 0px 80px 0px;
}
.box-recenzii__swiper-container .swiper-wrapper .swiper-slide .info-box {
  z-index: 2;
  width: 100%;
  border-radius: 10px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--main-color);
}
.box-recenzii__swiper-container .swiper-wrapper .swiper-slide .info-box .info {
  display: flex;
  justify-content: space-between;
}
.box-recenzii__swiper-container .swiper-wrapper .swiper-slide .info-box .info .qoutes {
  display: flex;
  align-items: end;
}
.box-recenzii__swiper-container .swiper-wrapper .swiper-slide .info-box .info .qoutes figure img {
  width: 40px;
  transform: rotate(180deg);
  filter: brightness(0) invert(10);
}
.box-recenzii__swiper-container .swiper-wrapper .swiper-slide .info-box .info .text {
  width: 640px;
  font-size: 17px;
  line-height: 25px;
  font-weight: 200;
  padding: 0px 20px 0px 20px;
}
.box-recenzii__swiper-container .swiper-wrapper .swiper-slide .info-box .info .text .author {
  margin-top: 20px;
}
.box-recenzii__swiper-container .swiper-wrapper .swiper-slide .info-box .info .text::-webkit-scrollbar {
  width: 4px;
}
.box-recenzii__swiper-container .swiper-wrapper .swiper-slide .info-box .info .text::-webkit-scrollbar-thumb {
  background-color: var(--main-color3);
  border-radius: 2px;
  border: solid var(--main-color3) 0.5px;
}
.box-recenzii__swiper-container .swiper-wrapper .swiper-slide .info-box .info .text::-webkit-scrollbar-track {
  background-color: var(--main-color);
  border-radius: 2px;
  border: solid var(--main-color3) 0.5px;
}
.box-recenzii__swiper-container .add-rewiew {
  position: absolute;
  bottom: 30px;
  left: 40px;
  z-index: 2;
}
.box-recenzii__swiper-container .swiper-pagination {
  margin-bottom: 60px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.box-recenzii__swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 5px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}
.box-recenzii__swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: white;
}
.box-recenzii .overlay-img {
  background: rgba(27, 27, 29, 0.6);
  border-radius: 10px;
}
@media (max-width: 1024px) {
  /* .box-recenzii__swiper-container .swiper-wrapper .swiper-slide .info-box .info .qoutes{padding: 0px 0px 0px 15px ;} */
  /* .box-recenzii__swiper-container .swiper-wrapper .swiper-slide .info-box .info .qoutes figure img{width: 25px;} */
  .box-recenzii__content {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
  .box-recenzii__swiper-container .swiper-wrapper .swiper-slide .info-box .info .text {
    width: auto;
    font-size: 15px;
    line-height: 20px;
  }
  .box-recenzii__swiper-container .swiper-wrapper .swiper-slide .info-box .info .qoutes {
    display: none;
  }
  .box-recenzii__swiper-container .add-rewiew {
    left: 50%;
    transform: translate(-50%);
    bottom: 13px;
  }
}
/* @media (max-width:  576px) {
} */

@media (max-width: 500px){
.box-recenzii__content {
  padding: 0 15px;
}

}
/* end pmg_recenzii */
/* init pmg_redirectcalculator */

/* end pmg_redirectcalculator */
/* init pmg_sendcv */
@charset "UTF-8";
.box-sendcv .sendcv {
  margin-top: 50px;
}
.box-sendcv .sendcv div {
  text-align: center;
}
.box-sendcv .sendcv p {
  text-align: center;
}
.box-sendcv__form-box {
  min-height: 100%;
  padding: 50px 0px 100px 0px;
  display: flex;
  justify-content: center;
}
.box-sendcv .screen-reader-response {
  display: none;
}
.box-sendcv form p {
  position: relative;
}
.box-sendcv form p .file-sender__inputs-block {
  padding: 0px;
  margin-bottom: 25px;
  margin-right: 5px;
  height: 30px;
  padding: 9px 0px 9px 10px;
  font-size: 16px;
  font-family: "source-sans-pro";
  font-weight: 200;
  line-height: 28px;
  letter-spacing: 1px;
  word-wrap: break-word;
  outline: none;
  border-radius: 5px;
  transition: 0.3s;
  border: none;
  color: var(--main-color3);
  content: "";
  width: 400px;
  background-color: rgba(178, 178, 178, 0.25);
}
.box-sendcv form p .file-sender__inputs-block::placeholder {
  color: rgba(40, 52, 68, 0.4);
}
.box-sendcv form p .file-sender__inputs-block:focus {
  background-color: whitesmoke;
}
.box-sendcv .wpcf7-not-valid-tip {
  color: red;
  position: absolute;
  left: 1%;
  top: 62%;
  font-family: 'source-sans-pro-italic';
  font-size: 14px;
  opacity: 0;
}
.box-sendcv .error-message {
  color: red;
}
.box-sendcv .display-none {
  display: none;
}
.box-sendcv .wpcf7-response-output {
  display: none;
}
.box-sendcv .file-upload-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.box-sendcv .file-upload-box input {
  display: none;
}
.box-sendcv .file-upload-box .wpcf7-not-valid-tip {
  left: 51%;
  top: 40%;
}
.box-sendcv .file-upload-box label:first-child {
  width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  padding: 5px 5px 5px 0px;
  border-radius: 5px;
  background-color: var(--main-color);
  color: var(--main-color2);
  transition: all 0.5s;
  cursor: pointer;
  box-shadow: 1px 1px 15px 3px gray;
}
.box-sendcv .file-upload-box label:first-child:hover {
  background-color: var(--main-color2);
  color: var(--main-color);
}
.box-sendcv .file-upload-box label:last-child {
  max-width: 150px;
  height: auto;
  word-wrap: break-word;
}
.box-sendcv .file-upload-box #file-upload-button {
  background-color: #4CAF50;
}
.box-sendcv #dropArea {
  border: 2px dotted #ccc;
  padding: 14px 14px 14px 14px;
  text-align: center;
  width: 380px;
  border-radius: 6px;
  height: auto;
}
.box-sendcv #dropArea.drag-over {
  border-color: #4CAF50;
}
.box-sendcv textarea {
  width: 380px;
  color: var(--main-color3);
  outline: none;
  border: none;
  font-weight: 200;
  line-height: 28px;
  letter-spacing: 1px;
  font-size: 16px;
  font-family: "source-sans-pro";
  word-wrap: break-word;
  resize: none;
  resize: vertical;
  max-height: 297px;
  max-height: 227px;
  height: 137px;
  min-height: 30px;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.3s;
  background-color: rgba(178, 178, 178, 0.25);
  padding: 15px 15px 0px 15px;
  margin-bottom: 25px;
}
.box-sendcv textarea::placeholder {
  color: rgba(40, 52, 68, 0.4);
}
.box-sendcv textarea:focus {
  background-color: whitesmoke;
}
.box-sendcv .button-forma {
  background-color: var(--main-color);
  color: var(--main-color2);
  transition: 0.5s;
}
.box-sendcv .button-forma:hover {
  background-color: var(--main-color2);
  color: var(--main-color);
}
.box-sendcv .button-forma:first-child {
  border: 1px dotted #ccc;
  box-shadow: 0px 4px 5px rgba(51, 61, 73, 0.34);
  margin-right: 5px;
}
.box-sendcv form p:last-child {
  width: 625px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .box-sendcv__content {
    width: 90%;
    margin: 0 auto;
  }
  .box-sendcv .wpcf7 {
    width: 100%;
  }
  .box-sendcv form p {
    width: 100%;
  }
  .box-sendcv #dropArea {
    width: 100%;
    box-sizing: border-box;
  }
  .box-sendcv form p .file-sender__inputs-block {
    box-sizing: border-box;
    height: 50px;
    width: 100%;
  }
  .box-sendcv textarea {
    width: 100%;
    box-sizing: border-box;
  }
  .box-sendcv .file-upload-box label:first-child:hover {
    background-color: var(--main-color);
    color: var(--main-color2);
  }
  .box-sendcv .button-forma:first-child {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .box-sendcv .button-forma:hover {
    background-color: var(--main-color);
    color: var(--main-color2);
  }
}

/* end pmg_sendcv */
/* init pmg_servicii */
.box-servicii__container-image-background {
  position: relative;
  min-height: 538px;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease-in-out;
  background-size: 100% 100%;
  background-image: url("/template/assets/img/images/describeComapnyBck.png");
}
.box-servicii__container {
  padding-top: 84px;
}
.box-servicii__up-box {
  /* // margin-top: 104px; */
  display: flex;
  justify-content: space-between;
}
.box-servicii .title-white {
  color: white;
  z-index: 2;
}
.box-servicii__input-phone {
  z-index: 2;
  display: flex;
  align-items: end;
}
.box-servicii__input-phone div {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 48px;
  width: 348px;
  /* // border: solid var(--main-color3) 1px; */
  background-color: white;
  border-radius: 5px;
}
.box-servicii__input-phone div figure {
  display: flex;
  align-items: end;
}
.box-servicii__input-phone div figure svg {
  margin-left: 35px;
}
.box-servicii__input-phone div .send-img {
  margin: 0px;
  cursor: default;
  opacity: 0;
  pointer-events: none;
  margin-right: 10px;
  transition: 0.5s;
}
.box-servicii__input-phone div .send-img-active {
  cursor: pointer;
  pointer-events: all;
  opacity: 0.4;
  transition: 0.5s;
  transform: rotate(360deg);
}
.box-servicii__input-phone div .send-img-active:hover {
  opacity: 1;
  transition: 0.5s;
  transform: rotate(0deg);
}
.box-servicii__input-phone div input {
  border: none;
  width: 65%;
  height: 100%;
  font-size: 14px;
  font-family: "source-sans-pro";
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1px;
  word-wrap: break-word;
  outline: none;
  color: #98999C;
  padding-left: 10px;
}
.box-servicii__bottom-box {
  margin-top: 87px;
  display: grid;
  grid-template-columns: auto auto auto;
}
.box-servicii__svg-title {
  width: 67px;
  height: 67px;
  display: flex;
  /* // justify-content: center; */
  align-items: center;
  position: relative;
}
.box-servicii__svg-title svg {
  position: absolute;
}
.box-servicii__svg-title figure {
  z-index: 1;
  filter: brightness(0) invert(1);
}
.box-servicii__svg-title figure img {
  width: 60px;
}
.box-servicii__describe {
  width: 300px;
  min-height: 245px;
  z-index: 2;
  margin-bottom: 40px;
}
.box-servicii__describe h2 {
  color: var(--main-color);
  font-size: 15px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 1px;
  margin-top: 19px;
}
.box-servicii__describe p {
  color: var(--main-color);
  font-size: 12px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1px;
  word-wrap: break-word;
  margin-top: 9px;
}
/* box servicii mobile */
@media (max-width: 1024px) {
  .box-servicii__container-image-background {
    background-size: cover !important;
    background-position: center;
  }
  .box-servicii__container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 84px;
  }
  .box-servicii__up-box {
    flex-direction: column;
  }
  .title-white div {
    text-align: center;
    line-height: 38px;
  }
  .title-white p {
    text-align: center;
  }
  .box-servicii__svg-title {
    margin: 0 auto;
  }
  .box-servicii__describe h2 {
    text-align: center;
  }
  .box-servicii__input-phone {
    margin: 0 auto;
    margin-top: 25px;
  }
  .box-servicii__input-phone div {
    width: 100%;
  }
  .box-servicii__bottom-box {
    margin-top: 60px;
    grid-template-columns: auto;
  }
  .box-servicii__describe {
    width: 100%;
  }
}

/* end pmg_servicii */
/* init pmg_smallnews */

/* end pmg_smallnews */
/* init pmg_timeline */
.box-timeline .timeline-title {
  /* text-align: center; */
  padding: 50px 0px 0px 0px;
}
.box-timeline__content {
  width: 100%;
}
.main-timeline-section {
  position: relative;
  width: 100%;
  margin: 50px 0px 0px 0px;
  height: 620px;
  margin: 0 auto;
}
.main-timeline-section .main-timeline-section__up-row {
  height: 50%;
  display: grid;
  grid-template-columns: 42.1% auto auto;
  position: relative;
}
.main-timeline-section .timeline-article {
  display: flex;
  position: relative;
}
.main-timeline-section .timeline-article .content-box {
  border-left: 3px solid var(--main-color3);
  /* background-color: #FFF; */
  width: 235px;
  align-self: self-end;
  min-height: 140px;
  padding: 15px 5px 0px 0px;
  color: #1F1F1F;
  text-align: left;
  font-size: 11px;
  display: flex;
  align-items: start;
  position: relative;
}
.main-timeline-section .timeline-article .content-box h3 {
  font-size: 15px;
  line-height: 14px;
  font-family: 'source-sans-pro-bold';
  width: 100%;
  text-align: left;
  padding: 0px 0px 0px 15px;
  font-weight: bold;
}
.main-timeline-section .timeline-article .content-box p {
  padding: 5px 0px 0px 32px;
  font-size: 11.7px;
}
.main-timeline-section .timeline-article figure {
  position: absolute;
  z-index: 3;
}
.main-timeline-section .timeline-article figure img {
  width: 100px;
}
.main-timeline-section .timeline-article .meta-date {
  position: absolute;
  width: 13.1px;
  height: 13px;
  top: 100%;
  transform: translateY(-50%);
  left: -13.5px;
  border-radius: 100%;
  background: var(--main-color);
  border: 3px solid var(--main-color3);
  z-index: 2;
  padding: 3px;
}
.main-timeline-section .timeline-article .meta-date div {
  background-color: var(--main-color3);
  border-radius: 20px;
  width: 100%;
  height: 100%;
}
.main-timeline-section .timeline-article .inner-meta {
  background-color: var(--main-color3);
  width: 9px;
  height: 8px;
  padding: 0;
  top: 0;
  left: -8.5px;
}
.main-timeline-section .timeline-article .important-date {
  width: 34px;
  height: 34px;
  padding: 0px;
  left: -21px;
  border: 3px solid green;
}
.main-timeline-section .timeline-article .important-date div {
  background-color: green;
  color: var(--main-color);
  border-radius: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.main-timeline-section .main-timeline-section__bottom-row {
  height: 100px;
  height: 49%;
  display: grid;
  grid-template-columns: 58% auto;
}
.main-timeline-section .main-timeline-section__bottom-row .timeline-article .content-box {
  align-self: flex-start;
  padding: 0px 0px 10px 0px;
  min-height: 100px;
}
.main-timeline-section .main-timeline-section__bottom-row .timeline-article .content-box h3 {
  margin: 50px 0px 0px 0px;
}
.main-timeline-section .main-timeline-section__bottom-row .timeline-article figure {
  bottom: 0;
}
.main-timeline-section .main-timeline-section__bottom-row .timeline-article .meta-date {
  top: 0;
}
.main-timeline-section .main-timeline-section__bottom-row .timeline-article .meta-date div {
  background-color: var(--main-color3);
}
.main-timeline-section .main-timeline-section__bottom-row .timeline-article .important-date {
  border: 3px solid red;
}
.main-timeline-section .main-timeline-section__bottom-row .timeline-article .important-date div {
  background-color: red;
}
.main-timeline-section .main-timeline-section__bottom-row .timeline-article .inner-meta {
  top: 100%;
}
.main-timeline-section .content-box.first-box h3 {
  color: green;
}
.main-timeline-section .content-box.first-box .inner-meta {
  width: 9px;
  height: 8px;
  padding: 0;
  top: 0;
  left: -8.5px;
  background-color: green;
  border: 3px solid green;
}
.main-timeline-section .content-box.first-box {
  margin-left: 180px;
  border-left: 3px solid green;
}
.main-timeline-section .content-box.first-box {
  margin-left: 180px;
  border-left: 3px solid green;
}
.main-timeline-section .content-box.second-box {
  margin-left: 320px;
  width: 255px;
}
.main-timeline-section .content-box.third-box {
  margin-left: 50px;
  width: 215px;
}
.main-timeline-section .content-box.fourth-box {
  margin-left: 85px;
}
.main-timeline-section .content-box.fourth-box {
  margin-left: 85px;
  border-left: 3px solid red;
}
.main-timeline-section .content-box.fourth-box h3 {
  color: red;
}
.main-timeline-section .content-box.fourth-box .inner-meta {
  width: 9px;
  height: 8px;
  padding: 0;
  top: 100%;
  left: -8.7px;
  background-color: red;
  border: 3px solid red;
}
.main-timeline-section .content-box.fifth-box {
  margin-left: 124px;
  width: 175px;
}
.main-timeline-section .first-img {
  left: 31%;
  top: 14%;
}
.main-timeline-section .second-img {
  left: 48.1%;
  top: 41.7%;
}
.main-timeline-section .third-img {
  left: 0%;
  top: 14%;
}
.main-timeline-section .fourth-img {
  left: 11%;
  top: 40.7%;
}
.main-timeline-section .fifth-img {
  left: 27.5%;
  top: 13%;
}
.main-timeline-section .timeline-start, .main-timeline-section .timeline-end {
  position: absolute;
  background: var(--main-color3);
  top: 50.38%;
  left: 99.1%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  z-index: 10;
  border-radius: 2.2px;
}
.main-timeline-section .timeline-end {
  left: 0.03%;
}
.main-timeline-section .conference-center-line {
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: var(--main-color3);
}
.testNumber {
  font-size: 25px;
}
/* work later */
.message-for-important-meta {
  position: absolute;
  left: 675px;
  top: 195px;
  z-index: 10;
  background-image: url('/template/assets/img/images/dialogIcon.png');
  background-repeat: no-repeat;
  background-size: cover;
  width: 120px;
  height: 120px;
}
.message-for-important-meta div {
  font-size: 11px;
  font-weight: 400;
  padding: 35px 12px 5px 18px;
  font-size: 14px;
  font-weight: 800;
}
.message-for-important-meta-bottom {
  transform: scaleX(-1) scaleY(-1);
  left: 60px;
  top: 320px;
}
.message-for-important-meta-bottom div {
  transform: scaleX(-1) scaleY(-1);
  padding: 0px 9px 34px 18px;
}
.main-timeline-phone {
  display: none;
}
@media (max-width: 576px) {
  .timeline-article {
    grid-template-columns: 15% 85%;
  }
}

@media (max-width: 1024px){
.box-timeline__content {
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.timeline-article {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  /*  display: grid;
    grid-template-columns: 10% 90%; */
  /* align-items: center; */
  /* justify-content: space-between; */
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-bottom: 65px;
}
.left {
  justify-content: left;
}
.right {
  justify-content: right;
}
.message-for-important-meta {
  left: 100px;
  top: -50px;
  width: 70px;
  height: 70px;
}
.message-for-important-meta div {
  font-size: 10px;
  padding: 10px 10px 20px 12px;
}
.message-for-important-meta-bottom {
  top: 95%;
  left: 70px;
}
.message-for-important-meta-bottom div {
  font-size: 10px;
  padding: 0px 10px 11px 12px;
}
.timeline-article .point-img {
  height: 100%;
  /* margin: 10px; */
  /* margin-left: 5px; */
  /* margin-right: 5px; */
  margin-top: 0px;
}
.timeline-article .point-img img {
  width: 35px;
  margin: 0 auto;
}
.first img {
  width: 40px !important;
  margin-left: -5px !important;
}
.second img {
  width: 35px !important;
  /* margin-left: 13px; */
}
.third img {
  margin-left: -5px !important;
}
.title-with-description p {
  text-align: left;
}
.title-with-description div {
  text-align: left;
}
.main-timeline-section .conference-center-line {
  display: none;
}
.main-timeline-section {
  display: none;
}
.main-timeline-phone {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.content-box {
  position: relative;
  max-width: 497px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-box h3 {
  font-size: 17px;
  text-align: center;
}
.content-box p {
  font-size: 15px;
  padding: 5px 0px 0px 10px;
  text-align: center;
}
.content-box.first-box h3 {
  color: green;
}
.content-box.fourth-box h3 {
  color: red;
}

}
@media (max-width: 500px){
.box-timeline__content {
  padding: 0 15px;
}
.timeline-article {
  margin-bottom: 35px;
}

}
/* end pmg_timeline */
/* init pmg_vacancies */
.box-vacancies {
  /* &__content-box {
    min-height: 100vh;
  } */
}
.box-vacancies a {
  text-decoration: none;
}
.box-vacancies__number-of-jobs {
  margin-top: 50px;
}
.box-vacancies__number-of-jobs span {
  font-size: 23px;
  font-weight: 700;
}
.box-vacancies__avaible-vacancies {
  margin-top: 50px;
  height: auto;
  padding-bottom: 50px;
}
.box-vacancies__job-vacancy {
  margin-top: 35px;
  display: flex;
  align-items: center;
  max-width: 700px;
}
.box-vacancies__job-vacancy .box-vacancies__image {
  margin-right: 8px;
}
.box-vacancies__job-vacancy .box-vacancies__image figure img {
  height: 70px;
  width: 70px;
  /* img{width: 100%; height: 100%;} */
}
.box-vacancies__job-vacancy .box-vacancies__text h2 {
  font-size: 18px;
  color: rgba(40, 52, 68, 0.9);
  font-family: source-sans-pro-bold;
  transition: 0.3s;
}
.box-vacancies__job-vacancy .box-vacancies__text h2:hover {
  color: rgba(66, 108, 164, 0.9);
}
.box-vacancies__job-vacancy .box-vacancies__text p {
  font-size: 16px;
  line-height: 21px;
  margin-top: 10px;
  color: black;
  opacity: 0.7;
  font-weight: 400;
  /* span{margin: 0px 2px 0px 0px; } */
}
.box-vacancies__job-vacancy .box-vacancies__text div {
  color: black;
  opacity: 0.8;
  margin-top: 3px;
}
.box-vacancies__job-vacancy .box-vacancies__description {
  display: none;
}
.box-vacancies__company-overview {
  /* padding-top: 50px; */
}
.box-vacancies__company-overview h2 {
  font-size: 21px;
}
.box-vacancies__company-overview p {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  opacity: 0.85;
  margin-top: 5px;
}
.box-vacancies__company-overview hr {
  opacity: 0.4;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  /* .box-vacancies__text{
    text-align: center;
  } */
  .box-vacancies__content-box {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  .box-vacancies__job-vacancy {
    flex-flow: column;
    align-items: start;
    /* justify-content: center; */
    max-width: 100%;
  }
  .box-vacancies__job-vacancy .box-vacancies__text h2 {
    font-size: 16px;
  }
  .box-vacancies__job-vacancy .box-vacancies__text h2:hover {
    color: rgba(40, 52, 68, 0.9);
  }
  .box-vacancies__job-vacancy .box-vacancies__text p {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .box-vacancies__job-vacancy .box-vacancies__image figure img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 500px){
.box-vacancies__content-box {
  padding: 0 15px;
}

}
/* end pmg_vacancies */
/* init pmg_vacancy */
.box-vacancy a {
  text-decoration: none;
  color: black;
}
.box-vacancy__container {
  min-height: 90vh;
}
.box-vacancy__vacancy-title {
  padding: 50px 0px 50px 0px;
}
.box-vacancy .box-vacancies__job-vacancy .box-vacancies__image {
  margin-right: 13px;
}
.box-vacancy .box-vacancies__job-vacancy .box-vacancies__image figure img {
  height: 120px;
  width: 87.5px;
}
.box-vacancy .box-vacancies__job-vacancy .box-vacancies__image figure img img {
  width: 100%;
  height: 100%;
}
.box-vacancy .box-vacancies__job-vacancy .box-vacancies__text h2 {
  font-size: 26px;
  color: black;
  font-weight: 100;
}
.box-vacancy__descrition-vacancy {
  padding-bottom: 30px;
}
.box-vacancy__descrition-vacancy .box-vacancy__tabs-box {
  display: flex;
  position: relative;
  padding: 0px;
  margin: 0px;
}
.box-vacancy__descrition-vacancy .box-vacancy__tabs-box::before {
  border-bottom: 1px solid #dadbde;
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  content: "";
}
.box-vacancy__descrition-vacancy .box-vacancy__tab {
  margin: 0px 5px 0px 0px;
  border: 1px solid #dadbde;
  padding: 8px 16px;
  background-color: rgba(27, 27, 29, 0.1);
  cursor: pointer;
  border-radius: 4px 4px 0px 0px;
  position: relative;
  color: black;
}
.box-vacancy__descrition-vacancy .box-vacancy__tab.active {
  /* border-bottom: 1px solid white; */
  border-bottom: none;
  color: var(--main-color3);
  font-weight: 600;
  background-color: white;
}
.box-vacancy__descrition-vacancy .box-vacancy__descrition {
  border: 1px solid #dadbde;
  border-top: none;
  border-radius: 0px 0px 4px 4px;
  min-height: 150px;
}
.box-vacancy__descrition-vacancy .box-vacancy__descrition div {
  padding: 20px 10px 20px 10px;
}
.box-vacancy__descrition-vacancy .box-vacancy__descrition div h1 {
  font-size: 24px;
  margin: 15px 0px 15px 0px;
}
.box-vacancy__descrition-vacancy .box-vacancy__descrition div h2 {
  font-size: 16px;
  margin: 15px 0px 15px 0px;
}
.box-vacancy__descrition-vacancy .box-vacancy__descrition div h3 {
  font-size: 14px;
  font-weight: bolder;
  font-family: 'source-sans-pro-bold';
  margin: 15px 0px 15px 0px;
}
.box-vacancy__descrition-vacancy .box-vacancy__descrition div hr {
  opacity: 0.5;
  margin: 20px 0px 20px 0px;
}
.box-vacancy__descrition-vacancy .box-vacancy__descrition div p {
  margin: 15px 0px 15px 0px;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .box-vacancy__container {
    width: 90%;
    margin: 0 auto;
  }
  .box-vacancy .box-vacancies__job-vacancy .box-vacancies__image figure img {
    height: 110px;
    width: 70px;
  }
  .box-vacancy .box-vacancies__job-vacancy .box-vacancies__text h2 {
    font-size: 21px;
  }
  .box-vacancies__job-vacancy .box-vacancies__text p {
    font-size: 14px;
  }
}

/* end pmg_vacancy */
/* init pmg_workers */
.box-workers .servicii-box {
  min-height: 30vh;
  max-height: 100%;
}
.box-workers .servicii-title {
  margin: 50px 0px 50px 0px;
}
.box-workers .servicii-title div {
  text-align: left;
}
.box-workers .servicii-title p {
  text-align: left;
}
.box-workers__workers-info {
  max-height: auto;
  display: grid;
  grid-template-columns: 20% 80%;
  width: 100%;
}
.box-workers__tab {
  cursor: pointer;
  height: 20px;
  font-size: 15px;
  color: rgba(40, 52, 68, 0.5);
  line-height: 1.182;
  font-weight: 800;
  word-wrap: break-word;
  padding: 25px 20px 25px 20px;
  background-image: linear-gradient(to right, #fff 70%, rgba(239, 239, 239, 0.5) 100%);
  border: 1px solid #ddd;
  border-bottom: none;
  border-right: none;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.box-workers__tab span {
  display: none;
}
.box-workers__tab::after {
  content: "";
  position: absolute;
  border: solid white;
  right: -2px;
  display: none;
  top: 0;
  height: 92%;
}
.box-workers__tab:last-child {
  border-bottom: 1px solid #ddd;
}
.box-workers .active {
  background-image: none;
  font-weight: 800;
  font-size: 16px;
  color: #283444;
}
.box-workers .active::after {
  display: block;
}
.box-workers__info {
  border: 1px solid #ddd;
  min-height: 164px;
  width: 100%;
  max-height: fit-content;
  padding: 15px 20px 20px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #535353;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.box-workers__info h1 {
  font-size: 24px;
  margin: 15px 0px 15px 0px;
}
.box-workers__info h2 {
  font-size: 16px;
  margin: 15px 0px 15px 0px;
}
.box-workers__info h3 {
  font-size: 14px;
  font-weight: bolder;
  font-family: 'source-sans-pro-bold';
  margin: 15px 0px 15px 0px;
}
.box-workers__info hr {
  opacity: 0.5;
  margin: 20px 0px 20px 0px;
}
.box-workers__info p {
  margin: 15px 0px 15px 0px;
  font-size: 14px;
  word-wrap: break-word !important;
}
.box-workers__info ul {
  padding: 0px 10px 0px 30px;
}
@media (max-width: 1024px) {
  .box-workers__tab {
    height: auto;
    font-size: 10px;
    padding: 20px 15px 20px 15px;
    display: flex;
  }
  .box-workers .active {
    font-size: 11px;
  }
  .box-workers__tab::after {
    height: 96%;
  }
}

@media (max-width: 1024px){
.box-workers .servicii-box {
  max-width: 100%;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.box-workers__workers-info {
  display: flex;
  flex-flow: column;
}
.box-workers .box-workers__tabs {
  display: flex;
}
.box-workers .box-workers__tab {
  border: 1px solid #ddd;
  border-bottom: none;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 150px;
  width: 100%;
  max-height: 56px;
}
.box-workers .box-workers__tab::after {
  position: static;
}

}
@media (max-width: 500px){
.box-workers .servicii-box {
  padding: 0 15px;
}
.box-workers .box-workers__tab {
  padding: 15px 10px;
  font-size: 16px;
  border: 1px solid #ddd;
}

}
@media (max-width: 350px){
.box-workers .box-workers__tab {
  padding: 15px 5px;
  font-size: 14px;
}

}
/* end pmg_workers */