/* --------------------------------------------------- Home page -------------------------------------------- */

/* poppins-700 - latin */
@font-face {
   font-family: "Poppins";
   font-style: normal;
   font-weight: 700;
   src: local("Poppins Medium"), local("Poppins-Medium"), url("../font/poppins-v19-latin-700.woff") format("woff2"),
      /* Chrome 26+, Opera 23+, Firefox 39+ */ url("../font/poppins-v19-latin-700.woff") format("woff");
   /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

.home-section {
   position: relative;
   background: #fff;
   min-height: 100vh;
   overflow: hidden;
}

.home-section.grey {
   background: #f5f6fa;
}

.home-section.ai-grad {
   background: #f8f8f8;
   position: relative;
}

.ai-grad-img {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: auto;
   background-color: #fff;
   z-index: 0;
}

.home-section.grey:after {
   content: " ";
   height: 120px;
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.03)), to(rgba(0, 0, 0, 0)));
   background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
   background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
   background: linear-gradient(to top, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
   background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
   background-image: -ms-linear-gradient(90deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
   pointer-events: none;
}

.home-section.gradient:before {
   content: " ";
   height: 75vh;
   width: 200vw;
   position: absolute;
   display: block;
   bottom: -85px;
   left: -73px;
   right: 0;
   /* top: 67px; */
   transform: rotate(-5deg);
   background: linear-gradient(90deg, #8c8ff9, #60aad6 80%);
   pointer-events: none;
}

.home-left-content {
   margin-left: 5vw;
   margin-top: 0px;
   padding: 40px 0;
}

.home-right {
   position: relative;
   overflow: hidden;
   min-height: 100vh;
   margin: 0 auto;
   display: flex;
   flex-direction: column;
   justify-content: center;
}

.circle-composition {
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   min-height: 480px;
   perspective: 200px;
}

.circle-composition:before,
.circle-composition:after {
   content: "";
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   border: 1px solid #d1c6d5;
   border-radius: 50%;
   opacity: 0.5;
}

.circle-composition:before {
   height: 490px;
   width: 490px;
   -webkit-animation-duration: 1s;
   animation-duration: 1s;
   -webkit-animation-name: expandInner;
   animation-name: expandInner;
}

.circle-composition:after {
   height: 670px;
   width: 670px;

   -webkit-animation-duration: 1.2s;
   animation-duration: 1.2s;
   -webkit-animation-name: expandOuter;
   animation-name: expandOuter;
}

@keyframes expandOuter {
   0% {
      height: 170px;
      width: 170px;
   }
   100% {
      height: 670px;
      width: 670px;
   }
}

@keyframes expandInner {
   0% {
      height: 270px;
      width: 270px;
   }
   100% {
      height: 490px;
      width: 490px;
   }
}

.circle-composition-centre-circle {
   background: #eeeef6;
   width: 330px;
   height: 330px;
   border-radius: 400px;
   position: absolute;
}

.circle-composition .composition-dot {
   position: absolute;
   display: flex;
   justify-content: center;
   align-items: center;
   height: 3.25rem;
   width: 3.25rem;
   border-radius: 50%;
   background: var(--s-primary);
   box-shadow: var(--s-primary-box-shadow);
   font-size: 1.5rem;
   color: var(--white-smoke);
   z-index: 3;
}

.composition-block {
   position: absolute;
   display: flex;
   align-items: center;
   z-index: 1;
}

.composition-block-icon {
   border-radius: 40px;
   width: 50px;
   height: 50px;
   display: flex;
   justify-content: center;
   flex-direction: column;
   align-items: center;
}

.composition-block-icon img {
   height: 25px;
}

.composition-block-1 {
   left: 31%;
   bottom: -8%;
}

.composition-block-1 .composition-block-icon {
   background: #776db1;
   background: linear-gradient(33deg, rgb(74 136 216) 0%, rgb(120 190 124) 100%);
}

.composition-block-2 {
   left: 6%;
   top: 9%;
}

.composition-block-2 .composition-block-icon {
   background: rgb(101 83 171);
   background: linear-gradient(309deg, rgb(101 83 171) 0%, rgb(194 109 224) 100%);
}

.composition-block-3 {
   right: 1%;
   top: 32%;
}

.composition-block-3 .composition-block-icon {
   background: #f06eaa;
   background: linear-gradient(153deg, rgb(214 173 94) 0%, rgb(246 80 209) 100%);
}

@media screen and (max-width: 1100px) {
   .composition-block-1 {
      left: 31%;
      bottom: -8%;
   }
   .composition-block-2 {
      left: 0%;
      top: 7%;
   }
   .composition-block-3 {
      right: -21%;
      top: 19%;
   }
}

.composition-block-text {
   margin-left: 8px;
   font-family: "Poppins";
   font-weight: 500;
   max-width: 150px;
   color: #573877;
   background: #fafbff;
   padding: 5px;
   border-radius: 6px;
   text-align: center;
   box-shadow: 4px 4px 4px 2px rgb(133 77 218 / 6%);
}

#step-mobile-hero {
   max-width: 300px;
   -webkit-animation-duration: 1s;
   animation-duration: 1s;
   -webkit-animation-fill-mode: both;
   animation-fill-mode: both;
   -webkit-animation-name: phoneIn;
   animation-name: phoneIn;
}

@media screen and (max-width: 1000px) {
   .composition-block {
      display: none;
   }
}

@-webkit-keyframes phoneIn {
   0% {
      opacity: 0.5;
      -webkit-transform: translate3d(-30px, 30px, 0) rotateY(0deg);
      transform: translate3d(-30px, 30px, 0) rotateY(0deg);
   }
   100% {
      opacity: 1;
      -webkit-transform: translate3d(-30px, 0, 0) rotateY(-7deg);
      transform: translate3d(-30px, 0, 0) rotateY(-7deg);
   }
}

@keyframes phoneIn {
   0% {
      opacity: 0;
      -webkit-transform: translate3d(-30px, 50px, 0);
      transform: translate3d(-30px, 50px, 0);
   }
   100% {
      opacity: 1;
      -webkit-transform: translate3d(-30px, 0, 0) rotateY(-7deg);
      transform: translate3d(-30px, 0, 0) rotateY(-7deg);
   }
}

@-webkit-keyframes fadeInUp2 {
   0% {
      opacity: 0.5;
      -webkit-transform: translate3d(0, 30px, 0);
      transform: translate3d(0, 30px, 0);
   }
   100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
   }
}

