/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fonts/NunitoSans-Regular.ttf") format("truetype"),
    url("../fonts/NunitoSans-Regular.woff") format("woff");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url("../fonts/NunitoSans-SemiBold.ttf") format("truetype"),
    url("../fonts/NunitoSans-SemiBold.woff") format("woff");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url("../fonts/NunitoSans-Light.ttf") format("truetype"),
    url("../fonts/NunitoSans-Light.woff") format("woff");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url("../fonts/NunitoSans-Bold.ttf") format("truetype"),
    url("../fonts/NunitoSans-Bold.woff") format("woff");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../fonts/NunitoSans-Black.ttf") format("truetype"),
    url("../fonts/NunitoSans-Black.woff") format("woff");
}

body {
  font-family: "Nunito Sans", sans-serif;
  color: #314659;
}

a {
  cursor: pointer;
}

.show {
  display: block;
}

/* header */

.header {
  background-color: white;
  position: fixed;
  width: 100%;
  z-index: 10;
  font-weight: 600;
  font-size: 16px;
}

.header .header-contents {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding-left: 150px;
  padding-right: 30px;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.header li {
  margin-right: 43px;
}

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

.header li a {
  display: block;
  text-decoration: none;
  color: #314659;
}

.header .logo {
  display: block;
  float: left;
  text-decoration: none;
}

.logo-img {
  margin-right: 0;
  margin-top: 35px;
  margin-bottom: 35px;
  width: 157px;
  height: 26px;
  object-fit: cover;
}

/*Wave Tool Error Remove */
.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}

@media screen and (max-width: 924px) {
  .header .menu {
    max-height: unset;
    box-shadow: 0px 20px 20px -16px #0006;
    margin-left: -30px !important;
    margin-right: -30px;
    padding: 16px 32px;
  }
  .header .menu .button-item {
    margin-left: 0px !important;
    margin-right: 0px !important;
    padding-bottom: 0px !important;
  }
  .header .menu .button-item.login-button {
    padding: 0px;
  }
  .header .menu .button-item.login-button a {
    width: block;
    border: 2px solid blue;
    border-radius: 4px;
    text-align: center;
    color: blue;
    padding: 8px 0px;
  }
}
@media screen and (max-width: 924px) and (min-width: 800px) {
  .header .header-contents {
    display: block;
  }
  .header-contents a.logo {
    float: unset;
  }
  .header-contents .menu.show {
    display: block !important;
    float: unset !important;
  }
  .header-contents .menu {
    display: none !important;
  }
  .header-contents .menu li {
    padding: 10px 0px;
    float: unset !important;
  }
}

.header .navbar-toggler {
  position: absolute;
  top: 20px;
  right: 24px;
  outline: none !important;
}
.header .navbar-toggler span.hamburger-bar {
  width: 20px;
  height: 2px;
  display: block;
  margin-top: 4px;
  margin-bottom: 5px;
  background: black;
  border-radius: 2px;
}
@media screen and (min-width: 925px) {
  .header .navbar-toggler {
    display: none;
  }
  .header .menu.show {
    display: flex !important;
  }
}
@media screen and (max-width: 800px) {
  .header li {
    border-top: none !important;
  }
}
/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 500px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

.header .menu li.button-item {
  margin-right: 15px;
  margin-left: auto;
}

.header .menu li.button-item.disable {
  display: none;
}

.header .menu li.button-item.middle {
  margin-left: 5px;
}

.header.active {
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
}
/* 48em = 768px */

@media (min-width: 50em) {
  .header li {
    float: left;
  }

  .header .menu {
    clear: none;
    float: right;
    display: flex;
    align-items: center;
    flex-grow: 1;
    margin-left: 76px;
    max-height: unset;
  }

  .header .menu-icon {
    display: none;
  }
}

/* colors */
.c-blue {
  color: blue;
}

.bgc-blue {
  background-color: blue;
}

/* font-style */
.text-decoration-none {
  text-decoration: none !important;
}

/* buttons */
.btn {
  padding: 8px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
}

.btn-primary {
  background-color: blue;
  color: white !important;
  border: 2px solid blue;
}

.btn-secondary {
  border: 2px solid #c8d4de;
  background-color: transparent;
  color: #314659 !important;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
  background-color: transparent !important;
}

.btn-third {
  border: 2px solid blue;
  background-color: transparent;
  color: blue !important;
}

.btn-third:hover {
  background-color: transparent;
}

/* Accordion styles */
.tabs {
  overflow: hidden;
}

.tab {
  overflow: hidden;
  position: relative;
}

.tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1em 0px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 0;
}

.tab-label:hover {
}

.tab-label::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 3px solid #32557f;
  border-left: 0;
  border-top: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: 24px;
  transition: all 0.35s;
}

.tab-content {
  max-height: 0;
  padding: 0;
  background: transparent;
  opacity: 0;
  transition: all 0.35s;
}

.accordion-check:checked + .tab-label::after {
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  top: 38px;
}

.accordion-check:checked ~ .tab-content {
  max-height: 100vh;
  margin-bottom: 27px;
  opacity: 1;
}

.accordion-check {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  font-size: 54px;
  line-height: 66px;
  font-weight: 900;
  color: #222b45;
}

h2 {
  font-size: 46px;
  line-height: 64px;
  font-weight: 900;
  color: #222b45;
}

h3 {
  font-size: 42px;
  line-height: 51px;
  font-weight: 900;
  color: #222b45;
}

h4 {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 32px;
  color: #222b45;
}

h5 {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 32px;
}

.description {
  font-size: 19px;
  line-height: 32px;
  margin-top: 40px;
}

.content-description {
  font-size: 14px;
  letter-spacing: 0;
  line-height: 22px;
}

p {
  font-size: 21px;
  line-height: 40px;
  color: #6f7086;
}

.overflow-hidden {
  overflow: hidden;
}

.v-center {
  display: flex;
  align-items: center;
}

section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 150px;
  padding-right: 150px;
}

.left-panel {
  position: relative;
  width: 50%;
  padding-right: 24px;
}

.right-panel {
  position: relative;
  width: 50%;
  padding-left: 24px;
}

.get-start-section {
  padding-top: 190px;
  position: relative;
  z-index: 3;
  padding-bottom: 0;
}

.get-start-section .section-wrapper {
  align-items: flex-start;
  padding-right: 0px;
}

.get-start-section .left-panel {
  width: 46%;
}

.get-start-section .left-panel p {
  margin-top: 30px;
}

.input-email-wrapper {
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.success-message {
  color: blue;
  font-size: 13px;
  font-style: italic;
  margin-top: 5px;
  text-align: left;
  display: none;
}

.error-message {
  color: red;
  font-size: 13px;
  font-style: italic;
  margin-top: 5px;
  text-align: left;
  display: none;
}

.success-message.show {
  display: block;
}

.error-message.show {
  display: block;
}

.input-email-wrapper input[type="email"] {
  background: white;
  height: 64px;
  font-size: 16px;
  border: none;
  outline: none;
  padding-left: 20px;
  padding-right: 20px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  width: 300px;
  box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.08);
}

.input-email-wrapper .btn {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  height: 64px;
  padding: 20px 24px;
  font-weight: 900;
}

.get-start-section .input-email-wrapper {
  justify-content: flex-start;
}

