:root {
  font-size: 16px;
}

.flex-container {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
}

.flex-container-row {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.flex-container-column {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
}

.flex-item-center {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}

.flex-item-end {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
}

.flex-item-start {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
}

.flex-item-space-between {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
}

.flex-item-space-around {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
}

.flex-container-center {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
}

.flex-container-end {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
}

.flex-item-top {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  -moz-align-self: flex-start;
  -ms-align-self: flex-start;
}

.flex-item-bottom {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
}

.flex-container-bottom {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-content: flex-end;
  align-content: flex-end;
  -moz-align-content: flex-end;
  -ms-align-content: flex-end;
}

.flex-container-space-between {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-content: space-between;
  align-content: space-between;
  -moz-align-content: space-between;
  -ms-align-content: space-between;
}

.flex-self-top {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  -moz-align-self: flex-star;
  -ms-align-self: flex-star;
}

.flex-self-bottom {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  -moz-align-self: flex-end;
  -ms-align-self: flex-end;
}

.flex-self-middle {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-self: center;
  align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
}

.flex-item-middle {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}

.flex-item-baseline {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-items: baseline;
  align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
}

.flex-nowrap {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
}

* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  margin: 0;
  min-width: 320px;
  font-size: 0.875rem;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  overflow-x: hidden;
  background-color: #F2F2F4;
}

p {
  margin: 0;
}

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

h1:before, h2:before, h3:before, h4:before, h5:before {
  display: none !important;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #000;
  transition: all 100ms ease-in-out;
}

a:hover, a:visited:hover {
  color: #ED2125;
}

a:visited {
  color: #000;
}

a:focus {
  outline: none;
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  border: none;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  background-color: transparent;
}

.container {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  padding: 0 30px;
  background-color: #F2F2F4;
}

.container .inside {
  width: 1156px;
  max-width: 100%;
}

.hidden {
  display: none !important;
}

.uppercase {
  text-transform: uppercase;
}

body.logged-in .header .right .mobile-menu .content {
  top: 122px;
  padding-bottom: 122px;
}

body.logged-in .header.fixed {
  top: 32px;
}

body.logged-in .header.fixed:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 100%;
  left: 0;
  background-color: #fff;
}

.button {
  font-size: 0.625rem;
  border-radius: 4px;
  padding: 10px 15px;
  text-transform: uppercase;
}

.button.red {
  background-color: #ED2125;
  color: #fff;
  transition: all 200ms ease-in-out;
}

.button.red:hover {
  background-color: #fff;
  color: #ED2125;
}

.button.red:hover img.white {
  display: none;
}

.button.red:hover img.red {
  display: flex;
}

.button.red img.white {
  display: flex;
  transition: all 200ms ease-in-out;
}

.button.red img.red {
  display: none;
  transition: all 200ms ease-in-out;
}

.button.white {
  background-color: #fff;
  color: #ED2125;
}

