/* @font-face {
  font-family: "Berlin_Sans_FB_Demi_Bold";
  src: url("/public/font/berlin_sans_fb_demi_bold/berlin_sans_fb_demi_bold.ttf")
    format("woff2");
} */

@font-face {
  font-family: "Paytone One";
  src: url("/public/font/PaytoneOne/PaytoneOne-Regular.ttf") format("truetype");
}

.main {
  width: 100%;
  height: 100%;
  background: #fff;
}
.main a.button-primary {
  background: var(--btns_bg);
  border-radius: 6px;
  border: 1px solid var(--btns_bg);
  text-align: center;
  font-size: 20px;
  line-height: 45px;
  color: var(--btns_text);
  padding: 3px 20px;
  cursor: pointer;
}
.section-top {
  margin-top: 90px;
  padding-top: 50px;
  height: 100%;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section-top .images-wrapper {
  width: 100%;
  position: absolute;
  z-index: 2;
  height: 100%;
  overflow: hidden;
}
.section-top .images-wrapper .left {
  transform: rotate(270deg);
  position: absolute;
  left: -20px;
  bottom: -20px;
}
.section-top .images-wrapper .right {
  position: absolute;
  right: 120px;
  bottom: 130px;
}
.section-top .text-wrapper {
  position: relative;
  z-index: 3;
}
.section-top .buttons-wrapper {
  position: relative;
  z-index: 3;
}
.section-top .text-wrapper h1 {
  color: var(--title);
  font-size: 90px;
  line-height: 95px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  font-family: "Paytone One";
  text-transform: uppercase;
}
.section-top .text-wrapper p {
  color: var(--text);
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 15px;
  display: block;
}
.section-top .text-wrapper h3 {
  color: var(--text);
  font-size: 36px;
  line-height: 38px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 90px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-weight: normal;
}
.section-top .buttons-wrapper {
  text-align: center;
}
.section-top .buttons-wrapper p {
  color: var(--color_secoundary);
  font-size: 18px;
  line-height: 20px;
  margin: 0;
}
.section-top .buttons-wrapper button.button-primary {
  text-transform: uppercase;
}

.section-sec {
  margin-top: 300px;
  text-align: center;
  letter-spacing: 5px;
}

.section-sec h2 {
  /* font-family: "Citrica-Regular"; */
  font-size: 90px;
  line-height: 95px;
  color: #000;
}
.right-menu.not-logged-in .not-logged-in {
  display: block;
}
.right-menu.not-logged-in .logged-in {
  display: none;
}
.right-menu.logged-in .logged-in {
  display: block;
}
.right-menu.logged-in .not-logged-in {
  display: none;
}
/** 
 * NEW HOME 
 **/
.section-typing {
  background: #fff;
  width: 100%;
  padding-top: 110px;
  padding-bottom: 50px;
}
.section-typing .slide {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-typing .slide .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section-typing .slide .left .title {
  font-size: 80px;
  line-height: 85px;
  text-align: left;
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: "Paytone One";
  display: flex;
  flex-direction: column;
  color: var(--title);
  position: relative;
}
.section-typing .slide .left .title .up {
  text-transform: uppercase;
  color: #000;
}
.section-typing .slide .left .subtitle {
  font-size: 20px;
  line-height: 30px;
  margin-top: 30px;
}
.section-typing .slide .left .subtitle-bot {
  font-size: 16px;
  line-height: 30px;
  margin-top: 10px;
  display: flex;
  font-style: italic;
  margin-left: 20px;
}
.section-typing .slide .left .subtitle-bot span {
  width: 16px;
  height: 2px;
  position: relative;
  top: 14px;
  background: var(--btns_bg);
  margin-right: 10px;
  display: inline-block;
}

.section-typing .slide .left .btn {
  background: var(--btns_bg);
  border-radius: 8px;
  text-align: center;
  padding: 15px 10px;
  margin-top: 30px;
  color: #fff;
  width: 250px;
  font-size: 24px;
  white-space: nowrap;
  font-weight: bold;
  text-decoration: none;
}
.section-typing .slide .videos {
  position: relative;
  width: 575px;
  height: 575px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 80px;
}
.section-typing .slide .right img {
  position: absolute;
  transition: all 0.2s ease-in-out;
  opacity: 0;
}
.section-typing .slide .right img.active {
  opacity: 1;
  z-index: 2;
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.2);
}

@media all and (min-width: 960px) {
  .section-typing .slide .left .title {
    top: -24px;
  }
  .section-typing .mobile-only {
    display: none;
  }
}

@media all and (max-width: 960px) {
  .section-typing .slide .left .btn {
    font-size: 18px;
    padding: 5px 0px;
    font-weight: normal;
  }
  .section-typing .slide {
    display: flex;
    flex-direction: column;
  }
  .section-typing .slide .right {
    width: 100%;
    justify-content: center;
    display: flex;
    margin-top: 8px;
    height: 500px;
  }
  .section-typing .slide .right img.mobile-only {
    position: relative;
    display: block;
    opacity: 0;
    z-index: 0;
  }
  .section-typing .slide .videos {
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
    width: calc(100% - 16px - 16px - 16px - 16px);
    height: auto;
    margin: 0;
    align-items: center;
    position: relative;
  }
  .section-typing .slide .videos img {
    width: 100%;
    position: absolute;
    height: auto;
    z-index: 2;
    top: 52px;
    max-width: 450px;
  }
  .section-typing .slide .left {
    padding-left: 16px;
    padding-right: 16px;
  }
  .section-typing .slide .left .title {
    margin-top: 30px;
    font-size: 40px;
    line-height: 42px;
  }
}

.section-letter .wrapper {
  max-width: 1050px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section-letter .wrapper-inner {
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid #f9dfee;
  border-radius: 8px;
  box-shadow: 0 5px 10px #f9dfee;
  padding: 10px 25px;
  text-align: left;
}
.section-letter .dot {
  width: 16px;
  height: 13px;
  display: inline-block;
  border: 1px solid #000;
  background: rgb(229, 186, 212);
  background: linear-gradient(180deg, rgba(229, 186, 212, 1) 0%, rgba(140, 122, 174, 1) 100%);
  border-radius: 6px;
}

.section-letter .wrapper h2 {
  color: #000;
  font-size: 40px;
  line-height: 42px;
}
.section-letter .wrapper h4 {
  color: #7c72a9;
  font-size: 36px;
  line-height: 38px;
}
.section-letter .wrapper p {
  color: #000;
  font-size: 18px;
  line-height: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.section-features .wrapper {
  max-width: 1050px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.section-features .wrapper h2 {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
} 
.section-features .wrapper p {
  font-size: 18px;
  line-height: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.section-features .dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  border: 1px solid #000;
  background: rgb(229, 186, 212);
  background: linear-gradient(180deg, rgba(229, 186, 212, 1) 0%, rgba(140, 122, 174, 1) 100%);
  border-radius: 6px;
}

.section-features .block {
  display: flex;
  margin-bottom: 80px;
}
.section-features .block.text-left .text-wrapper {
  margin-left: 50px;
}
.section-features .block.text-right .img-wrapper {
  order: 1;
}
.section-features .block.text-right .text-wrapper {
  margin-right: 50px;
}
.section-features .text-wrapper h3 {
}
.section-features .text-wrapper p {
}
.section-features a.button-primary {
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

@media all and (max-width: 960px) {
  
  .section-features .block {
    flex-direction: column;
  }
  .section-features .block.text-left .text-wrapper {
    margin: 0;
    margin-top: 20px;
  }

  .section-features .text-left .img-wrapper{
    order: 2;
  }
  .section-features .text-right .img-wrapper{
    order: 2;
  }
  .section-features .block.text-right .text-wrapper {
    margin-right: 0px;
  }
}
.section-tutorial {
  background: var(--coralinio_primary);
  color: #fff;
  padding-top: 80px;
  padding-bottom: 40px;
}
.section-tutorial .wrapper {
  max-width: 1050px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section-tutorial div.wrapper h2 {
  color: #fff;
  font-size: 40px;
  line-height: 42px;
  margin: 0;
  word-break: break-word;
  width: 100%;
  white-space: break-spaces;
}
.section-tutorial div.wrapper h3 {
  color: #fff;
  font-size: 40px;
  line-height: 42px;
  margin: 0;
  margin-top: 50px;
  margin-bottom: 50px;
}
.section-tutorial div.wrapper p {
  color: #fff;
  font-size: 20px;
  line-height: 24px;
}
.section-tutorial div.wrapper ul p {
  margin-top: 0;
  margin-bottom: 10px;
}
.section-tutorial div.wrapper a.button-primary {
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 6px;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 200px;
}
.section-project-additional {
  margin-bottom: 50px;
}
.section-features div.wrapper .section-project-additional h2 {
  margin-bottom: 50px;
}
.section-features div.wrapper .section-project-additional h3 .dot {
  height: 20px;
  width: 20px;
  border-radius: 20px;
  margin-right: 10px;
  position: relative;
  top: 4px;
}

@media all and (max-width: 960px) {
  .section-tutorial {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .section-tutorial .wrapper h2 {
    white-space: nowrap;
    font-size: 28px;
    overflow: hidden;
  }
}
.section-bullets {
  padding-top: 80px;
  padding-bottom: 80px;
}
.section-bullets .wrapper {
  max-width: 1050px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section-bullets .wrapper h2 {
  margin-top: 30px;
  margin-bottom: 30px;
}
.section-bullets .blocks {
  display: flex;
  flex-wrap: wrap;
}
.section-bullets .block {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: calc(50% - (32px / 2));
  margin: 0px 0px 0px 0px;
  margin-bottom: 16px;
  padding: 15px 65px 15px 65px;
  background-color: #ffffff;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0px 0px 30px 0px rgb(51 51 51 / 10%);
  position: relative;
  text-align: center;
  justify-content: center;
}
.section-bullets .block p {
  font-size: 25px;
}
.section-bullets .block:before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  border: 1px solid #000;
  background: rgb(229, 186, 212);
  background: linear-gradient(180deg, rgba(229, 186, 212, 1) 0%, rgba(140, 122, 174, 1) 100%);
  border-radius: 15px;
  width: 50px;
  height: 50px;
  transform: rotate(30deg);
  opacity: 0.9;
}
.section-bullets .block:nth-child(2n):before {
  background: linear-gradient(270deg, rgba(229, 186, 212, 1) 0%, rgba(140, 122, 174, 1) 100%);
  border-radius: 10px;
  width: 40px;
  height: 30px;
}
.section-bullets .block:nth-child(2n + 1):before {
  right: auto;
  left: 20px;
  transform: rotate(60deg);
  width: 30px;
  height: 40px;
  border-radius: 7px;
  top: 10px;
  background: linear-gradient(180deg, rgba(229, 186, 212, 1) 0%, rgba(140, 122, 174, 1) 100%);
}
.section-bullets .block:nth-child(2n + 1) {
  margin-right: 16px;
}
@media all and (max-width: 960px) {
  .section-bullets {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .section-bullets .block:nth-child(2n + 1) {
    margin-right: 0;
  }
  .section-bullets .block {
    width: 100%;
  }
}
.section-about {
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 1px 0px 140px 0px;
  overflow: visible;
  background-color: transparent;
  background-image: linear-gradient(86deg, #ffffff 10%, var(--coralinio_primary_light) 0%);
  margin-bottom: 50px;
  position: relative;
}

.section-about .shape-top {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  top: -1px;
}
.section-about .shape-top svg {
  height: 60px;
  transform: translateX(-50%) rotateY(180deg);
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.section-about .shape-top svg path {
  fill: #fff;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  fill: #ffffff;
}
.section-about .shape-bottom {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  bottom: -1px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.section-about .shape-bottom svg {
  height: 60px;
  transform: translateX(-50%) rotateY(180deg);
  z-index: -1;
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.section-about .shape-bottom svg path {
  fill: #fff;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  fill: #ffffff;
}
.section-about div.wrapper {
  padding-left: 170px;
  padding-right: 45px;
}
.section-about div.wrapper .block {
  margin-bottom: 40px;
}
.section-about div.wrapper p {
  font-size: 16px;
  line-height: 22px;
}
/* .section-about .text-last-with-m {} */
@media all and (max-width: 960px) {
  .section-about {
    padding: 20px 0px 20px 0px;
    padding-bottom: 70px;
    background: var(--coralinio_primary_light);
  }
  .section-about div.wrapper {
    padding-left: 30px;
    padding-right: 15px;
  }
  .section-about div.wrapper h2 {
    font-size: 40px;
    margin-bottom: 50px;
    margin-top: 80px;
  }
  .section-about table tr{
    display: flex;
    flex-direction: column;
  }
  .section-about table td{
    width: 100% !important;
  }
  .section-about table td img{
    max-width: 200px;
  }
  .section-about table.rob tr td:nth-child(1){
    order: 2;
  }
  /* .section-about .text-last-with-m {} */
}

.section-call-action {
  padding-left: 16px;
  padding-right: 16px;
}
.section-call-action .wrapper {
  border-radius: 8px;
  background: rgb(229, 186, 212);
  background: linear-gradient(180deg, rgba(229, 186, 212, 1) 0%, rgba(140, 122, 174, 1) 100%);
  max-width: 1050px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
  margin-bottom: 50px;
  width: calc(100% - 16px - 16px);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-call-action .wrapper h3 {
  color: #fff;
  max-width: 850px;
  text-align: center;
  margin-bottom: 30px;
  font-size: 30px;
}
.section-call-action .wrapper a.button-primary {
  background: #fff;
  color: #c96ca3;
  text-decoration: none;
  font-weight: bold;
}
.block-call-action {
  margin-bottom: 220px;
}
.block-call-action .wrapper {
  border-radius: 8px;
  background: rgb(229, 186, 212);
  background: linear-gradient(180deg, rgba(229, 186, 212, 1) 0%, rgba(140, 122, 174, 1) 100%);
  margin: 0;
  padding: 0;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100000px;
  width: calc(100vw - 16px);
  position: absolute;
  left: 0;
  box-sizing: border-box;
  margin: 0;
  border-radius: 0;
}


.block-call-action .wrapper h3 {
  color: #fff;
  max-width: 850px;
  text-align: center;
  font-size: 25px;
  line-height: 27px;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 10px;
}
.block-call-action .wrapper a.button-primary {
  background: #fff;
  color: #c96ca3;
  text-decoration: none;
  font-weight: bold;
  background: none;
  color: #fff;
  border: 1px solid #fff;
  height: 30px;
  line-height: 45px;
  font-size: 18px;
  font-weight: normal;
}


.block-call-action.variant-white .wrapper {
  background: #fff;
}
.block-call-action.variant-white .wrapper h3 {
  color: #000;
}
.block-call-action.variant-white .wrapper a.button-primary {
  background: #c96ca3;
  color: #fff;
}

@media all and (max-width: 960px) {
  .section-call-action .wrapper {
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .block-call-action .wrapper {
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.section-contact .wrapper {
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 50px;
  margin: 0 auto;
  width: calc(100% - 16px - 16px);
  display: flex;

  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-contact .wrapper h2 {
  text-align: center;
}
.section-contact .wrapper a {
  text-decoration: none;
  color: #000;
  font-size: 23px;
  line-height: 30px;
  margin-bottom: 20px;
}
.section-contact .wrapper a span {
  display: inline-block;
  width: 30px;
  line-height: 30px;
}
.section-contact .wrapper a span.icon-mail {
  background: url("./../../img/icon_main.png") no-repeat center center;
  background-size: 100%;
  text-indent: -9999px;
  margin-right: 10px;
}
.section-contact .wrapper a span.icon-fb {
  background: url("./../../img/icon_fb.png") no-repeat center center;
  background-size: 100%;
  text-indent: -9999px;
  margin-right: 10px;
  margin-left: 10px;
}
.section-contact .wrapper a span.icon-insta {
  background: url("./../../img/icon_insta.png") no-repeat center center;
  background-size: 100%;
  text-indent: -9999px;
  margin-right: 10px;
  margin-left: 10px;
}

@media all and (max-width: 960px) {
  .section-contact .wrapper .social {
    display: flex;
    flex-direction: column;
    line-height: 30px;
  }
  .section-contact .wrapper a {
    display: flex;
    justify-content: center;
    font-size: 14px;
  }
  .section-typing {
    padding-top: 0px;
    padding-bottom: 20px;
  }
  .main img {
    max-width: 100%;
  }
  .section-footer {
    overflow: hidden;
  }
  .section-features .block.text-left .text-wrapper {
    margin-top: 10px;
  }
  .section-features .block.text-right .text-wrapper {
    margin-top: 10px;
  }
  .section-features .img-wrapper {
    overflow: hidden;
  }
  .section-features .img-wrapper img {
    max-width: 100%;
  }
}

.block-reviews {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.review-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--coralinio_primary);
  margin-bottom: 20px;
  padding: 20px 40px;
}
.review-item .review-name {
  font-size: 20px;
  line-height: 28px;
  color: var(--coralinio_primary);
  text-transform: capitalize;
}
.review-item .top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.review-item .bead-item {
  display: inline-block;
  height: 12px;
  width: 12px;
  border: 1px solid;
  border-radius: 8px;
  background: rgb(229, 186, 212);
  background: linear-gradient(180deg, rgba(229, 186, 212, 1) 0%, rgba(140, 122, 174, 1) 100%);
  margin-right: 3px;
}
.review-item .review-date {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 8px;
}
.review-item .review-body {
  font-size: 20px;
  line-height: 28px;
  color: #464646;
}
.review-item .review-company-answer-wrapper {
  display: flex;
  flex-direction: column;
  margin: 10px 0 0 37px;
  border-left: 3px solid #f5f5f5;
  padding: 5px 0 0 12px;
  line-height: 18px;
}
.review-item .review-company-answer-label-wrapper {
  display: flex;
}
.review-item .review-company-answer-label {
  font-size: 13px;
  font-weight: bold;
  margin-right: 10px;
  line-height: 20px;
}
.review-item .review-company-answer-date {
  color: #70757a;
  font-size: 13px;
  line-height: 20px;
}
