@font-face {
  font-display: swap;
  font-family: 'Inter-Regular';
  src: url('/wp-content/themes/advice-fp/assests/fonts/Inter-Regular.ttf') format('truetype');
  font-style: normal
}

@font-face {
  font-display: swap;
  font-family: 'Inter-Bold';
  src: url('/wp-content/themes/advice-fp/assests/fonts/Inter-Bold.ttf') format('truetype');
  font-style: normal
}

@font-face {
  font-display: swap;
  font-family: 'almoni-dl-aaa-regular';
  src: url('/wp-content/themes/advice-fp/assests/fonts/almoni-dl-aaa-regular.otf') format('opentype');
  font-style: normal
}

@font-face {
  font-display: swap;
  font-family: 'almoni-dl-aaa-black';
  src: url('/wp-content/themes/advice-fp/assests/fonts/almoni-dl-aaa-black.otf') format('opentype');
  font-style: normal
}

@font-face {
  font-display: swap;
  font-family: 'almoni-dl-aaa-bold';
  src: url('/wp-content/themes/advice-fp/assests/fonts/almoni-dl-aaa-bold.otf') format('opentype');
  font-style: normal
}

@font-face {
  font-display: swap;
  font-family: 'Simpler_Pro_Regular';
  src: url('/wp-content/themes/advice-fp/assests/fonts/SimplerPro_V3.woff2') format('woff');
  font-style: normal
}

@font-face {
  font-display: swap;
  font-family: 'SimplerPro_V3_Bold';
  src: url('/wp-content/themes/advice-fp/assests/fonts/SimplerPro_V3_Bold.woff2') format('woff');
  font-style: normal
}

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

:root {
  --d: 0;
  --ani-speed: 100ms;
  --ani2-speed: 400ms
}

:root {
  --d: 0;
  --ani-speed: 100ms;
  --ani2-speed: 190ms
}

.add_animation [scale-up] {
  opacity: 0
}

.add_animation.active [scale-up] {
  opacity: 0;
  animation: scale-up var(--ani2-speed) linear forwards;
  animation-delay: calc(var(--order, 1s) * 0.8s)
}

.add_animation.active [add-fade] {
  opacity: 0;
  animation: add-fade 0.5s ease-in-out forwards
}

.add_animation.active [slide-top] {
  animation: slide-top 1.5s ease-in-out forwards
}

.add_animation.active [slide-left] {
  animation: slide-left 1s ease-in-out forwards
}

.add_animation.active [slide-right] {
  animation: slide-right 1s ease-in-out forwards
}

.add_animation.active [reveal-down] {
  opacity: 0;
  animation: reveal 1s cubic-bezier(.25, 1, .5, 1) forwards;
  animation-delay: calc(var(--order, 0) * 0.7s)
}

@keyframes reveal {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(25vh)
  }

  50% {
    opacity: 1;
    clip-path: inset(0 0 0% 0);
    transform: translateY(0vh)
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0)
  }
}

@keyframes scale-up {
  0% {
    opacity: 0;
    transform: translateY(80px)
  }

  60% {
    opacity: .5;
    transform: translateY(40px)
  }

  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeInUp {
  from {
    transform: translate3d(0, 40px, 0)
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

@keyframes add-fade {
  0% {
    -webkit-filter: blur(6px);
    filter: blur(6px);
    opacity: 0
  }

  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1
  }
}

@keyframes slide-right {
  0% {
    opacity: 0;
    transform: translatex(50px)
  }

  100% {
    opacity: 1;
    transform: translatex(0)
  }
}

@keyframes slide-left {
  0% {
    transform: translatex(-50px)
  }

  100% {
    opacity: 1;
    transform: translatex(0)
  }
}

@keyframes slide-top {
  0% {
    opacity: 0;
    transform: translateY(100px)
  }

  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

.add_animation {
  overflow: hidden
}

body {
  color: #373d48;
  font-size: 17px;
  line-height: 24px;
  overflow-x: hidden;
  position: relative;
  background: #fff;
  font-weight: 400;
  margin: 0;
  padding: 0;
  font-family: 'Inter-Regular'
}

body.menu-show {
  overflow: hidden
}

html,
body {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased
}

.cover_section .row {
  margin: 0
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
  margin-bottom: 20px
}

h1 {
  font-weight: 400;
  font-size: 55px;
  line-height: 60px;
  font-family: 'Inter-Regular'
}

h2 {
  font-size: 22px;
  line-height: 36px;
  color: #1D1D23
}

h2 span {
  color: #8B95A4
}

h3 {
  font-weight: 400;
  font-size: 24px;
  line-height: 27px;
  font-family: 'Inter-Regular'
}

h4 {
  font-size: 22px;
  line-height: 29px;
  font-weight: 500;
  font-family: 'almoni-dl-aaa-regular'
}

h5 {
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  color: #501C36;
  font-family: 'almoni-dl-aaa-regular'
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #151515
}

a:hover {
  text-decoration: none;
  outline: none;
  transition: 0.5s ease-in-out all;
  -webkit-transition: 0.5s ease-in-out all;
  -ms-transition: 0.5s ease-in-out all;
  -moz-transition: 0.5s ease-in-out all;
  -o-transition: 0.5s ease-in-out all;
  color: #000
}

p {
  font-size: 20px;
  line-height: 27px;
  color: #000;
  margin-top: 0
}

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

.container {
  max-width: 1276px;
  display: table;
  margin: 0 auto;
  clear: both;
  box-sizing: border-box;
  width: 100%;
  padding: 0 20px;
  z-index: 1
}

section {
  position: relative
}

.primary_btn {
  height: 46px;
  background: #EFFE7C;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  padding: 0 16px;
  color: #000;
  display: flex;
  min-width: 99px;
  text-align: center;
  position: relative;
  border-radius: 50px;
  border: 0;
  font-family: 'Inter-Regular';
  align-items: center
}

.primary_btn:hover {
  background: #000;
  color: #fff
}

.btn_arrow:after {
  right: -50px;
  content: '';
  background-image: url('/wp-content/themes/advice-fp/assests/images/icon-left-arrow.svg');
  position: absolute;
  width: 46px;
  height: 46px;
  background-color: #EFFE7C;
  display: inline-block;
  border-radius: 100px;
  background-position: center;
  background-repeat: no-repeat;
  transform: scaleX(-1);
  transition: 0.5s
}

.button_link {
  position: relative;
  text-decoration: underline !important;
  text-underline-offset: 5px
}

.button_link.btn_arrow:after {
  display: none
}

.button_link.btn_arrow:before {
  right: -25px;
  content: '';
  background-image: url('/wp-content/themes/advice-fp/assests/images/arrow-up-cross.svg');
  position: absolute;
  width: 12px;
  height: 15px;
  background-color: transparent;
  display: inline-block;
  top: 4px;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.5s
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 2
}

header .row {
  margin: 0
}

.header_left ul li.current-menu-item a {
  text-shadow: 0 0 #000;
  text-decoration: underline;
  text-underline-offset: 5px
}

.header_main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%
}

.header_left {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between
}

.header-right {
  display: flex;
  gap: 40px;
  align-items: center
}

.header_left ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 40px
}

.header_left .nav {
  flex-direction: row;
  width: 80%;
  justify-content: space-between;
  align-items: center
}

.header_left .logo {
  z-index: 1
}

.header_left .logo .mobile-logo {
  display: none
}

.header_left .logo img {
  width: 140px
}

.banner_section {
  background: #EFF1F4;
  padding: 100px 0;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden
}

.banner_section h1 {
  margin-bottom: 24px;
  color: #2F2F31
}

.banner_section p {
  color: #8B95A4;
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 0
}

.banner_section svg {
  position: absolute;
  height: auto;
  width: 100%;
  left: 0;
  top: 0
}

.banner_section .banner_main {
  position: relative;
  z-index: 2;
  max-width: 730px;
  margin: 0 auto;
  text-align: center;
  margin-top: 30px
}

.banner_section .primary_btn {
  background: #1D1D23;
  color: #fff;
  display: flex;
  align-items: center;
  max-width: max-content;
  margin: 55px auto 0;
  height: 48px;
  min-width: 155px;
  justify-content: center
}

.primary_btn svg {
  position: relative;
  width: auto;
  display: block !important;
  margin-left: 10px;
  top: 2px;
  left: 0;
  transform: rotate(180deg);
  transition: 0.5s
}

@-webkit-keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 985.2659912109375px;
    stroke-dasharray: 985.2659912109375px
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 985.2659912109375px
  }
}

@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 985.2659912109375px;
    stroke-dasharray: 985.2659912109375px
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 985.2659912109375px
  }
}

.banner_section .svg-elem-1 {
  -webkit-animation: animate-svg-stroke-1 1.5s cubic-bezier(.47, 0, .745, .715) 0s both;
  animation: animate-svg-stroke-1 1.5s cubic-bezier(.47, 0, .745, .715) 0s both
}

@-webkit-keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 1447.0799560546875px;
    stroke-dasharray: 1447.0799560546875px
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1447.0799560546875px
  }
}

@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 1447.0799560546875px;
    stroke-dasharray: 1447.0799560546875px
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1447.0799560546875px
  }
}

.banner_section .svg-elem-2 {
  -webkit-animation: animate-svg-stroke-2 1.5s cubic-bezier(.47, 0, .745, .715) 0.12s both;
  animation: animate-svg-stroke-2 1.5s cubic-bezier(.47, 0, .745, .715) 0.12s both
}

@-webkit-keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 1447px;
    stroke-dasharray: 1447px
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1447px
  }
}

@keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 1447px;
    stroke-dasharray: 1447px
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1447px
  }
}

.banner_section .svg-elem-3 {
  -webkit-animation: animate-svg-stroke-3 1.5s cubic-bezier(.47, 0, .745, .715) 0.24s both;
  animation: animate-svg-stroke-3 1.5s cubic-bezier(.47, 0, .745, .715) 0.24s both
}

@-webkit-keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 985.2639770507812px;
    stroke-dasharray: 985.2639770507812px
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 985.2639770507812px
  }
}

@keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 985.2639770507812px;
    stroke-dasharray: 985.2639770507812px
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 985.2639770507812px
  }
}

.banner_section .svg-elem-4 {
  -webkit-animation: animate-svg-stroke-4 1.5s cubic-bezier(.47, 0, .745, .715) 0.36s both;
  animation: animate-svg-stroke-4 1.5s cubic-bezier(.47, 0, .745, .715) 0.36s both
}

@-webkit-keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 389.5039978027344px;
    stroke-dasharray: 389.5039978027344px
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 389.5039978027344px
  }
}

@keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 389.5039978027344px;
    stroke-dasharray: 389.5039978027344px
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 389.5039978027344px
  }
}

.banner_section .svg-elem-5 {
  -webkit-animation: animate-svg-stroke-5 1.5s cubic-bezier(.47, 0, .745, .715) 0.48s both;
  animation: animate-svg-stroke-5 1.5s cubic-bezier(.47, 0, .745, .715) 0.48s both
}

@-webkit-keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 795.3807983398438px;
    stroke-dasharray: 795.3807983398438px
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 795.3807983398438px
  }
}

@keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 795.3807983398438px;
    stroke-dasharray: 795.3807983398438px
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 795.3807983398438px
  }
}

.banner_section .svg-elem-6 {
  -webkit-animation: animate-svg-stroke-6 1.5s cubic-bezier(.47, 0, .745, .715) 0.6s both;
  animation: animate-svg-stroke-6 1.5s cubic-bezier(.47, 0, .745, .715) 0.6s both
}

section {
  height: 100vh;
  scroll-snap-align: start
}

.card_section {
  padding: 0;
  display: flex;
  justify-content: center;
  flex-direction: column
}

.our_services {
  justify-content: end;
  position: relative;
  top: 0;
  padding-bottom: 0 !important
}