.button.white-border {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.button.white-border:hover {
  background-color: #fff;
  color: #ED2125;
}

.button.white-border:hover img.white {
  display: none;
}

.button.white-border:hover img.red {
  display: flex;
}

.button.white-border img.white {
  display: flex;
  transition: all 200ms ease-in-out;
}

.button.white-border img.red {
  display: none;
  transition: all 200ms ease-in-out;
}

.dashed {
  position: relative;
}

.dashed:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  left: 0;
  background-image: linear-gradient(to right, #CBCBCB 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 5px 1px;
  background-repeat: repeat-x;
}

.dashed.border-top:before {
  top: 0;
}

.dashed.border-bottom:before {
  bottom: 0;
}

.bold {
  font-weight: 700;
}

p.red,
span.red,
a.red,
h1.red,
h2.red,
h3.red,
h4.red,
h5.red {
  color: #ED2125;
}

.bifa {
  display: flex;
  margin-top: 14px;
}

.bifa span {
  width: 100%;
  margin: 0;
}

.bifa .wpcf7-not-valid {
  border-bottom: none !important;
}

.bifa .wpcf7-not-valid label span {
  color: #ED2125 !important;
}

.bifa label {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  width: 100%;
  cursor: pointer;
}

.bifa label input {
  position: relative;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  opacity: 0;
}

.bifa label input:hover ~ span:after {
  opacity: 0.5;
}

.bifa label input:checked ~ span:after {
  opacity: 1;
}

.bifa label input:checked:hover ~ span:after {
  opacity: 1;
}

.bifa label span {
  position: relative;
  width: calc(100% - 40px) !important;
  font-size: 0.75rem;
  font-weight: 400;
  margin: 0 !important;
  padding-left: 10px;
}

.bifa label span:before, .bifa label span:after {
  position: absolute;
  content: "";
  right: 100%;
}

.bifa label span:before {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background-color: #fff;
  border: 1px solid #6D6C6C;
}

.bifa label span:after {
  width: 12px;
  height: 5px;
  top: 5px;
  right: calc(100% + 3px);
  border-left: 2px solid #ED2125;
  border-bottom: 2px solid #ED2125;
  transform: rotate(-45deg);
  opacity: 0;
  transition: all 200ms ease-in-out;
}

.bifa label span a {
  font-size: 0.75rem;
  font-weight: 400;
}

.bifa label span a:hover {
  text-decoration: underline;
}

.header {
  background-color: #fff;
}

.header .inside {
  min-height: 90px;
}

.header .inside .logo img {
  height: 29px;
}

.header .inside .header-menu {
  height: 100%;
}

.header .inside .header-menu .menu-header-container,
.header .inside .header-menu .menu-header-engleza-container {
  height: 100%;
}

.header .inside .header-menu ul.menu {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  height: 100%;
}

.header .inside .header-menu ul.menu li {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  position: relative;
  margin-right: 30px;
  height: 100%;
}

.header .inside .header-menu ul.menu li:hover .sub-menu {
  display: flex;
}

.header .inside .header-menu ul.menu li:last-child {
  margin-right: 0;
}

.header .inside .header-menu ul.menu li a {
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 200ms ease-in-out;
}

.header .inside .header-menu ul.menu li a:hover {
  color: #ED2125;
}

.header .inside .header-menu ul.menu li .sub-menu {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  display: none;
  position: absolute;
  width: 220px;
  max-width: 100vw;
  top: calc(100% - 3px);
  left: 0;
  padding: 0;
  background-color: #fff;
  border-top: 3px solid #ED2125;
  border-radius: 4px;
  z-index: 99;
  transition: all 200ms ease-in-out;
  animation: subMenuOpen 300ms forwards ease-in-out;
}

@keyframes subMenuOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(1) {
  animation-name: subMenuliOpen;
  animation-duration: 200ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(2) {
  animation-name: subMenuliOpen;
  animation-duration: 400ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(3) {
  animation-name: subMenuliOpen;
  animation-duration: 600ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(4) {
  animation-name: subMenuliOpen;
  animation-duration: 800ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(5) {
  animation-name: subMenuliOpen;
  animation-duration: 1000ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(6) {
  animation-name: subMenuliOpen;
  animation-duration: 1200ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(7) {
  animation-name: subMenuliOpen;
  animation-duration: 1400ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(8) {
  animation-name: subMenuliOpen;
  animation-duration: 1600ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(9) {
  animation-name: subMenuliOpen;
  animation-duration: 1800ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(10) {
  animation-name: subMenuliOpen;
  animation-duration: 2000ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(11) {
  animation-name: subMenuliOpen;
  animation-duration: 2200ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(12) {
  animation-name: subMenuliOpen;
  animation-duration: 2400ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(13) {
  animation-name: subMenuliOpen;
  animation-duration: 2600ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(14) {
  animation-name: subMenuliOpen;
  animation-duration: 2800ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(15) {
  animation-name: subMenuliOpen;
  animation-duration: 3000ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(16) {
  animation-name: subMenuliOpen;
  animation-duration: 3200ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(17) {
  animation-name: subMenuliOpen;
  animation-duration: 3400ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(18) {
  animation-name: subMenuliOpen;
  animation-duration: 3600ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(19) {
  animation-name: subMenuliOpen;
  animation-duration: 3800ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(20) {
  animation-name: subMenuliOpen;
  animation-duration: 4000ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(21) {
  animation-name: subMenuliOpen;
  animation-duration: 4200ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(22) {
  animation-name: subMenuliOpen;
  animation-duration: 4400ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(23) {
  animation-name: subMenuliOpen;
  animation-duration: 4600ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(24) {
  animation-name: subMenuliOpen;
  animation-duration: 4800ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(25) {
  animation-name: subMenuliOpen;
  animation-duration: 5000ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(26) {
  animation-name: subMenuliOpen;
  animation-duration: 5200ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(27) {
  animation-name: subMenuliOpen;
  animation-duration: 5400ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(28) {
  animation-name: subMenuliOpen;
  animation-duration: 5600ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(29) {
  animation-name: subMenuliOpen;
  animation-duration: 5800ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}

.header .inside .header-menu ul.menu li .sub-menu li:nth-child(30) {
  animation-name: subMenuliOpen;
  animation-duration: 6000ms;
  timing-function: ease-in-out;
  fill-mode: forwards;
}
.header #menu-item-wpml-ls-100-ro a, .header #menu-item-wpml-ls-100-en a{
    padding:6px 6px 12px;
}

@keyframes subMenuliOpen {
  0% {
    opacity: 0;
    transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

.header .inside .header-menu ul.menu li .sub-menu li {
  position: relative;
  margin-right: 0;
}

.header .inside .header-menu ul.menu li .sub-menu li:before {
  position: absolute;
  content: "";
  width: 9px;
  height: 7px;
  top: calc(50% - 3.5px);
  left: 20px;
  background-image: url("../img/arrow-right-red.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.header .inside .header-menu ul.menu li .sub-menu li:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to right, #CBCBCB 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 5px 1px;
  background-repeat: repeat-x;
}

.header .inside .header-menu ul.menu li .sub-menu li:last-child:after {
  display: none;
}

.header .inside .header-menu ul.menu li .sub-menu li a {
  width: 100%;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 12px 12px 12px 40px;
  transition: all 200ms ease-in-out;
}

.header .inside .header-menu ul.menu li .sub-menu li a:focus {
  outline: none;
  text-decoration: none;
}

.header .inside .right .order {
  margin-right: 24px;
}

.header .inside .right .order a {
  font-size: 0.75rem;
  line-height: 1rem;
  text-align: right;
  transition: all 200ms ease-in-out;
}

.header .inside .right .order a:hover {
  text-decoration: underline;
}

.header .inside .right .order .phone {
  color: #9F9E9E;
}

.header .inside .right .order .text {
  color: #ED2125;
  font-weight: 600;
}

.header .inside .right .lang {
  background-color: #F2F2F4;
  border-radius: 3px;
  padding: 6px 8px;
  transition: all 200ms ease-in-out;
}

.header .inside .right .lang:hover {
  background-color: #ED2125;
}

.header .inside .right .lang:hover .item {
  color: #fff;
}

.header .inside .right .lang .item {
  display: none;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #000;
  transition: all 200ms ease-in-out;
}

.header .inside .right .lang .item.active {
  display: flex;
}

.header .inside .right .mobile-menu {
  margin-left: 20px;
}

.header .inside .right .mobile-menu .menu-header-container,
.header .inside .right .mobile-menu .menu-header-engleza-container {
  width: 100%;
}

.header .inside .right .mobile-menu .hamburger {
  display: none;
  position: relative;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.header .inside .right .mobile-menu .hamburger:hover .line {
  background-color: #ED2125;
}

.header .inside .right .mobile-menu .hamburger .line {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background-color: #000;
  margin-bottom: 6px;
  transition: all 200ms ease-in-out;
}

.header .inside .right .mobile-menu .hamburger .line:last-child {
  margin-bottom: 0;
}

.header .inside .right .mobile-menu .hamburger.active .line {
  background-color: #ED2125;
}

.header .inside .right .mobile-menu .hamburger.active .line:nth-child(1), .header .inside .right .mobile-menu .hamburger.active .line:nth-child(3) {
  position: absolute;
  content: "";
  top: calc(50% - 1px);
  left: 0;
}

.header .inside .right .mobile-menu .hamburger.active .line:nth-child(1) {
  transform: rotate(45deg);
}

.header .inside .right .mobile-menu .hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg);
}

.header .inside .right .mobile-menu .hamburger.active .line:nth-child(2) {
  display: none;
}

.header .inside .right .mobile-menu .content {
  display: none;
  position: fixed;
  width: 100vw;
  height: calc(100vh - 90px);
  overflow-y: scroll;
  padding-bottom: 90px;
  top: 90px;
  left: 0;
  background-color: #fff;
  z-index: 999;
  padding: 30px;
}

.header .inside .right .mobile-menu .content ul li {
  position: relative;
}

.header .inside .right .mobile-menu .content ul li:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to right, #CBCBCB 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 5px 1px;
  background-repeat: repeat-x;
}

.header .inside .right .mobile-menu .content ul li a {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 7px 0;
}

.header .inside .right .mobile-menu .content ul li a:after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../img/arrow-bottom-black.svg");
  background-size: 13px 6.5px;
  background-position: center;
  background-repeat: no-repeat;
  right: 8px;
  top: calc(50% - 8px);
  z-index: 3;
}

.header .inside .right .mobile-menu .content ul li .sub-menu {
  display: none;
}

.header .inside .right .mobile-menu .content ul li .sub-menu li a {
  display: block;
}

.header .inside .right .mobile-menu .content ul li .arrow-down {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../img/arrow-bottom-black.svg");
  background-size: 13px 6.5px;
  background-position: center;
  background-repeat: no-repeat;
  right: 8px;
  top: calc(50% - 8px);
  z-index: 3;
}

.header .inside .right .mobile-menu .content ul li.active a:after {
  display: none;
}

.header .inside .right .mobile-menu .content ul li.active .sub-menu {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  padding: 0;
}

.header .inside .right .mobile-menu .content ul li.active .sub-menu li a:after {
  display: none;
}

.header .inside .right .mobile-menu .content ul li.active a:after {
  background-image: url("../img/arrow-bottom-red.svg");
  transform: rotate(180deg);
}

.header .inside .right .mobile-menu .content.active {
  display: flex;
}

.header.fixed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
}

.footer .inside {
  padding: 40px 40px 80px;
}

.footer .inside .left {
  width: 70%;
}

.footer .inside .left .info {
  width: 50%;
}

.footer .inside .left .info .title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 13px;
  margin-top: 30px;
}

.footer .inside .left .info .title:first-child {
  margin-top: 0;
}

.footer .inside .left .info .description {
  font-size: 0.875rem;
  margin-bottom: 3px;
}

.footer .inside .left .social {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: 50px;
}

.footer .inside .left .social .item {
  margin-right: 15px;
  height: 43.5px;
}

.footer .inside .left .social .item:hover svg {
  transition: all 200ms ease-in-out;
}

.footer .inside .left .social .item:hover svg rect {
  transition: all 200ms ease-in-out;
  fill: #ED2125;
}

.footer .inside .left .social .item:hover svg path {
  transition: all 200ms ease-in-out;
  fill: #fff;
}

.footer .inside .left .social .item:last-child {
  margin-right: 0;
}

.footer .inside .right {
  width: 30%;
}

.footer .inside .right .site-credits p {
  font-size: 0.75rem;
}

.footer .inside .right .site-credits a {
  font-size: 0.75rem;
  color: #ED2125;
  transition: all 200ms ease-in-out;
}

.footer .inside .right .site-credits a:hover {
  text-decoration: underline;
}

.footer .inside .right .created:hover p {
  color: #ED2125;
}

.footer .inside .right .created p {
  font-size: 0.75rem;
  transition: all 200ms ease-in-out;
}

.footer .inside .right .created img {
  margin: 0 5px;
}

.footer .inside .right .pay-method {
  margin-bottom: 20px;
}

.footer.white {
  background-color: #fff;
}

.footer.white .inside {
  padding: 90px 0px 80px;
}

.footer.white .inside .left {
  padding-right: 40px;
}

.footer.white .inside .left .social .item:hover svg rect {
  fill: #ED2125;
}

.footer.white .inside .left .social .item svg rect {
  fill: #f2f2f4;
}

.footer.white .inside .right {
  padding-right: 40px;
}

.small-left {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.small-left .left {
  width: 390px;
  max-width: 100%;
}

.small-left .right {
  width: calc(100% - 390px);
}

.small-left .right .items {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  width: calc(100% + 100px);
  max-width: 100%;
  margin-left: -50px;
}

.small-left .right .items .item {
  width: calc(50% - 100px);
  margin: 30px 50px 10px;
}

.small-right {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.small-right .left {
  width: calc(100% - 380px);
  max-width: 100%;
}

.small-right .right {
  width: 380px;
}

.last-articles .top {
  background-color: #ED2125;
}

.last-articles .top .inside {
  padding: 90px 0 290px;
}

.last-articles .top .inside .title-section .title {
  color: #fff;
}

.last-articles .top .inside .title-section .button {
  border: 1px solid #fff;
  padding: 20px 12px;
  min-width: 270px;
}

.last-articles .top .inside .title-section .button:hover {
  background-color: #fff;
}

.last-articles .top .inside .title-section .button:hover p {
  color: #ED2125;
  text-align: center;
}

.last-articles .top .inside .title-section .button:hover img.white {
  display: none;
}

.last-articles .top .inside .title-section .button:hover img.red {
  display: flex;
}

.last-articles .top .inside .title-section .button p {
  transition: all 200ms ease-in-out;
  font-size: 0.75rem;
  font-weight: 700;
}

.last-articles .top .inside .title-section .button img {
  transition: all 200ms ease-in-out;
}

.last-articles .top .inside .title-section .button img.red {
  display: none;
}

.last-articles .bottom .inside {
  padding-bottom: 110px;
}

.last-articles .bottom .inside .items {
  width: calc(100% + 20px);
  max-width: 100%;
  margin-left: -10px;
  margin-top: -209px;
}

.last-articles .bottom .inside .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  width: calc(33.33% - 20px);
  margin: 0 10px 10px;
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
}

.last-articles .bottom .inside .items .item .image {
  width: 100%;
  height: 209px;
  overflow: hidden;
}

.last-articles .bottom .inside .items .item .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.last-articles .bottom .inside .items .item .content {
  padding: 25px 30px;
  min-height: 142px;
}

.last-articles .bottom .inside .items .item .content .date {
  font-size: 0.75rem;
  color: #979797;
}

.last-articles .bottom .inside .items .item .content .title {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 700;
}

.last-articles .bottom .inside .items .item .article-bottom {
  padding: 20px 30px;
}

.last-articles .bottom .inside .items .item .article-bottom .left,
.last-articles .bottom .inside .items .item .article-bottom .right {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}

.last-articles .bottom .inside .items .item .article-bottom .left:hover .text {
  margin-right: 30px;
}

.last-articles .bottom .inside .items .item .article-bottom .left .text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ED2125;
  margin-right: 20px;
  transition: all 200ms ease-in-out;
}

.last-articles .bottom .inside .items .item .article-bottom .right .text {
  font-size: 0.75rem;
  color: #ED2125;
  margin-left: 8px;
}

.testimonials {
  background-color: #fff;
}

.testimonials .inside {
  padding: 100px 0 130px;
}

.testimonials .inside .left .title {
  font-size: 1.875rem;
  font-weight: 700;
  max-width: 210px;
  margin-bottom: 30px;
}

.testimonials .inside .left .button {
  padding: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  width: 270px;
  border: 1px solid transparent;
}

.testimonials .inside .left .button:hover {
  border: 1px solid #ED2125;
}

.testimonials .inside .right .items .item .top {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  position: relative;
  background-color: transparent;
  padding: 70px 24px 11px;
  margin-bottom: 40px;
}

.testimonials .inside .right .items .item .top .quoate-img {
  position: absolute;
  left: 0;
  bottom: -6px;
  z-index: 1;
}

.testimonials .inside .right .items .item .top .top-content {
  z-index: 2;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}

.testimonials .inside .right .items .item .top .top-content .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 18px;
}

.testimonials .inside .right .items .item .top .top-content .avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.testimonials .inside .right .items .item .top .top-content .text {
  width: calc(100% - 60px);
}

.testimonials .inside .right .items .item .top .top-content .text p {
  line-height: 0.9375rem;
}

.testimonials .inside .right .items .item .top .top-content .text .name {
  font-size: 1rem;
  font-weight: 700;
}

.testimonials .inside .right .items .item .top .top-content .text .description {
  font-size: 0.75rem;
  color: #AEAEAE;
  min-height: 30px;
}

.testimonials .inside .right .items .item .text-content {
  font-size: 0.875rem;
  color: #6D6C6C;
  max-width: 320px;
}

.logos {
  background-color: #fff;
}

.logos .inside {
  padding: 50px 0;
}

.logos .inside .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}

.contact-section {
  padding: 37px 30px;
}

.contact-section .inside .title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 19px;
}

.contact-section .inside .newsletter {
  width: 50%;
  background-color: #fff;
  padding: 40px 40px 30px;
}

.contact-section .inside .newsletter .form {
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  position: relative;
}

.contact-section .inside .newsletter .form .ajax-loader {
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
}

.contact-section .inside .newsletter .form .content {
  width: calc(100% - 32px);
  padding-right: 30px;
}

.contact-section .inside .newsletter .form .content label {
  width: 100%;
}

.contact-section .inside .newsletter .form .content label input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #D9D9D9;
  font-size: 0.875rem;
  padding: 6px 0;
  font-family: 'Open Sans', sans-serif;
}

.contact-section .inside .newsletter .form .content label input:focus {
  outline: none;
}

.contact-section .inside .newsletter .form .content label input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000;
  font-family: "Open Sans", sans-serif;
}

.contact-section .inside .newsletter .form .content label input::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
  font-family: "Open Sans", sans-serif;
}

.contact-section .inside .newsletter .form .content label input:-ms-input-placeholder {
  /* IE 10+ */
  color: #000;
  font-family: "Open Sans", sans-serif;
}

.contact-section .inside .newsletter .form .content label input:-moz-placeholder {
  /* Firefox 18- */
  color: #000;
  font-family: "Open Sans", sans-serif;
}

.contact-section .inside .newsletter .form .send {
  position: relative;
  width: 32px;
}

.contact-section .inside .newsletter .form .send:hover:before {
  background-image: url("../img/arrow-right-red.svg");
}

.contact-section .inside .newsletter .form .send:hover input {
  background-color: #fff;
}

.contact-section .inside .newsletter .form .send:before {
  position: absolute;
  content: "";
  width: 13px;
  height: 8px;
  top: calc(50% - 4px);
  left: calc(50% - 6px);
  background-image: url("../img/arrow-right-white.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.contact-section .inside .newsletter .form .send input {
  width: 32px;
  height: 64px;
  background-color: #ED2125;
  border: 1px solid #ED2125;
  border-radius: 4px;
  box-sizing: border-box;
}

.contact-section .inside .newsletter .wpcf7 {
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 999;
}

.contact-section .inside .newsletter .wpcf7 form {
  position: absolute;
  background: #fff;
  padding: 30px;
  width: 400px;
  max-width: 100%;
  left: calc(50% - 200px);
  top: 40px;
  border-radius: 4px;
}

.contact-section .inside .newsletter .wpcf7 form br {
  display: none;
}

.contact-section .inside .newsletter .wpcf7 form .wpcf7-not-valid-tip,
.contact-section .inside .newsletter .wpcf7 form .wpcf7-acceptance-missing {
  margin: 0;
  border: 2px solid #ED2125;
  border-radius: 4px;
  color: #ED2125;
}

.contact-section .inside .newsletter .wpcf7 form .ajax-loader {
  display: none;
}

.contact-section .inside .newsletter .wpcf7 form .ajax-loader.active {
  display: flex;
}

.contact-section .inside .newsletter .wpcf7 form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #D9D9D9;
  font-size: 0.875rem;
  padding: 6px 0;
  font-family: 'Open Sans', sans-serif;
}

.contact-section .inside .newsletter .wpcf7 form input:focus {
  outline: none;
}

.contact-section .inside .newsletter .wpcf7 form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000;
  font-family: "Open Sans", sans-serif;
}

.contact-section .inside .newsletter .wpcf7 form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
  font-family: "Open Sans", sans-serif;
}

.contact-section .inside .newsletter .wpcf7 form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #000;
  font-family: "Open Sans", sans-serif;
}

.contact-section .inside .newsletter .wpcf7 form input:-moz-placeholder {
  /* Firefox 18- */
  color: #000;
  font-family: "Open Sans", sans-serif;
}

.contact-section .inside .newsletter .wpcf7 form .wpcf7-acceptance label {
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}

.contact-section .inside .newsletter .wpcf7 form .wpcf7-acceptance label span:before {
  top: 1px;
}

.contact-section .inside .newsletter .wpcf7 form .wpcf7-acceptance label span:after {
  top: 5px;
}

.contact-section .inside .newsletter .wpcf7 form .wpcf7-submit {
  position: relative;
  width: 100%;
  height: 40px;
  background-color: #ED2125;
  border-radius: 4px;
  box-sizing: border-box;
  border: 1px solid #ED2125;
  background-image: url("../img/arrow-right-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  transition: all 200ms ease-in-out;
}

.contact-section .inside .newsletter .wpcf7 form .wpcf7-submit:disabled:hover {
  background-color: #ED2125;
  background-image: url("../img/arrow-right-white.svg");
}

.contact-section .inside .newsletter .wpcf7 form .wpcf7-submit:hover {
  background-color: #fff;
  background-image: url("../img/arrow-right-red.svg");
}

.contact-section .inside .newsletter .wpcf7 form .close-button {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.contact-section .inside .newsletter .wpcf7 form .close-button:hover span {
  background-color: #000;
}

.contact-section .inside .newsletter .wpcf7 form .close-button span {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background-color: #ED2125;
  top: calc(50% - 1px);
  left: 0;
  transition: all 200ms ease-in-out;
}

.contact-section .inside .newsletter .wpcf7 form .close-button span:nth-child(1) {
  transform: rotate(45deg);
}

.contact-section .inside .newsletter .wpcf7 form .close-button span:nth-child(2) {
  transform: rotate(-45deg);
}

.contact-section .inside .newsletter .wpcf7.active {
  display: flex;
}

.contact-section .inside .order-link {
  width: 50%;
  background-color: #ED2125;
  padding: 40px 40px 30px;
}

.contact-section .inside .order-link .title {
  color: #fff;
}

.contact-section .inside .order-link a {
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  height: 64px;
  text-transform: uppercase;
}

.contact-section .inside .order-link a p {
  font-weight: 700;
}

.feature-page {
  background-color: #fff;
  padding-bottom: 15px;
}

.feature-page .inside {
  position: relative;
}

.feature-page .inside .image-container {
  width: 100%;
  height: 430px;
  border-radius: 8px;
  overflow: hidden;
}

.feature-page .inside .image-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.feature-page .inside .red-container {
  position: absolute;
  top: 30px;
  left: 0;
  background-color: #ED2125;
}

.feature-page .inside .red-container .red-inside {
  position: relative;
  width: 490px;
  max-width: 100%;
  padding: 45px 45px 65px 0;
}

.feature-page .inside .red-container .red-inside:before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  right: 100%;
  top: 0;
  background-color: #ED2125;
}

.feature-page-servicii {
  background-color: #fff;
}

.feature-page-servicii .inside {
  position: relative;
  background-color: #F2F2F4;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 30px 0;
}

.feature-page-servicii .inside:after {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  top: 0;
  left: 100%;
  background-color: #F2F2F4;
}

.feature-page-servicii .inside .left {
  width: 50%;
  padding-right: 95px;
}

.feature-page-servicii .inside .left .red-container {
  position: relative;
  background-color: #ED2125;
  padding: 45px 45px 65px 0;
}

.feature-page-servicii .inside .left .red-container:before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  top: 0;
  right: 100%;
  background-color: #ED2125;
}

.feature-page-servicii .inside .left .red-container .page-description {
  line-height: 1.875rem;
}

.feature-page-servicii .inside .right {
  width: 50%;
}

.feature-page-servicii .inside .right .text {
  font-size: 1rem;
  color: #6D6C6C;
  max-width: 445px;
}

.feature-page-servicii .inside .right .text span {
  font-weight: 700;
  color: #000;
}

.feature-page-servicii .inside .right .items {
  width: calc(100% + 20px);
  margin-left: -10px;
}

.feature-page-servicii .inside .right .items .item {
  width: calc(50% - 20px);
  margin: 10px;
  background-color: #fff;
  border-radius: 4px;
  padding: 25px 30px;
}

.feature-page-servicii .inside .right .items .item img {
  max-width: 40px;
  max-height: 30px;
}

.feature-page-servicii .inside .right .items .item .bottom {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  margin-top: 23px;
}

.feature-page-servicii .inside .right .items .item .bottom .title {
  font-size: 0.875rem;
  font-weight: 700;
}

.feature-page-servicii .inside .right .items .item .bottom a {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #F2F2F4;
  border-radius: 50%;
  transition: all 200ms ease-in-out;
}

.feature-page-servicii .inside .right .items .item .bottom a:hover {
  background-color: #ED2125;
}

.feature-page-servicii .inside .right .items .item .bottom a:hover .white {
  display: flex;
}

.feature-page-servicii .inside .right .items .item .bottom a:hover .red {
  display: none;
}

.feature-page-servicii .inside .right .items .item .bottom a .white {
  display: none;
}

.feature-page-servicii .inside .right .items .item .bottom a .red {
  display: flex;
}

.feature-page-servicii-inner {
  background-color: #fff;
  overflow: hidden;
}

.feature-page-servicii-inner .inside {
  position: relative;
  padding: 30px 0;
}

.feature-page-servicii-inner .inside .bg-container {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(80% - 60px);
  top: 0;
  left: 0;
  background-color: #F2F2F4;
  border-radius: 8px;
  z-index: 1;
}

.feature-page-servicii-inner .inside .left,
.feature-page-servicii-inner .inside .right {
  z-index: 3;
}

.feature-page-servicii-inner .inside .left {
  width: 470px;
}

.feature-page-servicii-inner .inside .left .red-container {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #ED2125;
  padding: 30px 35px 70px 0;
  z-index: 4;
}

.feature-page-servicii-inner .inside .left .red-container:before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  top: 0;
  right: 100%;
  background-color: #ED2125;
}

.feature-page-servicii-inner .inside .left .red-container .page-title {
  font-size: 3rem;
  margin-bottom: 40px;
  margin-left: -2px;
}

.feature-page-servicii-inner .inside .left .red-container .page-description {
  line-height: 1.75rem;
}

.feature-page-servicii-inner .inside .right {
  width: calc(100% - 470px);
  padding-top: 30px;
}

.feature-page-servicii-inner .inside .right .image {
  position: relative;
}

.feature-page-servicii-inner .inside .right .image .bg-icon {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -134px;
  left: calc(50% - 250px);
  z-index: 2;
}

.feature-page-servicii-inner .inside .right .image .icon {
  width: 350px;
  z-index: 3;
}

.feature-page-traduceri-inner {
  background-color: #fff;
  overflow: hidden;
}

.feature-page-traduceri-inner .subtitle {
  font-size: 3rem;
  font-weight: 300;
  color: #fff;
  margin-top: -40px;
  margin-bottom: 30px;
}

.feature-page-traduceri-inner .inside {
  position: relative;
  padding: 30px 0 0;
  border-radius: 8px;
  background-color: #E8EAEF;
}

.feature-page-traduceri-inner .inside .image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  border-radius: 8px;
  overflow: hidden;
}

.feature-page-traduceri-inner .inside .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  padding-left: 0 !important;
}

.feature-page-traduceri-inner .inside .image.full {
  width: 100%;
}

.feature-page-traduceri-inner .inside .left {
  z-index: 3;
}

.feature-page-traduceri-inner .inside .left {
  width: 50%;
}

.feature-page-traduceri-inner .inside .left .red-container {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #ED2125;
  padding: 30px 35px 70px 0;
  z-index: 4;
}

.feature-page-traduceri-inner .inside .left .red-container:before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  top: 0;
  right: 100%;
  background-color: #ED2125;
}

.feature-page-traduceri-inner .inside .left .red-container .page-title {
  font-size: 3rem;
  margin-bottom: 40px;
  margin-left: -2px;
}

.feature-page-traduceri-inner .inside .left .red-container .page-description {
  line-height: 1.75rem;
}

.specs .inside {
  padding: 80px 0 100px;
}

.specs .inside .section-title {
  margin-bottom: 50px;
}

.specs .inside .items {
  width: calc(100% + 20px);
  margin-left: -10px;
}

.specs .inside .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  width: calc(33.33% - 20px);
  margin: 10px;
  background-color: #fff;
  padding: 30px 40px;
}

.specs .inside .items .item .image {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-self: center;
  align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
  min-width: 95px;
}

.specs .inside .items .item .text {
  width: calc(100% - 95px);
  font-size: 1rem;
  font-weight: 600;
}

.specs .inside .items .item.more {
  background-color: #ED2125;
  color: #fff;
}

.specs .inside .items .item.more:hover {
  background: #2D2D2D;
  color: #fff;
}

.specs .inside .items .item.more p {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.why {
  background-color: #fff;
}

.why .inside {
  padding: 70px 0 100px;
}

.why .inside .left .title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 2.5rem;
  color: #ED2125;
  max-width: 220px;
}

.why .inside .right .title {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 0;
}

.why .inside .right .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  -moz-align-self: flex-start;
  -ms-align-self: flex-start;
  margin-top: 55px;
}

.why .inside .right .items .item .num {
  font-size: 1.75rem;
  font-weight: 800;
  width: 55px;
  padding-right: 5px;
  color: #ED2125;
}

.why .inside .right .items .item .text {
  width: calc(100% - 55px);
  padding-left: 18px;
  border-left: 2px solid #FFE6E6;
  font-size: 0.875rem;
  color: #6D6C6C;
}

.image-bg-items {
  position: relative;
  z-index: 1;
}

.image-bg-items .inside {
  padding: 80px 0 110px;
}

.image-bg-items .inside .bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.image-bg-items .inside .bg-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.image-bg-items .inside .content {
  position: relative;
  z-index: 2;
}

.image-bg-items .inside .content .items {
  width: calc(50% - 12px);
  margin-left: -6px;
  margin-top: 50px;
}

.image-bg-items .inside .content .items .item {
  width: calc(33.33% - 12px);
  margin: 6px;
  background-color: #fff;
  padding: 16px 16px 20px;
  border-radius: 4px;
}

.image-bg-items .inside .content .items .item .text {
  font-size: 0.75rem;
  line-height: 1.125rem;
  font-weight: 600;
  margin-top: 5px;
}

.three-columns .items .item {
  width: 33.33%;
}

.breadcrumbs {
  margin-bottom: 65px;
}

.breadcrumbs .item {
  position: relative;
  font-size: 0.625rem;
  color: #fff;
  margin-left: 30px;
}

.breadcrumbs .item:before {
  position: absolute;
  content: "";
  background-image: url("../img/arrow-right-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 9px;
  height: 6.33px;
  right: calc(100% + 15px - 4.5px);
  top: calc(50% - 3px);
}

.breadcrumbs .item:first-child {
  margin-left: 0;
}

.breadcrumbs .item:first-child:before {
  display: none;
}

.breadcrumbs a {
  transition: all 200ms ease-in-out;
}

.breadcrumbs a:hover {
  text-decoration: underline;
  color: #fff;
}

.two-texts {
  background-color: #fff;
}

.two-texts .inside {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  padding: 60px 0;
}

.two-texts .inside .item {
  width: 50%;
}

.two-texts .inside .item:nth-child(odd) {
  padding-right: 140px;
}

.two-texts .inside .item:nth-child(even) {
  padding-right: 90px;
}

.two-texts .inside .item .title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.two-texts .inside .item .text {
  font-size: 1.125rem;
  line-height: 2.125rem;
}

.two-texts .inside .item .text.gray {
  font-size: 0.875rem;
  line-height: 1.75rem;
  color: #6D6C6C;
}

.two-columns {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.two-columns .left {
  width: 50%;
}

.two-columns .right {
  width: 50%;
}

.page-title,
.page-description {
  font-family: "Open Sans", sans-serif;
}

.page-title {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
}

.page-title .title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.page-title .subtitle {
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 45px;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 800;
}

.page-description {
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
  max-width: 355px;
}

.page-home .feature {
  position: relative;
  /* min-height: calc(100vh - 90px); */
}

.page-home .feature .inside .video-container {
  height: 100%;
}

.page-home .feature .inside .video-container .text {
  width: 50%;
  padding: 30px 0;
  z-index: 2;
}

.page-home .feature .inside .video-container .text .title {
  max-width: 370px;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 38px;
}

.page-home .feature .inside .video-container .text .title span {
  color: #ED2125;
}

.page-home .feature .inside .video-container .text .title:before {
  display: none;
}

.page-home .feature .inside .video-container .text .description {
  font-size: 0.875rem;
  max-width: 450px;
  color: #6D6C6C;
  margin-bottom: 55px;
}

.page-home .feature .inside .video-container .text .buttons {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.page-home .feature .inside .video-container .text .buttons .button {
  margin: 10px 17px 10px 0;
  padding: 20px;
}

.page-home .feature .inside .video-container .text .buttons .button:last-child {
  margin-right: 0;
}

.page-home .feature .inside .video-container .text .buttons .red {
  border: 1px solid #ED2125;
}

.page-home .feature .inside .video-container .text .buttons .white {
  border: 1px solid #fff;
}

.page-home .feature .inside .video-container .text .buttons .white:hover {
  background-color: #ED2125;
  border: 1px solid #ED2125;
  color: #fff;
}

.page-home .feature .video {
  position: absolute;
  right: 0;
  height: 100%;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.page-home .feature .video .bg-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.page-home .feature .video iframe {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.page-home .feature .video.active {
  width: 100%;
  animation: videoActive 100ms forwards ease-in-out;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
}

@keyframes videoActive {
  0% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}

.page-home .feature .video.active .bg-image {
  display: none;
}

.page-home .feature .video.active iframe {
  position: fixed;
  width: 1100px;
  height: calc(100vh - 60px);
  max-width: 100vw;
  max-height: 100vh;
  left: calc(50% - 550px);
  top: 30px;
  opacity: 1;
  animation: videoIframe 200ms forwards ease-in-out;
}

@keyframes videoIframe {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.page-home .feature .controllers,
.page-home .feature .controllers .inside,
.page-home .feature .controllers .inside .fade-cercle,
.page-home .feature .controllers .inside .button-play {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
}

.page-home .feature .controllers {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
}

.page-home .feature .controllers .inside {
  position: relative;
}

.page-home .feature .controllers .inside .fade-cercle {
  position: absolute;
  right: calc(50% - 95px);
  height: 190px;
  width: 95px;
  border-radius: 95px 0px 0px 95px;
  background: rgba(237, 33, 37, 0.09);
  margin-right: 95px;
}

.page-home .feature .controllers .inside .button-play {
  width: 80px;
  height: 80px;
  background-color: #ED2125;
  border-radius: 50%;
  transition: all 200ms ease-in-out;
  cursor: pointer;
  z-index: 3;
}

.page-home .feature .controllers .inside .button-play:hover {
  width: 190px;
  height: 190px;
}

.page-home .statistics {
  background-color: #fff;
}

.page-home .statistics .inside .items {
    padding: 0 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: space-around;
}

.page-home .statistics .inside .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  width: 10%;
  min-width: 230px;
  padding: 45px 20px;
}

.page-home .statistics .inside .items .item .val {
  font-size: 2.1875rem;
  font-weight: 600;
  color: #ED2125;
  margin-top: 10px;
}

.page-home .statistics .inside .items .item .description {
  font-size: 0.875rem;
  font-weight: 700;
}

.page-home .our-services {
  position: relative;
  background-color: #fff;
}

.page-home .our-services .inside {
  padding: 100px 0;
}

.page-home .our-services .inside .title-section {
  margin-bottom: 50px;
}

.page-home .our-services .inside .title-section .title {
  font-size: 1.75rem;
  font-weight: 600;
}

.page-home .our-services .inside .title-section .button {
  padding: 20px 20px 20px 40px;
  border: 1px solid #ED2125;
  transition: all 200ms ease-in-out;
}

.page-home .our-services .inside .title-section .button:hover {
  border: 1px solid #ED2125;
}

.page-home .our-services .inside .title-section .button p {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 61px;
}

.page-home .our-services .inside .title-section .button img {
  height: 10px;
}

.page-home .our-services .inside .items {
  width: calc(100% + 20px);
  margin-left: -10px;
}

.page-home .our-services .inside .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  width: calc(25% - 20px);
  margin: 10px;
  background-color: #F2F2F4;
  border-radius: 4px;
  padding: 30px;
  min-height: 200px;
  transition: all 200ms ease-in-out;
}

.page-home .our-services .inside .items .item:hover {
  background-color: #2D2D2D;
  color: #fff;
}

.page-home .our-services .inside .items .item:hover .text-hover {
  display: flex;
}

.page-home .our-services .inside .items .item:hover .item-icon {
  display: none;
}

.page-home .our-services .inside .items .item .text-hover {
  display: none;
  font-size: 0.75rem;
  max-width: 190px;
}

.page-home .our-services .inside .items .item .item-icon {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  -moz-align-self: flex-star;
  -ms-align-self: flex-star;
}

.page-home .our-services .inside .items .item .bottom .title {
  width: calc(100% - 32px);
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 700;
}

.page-home .our-services .inside .items .item .bottom a {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  -moz-align-self: flex-end;
  -ms-align-self: flex-end;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
}

.page-home .our-services .inside .items .item .bottom a:hover {
  background-color: #ED2125;
}

.page-home .our-services .inside .items .item .bottom a:hover img {
  filter: grayscale(1);
}

.page-cine-suntem .feature-page .inside .image-container,
.page-echipa .feature-page .inside .image-container {
  height: 370px;
}

.page-cine-suntem .feature-page .inside .red-container,
.page-echipa .feature-page .inside .red-container {
  bottom: 0;
  top: 0;
}

.page-cine-suntem .feature-page .inside .red-container .red-inside,
.page-echipa .feature-page .inside .red-container .red-inside {
  height: 100%;
  width: 400px;
}

.page-cine-suntem .principles {
  background: #fff;
}

.page-cine-suntem .principles .inside {
  padding: 70px 0;
}

.page-cine-suntem .principles .inside .left .section-title {
  max-width: 150px;
}

.page-cine-suntem .principles .inside .right .items .item {
  margin: 0 50px 30px;
}

.page-cine-suntem .principles .inside .right .items .item p {
  color: #6D6C6C;
}

.page-cine-suntem .four-items {
  background-color: #fff;
}

.page-cine-suntem .four-items .inside .items {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  width: calc(100% + 20px);
  margin-left: -10px;
}

.page-cine-suntem .four-items .inside .items .item {
  width: calc(25% - 20px);
  margin: 10px;
  background-color: #F2F2F4;
  padding: 40px 30px;
  min-height: 270px;
}

.page-cine-suntem .four-items .inside .items .item .image {
  min-height: 90px;
}

.page-cine-suntem .four-items .inside .items .item .title {
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: 700;
  min-height: 67px;
}

.page-cine-suntem .four-items .inside .items .item .description {
  font-size: 0.875rem;
  line-height: 1.625rem;
  color: #6D6C6C;
}

.page-cine-suntem .timeline {
  background-color: #fff;
  padding: 110px 0 120px;
}

.page-cine-suntem .timeline .inside {
  position: relative;
}

.page-cine-suntem .timeline .inside .left {
  width: 290px;
}

.page-cine-suntem .timeline .inside .timeline-content {
  width: calc(100% - 290px);
}

.page-cine-suntem .timeline .inside .timeline-content .slick-slider {
  position: inherit;
}

.page-cine-suntem .timeline .inside .timeline-content .timeline-items .timeline-item .year {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ED2125;
  margin-bottom: 40px;
}

.page-cine-suntem .timeline .inside .timeline-content .timeline-items .timeline-item .line {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #DEDEDE;
  margin: 13px 0;
}

.page-cine-suntem .timeline .inside .timeline-content .timeline-items .timeline-item .line:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 26px;
  background-color: #ED2125;
  top: calc(50% - 13px);
  left: -3px;
}

.page-cine-suntem .timeline .inside .timeline-content .timeline-items .timeline-item .description {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 30px;
  max-width: 140px;
}

.page-cine-suntem .timeline .inside .timeline-content .timeline-items .timeline-item.slick-active .line:before {
  left: 0;
}

.page-cine-suntem .timeline .inside .timeline-content .timeline-items .slick-prev,
.page-cine-suntem .timeline .inside .timeline-content .timeline-items .slick-next {
  position: absolute;
  color: #ED2125;
  bottom: 0;
  background-color: #ED2125;
  border: 1px solid #ED2125;
  border-radius: 4px;
  width: 48px;
  height: 48px;
  transition: all 200ms ease-in-out;
  background-image: url("../img/arrow-right-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.page-cine-suntem .timeline .inside .timeline-content .timeline-items .slick-prev:hover,
.page-cine-suntem .timeline .inside .timeline-content .timeline-items .slick-next:hover {
  background-color: #fff;
  color: #ED2125;
  background-image: url("../img/arrow-right-gray.svg");
}

.page-cine-suntem .timeline .inside .timeline-content .timeline-items .slick-prev {
  left: 0;
  transform: rotate(180deg);
}

.page-cine-suntem .timeline .inside .timeline-content .timeline-items .slick-next {
  left: 48px;
}

.page-echipa .team .category {
  background-color: #fff;
}

.page-echipa .team .category:nth-child(even) {
  background-color: #F2F2F4;
}

.page-echipa .team .category .inside {
  padding: 60px 0;
}

.page-echipa .team .category .inside .category-title {
  font-size: 1rem;
  color: #9B9B9B;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 3px;
}

.page-echipa .team .category .inside .items {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  width: calc(100% + 20px);
  margin-left: -10px;
}

.page-echipa .team .category .inside .items .item {
  width: calc(20% - 20px);
  margin: 10px;
}

.page-echipa .team .category .inside .items .item:hover .image .img-member {
  opacity: 0;
  animation: imgMember 300ms forwards ease-in-out;
}

@keyframes imgMember {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.page-echipa .team .category .inside .items .item:hover .image .gif {
  opacity: 1;
  animation: imgGif 300ms forwards ease-in-out;
}

@keyframes imgGif {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.page-echipa .team .category .inside .items .item .image {
  position: relative;
  width: 100%;
  height: 215px;
  overflow: hidden;
  border-radius: 4px;
}

.page-echipa .team .category .inside .items .item .image:hover .info {
  bottom: 0;
}

.page-echipa .team .category .inside .items .item .image .img-member {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.page-echipa .team .category .inside .items .item .image .gif {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
}

.page-echipa .team .category .inside .items .item .image .info {
  display: none;
  bottom: -100%;
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  background-color: rgba(237, 28, 36, 0.85);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 25px 20px;
  transition: all 300ms ease-in-out;
}

.page-echipa .team .category .inside .items .item .image .info .info-item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}

.page-echipa .team .category .inside .items .item .image .info .info-item img {
  width: 9px;
  margin-right: 12px;
}

.page-echipa .team .category .inside .items .item .image .info .info-item p {
  font-size: 0.625rem;
  color: #fff;
}

.page-echipa .team .category .inside .items .item .name {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 9px 0;
}

.page-echipa .team .category .inside .items .item .job-title {
  font-size: 0.625rem;
  font-weight: 600;
  color: #ED2125;
  background-color: rgba(237, 28, 36, 0.06);
  display: inline-block;
  padding: 4px 15px;
  border-radius: 4px;
}

.page-echipa .team .category .inside .items .item.bear {
  position: relative;
  background-color: #ED2125;
  padding-bottom: 10px;
}

.page-echipa .team .category .inside .items .item.bear:hover .image .gif {
  display: none;
}

.page-echipa .team .category .inside .items .item.bear:hover .image .name,
.page-echipa .team .category .inside .items .item.bear:hover .image .job-title {
  display: none;
}

.page-echipa .team .category .inside .items .item.bear .hover-txt {
  display: none;
  position: absolute;
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  max-width: 140px;
  left: calc(50% - 70px);
  top: calc(50% - 52px);
}

.page-echipa .team .category .inside .items .item.bear .image .image-member {
  transition: all 200ms ease-in-out;
}

.page-echipa .team .category .inside .items .item.bear .name {
  line-height: normal;
  margin-bottom: 0px;
}

.page-echipa .team .category .inside .items .item.bear .name,
.page-echipa .team .category .inside .items .item.bear .job-title {
  color: #fff;
  text-align: center;
  width: 100%;
  transition: all 200ms ease-in-out;
}

.page-revizie .why .small-left .left .section-title {
  max-width: 200px;
  margin-bottom: 45px;
}

.page-revizie .why .small-left .left .page-description {
  font-size: 1.125rem;
  line-height: 34px;
  color: #000;
  max-width: 295px;
}

.page-interpretariat .three-columns {
  background-color: #fff;
}

.page-interpretariat .three-columns .inside {
  padding: 50px 0 181px;
}

.page-interpretariat .three-columns .inside .items .item {
  padding-right: 70px;
}

.page-interpretariat .three-columns .inside .items .item p {
  line-height: 1.75rem;
}

.page-interpretariat .three-columns .inside .items .item .bigger {
  font-size: 1.125rem;
  line-height: 2.125rem;
}

.page-interpretariat .three-columns .inside .items .types .title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 37px;
}

.page-interpretariat .three-columns .inside .items .types .type {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  margin-bottom: 30px;
}

.page-interpretariat .three-columns .inside .items .types .type p {
  line-height: auto;
}

.page-interpretariat .three-columns .inside .items .types .type .cercle {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #ED2125;
  border-radius: 50%;
}

.page-interpretariat .three-columns .inside .items .types .type .cercle img {
  margin: 0 auto;
}

.page-interpretariat .three-columns .inside .items .types .type .text {
  width: calc(100% - 34px);
  padding-left: 23px;
}

.page-interpretariat .three-columns .inside .items .types .type .text .title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ED2125;
  margin-bottom: 0;
}

.page-interpretariat .three-columns .inside .items .types .type .text .description {
  font-size: 0.75rem;
  line-height: 0.875rem;
  color: #6D6C6C;
}

.page-interpretariat .languages .small-right {
  margin-top: -181px;
}

.page-interpretariat .languages .small-right .left {
  padding-right: 98px;
}

.page-interpretariat .languages .small-right .left .image {
  width: 100%;
  height: 337px;
}

.page-interpretariat .languages .small-right .left .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.page-interpretariat .languages .small-right .right .big {
  font-size: 6.25rem;
  font-weight: 800;
  color: #ED2125;
  margin-bottom: 25xp;
}

.page-interpretariat .languages .small-right .right .description {
  font-size: 0.875rem;
  line-height: 1.75rem;
}

.page-interpretariat .domains .inside {
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  padding: 90px 0 110px;
}

.page-interpretariat .domains .inside .right .items {
  width: calc(100% + 20px);
  margin-left: -10px;
}

.page-interpretariat .domains .inside .right .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  width: calc(25% - 20px);
  max-width: 100%;
  margin: 10px;
}

.page-interpretariat .domains .inside .right .items .item img {
  margin-right: 25px;
}

.page-interpretariat .domains .inside .right .items .item .text {
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 700;
}

.page-dtp .image-bg-items {
  background-color: #e4e8e9;
}

.page-legalizare .why .inside .left,
.page-localizare .why .inside .left {
  padding-right: 50px;
}

.page-legalizare .why .inside .left img,
.page-localizare .why .inside .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-traduceri-inner .two-texts .inside {
  padding: 90px 0 80px;
}

.page-traduceri-inner .two-texts .inside .item:nth-child(odd) {
  width: 42%;
}

.page-traduceri-inner .two-texts .inside .item:nth-child(even) {
  width: 58%;
  padding-left: 95px;
  border-left: 2px solid #FFE6E6;
}

.page-traduceri-inner .why {
  background-color: #F2F2F4;
}

.page-traduceri-inner .why .items {
  width: calc(100% + 20px);
  margin-left: -10px;
}

.page-traduceri-inner .why .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  width: calc(25% - 20px);
  margin: 10px;
  background-color: #fff;
  padding: 30px;
}

.page-traduceri-inner .why .items .item .icon {
  min-width: 80px;
}

.page-traduceri-inner .why .items .item .text {
  font-size: 1rem;
  line-height: 22px;
  font-weight: 600;
}

.page-traduceri-inner .workflow {
  background-color: #fff;
}

.page-traduceri-inner .workflow .inside {
  padding: 80px 0;
}

.page-traduceri-inner .workflow .inside .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  padding: 20px 0;
  border-radius: 8px;
  overflow: hidden;
}

.page-traduceri-inner .workflow .inside .items .item:first-child .number-section:before {
  display: none;
}

.page-traduceri-inner .workflow .inside .items .item:nth-child(odd) .number-section:before {
  background-color: #F2F2F4;
}

.page-traduceri-inner .workflow .inside .items .item:nth-child(even) {
  background-color: #F2F2F4;
}

.page-traduceri-inner .workflow .inside .items .item:nth-child(even) .number-section:before {
  background-color: #fff;
}

.page-traduceri-inner .workflow .inside .items .item .number-section,
.page-traduceri-inner .workflow .inside .items .item .title-section,
.page-traduceri-inner .workflow .inside .items .item .text-section {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
}

.page-traduceri-inner .workflow .inside .items .item .number-section {
  position: relative;
  width: 13%;
}

.page-traduceri-inner .workflow .inside .items .item .number-section:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  top: -40px;
  left: calc(50% - 20px);
  transform: rotate(45deg);
}

.page-traduceri-inner .workflow .inside .items .item .number-section p {
  font-size: 3.75rem;
  font-weight: 800;
  color: #ED2125;
  margin: 0 auto;
}

.page-traduceri-inner .workflow .inside .items .item .title-section {
  width: 32%;
}

.page-traduceri-inner .workflow .inside .items .item .title-section p {
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: 700;
  max-width: 230px;
}

.page-traduceri-inner .workflow .inside .items .item .text-section {
  width: 50%;
}

.page-traduceri-inner .workflow .inside .items .item .text-section p {
  font-size: 0.875rem;
  line-height: 1.625rem;
  color: #6D6C6C;
  max-width: 470px;
}

.page-tr-specializate .domenii {
  background-color: #fff;
}

.page-tr-specializate .domenii .inside {
  padding: 90px 0;
}

.page-tr-specializate .domenii .inside .section-title {
  margin-bottom: 45px;
}

.page-tr-specializate .domenii .inside .items {
  width: calc(100% + 20px);
  margin-left: -10px;
}

.page-tr-specializate .domenii .inside .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  position: relative;
  height: 200px;
  width: calc(33.33% - 20px);
  border-radius: 4px;
  overflow: hidden;
  margin: 10px;
  padding: 30px;
}

.page-tr-specializate .domenii .inside .items .item .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  z-index: 1;
}

.page-tr-specializate .domenii .inside .items .item .bottom {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  width: 100%;
}

.page-tr-specializate .domenii .inside .items .item .bottom .cercle {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
}

.page-tr-specializate .domenii .inside .items .item .bottom .cercle img {
  margin: 0 auto;
}

.page-tr-specializate .domenii .inside .items .item .bottom .cercle .white {
  display: none;
}

.page-tr-specializate .domenii .inside .items .item .bottom .cercle .red {
  display: flex;
}

.page-tr-specializate .domenii .inside .items .item .bottom .text {
  font-size: 1.125rem;
  line-height: 24px;
  font-weight: 700;
  color: #fff;
  max-width: 180px;
  z-index: 2;
}

.page-tr-specializate .ce-oferim .inside {
  padding: 100px 0;
}

.page-tr-specializate .ce-oferim .inside .section-title {
  margin-bottom: 55px;
}

.page-tr-specializate .ce-oferim .inside .items {
  width: calc(100% + 20px);
  margin-left: -10px;
}

.page-tr-specializate .ce-oferim .inside .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  width: calc(25% - 20px);
  margin: 10px;
  padding: 30px 25px;
  background-color: #fff;
  border-radius: 4px;
}

.page-tr-specializate .ce-oferim .inside .items .item .image {
  width: 75px;
}

.page-tr-specializate .ce-oferim .inside .items .item .text {
  width: calc(100% - 75px);
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 700;
}

.page-tr-medicale .two-texts .inside .item .text a:hover {
  text-decoration: underline;
}

.page-tr-medicale .specializari {
  background-color: #fff;
}

.page-tr-medicale .specializari .inside {
  padding: 90px 0px 60px;
}

.page-tr-medicale .specializari .inside .left .section-title {
  max-width: 270px;
}

.page-tr-medicale .specializari .inside .right .items {
  width: calc(100% + 20px);
  margin-left: -10px;
}

.page-tr-medicale .specializari .inside .right .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  width: calc(33.33% - 20px);
  margin: 10px;
}

.page-tr-medicale .specializari .inside .right .items .item img {
  margin-right: 25px;
  min-width: 26px;
}

.page-tr-medicale .specializari .inside .right .items .item .text {
  font-size: 0.875rem;
  font-weight: 600;
}

.page-tr-medicale .colaboratori-tipuri {
  background-color: #fff;
}

.page-tr-medicale .colaboratori-tipuri .inside {
  padding: 30px 0;
}

.page-tr-medicale .colaboratori-tipuri .inside .left,
.page-tr-medicale .colaboratori-tipuri .inside .right {
  padding: 50px 50px 60px;
  background-color: #F2F2F4;
  border-radius: 4px;
}

.page-tr-medicale .colaboratori-tipuri .inside .left {
  width: calc(42% - 20px);
  margin-right: 20px;
}

.page-tr-medicale .colaboratori-tipuri .inside .left .title {
  font-size: 1.875rem;
  line-height: 1.875rem;
  font-weight: 800;
  color: #ED2125;
  margin-bottom: 60px;
}

.page-tr-medicale .colaboratori-tipuri .inside .left .description {
  line-height: 1.75rem;
  margin-bottom: 65px;
}

.page-tr-medicale .colaboratori-tipuri .inside .left .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  width: 100%;
  padding: 20px;
  background-color: #fff;
  margin-bottom: 10px;
}

.page-tr-medicale .colaboratori-tipuri .inside .left .items .item img {
  margin-right: 20px;
  width: 26px;
}

.page-tr-medicale .colaboratori-tipuri .inside .left .items .item .text {
  line-height: 1.25rem;
  max-width: 270px;
}

.page-tr-medicale .colaboratori-tipuri .inside .right {
  width: 58%;
}

.page-tr-medicale .colaboratori-tipuri .inside .right .title {
  font-size: 1.875rem;
  line-height: 1.875rem;
  font-weight: 800;
  padding-bottom: 35px;
}

.page-tr-medicale .colaboratori-tipuri .inside .right .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  position: relative;
  width: 50%;
  padding: 15px 40px 15px 0;
}

.page-tr-medicale .colaboratori-tipuri .inside .right .items .item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, #CBCBCB 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 5px 1px;
  background-repeat: repeat-x;
}

.page-tr-medicale .colaboratori-tipuri .inside .right .items .item:nth-child(1):before, .page-tr-medicale .colaboratori-tipuri .inside .right .items .item:nth-child(2):before {
  display: none;
}

.page-tr-medicale .colaboratori-tipuri .inside .right .items .item img {
  margin-right: 20px;
}

.page-tr-medicale .colaboratori-tipuri .inside .right .items .item .text {
  line-height: 1.25rem;
  font-weight: 600;
}

.page-tr-petrol .languages {
  background-color: #fff;
}

.page-tr-petrol .languages .inside {
  padding: 80px 0;
}

.page-tr-petrol .languages .inside .left .image img {
  display: flex;
  margin: 0 auto;
}

.page-tr-petrol .languages .inside .right .description {
  font-size: 1.125rem;
  line-height: 2.125rem;
  font-weight: 700;
  max-width: 510px;
}

.page-tr-petrol .languages .inside .right .item {
  width: 50%;
  padding-right: 60px;
}

.page-tr-petrol .languages .inside .right .text {
  color: #6D6C6C;
}

.page-tr-petrol .vast-domain .inside {
  padding: 65px 0 90px;
}

.page-tr-petrol .vast-domain .inside .items {
  width: calc(100% + 20px);
  margin-left: -10px;
}

.page-tr-petrol .vast-domain .inside .items .item {
  width: calc(33.33% - 20px);
  margin: 10px;
  background-color: #fff;
  padding: 30px 25px;
}

.page-tr-petrol .vast-domain .inside .items .item img {
  width: 26px;
  margin-bottom: 15px;
}

.page-tr-petrol .vast-domain .inside .items .item .title {
  font-size: 0.875rem;
  line-height: 1.25rem;
  max-width: 300px;
  font-weight: 700;
}

.page-tr-petrol .vast-domain .inside .items .item .text {
  font-size: 0.75rem;
  line-height: 1.125rem;
  font-style: italic;
  color: #6D6C6C;
  margin-top: 10px;
}

.page-tr-it .text-content,
.page-tr-marketing .text-content,
.page-tr-financiare .text-content {
  background-color: #fff;
}

.page-tr-it .text-content .inside,
.page-tr-marketing .text-content .inside,
.page-tr-financiare .text-content .inside {
  padding: 90px 0;
}

.page-tr-it .text-content .inside .left,
.page-tr-marketing .text-content .inside .left,
.page-tr-financiare .text-content .inside .left {
  width: 370px;
}

.page-tr-it .text-content .inside .left .text,
.page-tr-marketing .text-content .inside .left .text,
.page-tr-financiare .text-content .inside .left .text {
  font-size: 1.375rem;
  line-height: 40px;
  max-width: 270px;
}

.page-tr-it .text-content .inside .right,
.page-tr-marketing .text-content .inside .right,
.page-tr-financiare .text-content .inside .right {
  width: calc(100% - 370px);
  border-left: 2px solid #FFE6E6;
  padding-left: 115px;
}

.page-tr-it .text-content .inside .right .title,
.page-tr-marketing .text-content .inside .right .title,
.page-tr-financiare .text-content .inside .right .title {
  width: 100%;
  font-size: 1.125rem;
  line-height: 2.125rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.page-tr-it .text-content .inside .right .text,
.page-tr-marketing .text-content .inside .right .text,
.page-tr-financiare .text-content .inside .right .text {
  width: 40%;
  line-height: 28px;
  color: #6D6C6C;
  padding-right: 50px;
  margin-bottom: 15px;
}

.page-tr-it .text-content .inside .right .text.larger,
.page-tr-marketing .text-content .inside .right .text.larger,
.page-tr-financiare .text-content .inside .right .text.larger {
  width: 60%;
}

.page-tr-it .text-content .inside .right .text.full,
.page-tr-marketing .text-content .inside .right .text.full,
.page-tr-financiare .text-content .inside .right .text.full {
  width: 100%;
}

.page-tr-it .tipuri-documente .inside,
.page-tr-marketing .tipuri-documente .inside,
.page-tr-financiare .tipuri-documente .inside {
  padding: 80px 0 75px;
}

.page-tr-it .tipuri-documente .inside .left,
.page-tr-marketing .tipuri-documente .inside .left,
.page-tr-financiare .tipuri-documente .inside .left {
  max-width: 270px;
}

.page-tr-it .tipuri-documente .inside .right .text,
.page-tr-marketing .tipuri-documente .inside .right .text,
.page-tr-financiare .tipuri-documente .inside .right .text {
  font-size: 1.125rem;
  line-height: 2.125rem;
  color: #6D6C6C;
}

.page-tr-it .tipuri-documente .inside .items,
.page-tr-marketing .tipuri-documente .inside .items,
.page-tr-financiare .tipuri-documente .inside .items {
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-top: 50px;
}

.page-tr-it .tipuri-documente .inside .items .item,
.page-tr-marketing .tipuri-documente .inside .items .item,
.page-tr-financiare .tipuri-documente .inside .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  position: relative;
  width: calc(25% - 20px);
  margin: 0 10px;
  padding: 25px 40px 25px 0;
}

.page-tr-it .tipuri-documente .inside .items .item:before,
.page-tr-marketing .tipuri-documente .inside .items .item:before,
.page-tr-financiare .tipuri-documente .inside .items .item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, #CBCBCB 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 5px 1px;
  background-repeat: repeat-x;
}

.page-tr-it .tipuri-documente .inside .items .item:nth-child(1):before, .page-tr-it .tipuri-documente .inside .items .item:nth-child(2):before, .page-tr-it .tipuri-documente .inside .items .item:nth-child(3):before, .page-tr-it .tipuri-documente .inside .items .item:nth-child(4):before,
.page-tr-marketing .tipuri-documente .inside .items .item:nth-child(1):before,
.page-tr-marketing .tipuri-documente .inside .items .item:nth-child(2):before,
.page-tr-marketing .tipuri-documente .inside .items .item:nth-child(3):before,
.page-tr-marketing .tipuri-documente .inside .items .item:nth-child(4):before,
.page-tr-financiare .tipuri-documente .inside .items .item:nth-child(1):before,
.page-tr-financiare .tipuri-documente .inside .items .item:nth-child(2):before,
.page-tr-financiare .tipuri-documente .inside .items .item:nth-child(3):before,
.page-tr-financiare .tipuri-documente .inside .items .item:nth-child(4):before {
  display: none;
}

.page-tr-it .tipuri-documente .inside .items .item img,
.page-tr-marketing .tipuri-documente .inside .items .item img,
.page-tr-financiare .tipuri-documente .inside .items .item img {
  margin-right: 20px;
}

.page-tr-it .tipuri-documente .inside .items .item .text,
.page-tr-marketing .tipuri-documente .inside .items .item .text,
.page-tr-financiare .tipuri-documente .inside .items .item .text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}

.page-tr-automotive .caracteristici {
  background-color: #fff;
}

.page-tr-automotive .caracteristici .inside {
  padding: 70px 0 60px;
}

.page-tr-automotive .caracteristici .inside .section-title {
  margin-bottom: 35px;
}

.page-tr-automotive .caracteristici .inside .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  width: 33.33%;
  padding-right: 15px;
}

.page-tr-automotive .caracteristici .inside .items .item .cercle {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-align-self: center;
  align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
  width: 35px;
  height: 35px;
  border: 1px solid #ED2125;
  border-radius: 50%;
  margin-right: 20px;
}

.page-tr-automotive .caracteristici .inside .items .item .cercle img {
  width: 15px;
  margin: 0 auto;
}

.page-tr-automotive .caracteristici .inside .items .item .text {
  width: calc(100% - 55px);
  -webkit-align-self: flex-start;
  align-self: flex-start;
  -moz-align-self: flex-start;
  -ms-align-self: flex-start;
}

.page-tr-automotive .caracteristici .inside .items .item .text .red {
  font-weight: 700;
}

.page-tr-automotive .caracteristici .inside .items .item .text .description {
  font-size: 0.75rem;
  color: #6D6C6C;
}

.page-tr-automotive .dispozitie {
  background-color: #fff;
}

.page-tr-automotive .dispozitie .inside {
  padding: 70px 0;
}

.page-tr-automotive .dispozitie .inside .section-title {
  width: 100%;
}

.page-tr-automotive .dispozitie .inside .left {
  width: 60%;
  padding-right: 10%;
  padding-top: 55px;
}

.page-tr-automotive .dispozitie .inside .left .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  background-color: #F2F2F4;
  border-radius: 4px;
  padding: 15px  12px;
  margin-bottom: 15px;
}

.page-tr-automotive .dispozitie .inside .left .items .item img {
  width: 26px;
  margin-right: 20px;
}

.page-tr-automotive .dispozitie .inside .left .items .item .text {
  line-height: 1.25rem;
  font-weight: 600;
  max-width: 480px;
}

.page-tr-automotive .dispozitie .inside .right {
  width: 40%;
}

.page-tr-automotive .dispozitie .inside .right .red {
  font-size: 1.125rem;
  line-height: 2.125rem;
  font-weight: 700;
  margin-bottom: 60px;
}

.page-tr-automotive .dispozitie .inside .right .text {
  font-size: 1rem;
  line-height: 1.875rem;
  color: #6D6C6C;
}

.page-tr-automotive .compromisuri {
  background-color: #fff;
}

.page-tr-automotive .compromisuri .inside .left {
  width: calc(40% - 20px);
  margin-right: 20px;
  background-color: #F2F2F4;
  padding: 50px 60px;
}

.page-tr-automotive .compromisuri .inside .left .section-title {
  margin-bottom: 60px;
}

.page-tr-automotive .compromisuri .inside .left .text {
  font-size: 1rem;
  line-height: 1.875rem;
  color: #6D6C6C;
  margin-bottom: 40px;
}

.page-tr-automotive .compromisuri .inside .left .text:last-child {
  margin-bottom: 0;
}

.page-tr-automotive .compromisuri .inside .types {
  width: 60%;
  background-color: #F2F2F4;
  padding: 50px 60px;
}

.page-tr-automotive .compromisuri .inside .types .items {
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-top: 50px;
}

.page-tr-automotive .compromisuri .inside .types .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  position: relative;
  width: calc(50% - 20px);
  margin: 0 10px;
  padding: 25px 40px 25px 0;
}