@keyframes scxx-fadeInUp2 {
   0% {
      opacity: 0;
      -webkit-transform: translate3d(0, 50px, 0);
      transform: translate3d(0, 50px, 0);
   }
   100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
   }
}

.curve {
   position: absolute;
   height: 100%;
   min-height: 100vh;
}

.public .scrolled .menu a:after {
   background: #73c5ea;
}

.public .header-logo {
   opacity: 0;
   -webkit-transition: 0.3s all;
   -o-transition: 0.3s all;
   transition: 0.3s all;
}

.public .scrolled .header-logo {
   opacity: 1;
}

.intro {
   display: flex;
   flex-direction: column;
   justify-content: center;
}

.intro-logo {
   max-height: 60px;
}

.intro-text {
   font-size: 1.2rem;
   font-family: "Poppins", sans-serif;
   font-weight: 300;
   margin: 30px 0;
}

.intro-heading,
.body-heading {
   font-weight: 700;
   color: #573877;
   font-family: "poppins";
   font-size: 2.7rem;
   margin-top: 30px;
   max-width: 550px;
   line-height: 3.1rem;
}

.intro-heading-small {
   font-weight: 700;
   color: #394d97;
   font-family: "poppins";
   font-size: 1.8rem;
   margin-top: 30px;
   max-width: 550px;
   line-height: 1.6rem;
}

.intro-heading-small.pink {
   color: #903a99;
}

.intro-heading-small.mint {
   color: #1f9a85;
}

.body-heading {
   margin: 50px 0 20px;
}

.public .button.pill {
   background: #0f93e3;
   color: #fff;
   padding: 7px 45px;
   margin: 15px;
   -webkit-box-shadow: none;
   box-shadow: none;
   font-size: 1.3rem;
}

.public .button.pill:hover {
   background: #776db1;
}

.public .button.pill.large.secondary {
   background: #fff;
   color: #0f93e3;
   border: 3px solid #0f93e3;
   padding: 5px 22px;
}

.public .button.pill.large.secondary:hover {
   color: #776db1;
   border: 3px solid #776db1;
}

.video-play-container {
   position: absolute;
   top: 0;
   bottom: 0;
   left: 85px;
   right: 0;
   z-index: 10;
   display: flex;
   flex-direction: column;
   justify-content: center;
}

_:-ms-fullscreen,
:root .video-play-button:before,
_:-ms-fullscreen,
:root .video-play-button:after {
   background: #5c5299;
}