.get-start-section .left-panel .get-demo {
  font-size: 18px;
}

.get-start-section .right-panel {
  width: 50%;
  position: relative;
}

.get-start-section .right-panel .play-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  cursor: pointer;
}

.sponsor-section {
  padding-top: 0px;
  background: linear-gradient(0deg, #ffffff 0%, #f8f8ff 100%);
  position: relative;
  z-index: 1;
}

.sponsor-section .note-title {
  font-size: 17px;
  text-align: center;
}

.sponsor-section .section-wrapper {
  display: block;
}

.sponsor-section .sponsors {
  display: flex;
  justify-content: center;
  margin-top: 34px;
  margin-bottom: 90px;
}

.sponsor-section .sponsors img {
  width: auto;
  height: 80px;
  margin-right: 30px;
}

.sponsor-section .sponsors img:last-child {
  margin-right: 0px;
}

.sponsor-section .sponsor-title {
  max-width: 955px;
  margin: 0 auto;
}

.sponsor-section .sponsor-description {
  max-width: 753px;
  margin: 30px auto;
  text-align: center;
}

.prospect-section {
  padding-top: 70px;
}

.prospect-section .section-wrapper {
  padding-right: 0;
}

.prospect-section .left-panel {
  width: 38%;
}

.get-start-link {
  color: blue;
  font-weight: 900;
  font-size: 16px;
  margin-top: 30px;
  margin-bottom: 30px;
  cursor: pointer;
}

.get-start-link a {
  color: blue;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
}

.get-start-link .arrow-left {
  width: 17px;
  height: 17px;
}

.h-line {
  height: 0px;
  width: 100%;
  border-bottom: 1px solid #d9d9dd;
}

.feedback-wrapper {
}

.feedback-text {
  font-size: 14px;
  font-style: italic;
  line-height: 20px;
  margin-top: 20px;
  margin-bottom: 5px;
}

.feedback-wrapper .feedback-avatar {
  width: 32px;
  height: 32px;
  border-radius: 16px;
}

.feedback-wrapper .avatar-name {
  font-size: 12px;
  font-weight: 700;
}

.prospect-section .right-panel {
  width: 55%;
}

.record-section .left-panel {
  width: 50%;
}

.record-section .right-panel {
  width: 42%;
}

.record-section {
  padding-top: 100px;
}

.landing-section {
  padding-top: 100px;
}

.landing-section .left-panel {
  width: 45%;
}

.landing-section .right-panel {
  width: 40%;
}

.automation-section {
  background: linear-gradient(0deg, #ffffff 0%, #f8f8ff 100%);
}

.automation-section .left-panel {
  width: 39%;
}

.automation-section .right-panel {
  width: 55%;
}

.automation-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.automation-section .section-wrapper {
  padding-right: 50px;
}

.mobile-app-section {
  padding-top: 0px;
}
.mobile-app-section .left-panel {
  width: 39%;
}
.mobile-app-section .right-panel {
  width: 55%;
}

.team-section .section-wrapper {
  padding-left: 0px;
}

.team-section .left-panel {
  width: 60%;
}

.team-section .right-panel {
  width: 38%;
}

.team-section .functions-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.team-section .functions-wrapper .function h5 {
  margin-top: 15px;
}

.team-section .functions-wrapper .function .content-description {
  margin-top: 6px;
}

.team-section .functions-wrapper .function img {
  width: auto;
  height: 25px;
  object-fit: cover;
}

.chrome-extension-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.chrome-extension-section .section-wrapper {
  padding-left: 0px;
}

.chrome-extension-section .left-panel {
  width: 50%;
}

.chrome-extension-section .right-panel {
  width: 38%;
}

.feature-section {
  padding-top: 50px;
}

.feature-section .title-wrapper {
  text-align: center;
}

.feature-section .title-wrapper h2 {
  max-width: 877px;
  margin: 0 auto;
}

.feature-section .section-wrapper {
  margin-top: 60px;
  align-items: flex-start;
}

.feature-section .left-panel {
  width: 65%;
}

.feature-section .right-panel {
  width: 35%;
}

.accordion {
  position: relative;
}

.feature-section .left-panel img {
  display: none;
}

.feature-section .left-panel img.show {
  display: block;
}

[id*="open-accordion"],
[id*="close-accordion"] {
  background: white;
  border-bottom: 1px solid #fff;
  line-height: 40px;
  height: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  width: 99%;
}

[id*="close-accordion"] {
  display: none;
}

.accordion a {
  text-decoration: none;
  text-shadow: none;
  color: #222b45;
  font-size: 17px;
  font-weight: 700;
  line-height: 28px;
  padding: 20px 30px;
  border-radius: 11px;
}

.accordion .accordion-wrapper {
  margin-bottom: 10px;
  border-radius: 11px;
  box-shadow: 0 30px 42px 0 rgba(63, 68, 73, 0.16);
}

.accordion .accordion-wrapper:last-child {
  margin-bottom: 0px;
}

.accordion a[id*="close-accordion"] {
  color: blue;
  border: 1px solid #0000ff;
}

[id*="open-accordion"]:after,
[id*="close-accordion"]:after {
  content: "";
  position: absolute;
  right: 35px;
  top: 24px;
  z-index: 2;
  width: 12px;
  height: 12px;
  border: 2px solid #32557f;
  border-left: 0;
  border-top: 0;
  transform: rotate(45deg);
}

[id*="close-accordion"]:after {
  top: 30px;
}

[id*="open-accordion"]:after {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.target-fix {
  display: block;
  top: 0;
  left: 0;
  position: fixed;
}

.accordion-content {
  background: #fff;
  position: relative;
  overflow: hidden;
  width: 90%;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
}

.accordion-content p {
  margin: 8px 0px;
  padding: 0px;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  color: #6f7086;
  font-weight: 400;
}

.accordion-content .for-mobile {
  display: none;
  margin-top: 16px;
  margin-bottom: 16px;
}

[id*="close-accordion"] .accordion-content {
  display: block;
  height: 120px;
  margin-top: 8px;
}

.accordion span:target ~ [id*="close-accordion"] {
  display: block;
}

.accordion span:target ~ [id*="open-accordion"] {
  display: none;
}

.accordion span:target ~ [id*="close-accordion"]:after {
  border-color: blue;
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
}

.additional-section .section-wrapper {
  display: block;
  padding-top: 120px;
}

.additional-section .box-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 22px;
  grid-row-gap: 70px;
  margin-top: 90px;
}

.additional-section .box-wrapper .feature-box {
  position: relative;
  box-shadow: 0 30px 42px 0 rgba(63, 68, 73, 0.16);
  border-radius: 11.23px;
  padding: 45px 34px;
  text-align: center;
}

.additional-section .box-wrapper .feature-box img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -24px;
  width: 47px;
  height: 47px;
  object-fit: cover;
}

.additional-section .box-wrapper .feature-box .description {
  margin-top: 14px;
}

.review-section {
  padding-top: 130px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fafafe 100%);
}

.review-section .section-wrapper {
  text-align: left;
}

.review-section .review-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.review-section .review-wrapper .review-box {
  position: relative;
  height: 478px;
  width: 344px;
  padding: 36px 26px;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0 32px 44px 0 rgba(82, 82, 82, 0.1);
}

