@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*::before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 18px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}
button ::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  text-decoration: none !important;
  color: rgb(0, 0, 0);
}
a:visited, a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  font-size: inherit;
  font-weight: 400;
  margin: 0;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*::before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 18px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}
button ::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  text-decoration: none !important;
  color: rgb(0, 0, 0);
}
a:visited, a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  font-size: inherit;
  font-weight: 400;
  margin: 0;
}

/* CSS Variables (Brand Colors from Brand Book) */
:root {
  /* Brand Colors from Brand Book */
  --white: #ffffff;
  --gobalt-background: #545CF8;
  --light-blue-background: #F0F1FE;
  --neutral-background: #fff;
  --text-color: #444444;
  --green-color: #40F693;
  --text-primary: #000;
  --neutral-lighter: #CCCCCC;
  --gobalt-color: #545CF8;
  --title-black: #1D1D1D;
  --neutral-color: #ffffff;
  --light-blue: #f0f1fe;
  --font-primary: "Archivo", sans-serif;
  --font-secondary: "Roboto", sans-serif;
}

body {
  font-family: var(--font-primary);
}

.overflow {
  overflow: hidden;
}

.header-padding-top {
  padding-top: 80px;
}

.container {
  max-width: 1488px;
  margin: 0 auto;
  padding: 0 64px;
}

.title-primary {
  padding-bottom: 24px;
  font-size: 64px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--neutral-color);
  font-family: var(--font-primary);
  z-index: 1;
  text-align: left;
}

.title-secondary {
  font-size: 40px;
  color: var(--title-black);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0px;
  font-family: var(--font-primary);
}

.description-primary {
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  color: var(--text-color);
  font-family: var(--font-primary);
  text-align: left;
  color: var(--neutral-color);
}

.button-primary {
  border-radius: 32px;
  margin: 0 auto;
  background-color: var(--green-color);
  border: 2px solid var(--green-color);
  display: inline-block;
  padding: 12px 37px;
  color: var(--text-color);
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  font-family: var(--font-primary);
}
.button-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button-primary:hover:before {
  background-color: rgba(0, 0, 0, 0.2);
}

.button-secondary {
  border-radius: 32px;
  margin: 0 auto;
  background-color: var(--neutral-background);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 12px 37px;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--text-primary);
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border: 2px solid var(--neutral-lighter);
  font-family: var(--font-secondary);
}
.button-secondary:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 32px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button-secondary:hover:before {
  background-color: rgba(0, 0, 0, 0.1);
}
.button-secondary img {
  width: 14px;
  height: 18px;
  display: inline-block;
}