.page-tr-automotive .compromisuri .inside .types .items .item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, #CBCBCB 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 5px 1px;
  background-repeat: repeat-x;
}

.page-tr-automotive .compromisuri .inside .types .items .item:nth-child(1):before, .page-tr-automotive .compromisuri .inside .types .items .item:nth-child(2):before {
  display: none;
}

.page-tr-automotive .compromisuri .inside .types .items .item img {
  margin-right: 20px;
}

.page-tr-automotive .compromisuri .inside .types .items .item .text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}

.page-tr-juridice .experienta {
  background-color: #fff;
}

.page-tr-juridice .experienta .inside {
  padding: 70px 0 80px;
}

.page-tr-juridice .experienta .inside .left {
  width: 50%;
}

.page-tr-juridice .experienta .inside .left .text {
  font-size: 1.125rem;
  line-height: 2.125rem;
  font-weight: 700;
  padding-left: 46px;
  border-left: 2px solid #FFE6E6;
  max-width: 410px;
}

.page-tr-juridice .experienta .inside .right {
  width: 50%;
}

.page-tr-juridice .experienta .inside .right .title-section {
  margin-bottom: 25px;
}

.page-tr-juridice .experienta .inside .right .text {
  line-height: 1.75rem;
  color: #6D6C6C;
}