.review-section .review-wrapper .review-box .video-player {
  position: relative;
  cursor: pointer;
}

.review-section .review-wrapper .review-box .video-player .thumbnail {
  border-radius: 34px;
  box-shadow: 0 32px 44px 0 rgba(82, 82, 82, 0.1);
  height: 195px;
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.review-section .review-wrapper .review-box .video-player .thumbnail:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.review-section .review-wrapper .play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  object-fit: cover;
  cursor: pointer;
}

.review-section .review-wrapper .review-box .review-text {
  color: #222b45;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 28px;
  margin-top: 36px;
  padding-left: 20px;
}

.review-section .review-wrapper .review-box .quote-img {
  position: absolute;
  left: -20px;
  top: 263px;
  height: 26px;
  width: 33px;
  object-fit: cover;
}

.review-section .review-wrapper .review-box .review-auth {
  position: absolute;
  bottom: 30px;
}

.review-section .review-wrapper .review-box .review-auth .auth-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 28px;
  color: #222b45;
  padding-left: 20px;
}

.review-section .review-wrapper .review-box .review-auth .auth-location {
  color: #6f7086;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  padding-left: 20px;
}

.review-section button {
  margin: 82px 0px;
}

.integration-section {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 80px;
}

.integration-section .left-panel {
  width: 42%;
}

.integration-section .right-panel {
  width: 58%;
}

.ready-section {
  background-color: #000066;
  padding: 68px 390px;
  text-align: center;
}

.ready-section img {
  height: 58.63px;
  width: 663.26px;
  object-fit: cover;
}

.ready-section .for-mobile {
  display: none;
}

.ready-section .go-demo {
  margin-top: 22px;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 40px;
  color: #c5c5f4;
}

.ready-section .go-demo a {
  text-decoration: underline;
  text-decoration-color: #c5c5f4;
  color: #c5c5f4;
}

.ready-section .go-demo a:hover {
  text-decoration: underline;
}

footer {
  background-color: #000000;
  padding-top: 89px;
  padding-bottom: 42px;
}

footer .section-wrapper {
  align-items: flex-start;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: none;
}

footer .left-panel {
  width: 30%;
}

footer .logo-img {
  margin-top: 0;
  margin-bottom: 8px;
}

footer .right-panel {
  width: 70%;
  display: flex;
  justify-content: space-between;
}

footer .site-description {
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  opacity: 0.39;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 23px;
  margin-top: 82px;
}

footer .title-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 19px;
}

footer .sub-title-text {
  opacity: 0.59;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 23px;
}

footer .sub-title-text.first {
  margin-top: 15px;
}

.triangle-bottom-left .section-wrapper {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  background: #f9f9ff;
  height: 150px;
  clip-path: polygon(0% 0%, 0% 100%, 100% 100%);
}

.triangle-top-left {
  margin-top: -150px;
  width: 100%;
}

.triangle-top-left .section-wrapper {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  background: #f9f9ff;
  height: 200px;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}

/* pricing page */

.pricing-container section {
  /*padding: 0;*/
}

.price-page-title {
  color: #222b45;
  font-size: 63px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 72px;
}

.pricing-container .plan-section {
  padding-top: 150px;
}

.plan-section.for-mobile {
  display: none;
}

.plan-section .section-wrapper {
  display: block;
}

.plan-section .pricing-page-description {
  margin-top: 27px;
}

.plan-section .plan-container {
  display: flex;
  justify-content: center;
}

.plan-section .plan-container .plan-spacing {
  width: 25%;
}

.plan-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0;
  margin-top: 34px;
  width: 75%;
}

.plan-wrapper a:hover {
  text-decoration: none;
}

.plan-wrapper .plan-item {
  width: 250px;
  height: 320px;
  padding: 22px;
  position: relative;
  border: 4px solid white;
}

.plan-wrapper .plan-item img {
  display: none;
  position: absolute;
  width: 40%;
  height: auto;
  right: -2px;
  top: 0;
  object-fit: unset;
  z-index: -1;
}

.plan-wrapper .plan-item.active {
  border: 4px solid #df7900;
  border-radius: 11px;
}

.plan-wrapper .plan-item.active img {
  display: block;
}

.plan-wrapper .plan-item:last-child {
  margin-right: 0;
}

.plan-wrapper .plan-item .title {
  color: #222b45;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 46px;
}

.plan-wrapper .plan-item p {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 21px;
  margin-top: 4px;
}

.plan-wrapper .plan-item p.description {
  height: 80px;
  display: flex;
  align-items: center;
}

.plan-wrapper .plan-item button {
  position: absolute;
  bottom: 65px;
  height: 45px;
  padding: 10px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 24px;
  text-align: center;
  margin-top: 16px;
  width: calc(100% - 44px);
}

.plan-wrapper .plan-item .membership {
  position: absolute;
  bottom: 20px;
  margin-top: 16px;
  display: flex;
  align-items: flex-end;
}

.plan-wrapper .plan-item .membership .cycle {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 26px;
  color: #222b45;
}

.plan-wrapper .plan-item .membership .price {
  font-size: 29px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 29px;
  color: #222b45;
}

.popular-section {
  margin-top: 24px;
}

.popular-section .section-wrapper {
  display: block;
}

.popular-section .feature-header {
  background-color: #f6f6f8;
  box-shadow: inset 0 1px 0 0 #dbdbe5, 0 1px 0 0 #dbdbe5;
  padding: 8px 18px;
  color: #222b45;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 32px;
  margin-bottom: 2px;
}

.popular-section .feature-wrapper {
  display: flex;
  align-items: flex-start;
  padding: 10px 0px;
}

.popular-section .feature-wrapper .feature-title {
  color: #222b45;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 32px;
  flex-grow: 1;
  padding-left: 18px;
  display: flex;
  align-items: center;
  position: relative;
}

.popular-section .feature-wrapper .feature-title.additional-feature {
  display: flex;
  padding: 0px 0px 16px 18px;
}

.popular-section .feature-wrapper .feature-title.additional-feature p {
  color: #6f7086;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 17px;
  max-width: 205px;
}

.popular-section .feature-wrapper .feature-title.additional-feature .i-icon {
  margin-left: 5px;
}

.popular-section .feature-wrapper .feature-title img {
  width: 20px;
  height: 20px;
  object-fit: cover;
  margin-left: 5px;
}

.popular-section .feature-wrapper .plan-wrapper {
  margin-top: 0;
}

.popular-section .feature-wrapper .plan-wrapper .plan-item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 32px;
  text-align: center;
  color: #222b45;
  height: auto;
  padding: 8px 10px;
}

.popular-section .feature-wrapper .plan-wrapper .plan-item.check-item {
  display: block;
}

.popular-section .feature-wrapper .plan-wrapper .plan-item.check-item img {
  margin: 0 auto;
}

.popular-section .feature-wrapper .plan-wrapper .plan-item.check-item .i-icon {
  margin: 5px auto 0px auto;
}

.popular-section .feature-wrapper .plan-wrapper .plan-item img {
  width: 28px;
  height: 22px;
  display: block;
  position: relative;
}