.video-play-item {
   position: relative;
   margin-left: 11vw;
}

.video-play-button {
   z-index: 10;
   -webkit-box-sizing: content-box;
   box-sizing: content-box;
   display: block;
   width: 32px;
   height: 44px;
   /* background: #000; */
   -webkit-border-radius: 50%;
   border-radius: 50%;
   padding: 18px 20px 18px 28px;
   opacity: 0.6;
   cursor: pointer;
}

.video-play-button:before {
   content: "";
   position: absolute;
   z-index: 0;
   top: 50%;
   -webkit-transform: translateX(-50%) translateY(-50%);
   -ms-transform: translateX(-50%) translateY(-50%);
   transform: translateX(-50%) translateY(-50%);
   display: block;
   width: 140px;
   height: 140px;
   background: #7fca25;
   -webkit-border-radius: 50%;
   border-radius: 50%;
   -webkit-animation: pulse-border 1500ms ease-out infinite;
   animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
   content: "";
   position: absolute;
   z-index: 1;
   top: 50%;
   -webkit-transform: translateX(-50%) translateY(-50%);
   -ms-transform: translateX(-50%) translateY(-50%);
   transform: translateX(-50%) translateY(-50%);
   display: block;
   width: 160px;
   height: 160px;
   background: #bae783;
   background: linear-gradient(316deg, #94c953 0%, #6cd07a 100%);
   -webkit-border-radius: 50%;
   border-radius: 50%;
   -webkit-transition: all 200ms;
   -o-transition: all 200ms;
   transition: all 200ms;
}

.video-play-button:hover:after {
   background-color: darken(#776db1, 10%);
}

.video-play-button img {
   position: relative;
   z-index: 3;
   max-width: 100%;
   width: auto;
   height: auto;
}

.video-play-triangle {
   display: block;
   pointer-events: none;
   top: 50%;
   -webkit-transform: translateX(-50%) translateY(-50%);
   -ms-transform: translateX(-50%) translateY(-50%);
   transform: translateX(-50%) translateY(-50%);
   z-index: 30;
   width: 0;
   height: 0;
   margin-left: 40px;
   border-left: 70px solid #fff;
   border-top: 45px solid transparent;
   border-bottom: 45px solid transparent;
}

@-webkit-keyframes pulse-border {
   0% {
      -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
   }
   100% {
      -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
   }
}

@keyframes pulse-border {
   0% {
      -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
   }
   100% {
      -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
   }
}

.video-player {
   position: relative;
   padding-top: 56.25%;
   width: 900px;
   max-width: 90vw;
   margin: auto;
}

.feature {
   font-family: "poppins", sans-serif;
   padding: 40px;
}

.feature-header {
   font-size: 1.4rem;
   color: #000;
   font-weight: 500;
   max-width: 300px;
   margin: 0 auto;
   display: table;
   min-height: 60px;
}

.feature-header span {
   display: table-cell;
   vertical-align: middle;
}

.feature-icon {
   color: #776db1;
   font-size: 3rem;
}

.feature-text {
   font-size: 1.1rem;
   font-weight: 300;
   margin-top: 10px;
}

.public .footer {
   top: 0;
   padding: 30px 0;
}

@media screen and (max-width: 480px) {
   .intro-logo {
      max-height: 50px;
   }
   .intro-text {
      font-size: 1.1rem;
      font-family: "Poppins", sans-serif;
      font-weight: 300;
      margin: 15px 0;
   }
   .intro-heading {
      font-size: 2.2rem;
      line-height: 2.2rem;
   }

   .video-play-container {
      left: -14px;
   }

   .circle-composition-centre-circle {
      display: none;
   }

   .composition-block {
      display: none;
   }
}

.scroll-arrow:after {
   content: "\e856";
   position: absolute;
   margin-top: 90vh;
   font-size: 3rem;
   color: #8f77a7;
   left: 0;
   right: 0;
   text-align: center;
   font-family: "icons";
   -webkit-transition: opacity 0.6s;
   -o-transition: opacity 0.6s;
   transition: opacity 0.6s;
   animation: pulse;
   animation-duration: 2s;
   animation-iteration-count: 10;
}

.scroll-arrow.scrolled:after {
   opacity: 0;
}

.public .remodal {
   min-width: auto;
}

_:-ms-fullscreen,
:root .public .modal-form {
   min-width: 400px;
}

.video-item {
   max-width: 100%;
}

/*
.feature-section:before {
   content: "";
   display: inline-block;
   height: 100%;
   min-height: 100vh;
   vertical-align: middle;
   margin-right: -0.25em;
}
*/

.feature-container {
   text-align: center;
   display: inline-block;
   vertical-align: middle;
   width: 100%;
}

@media screen and (max-width: 800px) {
   .public .headerbar:after {
      opacity: 0;
   }
}

@media screen and (max-width: 48em) {
   .home-right {
      background: none;
      text-align: center;
      min-height: auto;
   }
   .intro-logo {
      height: 50px;
   }
   .intro-heading,
   .body-heading {
      font-size: 1.6rem;
      margin-bottom: 20px;
   }
   .video-play-item {
      left: 35vw;
   }
   .public .button.pill {
      margin: 8px;
      padding: 10px 50px 10px 40px;
   }

   .composition-block-1 {
      left: 11%;
      bottom: 8%;
   }
   .composition-block-2 {
      left: 0%;
      top: 7%;
   }
   .composition-block-3 {
      right: 0%;
      top: 19%;
   }

   .video-play-container {
      left: -56px;
   }
}

/*  Into page */
.question-heading {
   font-family: "poppins";
   font-weight: 700;
   color: #573877;
   margin-top: 30px;
   font-size: 1.6rem;
   text-align: center;
}

.sector-select {
   background: #fff;
   padding: 34px;
   border-radius: 8px;
   margin: 10px;
   box-shadow: 0 0 5px 1px rgb(158 113 183 / 10%);
   text-align: center;
   width: 200px;
   cursor: pointer;
   border: 1px solid #fff;
}

.sector-select:hover {
   border: 1px solid var(--s-purple);
}

.sector-icon img {
   width: 50px;
}

.sector-name {
   margin-top: 20px;
   font-size: 1.2rem;
   font-family: "poppins";
   color: #222;
   font-weight: 500;
}

.sector-select:hover .sector-name {
   color: var(--s-purple-dark);
}

/* --------------------------------------------------- Contact page -------------------------------------------- */

.page-heading {
   margin: 90px 0 0 0;
   font-size: 2rem;
}

.form-error {
   background: #ffbdbd59;
   color: var(--s-red);
   border: 1px solid var(--s-red);
   padding: 5px 15px;
   display: inline-block;
   border-radius: 4px;
   margin-top: 10px;
}

.contact-wrapper {
   display: flex;
   justify-content: center;
}

.contact-form {
   margin: 40px;
   font-family: "poppins";
   background: #fff;
   padding: 30px;
   border-radius: 6px;
   box-shadow: 0 50px 100px -20px rgba(50, 50, 93, 0.25), 0 30px 60px -30px rgba(0, 0, 0, 0.3),
      0 -18px 60px -10px rgba(0, 0, 0, 0.025);
}

.form-row {
   margin: 10px;
   display: flex;
}

.contact-form label {
   font-size: 1.2rem;
   flex-grow: 1;
   display: inline-block;
   text-align: left;
   color: #000;
   margin-right: 15px;
   max-width: 220px;
}

.contact-form input,
.contact-form textarea {
   background: #f7f9fb;
   padding: 8px 18px;
   border: 0;
   border-radius: 6px;
   width: 260px;
   flex-grow: 1;
}
.contact-form button {
   background: #7f54c4;
   color: #fff;
   font-family: "poppins";
   font-size: 1.1rem;
   padding: 6px 60px;
   border-radius: 5px;
   margin-top: 12px;
}

.grecaptcha-badge {
   box-shadow: none !important;
   margin: 30px 0px;
}

button {
   outline: 0;
   border-width: 0;
   cursor: pointer;
}

.contact-success {
   font-size: 1.8rem;
   margin-top: 20vh;
   background: rgba(255, 255, 255, 0.2);
   padding: 20px;
   border-radius: 5px;
   display: inline-block;
}

@keyframes shadow-pulse {
   0% {
      box-shadow: 0 0 0 0px rgba(64, 157, 231, 0.4);
   }
   100% {
      box-shadow: 0 0 0 12px rgba(64, 157, 231, 0.1);
   }
}

.video-container {
   margin-top: 40px;
}

.explainer-copy {
   padding: 50px 10px 0 10%;
}

.aboutus {
   margin: 0 10%;
   text-align: left;
}

.video-section {
   display: flex;
   flex-wrap: wrap;
}

.aboutus h2 {
   font-size: 1.6rem;
}

.aboutus h4 {
   font-size: 1.3rem;
   font-weight: 400;
   color: #000;
   margin: 20px 0 0 0;
   padding: 0;
}

.aboutus h1 {
   font-size: 1.6rem;
}

.aboutus p {
   font-size: 1.15rem;
   color: #4b4b4b;
}

.profile {
   border-radius: 200px;
   height: 150px;
   margin-top: 25px;
}

.public-heading,
.public-sub-heading,
.public-sub-heading-alt {
   font-family: "poppins";
   font-size: 2.5rem;
   font-weight: 700;
   color: #573877;
   margin-top: 30px;
}

.public-sub-heading {
   font-size: 1.6rem;
}

.public-sub-heading.left {
   text-align: left;
}

.public-sub-heading-alt {
   font-size: 1.5rem;
   font-weight: 500;
   color: #0f93e3;
}

.home-subheading {
   font-family: "poppins";
   font-size: 1.5rem;
   font-weight: 700;
   color: #aba4af;
   max-width: 700px;
   margin: 20px auto;
}

.highlight {
   font-weight: 700;
   color: #725e86;
   border-bottom: 0px;
}

.feature-text {
   font-size: 1.2rem;
   font-weight: 400;
   color: #928898;
   margin: 0px;
}

.feature-text.left {
   text-align: left;
}

.blue-box {
   background: #f1f7ff;
   margin: 5px;
   max-width: 800px;
   margin: 10px auto;
   padding: 8px 20px;
   position: relative;
   display: flex;
   flex-direction: column;
   justify-content: center;
}
.blob-container {
   position: relative;
   height: 300px;
   width: 420px;
   max-width: 100vw;
}

.blob-container.right {
   float: right;
}

.blob {
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
}

.blob-text {
   position: absolute;
   z-index: 1;
   color: #fff;
   top: 79px;
   padding: 30px;
   font-size: 1.3rem;
   text-align: center;
}

.blue-box.icon {
   padding-left: 100px;
   min-height: 70px;
}

.blue-box-icon {
   position: absolute;
   height: 60px;
   left: 10px;
}

.public .button.pill.small {
   padding: 4px 19px;
   font-size: 1.2rem;
}

.sticky-panel {
   position: relative;
}

#demo-phone-container {
   margin: 30px auto;
   width: 400px;
   max-width: 100vw;
   position: -webkit-sticky;
   position: sticky;
   top: 100px;
}

#demo-phone {
   width: 100%;
}