.page-tr-juridice .dispozitie {
  background-color: #fff;
}

.page-tr-juridice .dispozitie .inside {
  padding: 90px 0 100px;
}

.page-tr-juridice .dispozitie .inside .left {
  width: 50%;
}

.page-tr-juridice .dispozitie .inside .left .red {
  font-size: 1.125rem;
  line-height: 2.125rem;
  font-weight: 700;
  margin-bottom: 90px;
  max-width: 370px;
}

.page-tr-juridice .dispozitie .inside .left .text {
  font-size: 1rem;
  line-height: 1.875rem;
  color: #6D6C6C;
  max-width: 370px;
}

.page-tr-juridice .dispozitie .inside .right {
  width: 50%;
}

.page-tr-juridice .dispozitie .inside .right .section-title {
  margin-bottom: 55px;
}

.page-tr-juridice .dispozitie .inside .right .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  background-color: #F2F2F4;
  border-radius: 4px;
  padding: 15px  12px;
  margin-bottom: 15px;
}

.page-tr-juridice .dispozitie .inside .right .items .item img {
  width: 26px;
  margin-right: 20px;
}

.page-tr-juridice .dispozitie .inside .right .items .item .text {
  line-height: 1.25rem;
  font-weight: 600;
  max-width: 480px;
}

.page-tr-juridice .types .inside {
  padding: 70px 0 80px;
}

.page-tr-juridice .types .inside .left .section-title {
  max-width: 190px;
}

.page-tr-juridice .types .inside .right .items {
  width: calc(100% + 20px);
  margin-left: -10px;
}

.page-tr-juridice .types .inside .right .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  position: relative;
  width: calc(33.33% - 20px);
  margin: 0 10px;
  padding: 25px 40px 25px 0;
}

.page-tr-juridice .types .inside .right .items .item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, #CBCBCB 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 5px 1px;
  background-repeat: repeat-x;
}

.page-tr-juridice .types .inside .right .items .item:nth-child(1):before, .page-tr-juridice .types .inside .right .items .item:nth-child(2):before, .page-tr-juridice .types .inside .right .items .item:nth-child(3):before {
  display: none;
}

.page-tr-juridice .types .inside .right .items .item img {
  margin-right: 20px;
}

.page-tr-juridice .types .inside .right .items .item .text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}

.page-tr-traduceri .numar-limbi {
  background-color: #fff;
}

.page-tr-traduceri .numar-limbi .inside {
  padding: 90px 0;
}

.page-tr-traduceri .numar-limbi .inside .left .text {
  font-size: 1.125rem;
  line-height: 34px;
  font-weight: 700;
  max-width: 290px;
}

.page-tr-traduceri .numar-limbi .inside .right {
  border-left: 2px solid #FFE6E6;
  padding-left: 80px;
}

.page-tr-traduceri .numar-limbi .inside .right .title {
  width: 510px;
  max-width: 100%;
  font-size: 1.125rem;
  line-height: 2.125rem;
  font-weight: 700;
  margin-bottom: 35px;
}

.page-tr-traduceri .numar-limbi .inside .right .text {
  width: 50%;
  padding-right: 50px;
  font-size: 0.875rem;
  line-height: 1.75rem;
  color: #6D6C6C;
}

.page-tr-traduceri .numar-limbi .inside .right .text:last-child {
  padding-right: 0;
}

.page-tr-traduceri .tabs {
  background-color: #fff;
}

.page-tr-traduceri .tabs .inside {
  padding: 80px 0;
}

.page-tr-traduceri .tabs .inside .section-title {
  margin-bottom: 65px;
}

.page-tr-traduceri .tabs .inside .left {
  width: 767px;
}

.page-tr-traduceri .tabs .inside .left .tabs-inner .tabs-menu {
  margin-bottom: 40px;
}

.page-tr-traduceri .tabs .inside .left .tabs-inner .tabs-menu .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  width: calc(25%);
  border: 1px solid #CECECE;
  font-size: 0.75rem;
  font-weight: 600;
  color: #919191;
  text-align: center;
  margin-left: -1px;
  cursor: pointer;
}

.page-tr-traduceri .tabs .inside .left .tabs-inner .tabs-menu .item:hover {
  color: #ED2125;
}

.page-tr-traduceri .tabs .inside .left .tabs-inner .tabs-menu .item:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-left: 0;
}

.page-tr-traduceri .tabs .inside .left .tabs-inner .tabs-menu .item:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.page-tr-traduceri .tabs .inside .left .tabs-inner .tabs-menu .item.active {
  border: 1px solid #ED2125;
  color: #ED2125;
  z-index: 2;
}

.page-tr-traduceri .tabs .inside .left .tabs-inner .tabs-menu .item.active:hover {
  background-color: transparent;
}

.page-tr-traduceri .tabs .inside .left .tabs-inner .tabs-content .item {
  display: none;
}

.page-tr-traduceri .tabs .inside .left .tabs-inner .tabs-content .item ul {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  padding: 0;
}

.page-tr-traduceri .tabs .inside .left .tabs-inner .tabs-content .item ul li {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  width: 25%;
  padding-right: 10px;
  padding: 3px 10px 3px 0;
  font-size: 0.875rem;
}

.page-tr-traduceri .tabs .inside .left .tabs-inner .tabs-content .item ul li img {
  width: 9px;
  margin-right: 12px;
}

.page-tr-traduceri .tabs .inside .left .tabs-inner .tabs-content .item.active {
  display: flex;
}

.page-tr-traduceri .tabs .inside .right {
  width: calc(100% - 767px);
  padding-left: 100px;
}

.page-tr-traduceri .tabs .inside .right .red-container {
  background-color: #ED2125;
  border-radius: 8px;
  padding: 40px 30px;
}

.page-tr-traduceri .tabs .inside .right .red-container .title {
  font-size: 1.375rem;
  line-height: 2.375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 120px;
}

.page-tr-traduceri .tabs .inside .right .red-container .button {
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: transparent;
  padding: 22px 15px;
}

.page-tr-traduceri .tabs .inside .right .red-container .button p {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.page-tr-traduceri .tabs .inside .right .red-container .button:hover {
  background-color: #fff;
  color: #ED2125;
}

.page-tr-traduceri .tabs .inside .right .red-container .button:hover .white {
  display: none;
}

.page-tr-traduceri .tabs .inside .right .red-container .button:hover .red {
  display: flex;
}

.page-tr-traduceri .tabs .inside .right .red-container .button .white {
  display: flex;
}

.page-tr-traduceri .tabs .inside .right .red-container .button .red {
  display: none;
}

.page-tr-traduceri .testimonials {
  background-color: transparent;
}

.page-tr-traduceri .testimonials .inside .right .item {
  width: calc(50% - 20px);
  background-color: #fff;
  padding: 0 30px 50px;
  margin: 30px 10px;
}

.page-tr-traduceri .testimonials .inside .right .item .top {
  padding: 55px 24px 11px;
}

.page-tr-limbi .numar-limbi {
  background-color: #fff;
}

.page-tr-limbi .numar-limbi .inside {
  padding: 90px 0;
}

.page-tr-limbi .numar-limbi .inside .left .text {
  font-size: 1.375rem;
  line-height: 34px;
  font-weight: 700;
  max-width: 290px;
}

.page-tr-limbi .numar-limbi .inside .right {
  border-left: 2px solid #FFE6E6;
  padding-left: 80px;
}

.page-tr-limbi .numar-limbi .inside .right .title {
  width: 510px;
  max-width: 100%;
  font-size: 1.125rem;
  line-height: 2.125rem;
  font-weight: 700;
  margin-bottom: 35px;
}

.page-tr-limbi .numar-limbi .inside .right .text {
  width: 50%;
  padding-right: 50px;
  font-size: 0.875rem;
  line-height: 1.75rem;
  color: #6D6C6C;
}

.page-tr-limbi .numar-limbi .inside .right .text:last-child {
  padding-right: 0;
}

.page-tr-limbi .estimare {
  background-color: #fff;
}

.page-tr-limbi .estimare .inside {
  padding: 60px 0;
}

.page-tr-limbi .estimare .inside .left {
  width: 50%;
}

.page-tr-limbi .estimare .inside .left .title {
  font-size: 1.125rem;
  line-height: 2.125rem;
  font-weight: 800;
  max-width: 510px;
  margin-bottom: 40px;
}

.page-tr-limbi .estimare .inside .left .text {
  font-size: 1rem;
  line-height: 1.875rem;
  max-width: 530px;
  margin-bottom: 35px;
}

.page-tr-limbi .estimare .inside .left .text:last-child {
  margin-bottom: 0;
}

.page-tr-limbi .estimare .inside .right {
  width: 50%;
  padding-left: 60px;
}

.page-tr-limbi .estimare .inside .right .red-container {
  background-color: #ED2125;
  border-radius: 8px;
  padding: 80px 70px;
}

.page-tr-limbi .estimare .inside .right .red-container .title {
  font-size: 1.875rem;
  line-height: 2.375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 120px;
}

.page-tr-limbi .estimare .inside .right .red-container .button {
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: transparent;
  padding: 22px 15px;
}

.page-tr-limbi .estimare .inside .right .red-container .button p {
  text-transform: uppercase;
}

.page-tr-limbi .estimare .inside .right .red-container .button:hover {
  background-color: #fff;
  color: #ED2125;
}

.page-tr-limbi .estimare .inside .right .red-container .button:hover .white {
  display: none;
}

.page-tr-limbi .estimare .inside .right .red-container .button:hover .red {
  display: flex;
}

.page-tr-limbi .estimare .inside .right .red-container .button .white {
  display: flex;
}

.page-tr-limbi .estimare .inside .right .red-container .button .red {
  display: none;
}

.page-tr-limbi .alte-limbi .inside, .alte-limbi .inside {
  padding: 60px 0 100px;
}

.page-tr-limbi .alte-limbi .inside .section-title, .alte-limbi .inside .section-title {
  margin-bottom: 70px;
}

.page-tr-limbi .alte-limbi .inside .items, .alte-limbi .inside .items {
  width: calc(100 + 12px);
  margin-left: -6px;
}

.page-tr-limbi .alte-limbi .inside .items .item, .alte-limbi .inside .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  width: calc(25% - 12px);
  margin: 6px;
  background-color: #fff;
  border-radius: 6px;
  padding: 15px 20px;
  border: 1px solid #fff;
  transition: all 200ms ease-in-out;
}

.page-tr-limbi .alte-limbi .inside .items .item:hover, .alte-limbi .inside .items .item:hover {
  border: 1px solid #ED2125;
  background-color: #ED2125;
}

.page-tr-limbi .alte-limbi .inside .items .item:hover .title, .alte-limbi .inside .items .item:hover .title {
  color: #fff;
}

.page-tr-limbi .alte-limbi .inside .items .item:hover .title span, .alte-limbi .inside .items .item:hover .title span {
  color: #fff;
}

.page-tr-limbi .alte-limbi .inside .items .item:hover .white, .alte-limbi .inside .items .item:hover .white {
  display: flex;
}

.page-tr-limbi .alte-limbi .inside .items .item:hover .red, .alte-limbi .inside .items .item:hover .red {
  display: none;
}

.page-tr-limbi .alte-limbi .inside .items .item .title, .alte-limbi .inside .items .item .title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ED2125;
  transition: all 200ms ease-in-out;
}

.page-tr-limbi .alte-limbi .inside .items .item .title span, .alte-limbi .inside .items .item .title span {
  font-weight: 400;
  color: #6D6C6C;
  transition: all 200ms ease-in-out;
}

.page-tr-limbi .alte-limbi .inside .items .item img, .alte-limbi .inside .items .item img {
  width: 11px;
}

.page-tr-limbi .alte-limbi .inside .items .item .white, .alte-limbi .inside .items .item .white {
  display: none;
}

.page-tr-limbi .alte-limbi .inside .items .item .red, .alte-limbi .inside .items .item .red {
  display: flex;
}

.page-tr-limbi .alte-limbi .inside .items .item.red, .alte-limbi .inside .items .item.red {
  background-color: #ED2125;
}

.page-tr-limbi .alte-limbi .inside .items .item.red:hover, .alte-limbi .inside .items .item.red:hover {
  background-color: transparent;
  border: 1px solid #ED2125;
}

.page-tr-limbi .alte-limbi .inside .items .item.red:hover .title, .alte-limbi .inside .items .item.red:hover .title {
  color: #ED2125;
}

.page-tr-limbi .alte-limbi .inside .items .item.red:hover .white, .alte-limbi .inside .items .item.red:hover .white {
  display: none;
}

.page-tr-limbi .alte-limbi .inside .items .item.red:hover .red, .alte-limbi .inside .items .item.red:hover .red {
  display: flex;
}

.page-tr-limbi .alte-limbi .inside .items .item.red .title, .alte-limbi .inside .items .item.red .title {
  color: #fff;
}

.page-tr-limbi .alte-limbi .inside .items .item.red .white, .alte-limbi .inside .items .item.red .white {
  display: flex;
}

.page-tr-limbi .alte-limbi .inside .items .item.red .red, .alte-limbi .inside .items .item.red .red {
  display: none;
}

.page-cursuri-inner .feature-page-traduceri-inner .inside .image {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.page-cursuri-inner .description-section {
  background-color: #fff;
}

.page-cursuri-inner .description-section .inside {
  padding: 90px 0;
}

.page-cursuri-inner .description-section .inside .left {
  padding-right: 90px;
}

.page-cursuri-inner .description-section .inside .left .text {
  font-size: 0.875rem;
  line-height: 1.75rem;
  color: #6D6C6C;
}

.page-cursuri-inner .description-section .inside .right {
  padding-left: 90px;
  border-left: 2px solid #FFE6E6;
}

.page-cursuri-inner .description-section .inside .right .text {
  font-size: 1.125rem;
  line-height: 2.125rem;
  font-weight: 700;
}

.page-cursuri-inner .beneficii .inside {
  padding: 80px 0;
}

.page-cursuri-inner .beneficii .inside .section-title {
  margin-bottom: 40px;
}

.page-cursuri-inner .beneficii .inside .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  width: 25%;
  padding: 30px 40px 30px 0;
  position: relative;
}

.page-cursuri-inner .beneficii .inside .items .item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, #CBCBCB 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 5px 1px;
  background-repeat: repeat-x;
}

.page-cursuri-inner .beneficii .inside .items .item:nth-child(1):before, .page-cursuri-inner .beneficii .inside .items .item:nth-child(2):before, .page-cursuri-inner .beneficii .inside .items .item:nth-child(3):before, .page-cursuri-inner .beneficii .inside .items .item:nth-child(4):before {
  display: none;
}

.page-cursuri-inner .beneficii .inside .items .item img {
  width: 26px;
  margin-right: 20px;
}

.page-cursuri-inner .beneficii .inside .items .item .text {
  width: calc(100% - 46px);
  line-height: 1.375rem;
  font-weight: 600;
}

.page-cursuri .inveti-ajutam {
  background-color: #fff;
}

.page-cursuri .inveti-ajutam .inside {
  padding: 90px 0;
}

.page-cursuri .inveti-ajutam .inside .left .section-title {
  margin-bottom: 40px;
}

.page-cursuri .inveti-ajutam .inside .left .items {
  max-width: 370px;
}

.page-cursuri .inveti-ajutam .inside .left .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  position: relative;
  padding: 22px 0;
  width: 100%;
}

.page-cursuri .inveti-ajutam .inside .left .items .item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, #CBCBCB 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 5px 1px;
  background-repeat: repeat-x;
}

.page-cursuri .inveti-ajutam .inside .left .items .item:first-child:before {
  display: none;
}

.page-cursuri .inveti-ajutam .inside .left .items .item .cercle {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  width: 30px;
  height: 30px;
  background-color: #ED2125;
  border-radius: 50%;
  margin-right: 20px;
}

.page-cursuri .inveti-ajutam .inside .left .items .item .cercle img {
  width: 13px;
  margin: 0 auto;
}

.page-cursuri .inveti-ajutam .inside .left .items .item .text {
  width: calc(100% - 50px);
  line-height: 1.25rem;
  font-weight: 700;
}

.page-cursuri .inveti-ajutam .inside .right {
  background-color: #F2F2F4;
  padding: 50px 60px;
}

.page-cursuri .inveti-ajutam .inside .right .section-title {
  margin-bottom: 35px;
}

.page-cursuri .inveti-ajutam .inside .right .text.bold {
  font-size: 1.125rem;
  margin-bottom: 20px;
  color: #000;
}

.page-cursuri .inveti-ajutam .inside .right .text {
  color: #6D6C6C;
}

.page-cursuri-limbi-straine .description-section .inside .left .button {
  display: flex;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: #ED2125;
  padding: 22px 15px;
  margin-top: 20px;
}

.page-cursuri-limbi-straine .description-section .inside .left .button p {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 30px;
  color: #fff;
}

.page-cursuri-limbi-straine .description-section .inside .left .button:hover {
  background-color: transparent;
  border: 1px solid #ED2125;
}

.page-cursuri-limbi-straine .description-section .inside .left .button:hover p {
  color: #ED2125;
}

.page-cursuri-limbi-straine .description-section .inside .left .button:hover .white {
  display: none;
}

.page-cursuri-limbi-straine .description-section .inside .left .button:hover .red {
  display: flex;
}

.page-cursuri-limbi-straine .description-section .inside .left .button .white {
  display: flex;
}

.page-cursuri-limbi-straine .description-section .inside .left .button .red {
  display: none;
}

.page-cursuri-limbi-straine .de-ce {
  background-color: #fff;
}

.page-cursuri-limbi-straine .de-ce .inside {
  padding: 80px 0;
}

.page-cursuri-limbi-straine .de-ce .inside .left {
  background-color: #F2F2F4;
  padding: 50px;
}

.page-cursuri-limbi-straine .de-ce .inside .left .section-title {
  margin-bottom: 45px;
}

.page-cursuri-limbi-straine .de-ce .inside .left .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  width: 100%;
  margin-bottom: 10px;
  padding: 25px 20px;
  background-color: #fff;
  border-radius: 4px;
}

.page-cursuri-limbi-straine .de-ce .inside .left .items .item img {
  width: 26px;
  margin-right: 20px;
}

.page-cursuri-limbi-straine .de-ce .inside .left .items .item .text {
  width: calc(100% - 46px);
  line-height: 1.25rem;
  font-weight: 600;
}

.page-cursuri-limbi-straine .de-ce .inside .right {
  padding-left: 100px;
}

.page-cursuri-limbi-straine .de-ce .inside .right .section-title {
  margin-top: 50px;
  margin-bottom: 55px;
}

.page-cursuri-limbi-straine .de-ce .inside .right .items {
  width: 100%;
}

.page-cursuri-limbi-straine .de-ce .inside .right .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  width: 50%;
  margin-top: 50px;
}

.page-cursuri-limbi-straine .de-ce .inside .right .items .item:nth-child(1), .page-cursuri-limbi-straine .de-ce .inside .right .items .item:nth-child(2) {
  margin-top: 0;
}

.page-cursuri-limbi-straine .de-ce .inside .right .items .item .number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ED2125;
  width: 40px;
}

.page-cursuri-limbi-straine .de-ce .inside .right .items .item .text {
  line-height: 1.25rem;
  width: calc(100% - 40px);
  max-width: 180px;
  padding-left: 25px;
  min-height: 38px;
  border-left: 2px solid #FFE6E6;
}

.page-cursuri-limbi-straine .cursurile-noastre .inside {
  padding: 80px 0 110px;
}

.page-cursuri-limbi-straine .cursurile-noastre .inside .section-title {
  margin-bottom: 65px;
}

.page-cursuri-limbi-straine .cursurile-noastre .inside .items {
  width: calc(100% + 20px);
  margin-left: -10px;
}

.page-cursuri-limbi-straine .cursurile-noastre .inside .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  width: calc(33.33% - 20px);
  margin: 10px;
  background-color: #fff;
  border-radius: 4px;
  padding: 20px 25px;
}

.page-cursuri-limbi-straine .cursurile-noastre .inside .items .item img {
  width: 50px;
  margin-right: 50px;
}

.page-cursuri-limbi-straine .cursurile-noastre .inside .items .item .text {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  width: calc(100% - 100px);
  font-size: 1rem;
  line-height: 1.375rem;
}

.page-cursuri-traducatori .description-section .inside .right {
  border-left: 2px solid #FFE6E6;
}

.page-cursuri-traducatori .description-section .inside .left {
  padding-left: 80px;
  border-right: none;
  padding-right: 0;
}

.page-cursuri-traducatori .description-section .inside .left .items {
  width: calc(100% + 10px);
  margin-left: -5px;
}

.page-cursuri-traducatori .description-section .inside .left .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  width: calc(50% - 10px);
  margin: 5px;
  background-color: #F2F2F4;
  border-radius: 4px;
  padding: 15px;
}

.page-cursuri-traducatori .description-section .inside .left .items .item img {
  width: 26px;
  margin-right: 14px;
}

.page-cursuri-traducatori .description-section .inside .left .items .item .text {
  width: calc(100% - 40px);
  line-height: 1.25rem;
}

.page-cursuri-traducatori .scopul {
  background-color: #fff;
}

.page-cursuri-traducatori .scopul .inside {
  padding: 90px 0;
}