.package-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 36px;
  margin: 0 auto;
}
.package-item {
  border: 1.04px solid #ddddea;
  background-color: #ffffff;
  box-sizing: border-box;
  padding: 22px;
  position: relative;
  max-width: 380px;
  box-shadow: 0 5px 20px 0 rgb(0 0 0 / 10%);
  margin: auto;
}
.features .feature-contacts {
  display: flex;
  justify-items: flex-end;
}

.package-level {
  display: flex;
  align-items: center;
  justify-content: center;
}
.package-level-lite {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 46px;
  color: #138e6e;
}

.package-level-lite-mark {
  margin: 4px 12px;
  padding: 0 10px;
  border-radius: 4px;
  font-size: 14px;
  color: white;
  background-color: #138e6e;
  line-height: 22px;
}

.package-level-pro {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 46px;
  color: #f28422;
  display: flex;
}

.package-level-pro-mark {
  margin: 4px 12px;
  padding: 0 10px;
  border-radius: 4px;
  font-size: 14px;
  color: white;
  background-color: #f28422;
  line-height: 22px;
}

.package-level-elite {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 46px;
  color: #7f00ff;
}

.package-level-elite-mark {
  margin: 4px 12px;
  margin: 0 12px;
  padding: 0 10px;
  border-radius: 4px;
  font-size: 14px;
  color: white;
  background-color: #7f00ff;
  line-height: 22px;
}

#site-pricing-table-bottom {
  display: block !important;
}

.package-price .price {
  font-size: 40px !important;
  font-weight: bold !important;
  color: black !important;
}

.package-price .month {
  font-weight: 600;
  color: black;
}
.package-description {
  font-size: 18px;
  margin: 12px auto;
}
.buy-button {
  margin: 14px 0;
}
.buy-button button {
  background-color: #fff;
  color: #00f;
  border-radius: 0.25rem !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  border-color: #00f !important;
  border: 1px solid blue !important;
  font-weight: 700 !important;
  font-size: 16px;
  width: 100%;
  height: 50px;
  cursor: pointer;
}

.buy-button button:hover {
  color: white;
  background-color: #00f;
}

#price-section {
  margin-top: -rem;
}

.triangle-bottom-right {
  margin-top: 12rem;
}
.triangle-bottom-right .section-wrapper {
  width: 0;
  height: 0;
  border-bottom: 150px solid #f6f5ff;
  border-right: calc(100vw - 18px) solid transparent;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}

.triangle-bottom-left .section-wrapper {
  width: 0;
  height: 0;
  border-bottom: 150px solid #f6f5ff;
  border-left: calc(100vw - 18px) solid transparent;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}

.price-features .price-features-item {
  display: flex;
  justify-content: space-between;
  margin: 4px auto;
}

.price-features-item .tip-info {
  display: flex;
  justify-content: center;
  align-items: center;
}

.price-features .price-features-item p {
  font-size: 16px;
}

.price-features .price-features-item .icon-sms {
  display: flex;
  align-items: center;
}
.bg-dialer {
  background-color: #edf6fc;
  border-radius: 4px;
}
.bg-dialer p {
  padding: 10px auto !important;
}
.icon-sms .i-icon {
  margin-left: 8px;
  cursor: pointer;
}

.section-price-wrapper .package-wrapper {
  margin-top: -12rem;
}
.faq-section .section-price-wrapper {
  display: flex;
  padding-top: 0px;
}

.faq-section {
  background: linear-gradient(0deg, #ffffff 0%, #f6f5ff 100%);
}

.faq-section .section-wrapper {
  display: block;
  padding-top: 0px;
  text-align: center;
}

.faq-section .faqs-wrapper {
  margin-top: 36px;
  text-align: left;
  padding-left: 190px;
  padding-right: 190px;
}

.pricing-bottom {
  margin: 70px auto;
}
.vector-section {
  height: 50px;
  width: 50px;
  border-radius: 22px;
  margin: 0 auto;
}
.vector-section img {
  height: 32px;
  width: 32px;
}
.faq-section .faqs-wrapper .tab {
  border-bottom: 1px solid #c9d5e0;
}

.faq-section .faqs-wrapper .tab-label {
  color: #222b45;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 40px;
  width: 95%;
}

.faq-section .faqs-wrapper .tab-content {
  color: #6f7086;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  padding-right: 100px;
}

.pricing-container .sponsor-section {
  padding-top: 100px;
  background: transparent;
  margin-top: 0;
}

.plan-section.for-mobile {
  /*display: none;*/
}

.plan-section.for-mobile .section-wrapper {
  padding-left: 50px;
  padding-right: 50px;
}

.plan-section.for-mobile .plan-item {
  /*border-radius: 11px;*/
  /*background-color: #F1F1FF;*/
  width: unset;
  height: unset;
  padding: 30px;
  border: 1px solid #d7dee2;
  background-color: #fff;
  box-shadow: 0 5px 20px 0 rgb(0 0 0 / 10%);
  border-radius: 0px;
}

.plan-wrapper .plan-item .active-img {
  z-index: -1;
}

.plan-section.for-mobile .plan-item.active {
  /*border: 4px solid #DF7900;*/
  /*border-radius: 11px;*/
  /*background-color: #F1F1FF;*/
  position: relative;
}

.plan-section.for-mobile .plan-item.active .popular-img {
  width: 25%;
  height: auto;
  right: -2px;
  top: 0;
  left: initial;
}

.plan-section.for-mobile .plan-item .features {
  margin-top: 20px;
}

.plan-section.for-mobile .plan-item .features .feature-item {
  display: flex;
  align-items: flex-start;
}

.plan-section.for-mobile .plan-item .features .feature-item img {
  width: 23px;
  height: 18px;
  position: initial;
  display: block;
}

.plan-section.for-mobile .plan-item .features .feature-item p {
  color: #222b45;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 32px;
  margin-left: 12px;
}

.plan-section.for-mobile .plan-item .features .feature-item.inherit {
  margin-top: 20px;
  margin-bottom: 20px;
}

.plan-section.for-mobile .plan-item .features .feature-item.inherit p {
  font-size: 17px;
  font-weight: 700;
  margin-left: 0px;
}

.plan-section.for-mobile .plan-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

footer.secondary-footer .left-panel {
  display: flex;
}

footer.secondary-footer .left-panel .social-link {
  display: flex;
  margin-left: 40px;
}

footer.secondary-footer .left-panel .social-link a {
  margin-right: 13px;
}

footer.secondary-footer .left-panel .social-link a:last-child {
  margin-right: 0;
}

footer.secondary-footer .left-panel .social-link img {
  width: 16px;
  height: 16px;
}

footer.secondary-footer .right-panel {
  justify-content: flex-end;
}

footer.secondary-footer a .link-item {
  opacity: 0.66;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 19px;
  margin-right: 40px;
}

footer.secondary-footer a:last-child .link-item {
  margin-right: 0;
}

.review-page {
  background: transparent;
  padding-top: 150px;
  text-align: center;
}

.safe-area {
  max-width: 1440px;
  margin: 0 auto;
}

.safe-area .contents {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0px 30px 50px 30px;
}

.safe-area .contents .top-line {
  width: 100%;
  height: 6px;
}

.safe-area .contents .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0px;
}

.safe-area .contents .header .logo img {
  width: 180px;
}

.safe-area .contents .header .header-buttons a {
  margin: 0px 5px;
}