.demo-phone-content {
   position: absolute;
   left: 43px;
   top: 77px;
   width: 308px;
   opacity: 0;
   transition: all 0.4s;
   transform: translateY(20px);
}

.demo-phone-content.show {
   opacity: 1;
   transform: translateY(0px);
}

#demo-laptop-container {
   margin: 30px auto;
   width: 500px;
   max-width: 100vw;
   position: -webkit-sticky;
   position: sticky;
   top: 100px;
}

#demo-laptop {
   width: 100%;
}

.demo-laptop-content {
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   opacity: 0;
   transition: all 0.4s;
   transform: translateY(20px);
}

.demo-laptop-content.show {
   opacity: 1;
   transform: translateY(0px);
}

#scroll-container {
   display: flex;
}

.scroll-panel {
   position: relative;
   background-color: #f3f3f3;
}

.scroll-step-container {
   padding-top: 20vh;
}

.scroll-step {
   display: block;
   min-height: 500px;
   border-left: 4px dashed #eee;
   padding-left: 30px;
   position: relative;
}

.scroll-step:before {
   content: " ";
   display: block;
   height: 20px;
   width: 20px;
   background: #dddcde;
   position: absolute;
   left: -12px;
   top: 3px;
   border-radius: 15px;
   box-shadow: 0 0px 0px 3px #dddcde;
   border: 3px solid #fff;
}