.page-cursuri-traducatori .scopul .inside .title {
  width: 100%;
  margin-bottom: 80px;
}

.page-cursuri-traducatori .scopul .inside .title p {
  font-size: 1.375rem;
  line-height: 2.125rem;
  font-weight: 700;
  max-width: 760px;
}

.page-cursuri-traducatori .scopul .inside .left {
  background-color: #F2F2F4;
  padding: 30px 40px;
  border-radius: 4px;
}

.page-cursuri-traducatori .scopul .inside .left .title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 45px;
}

.page-cursuri-traducatori .scopul .inside .left .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  width: 100%;
  padding: 8px 0 6px;
  position: relative;
}

.page-cursuri-traducatori .scopul .inside .left .items .item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, #CBCBCB 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 5px 1px;
  background-repeat: repeat-x;
}

.page-cursuri-traducatori .scopul .inside .left .items .item:nth-child(1):before {
  display: none;
}

.page-cursuri-traducatori .scopul .inside .left .items .item .cercle {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  width: 21px;
  height: 21px;
  background-color: #ED2125;
  border-radius: 50%;
  margin-right: 24px;
}

.page-cursuri-traducatori .scopul .inside .left .items .item .cercle img {
  width: 9px;
  margin: 0 auto;
}

.page-cursuri-traducatori .scopul .inside .left .items .item .text {
  width: calc(100% - 45px);
  line-height: 20px;
}

.page-cursuri-traducatori .scopul .inside .right {
  padding-left: 80px;
}

.page-cursuri-traducatori .scopul .inside .right .item {
  line-height: 1.75rem;
  color: #6D6C6C;
  padding-right: 60px;
}

.page-cursuri-traducatori .scopul .inside .right .item:nth-child(1) {
  width: 45%;
}

.page-cursuri-traducatori .scopul .inside .right .item:nth-child(2) {
  width: 55%;
}

.page-contact .form-section {
  background-color: #fff;
}

.page-contact .form-section .inside {
  position: relative;
  background-color: #F2F2F4;
  padding-top: 30px;
  border-top-left-radius: 8px;
}

.page-contact .form-section .inside:before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  left: 100%;
  top: 0;
  background-color: #F2F2F4;
}

.page-contact .form-section .inside .left {
  position: relative;
  width: 490px;
  background-color: #ED2125;
  padding: 60px 130px 60px 0;
  color: #fff;
}

.page-contact .form-section .inside .left:before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  right: 100%;
  top: 0;
  background-color: #ED2125;
}

.page-contact .form-section .inside .left .title {
  font-size: 3rem;
  font-weight: 700;
}

.page-contact .form-section .inside .left .description {
  font-size: 1rem;
  line-height: 1.625rem;
  margin-bottom: 80px;
}

.page-contact .form-section .inside .left .items .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  padding: 13px 0;
  border-top: 1px solid #FF4E55;
}

.page-contact .form-section .inside .left .items .item:first-child {
  border-top: none;
}

.page-contact .form-section .inside .left .items .item .icon {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 4px;
  margin-right: 50px;
}

.page-contact .form-section .inside .left .items .item .icon img {
  margin: 0 auto;
}

.page-contact .form-section .inside .left .items .item .text {
  width: calc(100% - 100px);
}

.page-contact .form-section .inside .left .items .item .text .title {
  font-size: 0.625rem;
  font-weight: 400;
}

.page-contact .form-section .inside .left .items .item .text .val {
  font-size: 1.125rem;
  font-weight: 600;
}

.page-contact .form-section .inside .left .items .item .text a {
  color: #fff;
}

.page-contact .form-section .inside .left .items .item .inner-item {
  width: 50%;
}

.page-contact .form-section .inside .left .items .item .inner-item:nth-child(odd) {
  padding-right: 28px;
}

.page-contact .form-section .inside .left .items .item .inner-item:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid #fff;
}

.page-contact .form-section .inside .right {
  width: calc(100% - 490px);
  padding-left: 100px;
  padding-top: 80px;
}

.page-contact .form-section .inside .right form {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  width: calc(100% + 12px);
  margin-left: -6px;
}

.page-contact .form-section .inside .right form p {
  width: calc(100% - 12px);
  margin: 6px;
}

.page-contact .form-section .inside .right form p:nth-child(2), .page-contact .form-section .inside .right form p:nth-child(3), .page-contact .form-section .inside .right form p:nth-child(4), .page-contact .form-section .inside .right form p:nth-child(5) {
  width: calc(50% - 12px);
}

.page-contact .form-section .inside .right form p label {
  position: relative;
  display: flex;
}

.page-contact .form-section .inside .right form p label .placeholder {
  position: absolute;
  font-size: 0.75rem;
  color: #6D6C6C;
  left: 20px;
  /*top: calc(50% - 10.5px);*/
  top:15px;
  z-index: 2;
  transition: all 100ms ease-in-out;
}

.page-contact .form-section .inside .right form p label .placeholder.active {
  top: 8px;
}

.page-contact .form-section .inside .right form p label input,
.page-contact .form-section .inside .right form p label textarea {
  font-family: "Open Sans", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  color: #ED2125;
  border: none;
  border-radius: 4px;
  padding: 24px 20px 8px;
  width: 100%;
}

.page-contact .form-section .inside .right form p label input:focus,
.page-contact .form-section .inside .right form p label textarea:focus {
  outline: none;
}

.page-contact .form-section .inside .right form p label input::-webkit-input-placeholder,
.page-contact .form-section .inside .right form p label textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: "Open Sans", sans-serif;
}

.page-contact .form-section .inside .right form p label input::-moz-placeholder,
.page-contact .form-section .inside .right form p label textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-family: "Open Sans", sans-serif;
}

.page-contact .form-section .inside .right form p label input:-ms-input-placeholder,
.page-contact .form-section .inside .right form p label textarea:-ms-input-placeholder {
  /* IE 10+ */
  font-family: "Open Sans", sans-serif;
}

.page-contact .form-section .inside .right form p label input:-moz-placeholder,
.page-contact .form-section .inside .right form p label textarea:-moz-placeholder {
  /* Firefox 18- */
  font-family: "Open Sans", sans-serif;
}

.page-contact .form-section .inside .right form p label textarea {
  height: 100px;
  resize: none;
}

.page-contact .form-section .inside .right form p label span {
  /*display: flex;*/
  width: 100%;
}

.page-contact .form-section .inside .right form p .textarea .placeholder {
  top: 21px;
}

.page-contact .form-section .inside .right form p .wpcf7-acceptance {
  margin-bottom: 14px;
}

.page-contact .form-section .inside .right form p .wpcf7-acceptance label input {
  width: 26px !important;
  height: 26px !important;
}

.page-contact .form-section .inside .right form p .wpcf7-acceptance label span {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #6D6C6C;
  padding-left: 30px;
}

.page-contact .form-section .inside .right form p .wpcf7-acceptance label span:before {
  width: 26px;
  height: 26px;
  top: calc(50% - 13px);
  border: 1px solid #ED2125;
  background-color: transparent;
}

.page-contact .form-section .inside .right form p .wpcf7-acceptance label span:after {
  width: 14px;
  height: 6px;
  top: calc(50% - 5px);
  right: calc(100% + 6px);
}

.page-contact .form-section .inside .right form p .send {
  position: relative;
  width: 270px;
  max-width: 100%;
}

.page-contact .form-section .inside .right form p .send:hover .arrow {
  background-image: url("../img/arrow-right-red.svg");
}

.page-contact .form-section .inside .right form p .send:hover input:disabled {
  color: #fff;
  background-color: #ED2125;
}

.page-contact .form-section .inside .right form p .send:hover input:disabled ~ span.arrow {
  background-image: url("../img/arrow-right-white.svg");
}

.page-contact .form-section .inside .right form p .send:hover .wpcf7-submit {
  color: #ED2125;
  background-color: transparent;
}

.page-contact .form-section .inside .right form p .send .arrow {
  position: absolute;
  content: "";
  width: 15px;
  height: 10px;
  top: calc(50% - 5px);
  right: 20px;
  background-image: url("../img/arrow-right-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 200ms ease-in-out;
}

.page-contact .form-section .inside .right form p .wpcf7-submit {
  min-width: 100%;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-align: left;
  background-color: #ED2125;
  padding: 20px;
  border: 2px solid #ED2125;
  border-radius: 4px;
}

.page-contact .locations {
  background-color: #fff;
}

.page-contact .locations .inside {
  padding: 80px 0 50px;
}

.page-contact .locations .inside .section-title {
  margin-bottom: 60px;
}

.page-contact .locations .inside .items {
  width: calc(100% + 12px);
  margin-left: -6px;
}

.page-contact .locations .inside .items .item {
  width: calc(25% - 12px);
  margin: 6px;
  background-color: #F2F2F4;
  border-radius: 4px;
  padding: 30px;
}

.page-contact .locations .inside .items .item .location-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.page-contact .locations .inside .items .item .adress {
  font-size: 0.75rem;
  line-height: 1rem;
  margin-bottom: 25px;
}

.page-contact .locations .inside .items .item .bottom {
  margin-top: 40px;
}

.page-contact .locations .inside .items .item .bottom .title {
  font-size: 0.625rem;
  font-weight: 600;
  color: #ED2125;
  width: 55px;
}

.page-contact .locations .inside .items .item .bottom .description {
  font-size: 0.75rem;
  color: #6D6C6C;
  width: calc(100% - 55px);
}

.page-contact .locations .inside .items .item .bottom a {
  transition: all 200ms ease-in-out;
}

.page-contact .locations .inside .items .item .bottom a:hover {
  color: #ED2125;
}

.page-comanda .inside .left {
  position: relative;
  width: 370px;
  background-color: #ED2125;
  padding: 70px 100px 130px 0;
  z-index: 2;
}

.page-comanda .inside .left .red-container {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  top: 0;
  right: 100%;
  background-color: #ED2125;
}

.page-comanda .inside .left .title {
  font-size: 2.5rem;
  line-height: 3.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 100px;
}

.page-comanda .inside .left .description {
  font-size: 1rem;
  line-height: 1.75rem;
  color: #fff;
}

.page-comanda .inside .right {
  width: calc(100% - 370px);
  padding-left: 120px;
}

.page-comanda .inside .right .form-tabs {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  position: relative;
  padding: 30px 0;
  margin-bottom: 50px;
  width: calc(100% + 10px);
  margin-left: -5px;
}

.page-comanda .inside .right .form-tabs .dashed-left,
.page-comanda .inside .right .form-tabs .dashed-right {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  bottom: 0;
}

.page-comanda .inside .right .form-tabs .dashed-left {
  right: 100%;
  z-index: 1;
}

.page-comanda .inside .right .form-tabs .dashed-right {
  left: 100%;
}

.page-comanda .inside .right .form-tabs .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  cursor: pointer;
  margin: 5px;
}

.page-comanda .inside .right .form-tabs .item:hover .num {
  background-color: #ED2125;
  border: 2px solid #ED2125;
}

.page-comanda .inside .right .form-tabs .item:hover .num p {
  color: #fff;
}

.page-comanda .inside .right .form-tabs .item:hover .name {
  color: #ED2125;
}

.page-comanda .inside .right .form-tabs .item .num {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  width: 22px;
  min-width: 22px;
  height: 22px;
  border: 2px solid #9A9A9A;
  border-radius: 50%;
  padding-bottom: 2px;
  margin-right: 13px;
  transition: all 200ms ease-in-out;
}

.page-comanda .inside .right .form-tabs .item .num p {
  font-size: 0.625rem;
  font-weight: 800;
  color: #9A9A9A;
}

.page-comanda .inside .right .form-tabs .item .name {
  font-size: 0.625rem;
  line-height: 1rem;
  font-weight: 700;
  color: #9A9A9A;
  transition: all 200ms ease-in-out;
}

.page-comanda .inside .right .form-tabs .item.active {
  cursor: auto;
}

.page-comanda .inside .right .form-tabs .item.active .num {
  background-color: #ED2125;
  border: 2px solid #ED2125;
}

.page-comanda .inside .right .form-tabs .item.active .num p {
  color: #fff;
}

.page-comanda .inside .right .form-tabs .item.active .name {
  color: #ED2125;
}

.page-comanda .inside .right .form-tabs .item.inactive {
  cursor: not-allowed;
}

.page-comanda .inside .right .form-tabs .item.inactive:hover .num {
  background-color: transparent;
  border: 2px solid #9A9A9A;
}

.page-comanda .inside .right .form-tabs .item.inactive:hover .num p {
  color: #9A9A9A;
}

.page-comanda .inside .right .form-tabs .item.inactive:hover .name {
  color: #9A9A9A;
}

.page-comanda .inside .right .tabs-content .persoane-tabs {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  width: calc(100% - 5px);
  margin-left: -5px;
  margin-top: 30px;
}

.page-comanda .inside .right .tabs-content .persoane-tabs .item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  padding: 15px;
  background-color: #E7E7E9;
  border-radius: 4px;
  margin: 5px;
  transition: all 200ms ease-in-out;
  cursor: pointer;
}

.page-comanda .inside .right .tabs-content .persoane-tabs .item:hover .cercle {
  background-color: #ED2125;
}

.page-comanda .inside .right .tabs-content .persoane-tabs .item:hover .text {
  color: #ED2125;
}

.page-comanda .inside .right .tabs-content .persoane-tabs .item .cercle {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 25px;
  background-color: transparent;
  transition: all 200ms ease-in-out;
}

.page-comanda .inside .right .tabs-content .persoane-tabs .item .cercle:before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  left: calc(50% - 9px);
  top: calc(50% - 9px);
  border: 1px solid #9A9A9A;
  transition: all 200ms ease-in-out;
}

.page-comanda .inside .right .tabs-content .persoane-tabs .item .text {
  font-size: 0.75rem;
  color: #9A9A9A;
  font-weight: 700;
  transition: all 200ms ease-in-out;
  margin: 0;
}

.page-comanda .inside .right .tabs-content .persoane-tabs .item.active {
  background-color: #fff;
}

.page-comanda .inside .right .tabs-content .persoane-tabs .item.active .cercle {
  background-color: #ED2125;
}

.page-comanda .inside .right .tabs-content .persoane-tabs .item.active .cercle:before {
  border: 1px solid #ED2125;
}

.page-comanda .inside .right .tabs-content .persoane-tabs .item.active .text {
  color: #ED2125;
}

.page-comanda .inside .right .tabs-content .persoane-content .item {
  display: none;
}

.page-comanda .inside .right .tabs-content .persoane-content .item.active {
  display: block;
}

.page-comanda .inside .right .tabs-content .error-msg {
  font-size: 0.75rem;
  color: #ED2125;
  margin: 0;
}

.page-comanda .inside .right .tabs-content #tab_content_1 .title {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-comanda .inside .right .tabs-content #tab_content_1 .select-container {
  position: relative;
  margin-bottom: 14px;
}

.page-comanda .inside .right .tabs-content #tab_content_1 .select-container:after {
  position: absolute;
  content: "";
  width: 11px;
  height: 6px;
  right: 30px;
  top: calc(50% - 5.5px);
  background-image: url("../img/arrow-bottom-red.svg");
  background-repeat: no-repeat;
  background-size: 11px 6px;
  background-position: center;
}

.page-comanda .inside .right .tabs-content #tab_content_1 select,
.page-comanda .inside .right .tabs-content #tab_content_1 input {
  width: 100%;
  font-size: 0.875rem;
  font-family: "Open Sans", sans-serif;
  color: #6D6C6C;
  background-color: #fff;
  border-radius: 4px;
  border: none;
  padding: 10px 20px;
}

.page-comanda .inside .right .tabs-content #tab_content_1 select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.page-comanda .inside .right .tabs-content #tab_content_2 .items {
  width: calc(100% + 20px);
  margin-left: -10px;
}

.page-comanda .inside .right .tabs-content #tab_content_2 .items .pachet {
  margin: 10px;
  width: calc(50% - 20px);
  border-radius: 4px;
  background-color: #fff;
}

.page-comanda .inside .right .tabs-content #tab_content_2 .items .pachet .top {
  padding: 15px 25px;
}

.page-comanda .inside .right .tabs-content #tab_content_2 .items .pachet .top .title {
  font-size: 1.5rem;
  font-weight: 700;
}

.page-comanda .inside .right .tabs-content #tab_content_2 .items .pachet .top p {
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.page-comanda .inside .right .tabs-content #tab_content_2 .items .pachet .bottom {
  position: relative;
  padding: 15px 25px;
}

.page-comanda .inside .right .tabs-content #tab_content_2 .items .pachet .bottom:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #CBCBCB 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 5px 1px;
  background-repeat: repeat-x;
}

.page-comanda .inside .right .tabs-content #tab_content_2 .items .pachet .bottom .price {
  font-size: 1.625rem;
  font-weight: 700;
}

.page-comanda .inside .right .tabs-content #tab_content_2 .items .pachet .bottom .price span {
  font-size: 1rem;
}

.page-comanda .inside .right .tabs-content #tab_content_2 .items .pachet .bottom .bifa {
  margin-top: 0;
}

.page-comanda .inside .right .tabs-content #tab_content_2 .items .pachet .bottom .bifa label {
  width: 26px;
  height: 26px;
}

.page-comanda .inside .right .tabs-content #tab_content_2 .items .pachet .bottom .bifa label span {
  padding-left: 0;
}

.page-comanda .inside .right .tabs-content #tab_content_2 .items .pachet .bottom .bifa label span:before {
  right: 0;
}

.page-comanda .inside .right .tabs-content #tab_content_2 .items .pachet .bottom .bifa label span:after {
  right: 5px;
  width: 15px;
  height: 8px;
}

.page-comanda .inside .right .tabs-content #tab_content_2 .items .pachet .bottom .bifa label span:before {
  width: 26px;
  height: 26px;
}

.page-comanda .inside .right .tabs-content #tab_content_3 .left,
.page-comanda .inside .right .tabs-content #tab_content_3 .right {
  width: 50%;
}

.page-comanda .inside .right .tabs-content #tab_content_3 .left {
  padding: 0 40px 0 0;
  background-color: transparent;
}

.page-comanda .inside .right .tabs-content #tab_content_3 .left .upload-file {
  background-color: #fff;
  border-radius: 4px;
  height: calc(100% - 15px);
  cursor: pointer;
}

.page-comanda .inside .right .tabs-content #tab_content_3 .left .upload-file .buton-de-upload {
  padding: 40px 20px 50px;
}

.page-comanda .inside .right .tabs-content #tab_content_3 .left .upload-file .buton-de-upload:hover img {
  margin-top: 0px;
  margin-bottom: 10px;
}

.page-comanda .inside .right .tabs-content #tab_content_3 .left .upload-file .buton-de-upload img {
  margin-top: 10px;
  transition: all 200ms ease-in-out;
}

.page-comanda .inside .right .tabs-content #tab_content_3 .left .upload-file .buton-de-upload p {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ED2125;
  text-align: center;
}

.page-comanda .inside .right .tabs-content #tab_content_3 .left .upload-file .bottom {
  padding: 30px 10px;
}

.page-comanda .inside .right .tabs-content #tab_content_3 .left .upload-file .bottom .nume-fisier {
  font-size: 0.75rem;
  color: #9C9C9C;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.page-comanda .inside .right .tabs-content #tab_content_3 .right {
  padding: 0;
}

.page-comanda .inside .right .tabs-content #tab_content_3 .title {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-comanda .inside .right .tabs-content #tab_content_3 input,
.page-comanda .inside .right .tabs-content #tab_content_3 textarea {
  width: 100%;
  font-size: 0.875rem;
  font-family: "Open Sans", sans-serif;
  color: #6D6C6C;
  background-color: #fff;
  border-radius: 4px;
  border: none;
  padding: 10px 20px;
  margin-bottom: 15px;
}

.page-comanda .inside .right .tabs-content #tab_content_3 textarea {
  resize: none;
  height: 140px;
}

.page-comanda .inside .right .tabs-content #tab_content_3 .datepciker-container {
  position: relative;
}

.page-comanda .inside .right .tabs-content #tab_content_4 .title {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0;
}

.page-comanda .inside .right .tabs-content #tab_content_4 input {
  width: 100%;
  font-size: 0.875rem;
  font-family: "Open Sans", sans-serif;
  color: #6D6C6C;
  background-color: #fff;
  border-radius: 4px;
  border: none;
  padding: 10px 20px;
  margin-bottom: 15px;
}

.page-comanda .inside .right .controllers {
  padding: 50px 0;
}

.page-comanda .inside .right .controllers .left,
.page-comanda .inside .right .controllers .right {
  width: 50%;
  padding: 0;
  background-color: transparent;
}

.page-comanda .inside .right .controllers .left .previous,
.page-comanda .inside .right .controllers .left .next,
.page-comanda .inside .right .controllers .left .finish,
.page-comanda .inside .right .controllers .right .previous,
.page-comanda .inside .right .controllers .right .next,
.page-comanda .inside .right .controllers .right .finish {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  padding: 15px 25px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 200ms ease-in-out;
}

.page-comanda .inside .right .controllers .left .previous .text,
.page-comanda .inside .right .controllers .left .next .text,
.page-comanda .inside .right .controllers .left .finish .text,
.page-comanda .inside .right .controllers .right .previous .text,
.page-comanda .inside .right .controllers .right .next .text,
.page-comanda .inside .right .controllers .right .finish .text {
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 200ms ease-in-out;
}

.page-comanda .inside .right .controllers .left .previous img,
.page-comanda .inside .right .controllers .left .next img,
.page-comanda .inside .right .controllers .left .finish img,
.page-comanda .inside .right .controllers .right .previous img,
.page-comanda .inside .right .controllers .right .next img,
.page-comanda .inside .right .controllers .right .finish img {
  transition: all 200ms ease-in-out;
}

.page-comanda .inside .right .controllers .left .previous,
.page-comanda .inside .right .controllers .right .previous {
  width: 124px;
  background-color: #fff;
}

.page-comanda .inside .right .controllers .left .previous:hover,
.page-comanda .inside .right .controllers .right .previous:hover {
  background-color: #000;
}

.page-comanda .inside .right .controllers .left .previous:hover .red,
.page-comanda .inside .right .controllers .right .previous:hover .red {
  display: none;
}

.page-comanda .inside .right .controllers .left .previous:hover .white,
.page-comanda .inside .right .controllers .right .previous:hover .white {
  display: flex;
}

.page-comanda .inside .right .controllers .left .previous:hover .text,
.page-comanda .inside .right .controllers .right .previous:hover .text {
  color: #fff;
}

.page-comanda .inside .right .controllers .left .previous img,
.page-comanda .inside .right .controllers .right .previous img {
  transform: rotate(180deg);
}

.page-comanda .inside .right .controllers .left .previous .red,
.page-comanda .inside .right .controllers .right .previous .red {
  display: flex;
}

.page-comanda .inside .right .controllers .left .previous .white,
.page-comanda .inside .right .controllers .right .previous .white {
  display: none;
}