.safe-area .contents .section-title {
  text-align: center;
}

.safe-area .contents .section-title h1 {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  margin-top: 50px;
}

.safe-area .contents .section-title .text-underline {
  width: 150px;
  margin: 30px auto;
  height: 5px;
  border-radius: 2px;
}

.safe-area .contents .section-title h5 {
  font-size: 16px;
}

.safe-area .contents .section-contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  grid-row-gap: 30px;
  margin: 50px auto;
}

.safe-area .contents .section-contents .agent-item .video-area {
  position: relative;
  cursor: pointer;
}

.safe-area .contents .section-contents .agent-item .video-item {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 30px #4446;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.safe-area .contents .section-contents .agent-item .video-item:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.safe-area .contents .section-contents .agent-item .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
}

.safe-area .contents .section-contents .agent-item .agent-info {
  text-align: center;
}

.safe-area .contents .section-contents .agent-item .agent-info h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.safe-area .contents .section-contents .agent-item .agent-info p {
  font-size: 16px;
  line-height: 22px;
}

.safe-area .contents .section-footer {
  background: url("../images/review_banner.jpg");
  height: 120px;
  background-size: 100% 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 50px;
  color: #ffffff;
  border-radius: 5px;
}

.safe-area .contents .section-footer h2 {
  text-transform: uppercase;
  margin: 0;
}

.review-page .section.footer {
  background: transparent;
  max-width: 1440px;
  margin: 0 auto;
}

/* Close Button */
.popup-close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: -30px;
  right: -10px;
  font-size: 26px;
  text-align: left;
  line-height: 70%;
  color: #fff;
  padding-left: 2px;
  color: #000000;
}

.popup-close:hover {
  color: #000000;
  text-decoration: none;
}

.popup {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10;
}

.popup-inner {
  width: 60vw;
  height: 33.75vw;
  padding: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  background: transparent;
}

.popup #video-player {
  width: 60vw;
  height: 33.75vw;
  border-radius: 5px;
  background: black;
}

.popup #agent-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  margin-top: 10px;
}

.popup #agent-info h2 {
  margin: 0;
  font-weight: 700;
  font-size: 32px;
}

.popup #agent-info h4 {
  margin: 0;
  font-weight: 700;
}

.overflow-hidden {
  overflow: hidden;
}

.visibility-hidden {
  visibility: hidden;
}

.safe-area .contents .text-underline {
  width: 150px;
  margin: 30px auto;
  height: 5px;
  border-radius: 2px;
}

.bg-blue {
  background-color: blue;
}

.privacy-term-container {
  padding-top: 130px;
  padding-bottom: 80px;
  font-size: 16px;
}

.privacy-term-container h5,
.privacy-term-container h4,
.privacy-term-container h6 {
  color: #101336;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 15px;
}

.privacy-term-container h4 {
  font-size: 20px;
}

.privacy-term-container h5 {
  font-size: 18px;
}

.privacy-term-container p {
  font-size: 15px;
  line-height: 24px;
  color: #666;
}

.privacy-term-container p b {
  color: blue;
}

.privacy-term-container a {
  font-size: 16px;
  text-decoration: underline !important;
  color: blue;
  font-weight: 600;
}

.privacy-term-container span.active {
  color: blue;
}

.privacy-term-container ul {
  margin-top: 12px;
  margin-bottom: 12px;
}

.card {
  background-color: white;
  border-radius: 11.23px;
  margin-bottom: 20px;
  box-shadow: 0 30px 42px 0 rgb(63 68 73 / 16%);
  padding: 20px 64px 20px 30px;
  position: relative;
}

.card.active {
  border: 1px solid blue;
}

.card .card-header {
  padding: 0px;
  border: none;
}

.card .card-header .card-link {
  width: 100%;
  display: block;
  color: black;
  border-radius: 11.23px;
  background-color: white;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 22px;
  text-decoration: none;
}

.card .card-header .card-link:hover {
  text-decoration: none;
}

.card .card-header .card-link.collapsed {
}

.card .card-header .card-link[aria-expanded="true"] {
  background: white;
  color: #1500ff;
}

.card .card-body {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  margin-top: 5px;
}

.card .card-body .for-mobile {
  display: none;
  margin-top: 10px;
}

.card .collapse.show {
  border-radius: 11.23px;
}

.card .card-header .card-link[aria-expanded="true"]::after {
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  top: 30px;
  border-color: #0000ff;
}

.card .card-header .card-link.collapsed::after {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.card .card-header .card-link::after {
  display: block;
  width: 12px;
  height: 12px;
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  border: 2px solid #32557f;
  border-left: 0;
  border-top: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transition: transform 0.4s;
}

.pricing-container .card {
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid #c9d5e0;
  padding: 20px 50px 20px 0px;
  margin-bottom: 0px;
}

.pricing-container .card-header {
  background-color: transparent;
}

.pricing-container .card .card-header .card-link {
  border-radius: 0;
  background-color: transparent;
  color: #222b45;
  border-radius: 0;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 40px;
}

.pricing-container .card .card-body {
  padding: 5px 0px 0px 0px;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
}

.pricing-container .card .card-header .card-link::after {
  width: 16px;
  height: 16px;
}

.pricing-container .card .card-header .card-link[aria-expanded="true"]::after {
  border-color: #32557f;
}

.free-trial-wrapper {
  display: flex;
  align-items: center;
  width: 275px;
  margin: 20px auto;
  cursor: pointer;
  text-decoration: none;
  justify-content: center;
}

.free-trial-wrapper:hover {
  text-decoration: none;
}

.free-trial-wrapper span {
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 40px;
  color: #0000ff;
}

.free-trial-wrapper img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  transform: rotate(-90deg);
  margin-left: 16px;
}

.qtip {
  display: inline-block;
  position: relative;
  cursor: pointer;
  color: #3bb4e5;
  box-sizing: border-box;
  font-style: normal;
  transition: all 0.25s ease-in-out;
}
/*the tip*/
.qtip.sm:before {
  min-width: 50px;
}

.qtip.lg:before {
  min-width: 200px;
}

.qtip.xl:before {
  min-width: 300px;
}

.qtip:before {
  content: attr(data-tip);
  font-size: 14px;
  position: absolute;
  background: rgba(10, 20, 30, 0.85);
  color: #fff;
  line-height: 1.2em;
  padding: 0.5em;
  font-style: normal;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  min-width: 150px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  font-family: sans-serif;
  letter-spacing: 0;
  font-weight: 600;
}
.qtip:after {
  width: 0;
  height: 0;
  border-style: solid;
  content: "";
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.qtip:hover:before,
.qtip:hover:after {
  visibility: visible;
  opacity: 1;
}
/*top*/
.qtip.tip-top:before {
  top: 0;
  left: 50%;
  transform: translate(-50%, calc(-100% - 8px));
  box-sizing: border-box;
  border-radius: 3px;
}
.qtip.tip-top:after {
  border-width: 8px 8px 0 8px;
  border-color: rgba(10, 20, 30, 0.85) transparent transparent transparent;
  top: -8px;
  left: 50%;
  transform: translate(-50%, 0);
}
/*bottom*/
.qtip.tip-bottom:before {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, calc(100% + 8px));
  box-sizing: border-box;
  border-radius: 3px;
}
.qtip.tip-bottom:after {
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent rgba(10, 20, 30, 0.85) transparent;
  bottom: -8px;
  left: 50%;
  transform: translate(-50%, 0);
}
/*left*/
.qtip.tip-left:before {
  left: 0;
  top: 50%;
  transform: translate(calc(-100% - 8px), -50%);
  box-sizing: border-box;
  border-radius: 3px;
}
.qtip.tip-left:after {
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent rgba(10, 20, 30, 0.85);
  left: -8px;
  top: 50%;
  transform: translate(0, -50%);
}
/*right*/
.qtip.tip-right:before {
  right: 0;
  top: 50%;
  transform: translate(calc(100% + 8px), -50%);
  box-sizing: border-box;
  border-radius: 3px;
  z-index: 2;
}
.qtip.tip-right:after {
  border-width: 8px 8px 8px 0;
  border-color: transparent rgba(10, 20, 30, 0.85) transparent transparent;
  right: -8px;
  top: 50%;
  transform: translate(0, -50%);
}