.scroll-step-text {
   font-size: 1.5rem;
   color: #725e86;
   text-align: left;
   max-width: 600px;
}

.device-laptop {
   max-width: 100vw;
}

.shake {
   animation-name: shake;
   animation-duration: 0.6s;
   -webkit-animation-fill-mode: both;
   animation-fill-mode: both;
   -webkit-transform-origin: center center;
   -ms-transform-origin: center center;
   transform-origin: center center;
   animation-iteration-count: 2;
}

@keyframes shake {
   5%,
   95% {
      transform: translate3d(-1px, 0, 0);
   }

   10%,
   90% {
      transform: translate3d(1px, 0, 0);
   }

   15%,
   85% {
      transform: translate3d(-2px, 0, 0);
   }

   20%,
   80% {
      transform: translate3d(2px, 0, 0);
   }

   25%,
   75% {
      transform: translate3d(-2px, 0, 0);
   }

   30%,
   70% {
      transform: translate3d(3px, 0, 0);
   }

   35%,
   65% {
      transform: translate3d(-3px, 0, 0);
   }

   40%,
   60% {
      transform: translate3d(3px, 0, 0);
   }

   45%,
   55% {
      transform: translate3d(-3px, 0, 0);
   }

   50% {
      transform: translate3d(0px, 0, 0);
   }
}