.card_section h2 {
  max-width: 350px;
  margin-bottom: 100px
}

.card_section .card_box .title,
.card_section .card_box p {
  display: flex
}

.card_section .card_box .title {
  font-size: 20px;
  line-height: 27px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1B1B1A;
  font-family: 'Inter-Bold'
}

.card_section .card_box {
  border: .5px solid #8B95A4;
  background-color: #fff;
  padding: 32px;
  border-radius: 20px;
  height: 100%;
  width: 100%;
  max-width: 392px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: start
}

.card_section span.icon {
  display: flex;
  margin-bottom: 50px
}

.card_section span.icon img {
  width: 29px
}

.sticky_section {
  background: #1D1D23;
  padding: 40px 0 40px;
  border-radius: 36px 36px 0 0;
  height: calc(100vh - 318px);
  position: relative;
  width: 100%;
  top: 0;
  align-items: center;
  display: flex;
}



.sticky_section .row {
  justify-content: center;
}

.header-right {
  justify-content: end
}

.header-right a.primary_btn {
  font-size: 14px;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 22px
}

.card_section .card_box p {
  margin: 0
}

html[lang="en-US"] .card_section .card_box p {
  font-size: 18px;
  line-height: 28px;
}

.sticky_section:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/wp-content/themes/advice-fp/assests/images/sticky_section_vector.svg') no-repeat left top;
  content: "";
  border-radius: 36px 36px 0 0;
  background-size: cover
}

.sticky_section .slide .card_box {
  background: #1D1D23;
  border: 1px solid #fff;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  position: relative
}

.sticky_section .slide .card_box .title,
.sticky_section .slide .card_box p {
  color: #fff
}

.cover_section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  background: #fff
}

.cta_section {
  height: 100vh;
  width: 100%;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover !important;
  background-position: center !important;
  overflow: hidden
}

.cta_section svg.desktop-svg {
  transform: scaleX(-1);
  width: 100%;
  height: 100%;
  position: absolute;
  height: 100%;
  width: 101%;
  left: -6px;
  bottom: -52px;
  top: unset
}

.cta_main {
  max-width: 424px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-right: 0;
  margin-top: -100px;
  z-index: 2;
  position: relative;
  align-items: start;
  height: 100%
}

.cta_main h2 {
  font-size: 31px;
  line-height: 45px
}

.cta_section .container {
  height: 100%
}

.cta_main h3 {
  color: #1D1D23;
  margin-bottom: 50px
}

.cta_main .primary_btn {
  max-width: max-content;
  min-width: 169px;
  margin-top: 15px;
  text-align: center;
  justify-content: center
}

.text_block {
  max-width: 472px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin-right: -15px
}

.text_block .btn_main {
  display: flex;
  gap: 10px
}

.text_block .btn_main .app-store {
  display: inline-block
}

.text_block .btn_main .app-store img {
  display: inline-block;
  max-width: 164px;
  width: 100%;
  transition: 0.5s
}

.fp-watermark {
  display: none !important
}

.taylor_section {
  padding: 32px 0;
  background: #EFFE7C;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden
}

.taylor_desc {
  padding-top: 240px;
  max-width: 550px;
  margin-right: 0;
  margin-left: auto
}

.taylor_desc h3 {
  margin-top: 50px;
  line-height: 30px
}

.work_section {
  background-color: #EFF1F4;
  background-image: url('/wp-content/themes/advice-fp/assests/images/dots-bg-two.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  padding: 20px 0;
  background-size: 99%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center
}

.work_section .box {
  width: calc(100% / 5 - 0px);
  max-width: 252px;
  height: 292px;
  margin: 0 -12px
}

.work_section .box .wrapper {
  border: .5px solid #1D1D23;
  border-radius: 20px;
  padding: 24px 32px;
  background: #EFF1F4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%
}

.work_section .box p {
  margin-bottom: 0
}

.work_section .box span {
  font-size: 48px;
  line-height: 35px;
  color: #1D1D23;
  font-family: 'almoni-dl-aaa-regular'
}

.work_section .box:nth-child(1) {
  transform: translateY(-60px)
}

.work_section .box:nth-child(2) {
  transform: translateY(78px)
}

.work_section .box:nth-child(3) {
  transform: translateY(-120px)
}

.work_section .box:nth-child(4) {
  transform: translateY(-15px)
}

.work_section .box:nth-child(5) {
  z-index: 1;
  transform: translateY(-182px)
}

.work_section .container {
  max-width: 1300px
}

.work_section h2 {
  padding-bottom: 190px;
  width: 100%;
  margin: 0 15px
}

.work_section .row {
  justify-content: center;
  width: 100%;
  margin: 0;
  flex-wrap: wrap
}

.quote_section {
  background-color: #1D1D23;
  display: flex;
  justify-content: center;
  align-items: center
}

.quote_section .container .row {
  max-width: 1100px;
  margin: 0 auto 0 0
}

.quote_section p,
.quote_section h5 {
  color: #fff;
  margin: 0
}

.quote_section .left {
  width: 35%;
  padding-bottom: 5px;
  margin-top: -110px
}

.quote_section .right {
  width: 575px;
  position: relative
}

.quote_section .row {
  justify-content: space-between;
  align-items: flex-start;
  margin: 0
}

.quote_section p {
  font-size: 24px;
  line-height: 35px;
  margin: 0;
  opacity: 1
}

.typing {
  white-space: normal;
  word-break: normal
}

.typing .word {
  display: inline-block;
  color: #808084;
  transition: color 0.4s ease
}

.typing .word.fill {
  color: #fff
}

.quote_section h5 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  font-family: 'Inter-Regular';
  padding-bottom: 15px
}

.quote_section .left:after {
  content: '';
  position: absolute;
  width: 0%;
  bottom: 0;
  height: .5px;
  background: #fff;
  left: 0%;
  transition: 1s;
  max-width: 300px
}

.quote_section.active .left:after {
  width: 100%
}

.contact_section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 445px);
  max-height: 652px;
  border-bottom: 1px solid #ebedef;
  background-color: #fff;
  overflow: hidden
}

.contact_section .text-wrapper {
  max-width: 236px;
  padding-top: 85px
}

.contact_section .text-wrapper p {
  padding-bottom: 22px
}

.contact_section svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 552px;
  max-height: 419px
}

footer nav ul li a {
  font-size: 14px;
  line-height: 24px;
  display: block;
  color: #1A1A1B;
  margin-bottom: 8px;
  font-weight: 100;
  letter-spacing: .6px
}

footer nav ul li a:hover {
  text-decoration: underline;
  text-underline-offset: 5px
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0
}

footer .address {
  max-width: 175px
}

footer {
  padding: 70px 0 70px 0;
  position: relative;
  background: #fff
}

footer .row {
  justify-content: space-between;
  max-width: 400px;
  justify-content: space-between;
  margin: 0
}

footer b {
  font-size: 14px;
  line-height: 24px;
  color: #1A1A1B;
  padding-bottom: 15px;
  display: block
}

footer .address p {
  font-size: 14px;
  line-height: 24px
}

footer .address p span {
  direction: ltr !important;
  unicode-bidi: bidi-override;
  padding-right: 3px;
}

.contact_section.active svg path {
  animation: animate-svg-stroke-6 1.5s cubic-bezier(.47, 0, .745, .715) 0.6s both
}

.card_desc {
  display: block;
  height: auto
}

.our_services h2 {
  margin-bottom: 55px
}

.cover_section .title_box:before {
  content: '';
  position: relative;
  width: 26px;
  height: 26px;
  background-image: url('/wp-content/themes/advice-fp/assests/images/icon-ring-black.svg');
  left: 0;
  top: 5px;
  margin-right: 40px;
  display: inline-block;
  background-size: cover
}

.cover_section .title_box h2,
.cover_section .title_box p {
  margin-bottom: 30px
}

.cover_section .image_block {
  display: flex;
  align-items: end;
  width: 603px
}

.cover_section .image_block .barchart-image {
  margin-left: -82px;
  margin-bottom: 47px;
  z-index: 1
}

.cover_section .image_block .barchart-image svg {
  width: 100%;
  height: 100%
}

.cover_section .title_box p {
  font-family: 'Inter-Regular'
}

.taylor_desc .button_link {
  margin-left: auto;
  margin-right: 30px;
  display: table;
  font-size: 20px
}

.taylor_section svg {
  position: absolute;
  width: 100%;
  right: -65px;
  bottom: -115px;
  height: 100%;
  max-width: 1270px;
  max-height: 875px
}

.cover_section .title_box .text_desc {
  padding-left: 55px;
  margin-left: -55px;
  width: calc(100% - 60px)
}

.cover_section .text_block .title_box {
  display: flex;
  flex-wrap: wrap
}

.primary_btn:hover {
  background: #1D1D23
}

.primary_btn:hover svg {
  left: 5px
}

.button_link.btn_arrow:hover:before {
  transform-origin: top;
  transform: translate(8px, -3px)
}

.taylor_section .title_top h2 {
  margin-bottom: 10px;
  width: 100%;
  display: block
}

.primary_btn.btn_arrow:hover {
  background: #EFFE7C;
  color: #1D1D23
}

.primary_btn.btn_arrow:hover::after {
  transform: scaleX(-1) translateX(-10px)
}

.header_left ul li a:hover {
  text-shadow: 0 0 #000;
  text-decoration: underline;
  text-underline-offset: 5px
}

.active .typing span.white {
  color: #fff
}

.taylor_section svg .svg-elem-1 {
  stroke-dashoffset: 1372.71923828125px;
  stroke-dasharray: 1372.71923828125px;
  stroke: #1D1D23;
  stroke-opacity: 1
}

.taylor_section.active svg .svg-elem-1 {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 2s cubic-bezier(.47, 0, .745, .715) 0s
}

.section {
  padding: 60px 0
}

.active .fade-up {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both
}

.fade-up {
  opacity: 0
}

#fullpage {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  height: 100vh;
  overflow-y: auto
}

.burger-btn {
  display: none
}

body.header-white .header_left ul li a {
  color: #fff
}

body.header-white .header-right a.language {
  color: #fff
}

body.header-white .header_left .logo img {
  filter: brightness(0) invert(1)
}

svg.mobile-svg {
  display: none
}

.all_services_section {
  height: auto
}

.all_services_section .heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: start;
  position: sticky;
  top: 88px;
  background: #fff;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 15px
}

.all_services_section .heading:before {
  content: '';
  position: absolute;
  width: 110%;
  height: 100%;
  background: #fff;
  left: -5%;
  top: 0;
  z-index: -1
}

.all_services_section .row {
  margin: 0
}

.all_services_section h2 {
  width: 30%
}

.all_services_section p {
  width: 35%;
  color: #1B1B1A;
  opacity: .7;
  font-size: 15px;
  line-height: 24px
}

.all_services_section a.primary_btn.btn_arrow {
  width: auto;
  border: 1px solid #1B1B1A;
  background-color: transparent;
  height: 46px;
  margin-right: 55px;
  margin-left: auto;
  justify-content: center
}

.all_services_section .all-services_wrapper {
  padding-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding-bottom: 80px;
  padding-top: 145px
}

.all_services_section .all-services_wrapper .sticky-stack {
  width: 30%
}

.all_services_section .all-services_wrapper .sticky-stack ul::-webkit-scrollbar {
  display: none
}

.all_services_section .all-services_wrapper .sticky-stack ul li {
  font-size: 19px;
  line-height: 29px;
  margin-bottom: 15px;
  color: #1D1D23;
  opacity: .4;
  cursor: pointer;
  transition: 0.5s
}

.all_services_section .all-services_wrapper .sticky-stack ul li:hover {
  opacity: 1
}

.all_services_section .all-services_wrapper .sticky-stack ul {
  padding: 0;
  margin: 0;
  list-style: none;
  top: 400px;
  position: sticky;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth
}