.image-wrapper {
  overflow: hidden;
  aspect-ratio: 1/1;
  width: 100%;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.image-wrapper-primary {
  border-radius: 198px 198px 320px 80px;
}

.image-wrapper-secondary {
  border-radius: 198px 198px 80px 320px;
}

.label-primary {
  font-family: var(--font-secondary);
  font-size: 16px;
  color: var(--gobalt-color);
  font-weight: 600;
  line-height: 150%;
  padding: 4px 16px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: inline-block;
  background-color: var(--light-blue-background);
}

.main-row {
  padding-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bg-primary {
  background-color: var(--gobalt-background);
}

.bg-secondary {
  background-color: var(--light-blue-background);
}

.bg-tertiary {
  background-color: var(--neutral-background);
}

.blog__container {
  max-width: 1488px;
  margin: 0 auto;
  padding: 0 64px;
}

@media (max-width: 768px) {
  .image-wrapper-primary {
    border-radius: 128px 128px 198px 80px;
  }
  .image-wrapper-secondary {
    border-radius: 128px 128px 80px 198px;
  }
  .label-primary {
    font-size: 14px;
  }
  .container {
    padding: 0 16px;
  }
  .title-primary {
    font-size: 40px;
  }
  .description-primary {
    font-size: 20px;
  }
  .title-secondary {
    font-size: 24px;
  }
  .button-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .button-primary,
  .button-secondary {
    font-size: 20px;
    padding: 16px 56px;
  }
  .button-secondary {
    padding: 14px 49px;
  }
}
@media (max-width: 470px) {
  .container {
    padding: 0 16px;
  }
}
#startVideo {
  position: absolute;
  margin: auto;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  display: block;
  z-index: 4;
  background: 0 0;
  border: none;
  right: 22px;
  top: 50%;
  background-position: center;
  background-repeat: no-repeat;
}

#startVideo.off:hover {
  background-image: url(https://pickmycall.ai/wp-content/themes/roojoom-new/pickmycall/docs/images/hero-mute-off-h.svg);
}

#startVideo.on:hover {
  background-image: url(https://pickmycall.ai/wp-content/themes/roojoom-new/pickmycall/docs/images/hero-mute-on-h.svg);
}

#startVideo.off {
  background-image: url(https://pickmycall.ai/wp-content/themes/roojoom-new/pickmycall/docs/images/hero-mute-off.svg);
}

#startVideo.on {
  background-image: url(https://pickmycall.ai/wp-content/themes/roojoom-new/pickmycall/docs/images/hero-mute-on.svg);
}

.hero {
  padding: 80px 0;
}
.hero__row {
  display: -ms-grid;
  display: grid;
  gap: 80px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
.hero__video-wrapper {
  position: relative;
  padding-top: 100%;
  width: 100%;
  aspect-ratio: 1/1;
}
.hero__video {
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  pointer-events: none;
  width: 100%;
}
.hero__item {
  min-width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.hero__title {
  padding: 24px 0;
}
.hero__description {
  padding-bottom: 56px;
}
.hero__buttons {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.hero__buttons button {
  margin: 0;
}
.hero__sub-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  padding: 24px 0 12px;
  color: var(--neutral-color);
}
.hero__sub-description {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--neutral-color);
}

.hero-section-img-button-play {
  position: absolute !important;
  z-index: 5 !important;
  background: transparent !important;
  border: none !important;
  top: 50% !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  width: 140px !important;
  left: 39% !important;
  height: 140px !important;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

@media (max-width: 1200px) {
  .hero {
    padding: 40px 0;
  }
  .hero__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 72px;
  }
  .hero__item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero__title {
    padding-top: 16px;
    text-align: center;
  }
  .hero__description {
    text-align: center;
    padding-bottom: 36px;
  }
  .hero__sub-description, .hero__sub-title {
    text-align: center;
  }
  .hero-section-img-button-play {
    top: 52% !important;
    left: 43% !important;
    width: 150px !important;
    height: 150px !important;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 40px 0 47px;
  }
  .hero .container {
    padding: 0 32px;
  }
  .hero__row {
    gap: 48px;
  }
  .hero__title {
    padding: 16px 0;
  }
  .hero__sub-description {
    font-size: 20px;
  }
  .hero__sub-title {
    font-size: 24px;
  }
  .hero-section-img-button-play {
    top: 56% !important;
    left: 40% !important;
    width: 90px !important;
    height: 90px !important;
  }
}
.header__nav-link.active {
  font-weight: 700;
}

.header {
  padding: 14.5px 0;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10;
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo {
  width: 136px;
}
.header__logo img {
  width: 100%;
  height: auto;
}
.header button {
  font-size: 18px;
  padding: 12px 24px;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  gap: 24px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.header__nav-link {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  font-family: var(--font-primary);
}
.header__nav-link:hover {
  color: var(--gobalt-color);
}
.header__mobile-button {
  display: none;
}
.header__nav-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.header__nav-button a {
  display: inline-block;
}

@media (max-width: 1300px) {
  .header__nav-list {
    gap: 16px;
  }
}
@media (max-width: 1200px) {
  .header {
    padding: 26px 0;
  }
  .header__mobile-button {
    display: -ms-grid;
    display: grid;
    gap: 7px;
    padding: 0 !important;
    width: 32px;
    height: 28px;
  }
  .header__mobile-button span {
    width: 100%;
    height: 3px;
    background-color: #000000;
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .header__mobile-button.active span:first-child {
    -webkit-transform: rotate(45deg) translate(12px, 10px);
        -ms-transform: rotate(45deg) translate(12px, 10px);
            transform: rotate(45deg) translate(12px, 10px);
  }
  .header__mobile-button.active span:nth-child(2n) {
    display: none;
  }
  .header__mobile-button.active span:last-child {
    -webkit-transform: rotate(-45deg) translate(2px, -1px);
        -ms-transform: rotate(-45deg) translate(2px, -1px);
            transform: rotate(-45deg) translate(2px, -1px);
  }
  .header__nav {
    position: fixed;
    background-color: var(--light-blue-background);
    top: 80px;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    right: 0;
    z-index: 32;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .header__nav.active {
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
  }
  .header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    gap: 0;
  }
  .header__nav-item {
    min-width: 100%;
  }
  .header__nav-link {
    padding: 16px 0;
    min-width: 100%;
    display: block;
    text-align: center;
  }
  .header__nav-link:hover {
    background-color: var(--neutral-background);
    color: var(--gobalt-color);
  }
  .header__nav-button {
    display: -ms-grid;
    display: grid;
    gap: 15px;
    max-width: 400px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: 40%;
  }
  .header__nav-button button {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .header .container {
    padding: 0 32px;
  }
}
@media (max-width: 470px) {
  .header .container {
    padding: 0 16px;
  }
}
.footer {
  padding: 80px 0;
}
.footer__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 80px;
}
.footer__logo {
  width: 136px;
  height: auto;
}
.footer__grid-description {
  font-size: 18px;
  line-height: 1.5;
  font-family: var(--font-primary);
  padding-top: 24px;
  width: 70%;
}
.footer__grid-name {
  font-size: 14px;
  font-weight: 600;
  color: #666666;
  line-height: 1.5;
  display: block;
  padding-bottom: 24px;
}
.footer__grid-link {
  padding: 8px 0;
  display: block;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 18px;
  line-height: 1.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__grid-link img {
  width: 24px;
  height: 25px;
}
.footer__grid-link:hover {
  color: var(--gobalt-color);
}
.footer__newslater-text {
  font-size: 18px;
  padding: 24px 0;
  line-height: 1.5;
  color: #000000;
}
.footer__newslater-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
}
.footer__newslater-input {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #AAAAAA;
  padding: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}
.footer__newslater-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3137254902);
}
.footer__newslater-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3137254902);
}
.footer__newslater-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3137254902);
}
.footer__newslater-input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3137254902);
}
.footer__newslater-input::placeholder {
  color: rgba(0, 0, 0, 0.3137254902);
}
.footer__newslater-button {
  font-size: 16px !important;
  line-height: 1.5 !important;
  padding: 12px 24px !important;
  font-weight: 400;
}
.footer__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 32px;
  border-top: 1px solid #E3EBF8;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