@media screen and (max-width: 770px) {
   .home-subheading {
      line-height: 1.9rem;
   }

   .blue-box.icon {
      padding-left: 10px;
      margin-top: 25px;
   }

   .blue-box-icon {
      top: -35px;
      height: 50px;
      right: 10px;
      left: auto;
      opacity: 0.5;
   }

   .scroll-step-container {
      padding-top: 0vh;
   }

   .scroll-step {
      min-height: auto;
      padding-bottom: 50px;
   }
}

#contact-form {
   margin: 30px auto;
   display: block;
   max-width: 600px;
   text-align: left;
}

#contact-form.wide {
   max-width: 800px;
}

.bugs {
   color: var(--s-purple-text);
}

#contact-form label {
   font-size: 1.1rem;
   font-family: "poppins";
   font-weight: 700;
   color: #625569;
}

#contact-form.wide textarea {
   width: 100%;
}

#contact-form input,
#contact-form textarea {
   font-family: "Poppins";
   font-size: 1.05rem;
   padding: 4px 8px;
   width: 100%;
   margin: 4px;
   border-radius: 4px;
   border: 1px solid #ddd;
   box-sizing: border-box;
}

#contact-form input:focus,
#contact-form textarea:focus {
   outline: 0px solid var(--s-primary);
   box-shadow: 2px 1px 5px #b3d0fc;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
   color: #bababa;
}

p.center {
   text-align: center;
}

.faq-wrp {
   float: left;
   width: 100%;
   padding-right: 45px;
   font-family: "poppins", sans-serif;
   margin-bottom: 30px;
}

.acordn-itm {
   border-bottom: 2px solid #e4e4e4;
   float: left;
   width: 100%;
   padding-bottom: 20px;
   position: relative;
}

.acordn-itm:last-child {
   border-color: transparent;
}

.acordn-itm + .acordn-itm {
   margin-top: 5px;
}

.acordn-itm > h4 {
   font-size: 1.3rem;
   letter-spacing: 0;
   font-weight: 500;
   margin-bottom: 0;
   padding-left: 0;
   cursor: pointer;
   padding-right: 40px;
   margin-top: 15px;
   color: #666;
}

.acrdn-cnt {
   float: left;
   width: 100%;
}

.acrdn-cnt > p {
   margin-bottom: 10px;
   margin-top: 0;
   font-size: 1.1rem;
   font-weight: 300;
}

.acordn-itm > h4 i {
   position: absolute;
   right: 5px;
   top: 20px;
   color: #484848;
   font-family: "icons";
   font-style: normal;
}

.acordn-itm.activate > h4 i:before {
   content: "\e853";
}

.acordn-itm.activate > h4 {
   margin-bottom: 17px;
}

.chr-mckp {
   float: left;
   width: 125%;
   margin-left: -5%;
}

.acordn-itm.activate {
   border-bottom-color: ##f8ab41;
}

.acordn-itm.activate i,
.acordn-itm.activate h4 {
   color: #f8ab41;
}

.action-text {
   background: #fff;
   border-radius: 6px;
   padding: 4px 14px;
   font-family: "poppins";
   font-weight: 500;
   font-size: 1.2rem;
   margin: 20px 0;
}

@media screen and (max-width: 1060px) {
   .blob-container.right {
      margin: auto;
      float: none;
   }

   .device-laptop {
      display: block;
      margin: auto;
   }
}

@media screen and (max-width: 900px) {
   .sticky-panel {
      display: none;
   }
}

.help-hub-partner {
   height: 35px;
   margin: 5px 20px;
}

.help-hub-partner-inbest {
   height: 40px;
   margin: 0px 20px;
}

.help-hub-partner-step {
   margin-top: 10px;
   margin-bottom: 0;
}

ol li {
   font-size: 1.2rem;
   margin: 25px 0;
}