.all_services_section .servcies {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid #1d1d2312;
  margin-bottom: 15px
}

.all_services_section .servcies:last-child {
  border: 0
}

.all_services_section .all-services_wrapper .servcies_wrapper {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  width: 70%
}

.all_services_section .servcies .box {
  padding: 32px;
  border: 1px solid #E4E4E4;
  border-radius: 16px;
  position: relative;
  width: calc(50% - 16px)
}

.all_services_section .servcies .box img {
  width: 24px;
  margin-right: 15px;
  position: absolute;
  left: 33px;
  top: 33px
}

.all_services_section .servcies .box b {
  font-size: 16px;
  line-height: 24px;
  font-family: 'Inter-Bold';
  color: #000;
  padding-left: 45px;
  width: calc(100% - 0px);
  display: inline-block
}

.all_services_section .servcies .box p {
  font-size: 16px;
  line-height: 24px;
  padding-top: 20px;
  margin-bottom: 0;
  width: 100%;
  opacity: 1;
  display: block
}

.all_services_section .servcies .box:nth-child(1) {
  width: calc(40% - 16px)
}

.all_services_section .servcies .box:nth-child(2) {
  width: calc(60% - 16px)
}

.all_services_section .servcies .box:nth-child(3) {
  width: calc(55% - 16px)
}

.all_services_section .servcies .box:nth-child(4) {
  width: calc(45% - 16px)
}

.all_services_section a.primary_btn.btn_arrow::after {
  background-color: transparent;
  border: 1px solid #1B1B1A;
  right: -52px;
  width: 46px;
  height: 46px
}

.all_services_section .all-services_wrapper .sticky-stack ul li.active {
  font-size: 22px;
  line-height: 34px;
  opacity: 1
}

header.fixed-header {
  background-color: #fff
}

#risk-management.servcies .box:nth-child(1) {
  width: calc(35% - 16px)
}

#risk-management.servcies .box:nth-child(2) {
  width: calc(65% - 16px)
}

#risk-management.servcies .box:nth-child(3) {
  width: calc(39% - 16px)
}

#risk-management.servcies .box:nth-child(4) {
  width: calc(61% - 16px)
}

#risk-management.servcies .box:nth-child(5) {
  width: calc(55% - 16px)
}

#risk-management.servcies .box:nth-child(6) {
  width: calc(45% - 16px)
}

.bg_black {
  background-color: #1D1D23
}

.cta_section.bg_black svg.desktop-svg {
  transform: scaleX(1)
}

.bg_black h2 {
  color: #fff
}

.bg_black .button_link.btn_arrow {
  color: #fff
}

.bg_black .button_link.btn_arrow:before {
  filter: brightness(0) invert(1)
}

.cta_section.bg_black .cta_main {
  max-width: 700px;
  margin: -65px 0;
  height: 100%;
  justify-content: center
}

.cta_section.bg_black .cta_main h2 {
  padding-bottom: 100px;
  width: 100%
}

.cta_section.bg_black .container {
  height: 100%
}

.active .chart {
  animation-name: chart-1, chart-2, chart-3, chart-4;
  animation-duration: calc(var(--duration) * 1s);
  animation-timing-function: ease-in-out;
  animation-delay: 0ms, calc(var(--duration) * 1s), calc(var(--duration) * 2s);
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards
}

.chart-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0
}

.chart-wrapper img {
  width: 100%;
  transform: scale(2);
  z-index: 1
}

.cover_section .progress-image {
  position: relative
}

.banner-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 200px;
  height: auto;
  padding-bottom: 100px;
  align-items: start
}

.banner-heading h2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: start
}

.banner-heading p {
  width: 35%;
  color: rgb(27 27 26 / 70%);
  font-size: 15px;
  line-height: 24px
}

.about-section {
  height: auto;
  position: relative
}

.about-section .row {
  margin: 0
}

.about-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: top;
  background-image: url('/wp-content/themes/advice-fp/assests/images/dots-bg.svg');
  background-size: contain;
  max-height: 557px;
  z-index: -1
}

.about-section .banner-heading h2 {
  max-width: 290px;
  padding-left: 25px
}

.our-team-section {
  height: auto
}

.our-team-section h2 {
  opacity: .6;
  padding-bottom: 40px
}

.our-team-section .box {
  width: calc(100% / 4);
  height: 0;
  padding-bottom: 0;
  padding: 0 20px;
  
}

.our-team-section .box img {
  max-height: 224px;
  width: 100%;
  height: 100vh;
  aspect-ratio: 1/1;
  border-radius: 10px;
  background: #f4f4f4;
  max-width: 194px;
  object-fit: cover;
  filter: grayscale(100%);
  object-fit: cover;
  object-position: top
}

.our-team-section .box span {
  font-size: 15px;
  line-height: 24px;
  color: #1D1D23;
  font-family: 'Inter-Bold';
  border: 1px solid #1D1D23;
  border-radius: 100px;
  padding: 2px 10px;
  margin-top: 30px;
  display: table;
  margin-bottom: 8px
}

.our-team-section .box p {
  color: #1B1B1A;
  opacity: .7;
  font-size: 15px;
  line-height: 24px
}

.our-team-section .row {
   flex-wrap: wrap;
  overflow: hidden;
  margin: 0 -20px;
}

.about-section .container {
  max-width: 1031px
}

.our-team-section .container {
  max-width: 1031px;
  position: relative
}

.about-section .banner-heading p {
  width: 50%
}

.our-team-section .view-all {
  position: absolute;
  top: 465px;
  left: 15px;
  min-width: 100px;
  display: flex;
  justify-content: flex-start;
  align-items: center
}

.our-team-section .view-all.active:hover::after {
  margin-left: 15px;
  right: 0
}

.our-team-section .view-all.active::after {
  transform: rotate(90deg);
  position: relative;
  top: 2px
}

.our-team-section .box:nth-child(1),
.our-team-section .box:nth-child(2),
.our-team-section .box:nth-child(3),
.our-team-section .box:nth-child(4) {
  display: block;
  opacity: 1;
  transform: translateY(0);
  height: auto;
  padding-bottom: 80px !important
}

.subsidiaries-section {
  height: auto;
  padding: 100px 0;
  overflow: hidden
}

.partners-section {
  height: auto;
  background-color: rgb(239 241 244 / 50%);
  padding: 130px 0;
  overflow: hidden;
  background-position: center;
  background-image: url('/wp-content/themes/advice-fp/assests/images/dots-bg.svg');
  background-size: cover
}

.subsidiaries-section .row {
  justify-content: center;
  flex-direction: row;
  align-items: center
}

.subsidiaries-section .row a {
  margin: 0 25px;
  width: calc(100% / 3);
  max-width: 140px
}

.partners-section .slider {
  justify-content: space-between;
  align-items: center;
  display: flex
}

.partners-section .slider a {
  max-width: 150px;
  display: inline-block;
  margin: 0 40px;
  width: auto
}

.subsidiaries-section h2,
.partners-section h2 {
  text-align: center;
  padding-bottom: 100px;
  color: #1D1D23;
  opacity: .6;
  margin: 0
}

.our-team-section .view-all:after {
  content: '';
  position: relative;
  right: 0;
  background-image: url('/wp-content/themes/advice-fp/assests/images/icon-arrow-right.svg');
  top: 0;
  width: 8px;
  height: 12px;
  display: inline-block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: 10px;
  transition: 0.5s
}

.our-team-section .view-all:hover::after {
  margin-left: 15px;
  right: 0
}

.our-team-section .view-all.active:hover::after {
  margin-left: 10px;
  right: 0
}

.our-team-section .box.show {
  opacity: 1;
  height: 100%;
  padding-bottom: 40px
}

.partners-section .slider a img {
  width: 100%
}

.partners-section .slider.mobile {
  display: none
}

.sticky-stack.no-snap {
  position: relative
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 200px;
  height: auto;
  padding-bottom: 100px;
  align-items: start
}

.contact-section .container {
  max-width: 1178px
}

.contact-section .text-wrapper {
  width: 50%
}

.contact-section .form-wrapper {
  width: 50%;
  background: #EFF1F4;
  border-radius: 20px;
  padding: 80px 72px;
  max-width: 560px;
  margin-left: 0;
  margin-right: auto
}

.contact-section .form-wrapper form {
  max-width: 396px;
  margin: 0 auto
}

.contact-section .form-wrapper form .form-group {
  margin-bottom: 60px
}

.contact-section .form-wrapper form input,
.contact-section .form-wrapper form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
  font-size: 20px;
  line-height: 24px;
  font-family: 'Inter-Regular';
  color: #000;
  padding: 0 0 16px;
  width: 100%
}

.contact-section .form-wrapper form input::-webkit-input-placeholder {
  color: rgba(29, 29, 35, .6)
}

.contact-section .form-wrapper form input::-moz-placeholder {
  color: rgba(29, 29, 35, .6)
}

.contact-section .form-wrapper form input:-ms-input-placeholder {
  color: rgba(29, 29, 35, .6)
}

.contact-section .form-wrapper form input:-moz-placeholder {
  color: rgba(29, 29, 35, .6)
}

.form-wrapper form textarea::-webkit-input-placeholder {
  color: rgba(29, 29, 35, .6)
}

textarea {
  height: 132px;
  resize: none
}

.contact-section .form-wrapper form input:focus {
  outline: none;
  box-shadow: none
}

.custom-select {
  width: 100%;
  position: relative;
  font-family: Arial;
  direction: rtl;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0 0 16px
}

.select-selected.has-value {
  color: #000 !important
}

.select-selected {
  border: transparent;
  padding: 8px 0 16px;
  cursor: pointer;
  position: relative;
  width: 100%;
  font-size: 20px;
  line-height: 24px;
  font-family: 'Inter-Regular';
  border-bottom: 1px solid #000 !important;
  padding-right: 25px;
  color: rgba(29, 29, 35, .6) !important
}

.select-selected:before {
  position: absolute;
  background: url('/wp-content/themes/advice-fp/assests/images/select_drop.svg') no-repeat left center;
  content: "";
  right: 0;
  width: 11px;
  height: 10px;
  top: 11px;
  transition: 0.3s;
  background-size: auto
}

.select-items li.selected:hover {
  background-color: transparent
}

.custom-select .select-items {
  border-radius: 20px;
  border: 1px solid #E4E4E4;
  background: #EFF1F4;
  width: 100%;
  position: relative;
  z-index: 9;
  padding: 24px 24px 24px 18px;
  display: none;
  overflow-y: auto;
  max-height: 250px;
  margin: 0;
  direction: ltr
}

.custom-select .select-items::-webkit-scrollbar {
  width: 5px
}

.custom-select .select-items::-webkit-scrollbar-thumb {
  background-color: #BBB;
  outline: 0
}

.custom-select.show .select-items {
  display: block
}

.custom-select.show .select-selected {
  border-bottom: 0 !important
}

.custom-select.show .select-selected:before {
  transform: rotate(180deg)
}

.select-items li {
  list-style: none;
  position: relative
}

.select-items li p {
  padding: 14px 16px;
  cursor: pointer;
  font-size: 20px;
  line-height: 24px;
  font-family: 'Inter-Regular';
  color: #000;
  margin-left: 10px
}

.select-items li:hover {
  border-radius: 8px;
  background: #DEE2E9
}

.select-items li:last-child {
  padding-bottom: 0
}

.select-items li.selected::after {
  content: "";
  position: absolute;
  color: #007bff;
  left: -5px;
  background: url('/wp-content/themes/advice-fp/assests/images/confrim_arrow.svg') no-repeat center center;
  width: 20px;
  height: 20px;
  top: 13px
}

.contact-section .form-btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 70px;
  margin-left: 10px
}

.contact-section .form-btn .primary_btn {
  background: #000;
  color: #fff;
  min-width: auto;
  padding: 0 25px;
  height: 46px;
  cursor: pointer;
  border-radius: 100px
}