.footer__header-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.footer__header-link {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__header-link:hover {
  color: var(--gobalt-color);
}

@media (max-width: 1200px) {
  .footer__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid-item:first-child {
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-column: 1;
        grid-column-start: 1;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 0;
  }
  .footer .container {
    padding: 0 16px;
  }
  .footer__grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 71px;
  }
  .footer__grid-item:first-child {
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
        grid-column-start: 1;
  }
  .footer__newslater-text {
    font-size: 16px;
  }
  .footer__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 24px;
  }
  .footer__header-links {
    gap: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__grid-link {
    padding: 6px 0;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}
.modal__wrapper {
  padding: 0 16px 16px;
  width: 90%;
  max-width: 800px;
  position: relative;
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.modal.active .modal__wrapper {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.modal__header {
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.modal__body {
  border-radius: 24px;
  overflow: hidden;
}
.modal .btn-close {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
}
.modal .btn-close::before, .modal .btn-close::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 0;
}
.modal .btn-close::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal .btn-close::after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modal .btn-close:hover {
  opacity: 0.7;
}

body.modal-open {
  overflow: hidden;
}

#cookie-notice {
  width: 100%;
  max-width: 500px;
  padding: 25px;
  position: fixed;
  z-index: 100000;
  font-size: 18px;
  line-height: 150%;
  color: #000;
}

#cookie-notice .s-cookies__info {
  display: block;
  width: 100vw;
  margin-bottom: 50px;
}

#cn-accept-cookie {
  bottom: 15px;
  position: absolute;
  border: 1px solid #000;
  border-radius: 0;
  border-radius: 32px;
  gap: 8px;
  border-width: 2px;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}

#cn-refuse-cookie {
  background-image: none;
  color: #000 !important;
  opacity: 1;
  text-decoration: none;
  position: absolute;
  bottom: 15px;
  border: 1px solid #000;
  border-radius: 0;
  padding: 6px 15px 14px 15px;
  left: 160px;
  width: auto;
  height: 48;
  border-radius: 32px;
  gap: 8px;
  border-width: 2px;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 20px;
  padding-left: 24px;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}

