* {
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

body {
  position: relative;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  color: #2D2D60;
  background-color: #fff;
  min-width: 320px; }

p {
  margin: 0; }

a {
  text-decoration: none;
  color: #2D2D60; }

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

input {
  border: none; }

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

/* IMORTS */
/* Flex classes*/
.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-start;
  -ms-align-self: flex-start; }

.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-wrap {
  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: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap; }

.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; }

/* END IMORTS*/
.container-my {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  padding: 0 30px;
  overflow-y: hidden; }
  .container-my .inside {
    width: 1500px;
    max-width: 100%; }

.hidden {
  display: none; }

.btn-grd {
  -webkit-align-self: flex-start;
  align-self: flex-start;
  -moz-align-self: flex-start;
  -ms-align-self: flex-start;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  padding: 25px 54px;
  background: #fe834e;
  background: linear-gradient(48deg, #fe834e 0%, #eb5d1f 100%);
  border-radius: 3px;
  transition: background 200ms ease-in-out; }
  .btn-grd:hover {
    background: linear-gradient(-48deg, #fe834e 0%, #eb5d1f 100%); }

.squers {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  z-index: -1;
  top: 0;
  left: 0; }
  .squers:before {
    position: absolute;
    content: "";
    width: 1035px;
    height: 1076px;
    background-color: #2D2D60;
    border-radius: 150px;
    transform: rotate(59deg);
    top: -470px;
    left: -50px;
    z-index: -2; }
  .squers:after {
    position: absolute;
    content: "";
    width: 789px;
    height: 756px;
    background-color: #33336A;
    border-radius: 120px;
    transform: rotate(59deg);
    bottom: calc(100% - 53px);
    left: -104px;
    z-index: -1; }

.header {
  background-color: #2D2D60;
  z-index: 3; }
  .header .inside {
    padding: 55px 0 30px; }
    .header .inside .menu {
      position: relative;
      z-index: 5; }
      .header .inside .menu a {
        font-size: 14px;
        line-height: 40px;
        font-weight: 700;
        margin-left: 38px; }
        .header .inside .menu a:first-of-type {
          margin-left: 0; }

.feature {
  margin-top: -129.47px; }
  .feature .inside {
    height: 100vh;
    padding-top: 129.47px;
    color: #fff; }
    .feature .inside .left {
      width: 40%;
      margin-top: -129.47px; }
      .feature .inside .left .title {
        font-size: 48px;
        line-height: 48px;
        font-weight: 800;
        max-width: 400px; }
      .feature .inside .left .description {
        font-size: 25px;
        line-height: 30px;
        font-weight: 300;
        margin-top: -30px;
        margin-bottom: 44px; }
    .feature .inside .right {
      width: 60%;
      height: 100%;
      padding-top: 65px; }
      .feature .inside .right img {
        width: auto;
        max-height: 100%; }
        .feature .inside .right img:nth-of-type(2) {
          margin-top: -65px; }

.avantaje .inside {
  padding: 120px 0 120px; }
  .avantaje .inside .title {
    font-size: 42px;
    line-height: 48px;
    font-weight: 800;
    max-width: 1050px;
    text-align: center;
    margin-bottom: 50px; }
    .avantaje .inside .title span {
      color: #EB5E1F; }
  .avantaje .inside .items {
    width: 100%;
    padding: 0 60px; }
    .avantaje .inside .items .item {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      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: 33.33%;
      max-width: 100%;
      padding: 20px; }
      .avantaje .inside .items .item .icon {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        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;
        -webkit-justify-content: center;
        justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        min-height: 187px; }
      .avantaje .inside .items .item .title {
        font-size: 22px;
        line-height: 50px;
        font-weight: 800;
        margin: 0 0 37px; }
      .avantaje .inside .items .item .description {
        font-size: 18px;
        line-height: 32px;
        max-width: 360px;
        text-align: center; }
  .avantaje .inside .when-button {
    position: relative;
    width: 100%;
    margin-top: 100px; }
    .avantaje .inside .when-button:before {
      position: absolute;
      content: "";
      width: 100%;
      height: 1px;
      top: calc(50% - 0.5px);
      left: 0;
      background-color: #DFDFE5;
      z-index: -1; }
    .avantaje .inside .when-button:after {
      position: absolute;
      content: "";
      width: 400px;
      height: 100%;
      top: 0;
      left: calc(50% - 200px);
      background-color: #fff;
      z-index: 1; }
    .avantaje .inside .when-button .btn-grd {
      position: relative;
      z-index: 2; }

.functionalitati .inside {
  padding: 30px 0 120px; }
  .functionalitati .inside .title {
    font-size: 42px;
    line-height: 48px;
    font-weight: 800;
    max-width: 1050px;
    text-align: center;
    margin-bottom: 90px; }
    .functionalitati .inside .title span {
      color: #EB5E1F; }
  .functionalitati .inside .items {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px; }
    .functionalitati .inside .items .item {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      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;
      -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.16);
      -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.16);
      box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.16);
      padding: 50px;
      border-radius: 8px;
      min-height: 230px; }
      .functionalitati .inside .items .item .icon {
        width: 157px; }
      .functionalitati .inside .items .item .text {
        width: calc(100% - 157px);
        font-size: 18px;
        line-height: 26px; }
        .functionalitati .inside .items .item .text span {
          font-weight: 800; }

.instalarea {
  background-color: #2D2D60;
  overflow-y: visible;
  background-image: url("../assets/img/install-bg.svg"); }
  .instalarea .inside {
    position: relative;
    padding: 200px 0;
    padding-bottom: 0px; }
    .instalarea .inside .big-phone {
      position: absolute;
      top:55px;
      left: 0;
      width: 937px;
      z-index: 1; }
    .instalarea .inside .content {
      position: relative;
      max-width: 550px;
      margin-left: calc(50% - 120px);
      z-index: 2; }
      .instalarea .inside .content .text {
        font-size: 42px;
        line-height: 48px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 50px; }
        .instalarea .inside .content .text span {
          color: #EB5E1F; }
      .instalarea .inside .content .install-links {
        width: calc(100% + 20px);
        margin-left: -10px;
        margin-right: -10px; }
        .instalarea .inside .content .install-links .item {
          margin: 10px; }

.footer {
  background-color: #2D2D60;
  overflow-x: hidden; }
  .footer .inside .left,
  .footer .inside .right {
    width: 50%; }
  .footer .inside .left .title {
    font-size: 58px;
    line-height: 62px;
    font-weight: 700;
    color: #fff;
    max-width: 300px;
    margin-bottom: 45px; }
    .footer .inside .left .title span {
      color: #EB5E1F; }
  .footer .inside .left .description {
    font-size: 18px;
    line-height: 32px;
    font-weight: 300;
    color: #fff;
    max-width: 430px; }
  .footer .inside .bottom {
    width: 100%;
    margin-top: 50px;
    color: #fff; }
    .footer .inside .bottom .rights {
      font-size: 13px;
      line-height: 16px; }
    .footer .inside .bottom .links a {
      font-size: 16px;
      line-height: 31px;
      font-weight: 700;
      color: #fff;
      margin-left: 75px;
      transition: all 200ms ease-in-out; }
      .footer .inside .bottom .links a:hover {
        color: #EB5E1F; }
      .footer .inside .bottom .links a:first-of-type {
        margin-left: 0; }
    .footer .inside .bottom .links .contact {
      padding: 13px 35px;
      border: 1px solid #EB5E1F;
      border-radius: 10px; }
      .footer .inside .bottom .links .contact:hover {
        background-color: #EB5E1F;
        color: #fff; }
  .footer .bg-footer {
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
    height: 198px;
    background-image: url("../img/footer-bg-1.svg");
    background-position: center; }

.footer.top .inside {
  padding-top: 120px;
  position: relative; }
  .footer.top .inside:before, .footer.top .inside:after {
    position: absolute;
    content: "";
    width: 50vw;
    height: 100%;
    top: 0;
    background-image: url("../img/footer-bg-2.svg"); }
  .footer.top .inside:before {
    right: 100%;
    background-position: left;
    transform: rotate(180deg); }
  .footer.top .inside:after {
    left: 100%;
    background-position: left; }

.footer.bottom .inside {
  padding-bottom: 70px; }

#mc_embed_signup {
  max-width: 450px; }

.mc-field-group {
  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; }

.mc-field-group label,
.mc-field-group input {
  width: 100%;
  color: #fff; }

.mc-field-group label {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 5px; }

.mc-field-group input {
  font-size: 16px;
  line-height: 72px;
  color: #fff;
  padding: 0px 20px;
  background-color: #272758;
  border-radius: 8px;
  margin-bottom: 10px; }
  .mc-field-group input::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 72px;
    color: #fff; }
  .mc-field-group input::-moz-placeholder {
    font-size: 16px;
    line-height: 72px;
    color: #fff; }
  .mc-field-group input:-ms-input-placeholder {
    font-size: 16px;
    line-height: 72px;
    color: #fff; }
  .mc-field-group input:-moz-placeholder {
    font-size: 16px;
    line-height: 72px;
    color: #fff; }

#mc_embed_signup .btn-grd {
  width: 100%;
  max-width: 450px; }

.politica:before, .politica:after {
  display: none; }

.politica .container-my .inside {
  padding-bottom: 50px; }

#mc-embedded-subscribe[disabled] {
  background: #bdbcbc !important; }

#checkbox-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;
  margin-bottom: 15px; }

#checkbox-label input {
  width: 40px; }

#checkbox-label span {
  width: calc(100% - 40px); }
  #checkbox-label span a {
    color: #fff;
    text-decoration: underline; }
    #checkbox-label span a:hover {
      color: #EB5E1F; }

#checkbox-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;
  width: 100%;
  cursor: pointer; }

#checkbox-label input {
  position: relative;
  width: 30px !important;
  height: 30px !important;
  margin: 0 !important;
  opacity: 0;
  border: 1px solid #4E4E81; }

#checkbox-label input:hover ~ span:after {
  opacity: 0.5; }

#checkbox-label input:checked ~ span:after {
  opacity: 1; }

#checkbox-label input:checked:hover ~ span:after {
  opacity: 1; }

#checkbox-label span {
  position: relative;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  margin: 0 !important;
  padding-left: 10px;
  color: #8686C9; }

#checkbox-label span:before, #checkbox-label span:after {
  position: absolute;
  content: "";
  right: 100%; }

#checkbox-label span:before {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background-color: #2D2D60;
  top: calc(50% - 15px);
  border: 1px solid #4E4E81; }

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

#checkbox-label span a {
  font-size: 13px;
  font-weight: 400;
  color: #8686C9; }

#checkbox-label span a:hover {
  text-decoration: underline; }