.contact-section .form-btn .primary_btn:hover:after {
  transform: scaleX(-1) translateX(-5px)
}

.contact-section .row {
  align-items: stretch;
  height: 100%
}

.contact-section .text-wrapper h2 {
  max-width: 330px;
  position: relative;
  padding-left: 58px
}

.contact-section .text-wrapper h2:before {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  background-image: url('/wp-content/themes/advice-fp/assests/images/shape-grow.svg');
  display: inline-block;
  left: 0;
  top: 10px;
  background-repeat: no-repeat;
  background-size: cover
}

.contact-section .cta_section {
  display: none
}

.contact-section .form-btn p {
  position: relative
}

.contact-section .form-btn p::after {
  background: #000;
  background-repeat: no-repeat;
  background-position: center;
  right: -50px;
  content: '';
  background-image: url('/wp-content/themes/advice-fp/assests/images/white_arrow.svg');
  position: absolute;
  width: 46px;
  height: 46px;
  display: inline-block;
  border-radius: 100px;
  transform: scaleX(-1);
  transition: 0.5s;
  top: 0
}

.contact-section .form-btn p:hover:after {
  transform: scaleX(-1) translateX(-5px)
}

.contact-section .form-btn .wpcf7-spinner {
  position: absolute;
  left: -35px;
  top: 12px;
  margin: 0 auto
}

:root {
  color-scheme: light dark;
  --bg-dark: rgb(16, 24, 40);
  --bg-light: rgb(255 255 255);
  --bg-clr: light-dark(var(--bg-light), var(--bg-dark))
}

.cover_section .progress-image .chart {
  --percent-1: 0%;
  --percent-2: 0%;
  --percent-3: 0%;
  --percent-4: 0%;
  --target-1: 0%;
  --target-2: 0%;
  --target-3: 0%;
  --target-4: 0%;
  width: 270px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: grid;
  place-content: center;
  position: relative;
  margin: 0 auto;
  background: radial-gradient(1q, var(--bg-clr) 120px, #0000), conic-gradient(#E4E4E4 0% var(--percent-1), #effe7c var(--percent-1) calc(var(--percent-1) + var(--percent-2)), #A5A5A7 calc(var(--percent-1) + var(--percent-2)) calc(var(--percent-1) + var(--percent-2) + var(--percent-3)), #EFF1F4 0) !important;
  transition: background 0.2s linear;
  height: 270px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(.5);
  top: 50%
}

.cover_section .progress-image .chart:after {
  width: 242px;
  background-color: #fff;
  height: 242px;
  display: block;
  position: static;
  top: 50%;
  left: 50%;
  content: '';
  border-radius: 100%;
  position: absolute;
  transform: translate(-50%, -50%)
}

.mobile_view {
  display: none
}

.contact_section a.button_link {
  font-size: 20px;
  font-family: 'Inter-Regular' !important;
  color: #1D1D23
}

.common-section br {
  display: none
}

.common-section {
  padding: 170px 0
}

.common-section ol>li>p:empty {
  display: none
}

.common-section strong {
  display: block;
  width: 100%;
  font-family: 'almoni-dl-aaa-bold';
  font-weight: 400;
  color: #1D1D23;
  padding-bottom: 12px !important;
}

.common-section .row {
  flex-wrap: wrap
}

.common-section p {
  font-size: 16px;
  line-height: 24px;
  color: #1B1B1A;
  font-family: 'almoni-dl-aaa-regular';
  opacity: .9;
  padding-bottom: 4px
}

.common-section ol {
  list-style-type: none;
  counter-reset: item;
  padding-top: 20px;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0
}

.common-section ol>li {
  display: table;
  counter-increment: item;
  padding-bottom: 20px;
  font-family: 'Inter-Bold'
}

.common-section ol>li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-left: 12px
}

.common-section li ol>li {
  margin: 0;
  font-family: 'Inter-Regular';
  opacity: .95;
  color: #1B1B1A;
  padding-bottom: 25px
}

.common-section li ol>li:before {
  content: counters(item, ".") " "
}

.common-section ol li ol {
  padding-right: 0
}

.common-section ol li ol li:last-child {
  padding-bottom: 0
}

.common-section .container {
  max-width: 855px
}

.common-section ol>li>p {
  padding-top: 30px;
  margin-bottom: 0;
  padding-bottom: 0 !important
}

.common-section .privacy_polic li ol>li>a {
  text-decoration: underline;
  text-underline-offset: 5px;
  display: block;
  margin-bottom: 10px;
}

.common-section ol ul {
  padding-right: 0;
  padding-top: 15px;
  margin-right: 0
}

.common-section ol ul>li:before {
  content: counters(numbers, ".") " "
}

.common-section ol ul>li:before {
  content: "(" counter(numbers)")";
  display: table-cell;
  padding-left: 12px
}

.common-section ol ul>li {
  display: table;
  counter-increment: numbers;
  list-style-type: none;
  padding-bottom: 15px
}

.common-section ol li ol>li>p {
  padding-top: 0
}

.common-section .table-container {
  width: 100%;
  overflow-x: auto
}

.common-section table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 55px;
  margin-bottom: 55px;
  direction: ltr
}

.common-section table thead th {
  padding: 0 35px 35px 35px;
  text-align: left;
  border-bottom: 2px solid #000;
  font-size: 16px;
  line-height: 24px;
  font-family: 'Inter-Regular';
  font-weight: 400;
  color: #000
}

.common-section table tbody td {
  padding: 35px 35px 20px 35px;
  border-bottom: 1px solid #000;
  vertical-align: top;
  font-size: 16px;
  line-height: 24px;
  font-family: 'Inter-Regular';
  color: #000;
  max-width: 400px
}

.common-section table tbody td:first-child,
.common-section table thead th:first-child {
  padding-left: 0
}

.common-section table tbody td:last-child {
  padding-right: 0
}

.common-section table th:nth-child(1),
.common-section table td:nth-child(1) {
  width: 100px
}

.common-section table th:nth-child(2),
.common-section table td:nth-child(2) {
  width: 280px;
  padding-right: 55px
}

.common-section table th:nth-child(3),
.common-section table td:nth-child(3) {
  width: 183px
}

.common-section table th:nth-child(4),
.common-section table td:nth-child(4) {
  width: 150px
}

#typingText .word:nth-child(4) {
  display: inline
}

#typingText .word:nth-child(4)::after {
  content: "";
  display: block;
  padding-bottom: 15px
}

.cta_section.active #maskRect {
  animation: reveal-svg 3s forwards ease
}

.footer-circle {
  position: absolute;
  bottom: 150px;
  left: 0;
  width: 100;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 552px;
  max-height: 419px;
  display: none
}

.footer-circle svg {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition-delay: 0s
}

.footer-circle svg circle.svg-elem-1 {
  stroke: rgb(139, 149, 164)
}

.footer-circle.active svg {
  opacity: 1
}

.footer-circle .svg-elem-1 {
  stroke-dashoffset: 795.3825073242188px;
  stroke-dasharray: 795.3825073242188px;
  -webkit-transition: stroke-dashoffset 1.5s cubic-bezier(.47, 0, .745, .715) 0s;
  transition: stroke-dashoffset 1.5s cubic-bezier(.47, 0, .745, .715) 0s
}

.footer-circle.active .svg-elem-1 {
  stroke-dashoffset: 1590.7650146484375px;
  transition-delay: 1.7s
}

.quote_section .row {
  margin: 0
}

.contact_section .row {
  margin: 0
}

.chart-counter {
  font-size: 32px;
  display: block;
  z-index: 4;
  font-family: 'SimplerPro_V3_Bold'
}

.simpler_pro {
  color: #1D1D23;
  font-family: 'Simpler_Pro_Regular'
}

.cookie-bar {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  background: #1D1D23;
  bottom: 0;
  z-index: 32;
  height: auto;
  padding: 41px 15px;
  display: none;
}

.cookie-bar .text p {
  font-size: 20px;
  line-height: 27px;
  font-family: 'almoni-dl-aaa-regular';
  color: #fff;
  margin: 0
}

.cookie-bar .buttons {
  width: 20%;
  text-align: right
}

.cookie-bar .buttons a {
  color: #fff;
  font-size: 20px;
  line-height: 27px;
  text-decoration: underline;
  text-underline-offset: 5px;
  margin: 0 10px
}

.cookie-bar .container {
  padding: 0
}

.cookie-bar .buttons .btn-white {
  border-radius: 30.504px;
  background: #FFF;
  color: #000;
  padding: 11px 15px;
  min-width: 122px;
  display: inline-block;
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  margin: 0 10px;
  text-decoration: none
}

.cookie-bar .text {
  width: 80%
}

.cookie-bar .row {
  flex-direction: row-reverse;
  align-items: center
}

.cookie-bar .text p a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px
}

.header-right a.primary_btn.mobile-btn {
  display: none
}

.cover_section .progress-image img {
  max-width: 351px
}

.header-right .language.mobile-text {
  display: none
}

@keyframes reveal-svg {
  to {
    width: 600px
  }
}

.wpcf7-not-valid-tip,
.select-field-error {
  font-size: 13.5px !important;
  margin-top: 10px;
  direction: inherit !important;
  color: #dc3232 !important;
  line-height: 18px !important
}

.select-field-error {
  display: none
}

.wpcf7-form-control {
  direction: inherit !important
}

.form-group p {
  margin-bottom: 0 !important
}

.wpcf7-form .form-group .custom-select .select-selected p {
  color: #1d1d2399 !important
}

.wpcf7-form .form-group .custom-select .select-selected.has-value p {
  color: #1d1d2399 !important
}

.cta_section.bg_black .cta_main .mobile-text {
  display: none
}

.not-found-main-wrapper {
  padding: 130px 0;
  display: flex;
  align-items: center;
  text-align: center
}

.not-found-main-wrapper a.btn.btn-primary {
  background: #EFFE7C;
  padding: 5px 30px;
  color: #000;
  border: 0;
  font-size: 14px;
  line-height: normal;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 22px;
  display: flex;
  max-width: max-content;
  margin: 40px auto 0;
  border-radius: 50px
}

.not-found-main-wrapper a.btn.btn-primary:hover {
  background: #000;
  color: #fff
}