.page-comanda .inside .right .controllers .left .previous .text,
.page-comanda .inside .right .controllers .right .previous .text {
  color: #ED2125;
}

.page-comanda .inside .right .controllers .left .next,
.page-comanda .inside .right .controllers .left .finish,
.page-comanda .inside .right .controllers .right .next,
.page-comanda .inside .right .controllers .right .finish {
  background-color: #ED2125;
}
@media screen and (min-width: 600px) {
    .page-comanda .inside .right .controllers .left .next:hover,
    .page-comanda .inside .right .controllers .left .finish:hover,
    .page-comanda .inside .right .controllers .right .next:hover,
    .page-comanda .inside .right .controllers .right .finish:hover {
      background-color: #fff;
    }
    
    .page-comanda .inside .right .controllers .left .next:hover .red,
    .page-comanda .inside .right .controllers .left .finish:hover .red,
    .page-comanda .inside .right .controllers .right .next:hover .red,
    .page-comanda .inside .right .controllers .right .finish:hover .red {
      display: flex;
    }
    
    .page-comanda .inside .right .controllers .left .next:hover .white,
    .page-comanda .inside .right .controllers .left .finish:hover .white,
    .page-comanda .inside .right .controllers .right .next:hover .white,
    .page-comanda .inside .right .controllers .right .finish:hover .white {
      display: none;
    }
    
    .page-comanda .inside .right .controllers .left .next:hover .text,
    .page-comanda .inside .right .controllers .left .finish:hover .text,
    .page-comanda .inside .right .controllers .right .next:hover .text,
    .page-comanda .inside .right .controllers .right .finish:hover .text {
      color: #ED2125;
    }
}
.page-comanda .inside .right .controllers .left .next .red,
.page-comanda .inside .right .controllers .left .finish .red,
.page-comanda .inside .right .controllers .right .next .red,
.page-comanda .inside .right .controllers .right .finish .red {
  display: none;
}

.page-comanda .inside .right .controllers .left .next .white,
.page-comanda .inside .right .controllers .left .finish .white,
.page-comanda .inside .right .controllers .right .next .white,
.page-comanda .inside .right .controllers .right .finish .white {
  display: flex;
}

.page-comanda .inside .right .controllers .left .next .text,
.page-comanda .inside .right .controllers .left .finish .text,
.page-comanda .inside .right .controllers .right .next .text,
.page-comanda .inside .right .controllers .right .finish .text {
  color: #fff;
}

.page-error .inside .left,
.page-thank-you .inside .left {
  position: relative;
  width: 370px;
  min-height: calc(100vh - 90px);
  background-color: #ED2125;
  padding: 30px 0;
  z-index: 2;
}

.page-error .inside .left .red-container,
.page-thank-you .inside .left .red-container {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  top: 0;
  right: 100%;
  background-color: #ED2125;
}

.page-error .inside .right,
.page-thank-you .inside .right {
  width: calc(100% - 370px);
  padding: 50px 0 50px 120px;
}

.page-error .inside .right .title,
.page-thank-you .inside .right .title {
  font-size: 3.625rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.page-error .inside .right .description,
.page-thank-you .inside .right .description {
  font-size: 1.25rem;
  line-height: 2rem;
}

.page-error .inside .right .red,
.page-thank-you .inside .right .red {
  font-weight: 700;
  color: #ED2125;
}

.page-error .inside .right .buttons,
.page-thank-you .inside .right .buttons {
  display: flex;
  width: calc(100% + 10px);
  margin-left: -5px;
  margin-top: 65px;
}

.page-error .inside .right .buttons a,
.page-thank-you .inside .right .buttons a {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 20px 30px;
  margin: 5px;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: all 200ms ease-in-out;
}

.page-error .inside .right .buttons .red,
.page-thank-you .inside .right .buttons .red {
  background-color: #ED2125;
  color: #fff;
}

.page-error .inside .right .buttons .red:hover,
.page-thank-you .inside .right .buttons .red:hover {
  color: #ED2125;
  background-color: #fff;
  border: 2px solid #ED2125;
}

.page-error .inside .right .buttons .white,
.page-thank-you .inside .right .buttons .white {
  background-color: #fff;
  color: #ED2125;
}

.page-error .inside .right .buttons .white:hover,
.page-thank-you .inside .right .buttons .white:hover {
  color: #fff;
  background-color: #ED2125;
}

.page-error .inside .right .error-text {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ED2125;
}

.page-error .inside .right .title {
  font-size: 3rem;
  line-height: 3.5rem;
}

.date-category {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  position: relative;
  width: calc(100% + 20px);
  margin-left: -15px;
  margin-bottom: 40px;
  z-index: 2;
}

.date-category p {
  border-radius: 4px;
}

.date-category .date {
  margin: 5px;
  padding: 10px 20px;
  background-color: #ED2125;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.date-category .article-category {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.date-category .article-category a {
  display: flex;
  margin: 5px;
  padding: 10px 20px;
  border-radius: 4px;
  background-color: #fff;
  font-size: 12px;
  color: #ED2125;
}

.blog-feature.cariere .inside .image:before {
  top: -150px;
  left: 0;
  right: -150px;
  background-image: url("../img/feature-cariere-bg.svg");
}

.blog-feature {
  overflow: hidden;
}

.blog-feature .inside {
  position: relative;
  padding: 40px 0;
}

.blog-feature .inside .left {
  position: relative;
  width: calc(100% - 490px);
  z-index: 2;
}

.blog-feature .inside .left .title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 25px;
}

.blog-feature .inside .left .title span {
  font-weight: 800;
}

.blog-feature .inside .left .description {
  font-size: 1rem;
  color: #6D6C6C;
}

.blog-feature .inside .image {
  position: relative;
  width: 490px;
  height: 230px;
}

.blog-feature .inside .image:before {
  position: absolute;
  content: "";
  width: 153%;
  height: 280%;
  top: -70%;
  left: -50%;
  background-image: url("../img/feature-blog2-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.blog-feature .inside .image img {
  width: 100%;
  height: 100%;
}

.blog-list {
  background-color: #fff;
}

.blog-list .inside {
  padding: 50px 0 120px;
}

.blog-list .inside .articles-list {
  width: calc(100% - 270px);
  padding-right: 13%;
}

.blog-list .inside .articles-list .item {
  margin-top: 75px;
}

.blog-list .inside .articles-list .item:first-child {
  margin-top: 0;
}

.blog-list .inside .articles-list .item .image {
  display: flex;
  width: 100%;
  height: 334px;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
}

.blog-list .inside .articles-list .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-list .inside .articles-list .item .date-category {
  margin-top: -60px;
}

.blog-list .inside .articles-list .item .middle-section .title {
  font-size: 1.625rem;
  line-height: 24px;
  font-weight: 700;
  transition: all 100ms ease-in-out;
}

.blog-list .inside .articles-list .item .middle-section .title:hover {
  color: #ED2125;
}

.blog-list .inside .articles-list .item .middle-section .text {
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #6D6C6C;
  margin-bottom: 30px;
  max-width: 670px;
}

.blog-list .inside .articles-list .item .bottom-section {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  padding-top: 21px;
}

.blog-list .inside .articles-list .item .bottom-section a {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}

.blog-list .inside .articles-list .item .bottom-section .more:hover p {
  margin-right: 30px;
}

.blog-list .inside .articles-list .item .bottom-section .more:hover img {
  margin-right: 0;
}

.blog-list .inside .articles-list .item .bottom-section .more p {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ED2125;
  margin-right: 20px;
  transition: all 200ms ease-in-out;
}

.blog-list .inside .articles-list .item .bottom-section .more img {
  margin-right: 10px;
  transition: all 200ms ease-in-out;
}

.blog-list .inside .articles-list .item .bottom-section .comments img {
  margin-right: 7px;
}

.blog-list .inside .articles-list .item .bottom-section .comments p {
  font-size: 0.875rem;
  color: #ED2125;
}

.blog-list .inside .articles-list .pagination-wrapper {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  position: relative;
  width: calc(100% + 10px);
  margin-left: -5px;
  margin-top: 70px;
}

.blog-list .inside .articles-list .pagination-wrapper .next,
.blog-list .inside .articles-list .pagination-wrapper .prev,
.blog-list .inside .articles-list .pagination-wrapper .page-numbers {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background-color: #F2F2F4;
  margin: 5px;
}

.blog-list .inside .articles-list .pagination-wrapper .next:hover,
.blog-list .inside .articles-list .pagination-wrapper .prev:hover,
.blog-list .inside .articles-list .pagination-wrapper .page-numbers:hover {
  background-color: #ED2125;
}

.blog-list .inside .articles-list .pagination-wrapper .next,
.blog-list .inside .articles-list .pagination-wrapper .prev {
  position: absolute;
  top: calc(50% - 25px);
  background-image: url("../img/arrow-right-gray.svg");
  background-repeat: no-repeat;
  background-size: 14px 10px;
  background-position: center;
}

.blog-list .inside .articles-list .pagination-wrapper .next:hover,
.blog-list .inside .articles-list .pagination-wrapper .prev:hover {
  background-image: url("../img/arrow-right-white.svg");
}

.blog-list .inside .articles-list .pagination-wrapper .prev {
  left: 0;
  transform: rotate(180deg);
}

.blog-list .inside .articles-list .pagination-wrapper .next {
  right: 0;
}

.blog-list .inside .articles-list .pagination-wrapper .page-numbers {
  font-size: 0.875rem;
  line-height: 42px;
  font-weight: 600;
  color: #ED2125;
}

.blog-list .inside .articles-list .pagination-wrapper .page-numbers:hover {
  color: #fff;
}

.blog-list .inside .articles-list .pagination-wrapper .page-numbers:focus {
  text-decoration: none;
}

.blog-list .inside .articles-list .pagination-wrapper .page-numbers.current {
  background-color: #ED2125;
  color: #fff;
}

.blog-list .inside .sidebar {
  width: 270px;
}

.blog-list .inside .sidebar .title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.blog-list .inside .sidebar .category-list li {
  display: flex;
  position: relative;
}

.blog-list .inside .sidebar .category-list li:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to right, #CBCBCB 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 5px 1px;
  background-repeat: repeat-x;
}

.blog-list .inside .sidebar .category-list li:last-child:before {
  display: none;
}

.blog-list .inside .sidebar .category-list li a {
  position: relative;
  padding: 10px 10px 10px 30px;
  font-size: 0.875rem;
}

.blog-list .inside .sidebar .category-list li a:before {
  position: absolute;
  content: "";
  width: 9px;
  height: 6px;
  top: calc(50% - 3px);
  left: 0;
  background-image: url("../img/arrow-right-red.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.post-page .container .inside {
  width: 760px;
}

.post-page .feature .inside {
  padding: 100px 0 0;
}

.post-page .feature .inside .back {
  margin-bottom: 15px;
}

.post-page .feature .inside .back:hover .cercle {
  background-color: #ED2125;
}

.post-page .feature .inside .back:hover .cercle .red {
  display: none;
}

.post-page .feature .inside .back:hover .cercle .white {
  display: flex;
}

.post-page .feature .inside .back .cercle {
  width: 20px;
  height: 20px;
  border: 1px solid #ED2125;
  border-radius: 50%;
  transition: all 200ms ease-in-out;
  margin-right: 15px;
}

.post-page .feature .inside .back .cercle img {
  width: 10px;
  transform: rotate(180deg);
  transition: all 200ms ease-in-out;
}

.post-page .feature .inside .back .cercle .red {
  display: flex;
}

.post-page .feature .inside .back .cercle .white {
  display: none;
}

.post-page .feature .inside .back p {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ED2125;
}

.post-page .feature .inside .title {
  font-size: 3rem;
  line-height: 3.25rem;
  font-weight: 800;
  text-align: center;
  max-width: 660px;
  margin-bottom: 60px;
}

.post-page .feature .inside .date-category {
  -webkit-justify-content: center;
  justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  margin-bottom: -15px;
}

.post-page .content-container {
  background-color: #fff;
}

.post-page .content-container .inside {
  padding: 60px 0;
}

.post-page .content-container .inside .image-thumbnail {
  width: 100%;
  height: 480px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 70px;
}

.post-page .content-container .inside .image-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-page .content-container .inside .share {
  width: 175px;
}

.post-page .content-container .inside .share .title {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.post-page .content-container .inside .share .social {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
}

.post-page .content-container .inside .share .social .item:hover rect {
  fill: #ED2125;
}

.post-page .content-container .inside .share .social .item:hover path {
  fill: #fff;
}

.post-page .content-container .inside .share .social .item rect,
.post-page .content-container .inside .share .social .item path {
  transition: all 200ms ease-in-out;
}

.post-page .content-container .inside .content {
  width: calc(100% - 175px);
}

.post-page .content-container .inside .content h1,
.post-page .content-container .inside .content h2,
.post-page .content-container .inside .content h3,
.post-page .content-container .inside .content h4 {
  font-weight: 700;
}

.post-page .content-container .inside .content h1 {
  font-size: 1.75rem;
}

.post-page .content-container .inside .content h2 {
  font-size: 1.5rem;
}

.post-page .content-container .inside .content h3 {
  font-size: 1.25rem;
}

.post-page .content-container .inside .content h4 {
  font-size: 1rem;
}

.post-page .content-container .inside .content p {
  font-size: 1rem;
  line-height: 1.75rem;
  margin-bottom: 30px;
  color: #6D6C6C;
}

.post-page .content-container .inside .content strong {
  color: #000;
}

.post-page .content-container .inside .content ul li {
  position: relative;
  padding-left: 30px;
}

.post-page .content-container .inside .content ul li:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 9px;
  top: 8px;
  left: 0;
  background-image: url("../img/arrow-right-red.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.post-page .content-container .inside .content a {
  color: #ED2125;
  transition: all 200ms ease-in-out;
}

.post-page .content-container .inside .content a:hover {
  text-decoration: underline;
}

.post-page .cariere-form form label {
  position: relative;
  display: flex;
}

.post-page .cariere-form form label .placeholder {
  position: absolute;
  font-size: 0.75rem;
  color: #6D6C6C;
  left: 20px;
  top: calc(50% - 10.5px);
  z-index: 2;
  transition: all 100ms ease-in-out;
}

.post-page .cariere-form form label .placeholder.active {
  top: 8px;
}

.post-page .cariere-form form label input,
.post-page .cariere-form form label textarea {
  font-family: "Open Sans", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  color: #ED2125;
  border: none;
  border-radius: 4px;
  padding: 24px 20px 8px;
  width: 100%;
}

.post-page .cariere-form form label input:focus,
.post-page .cariere-form form label textarea:focus {
  outline: none;
}

.post-page .cariere-form form label input::-webkit-input-placeholder,
.post-page .cariere-form form label textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: "Open Sans", sans-serif;
}

.post-page .cariere-form form label input::-moz-placeholder,
.post-page .cariere-form form label textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-family: "Open Sans", sans-serif;
}

.post-page .cariere-form form label input:-ms-input-placeholder,
.post-page .cariere-form form label textarea:-ms-input-placeholder {
  /* IE 10+ */
  font-family: "Open Sans", sans-serif;
}

.post-page .cariere-form form label input:-moz-placeholder,
.post-page .cariere-form form label textarea:-moz-placeholder {
  /* Firefox 18- */
  font-family: "Open Sans", sans-serif;
}

.post-page .cariere-form form label textarea {
  height: 100px;
  resize: none;
}

.post-page .cariere-form form label span {
  display: flex;
  align-items:center;
  width: 100%;
}

.post-page .cariere-form form .textarea .placeholder {
  top: 21px;
}

.post-page .cariere-form form .bifa {
  margin-bottom: 14px;
}

.post-page .cariere-form form .bifa label input {
  width: 26px !important;
  height: 26px !important;
}

.post-page .cariere-form form .bifa label span {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #6D6C6C;
  padding-left: 30px;
}

.post-page .cariere-form form .bifa label span:before {
  width: 26px;
  height: 26px;
  top: calc(50% - 13px);
  border: 1px solid #ED2125;
  background-color: transparent;
}

.post-page .cariere-form form .bifa label span:after {
  width: 14px;
  height: 6px;
  top: calc(50% - 5px);
  right: calc(100% + 6px);
}

.post-page .cariere-form form .send {
  position: relative;
  width: 270px;
  max-width: 100%;
}

.post-page .cariere-form form .send:hover .arrow {
  background-image: url("../img/arrow-right-red.svg");
}

.post-page .cariere-form form .send:hover input:disabled {
  color: #fff;
  background-color: #ED2125;
}

.post-page .cariere-form form .send:hover input:disabled ~ span.arrow {
  background-image: url("../img/arrow-right-white.svg");
}

.post-page .cariere-form form .send:hover input:disabled ~ .pcf7-submit {
  color: #ED2125;
  background-color: #fff;
}

.post-page .cariere-form form .send:hover .wpcf7-submit {
  color: #ED2125;
  background-color: #fff;
}

.post-page .cariere-form form .send .wpcf7-submit {
  color: #fff;
  background-color: #ED2125;
  padding: 15px;
}

.post-page .cariere-form form .send .arrow {
  position: absolute;
  content: "";
  width: 15px;
  height: 10px;
  top: calc(50% - 5px);
  right: 20px;
  background-image: url("../img/arrow-right-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 200ms ease-in-out;
}

.post-page .cariere-form form .ajax-loader {
  position: absolute;
}

.post-page .cariere-form form .upload-file {
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
  max-width: 250px;
}

.post-page .cariere-form form .upload-file .buton-de-upload {
  padding: 25px 15px;
}

.post-page .cariere-form form .upload-file .buton-de-upload:hover img {
  margin-top: 0px;
  margin-bottom: 10px;
}

.post-page .cariere-form form .upload-file .buton-de-upload img {
  margin-top: 10px;
  transition: all 200ms ease-in-out;
}

.post-page .cariere-form form .upload-file .buton-de-upload .text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ED2125;
  text-align: center;
}

.post-page .cariere-form form .upload-file .buton-de-upload p {
  display: none;
}

.post-page .cariere-form form .upload-file .bottom {
  padding: 15;
}

.post-page .cariere-form form .upload-file .bottom .nume-fisier {
  font-size: 0.75rem;
  color: #9C9C9C;
  text-align: center;
}

.post-page .cariere-form form .bifa .wpcf7-radio {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  width: calc(100% - 10px);
  margin-left: -5px;
}

.post-page .cariere-form form .bifa .wpcf7-radio .wpcf7-list-item {
  display: flex;
  width: auto;
  margin: 5px;
}

.post-page .cariere-form form .bifa .wpcf7-radio .wpcf7-list-item label {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}

.post-page .cariere-form form .bifa .wpcf7-radio .wpcf7-list-item label span {
  padding-left: 10px;
}

.freelancer {
  background-color: #fff;
}

.freelancer .inside {
  padding: 50px 0;
  max-width: 750px;
  background: rgb(237, 33, 37);;
  color:#ffffff;
  padding:40px;
}
.freelancer select{
  padding: 0.36rem 0.66rem;
  border: solid 1px #ccc;
  width:30%;
}
.freelancer .inside .title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.freelancer .inside input {
  width: 100%;
}
.freelancer form{
  margin-top:30px;
}
.freelancer .inside table td {
  border: none;
}

.freelancer .inside .submit {
  background-color: #ED2125;
  border: 1px solid #ffffff;
  transition: all 200ms ease-in-out;
}

.freelancer .inside .submit:hover {
  background-color: #ffffff;
  color: #ED2125;
}

@media (max-width: 1201px) {
  .sec-banner{
      flex-direction: column;
  }
  .sec-banner h2.title{
      margin-bottom: 10px !important;

  }
  .sec-banner .description{
      margin-bottom: 30px !important;
  }
  .main-banner-title{
      margin-top: 30px;
  }
  .divizii-list .item{
      padding-left: 20px !important;
  }
  .freelancer select{
    width:100%;
  }
}
@media (max-width: 1000px) {
  .sec-banner{
      width: max-content;
  }
  .main-banner-title{
      margin-top: 0px !important;
  }
  .divizii-list .item,
  .divizii .divizii-list .item.du{
      width: 33.3% !important;
  }
  .service-items:nth-child(6){
    width: 50% !important;
  }
  .du,.dd,.dt{
      margin-bottom: 50px;
  }
  .item.dd:hover::before, .item.dt:hover::before, .item.dc:hover::before{
    margin-left: 20px !important;
    padding-left: 0 !important;
  }
  .item.dp:hover::before{
    margin-left: 0px !important;
  }
  .divizii-list .item.dp{
      border-left: none !important;
      padding-left: 0 !important;
  }
  .divizii-list .item.dc{
      margin-right: auto;
  }
}
.last-articles .bottom .inside {
    padding-bottom: 50px;
}
@media (max-width: 768px) {
  .banner-trados{
	flex-direction:column !important;
	gap:30px;
  }
  .last-articles .bottom .inside {
    padding-bottom: 50px;
  }
  .sec-banner{
      flex-direction: column !important;
      padding-bottom: 0 !important;
  }
  .second-text-div a.button.red{
      width: max-content;
      margin-top: 30px;
  }
}
@media (max-width: 761px) {
  .main-banner, .main-banner::before{
      background-image: none !important;
  }
  .main-banner, .main-banner-feature{
      /* min-height: 100vh !important;
      max-height: 100% !important; */
  }
  .first-text-div, .second-text-div{
      width: 50% !important;
  }
  .first-text-div{
      padding-right: 0px !important;
  }
  .second-text-div h2, .second-text-div p.description{
      color: black !important;
  }
  .sec-banner .description{
      margin-bottom: 0px !important;
  }
  .first-text-div p.description{
      margin-top: 25px;
  }
}
@media (max-width: 668px) {
  .item.dd::before, 
  .item.dt::before, 
  .item.dp::before{
    left: 27% !important;
    right: 25% !important;
  }
  .item.du::before{
    left: 39.5% !important;
    right: 25%;
  }
   
  .item.dc::before{
    left: 27.5% !important;
    right: 25% !important;
  }
  .item.dp::before{
    left: 39.5% !important;
    right: 25% !important;
  }
  .first-text-div, .second-text-div{
      height: 240px !important;
      display: flex;
      justify-content: center;
      text-align: center;
      align-items: center;
  }
  .divizii-list .item,
  .divizii-list .item, .divizii .divizii-list .item.du,
  .our-services .services-inside .service-items .item{
      width: 50% !important;
      padding-bottom: 0;
      padding-left: 0 !important;
  }
  .item.dp{
    margin-bottom: 50px;
  }
  .page-home .feature .inside .video-container .text .description{
      margin: 0 !important;
  }
  .main-banner-title{
      font-size: 25px !important;
      line-height: 25px !important;
  }
  .main-banner-feature{
      /* min-height: 100vh !important;
      height: 100% !important;
      max-height: 100vh !important; */
  }
  .divizii{
      margin-top: 0 !important;
  }
  .header-banner{
      flex-direction: column !important;
  }
  .divizii .divizii-description{
      padding-top: 30px;
  }
  .divizii-list{
      text-align: center;
      align-content: center;
  }
  .divizii .list-nr{
      margin: auto;
  }
  .du, .dd, .dt, .dp, .first-text-div, .second-text-div{
      width: 50% !important;
  }
  .dc{
      width: 100%;
  }
  .du, .dd, .dt, .dp{
      padding-bottom: 30px;
      padding-left: 0 !important;
  }
  .dd, .dt, .dp, .dc{
      border-left: none !important;
  }
  .stats{
      flex-direction: column !important;
  }
  .services-inside{
      justify-content: center !important;
  }
  .service-items .item.full-width{
      width: calc(100% - 20px) !important;
      padding: 10px !important;
  }
  .service-items .bottom p.title{
      font-size: 15px !important;
  }
  .colab{
      padding: 90px 30px 0 30px !important;
  }
  .main-banner-feature{
      /* min-height: calc(10vh - 90px) !important; */
  }
  .main-banner, .break{
      display: none;
  }
  .main-banner-title{
      z-index: 3!important;
  }
  .column-container,.sec-banner{
      flex-direction: column !important;
  }
  .first-text-div, .second-text-div,.sec-banner{
      width: 100% !important;
      padding-left: 0px !important;
      padding-right: 0 !important;
  }
  .first-text-div p{
      margin-bottom: 0px!important;
  }
  .sec-banner h2, .sec-banner p{
      color: #000 !important;
  }
  .sec-banner p.description{
      padding-bottom: 30px;
  }
  .second-text-div a.button.red{
      margin-bottom: 30px;
  }
  .second-text-div a.button.red, .second-text-div a p{
      color: white !important;
  }
  .second-text-div a.button.red{
      width: fit-content !important;
  }
  .button-wrapper{
      align-items: center;
      padding-bottom: 30px;
  }
}