.i-icon {
  width: 20px;
  height: 20px;
  background-image: url("../../assets/images/new/info.svg");
  background-size: 20px 20px;
  background-repeat: no-repeat;
}

.i-icon.left {
  margin-left: 10px;
}

.i-icon.down {
  display: block;
}

/* pricing page */
.site-pricing-plans-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 120px;
  margin-bottom: 50px;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-left: 1px solid #d7dee2;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.site-pricing-plans-item {
  position: relative;
  width: 100%;
  padding: 30px;
  border-top: 1px solid #d7dee2;
  border-right: 1px solid #d7dee2;
  border-bottom: 1px solid #d7dee2;
  background-color: #fff;
  text-align: center;
}
.site-pricing-plans-item.site-pricing-plans-item-recomended {
  overflow: hidden;
  margin-top: -15px;
  margin-left: -1px;
  padding-top: 45px;
  border-left: 1px solid #d7dee2;
}
.site-pricing-plans-item-description {
  margin-bottom: 10px;
}
.site-pricing-plans-item-price {
  font-size: 30px;
}
.site-pricing-plans-item-meta {
  min-height: 22px;
  margin-bottom: 15px;
  font-size: 14px;
}
.site-pricing-plans-item .title {
  color: #222b45;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 46px;
}
.site-pricing-plans-item .description {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 21px;
  margin-top: 10px;
  height: 100px;
  display: flex;
  align-items: center;
}
.site-pricing-plans-item .membership {
  margin-top: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.site-pricing-plans-item .membership .cycle {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 26px;
  color: #222b45;
}
.site-pricing-plans-item .membership .price {
  font-size: 29px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 29px;
  color: #222b45;
}
.site-pricing-plans-item button {
  height: 45px;
  padding: 10px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 24px;
  text-align: center;
  margin-top: 16px;
  width: calc(100% - 20px);
}
.site-pricing-plans-item .popular-img {
  position: absolute;
  width: 25%;
  height: auto;
  right: -2px;
  top: 0;
  object-fit: unset;
}
.site-pricing-table {
  min-height: 300px;
  margin-bottom: 100px;
  border: 1px solid #d7dee2;
  background-color: #fff;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.site-pricing-table-header {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #d7dee2;
  background-color: #f6f6f8;
  z-index: 3;
}
.site-pricing-table-header-col {
  width: 32.5%;
  padding: 20px;
  border-left: 1px solid #d7dee2;
  text-align: center;
}
.header-lite-color {
  color: #138e6e !important;
}
.header-pro-color {
  color: #f28422 !important;
}
.header-elite-color {
  color: #7f00ff !important;
}
.site-pricing-table-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #d7dee2;
}
.site-pricing-table-col {
  width: 32.5%;
  padding: 20px;
  border-left: 1px solid #d7dee2;
  text-align: center;
}
.site-pricing-table-col.site-pricing-table-col--label {
  width: 35%;
  border-left-width: 0;
  color: #354650;
  text-align: left;
}
.site-pricing-table-header-col--label.site-pricing-table-header-col {
  width: 35%;
  padding-top: 15px;
  padding-bottom: 15px;
  border-left-width: 0;
  font-family: "Proximanova Bold", sans-serif;
  font-size: 20px;
  text-align: left;
}
.site-pricing-table-icon {
  width: 20px;
  height: 20px;
}
.site-pricing-table-header-col--label.site-pricing-table-header-col.feature-type {
  color: #222b45;
  font-size: 18px;
  font-weight: bold;
}
.site-pricing-table-header .site-pricing-table-header-col.plan-type {
  color: #222b45;
  font-size: 18px;
  font-weight: bold;
}

.site-pricing-table-bottom {
  height: 160px !important;
}

.site-pricing-table-bottom-col {
  display: block !important;
  padding: 0;
}

.site-pricing-table-bottom-col div {
  text-align: center;
  line-height: 28px;
  padding: 0 14px;
}

.site-pricing-table-row .site-pricing-table-col {
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222b45;
  font-size: 16px;
}
.site-pricing-table-row .site-pricing-table-col.site-pricing-table-col--label {
  color: #222b45;
  font-size: 16px;
  font-weight: 600;
  justify-content: flex-start;
}
.site-pricing-table-row .site-pricing-table-col span {
  color: #222b45;
  font-size: 16px;
}
.site-pricing-table-row .site-pricing-table-col img {
  width: 22px;
  height: 18px;
}
.site-pricing-table-container {
  padding-left: 50px;
  padding-right: 50px;
}
.all-plane-title {
  font-size: 52px;
  line-height: 64px;
  font-weight: 900;
  color: #222b45;
  text-align: center;
  margin: 46px 0;
}

.book-watch-section {
  display: flex;
  margin: 4rem 10rem;
}

.book-watch-section-item {
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.book-watch-section-item img {
  height: 64px;
  width: 64px;
  border-radius: 20px;
  border: 1px solid grey;
  cursor: pointer;
  margin: 1rem;
}
.book-watch-section-item .title {
  font-weight: bold;
  color: black;
  letter-spacing: 0.1rem;
}

.book-watch-section-item .desc {
  margin: 1.2rem 6.4rem;
  color: black;
  line-height: 24px;
  font-size: 16px;
  letter-spacing: normal;
  text-align: center;
}

.book-watch-section-item span {
  font-weight: bold;
  color: blue;
  font-size: 1.1rem;
}

.book-watch-section-item .text_link {
}

.book-watch-section-item img {
  height: 64px;
  width: 64px;
}

.book-watch-section .package-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 36px;
  margin: 0 auto;
}

.book-watch-section .package-wrapper .book-watch-section-item {
  display: flex;
  flex-direction: column;
}

/* contact us page */
.get-start-section.contact-us-section .section-wrapper {
  padding-right: 150px;
}

.get-start-section.contact-us-section .form-input-wrapper {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 100px;
  position: relative;
}

.get-start-section.contact-us-section .form-input-wrapper input,
.get-start-section.contact-us-section .form-input-wrapper textarea {
  box-sizing: border-box;
  height: 58px;
  width: 100%;
  border: 1px solid #c8d4de;
  border-radius: 8px;
  background-color: #ffffff;
  font-size: 16px;
  padding: 16px 20px;
  margin-top: 20px;
}