/* html[lang="en-US"] .sticky_section {
   height:auto;
} */
footer .socials {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
footer .socials img {
  width: 100%;
  height: 30px;
  object-fit: contain;
}
footer .copyright{
  text-align: center;
  margin-top: 50px;
}
footer .copyright p{
  font-size: 14px !important;
  line-height: 24px !important;
  color: #000 !important;
  letter-spacing: 0.6px !important;
}
footer .copyright p a{
  color: #000 !important;
}
footer{
  padding: 70px 0;
}

form.wpcf7-form.sent .form-btn {
    display: none !important;
}

.form-sucesss-wrapper {
    display: none;
}

.wpcf7 form.sent .form-sucesss-wrapper p{
    border-color: transparent !important;
    font-size: 19px;
    font-weight: 400;
    line-height: 27px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.wpcf7 form.sent .form-sucesss-wrapper{
  display: block;
}

.wpcf7 form.sent .wpcf7-response-output {
    display: none;
}

.form-sucesss-wrapper img.fomr-sucess-img {
    transform: translateX(0);
    transition: 0.5s;
    cursor: pointer;
    display: none;
}

html[lang="en-US"] .form-sucesss-wrapper img.fomr-sucess-img:hover {
    transform: translateX(10px);
}

.wpcf7-form.sent .form-sucesss-wrapper img.fomr-sucess-img {
    display: block;
}

.form-sucesss-wrapper img.fomr-sucess-img:hover{
  transform: translateX(-10px);
}

.common-section .row p:first-child {
    margin-bottom: 0;
    display:block;
    width: 100%;
}

.common-section .row p:first-child strong {
    padding-bottom: 0 !important;
}

.term_condition {
    margin-top: 12px;
}

.term_condition ol{
  padding-top: 0;
}

.term_condition ol>li{
  margin-bottom: 32px;
  padding-bottom: 0;
}

.term_condition ol li>ol{
  margin-top: 12px;
}

.term_condition ol>li>p {
    padding-top: 0;
}

.term_condition ol>li span {
    font-family: 'almoni-dl-aaa-regular';
}

.term_condition ol>li a{
  text-decoration: none !important;
}

html[lang="en-US"] .common-section span {
    font-family: 'Inter-regular';
}

html[lang="en-US"] .common-section ol>li{
  padding-bottom: 20px;
  color: #000;
}

.accessibility-content ul {
    margin: 0;
    padding: 0 20px 0 0;
}

.accessibility-content p, .accessibility-content h3, .accessibility-content h5 {
    color: #000;
}

.accessibility-content h5{
  margin-bottom: 0;
}

.accessibility-content br{
  display: inline;
}


@media screen and (min-width: 1921px) {
 .sticky_section {
    height: 65%;
  }
}

@media screen and (max-width: 1745px) {
  html[lang="en-US"] .card_section .card_box p {
    font-size: 16px;
    line-height: 23px
  }

  html[lang="en-US"] .sticky_section {
    padding: 50px 0 50px
  }
}

@media screen and (max-width: 1512px) {
  h1 {
    font-size: 45px;
    line-height: 55px
  }

  .card_section .card_box p {
    font-size: 16px;
    line-height: 23px
  }

  .cta_main h2 {
    font-size: 24px;
    line-height: 30px
  }

  .cta_main {
    max-width: 370px
  }

  .cta_section .container {
    max-width: 80%
  }

  .work_section .box span {
    font-size: 35px;
    line-height: 45px
  }

  .banner_section p {
    font-size: 18px;
    line-height: 25px
  }

  .card_section .card_box .title {
    font-size: 18px;
    line-height: 24px
  }

  .primary_btn {
    font-size: 16px;
    line-height: 25px
  }

  .quote_section p {
    font-size: 20px;
    line-height: 29px
  }

  .quote_section h5 {
    font-size: 18px;
    line-height: 25px
  }

  h3 {
    font-size: 20px;
    line-height: 24px
  }

  .cta_section.bg_black .cta_main {
    margin: -45px 0 0 0;
    padding-right: 25px
  }

  .cta_section.bg_black .cta_main h2 {
    padding-bottom: 80px
  }
}

@media screen and (max-height: 750px) and (orientation:landscape) {
  .banner_section .banner_main {
    max-width: 630px
  }

  .card_section .card_box p {
    font-size: 16px;
    line-height: 23px
  }

  html[lang="en-US"] .banner_section .banner_main {
    max-width: 650px
  }

  .banner_section .primary_btn {
    margin-top: 35px
  }

  .card_section h2 {
    max-width: 435px;
    margin-bottom: 35px
  }

  .card_section .card_box .title {
    margin-bottom: 15px
  }

  .card_section span.icon {
    margin-bottom: 54px
  }
  

  .sticky_section {
    padding: 50px 0 45px 0;
    max-height: 453px;
    top: 0;
    height: 71%
  }

  .card_section span.icon {
    margin-bottom: 30px
  }

  .sticky_section .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
  }

  .sticky_section .cards.row {
    max-height: 289px
  }

  .card_section .card_box {
    padding: 25px
  }

  .card_section {
    padding-bottom: 30px
  }

  .our_services {
    padding-bottom: 0
  }

  .cta_main {
    margin-left: 20px;
    margin-top: -53px
  }

  .cta_main h2 {
    margin-bottom: 0
  }

  .taylor_section svg {
    right: -205px
  }

  .work_section h2 {
    padding-bottom: 150px
  }

  .quote_section .left {
    margin-top: -50px
  }

  .cover_section .text_block {
    padding-top: 100px
  }

  .taylor_desc {
    padding-top: 0;
    max-width: 450px
  }

  .work_section .box {
    height: 245px
  }

  footer {
    padding-bottom: 30px;
    padding-top: 30px;
    overflow: hidden
  }

  .contact_section {
    height: calc(100vh - 291px)
  }

  .contact_section .text-wrapper p {
    padding-bottom: 0
  }

  .contact_section svg {
    left: -70px;
    max-width: 452px;
    max-height: 275px
  }

  .footer-circle {
    max-width: 452px;
    max-height: 275px;
    left: -108px
  }

  .contact_section .text-wrapper {
    max-width: 195px
  }
}

@media screen and (max-height: 650px) and (orientation:landscape) {
  .card_section h2 {
    max-width: 450px
  }

  .sticky_section {
    height: 73%
  }

  header {
    padding: 15px 0
  }

  .cta_section:before {
    background-position: center
  }

  .work_section .box .wrapper {
    padding: 20px
  }

  .work_section h2 {
    padding-bottom: 140px
  }

  .all_services_section .heading {
    top: 70px
  }

  .all_services_section .all-services_wrapper .sticky-stack ul {
    top: 257px
  }
}

@media screen and (max-width: 1440px) {
  .cover_section .image_block {
    transform: scale(.8)
  }
}

@media screen and (max-width: 1366px) {
  .row {
    margin: 0
  }

  .work_section {
    justify-content: flex-start
  }

  .taylor_section svg {
    right: -241px
  }

  .all_services_section .heading {
    padding-top: 40px;
    padding-bottom: 0
  }

  .work_section .box {
    height: 215px
  }

  .work_section h2 {
    padding-bottom: 200px
  }
}

@media screen and (max-width: 1240px) {
  html[lang="en-US"] .sticky_section {
    padding: 40px 0 40px
  }
}

@media screen and (max-width: 1199px) {
  section {
    height: auto;
    scroll-snap-align: unset
  }

  .sticky_section .row {
    justify-content: start
  }

  .cover_section .image_block {
    transform: scale(1)
  }

  .all_services_section .heading:before {
    display: none
  }

  .taylor_section {
    padding-left: 30px;
    padding-right: 30px
  }

  .select-items li p {
    font-size: 16px;
    padding: 9px 13px;
    line-height: 24px
  }

  .all_services_section .heading {
    position: relative;
    top: 0;
    padding-top: 155px;
    padding-bottom: 0;
    padding-left: 25px;
    padding-right: 25px;
    border: 0
  }

  header {
    padding: 25px 0
  }

  .container {
    max-width: 100%
  }

  .contact_section svg,
  .footer-circle {
    max-width: 352px;
    max-height: 419px
  }

  .footer-circle {
    top: -157px
  }

  .card_section .card_box {
    margin-bottom: 22px;
    height: 100%;
    padding: 25px
  }

  .card_section .row {
    row-gap: 25px;
    align-items: stretch;
    margin: 0 -15px
  }

  .sticky_section {
    height: auto;
    padding-bottom: 60px;
    top: 0;
    max-height: 100% !important
  }

  .text_block .btn_main {
    padding-top: 55px
  }

  .contact_section {
    height: 500px
  }

  .card_section h2 {
    margin-bottom: 65px
  }

  .cta_section {
    height: 706px
  }

  .cta_section:before {
    background-size: cover;
    height: 100%
  }

  .cta_main {
    margin-top: -43px;
    z-index: 0
  }

  .cta_section {
    justify-content: center
  }

  .cover_section .image_block img {
    max-width: 241px;
    width: 100%;
    object-fit: scale-down;
    object-position: bottom;
    height: 100%;
    top: 0;
    position: relative
  }

  .taylor_desc {
    padding-top: 150px
  }

  .taylor_section svg {
    right: -167px;
    bottom: -60px
  }

  .quote_section {
    height: 600px
  }

  .quote_section .left {
    margin-top: 0;
    width: auto
  }

  .work_section .box .wrapper {
    padding: 20px
  }

  .work_section .box {
    height: auto
  }

  .work_section .box span {
    padding-bottom: 15px
  }

  .work_section h2 {
    padding-bottom: 150px
  }

  .work_section {
    min-height: 700px
  }

  .cover_section .title_box .text_desc {
    margin-left: 0;
    padding-left: 0;
    width: calc(100% - 75px)
  }

  .banner_section>svg {
    top: 0;
    height: auto
  }

  .banner_section {
    height: 100vh
  }

  .banner_section .banner_main {
    max-width: 650px
  }

  .our_services.active,
  .card_section.active,
  .card_section,
  .cta_section.active {
    position: relative
  }

  .our_services {
    padding-top: 0;
    height: auto;
    justify-content: start
  }

  svg.desktop {
    display: none
  }

  #fullpage {
    height: auto;
    scroll-snap-type: none
  }

  .cta_section:before {
    display: none
  }

  .cta_section>svg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
  }

  .cover_section .text_block .title_box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap
  }

  .cover_section {
    min-height: 600px
  }

  .cover_section .title_box:before {
    margin-right: 18px
  }

  .text_block .btn_main .app-store img {
    width: 115px;
    height: 34px
  }

  footer {
    padding-bottom: 70px
  }

  svg.mobile-svg {
    display: block
  }

  .cta_section svg.mobile-svg {
    display: none
  }

  .all_services_section .all-services_wrapper {
    flex-direction: column;
    padding-top: 50px
  }

  .all_services_section .all-services_wrapper .sticky-stack {
    width: 100%;
    padding-bottom: 55px
  }

  .all-services_wrapper .sticky-stack ul li {
    display: inline-block;
    margin: 0 10px
  }

  .all_services_section .all-services_wrapper .sticky-stack ul {
    text-align: center;
    top: 0;
    z-index: 1;
    background: #fff;
    padding: 14px 10px;
    position: relative
  }

  .all_services_section .all-services_wrapper .servcies_wrapper {
    width: 100%;
    padding: 10px
  }

  .all_services_section .all-services_wrapper .sticky-stack {
    position: sticky;
    top: 88px;
    z-index: 1
  }

  .cta_section.bg_black .cta_main {
    justify-content: center
  }

  .cover_section .progress-image .chart {
    top: 101px;
    transform: translateX(-50%) scale(.3)
  }

  .cover_section .image_block {
    width: 350px
  }

  .cover_section .title_box .text_desc .button_link.btn_arrow {
    font-size: 20px;
    line-height: 37px;
    text-underline-offset: 6px
  }

  .cover_section .image_block .barchart-image {
    margin-bottom: -43px;
    margin-left: -75px;
    transform: scale(.7)
  }
}