/* New styles */
.fw-bold{
  font-weight:700;
}
.secondary-bg{
  background-color:#F2F2F4;
}
.service-items .item .bottom a img.white{
  display: none;
}
.service-items .item .bottom a:hover img.red{
  display: none;
}
.service-items .item .bottom a:hover img.white{
  background-color: #ED2125 !important;
  color:white !important;
  border-radius: 50%;
  height: 32px;
  width: 32px;
  padding: 8px;
  align-self: flex-end;
  justify-content: center;
  align-items: center;
  display: flex;
}
.services-inside a p{
  padding: 5px 20px !important;
}
.service-items .item .top-version{
  position: relative;
  width: 100%;
  height: 100%;
}
.service-items .item .bottom p.title{
  font-size: 24px;
  line-height: 30px;
}
.top-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.275) 54%, rgba(0, 0, 0, 0));
  border-radius: 4px;
}
.article-section-title{
  font-size: 30px;
}
.sign-up-btn{
  padding-right: 10px;
}
.main-banner{
  background-position: 0% 75%;
}
.sec-banner, .first-text-div p.description{
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}
.sec-banner a.button{
  padding:15px;
  border:1px solid #ED2125;
}
.sec-banner a.button:hover{
  border:1px solid #ED2125;
}
/* .main-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 1000px;
  height: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.4) 25%, rgba(0, 0, 0, 0));
  border-radius: 4px;
}
.main-banner, .main-banner-feature{
  min-height: 450px !important;
  max-height: 450px;
  height: 100%;
  top: 0;
} */
.second-text-div, .first-text-div{
  justify-content: flex-end;
  height: calc(100% - 50px);
  box-sizing: border-box;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}
.sec-banner h2.title{
  margin-top: 30px !important;
}
.divizii {
  box-sizing: border-box;
  z-index: 8;
  position: relative;
  max-width: 1156px;
  margin: -50px auto auto auto;
  color: white;
  width: 100%;
}

.container.top {
  border-radius: 6px;
  background-color: #ED2125;
}

.inside {
  padding: 50px 0 50px;
}

.flex-container-row {
  display: flex;
  flex-direction: row;
}

.flex-container-column {
  display: flex;
  flex-direction: column;
}

.flex-item-space-between {
  justify-content: space-between;
}

.flex-item-center {
  align-items: center;
}

.title-section .title {
  font-weight: 300;
}
.last-articles .title-section .title{
  font-weight:bold;
}

.title-section a.button.red {
  border: 1px solid #fff;
  padding: 15px 30px;
  min-width: 270px;
}

.divizii-description {
  color: white;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  padding-bottom: 50px;
}

.divizii-list .item {
  border-left: 2px solid rgba(255, 255, 255, 0.286);
  padding-left: 40px;
}
.divizii-list .item.du{
  width: calc(14% - 40px) !important;
  border-left: none !important;
  padding-left: 0 !important;
}

.list-nr {
  background-color: white;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  margin-bottom: 20px;
  color: #ED2125;
  text-align: center;
  font-weight: bolder;
  justify-content: center;
  align-items: center;
  display: flex;
}

.item h3 {
  font-weight: bold;
  margin: 0;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
}

.divizii .divizii-list .item{
  width: initial;
  box-sizing: border-box;
  position: relative;
}
.dd, .dp{
  width: 16%;
}
.divizii .divizii-list .item p.list-nr{
  margin-bottom: 10px !important;
  font-size: 18px;
  line-height: 30px;
}
.divizii .divizii-btn{
  font-size: 12px;
  line-height: 25px;
}
#site-content{
  background-color: #fff;
}
.item.du:hover .list-nr {
  visibility: hidden;
}

.item.du:hover::before {
  content: url('https://www.swiss.redouble.dev/wp-content/themes/webefficient/assets/img/arrow-right-red.svg');
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bolder;
  justify-content: center;
  align-items: center;
  display: flex;
  transition: all 200ms ease-in-out;
  cursor: pointer;
}

.item.du:hover h3 {
  text-decoration: underline;
  cursor: pointer;
}

.item.dd:hover .list-nr,
.item.dt:hover .list-nr,
.item.dp:hover .list-nr,
.item.dc:hover .list-nr {
  visibility: hidden;
}

.item.dd:hover::before,
.item.dt:hover::before,
.item.dp:hover::before,
.item.dc:hover::before {
  content: url('https://www.swiss.redouble.dev/wp-content/themes/webefficient/assets/img/arrow-right-red.svg');
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bolder;
  justify-content: center;
  align-items: center;
  display: flex;
  transition: all 200ms ease-in-out;
  cursor: pointer;
  margin-left: 40px;
}

.item.dd:hover h3,
.item.dt:hover h3,
.item.dp:hover h3,
.item.dc:hover h3 {
  text-decoration: underline;
  cursor: pointer;
}

.container.statistics {
  padding: 70px 0;
  background-color: #fff;
}

.container.statistics .inside {
  padding: 0;
}

.container.statistics .flex-container-row {
  display: flex;
  flex-direction: row;
}

.container.statistics .flex-container-center {
  justify-content: center;
}

.container.statistics .flex-item-space-around {
  justify-content: space-around;
}

.container.statistics .items.stats {
  width: 100%;
  box-sizing: border-box;
  padding: 0 30px;
}

.page-home .statistics .inside .items .item {
  text-align: center;
  min-width: 230px;
}
.container.statistics .inside .items .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 10%;
  min-width: 230px;
  padding: 45px 20px;
  padding-top: 45px;
  padding-right: 20px;
  padding-bottom: 45px;
  padding-left: 20px;
}

.container.statistics .item img {
  width: auto;
  height: auto;
}

.container.statistics .item .val {
  font-size: 35px;
  color: #ED2125;
  font-weight: 600;
}

.container.statistics .item .description {
  font-weight: bold;
}
.item {
  position: relative;
}
.item:hover .overlay {
  opacity: 1;
}

.overlay {
  position: absolute;
  border-radius: 4px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}

.text-hover {
  color: white;
  font-size: 14px;
  text-align: center;
  max-width: 190px;
}
.logos .inside {
  padding-top: 25px !important;
}
.page-home .our-services .inside{
  padding-top:0;
}
.our-services .item:not(.top-item):hover {
    background-color:#000000!important;
    color:#ffffff;
}
.our-services .item:not(.top-item):hover .text-hover{
  display: flex!important;
}
.our-services .item:not(.top-item):hover .title{
  color:#ffffff!important;
}
.our-services .item:not(.top-item):hover .item-icon{
  display: none!important;
}

@media all and (min-width:768px){
  .divizii-description{
    max-width:420px;
  }
}

@media all and (min-width:1440px){
  .container.statistics .flex-container-row{
    flex-wrap:nowrap;
  }

}


@media all and (max-width: 1200px) {
  .page-home .feature .inside .video-container .text {
    /* padding: 30px 120px 30px 0; */
    padding:0;
  }
  .divizii{
    margin:0 auto auto;
  }
  .main-banner-feature.container{
    padding:0;
  }
  .page-home .feature .video.active iframe {
    width: 80%;
    left: 10%;
  }
  .testimonials .inside .left {
    width: 250px;
  }
  .testimonials .inside .right {
    width: calc(100% - 250px);
  }
  .page-tr-traduceri .tabs .inside .left {
    width: 100%;
    margin-bottom: 30px;
  }
  .page-tr-traduceri .tabs .inside .right {
    width: 700px;
    max-width: 100%;
    padding-left: 0;
  }
  .page-tr-traduceri .tabs .inside .right .red-container .title {
    margin-bottom: 30px;
  }
  .page-tr-traduceri .why .items .item,
  .page-traduceri-inner .why .items .item {
    width: calc(33.33% - 20px);
  }
  .page-tr-juridice .types .inside .right .items .item {
    width: calc(50% - 20px);
  }
  .page-tr-juridice .types .inside .right .items .item:nth-child(3):before {
    display: block;
  }
  .page-cursuri-limbi-straine .de-ce .inside .right .items .item {
    width: 100%;
    margin-top: 30px;
  }
  .page-cursuri-limbi-straine .de-ce .inside .right .items .item:nth-child(2) {
    margin-top: 30px;
  }
  .page-cursuri-limbi-straine .de-ce .inside .right .items .item .text {
    max-width: 100%;
  }
  .page-echipa .team .category .inside .items .item {
    width: calc(25% - 20px);
  }
  .page-contact .form-section .inside .right {
    padding-left: 50px;
  }
  .container.our-services .service-items .item{
      width: calc(50% - 20px)!important;
  }
  .main-banner{
    background-position:-300px 90%!important;
  }
}