.thank-you {
  background-color: #2D2D60; }
  .thank-you .header {
    position: relative; }
    .thank-you .header .inside .menu a {
      color: #fff; }
      .thank-you .header .inside .menu a:hover {
        color: #EB5E1F; }
  .thank-you .content {
    margin-top: -129.47px; }
    .thank-you .content .inside {
      padding-top: 129.47px;
      min-height: 100vh;
      color: #fff; }
      .thank-you .content .inside .title {
        font-size: 48px;
        line-height: 48px;
        font-weight: 800;
        max-width: 400px;
        text-align: center;
        margin-bottom: 15px; }
      .thank-you .content .inside .description {
        font-size: 25px;
        line-height: 30px;
        font-weight: 300;
        max-width: 600px;
        text-align: center; }
      .thank-you .content .inside .two {
        font-size: 18px;
        max-width: 300px; }
      .thank-you .content .inside .btn-grd {
        -webkit-align-self: center;
        align-self: center;
        -moz-align-self: center;
        -ms-align-self: center;
        margin-top: 10px; }
      .thank-you .content .inside .social {
        width: 100%;
        margin-bottom: 50px; }
        .thank-you .content .inside .social .item {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          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;
          padding: 10px 30px;
          border-radius: 8px;
          margin: 10px; }
          .thank-you .content .inside .social .item img {
            max-height: 20px; }

@media (min-width: 2300px) {
  .feature {
    background-color: #2D2D60; }
  .header .inside .menu a {
    color: #fff; } }

@media (max-width: 1700px) {
  .container-my .inside {
    width: 1300px; } }

@media (max-width: 1366px) {
  .squers:before {
    width: 855px;
    height: 816px;
    top: -170px;
    left: -150px; }
  .squers:after {
    width: 689px;
    height: 656px; }
  .container-my .inside {
    width: 1100px; }
  .btn-grd {
    padding: 19px 40px; }
  .feature .inside {
    height: auto; 
    margin-top: 100px;
  }
    .feature .inside .left .title {
      font-weight: 700; }
    .feature .inside .right img {
      max-width: 256px; }
  .avantaje .inside {
    padding: 120px 0 80; }
    .avantaje .inside .title {
      font-size: 34px;
      line-height: 38px;
      margin-bottom: 30px; }
    .avantaje .inside .items .item .icon {
      min-height: 120px; }
      .avantaje .inside .items .item .icon img {
        max-width: 84px; }
    .avantaje .inside .items .item .title {
      font-size: 20px; }
    .avantaje .inside .items .item .description {
      font-size: 16px; }
    .avantaje .inside .when-button {
      margin-top: 50px; }
  .functionalitati .inside .title {
    font-size: 34px;
    line-height: 38px;
    margin-bottom: 30px; }
  .functionalitati .inside .items .item {
    min-height: 200px; }
    .functionalitati .inside .items .item .icon {
      width: 94px; }
      .functionalitati .inside .items .item .icon img {
        width: 64px; }
    .functionalitati .inside .items .item .text {
      width: calc(100% - 94px); }
  .instalarea .inside .big-phone {
    left: 10px; }
  .footer .inside .bottom .links a {
    font-size: 13px;
    margin-left: 30px; } }

@media (max-width: 991px) {
  .squers:before {
    width: 655px;
    height: 616px;
    top: -70px;
    left: -150px; }
  .squers:after {
    width: 489px;
    height: 456px; }
  .feature .inside .left {
    width: calc(100% - 400px); }
  .feature .inside .right {
    width: 400px; }
    .feature .inside .right img {
      max-width: 200px; }
  .avantaje .inside .items {
    padding: 0; }
    .avantaje .inside .items .item {
      min-width: 250px; }
  .functionalitati .inside .items .item {
    width: calc(50% - 20px); }
  .footer .inside .left,
  .footer .inside .right {
    width: 100%; }
  .footer .inside .left .title,
  .footer .inside .left .description {
    max-width: 100%; }
  .footer .inside .bottom {
    -webkit-justify-content: center;
    justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center; }
    .footer .inside .bottom .rights {
      width: 100%;
      text-align: center;
      margin-top: 30px;
      order: 2; }
      .footer .inside .bottom .rights .links {
        -webkit-justify-content: center;
        justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        width: 100%; }
  .footer.top .inside:before, .footer.top .inside:after {
    display: none; } }

@media (max-width: 900px) {
  .squers:before {
    width: 955px;
    height: 1116px;
    top: -370px;
    left: -150px; }
  .squers:after {
    width: 489px;
    height: 456px; }
  .header .inside .menu {
    display: none; }
    .feature .inside {
      margin-top: 0px !important;
    }
  .feature .inside .left {
    width: 100%;
    margin-top: 0; }
    .feature .inside .left .title {
      font-size: 34px; }
    .feature .inside .left .description {
      font-size: 16px; }
  .feature .inside .right {
    width: 100%;
    height: auto; }
    .feature .inside .right img {
      max-width: 50%; }
  .instalarea .inside {
    padding-top: 50%;
     }
    .instalarea .inside .big-phone {
      width:100%;
      left: 0;
      top: 80px;}
    .instalarea .inside .content {
      margin: 0;
      margin-top: 300px; } }

@media (max-width: 650px) {
  .avantaje .inside .items .item {
    width: 100%;
    min-width: auto; }
  .functionalitati .inside .items .item {
    width: calc(100% - 20px); } }

@media (max-width: 600px) {
  .footer .inside .bottom .links {
    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; }
    .footer .inside .bottom .links a {
      margin-left: 0; } }

@media (max-width: 400px) {
  .instalarea .inside .content .text {
    font-size: 32px; } }

.bifa1 {
  width: calc(100% - 30px) !important;
  margin: 30px 15px 50px !important; }
  .bifa1 span {
    width: 100%;
    margin: 0; }
  .bifa1 .wpcf7-not-valid {
    border-bottom: none !important; }
    .bifa1 .wpcf7-not-valid span {
      color: #ff9d00 !important; }
    .bifa1 .wpcf7-not-valid label {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      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: -15px;
      width: 100%;
      cursor: pointer; }
    .bifa1 .wpcf7-not-valid input {
      position: relative;
      width: 30px !important;
      height: 30px !important;
      margin: 0 !important;
      opacity: 0; }
      .bifa1 .wpcf7-not-valid input:hover ~ span:after {
        opacity: 0.5; }
      .bifa1 .wpcf7-not-valid input:checked ~ span:after {
        opacity: 1; }
      .bifa1 .wpcf7-not-valid input:hover ~ span:after {
        opacity: 1; }
    .bifa1 .wpcf7-not-valid span {
      position: relative;
      width: calc(100% - 30px) !important;
      font-size: rem(12px);
      font-weight: 400;
      margin: 0 !important;
      padding-left: 10px;
      color: rgba(255, 255, 255, 0.4); }
      .bifa1 .wpcf7-not-valid span:before, .bifa1 .wpcf7-not-valid span:after {
        position: absolute;
        content: "";
        right: 100%; }
    .bifa1 .wpcf7-not-valid:before {
      width: 30px;
      height: 30px;
      border-radius: 3px;
      background-color: #fff; }
    .bifa1 .wpcf7-not-valid:after {
      width: 12px;
      height: 5px;
      top: 9px;
      right: calc(100% + 8px);
      border-left: 2px solid red;
      border-bottom: 2px solid red;
      transform: rotate(-45deg);
      opacity: 0;
      transition: all 200ms ease-in-out; }
    .bifa1 .wpcf7-not-valid a {
      font-size: rem(12px);
      font-weight: 400;
      color: rgba(255, 255, 255, 0.8); }
      .bifa1 .wpcf7-not-valid a:hover {
        text-decoration: underline; }

/*# sourceMappingURL=style.css.map */
/* Flex classes*/

.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-start;
  -ms-align-self: flex-start;
}

.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-wrap {
  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: wrap;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.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;
}

.squers:before {
  width: 1300px;
  height: 2200px;
  top:-35% !important;
  transform: rotate(90deg);
}

.squers:after {
  transform: rotate(90deg);
}

.header .inside .menu a {
  color: #fff;
}

.header .inside .menu a.login {
  line-height: 0;
  padding: 10px 15px;
}

.header .inside .menu a.login img {
  margin-right: 10px;
}

.feature .inside .left {
  /*margin-top: 0;*/
}

/* @media (max-width: 991px) {
  .squers:before {
      width: 1600px;
      height: 1600px;

      left: -300px;
  }
} */

@media (max-width: 900px) {
  .squers:before {
      width: 955px;
      height: 1116px;
      top: -370px;
      left: -150px;
  }

  .header .inside .menu {
      display: flex;
  }

  .header .inside .menu a {
      display: none;
  }

  .header .inside .menu a.login {
      display: flex;
  }
}

@media (min-width: 1500px) {
  .squers:before {
      top: -30%;
  }
}

@media (max-width: 1600px) and (min-width: 1300px) {
  .header .inside .menu {
      /*flex-direction: column;*/
      /*align-items: flex-end;*/
  }

  .header .inside .menu a {
      /*margin-left: 0;*/
      /*order: 2;*/
  }

  .header .inside .menu a.login {
      /*order: 1 !important;*/
      /*align-self: flex-end;*/
  }
}

@media (max-width: 1030px) and (min-width: 991px) {
  .header .inside .menu a {
      /*margin-left: 15px;*/
  }
}

@media (max-width: 820px) and (min-width: 900px) {
  .header .inside .menu a {
      /*margin-left: 15px;*/
  }
}

@media (max-width: 500px) {
  .header .inside .menu a.login {
      display: none;
  }
}