@media screen and (max-width: 991px) {

  .cookie-bar .text p,
  .cookie-bar .buttons .btn-white,
  .cookie-bar .buttons a {
    font-size: 16px;
    line-height: 24px
  }

  .cover_section .text_block {
    min-height: 320px
  }

  .cookie-bar .text {
    width: 100%
  }

  .cookie-bar .buttons {
    width: 100%;
    text-align: right;
    padding-top: 22px
  }

  .cookie-bar .row {
    flex-direction: column-reverse
  }

  .cookie-bar {
    height: auto;
    padding: 24px 34px 38px 34px
  }

  .header-right .language.desktop-text {
    display: none
  }

  .header-right .language.mobile-text {
    display: block
  }

  .work_section .box p {
    font-size: 16px;
    line-height: 24px
  }

  .cookie-bar .container {
    padding: 0
  }

  .cookie-bar .buttons .btn-white {
    min-width: 87px;
    padding: 5px 10px
  }

  .header_left .nav {
    position: absolute;
    background-color: #fff;
    height: 100dvh;
    width: 100%;
    top: 0;
    left: unset;
    flex-direction: column;
    justify-content: normal;
    padding: 40px 30px;
    align-items: start;
    transition: 1s linear;
    right: -1800px
  }

  .cta_section.bg_black .cta_main {
    margin: 0
  }

  .our-team-section .box img {
    max-height: 185px
  }

  .mobile_view {
    display: block
  }

  .desktop_view {
    display: none !important
  }

  :root {
    --ani2-speed: 600ms
  }

  .header_left ul {
    flex-direction: column;
    width: 100%
  }

  .header_left ul li a {
    font-size: 19px;
    line-height: 29px
  }

  .header_left ul {
    gap: 26px;
    padding-top: 103px
  }

  header {
    padding: 64px 22px;
    z-index: 3
  }

  .header_main .header-right {
    position: absolute;
    bottom: 64px;
    left: 40px
  }

  .work_section .box {
    width: calc(100% / 1 - 0px);
    height: 254px;
    max-width: 219px;
    margin: 0 auto
  }

  .work_section .row {
    flex-direction: column;
    align-items: center;
    transform: translateX(-75px)
  }

  .work_section .box .wrapper {
    padding: 32px
  }

  .work_section .box span {
    font-size: 32px;
    line-height: 40px
  }

  .work_section .box:nth-child(5) span,
  .work_section .box:nth-child(3) span {
    text-align: right
  }

  .work_section .box:nth-child(1) {
    transform: translate(76px, 63px);
    z-index: 1
  }

  .work_section .box:nth-child(2) {
    transform: translate(0, 14px)
  }

  .work_section .box:nth-child(3) {
    transform: translate(75px, -89px);
    z-index: -1
  }

  .work_section .box:nth-child(4) {
    transform: translate(0, -164px);
    z-index: -2
  }

  .work_section .box:nth-child(5) {
    transform: translate(75px, -253px);
    z-index: -3
  }

  .work_section h2 {
    padding-bottom: 0
  }

  .work_section {
    min-height: unset;
    justify-content: start;
    background-position: top;
    background-image: url('/wp-content/themes/advice-fp/assests/images/dots-bg-mobile.svg');
    background-size: cover
  }

  .quote_section .right {
    width: 100%;
    padding-top: 55px;
    max-width: 100%
  }

  .burger-btn {
    display: block;
    width: 21px;
    height: 16px;
    position: relative;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    gap: 4px;
    outline: none !important;
    z-index: 1
  }

  .burger-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background: #000;
    border-radius: 10px;
    transition: all 0.3s ease
  }

  body.menu-show .burger-btn span:nth-child(1) {
    transform: rotate(38deg) translate(2px, 0);
    width: 70%
  }

  body.menu-show .burger-btn span:nth-child(2) {
    opacity: 0
  }

  body.menu-show .burger-btn span:nth-child(3) {
    transform: rotate(-38deg) translate(4px, -2px);
    width: 70%
  }

  body.menu-show .nav {
    right: 0
  }

  .header_left .nav {
    transition: 0.5s;
    direction: ltr;
    text-align: left
  }

  .all_services_section .all-services_wrapper .sticky-stack {
    top: 70px
  }

  header.fixed-header {
    padding: 25px 20px
  }

  .section.cta_section.bg_black {
    justify-content: center
  }

  .all_services_section h2 {
    width: 100%
  }

  .all_services_section p {
    width: 100%
  }

  .all_services_section a.primary_btn.btn_arrow {
    margin-right: 0;
    margin-left: 0;
    margin-top: 22px
  }

  .cover_section .progress-image .chart {
    top: 90px;
    transform: translateX(-50%) scale(.25)
  }

  .contact-section .form-wrapper {
    width: 100%;
    margin-right: 0;
    margin-top: 55px
  }

  .contact-section .text-wrapper {
    width: 100%
  }

  body.header-white .header_left .logo img {
    filter: unset
  }

  .header_main .header-right .language {
    text-decoration: underline;
    text-underline-offset: 5px
  }

  .our-team-section .view-all {
    top: 420px
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 24px;
    line-height: 30px;
    font-family: 'Inter-Bold'
  }

  

  .form-sucesss-wrapper img.fomr-sucess-img {
    width: 36px;
    height: 36px;
  }

  .wpcf7 form.sent .form-sucesss-wrapper p{
    font-size: 16px;
    line-height: 24px;
  }

  .page-template-our-services header.fixed-header,  .page-template-our-services header{
    background: #fff;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }

  .taylor_section .title_top .button_link.btn_arrow.mobile_view {
    display: none
  }

  .cta_section.bg_black .cta_main .mobile-text {
    display: block
  }

  .cta_section.bg_black .cta_main .desktop-text {
    display: none
  }

  .contact-section .form-btn .wpcf7-spinner {
    top: 9px
  }

  .quote_section .right {
    max-width: 250px
  }

  .cover_section .progress-image img {
    max-width: 241px
  }

  .all_services_section .heading .row {
    margin: 0 -15px
  }

  .all_services_section a.primary_btn.btn_arrow::after {
    width: 32px;
    height: 32px;
    right: -39px !important;
    left: unset
  }

  .cta_section.bg_black .container {
    padding: 0 39px
  }

  .card_section .row {
    margin: 0 -15px
  }

  .cover_section .text_block {
    min-height: unset
  }

  .header_left .logo .mobile-logo {
    display: block;
    width: 37px
  }

  .all_services_section .all-services_wrapper .servcies_wrapper {
    padding-left: 0;
    padding-right: 0
  }

  .header_left .desktop-logo {
    display: none
  }

  .select-items li p {
    padding: 9px 13px
  }

  .custom-select .select-items {
    padding: 15px 10px 15px 15px
  }

  .our-team-section h2 {
    padding-bottom: 15px
  }

  .banner_section .banner_main {
    max-width: 275px;
    margin-top: 0
  }

  .banner_section p {
    font-size: 16px;
    line-height: 24px
  }

  .banner_section .primary_btn {
    background: #EFFE7C;
    color: #1D1D23;
    height: 40px;
    min-width: 130px;
    margin-top: 60px
  }

  .contact-section .form-btn .primary_btn {
    height: 32px;
    padding: 0 18px
  }

  .card_section {
    padding-top: 124px !important
  }

  .our_services.card_section {
    padding-top: 55px !important
  }

  .cover_section .title_box:before {
    margin-bottom: 0;
    width: 23px;
    height: 23px
  }

  .cover_section .title_box:before {
    width: 18px;
    height: 18px
  }

  .cover_section .btn_main {
    padding-bottom: 0
  }

  .cover_section .progress-image .chart-wrapper:after {
    content: '';
    position: absolute;
    width: 120%;
    height: 100px;
    background: #fff;
    bottom: 0;
    left: -30px;
    z-index: 3;
    filter: blur(12px)
  }

  .primary_btn {
    font-size: 16px;
    line-height: 24px
  }

  .primary_btn svg path {
    fill: #2f2f31
  }

  h2 {
    font-size: 19px;
    line-height: 29px
  }

  .cta_main h2 {
    font-size: 19px;
    line-height: 29px
  }

  .card_section .card_title {
    max-width: 210px
  }

  .card_section .card_box {
    max-width: 100%;
    padding: 24px 32px;
    height: auto;
    margin-bottom: 0
  }

  .card_section span.icon {
    margin-bottom: 36px
  }

  p {
    font-size: 16px;
    line-height: 24px
  }

  .card_section .card_box .title {
    font-size: 16px;
    line-height: 24px
  }

  .section {
    padding: 30px 0
  }

  .sticky-stack {
    position: relative;
    top: 0
  }

  .sticky_section {
    padding: 91px 0
  }

  .sticky_section:before {
    background-size: cover;
    background-position: center
  }

  .sticky_section .slide .card_box {
    margin-bottom: 0
  }

  .primary_btn {
    height: 32px
  }

  .btn_arrow:after {
    width: 32px;
    height: 32px;
    right: -42px;
    background-size: 14px
  }

  .primary_btn:hover svg {
    right: 0
  }

  .add_animation.active [scale-up] {
    animation: unset;
    opacity: 1
  }

  .card_section.add_animation.active [scale-up],   .card_section.our_services.active [scale-up]{
    animation: scale-up var(--ani2-speed) linear forwards;
    animation-delay: calc(var(--order, 1s) * 0.8s);
    opacity: 0;
  }

  .btn_arrow:after {
    left: unset;
    width: 40px;
    height: 40px;
    right: -42px
  }

  .contact-section .form-btn .primary_btn {
    height: 40px
  }

  .contact-section .form-btn p:after {
    right: -42px;
    background-size: 14px;
    width: 40px;
    height: 40px
  }

  .cta_section {
    height: 781px;
    justify-content: center;
    background-position: center !important
  }

  .cta_main {
    max-width: 215px;
    margin-top: 10px
  }

  .container {
    padding: 0 40px
  }

  .taylor_section .title_top .button_link.btn_arrow.mobile_view {
    margin-left: 27px
  }

  header .container {
    padding: 0 20px
  }

  .cover_section .title_box .text_desc {
    width: 100%;
    padding-top: 20px
  }

  .cover_section .title_box:before {
    width: 18px;
    height: 18px;
    background-size: cover;
    margin-bottom: 20px;
    margin-right: 0
  }

  .cover_section .title_box h2 {
    font-size: 24px;
    line-height: 29px
  }

  .cover_section .title_box p {
    font-size: 20px;
    line-height: 27px;
    font-family: 'Inter-Regular';
    padding-bottom: 22px
  }

  .cover_section .col-md-6 {
    padding: 0 15px
  }

  .cover_section .btn_main {
    padding-top: 0;
    padding-bottom: 50px;
    position: absolute;
    bottom: 60px;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: table;
    text-align: center;
    z-index: 6
  }

  header.fixed-header {
    padding: 24px 8px;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(5.5px);
    -webkit-backdrop-filter: blur(5.5px)
  }

  .menu-show .burger-btn {
    transform: scale(.5)
  }

  .header_left ul li a:hover {
    text-shadow: none;
    text-decoration: none;
    text-underline-offset: 0
  }

  header {
    padding: 24px 8px;
    transition: 0.5s;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(5.5px)
  }

  footer b {
    font-size: 13px;
    font-family: 'Inter-Bold'
  }

  footer nav ul li a,
  footer .address p {
    font-size: 12px;
    line-height: 22px
  }

  b,
  strong {
    font-family: 'Inter-Bold';
    font-weight: 400
  }

  footer {
    padding: 90px 30px 90px 30px
  }

  footer .address {
    max-width: 162px
  }

  .footer-circle {
    top: -33px;
    left: -1px
  }

  footer .container {
    padding: 0
  }

  footer .row {
    gap: 30px;
    justify-content: space-between;
    margin: 0
  }

  .contact_section .text-wrapper p {
    font-size: 19px;
    line-height: 29px
  }

  .contact_section .text-wrapper {
    max-width: 200px;
    padding-top: 0
  }

  .contact_section .text-wrapper .button_link {
    font-family: 'Inter-Bold'
  }

  .contact_section svg,
  .footer-circle {
    max-width: 359px;
    max-height: 335px;
    bottom: -32px;
    left: -197px
  }

  .quote_section p {
    font-size: 19px;
    line-height: 29px
  }

  .quote_section {
    padding: 124px 0 52px;
    height: auto
  }

  .quote_section h5:first-child {
    font-size: 20px;
    line-height: normal;
    padding-bottom: 8px
  }

  .cta_section .container {
    max-width: 100%
  }

  .quote_section h5 {
    font-size: 16px;
    line-height: 24px
  }

  .work_section .row {
    width: 100%;
    transform: translateX(-37px)
  }

  .cover_section .image_block .barchart-image svg {
    max-width: 203px;
    max-height: 217px
  }

  .work_section {
    height: auto;
    padding-top: 124px;
    flex-wrap: wrap;
    max-height: 1340px;
    background-position: top;
    background-size: 121%
  }

  .work_section h2 {
    margin: 0
  }

  .taylor_section {
    padding: 120px 0
  }

  .taylor_desc h3 {
    font-size: 15px;
    line-height: 24px
  }

  .taylor_desc .button_link {
    font-size: 15px;
    line-height: 24px
  }

  .taylor_desc {
    max-width: 230px;
    margin-right: auto;
    margin-left: 0
  }

  .taylor_section svg {
    right: 0;
    bottom: -100px;
    transform: scale(1.4) !important
  }

  .taylor_section .title_top h2 img {
    width: 90px
  }

  .taylor_section .title_top p {
    font-size: 19px;
    line-height: 29px;
    margin-bottom: 45px
  }

  .taylor_section svg path.svg-elem-1 {
    stroke: #000;
    stroke-opacity: 1
  }

  .cover_section .title_box .text_desc {
    max-width: 270px
  }

  .cover_section .text_block .title_box {
    flex-direction: column
  }

  .text_block {
    margin-right: 0
  }

  .cover_section {
    position: relative;
    padding: 90px 0
  }

  .col-md-6 {
    position: unset
  }

  .cover_section .row .col-md-6:last-child {
    padding: 0
  }

  .cover_section .image_block {
    padding-bottom: 50px;
    padding-top: 81px;
    justify-content: center;
    margin: 0 auto;
    left: 0;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    margin-right: -10px
  }

  .chart-counter {
    transform: translateY(-10px)
  }

  .cover_section .progress-image .chart {
    top: 115px;
    transform: translateX(-50%) scale(.3)
  }

  .cover_section .image_block img {
    height: auto
  }

  .cover_section .image_block {
    justify-content: center;
    flex-direction: row
  }

  .cover_section .btn_main a {
    display: inline-block;
    margin: 0 10px
  }

  .cta_section svg.mobile-svg {
    display: block;
    transform: scale(2.1)
  }

  .cta_main .primary_btn {
    margin-top: 45px;
    height: 40px
  }

  svg.desktop-svg {
    display: none
  }

  .all_services_section {
    padding-bottom: 30px
  }

  .all_services_section h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 30px
  }

  .all_services_section a.primary_btn.btn_arrow {
    height: 32px;
    margin-top: 12px
  }

  .all_services_section .all-services_wrapper {
    padding-top: 48px
  }

  .all_services_section .all-services_wrapper .sticky-stack ul {
    position: relative;
    display: flex;
    overflow-x: hidden;
    touch-action: pan-x !important;
    padding-left: 0;
    padding-right: 0
  }

  .contact_section a.button_link {
    font-family: 'Inter-Bold' !important
  }

  .all_services_section .all-services_wrapper .sticky-stack ul li.active {
    font-size: 19px;
    line-height: 25px
  }

  .all_services_section .all-services_wrapper .sticky-stack ul li.active:hover {
    opacity: 1
  }

  .all_services_section .all-services_wrapper .sticky-stack ul li:hover {
    opacity: .4
  }

  .all_services_section .all-services_wrapper .sticky-stack ul li:focus {
    opacity: .4
  }

  .all_services_section .all-services_wrapper .sticky-stack ul li {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px
  }

  .all_services_section .all-services_wrapper .sticky-stack ul li {
    margin-left: 0;
    margin-right: 15px;
    flex: 0 0 auto
  }

  .all_services_section .all-services_wrapper .sticky-stack {
    top: 56px;
    padding-bottom: 20px;
    margin: 0 auto
  }

  .all_services_section .servcies .box {
    width: calc(100% - 0px) !important;
    max-width: 300px;
    margin: 0 auto;
    padding: 41px 32px
  }

  .all_services_section .servcies .box p {
    padding-top: 20px
  }

  .all_services_section .servcies .box img {
    width: 23px;
    height: 23px;
    object-fit: contain;
    top: 42px
  }

  .all_services_section .servcies .box b {
    padding-left: 35px
  }

  .cta_section.bg_black {
    justify-content: start;
    padding-top: 120px;
    height: 644px
  }

  .cta_section.bg_black .cta_main h2 {
    padding-bottom: 40px
  }

  .about-section .banner-heading p {
    width: 100%
  }

  .about-section .banner-heading h2 {
    font-size: 24px;
    line-height: 35px;
    max-width: 200px;
    padding-left: 0;
    padding-bottom: 15px
  }

  .banner-heading {
    padding-top: 150px
  }

  .about-section:before {
    max-height: 463px;
    background-size: cover
  }

  .our-team-section .box {
    width: 100%;
    max-width: 246px;
    margin: 0 auto
  }

  .our-team-section .box span {
    margin-top: 25px
  }

  .our-team-section .box:nth-child(1),
  .our-team-section .box:nth-child(2),
  .our-team-section .box:nth-child(3),
  .our-team-section .box:nth-child(4) {
    padding-bottom: 15px !important
  }

  .our-team-section .view-all {
    top: 100%;
    left: 34px
  }

  .our-team-section .box.show {
    padding-bottom: 15px
  }

  .subsidiaries-section .row a {
    margin: 0 14px;
    max-width: 80px
  }

  .subsidiaries-section .row a img {
    width: 100%;
    max-width: 100px
  }

  .subsidiaries-section .container {
    padding: 0 10px
  }

  .subsidiaries-section h2,
  .partners-section h2 {
    padding-bottom: 60px
  }

  .subsidiaries-section {
    padding-top: 125px;
    padding-bottom: 65px
  }

  .partners-section {
    padding: 70px 0;
    background-position: 50% 43%;
    background-image: url('/wp-content/themes/advice-fp/assests/images/dots-bg.svg');
    background-size: 300%
  }

  .our-team-section .box img {
    max-height: 278px;
    max-width: 246px
  }

  .cta_section.bg_black svg.mobile-svg {
    max-width: 359px;
    max-height: 335px;
    bottom: -32px;
    left: -197px;
    top: unset
  }

  .cta_section.bg_black.active svg path {
    stroke: #fff;
    animation: animate-svg-stroke-6 1.5s cubic-bezier(.47, 0, .745, .715) 0.6s both
  }

  .partners-section .slider.mobile a img {
    transform: scaleX(-1)
  }

  .partners-section .slider.mobile {
    transform: scaleX(-1);
    display: flex;
    margin-top: 30px
  }

  .cta_section.bg_black .cta_main {
    justify-content: start;
    padding-right: 0
  }

  .contact-section .text-wrapper {
    width: 100%;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0
  }

  .header-right a.primary_btn {
    display: none
  }

  .header-right .btn.primary_btn.mobile-btn {
    display: flex;
    flex-direction: row-reverse
  }

  .header-right .btn.primary_btn.mobile-btn svg {
    transform: rotate(180deg);
    margin-right: 0;
    margin-left: 10px
  }

  .contact-section .form-wrapper {
    width: 100%;
    min-height: 200px;
    width: 100%;
    min-height: 200px;
    margin-right: 0;
    margin-top: 0;
    padding: 64px 38px
  }

  .contact-section .container {
    padding: 0 15px
  }

  .contact-section .form-wrapper form input,
  .contact-section .form-wrapper form textarea,
  .select-selected {
    font-size: 16px;
    line-height: 24px
  }

  textarea {
    height: 108px
  }

  .contact-section .form-wrapper form .form-group {
    margin-bottom: 50px
  }

  .contact-section {
    padding-top: 130px;
    padding-bottom: 0
  }

  .contact-section .text-wrapper h2 {
    padding-left: 35px;
    max-width: 270px
  }

  .contact-section .text-wrapper h2:before {
    width: 20px;
    height: 20px
  }

  .contact-section .cta_section {
    display: block;
    margin-top: 88px
  }

  .card_section h2 {
    margin-bottom: 56px
  }

  .quote_section .row {
    margin: 0
  }

  .quote_section .left:after {
    max-width: 100%
  }

  .quote_section .left {
    width: 100%
  }

  .contact-section .form-btn {
    margin-top: 50px;
    margin-right: 35px;
    margin-bottom: 0
  }

  .common-section ol li ol {
    padding-right: 0;
    margin-right: -12px
  }

  .common-section ol {
    padding-left: 0;
    overflow: hidden
  }

  .common-section li ol>li {
    font-size: 16px
  }

  .common-section {
    padding-bottom: 0;
    padding-top: 135px;
    overflow: hidden
  }

  .common-section ol ul {
    margin-right: -12px
  }

  .common-section .table-responsive {
    max-width: 280px
  }

  .common-section table {
    width: 216vw
  }

  .common-section .row {
    margin: 0
  }

  .cover_section .image_block .barchart-image {
    position: relative;
    z-index: 4;
    transform: scale(1);
    margin-bottom: 62px;
    margin-left: -106px;
    width: 203px
  }

  .contact-section .text-wrapper h2 br {
    display: none
  }

  .cover_section .progress-image {
    width: 220px
  }

  .header_left .logo img {
      width: 140px;
      display: block;
      transition: all 0.7s ease-in-out;
  }

  .header_left .logo{
    overflow: hidden;
  }

 .logo-scrolled img.desktop-logo {transform: translateX(-106px);}
}