.get-start-section.contact-us-section .form-input-wrapper textarea {
  height: 200px;
}

.get-start-section.contact-us-section .form-input-wrapper button {
  width: 100%;
  margin-top: 20px;
}

.get-start-section.contact-us-section .right-panel {
  padding-top: 50px;
}

.get-start-section.contact-us-section .description {
  margin-top: 15px;
}

.get-start-section.contact-us-section .h-line {
  margin-top: 30px;
  margin-bottom: 30px;
}

.get-start-section.contact-us-section .sponsors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 20px;
}

.btn:focus {
  outline: none;
}

.btn.loading {
  color: transparent !important;
  background-image: url("../images/new/spinner.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.popup.confirm-dialog {
  background: rgba(0, 0, 0, 0.32);
  -webkit-tap-highlight-color: transparent;
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.popup.confirm-dialog .popup-inner {
  width: 400px;
  height: 210px;
  padding: 2rem;
  background-color: white;
}

.popup.confirm-dialog .dialog-title {
  font-size: 24px;
  font-weight: 700;
  color: #222b45;
}

.popup.confirm-dialog .dialog-message {
  font-size: 18px;
  font-weight: bold;
  color: #222b45;
  margin-top: 50px;
  text-align: center;
}

.popup.confirm-dialog .popup-close {
  top: 2.5rem;
  right: 1rem;
  cursor: pointer;
}

.popup.confirm-dialog .close-button {
  font-size: 16px;
  font-weight: 700;
  color: blue;
  width: 60px;
  position: absolute;
  right: 2rem;
  bottom: 2.5rem;
  cursor: pointer;
}

.popup.confirm-dialog .close-button.redirect-button {
  width: auto;
}

.popup.confirm-dialog .close-img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

.mobile-section {
  padding-top: 190px;
  position: relative;
  z-index: 3;
  padding-bottom: 0;
}

.mobile-section .section-wrapper {
  align-items: flex-start;
  padding-right: 0px;
}

.mobile-section .section-wrapper .left-panel {
  width: 32%;
}

.mobile-section .section-wrapper .right-panel {
  width: 65%;
  padding-top: 80px;
}

.app-download {
  display: flex;
}

.app-download img {
  width: 128px;
}

.app-download .google-play {
  margin-left: 16px;
}

.mobile-section .section-wrapper .app-download {
  justify-content: start;
}

.app-download-section .section-wrapper {
  display: block;
  text-align: center;
}

.app-download-section .app-download {
  justify-content: center;
}

.mobile-container .triangle-bottom-left .section-wrapper {
  margin-top: -150px;
}

.mobile-container .sponsor-section {
  padding-top: 100px;
  padding-bottom: 0;
}

.mobile-container .additional-section {
  padding-top: 0;
}

.features-content {
  display: none;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 70px;
  min-width: 160px;
  max-width: 1293px;
  margin-right: auto;
  margin-left: auto;
}
.features-content-wrapper {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  margin: 20px;
  max-height: 600px;
  overflow: auto;
  background: #ffffff;
}

.features:hover .features-btn {
  color: blue !important;
}

.features-content-header {
  font-weight: bold;
  font-size: 18px;
  color: #101336;
  padding-bottom: 10px;
}

.features-list {
  padding: 30px;
}
.feature-icon img {
  width: 18px;
  height: 18px;
  margin-right: 14px;
  object-fit: contain;
}

.feature-name {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  color: #073251;
}

.feature-description {
  color: #6f7086;
  font-size: 14px;
  letter-spacing: -0.015em;
}

.features-apps {
  background: #f4f8fd;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  padding: 30px;
}
.app-title {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.app-icon img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  object-fit: contain;
}
.show {
  display: block;
}

.chrome-extension-section {
  padding-top: 190px;
  position: relative;
  z-index: 3;
  padding-bottom: 0;
}

.chrome-extension-section .section-wrapper {
  align-items: flex-start;
  padding-right: 0px;
}

.chrome-extension-section .section-wrapper .left-panel {
  width: 40%;
}

.chrome-extension-section .section-wrapper .right-panel {
  width: 60%;
  padding-top: 60px;
}

.extension-email-tracking-section {
  padding-top: 100px;
  position: relative;
  z-index: 3;
  padding-bottom: 0;
}

.extension-email-tracking-section .section-wrapper {
  align-items: flex-start;
  padding-right: 0px;
}

.extension-email-tracking-section .section-wrapper .left-panel {
  width: 60%;
  padding-top: 60px;
}

.extension-email-tracking-section .section-wrapper .right-panel {
  width: 40%;
}

.extension-email-analytics-section {
  padding-top: 100px;
  position: relative;
  z-index: 3;
  padding-bottom: 0;
}

.extension-email-analytics-section .section-wrapper {
  align-items: flex-start;
  padding-right: 0px;
}

.extension-email-analytics-section .section-wrapper .left-panel {
  width: 40%;
}

.extension-email-analytics-section .section-wrapper .right-panel {
  width: 60%;
  padding-top: 60px;
}

.pricing-extension-container .header {
  position: sticky;
  z-index: 1000;
  top: 0;
}

.pricing-extension-container .header .header-contents {
  display: flex;
  align-items: center;
  max-width: 100%;
  padding-left: 50px;
  padding-right: 50px;
  border-bottom: 1px solid hsla(240, 8%, 46%, 0.2);
}

.pricing-extension-container .header .logo {
  display: block;
  float: left;
  text-decoration: none;
  height: 76px;
}

.pricing-extension-container .logo-img {
  margin-right: 0;
  margin-top: 25px;
  margin-bottom: 25px;
  width: 157px;
  height: 26px;
  object-fit: cover;
}

.pricing-extension-container .extension-pricing-section {
  padding-top: 150px;
}

.pricing-extension-container .extension-pricing-section .section-wrapper {
  display: block;
}

.pricing-extension-container .extension-pricing-section .pricing-page-description {
  margin-top: 27px;
}

.pricing-extension-container .plan-detail-section {
  padding-top: 150px;
}

.pricing-extension-container .plan-detail-section .plan-card-section {
  background: #f6f5ff;
}

.pricing-extension-container .plan-detail-section .plan-card-section .plan-card-wrapper {
  padding-bottom: 50px;
}

.pricing-extension-container .plan-detail-section .plan-card-section .plan-card-wrapper .plan-card-wrapper-container {
  display: block;
  width: 350px;
  margin: 0 auto;
  margin-top: -250px;
}

.pricing-extension-container .plan-detail-section .plan-card-section .plan-card-wrapper .plan-card-wrapper-container .select-period {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}

.pricing-extension-container .plan-detail-section .plan-card-section .plan-card-wrapper .plan-card-wrapper-container .monthly {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #6F7086;
  margin-right: 10px;
}

.pricing-extension-container .plan-detail-section .plan-card-section .plan-card-wrapper .plan-card-wrapper-container .monthly.active {
  color: #0000ff;
}

.pricing-extension-container .plan-detail-section .plan-card-section .plan-card-wrapper .plan-card-wrapper-container .yearly {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #6F7086;
  margin-left: 10px;
}

.pricing-extension-container .plan-detail-section .plan-card-section .plan-card-wrapper .plan-card-wrapper-container .yearly.active {
  color: #0000ff;
}

.pricing-extension-container .plan-detail-section .plan-card-section .plan-card-wrapper .plan-card-wrapper-container .switch-wrap {
  cursor: pointer;
  background: #FFFFFF;
  padding: 2px;
  width: 44px;
  height: 24px;
  border-radius: 24px;
  border: 1px solid #CED4DA;
  margin: 0;
}

.pricing-extension-container .plan-detail-section .plan-card-section .plan-card-wrapper .plan-card-wrapper-container .switch-wrap input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing-extension-container .plan-detail-section .plan-card-section .plan-card-wrapper .plan-card-wrapper-container .switch-wrap .switch {
  height: 100%;
  display: grid;
  grid-template-columns: 0fr 1fr 1fr;
  transition: .2s;
}

.pricing-extension-container .plan-detail-section .plan-card-section .plan-card-wrapper .plan-card-wrapper-container .switch-wrap .switch::after {
  content: '';
  border-radius: 50%;
  background: #00f;
  grid-column: 2;
  transition: background .2s;
}

.pricing-extension-container .plan-detail-section .plan-card-section .plan-card-wrapper .plan-card-wrapper-container .switch-wrap input:checked + .switch {
  grid-template-columns: 1fr 1fr 0fr;
}

.pricing-extension-container .plan-detail-section .plan-card-section .plan-card-wrapper .plan-card-wrapper-container .switch-wrap input:checked + .switch::after {
  background-color: #00f;
}

.pricing-extension-container .plan-detail-section .plan-card {
  width: 350px;
  margin: 0 auto;
  background: #FFFFFF;
  border-top: 1px solid #7F00FF;
  box-shadow: 0px 0px 20px rgba(16, 19, 54, 0.2);
}

.pricing-extension-container .plan-detail-section .plan-card .plan-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  border-bottom: 1px solid #C4C4C4;
}

.pricing-extension-container .plan-detail-section .plan-card .plan-card-header .plan-price {
  width: 120px;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #6F7086;
}

.pricing-extension-container .plan-detail-section .plan-card .plan-card-header .plan-price .price {
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  color: #9B51E0;
}

.pricing-extension-container .plan-detail-section .plan-card .plan-card-header .plan-text {
  width: 150px;
  text-align: left;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #6F7086;
}

.pricing-extension-container .plan-detail-section .plan-card .plan-card-body {
  padding: 30px 40px 40px 40px;
}

.pricing-extension-container .plan-detail-section .plan-card .plan-card-body .plan-card-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.pricing-extension-container .plan-detail-section .plan-card .plan-card-body .plan-card-detail:first-child {
  margin-top: 0;
}

.pricing-extension-container .plan-detail-section .plan-card .plan-card-body .plan-card-detail .info {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #6F7086;
}

.pricing-extension-container .plan-detail-section .plan-card .plan-card-body .plan-card-detail .count {
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  color: #6F7086;
}

.pricing-extension-container .plan-detail-section .plan-card .plan-card-body .upgrade {
  width: 100%;
  margin-top: 55px;
}

.pricing-extension-container .plan-detail-section .payment-form {
  display: none;
  width: 450px;
  text-align: left;
  margin: 0 auto;
  padding: 60px 80px;
  background: #FFFFFF;
  border-top: 1px solid #7F00FF;
  box-shadow: 0px 0px 20px rgba(16, 19, 54, 0.2);
  margin-top: -200px;
}

.pricing-extension-container .plan-detail-section .payment-form .payment-form-group {
  margin-bottom: 16px;
}

.pricing-extension-container .plan-detail-section .payment-form .payment-form-group label {
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  line-height: 19px;
  letter-spacing: -0.015em;
  color: #000000;
  margin-bottom: 4px;
}

.pricing-extension-container .plan-detail-section .payment-form .payment-form-group .card-number {
  position: relative;
  width: 100%;
  padding: 10px 12px 10px 12px;
  border: 1px solid #BFBFBF;
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: -0.015em;
  color: #6F7086;
  outline: none!important;
}

.pricing-extension-container .plan-detail-section .payment-form .payment-form-group .card-number.StripeElement--empty.StripeElement--invalid {
  border: 1px solid #fa755a;
  box-shadow: inset 0 1px 2px rgb(0 0 0 / 20%), 0 1px 0 rgb(255 255 255 / 0%), 0 0 4px 0 rgb(255 0 0 / 50%);
}

.pricing-extension-container .plan-detail-section .payment-form .payment-form-group.both {
  display: flex;
  align-items: center;
}

.pricing-extension-container .plan-detail-section .payment-form .payment-form-group .expire-date {
  width: 50%;
}

.pricing-extension-container .plan-detail-section .payment-form .payment-form-group .expire-date .expire-date-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #BFBFBF;
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: -0.015em;
  color: #6F7086;
  outline: none!important;
}