@media only screen and (max-width: 1100px) {
  .header .inside .header-menu {
    display: none;
  }
  .header .inside .right .order {
    display: none;
  }
  .header .inside .right .mobile-menu .hamburger {
    display: block;
  }
  .feature-page-servicii-inner .inside .right .image .bg-icon {
    display: none;
  }
  .page-interpretariat .domains .inside .right .items .item {
    width: calc(33.33% - 20px);
  }
  .page-comanda .inside .right {
    padding-left: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .video-container.header-banner{
    flex-direction:column;
  }
  .small-left .left {
    width: 300px;
    padding-right: 30px;
  }
  .small-left .right {
    width: calc(100% - 300px);
  }
  .two-texts .inside .item:nth-child(odd) {
    padding-right: 30px;
  }
  .two-texts .inside .item:nth-child(even) {
    padding-left: 30px;
    padding-right: 30px;
  }
  .page-home .our-services .inside .items .item {
    width: calc(33.33% - 20px);
  }
  .last-articles .bottom .inside .items .item .article-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
  }
  .last-articles .bottom .inside .items .item .article-bottom .left {
    margin-bottom: 20px;
    border: 1px solid #ED2125;
    border-radius: 4px;
    padding: 3px 5px;
  }
  .testimonials .inside .left {
    width: 100%;
  }
  .testimonials .inside .right {
    width: 100%;
  }
  .contact-section .inside .newsletter,
  .contact-section .inside .order-link {
    width: 100%;
  }
  .contact-section .inside .order-link a {
    max-width: 350px;
  }
  .feature-page-traduceri-inner .inside .left {
    width: 80%;
  }
  .page-tr-traduceri .numar-limbi .inside .right {
    padding-left: 30px;
  }
  .page-tr-traduceri .numar-limbi .inside .right .text {
    width: 100%;
    margin-bottom: 15px;
  }
  .page-traduceri-inner .two-texts .inside .item:nth-child(even) {
    padding-left: 30px;
  }
  .page-tr-traduceri .why .items .item .icon,
  .page-traduceri-inner .why .items .item .icon {
    min-width: 50px;
  }
  .page-tr-traduceri .why .items .item .icon img,
  .page-traduceri-inner .why .items .item .icon img {
    max-width: 40px;
    max-height: 40px;
  }
  .page-tr-limbi .numar-limbi .inside .right {
    padding-left: 30px;
  }
  .page-tr-limbi .numar-limbi .inside .right .text {
    width: 100%;
    margin-bottom: 15px;
  }
  .page-tr-limbi .estimare .inside .left {
    width: 100%;
    margin-bottom: 30px;
  }
  .page-tr-limbi .estimare .inside .left .title,
  .page-tr-limbi .estimare .inside .left .text {
    max-width: 100%;
  }
  .page-tr-limbi .estimare .inside .right {
    width: 700px;
    max-width: 100%;
    padding-left: 0;
  }
  .page-tr-limbi .estimare .inside .right .red-container {
    padding: 50px 40px;
  }
  .page-tr-limbi .estimare .inside .right .red-container .title {
    margin-bottom: 30px;
  }
  .page-tr-specializate .domenii .inside .items .item {
    width: calc(50% - 20px);
  }
  .page-tr-specializate .ce-oferim .inside .items .item {
    width: calc(33.33% - 20px);
  }
  .page-tr-specializate .ce-oferim .inside .items .item .image {
    width: 50px;
  }
  .page-tr-specializate .ce-oferim .inside .items .item .image img {
    max-width: 40px;
    max-height: 40px;
  }
  .page-tr-specializate .ce-oferim .inside .items .item .text {
    width: calc(100% - 50px);
  }
  .page-tr-it .text-content .inside .left,
  .page-tr-marketing .text-content .inside .left,
  .page-tr-financiare .text-content .inside .left {
    width: 300px;
  }
  .page-tr-it .text-content .inside .left .text,
  .page-tr-marketing .text-content .inside .left .text,
  .page-tr-financiare .text-content .inside .left .text {
    max-width: 270px;
  }
  .page-tr-it .text-content .inside .right,
  .page-tr-marketing .text-content .inside .right,
  .page-tr-financiare .text-content .inside .right {
    width: calc(100% - 300px);
    padding-left: 30px;
  }
  .page-tr-it .text-content .inside .right .title,
  .page-tr-marketing .text-content .inside .right .title,
  .page-tr-financiare .text-content .inside .right .title {
    width: 100%;
  }
  .page-tr-it .text-content .inside .right .text,
  .page-tr-marketing .text-content .inside .right .text,
  .page-tr-financiare .text-content .inside .right .text {
    width: 100%;
    margin-bottom: 15px;
  }
  .page-tr-it .text-content .inside .right .text.larger,
  .page-tr-marketing .text-content .inside .right .text.larger,
  .page-tr-financiare .text-content .inside .right .text.larger {
    width: 100%;
  }
  .page-tr-it .text-content .inside .right .text.full,
  .page-tr-marketing .text-content .inside .right .text.full,
  .page-tr-financiare .text-content .inside .right .text.full {
    width: 100%;
  }
  .page-tr-it .tipuri-documente .inside .items .item,
  .page-tr-marketing .tipuri-documente .inside .items .item,
  .page-tr-financiare .tipuri-documente .inside .items .item {
    width: calc(33.33% - 20px);
  }
  .page-tr-it .tipuri-documente .inside .items .item:nth-child(4):before,
  .page-tr-marketing .tipuri-documente .inside .items .item:nth-child(4):before,
  .page-tr-financiare .tipuri-documente .inside .items .item:nth-child(4):before {
    display: block;
  }
  .page-tr-automotive .compromisuri .inside .left,
  .page-tr-automotive .compromisuri .inside .types {
    width: calc(50% - 20px);
  }
  .page-tr-automotive .compromisuri .inside .types .items .item {
    width: calc(100% - 20px);
  }
  .page-tr-automotive .compromisuri .inside .types .items .item:nth-child(2):before {
    display: block;
  }
  .page-tr-juridice .experienta .inside .left {
    width: 100%;
    margin-bottom: 30px;
  }
  .page-tr-juridice .experienta .inside .left .text {
    max-width: 100%;
  }
  .page-tr-juridice .experienta .inside .right {
    width: 100%;
  }
  .page-tr-juridice .types .small-left .left {
    width: 200px;
  }
  .page-tr-juridice .types .small-left .right {
    width: calc(100% - 200px);
  }
  .page-tr-medicale .specializari .inside .right .items .item {
    width: calc(50% - 20px);
  }
  .page-tr-medicale .colaboratori-tipuri .inside .left,
  .page-tr-medicale .colaboratori-tipuri .inside .right {
    width: 100%;
  }
  .page-tr-medicale .colaboratori-tipuri .inside .left {
    margin-bottom: 20px;
    margin-right: 0;
  }
  .feature-page-servicii .inside {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  .feature-page-servicii .inside:after {
    display: none;
  }
  .feature-page-servicii .inside .left,
  .feature-page-servicii .inside .right {
    width: 100%;
  }
  .feature-page-servicii .inside .left {
    padding-right: 0;
  }
  .feature-page-servicii .inside .left .red-container .page-description {
    max-width: 100%;
  }
  .feature-page-servicii .inside .right {
    padding: 50px 30px 30px;
  }
  .feature-page-servicii .inside .right .text {
    margin-bottom: 30px;
  }
  .feature-page-servicii-inner .inside .left {
    width: 100%;
  }
  .feature-page-servicii-inner .inside .right {
    display: none;
  }
  .page-interpretariat .three-columns .inside .items .item {
    width: 50%;
    margin-bottom: 30px;
  }
  .page-interpretariat .three-columns .inside .items .item:last-child {
    margin-bottom: 0;
  }
  .page-interpretariat .languages .small-right .left {
    padding-right: 30px;
  }
  .page-interpretariat .domains .inside .left,
  .page-interpretariat .domains .inside .right {
    width: 100%;
  }
  .image-bg-items .inside .content .items {
    width: calc(100% - 12px);
  }
  .image-bg-items .inside .content .items .item {
    width: calc(50% - 12px);
  }
  .page-cursuri-inner .description-section .inside .left {
    padding-right: 30px;
  }
  .page-cursuri-inner .description-section .inside .right {
    padding-left: 30px;
  }
  .page-cursuri-inner .two-columns .left {
    padding-right: 30px;
  }
  .page-cursuri-inner .beneficii .inside .items .item {
    width: 33.33%;
  }
  .page-cursuri-inner .beneficii .inside .items .item:nth-child(4):before {
    display: block;
  }
  .page-cursuri-limbi-straine .cursurile-noastre .inside .items .item {
    width: calc(50% - 20px);
  }
  .page-cursuri-traducatori .description-section .inside .left .items .item {
    width: calc(100% - 10px);
  }
  .page-cine-suntem .principles .inside .right .items .item {
    width: 100%;
  }
  .page-cine-suntem .four-items .inside .items .item {
    width: calc(50% - 20px);
  }
  .page-cine-suntem .timeline {
    padding: 110px 30px 120px;
  }
  .page-cine-suntem .timeline .inside {
    padding-bottom: 60px;
  }
  .page-cine-suntem .timeline .inside .timeline-content {
    width: 100%;
  }
  .specs .inside .items .item .image {
    min-width: 50px;
  }
  .specs .inside .items .item .image img {
    width: 40px;
    max-height: 40px;
  }
  .specs .inside .items .item .text {
    width: calc(100% - 50px);
  }
  .page-contact .form-section .inside .left {
    width: 350px;
    padding: 60px 60px 60px 0;
  }
  .page-contact .form-section .inside .left .items .item .inner-item {
    width: 100%;
  }
  .page-contact .form-section .inside .left .items .item .inner-item:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }
  .page-contact .form-section .inside .right {
    width: calc(100% - 350px);
  }
  .page-contact .locations .inside .items {
    -webkit-justify-content: center;
    justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
  }
  .page-contact .locations .inside .items .item {
    width: calc(33.33% - 12px);
  }
  .blog-feature .inside .left {
    width: calc(100% - 300px);
  }
  .blog-feature .inside .image {
    width: 300px;
  }
  .blog-feature .inside .image:before {
    display: none;
  }
  .blog-list .inside .articles-list {
    width: calc(100% - 200px);
    padding-right: 50px;
  }
  .blog-list .inside .sidebar {
    width: 200px;
  }
  .footer .inside .left,
  .footer .inside .right {
    width: 100%;
  }
  .footer .inside .left {
    margin-bottom: 30px;
  }
  .footer .inside .right .pay-method {
    max-width: 300px;
  }
  .page-error .inside .left,
  .page-thank-you .inside .left {
    width: 150px;
    padding-right: 30px;
  }
  .page-error .inside .right,
  .page-thank-you .inside .right {
    width: calc(100% - 150px);
    padding-left: 50px;
  }
  .page-comanda .inside .left {
    width: 100%;
    padding: 30px 30px 30px 0;
  }
  .page-comanda .inside .left .title {
    font-size: 24px;
    margin-bottom: 0;
  }
  .page-comanda .inside .left .title br {
    display: none;
  }
  .page-comanda .inside .right {
    width: 100%;
    padding-left: 0;
  }
  .why .inside .right .items .item {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .sec-banner{
    flex-direction: column !important;
    padding-bottom: 0 !important;
  }
  .second-text-div a.button.red{
      width: max-content;
      margin-top: 0;
  }
  .small-left .left {
    width: 100%;
    margin-bottom: 30px;
  }
  .small-left .right {
    width: 100%;
  }
  .small-left .right .items {
    margin-left: 0;
  }
  .small-left .right .items .item {
    width: calc(100% - 50px);
    margin: 30px 25px 10px;
  }
  .why .inside .left .title {
    max-width: 100%;
  }
  .page-home .feature .inside .video-container .text {
    width: 100%;
  }
  .page-home .feature .video .bg-image {
    display: none;
  }
  .page-home .feature .controllers .inside {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    padding-right: 30px;
  }
  .page-home .feature .controllers .inside .fade-cercle {
    display: none;
  }
  .page-home .our-services .inside .title-section {
    -webkit-flex-direction: column;
    flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
  }
  .page-home .our-services .inside .items {
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
  }
  .page-home .our-services .inside .items .item {
    width: calc(220px - 20px);
  }
  .last-articles .bottom .inside .items {
    -webkit-flex-direction: column;
    flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
  }
  .last-articles .bottom .inside .items .item {
    width: 350px;
    max-width: 100%;
  }
  .testimonials .inside .left {
    -webkit-flex-direction: column;
    flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
  }
  .testimonials .inside .left .title {
    text-align: center;
    max-width: 220px;
  }
  .testimonials .inside .right .items {
    -webkit-flex-direction: column;
    flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    width: 100%;
  }
  .testimonials .inside .right .items .item {
    width: 350px;
    max-width: 100%;
  }
  .footer .inside .left,
  .footer .inside .right {
    width: 100%;
  }
  .footer .inside .left {
    margin-bottom: 30px;
  }
  .footer .inside .left .social .item {
    margin-bottom: 15px;
  }
  .logos .inside {
    -webkit-justify-content: center;
    justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
  }
  .logos .inside .item {
    margin: 10px 20px;
  }
  .page-tr-traduceri .tabs .inside .left .tabs-inner .tabs-content .item ul li {
    width: 33.33%;
  }
  .page-tr-traduceri .numar-limbi .inside .left .text,
  .page-traduceri-inner .numar-limbi .inside .left .text {
    max-width: 100%;
  }
  .page-tr-traduceri .why .items .item,
  .page-traduceri-inner .why .items .item {
    width: calc(50% - 20px);
  }
  .page-traduceri-inner .two-texts .inside .item:nth-child(odd), .page-traduceri-inner .two-texts .inside .item:nth-child(even) {
    width: 100%;
    margin-bottom: 30px;
  }
  .page-tr-limbi .alte-limbi .inside .items .item {
    width: calc(50% - 12px);
  }
  .page-tr-specializate .ce-oferim .inside .items .item {
    width: calc(50% - 20px);
  }
  .page-tr-it .text-content .inside .left,
  .page-tr-marketing .text-content .inside .left,
  .page-tr-financiare .text-content .inside .left {
    width: 100%;
  }
  .page-tr-it .text-content .inside .left .text,
  .page-tr-marketing .text-content .inside .left .text,
  .page-tr-financiare .text-content .inside .left .text {
    max-width: 100%;
  }
  .page-tr-it .text-content .inside .right,
  .page-tr-marketing .text-content .inside .right,
  .page-tr-financiare .text-content .inside .right {
    width: 100%;
  }
  .page-tr-it .tipuri-documente .inside .items .item,
  .page-tr-marketing .tipuri-documente .inside .items .item,
  .page-tr-financiare .tipuri-documente .inside .items .item {
    width: calc(50% - 20px);
  }
  .page-tr-it .tipuri-documente .inside .items .item:nth-child(3):before,
  .page-tr-marketing .tipuri-documente .inside .items .item:nth-child(3):before,
  .page-tr-financiare .tipuri-documente .inside .items .item:nth-child(3):before {
    display: block;
  }
  .page-tr-automotive .caracteristici .inside .items .item {
    width: 100%;
    margin-bottom: 30px;
  }
  .page-tr-automotive .caracteristici .inside .items .item:last-child {
    margin-bottom: 0;
  }
  .page-tr-automotive .caracteristici .inside .items .item .cercle img {
    transform: rotate(90deg);
  }
  .page-tr-automotive .dispozitie .inside .left,
  .page-tr-automotive .dispozitie .inside .right {
    width: 100%;
  }
  .page-tr-automotive .dispozitie .inside .left {
    margin-bottom: 30px;
  }
  .page-tr-automotive .dispozitie .inside .right .red {
    margin-bottom: 15px;
  }
  .page-tr-automotive .compromisuri .inside .left,
  .page-tr-automotive .compromisuri .inside .types {
    width: calc(100% - 20px);
  }
  .page-tr-automotive .compromisuri .inside .left {
    margin-bottom: 20px;
  }
  .page-tr-automotive .compromisuri .inside .types .items .item {
    width: calc(50% - 20px);
  }
  .page-tr-automotive .compromisuri .inside .types .items .item:nth-child(2):before {
    display: none;
  }
  .page-tr-petrol .languages .inside .right .description {
    margin-bottom: 15px;
  }
  .page-tr-petrol .languages .inside .right .text {
    width: 100%;
    margin-bottom: 15px;
  }
  .page-tr-petrol .vast-domain .inside .section-title {
    text-align: center;
  }
  .page-tr-petrol .vast-domain .inside .items {
    -webkit-justify-content: center;
    justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
  }
  .page-tr-petrol .vast-domain .inside .items .item {
    width: 230px;
  }
  .page-tr-juridice .dispozitie .inside .left,
  .page-tr-juridice .dispozitie .inside .right {
    width: 100%;
  }
  .page-tr-juridice .dispozitie .inside .left {
    margin-bottom: 30px;
  }
  .page-tr-juridice .dispozitie .inside .left .red {
    width: 100%;
    max-width: 500px;
    margin-bottom: 15px;
  }
  .page-tr-juridice .dispozitie .inside .left .text {
    max-width: 100%;
  }
  .page-tr-juridice .types .small-left .left {
    width: 100%;
  }
  .page-tr-juridice .types .small-left .right {
    width: 100%;
  }
  .page-interpretariat .three-columns .inside .items .item {
    width: 100%;
  }
  .page-interpretariat .languages .small-right .left,
  .page-interpretariat .languages .small-right .right {
    width: 100%;
  }
  .page-servicii-inner .two-texts .inside .item {
    width: 100%;
    margin-bottom: 30px;
  }
  .page-servicii-inner .two-texts .inside .item:nth-child(odd) {
    padding-right: 0;
  }
  .page-servicii-inner .two-texts .inside .item:nth-child(even) {
    padding-left: 0;
  }
  .page-servicii-inner .two-texts .inside .item:last-child {
    margin-bottom: 0;
  }
  .page-revizie .why .small-left .left .page-description {
    max-width: 100%;
  }
  .page-cursuri-inner .description-section .inside .left,
  .page-cursuri-inner .description-section .inside .right {
    width: 100%;
  }
  .page-cursuri-inner .description-section .inside .left {
    margin-bottom: 30px;
  }
  .page-cursuri-inner .two-columns .left,
  .page-cursuri-inner .two-columns .right {
    width: 100%;
  }
  .page-cursuri-inner .beneficii .inside .items .item {
    width: 50%;
  }
  .page-cursuri-inner .beneficii .inside .items .item:nth-child(3):before {
    display: block;
  }
  .page-cursuri-limbi-straine .de-ce .inside .right {
    padding-left: 0;
  }
  .page-cursuri-traducatori .description-section .inside .right {
    margin-bottom: 30px;
  }
  .page-cursuri-traducatori .description-section .inside .left {
    padding-left: 0;
  }
  .page-cursuri-traducatori .scopul .inside .right {
    padding-left: 0;
  }
  .page-cursuri-traducatori .scopul .inside .right .item {
    width: 100%;
    margin-bottom: 30px;
  }
  .page-cursuri-traducatori .scopul .inside .right .item:nth-child(1), .page-cursuri-traducatori .scopul .inside .right .item:nth-child(2) {
    width: 100%;
  }
  .feature-page .inside .red-container {
    width: calc(100% + 30px);
    top: 0;
  }
  .page-cine-suntem .principles .inside .right .items .item {
    margin: 0 0 30px;
  }
  .specs .inside .items .item {
    width: calc(50% - 20px);
  }
  .page-echipa .team .category .inside .items {
    -webkit-justify-content: center;
    justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
  }
  .page-echipa .team .category .inside .items .item {
    width: calc(220px - 20px);
  }
  .page-contact .form-section .inside {
    border-top-right-radius: 8px;
  }
  .page-contact .form-section .inside:before {
    display: none;
  }
  .page-contact .form-section .inside .left,
  .page-contact .form-section .inside .right {
    width: 100%;
  }
  .page-contact .form-section .inside .right {
    padding: 30px;
  }
  .page-contact .locations .inside .items .item {
    width: calc(50% - 12px);
    min-width: 280px;
  }
  .blog-feature .inside .left {
    width: calc(100% - 200px);
  }
  .blog-feature .inside .image {
    width: 200px;
  }
  .post-page .content-container .inside .image-thumbnail {
    height: 300px;
  }
  .page-error .inside .left,
  .page-thank-you .inside .left {
    -webkit-justify-content: center;
    justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    min-height: auto;
    width: 100%;
  }
  .page-error .inside .left:after,
  .page-thank-you .inside .left:after {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: 100%;
    background-color: #ED2125;
  }
  .page-error .inside .left img,
  .page-thank-you .inside .left img {
    height: 50px;
  }
  .page-error .inside .right,
  .page-thank-you .inside .right {
    width: 100%;
    padding-left: 0px;
  }
  .page-error .inside .right .title,
  .page-thank-you .inside .right .title {
    font-size: 1.875rem;
  }
  .page-error .inside .right .description,
  .page-thank-you .inside .right .description {
    font-size: 1rem;
  }
  .page-error .inside .right .buttons,
  .page-thank-you .inside .right .buttons {
    margin-top: 30px;
  }
  .page-error .inside .right .buttons a,
  .page-thank-you .inside .right .buttons a {
    padding: 10px 20px;
  }
  .page-legalizare .why .inside .left,
  .page-localizare .why .inside .left {
    padding-right: 0px;
  }
  .page-legalizare .why .inside .left .image,
  .page-localizare .why .inside .left .image {
    height: 200px;
  }
  .page-legalizare .why .inside .left .image img,
  .page-localizare .why .inside .left .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media only screen and (max-width: 782px) {
  body.logged-in .header .right .mobile-menu .content {
    top: 136px;
    padding-bottom: 136px;
  }
  body.logged-in .header.fixed {
    top: 46px;
  }
}

@media only screen and (max-width: 650px) {
  .divizii .divizii-description{
    padding-top: 30px;
  }
  .divizii-list{
    text-align: center;
    align-content: center;
  }
  .divizii .list-nr{
    margin: auto;
  }
  .du, .dd, .dt, .dp, .first-text-div, .second-text-div{
    width: 50% !important;
  }
  .dc{
   width: 100%;
  }
  .du, .dd, .dt, .dp{
    padding-bottom: 30px;
    padding-left: 0 !important;
  }
  .dd, .dt, .dp, .dc{
   border-left: none !important;
  }
  .stats{
    flex-direction: column !important;
  }
  .services-inside{
   justify-content: center !important;
  }
  .service-items .item{
    width: calc(50% - 20px) !important;
    padding: 10px !important;
  }
  .service-items .bottom p.title{
    font-size: 15px !important;
  }
  .colab{
    padding: 90px 30px 0 30px !important;
  }
  /* .main-banner-feature{
    min-height: calc(10vh - 90px) !important;
  } */
  .main-banner, .break{
   display: none;
  }
  .main-banner-title{
    z-index: 3!important;
  }
  .column-container,.sec-banner{
    flex-direction: column !important;
  }
  .first-text-div, .second-text-div,.sec-banner{
    width: 100% !important;
    padding-left: 0px !important;
    padding-right: 0 !important;
  }
  .first-text-div p{
   margin-bottom: 0px!important;
  }
  .sec-banner h2, .sec-banner p{
    color: #000 !important;
  }
  .sec-banner p.description{
    padding-bottom: 10px;
  }
  .second-text-div a.button.red{
    margin-bottom: 0;
  }
  .second-text-div a.button.red, .second-text-div a p{
    color: white !important;
  }
  .second-text-div a.button.red{
    width: fit-content !important;
  }
  .button-wrapper{
    align-items: center;
    padding-bottom: 30px;
  }
  .page-traduceri-inner .workflow .inside .items .item {
    -webkit-flex-direction: column;
    flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
  }
  .page-traduceri-inner .workflow .inside .items .item .number-section {
    width: 75px;
  }
  .page-traduceri-inner .workflow .inside .items .item .title-section,
  .page-traduceri-inner .workflow .inside .items .item .text-section {
    width: 100%;
    padding: 10px 20px;
  }
  .page-traduceri-inner .workflow .inside .items .item .title-section p,
  .page-traduceri-inner .workflow .inside .items .item .text-section p {
    max-width: 100%;
  }
  .page-tr-specializate .domenii .inside .items .item {
    width: calc(100% - 20px);
  }
  .page-tr-automotive .compromisuri .inside .types .items .item {
    width: calc(100% - 20px);
  }
  .page-tr-automotive .compromisuri .inside .types .items .item:nth-child(2):before {
    display: block;
  }
  .page-tr-medicale .colaboratori-tipuri .inside .right .items .item {
    width: calc(100% - 20px);
  }
  .page-tr-medicale .colaboratori-tipuri .inside .right .items .item:nth-child(2):before {
    display: block;
  }
  .feature-page-servicii .inside .right .items .item {
    width: calc(100% - 20px);
  }
  .page-interpretariat .domains .inside .right .items .item {
    width: calc(50% - 20px);
  }
  .page-cursuri-limbi-straine .cursurile-noastre .inside .items .item {
    width: calc(100% - 20px);
  }
  .specs .inside .items .item {
    width: calc(100% - 20px);
  }
  .blog-feature .inside .left {
    width: 100%;
  }
  .blog-feature .inside .image {
    display: none;
  }
  .blog-list .inside .articles-list {
    width: 100%;
    padding-right: 0;
  }
  .blog-list .inside .sidebar {
    width: 200px;
    max-width: 100%;
  }
  .footer .inside {
    padding: 40px 0 80px;
  }
  .footer .inside .left .info {
    width: 100%;
  }
  .page-comanda .inside .right .form-tabs .item {
    width: calc(50% - 10px);
  }
  .page-comanda .inside .right .tabs-content #tab_content_2 .items .pachet {
    width: calc(100% - 20px);
  }
  .page-comanda .inside .right .tabs-content #tab_content_3 .left,
  .page-comanda .inside .right .tabs-content #tab_content_3 .right {
    width: 100%;
  }
  .page-comanda .inside .right .tabs-content #tab_content_3 .left {
    padding: 0;
  }
  .page-home .feature {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
  }
  .page-home .feature .inside {
    order: 2;
  }
  .page-home .feature .inside .video-container .text {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    padding: 30px 0;
  }
  .page-home .feature .inside .video-container .text .title,
  .page-home .feature .inside .video-container .text .description {
    text-align: center;
  }
  .page-home .feature .inside .video-container .text .buttons {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
  }
  .page-home .feature .inside .video-container .text .buttons .button {
    margin: 10px 0;
  }
  .page-home .feature .controllers {
    position: relative;
    width: 100%;
    height: auto;
    order: 1;
    margin-top: 30px;
  }
  .page-home .feature .controllers .inside {
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    padding-right: 0;
  }
}

@media only screen and (max-width: 550px) {
  .feature-page-traduceri-inner {
    padding-right: 0;
  }
  .feature-page-traduceri-inner .inside {
    padding: 0;
  }
  .feature-page-traduceri-inner .inside .left {
    width: 100%;
  }
  .contact-section .inside .newsletter .form .content {
    width: 100%;
    padding-right: 0;
  }
  .contact-section .inside .newsletter .form .send {
    width: 100px;
    margin-top: 30px;
  }
  .contact-section .inside .newsletter .form .send input {
    width: 100px;
    height: 40px;
  }
  .page-tr-traduceri .tabs .inside .left .tabs-inner .tabs-menu .item {
    width: 50%;
    margin-left: 0;
    padding: 5px;
  }
  .page-tr-traduceri .tabs .inside .left .tabs-inner .tabs-menu .item:first-child, .page-tr-traduceri .tabs .inside .left .tabs-inner .tabs-menu .item:last-child {
    border-radius: 0;
  }
  .page-tr-traduceri .tabs .inside .left .tabs-inner .tabs-content .item ul li {
    width: 50%;
  }
  .page-tr-traduceri .why .items .item,
  .page-traduceri-inner .why .items .item {
    width: calc(100% - 20px);
  }
  .page-tr-limbi .alte-limbi .inside .items .item {
    width: calc(100% - 12px);
  }
  .page-tr-specializate .ce-oferim .inside .items .item {
    width: calc(100% - 20px);
  }
  .page-tr-it .tipuri-documente .inside .items .item,
  .page-tr-marketing .tipuri-documente .inside .items .item,
  .page-tr-financiare .tipuri-documente .inside .items .item {
    width: calc(100% - 20px);
  }
  .page-tr-it .tipuri-documente .inside .items .item:nth-child(2):before,
  .page-tr-marketing .tipuri-documente .inside .items .item:nth-child(2):before,
  .page-tr-financiare .tipuri-documente .inside .items .item:nth-child(2):before {
    display: block;
  }
  .page-tr-juridice .types .inside .right .items .item {
    width: calc(100% - 20px);
  }
  .page-tr-juridice .types .inside .right .items .item:nth-child(2):before {
    display: block;
  }
  .page-tr-medicale .specializari .inside .right .items .item {
    width: calc(100% - 20px);
  }
  .image-bg-items .inside .content .items {
    width: 100%;
    margin: 0;
  }
  .image-bg-items .inside .content .items .item {
    width: calc(100% - 12px);
  }
  .page-cursuri-inner .beneficii .inside .items .item {
    width: 100%;
  }
  .page-cursuri-inner .beneficii .inside .items .item:nth-child(2):before {
    display: block;
  }
  .page-cine-suntem .four-items .inside .items .item {
    width: calc(100% - 20px);
  }
  .page-contact .form-section .inside .right form p:nth-child(2), .page-contact .form-section .inside .right form p:nth-child(3), .page-contact .form-section .inside .right form p:nth-child(4), .page-contact .form-section .inside .right form p:nth-child(5) {
    width: calc(100% - 12px);
  }
  .post-page .content-container .inside .share {
    width: 100%;
    margin-bottom: 30px;
  }
  .post-page .content-container .inside .share .title {
    margin-bottom: 15px;
  }
  .post-page .content-container .inside .share .social {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    width: calc(100% + 5px);
    margin-left: -2.5px;
  }
  .post-page .content-container .inside .share .social .item {
    margin: 2.5px;
  }
  .post-page .content-container .inside .content {
    width: 100%;
  }
}

@media only screen and (max-width: 450px) {
  .page-title .title {
    font-size: 1.875rem;
    line-height: 1.875rem;
  }
  .page-title .subtitle {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
  .page-interpretariat .domains .inside .right .items .item {
    width: calc(100% - 20px);
  }
  .blog-list .inside .articles-list .item .bottom-section {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
  }
  .blog-list .inside .articles-list .item .bottom-section .more {
    margin-bottom: 20px;
    border: 1px solid #ED2125;
    border-radius: 4px;
    padding: 3px 5px;
  }
  .freelancer .inside table td {
    display: flex;
    width: 100%;
  }
}


.post-page .cariere-form form label input[type="checkbox"]{
    max-width:40px;
}
.post-page .cariere-form form .wpcf7-acceptance label{
    align-items:center;
}
.rnd-nou{
    width:100%;
    display:block;
    /*height:100%;*/
}
.main-banner-feature div.inside.flex-container-row{
  padding: 40px 0 0;
}

/* Testimoniale video*/
.testimoniale-video{
  max-width:100%;
  overflow:hidden;
}
.testimoniale-video iframe{
  border-radius:5px;
}

.testimoniale-video .flex-container-column:not(.video-wrapper){
  background:#ED2125;
  color:#ffffff;
  width:100%;
  justify-content: center;
  padding:50px
}
.testimoniale-video .video-wrapper{
  padding-top:50px;
  padding-bottom:50px;
}
.testimoniale-video .slick-dots{
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimoniale-video .slick-dots button{
  display: none;
}
.testimoniale-video .slick-dots li{
  width:13px;
  height:13px;
  background:#ffffff;
  border-radius:50%;
  border:1px solid #000000;
  padding:0;
  margin-right:10px;
  position:relative
}
.testimoniale-video .slick-slide img{
  border-radius:5px;
}

.testimoniale-video .slick-dots .slick-active, .testimoniale-video .slick-dots li:hover{
  border-color:#ED2125;
}
.testimoniale-video .slick-dots .slick-active{
  position:relative;
}
.testimoniale-video .slick-dots li::after{
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  position: absolute;
  top:1px;
  left:1px;
}

.testimoniale-video .slick-dots .slick-active::after, .testimoniale-video .slick-dots li:hover:after{
  background: #ED2125;
}
@media all and (max-width:1200px){
  .testimoniale-video .video-wrapper{
    max-width:80%;
    margin:0 auto;
    text-align: center;
  }
  .testimoniale-video .flex-container-column:not(.video-wrapper){
    text-align:center;
  }
  .testimoniale-video .video-wrapper-inside{
    margin-top:-80px;
  }
  .testimoniale-video .slick-dots{
   margin-top:10px;
  }
}
@media all and (min-width:1200px){
  .testimoniale-video .video-wrapper-inside{
    margin-left:-110px;
    max-width:500px;
    overflow:hidden;
    margin-top:0 ;
  }
  .testimoniale-video iframe{
    width:500px;
    height:300px;
  }
  .testimoniale-video h2{
    max-width:210px;
    font-size: 40px;
    font-weight: 800;
    text-align: left;
  }
  .testimoniale-video .flex-container-column:not(.video-wrapper){
    width:45%;
    padding:100px 50px 50px calc((100% - 1156px) / 2);
    justify-content: flex-start;
  }
  .testimoniale-video .video-wrapper{
    width:55%;
    padding:100px 0;
  }
}

@media all and (min-width:1366px){
  .testimoniale-video .video-wrapper-inside{
    max-width:720px;
    overflow:hidden;
    margin-left:-110px;
  }
  .testimoniale-video iframe{
    width:720px;
    height:400px;
  }
  .testimoniale-video .slick-slide img{
    max-height:380px;
    border-radius:5px;
  }
}

/*New banner*/
.header-banner .second-text-div{
  position:relative;
}

.page-home .feature .inside .video-container .text.first-text-div{
  padding-bottom:100px!important;
}
.header-banner .sec-banner{
  position:absolute;
  left:0;
  bottom:100px;
  width:90%;
  background:rgba(255, 255, 255, 0.9);
  color:#000000;
  padding:15px!important;
  align-items:center;
}
.page-home .feature .inside .video-container .sec-banner .description{
  color:#000000;
  max-width:100%;
  font-size:14px;
  margin-bottom:0;
}
.header-banner .sec-banner .description br{
  display: none;  
}
.header-banner .main-banner img{
  position:relative;
  bottom:40px;
}
.second-text-div, .first-text-div{
  height:initial;
}

@media all and (max-width:991px){
  .video-container .first-text-div, .video-container .second-text-div{
    width:initial!important;
  }
  .header-banner .sec-banner{
    width:100%;
  }

}

/*Page echipa*/

.page-echipa .feature-page .inside .image-container{
  border-radius:0;
}
.page-echipa .feature-page .inside .red-container{
  position:initial;
  order:-1;
}
@media all and (max-width:768px){
  .page-echipa .feature-page .inside .image-container img{
    width:initial;
    max-width:initial;
  }
 
  .page-echipa .feature-page .inside .image-container {
    width:calc(100% + 60px);
    margin-left:-30px;
    overflow:initial;
  }
}
@media all and (min-width:768px){
  .page-echipa .container .inside{
    display: flex;
    flex-direction:row;
  }
}


@media all and (min-width:991px){
  .page-echipa .container .inside{
    flex-direction:row;
    flex-wrap:nowrap;
  }

  .page-echipa .feature-page .inside .image-container img{
    height:100%;
    width:73%;
  }
}

@media all and (min-width:1200px){
  .page-echipa .feature-page .inside .image-container img{
    width:73%;
  }
}