@media screen and (max-width: 767px), screen and (max-height: 700px) {
        .banner_section {
        height: auto;
        max-height: 100vh;
    }

    .banner_section>svg {
        top: 0;
        height: auto;
        aspect-ratio: 4 / 10;
        position: static;
        margin-top: 32%;
    }

    .banner_section .container {
        position: absolute;
    }

    .banner_section .banner_main{
      margin-top: 85px !important;
    }
}

@media screen and (max-width: 450px){
      .banner_section>svg {
      
        aspect-ratio: 4 / 9;
  
    }
}

@media(max-width: 500px) {
  .cover_section .image_block {
    width: 100%
  }

  .card_section .card_box {
    max-width: 100%
  }

  .about-section .banner-heading p {
    max-width: 263px
  }

  .cta_section svg.mobile-svg {
    transform: scale(1.1)
  }

  .banner_section .banner_main{
    margin-top: 98px;
  }
}

@media(max-width: 370px) {
  .cover_section .image_block {
    margin-left: -10px
  }
}

@media(max-width: 360px) {
  .all_services_section .all-services_wrapper .sticky-stack ul li.active {
    font-size: 14px
  }

  .all_services_section .all-services_wrapper .sticky-stack ul li {
    font-size: 13px
  }
}

@media(max-width: 340px) {
  .cover_section .image_block {
    margin-left: -20px
  }
}

@media(max-width: 320px) {
  .cover_section .image_block {
    margin-left: -25px
  }

  .cover_section .text_block {
    margin-left: -30px
  }
}

.cta_section svg .svg-elem-1 {
  stroke-dashoffset: 2807.765869140625px;
  stroke-dasharray: 2807.765869140625px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 0.8s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 0.8s
}

.cta_section.active svg .svg-elem-1 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255)
}

.cta_section svg .svg-elem-2 {
  stroke-dashoffset: 2807.765869140625px;
  stroke-dasharray: 2807.765869140625px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.12s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 0.9s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.12s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 0.9s
}

.cta_section.active svg .svg-elem-2 {
  stroke-dashoffset: 0;
  fill: rgb(255 255 255)
}

.cta_section svg .svg-elem-3 {
  stroke-dashoffset: 5747.56298828125px;
  stroke-dasharray: 5747.56298828125px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.24s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.24s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1s
}

.cta_section .active svg .svg-elem-3 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255)
}

.cta_section svg .svg-elem-4 {
  stroke-dashoffset: 917.9510498046875px;
  stroke-dasharray: 917.9510498046875px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.36s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1.1s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.36s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1.1s
}

.cta_section.active svg .svg-elem-4 {
  stroke-dashoffset: 0
}

.cta_section svg .svg-elem-5 {
  stroke-dashoffset: 1453.4000244140625px;
  stroke-dasharray: 1453.4000244140625px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.48s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1.2000000000000002s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.48s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1.2000000000000002s
}

.cta_section.active svg .svg-elem-5 {
  stroke-dashoffset: 0
}

.cta_section svg .svg-elem-6 {
  stroke-dashoffset: 1455.0899658203125px;
  stroke-dasharray: 1455.0899658203125px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.6s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1.3s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.6s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1.3s
}

.cta_section.active svg .svg-elem-6 {
  stroke-dashoffset: 0
}