.accordion {
  width: 100%;
  background-color: var(--neutral-background);
  border-radius: 24px;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(73, 82, 247, 0.2862745098);
          box-shadow: 0px 4px 24px 0px rgba(73, 82, 247, 0.2862745098);
  overflow: hidden;
  padding: 40px 32px;
}
.accordion__item {
  font-family: var(--font-primary);
  width: 100%;
  background-color: var(--neutral-background);
  overflow: hidden;
  margin-bottom: 0px;
  position: relative;
}
.accordion__item::before {
  content: "";
  position: absolute;
  height: 2px;
  background-color: #E3EBF8;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
}
.accordion__item:last-child {
  margin-bottom: 0;
}
.accordion__item:last-child::before {
  display: none;
}
.accordion__item:last-child p {
  padding-bottom: 0 !important;
}
.accordion__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
.accordion__rigth__image {
  display: block;
}
.accordion .hidden {
  display: none;
}
.accordion input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.accordion .accordion-label {
  padding: 20px 32px;
  font-size: 24px;
  line-height: 1.4;
  display: inline-block;
  font-weight: 700;
  min-width: 100%;
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.accordion .accordion-label:hover {
  cursor: pointer;
}
.accordion .accordion-label img {
  width: 19px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  height: 19px;
  display: block;
}
.accordion .accordion-content {
  max-height: 0;
  padding: 0 32px;
  color: var(--text-color);
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
  font-family: var(--font-primary);
  background: white;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.accordion .accordion-content p {
  margin: 0;
  padding-bottom: 32px;
  color: inherit;
  font-size: inherit;
  list-style: inherit;
}
.accordion .accordion-content img {
  display: none;
}
.accordion input:checked + .accordion {
  padding-top: 16px;
  padding-bottom: 32px;
}
.accordion input:checked + .accordion-label {
  color: var(--gobalt-color);
  font-size: 32px;
}
.accordion input:checked + .accordion-label img {
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg);
}
.accordion input:checked + .accordion-label::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
      transform: rotate(90deg);
}
.accordion input:checked ~ .accordion-content {
  max-height: 100vh;
}

@media (max-width: 1200px) {
  .accordion__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .accordion__rigth {
    display: none;
  }
  .accordion .accordion-content img {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .accordion {
    padding: 12px 24px;
  }
  .accordion-label {
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 20px;
    font-size: 20px !important;
  }
  .accordion-content {
    padding: 0px !important;
    padding-right: 8px !important;
    font-size: 16px !important;
  }
  .accordion__item input:checked + .accordion-label {
    font-size: 22px !important;
  }
  .accordion .accordion-content p {
    padding-bottom: 24px;
  }
}
.faq {
  padding: 80px 0;
}
.faq__title {
  padding-bottom: 48px;
}

@media (max-width: 1200px) {
  .faq__title {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .faq {
    padding: 40px 0;
  }
  .faq .container {
    padding: 0 16px;
  }
  .faq__title {
    padding-bottom: 24px;
    text-align: center;
  }
}
.growth {
  padding: 80px 0;
}
.growth__title {
  padding-bottom: 40px;
}
.growth__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 33px;
}
.growth__item {
  background-color: var(--neutral-color);
  padding: 32px;
  border-radius: 40px;
  -webkit-box-shadow: 0px 2px 16px 0px rgba(73, 82, 247, 0.25);
          box-shadow: 0px 2px 16px 0px rgba(73, 82, 247, 0.25);
  border-radius: 24px;
}
.growth__item-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  padding-bottom: 12px;
  color: var(--gobalt-color);
  font-family: var(--font-primary);
  display: block;
}
.growth__item-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #3E403F;
  padding: 0;
}