.pricing-extension-container .plan-detail-section .payment-form .payment-form-group .expire-date .expire-date-input.StripeElement--empty.StripeElement--invalid {
  border: 1px solid #fa755a;
  box-shadow: inset 0 1px 2px rgb(0 0 0 / 20%), 0 1px 0 rgb(255 255 255 / 0%), 0 0 4px 0 rgb(255 0 0 / 50%);
}

.pricing-extension-container .plan-detail-section .payment-form .payment-form-group .security-code {
  position: relative;
  width: 50%;
  margin-left: 8px;
}

.pricing-extension-container .plan-detail-section .payment-form .payment-form-group .security-code .security-code-input {
  width: 100%;
  padding: 10px 54px 10px 12px;
  border: 1px solid #BFBFBF;
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: -0.015em;
  color: #6F7086;
  outline: none!important;
}

.pricing-extension-container .plan-detail-section .payment-form .payment-form-group .security-code .security-code-input.StripeElement--empty.StripeElement--invalid {
  border: 1px solid #fa755a;
  box-shadow: inset 0 1px 2px rgb(0 0 0 / 20%), 0 1px 0 rgb(255 255 255 / 0%), 0 0 4px 0 rgb(255 0 0 / 50%);
}

.pricing-extension-container .plan-detail-section .payment-check {
  display: none;
  width: 540px;
  margin: 0 auto;
  background: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(16, 19, 54, 0.2);
  margin-top: -200px;
  padding-bottom: 60px;
}

.pricing-extension-container .plan-detail-section .payment-check img {
  width: 92px;
  height: 92px;
  margin-top: 80px;
}

.pricing-extension-container .plan-detail-section .payment-check .check-noti {
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #000000;
  margin-top: 20px;
}

.pricing-extension-container .plan-detail-section .payment-check .payment-check-button {
  display: inline-block;
  background-color: #fff;
  color: #00f;
  border-radius: 0.25rem !important;
  padding-left: 60px !important;
  padding-right: 60px !important;
  border-color: #00f !important;
  border: 1px solid blue !important;
  font-weight: 700 !important;
  font-size: 16px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  margin-top: 60px;
}

.pricing-extension-container .plan-detail-section .payment-check .payment-check-button:hover {
  color: #fff;
  background-color: #0000ff;
  text-decoration: none;
}

.pricing-extension-container .sponsor-section {
  background: #f6f5ff;
}

img.logo-icon{
  width: 246px;
  margin-bottom: 15px;
}