.cta_section svg .svg-elem-7 {
  stroke-dashoffset: 506.2631530761719px;
  stroke-dasharray: 506.2631530761719px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.72s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1.4000000000000001s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.72s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1.4000000000000001s
}

.cta_section.active svg .svg-elem-7 {
  stroke-dashoffset: 0
}

.cta_section svg .svg-elem-8 {
  stroke-dashoffset: 507.3949890136719px;
  stroke-dasharray: 507.3949890136719px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.84s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1.5s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.84s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1.5s
}

.cta_section.active svg .svg-elem-8 {
  stroke-dashoffset: 0
}

.cta_section svg.mobile-svg .svg-elem-1 {
  stroke-dashoffset: 811.1114501953125px;
  stroke-dasharray: 811.1114501953125px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 0.8s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 0.8s
}

.cta_section.active svg.mobile-svg .svg-elem-1 {
  stroke-dashoffset: 0
}

.cta_section svg.mobile-svg .svg-elem-2 {
  stroke-dashoffset: 811.1116943359375px;
  stroke-dasharray: 811.1116943359375px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.12s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 0.9s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.12s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 0.9s
}

.cta_section.active svg.mobile-svg .svg-elem-2 {
  stroke-dashoffset: 0
}

.cta_section svg.mobile-svg .svg-elem-3 {
  stroke-dashoffset: 363.8042297363281px;
  stroke-dasharray: 363.8042297363281px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.24s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.24s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1s
}

.cta_section.active svg.mobile-svg .svg-elem-3 {
  stroke-dashoffset: 0
}

.cta_section svg.mobile-svg .svg-elem-4 {
  stroke-dashoffset: 363.80450439453125px;
  stroke-dasharray: 363.80450439453125px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.36s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1.1s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.36s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1.1s
}

.cta_section.active svg.mobile-svg .svg-elem-4 {
  stroke-dashoffset: 0
}

.cta_section svg.mobile-svg .svg-elem-5 {
  stroke-dashoffset: 839.920166015625px;
  stroke-dasharray: 839.920166015625px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.48s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1.2000000000000002s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.48s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1.2000000000000002s
}

.cta_section.active svg.mobile-svg .svg-elem-5 {
  stroke-dashoffset: 0
}

.cta_section svg.mobile-svg .svg-elem-6 {
  stroke-dashoffset: 2320px;
  stroke-dasharray: 2320px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.6s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1.3s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.6s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1.3s
}

.cta_section.active svg.mobile-svg .svg-elem-6 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255)
}

.sticky-stack {
  position: sticky;
  top: 0
}

#fullpage.no-snap {
  scroll-snap-type: none
}

svg .border-draw-84 {
  stroke-dashoffset: 258.84442138671875px;
  stroke-dasharray: 258.84442138671875px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 1s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 1s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1s
}

.active svg .border-draw-84 {
  stroke-dashoffset: 0
}

svg .border-draw-85 {
  stroke-dashoffset: 263.3302001953125px;
  stroke-dasharray: 263.3302001953125px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 1s, fill 0.7s cubic-bezier(.47, 0, .745, .715)1s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 1s, fill 0.7s cubic-bezier(.47, 0, .745, .715)1s
}

.active svg .border-draw-85 {
  stroke-dashoffset: 0
}

svg .border-draw-86 {
  stroke-dashoffset: 292.2905578613281px;
  stroke-dasharray: 292.2905578613281px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 1s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 1s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1s
}

.active svg .border-draw-86 {
  stroke-dashoffset: 0
}

.cta_section.bg_black svg .svg-elem-1 {
  stroke-dashoffset: 2861.474853515625px;
  stroke-dasharray: 2861.474853515625px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 0.8s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 0.8s
}

.cta_section.bg_black.active svg .svg-elem-1 {
  stroke-dashoffset: 0;
  fill: rgb(63 66 75)
}

.cta_section.bg_black svg .svg-elem-2 {
  stroke-dashoffset: 891.9500122070312px;
  stroke-dasharray: 891.9500122070312px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.12s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 0.9s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.12s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 0.9s
}

.cta_section.bg_black.active svg .svg-elem-2 {
  stroke-dashoffset: 0
}

.cta_section.bg_black svg .svg-elem-3 {
  stroke-dashoffset: 1456.4300537109375px;
  stroke-dasharray: 1456.4300537109375px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.24s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.24s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1s
}

.cta_section.bg_black.active svg .svg-elem-3 {
  stroke-dashoffset: 0
}

.cta_section.bg_black svg .svg-elem-4 {
  stroke-dashoffset: 1454.4808349609375px;
  stroke-dasharray: 1454.4808349609375px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.36s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1.1s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.36s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1.1s
}

.cta_section.bg_black.active svg .svg-elem-4 {
  stroke-dashoffset: 0
}

.cta_section.bg_black svg .svg-elem-5 {
  stroke-dashoffset: 515.9047241210938px;
  stroke-dasharray: 515.9047241210938px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.48s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1.2000000000000002s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.48s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1.2000000000000002s
}

.cta_section.bg_black.active svg .svg-elem-5 {
  stroke-dashoffset: 0
}

.cta_section.bg_black svg .svg-elem-6 {
  stroke-dashoffset: 517.0590209960938px;
  stroke-dasharray: 517.0590209960938px;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.6s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1.3s;
  transition: stroke-dashoffset 1s cubic-bezier(.47, 0, .745, .715) 0.6s, fill 0.7s cubic-bezier(.47, 0, .745, .715) 1.3s
}

.cta_section.bg_black.active svg .svg-elem-6 {
  stroke-dashoffset: 0
}

html[lang="en-US"] .common-section ol {
  padding-left: 0
}

html[lang="en-US"] .common-section ol>li:before {
  padding-right: 12px;
  padding-left: 0
}

html[lang="en-US"] .common-section ol>li>p {
    padding-top: 15px;
    font-family: 'Inter-Regular';
}



html[lang="en-US"] .common-section p {
    font-family: 'Inter-Regular';
}

html[lang="en-US"] .common-section strong {
    font-family: 'Inter-Bold';
}

html[lang="en-US"] .common-section ol ul {
    margin-left: 0;
    padding-left: 0;
}

html[lang="en-US"] .common-section li ol>li {
    font-size: 16px;
    padding-bottom: 12px;
}
html[lang="en-US"] .common-section p{
	font-size: 16px;
}

html[lang="en-US"] .common-section ol ul>li:before {
    padding-left: 0;
    padding-right: 8px;
}

@media (min-width: 1511px) {
  html[lang="en-US"] h1 {
    font-size: 54px;
    line-height: 68px
  }

  html[lang="en-US"] .banner_section p {
    font-size: 19px;
    line-height: 29px
  }

  html[lang="en-US"] .primary_btn {
    font-size: 15px;
    line-height: 25px
  }

  html[lang="en-US"] p {
    font-size: 19px;
    line-height: 29px
  }

  html[lang="en-US"] .card_section .card_box .title {
    font-size: 19px;
    line-height: 30px
  }

  html[lang="en-US"] .sticky_section .slide .card_box .title {
    min-height: 60px
  }

  html[lang="en-US"] h3 {
    font-size: 22px
  }

  html[lang="en-US"] .taylor_desc h3 {
    line-height: 34px
  }

  html[lang="en-US"] .work_section .box span {
    line-height: 60px
  }

  html[lang="en-US"] .quote_section p {
    font-size: 22px;
    line-height: 34px
  }

  html[lang="en-US"] .header_left ul li a {
    font-size: 15px;
    line-height: 24px
  }

  html[lang="en-US"] .header-right a.language {
    font-size: 15px;
    line-height: 24px
  }

  html[lang="en-US"] .header-right a.primary_btn {
    min-width: 70px;
    padding: 0 16px
  }

  html[lang="en-US"] .contact_section a.button_link {
    font-size: 19px;
    line-height: 29px
  }

  html[lang="en-US"] footer nav ul li a {
    font-size: 13px;
    line-height: 24px
  }

  html[lang="en-US"] footer .address p {
    font-size: 13px;
    line-height: 24px
  }

  html[lang="en-US"] .contact-section .text-wrapper h2 {
    font-size: 31px;
    line-height: 45px
  }

  html[lang="en-US"] .contact-section .form-wrapper form input,
  html[lang="en-US"] .contact-section .form-wrapper form textarea {
    font-size: 19px;
    line-height: 29px
  }

  html[lang="en-US"] .select-selected,
  html[lang="en-US"] .select-items li p {
    font-size: 19px;
    line-height: 29px
  }

  html[lang="en-US"] .about-section .banner-heading h2 {
    padding-left: 0
  }

  html[lang="en-US"] .our-team-section .view-all {
    font-size: 19px;
    line-height: 29px
  }

  html[lang="en-US"] .bg_black .button_link.btn_arrow {
    font-size: 19px;
    line-height: normal
  }

  html[lang="en-US"] .all_services_section .heading p {
    font-size: 15px;
    line-height: 24px
  }

  html[lang="en-US"] .all_services_section .heading p {
    font-size: 15px;
    line-height: 24px
  }

  html[lang="en-US"] .all_services_section a.primary_btn.btn_arrow {
    min-width: 124px
  }

  html[lang="en-US"] .all_services_section .servcies .box p {
    font-size: 15px;
    line-height: 24px
  }

  html[lang="en-US"] .all_services_section .servcies .box b {
    font-size: 15px;
    line-height: 24px
  }

  html[lang="en-US"] .all_services_section .all-services_wrapper .sticky-stack ul li {
    font-size: 15px;
    line-height: 24px
  }

  html[lang="en-US"] .all_services_section .all-services_wrapper .sticky-stack ul li.active {
    font-size: 19px;
    line-height: 29px
  }
}

@media screen and (max-width: 767px) {
  html[lang="en-US"] .contact-section .text-wrapper h2 {
    font-size: 22px;
    line-height: 34px;
    max-width: 310px
  }

  html[lang="en-US"] .contact-section .text-wrapper h2 b {
    display: block
  }

  html[lang="en-US"] .contact-section .form-wrapper form input,
  html[lang="en-US"] .contact-section .form-wrapper form textarea {
    font-size: 15px;
    line-height: 24px
  }

  html[lang="en-US"] .select-selected,
  html[lang="en-US"] .select-items li p {
    font-size: 15px;
    line-height: 24px
  }

  html[lang="en-US"] .contact-section .form-btn .primary_btn {
    font-size: 15px;
    line-height: 24px
  }

  html[lang="en-US"] .bg_black .button_link.btn_arrow {
    font-size: 19px;
    line-height: normal
  }

  html[lang="en-US"] .header_left ul li a {
    font-size: 19px;
    line-height: 29px
  }

  html[lang="en-US"] .header_main .header-right .language {
    font-size: 20px;
    line-height: 27px
  }

  html[lang="en-US"] .header-right a.primary_btn {
    font-size: 15px;
    line-height: 24px
  }

  html[lang="en-US"] h2 {
    font-size: 20px;
    line-height: 27px
  }

  html[lang="en-US"] .about-section .banner-heading h2 {
    font-size: 22px;
    line-height: 34px
  }
    .all_services_section .all-services_wrapper .sticky-stack ul li {
      transition: unset !important;
    }
}

@media screen and (max-width: 440px) {
      .banner_section .banner_main {
        margin-top: 0;
    }
}

@media screen and (max-width: 400px) {
  html[lang="en-US"] .all_services_section .all-services_wrapper .sticky-stack ul li {
    margin-right: 10px
  }

  html[lang="en-US"] .all_services_section .all-services_wrapper .sticky-stack ul li.active {
    font-size: 17px;
    line-height: 23px
  }

  html[lang="en-US"] .all_services_section .all-services_wrapper .sticky-stack ul li {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 5px
  }

  .banner_section .banner_main{
    margin-top: 98px;
  }

  

 
}