@media (max-width: 1200px) {
  .growth__title {
    width: 80%;
    text-align: center;
    margin: 0 auto;
    line-height: 1.1;
  }
  .growth__row {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .growth__row > div {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .growth {
    padding: 40px 0;
  }
  .growth__title {
    font-size: 24px;
    padding-bottom: 24px;
  }
  .growth__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .growth__item-title {
    font-style: 24px;
  }
  .growth__item-description {
    font-style: 18px;
  }
}
.appointment {
  padding: 80px 0;
  text-align: center;
}
.appointment__title {
  color: var(--neutral-color);
  font-family: var(--font-primary);
}
.appointment__description {
  color: var(--light-blue);
  padding: 32px 0;
  font-size: 32px;
  font-weight: 400;
  font-family: var(--font-primary);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .appointment {
    padding: 40px 0;
  }
  .appointment__title {
    font-size: 32px;
  }
  .appointment__description {
    font-size: 16px;
  }
}
.grid__title-primary {
  padding-top: 80px;
  text-align: center;
}
.grid__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 72px;
  padding: 80px 0;
}
.grid__row:first-child {
  padding: 80px 0;
}
.grid__row .grid__item:first-child {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.grid__row .grid__item:last-child {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.grid__row:nth-child(2n) .grid__item:first-child {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.grid__row:nth-child(2n) .grid__item:last-child {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.grid__item {
  width: 50%;
  min-width: 100%;
}
.grid__img-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-width: 100%;
  padding-bottom: 100%;
}
.grid__img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 130%;
  color: var(--gobalt-color);
  padding-bottom: 24px;
  font-family: var(--font-primary);
}
.grid__description {
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  color: var(--text-color);
  font-family: var(--font-primary);
  padding-bottom: 24px;
}
.grid__ul li {
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  color: var(--text-color);
  font-family: var(--font-primary);
  padding-bottom: 12px;
  list-style: disc;
  margin-left: 30px;
}
.grid__link {
  font-weight: 700;
  font-size: 24px;
  color: var(--title-black);
  font-family: var(--font-primary);
  line-height: 150%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.grid__link:hover {
  color: var(--gobalt-color);
}

@media (max-width: 1200px) {
  .grid__title-primary {
    display: none;
  }
}
@media (max-width: 768px) {
  .grid__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0px !important;
  }
  .grid__link {
    display: block;
    text-align: center;
  }
  .grid__title {
    text-align: center;
    font-size: 32px;
  }
  .grid__description {
    font-size: 16px;
  }
  .grid__ul li {
    font-size: 16px;
    padding-bottom: 4px;
  }
  .grid__link {
    font-size: 16px;
  }
  .grid .grid__item:first-child {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .grid .grid__item:last-child {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
}
@media (max-width: 470px) {
  .grid__row {
    padding: 30px 0 !important;
  }
}
.appointment-text {
  padding: 80px 0;
  text-align: center;
}
.appointment-text__description {
  font-size: 32px;
  line-height: 1.5;
  padding-top: 24px;
}

.star {
  width: 24px;
  height: 24px;
  background-position: center center;
  background-size: cover;
  display: inline-block;
}

.star-blue {
  background-image: url(https://pickmycall.ai/wp-content/themes/roojoom-new/pickmycall/docs/images/testimonials/star_blue.svg);
}

.star-grey {
  background-image: url(https://pickmycall.ai/wp-content/themes/roojoom-new/pickmycall/docs/images/testimonials/star_grey.svg);
}

.star-half {
  background-image: url(https://pickmycall.ai/wp-content/themes/roojoom-new/pickmycall/docs/images/testimonials/star_half.svg);
}

.grid-testimonials {
  padding: 80px 0;
}
.grid-testimonials__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 48px;
}
.grid-testimonials__item {
  padding: 32px;
  border-radius: 24px;
  -webkit-box-shadow: 0px 2px 16px 0 rgba(73, 99, 246, 0.1803921569);
          box-shadow: 0px 2px 16px 0 rgba(73, 99, 246, 0.1803921569);
  background-color: var(--neutral-background);
  display: -ms-grid;
  display: grid;
  gap: 24px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
.grid-testimonials__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.grid-testimonials__img-wrapper {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  width: 30%;
}
.grid-testimonials__text-wrapper {
  display: -ms-grid;
  display: grid;
}
.grid-testimonials__text-wrapper span {
  display: block;
}
.grid-testimonials__img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
}
.grid-testimonials__job {
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  font-family: var(--font-primary);
  color: #000000;
}
.grid-testimonials__name {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.5;
  font-family: var(--font-primary);
  color: #000000;
}
.grid-testimonials__text {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
  font-family: var(--font-primary);
  color: #3E403F;
}

@media (max-width: 1200px) {
  .grid-testimonials__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 72px;
  }
}
@media (max-width: 768px) {
  .appointment-text {
    padding: 40px 0;
  }
  .appointment-text__description {
    font-size: 16px;
    padding-top: 24px;
  }
  .grid-testimonials {
    padding: 40px 0 16px;
  }
  .grid-testimonials__wrapper {
    gap: 40px;
  }
  .grid-testimonials__img-wrapper {
    width: 45%;
  }
  .grid-testimonials__name {
    font-size: 16px;
  }
  .grid-testimonials__job {
    font-size: 24px;
  }
  .grid-testimonials__text {
    font-size: 16px;
  }
}