html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

body.show-popup {
  overflow: hidden !important;
}

:root {
  --say9-graph-blue: #50A2C8;
}

html.dark {
  --say9-graph-blue: #2DDCFF;
}

canvas {
  touch-action: none;
  /* optional extras to fully opt‐in on older webkit builds */
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

/* Link Building Hero */

#link_building_hero {
  margin-bottom: 40px;
  padding: 40px 120px;
}

#link_building_inner {
  display: grid;
  grid-template-columns: 5fr;
  gap: 20px 40px;
}

.link_building_hero_title {
  font-size: 40px;
  line-height: 1.2em;
  grid-row: 1;
  font-weight: 600;
  grid-column: 1 / 3; 
  margin-top: 140px;
  max-width: 450px;
  color: var(--say9-main-blue);
  transition: color 0.3s ease-in-out;;
}

.link_building_hero_txt {
  font-size: 16px;
  line-height: 1.2em;
  grid-row: 2;
  grid-column: 1 / 3;
  max-width: 450px;
  transition: color 0.3s ease-in-out;
}

.link_building_hero_anim {
  height: 560px;
  grid-row: 1 / 4;
  grid-column: 3 / 6;
  border-radius: 2.3%;
}

.link_building_hero_btn {
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 500;
  padding: 10px 30px;
  color: rgba(252, 252, 252, 1);
  border-radius: 20px;
  background-color: var(--say9-main-orange);
  grid-column: 1 / 3;
  grid-row: 3;
  width: fit-content;
  margin-bottom: 150px;
  height: 40px;
  transition: box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.link_building_hero_btn:hover {
  box-shadow: 0 0 5.2px #FF8A3B99;
}

.link_building_hero_btn:active {
  box-shadow: 0 0 7.5px #FF8A3BB2;
}

html.dark .link_building_hero_btn:hover {
  box-shadow: 0 0 5.2px #2DDCFF99;
}

html.dark .link_building_hero_btn:active {
  box-shadow: 0 0 7.5px #2DDCFFB2;
}

/* Link Building POV */

#link_building_pov {
  margin-bottom: 90px;
  padding: 14px 120px;
}

.link_building_pov_title {
  color: var(--say9-main-blue);
  font-size: 50px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 50px;
  text-align: center;
  transition: color 0.3s ease-in-out;
}

.link_building_pov_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  column-gap: 18px;
}

.link_building_pov_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.link_building_pov_subtitle {
  font-size: 32px;
  line-height: 1.2em;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
  transition: color 0.3s ease-in-out;
}

.link_building_pov_video {
  width: 100%;
  border-radius: 3%;
}

/* Outsource */

#outsource {
  margin-bottom: 90px;
  padding: 14px 120px;
}

#outsource_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
}

.outsource_title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  grid-column: 1 / 2;
  max-width: 615px;
  margin-top: 32px;
  transition: color 0.3s ease-in-out;
}

.outsource_content {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  grid-column: 1 / 2;
  grid-row: 2;
  max-width: 615px;
  padding-left: 20px;
}

.outsource_txt {
  font-size: 16px;
  line-height: 1.2em;
  position: relative;
  transition: color 0.3s ease-in-out;
}

.outsource_txt::before {
  content: "•";
  font-size: 1em;
  color: #000000;
  position: absolute;
  left: -10px;
  top: 0;
  transition: color 0.3s ease-in-out;
}

html.dark .outsource_txt::before {
  color: #ffffff;
}

.outsource_anim {
  grid-column: 2 / 3;
  grid-row: 1 / 4;
  border-radius: 7px;
}

.outsource_btn {
  grid-column: 1 / 2;
  grid-row: 3;
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 500;
  padding: 10px 30px;
  color: rgba(252, 252, 252, 1);
  border-radius: 20px;
  background-color: var(--say9-main-orange);
  width: fit-content;
  margin-bottom: 32px;
  height: 40px;
  transition: box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.outsource_btn:hover {
  box-shadow: 0 0 5.2px #FF8A3B99;
}

.outsource_btn:active {
  box-shadow: 0 0 7.5px #FF8A3BB2;
}

html.dark .outsource_btn:hover {
  box-shadow: 0 0 5.2px #2DDCFF99;
}

html.dark .outsource_btn:active {
  box-shadow: 0 0 7.5px #2DDCFFB2;
}

/* Team */

#team {
  margin-bottom: 90px;
  padding: 14px 120px;
}

.team_title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 12px;
  text-align: center;
  transition: color 0.3s ease-in-out;
}

.team_txt {
  font-size: 20px;
  line-height: 1.2em;
  margin-bottom: 30px;
  text-align: center;
  transition: color 0.3s ease-in-out;
}

.team_video_wrap {
  border-radius: 6px;
  border: 10px solid rgba(218, 234, 242, 1);
  overflow: hidden;
  max-height: 484px;
  height: auto;
  line-height: 0;
  background-color: rgba(218, 234, 242, 1);
  transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

html.dark .team_video_wrap {
  background-color: rgba(80, 162, 200, 0.1);
  border-color: rgba(80, 162, 200, 0.1);
}

.team_video {
  display: block;
  height: auto;
  max-width: 100%;
  border-radius: 6px;
}

/* Process */

#process {
  margin-bottom: 90px;
  padding: 14px 120px;
}

#process_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 20px;
}

.process_title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  grid-column: 2 / 3;
  max-width: 615px;
  margin-top: 17px;
  transition: color 0.3s ease-in-out;
}

.process_content {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  grid-column: 2 / 3;
  grid-row: 2;
  max-width: 615px;
  padding-left: 20px;
}

.process_txt {
  font-size: 16px;
  line-height: 1.2em;
  position: relative;
  transition: color 0.3s ease-in-out;
}

.process_txt::before {
  content: "•";
  font-size: 1em;
  color: #000000;
  position: absolute;
  left: -10px;
  top: 0;
  transition: color 0.3s ease-in-out;
}

html.dark .process_txt::before {
  color: #ffffff;
}

.process_anim {
  grid-column: 1 / 2;
  grid-row: 1 / 4;
  border-radius: 7px;
}

.process_btn {
  grid-column: 2 / 3;
  grid-row: 3;
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 500;
  padding: 13px 31px;
  color: rgba(252, 252, 252, 1);
  border-radius: 37px;
  background-color: var(--say9-main-orange);
  width: fit-content;
  margin-bottom: 17px;
  height: 46px;
  transition: box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.process_btn:hover {
  box-shadow: 0 0 5.2px #FF8A3B99;
}

.process_btn:active {
  box-shadow: 0 0 7.5px #FF8A3BB2;
}

html.dark .process_btn:hover {
  box-shadow: 0 0 5.2px #2DDCFF99;
}

html.dark .process_btn:active {
  box-shadow: 0 0 7.5px #2DDCFFB2;
}

/* Our Difference */

#our_difference {
  margin-bottom: 90px;
  padding: 14px 120px;
  overflow: hidden;
}

#our_difference_inner.inner_wrapper {
  max-width: 1200px;
}

#our_difference h2.title {
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.2em;
}

#our_difference h2.title span.highlight_blue {
  font-weight: 600;
}

.difference_subtitle {
  font-size: 20px;
  line-height: 1.2em;
  font-weight: 400;
  text-align: center;
  transition: color 0.3s ease-in-out;
}

#differences_wrapper {
  display: flex;
  gap: 36px 10px;
  padding: 50px 0;
}

.difference {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 211px;
  height: 211px;
  margin: 0 auto;
}

.difference .text {
  color: #fff;
  font-size: 22px;
  line-height: 36px;
  font-weight: 600;
  text-align: center;
  z-index: 2;
  user-select: none;
}

.difference .overlay {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: absolute;
  background-color: var(--say9-main-blue);
  transition: transform 0.7s ease, background-color 0.7s ease;
  z-index: 2;
}

.difference .overlay img {
  transition: transform 0.8s ease;
  z-index: 3;
  user-select: none;
  -webkit-user-drag: none;
}

.difference:hover .overlay,
.difference.active .overlay {
  background-color: var(--say9-text-blue);
}

html.dark .difference:hover .overlay,
html.dark .difference.active .overlay {
  background-color: var(--say9-main-blue);
}

.difference:hover #sweet_pricing,
.difference.active #sweet_pricing {
  transform: rotate(45deg);
}

#sweet_pricing img {
  transform: rotate(-10deg) translateX(100%) translateY(10%);
}

.difference:hover #sweet_pricing img,
.difference.active #sweet_pricing img {
  transform: rotate(0deg) translateX(0%);
}

.difference:hover #backlink_relevance,
.difference.active #backlink_relevance {
  transform: rotate(-30deg);
}

#backlink_relevance img {
  transform: rotate(-190deg) translateX(100%) translateY(0%);
}

.difference:hover #backlink_relevance img,
.difference.active #backlink_relevance img {
  transform: rotate(-180deg) translateX(0%) translateY(8%);
}

.difference:hover #fixed_timeframes,
.difference.active #fixed_timeframes {
  transform: rotate(45deg);
}

#fixed_timeframes img {
  transform: scaleX(-1) translateX(105%) translateY(18%) rotate(-11deg);
}

.difference:hover #fixed_timeframes img,
.difference.active #fixed_timeframes img {
  transform: scaleX(-1) translateX(9%) translateY(5%) rotate(16deg);
}

.difference:hover #valuable_connections,
.difference.active #valuable_connections {
  transform: rotate(15deg);
}

#valuable_connections img {
  transform: rotate(-66deg) translateX(68%) translateY(35%);
}

.difference:hover #valuable_connections img,
.difference.active #valuable_connections img {
  transform: rotate(-55deg) translateX(14%) translateY(5%);
}

.difference:hover #automated_solutions,
.difference.active #automated_solutions {
  transform: rotate(-15deg);
}

#automated_solutions img {
  transform: scale(-1) translateX(100%) translateY(10%) rotate(5deg);
}

.difference:hover #automated_solutions img,
.difference.active #automated_solutions img {
  transform: scale(-1) translateX(2%) translateY(6%) rotate(0deg);
}

/* Case Studies */

#case_studies {
  padding: 14px 120px 0;
  overflow: hidden;
}

.case_studies_title {
  color: var(--say9-main-blue);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 40px;
  text-align: center;
  transition: color 0.3s ease-in-out;
}

.case_studies_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  margin-bottom: 40px;
  padding-top: 5px;
}

.case_studies_item {
  width: 100%;
  height: 100%;
  max-width: 467px;
  border-radius: 20px;
  background-color: rgba(218, 234, 242, 1);
  box-shadow: 0 0 5.6px 0 rgba(80, 162, 200, 0.4);
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 12px 20px;
  transition: background-color 0.3s ease-in-out;
}

html.dark .case_studies_item:not(.your_item) {
  background-color: rgba(40, 59, 69, 1);
}

.case_studies_item.your_item {
  background-color: var(--say9-main-blue);
}

.study_viewport {
  margin-bottom: 35px;
  border: 5px solid rgba(80, 162, 200, 0.36);
  border-radius: 6px;
  width: 100%;
  display: flex;
  cursor: default;
  flex-direction: column;
  padding: 12px 6px 9px;
  background-color: rgba(255, 255, 255, 1);
  transition: border-color 0.3s ease-in-out;
}

html.dark .study_viewport {
  border-color: rgba(41, 90, 105, 1);
}

.case_studies_item.your_item .study_viewport {
  border-color: rgba(218, 234, 242, 1);
}

html.dark .case_studies_item.your_item .study_viewport {
  border-color: rgba(107, 230, 254, 1);
}


.viewport_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.viewport_top_rating {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2em;
  color: var(--say9-main-blue);
  transition: color 0.3s ease-in-out;
}

.viewport_top_traffic {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2em;
  color: rgba(255, 138, 59, 1);
}

.viewport_center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 8px;
}

.viewport_center_ratings,
.viewport_center_traffics {
  display: flex;
  align-items: center;
  row-gap: 26px;
  flex-direction: column;
  margin: 5px 0 10px;
}

.rating {
  font-size: 9px;
  line-height: 14px;
  font-weight: 400;
  color: var(--say9-main-blue);
  transition: color 0.3s ease-in-out;
}

html.dark .rating {
  color: rgba(7, 72, 98, 0.6);
}

.traffic {
  font-size: 9px;
  line-height: 14px;
  font-weight: 400;
  color: rgba(255, 138, 59, 1);
}

.viewport_center_lines {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.backline {
  width: 100%;
  height: 1px;
  background-color: rgba(225, 225, 225, 1);
  position: absolute;
  left: 0;
}

.line_100 {
  top: 0;
}

.line_75 {
  top: 22%;
}

.line_50 {
  top: 44%;
}

.line_25 {
  top: 66%;
}

.line_0 {
  bottom: 0;
}

.blue_graph {
  position: absolute;
  bottom: 0;
  right: 15px;
  height: 100%;
  display: flex;
  flex-direction: column-reverse;
  z-index: 100;
}

.orange_graph {
  position: absolute;
  bottom: -1px;
  left: -1px;
  display: flex;
  flex-direction: column-reverse;
  height: 100%;
  z-index: 101;
}

.viewport_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 4px;
}

.viewport_bottom_item {
  font-size: 9px;
  line-height: 1.2em;
  font-weight: 400;
  color: var(--say9-main-blue);
  transition: color 0.3s ease-in-out;
}

html.dark .viewport_bottom_item {
  color: rgba(7, 72, 98, 0.6);
}

.case_studies_pagination {
  bottom: 0 !important;
  display: none;
  align-items: center;
  justify-content: center;
}

.case_studies_pagination .swiper-pagination-bullet {
  width: 26px;
  height: 6px;
  background-color: var(--say9-main-blue);
  border-radius: 43px;
  opacity: 0.4;
  margin: 0 2px !important;
  transition: opacity 0.3s ease-out, width 0.3s ease-out, height 0.3s ease-out, background-color 0.3s ease-in-out;
} 

.case_studies_pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 36px;
  height: 8px;
}


/*  */

.chart_container {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 100%;
  aspect-ratio: 420 / 189;
}

.chart_container#yourContainer {
  padding-top: 0;
}

.chart_container canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.chart_tooltip {
  position: absolute;
  display: none;
  pointer-events: none;
  flex-direction: column;
  will-change: transform, opacity;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 6px;
  border: 1px solid rgba(225, 225, 225, 1);
  width: 140px;
  padding: 6px 3px 8px;
}

.chart_tooltip#yourTooltip {
  width: 117px;
  height: 70px;
  align-items: center;
  justify-content: center;
}

.chart_title {
  color: var(--say9-main-blue);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 8px;
}

.chart_tooltip#yourTooltip .chart_title {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  color: rgba(7, 72, 98, 0.5);
}

.chart_label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chart_label.domain {
  margin-bottom: 5px;
}

.chart_label_left {
  display: flex;
  align-items: center;
  column-gap: 2px;
}

.chart_circle {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

.chart_circle.domain {
  background-color: var(--say9-graph-blue);
}

.chart_circle.traffic {
  background-color: #FF8A3B;
}

.chart_label_txt,
.chart_label_right {
  font-size: 9px;
  line-height: 1.2em;
  font-weight: 400;
  color: var(--say9-main-blue);
}

html.dark .chart_title,
html.dark .chart_label_txt,
html.dark .chart_label_right {
  color: #07486299;
}


/*  */

.study_logo {
  height: 34px;
  margin-bottom: 20px;
}

.study_logo svg {
  height: 100%;
  width: 100%;
}

.study_logo svg path.blue {
  fill: var(--say9-main-blue);
  transition: fill 0.3s ease-in-out;
}

.study_title {
  font-size: 24px;
  line-height: 1.2em;
  font-weight: 700;
  color: rgba(252, 252, 252, 1);
  margin-bottom: 20px;
}

.study_txt {
  font-size: 20px;
  line-height: 1.2em;
  font-weight: 600;
  transition: color 0.3s ease-in-out;
}

.case_studies_item.your_item .study_txt {
  color: rgba(252, 252, 252, 1);
}

.case_studies_btn {
  margin: 0 auto;
  width: fit-content;
  position: relative;
  cursor: pointer;
}

.case_studies_link {
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 500;
  display: inline-block;
  padding: 12px 34px;
  color: rgba(252, 252, 252, 1);
  border-radius: 24px;
  background-color: var(--say9-main-orange);
  width: fit-content;
  transition: box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.case_studies_btn:hover .case_studies_link {
  box-shadow: 0 0 5.2px #FF8A3B99;
}

.case_studies_btn .case_studies_link:active {
  box-shadow: 0 0 7.5px #FF8A3BB2;
}

html.dark .case_studies_btn:hover .case_studies_link {
  box-shadow: 0 0 5.2px #2DDCFF99;
}

html.dark .case_studies_btn .case_studies_link:active {
  box-shadow: 0 0 7.5px #2DDCFFB2;
}

.case_studies_btn_pos{
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 10;
}

.case_studies_btn_left {
  border-radius: 24px 0 0 24px;
  left: 0;
}

.case_studies_btn_right {
  border-radius: 0 24px 24px 0;
  right: 0;
}

.hands {
  position: relative;
  max-width: 900px;
  width: 100%;
  height: 220px;
  margin: 0 auto;
}

.hand {
  width: 320px;
  height: 320px;
  position: absolute;
  bottom: -45px;
}

.left_hand {
  left: 30px;
  transform: rotateZ(32deg);
  transition: bottom 0.5s ease-in-out, left 0.5s ease-in-out;
}

.left_hand.active {
  bottom: -5px;
  left: 130px;
}

.right_hand {
  right: 30px;
  transform: rotateY(180deg) rotate(32deg);
  transition: bottom 0.5s ease-in-out, right 0.5s ease-in-out;
}

.right_hand.active {
  bottom: -5px;
  right: 130px;
}

/* Elephant animation */

/* #eleCanvasContainer {
  position: fixed;
  bottom: 0;
  left: -260px;
  width: 356px;
  height: 400px;
  z-index: 100;
}

#eleCanvasContainer.walk-in {
  animation: walk-in 6s linear forwards;
}

#eleCanvasContainer.walk-out {
  animation: walk-out 3s linear forwards;
} */

/*  */


#elephant_container {
  position: fixed;
  bottom: 0;
  left: -260px;
  width: 356px;
  height: 400px;
  z-index: -1;
  pointer-events: none;
}

.video_hide {
  opacity: 0;
}

.elephant_video {
  height: 400px;
  position: absolute;
  top: 0;
  left: 0;
}

#elephant_popup {
  position: absolute;
  top: 50px;
  left: 60px;
  width: 180px;
  height: 140px;
  /* background-color: rgba(255, 0, 0, 0.211); */
  z-index: 10;
  pointer-events: auto;
}

#elephant_popup.run {
  left: 120px;
  width: 200px;
}

#kmchtel {
  position: absolute;
  bottom: 30px;
  left: 100px;
  width: 150px;
  height: 180px;
  /* background-color: rgba(0, 128, 0, 0.397); */
  z-index: 10;
  pointer-events: auto;
}

@keyframes walk-in {
  from {
    left: -260px;
  }

  /* -260px */
  to {
    left: 60%
  }

  /* 1200px */
}

@keyframes walk-out {
  from {
    left: 60%
  }

  /* 1200px */
  to {
    left: -340px
  }

  /* 340px */
}

#testrun_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10999999999999000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  pointer-events: none;
}

#testrun_popup.show_testrun_popup {
  pointer-events: all;
}

#testrun_popup.show_testrun_popup #testrun_blur {
  opacity: 1;
}

#testrun_popup.show_testrun_popup #testrun_popup_wrapper {
  transform: translateX(0%);
  opacity: 1;
}

#testrun_blur {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(46.6px);
  background-color: #50A2C81A;
  z-index: 0;
  opacity: 0;
  transition: opacity .3s ease;
  cursor: pointer;
}

#testrun_popup_wrapper {
  z-index: 2;
  height: 100%;
  max-height: 500px;
  width: 100%;
  max-width: 860px;
  background: rgba(252, 252, 252, 1);
  display: flex;
  align-items: center;
  border-radius: 20px;
  position: relative;
  transform: translateY(20%);
  opacity: 0;
  transition: opacity .3s ease, transform .4s ease, background-color 0.3s ease-in-out;
}

html.dark #testrun_popup_wrapper {
  background-color: var(--say9-bg-dark);
}

#testrun_left {
  border-radius: 20px;
  background-color: rgba(200, 225, 236, 1);
  transition: background-color 0.3s ease-in-out;
}

html.dark #testrun_left {
  background-color: var(--say9-sec-dark);
}

#testrun_left img {
  max-height: 500px;
  height: 100%;
  max-width: 410px;
}

#testrun_right {
  padding: 30px 40px;
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}

#testrun_demo {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 0 10px;
}

.testrun_title {
  font-size: 26px;
  line-height: 41px;
  font-weight: 700;
  transition: color 0.3s ease-in-out;
}

.testrun_content {
  font-size: 18px;
  line-height: 1.2em;
  transition: color 0.3s ease-in-out;
}

#testrun_btn {
  background-color: var(--say9-main-orange);
  padding: 10px;
  border-radius: 20px;
  font-weight: 500;
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.3s ease-out, background-color 0.3s ease-in-out;
}

#testrun_btn:hover {
  box-shadow: 0 0 5.2px rgba(255, 138, 59, 0.6);
}

#testrun_btn:active {
  box-shadow: 0 0 7.5px rgba(255, 138, 59, 0.7);
}

html.dark #testrun_btn:hover {
  box-shadow: 0 0 5.2px #2DDCFF99;
}

html.dark #testrun_btn:active {
  box-shadow: 0 0 7.5px #2DDCFFB2;
}

#testrun_popup_close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

#testrun_popup_close svg path {
  fill: var(--say9-text-blue);
  transition: fill 0.3s ease-in-out;
}

.hide {
  display: none !important;
}

/* Animation Form */

#testrun_form {
  padding: 0 10px;
  width: 100%;
  margin-top: 40px;
}

#testrun_form .offer_form_input label::after {
  display: none;
}

#testrun_form .offer_form_input label {
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 600;
}

#testrun_form .offer_form_input .ff-el-input--label {
  margin-bottom: 10px;
}

#testrun_form .offer_form_input .ff-el-input--content {
  position: relative;
}

#testrun_form .offer_form_input input {
  border: 1px solid var(--say9-text-blue);
  padding: 12px 12px 12px 32px;
  font-size: 14px;
  line-height: 1.2em;
  color: var(--say9-text-blue);
  border-radius: 11px;
  background-color: transparent;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  transition: border-color 0.3s ease-in-out;
}

#testrun_form .offer_form_input input::placeholder {
  color: rgba(7, 72, 98, 0.8);
  transition: color 0.3s ease-in-out;
}

html.dark #testrun_form .offer_form_input input::placeholder {
  color: rgba(252, 252, 252, 0.6);
}

#testrun_form .offer_form_input input:focus {
  border: 1px solid var(--say9-text-blue);
}

#testrun_form .offer_form_input input:-webkit-autofill {
  -webkit-text-fill-color: #1B1B1C !important;
  color: #1B1B1C !important;
  background-color: transparent !important;
  background-clip: content-box !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  border: 1px solid #434346 !important;
  appearance: none;
  -webkit-appearance: none;
}

html.dark #testrun_form .offer_form_input input:-webkit-autofill,
html.dark #testrun_form .offer_form_input input:-internal-autofill-selected {
  -webkit-text-fill-color: #F1F1F1 !important;
  color: #F1F1F1 !important;
  background-color: transparent !important;
  background-clip: content-box !important;
  box-shadow: 0 0 0 1000px var(--say9-bg-dark) inset !important;
  border: 1px solid var(--say9-text-blue) !important;
  transition: background-color 9999s ease-in-out 0s, color 9999s ease-in-out 0s;
}

#testrun_form .ff-el-form-check div {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2em;
  padding-right: 0;
}

#testrun_form svg {
  width: 18px;
  height: 18px;
  display: inline-block;
  position: absolute;
  top: 13px;
  left: 10px;
  z-index: 1;
  pointer-events: none;
}

#testrun_form svg path {
  stroke: var(--say9-text-blue);
  transition: stroke-opacity 0.3s ease-out, stroke 0.3s ease-in-out;
}

#testrun_form svg.active path {
  stroke-opacity: 1;
}

#testrun_form button[type="submit"] {
  max-width: 250px;
  width: 100%;
  border-radius: 20px;
  padding: 10px;
  font-size: 16px;
  line-height: 1.2em;
  background-color: var(--say9-main-orange);
  transition: box-shadow 0.3s ease-out, background-color 0.3s ease-in-out;
}

#testrun_form button[type="submit"]:hover {
  opacity: 1;
  box-shadow: 0 0 5.2px rgba(255, 138, 59, 0.6);
}

#testrun_form button[type="submit"]:focus {
  opacity: 1;
  box-shadow: 0 0 7.5px rgba(255, 138, 59, 0.7);
}

html.dark #testrun_form button[type="submit"]:hover {
  opacity: 1;
  box-shadow: 0 0 5.2px #2DDCFF99;
}

html.dark #testrun_form button[type="submit"]:focus {
  opacity: 1;
  box-shadow: 0 0 7.5px #2DDCFFB2;
}

#testrun_form .ff-el-is-error input {
  border-color: #EC4747;
  color: #EC4747;
}

#testrun_form .ff-el-is-error .text-danger {
  margin: 0;
}

#testrun_form .ff-el-is-error label,
#testrun_form .ff-el-is-error input::placeholder {
  color: #EC4747 !important;
}

#testrun_form .ff-el-is-error svg path {
  stroke: #EC4747;
}

#testrun_form.thank_you {
  padding: 0;
  display: block;
  height: unset;
  width: 100%;
}

#testrun_form .ff-message-success {
  border: none;
  box-shadow: none;
  margin: 0 auto;
  max-width: 480px;
  text-align: center;
  width: 100%;
}

#testrun_form .ff-message-success .title.thank_you {
  text-transform: none;
  color: var(--say9-main-blue);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2em;
  margin-bottom: 12px;
}

#testrun_form .ff-message-success p {
  margin-bottom: 26px;
}

#testrun_form .ff-message-success button {
  width: 100%;
  max-width: 264px;
  text-align: center;
  border: none;
  outline: none;
  border-radius: 40px;
  margin: auto;
  padding: 12px 0;
  background-color: var(--say9-main-orange);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: box-shadow 0.3s ease-out;
}

#testrun_form .ff-message-success button:hover {
  box-shadow: 0 0 5.2px #FF8A3B;
}

#testrun_form .ff-message-success button:active {
  box-shadow: 0 0 7.5px #FF8A3BB2;
}

#testrun_form .ff-message-success .thank_you_bottom {
  margin-top: 100px;
}

#testrun_form .ff-message-success .thank_you_bottom span {
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 300;
}

#testrun_form .ff-message-success .thank_you_links {
  margin-top: 10px;
  display: flex;
  column-gap: 8px;
  align-items: center;
  justify-content: center;
}

/* Form button loading */

#testrun_form .loader-wrapper {
  max-width: 264px;
}

@media screen and (max-width: 1600px) {
  /* Outsource */

  .outsource_title,
  .outsource_content,
  .outsource_btn {
    max-width: 580px;
  }

  /* Process */

  .process_title,
  .process_content,
  .process_btn {
    max-width: 580px;
  }

  /* Our Difference */

  .difference {
    width: 211px;
    height: 211px;
  }
}

@media screen and (max-width: 1440px) {
  /* Link Building Hero */

  #link_building_hero {
    padding: 30px 120px;
  }

  .link_building_hero_title {
    font-size: 36px;
    margin-top: 115px;
  }

  .link_building_hero_anim {
    height: 480px;
  }

  .link_building_hero_btn {
    margin-bottom: 115px;
  }

  /* Link Building POV */

  #link_building_pov {
    margin-bottom: 60px;
  }

  .link_building_pov_title {
    font-size: 40px;
    margin-bottom: 30px;
  }

  .link_building_pov_wrapper {
    column-gap: 14px;
  }

  .link_building_pov_subtitle {
    font-size: 26px;
    margin-bottom: 30px;
  }

  /* Outsource */

  #outsource {
    margin-bottom: 60px;
  }

  .outsource_title {
    font-size: 36px;
  }

  .outsource_content {
    row-gap: 18px;
  }

  .outsource_txt {
    font-size: 14px;
  }

  .outsource_anim {
    max-width: 650px;
  }

  /* Team */

  #team {
    margin-bottom: 60px;
  }

  .team_title {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .team_txt {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .team_video_wrap {
    border: 6px solid rgba(218, 234, 242, 1);
  }

  /* Process */

  #process {
    margin-bottom: 60px;
  }

  .process_title {
    font-size: 36px;
  }

  .process_content {
    row-gap: 18px;
  }

  .process_txt {
    font-size: 14px;
  }

  .process_anim {
    max-width: 650px;
  }

  .process_btn {
    padding: 10px 18px;
    height: 40px;
  }

  /* Our Difference */

  #our_difference {
    margin-bottom: 60px;
  }

  .difference_subtitle {
    font-size: 16px;
  }

  #our_difference h2.title {
    font-size: 34px;
    margin-bottom: 10px;
  }

  /* Case Studies */

  .case_studies_title {
    margin-bottom: 30px;
    font-size: 36px;
  }

  .case_studies_item {
    padding: 12px 10px 14px;
  }

  .study_viewport {
    margin-bottom: 20px;
  }

  .study_logo {
    height: 26px;
    margin-bottom: 14px;
  }

  .study_title {
    font-size: 21px;
    margin-bottom: 14px;
  }

  .study_txt {
    font-size: 16px;
  }

  .case_studies_link {
    font-size: 14px;
    padding: 12px 22px;
  }

  .hands {
    height: 140px;
    max-width: 650px;
  }

  .hand {
    width: 210px;
    height: 210px;
  }
  
  .left_hand.active {
    bottom: -2px;
    left: 105px;
  }

  .right_hand.active {
    bottom: -2px;
    right: 105px;
  }
}

@media screen and (max-width: 1350px) {
  /* Link Building Hero */

  .link_building_hero_title {
    font-size: 30px;
    margin-top: 100px;
  }

  .link_building_hero_anim {
    height: 420px;
  }

  .link_building_hero_btn {
    margin-bottom: 100px;
  }

  /* Outsource */

  .outsource_title {
    margin-top: 15px;
    font-size: 32px;
  }

  .outsource_btn {
    margin-bottom: 15px;
  }

  .outsource_anim {
    max-width: 580px;
  }

  /* Process */

  #process_inner {
    gap: 15px 20px;
  }

  .process_title {
    margin-top: 10px;
    font-size: 32px;
  }

  .process_btn {
    margin-bottom: 10px;
  }

  .process_anim {
    max-width: 580px;
  }

  /* Our Difference */

  #differences_wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px 60px;
    margin: auto;
    max-width: 1000px;
  }

  .difference {
    margin: 0;
  }

  /* Case Studies */

  #case_studies {
    padding: 14px 60px 0;
  }
}

@media screen and (max-width: 1280px) {
  /* Outsource */

  #outsource_inner {
    gap: 15px 20px;
  }

  .outsource_anim {
    max-width: 550px;
  }

  /* Process */

  .process_anim {
    max-width: 530px;
  }
}

@media screen and (max-width: 1200px) {
  /* Link Building Hero */

  #link_building_hero {
    padding: 20px 60px;
  }

  .link_building_hero_title {
    font-size: 30px;
    margin-top: 100px;
  }

  .link_building_hero_anim {
    height: 420px;
  }

  .link_building_hero_btn {
    margin-bottom: 100px;
  }

  /* Link Building POV */

  #link_building_pov {
    padding: 14px 60px;
  }

  .link_building_pov_subtitle {
    font-size: 24px;
  }  

  /* Outsource */

  #outsource {
    padding: 14px 60px;
  }

  /* Team */

  #team {
    padding: 14px 60px;
  }

  /* Process */

  #process {
    padding: 14px 60px;
  }

  /* Our Difference */

  #our_difference {
    padding: 14px 60px;
  }

  /* Case Studies */

  #case_studies {
    padding: 14px 16px 0;
  }
}

@media screen and (max-width: 1080px) {
  /* Link Building Hero */

  .link_building_hero_title {
    font-size: 28px;
    margin-top: 60px;
  }

  .link_building_hero_anim {
    height: 360px;
  }

  .link_building_hero_btn {
    margin-bottom: 60px;
  }

  /* Outsource */

  .outsource_title {
    font-size: 26px;
    margin-top: 0;
  }

  .outsource_anim {
    max-width: 465px;
  }

  .outsource_btn {
    margin-bottom: 0;
  }

  /* Process */

  .process_title {
    font-size: 26px;
    margin-top: 0;
  }

  .process_anim {
    max-width: 465px;
  }

  .process_btn {
    margin-bottom: 0;
  }

  .process_content {
    row-gap: 14px;
  }
}

@media screen and (max-width: 1024px) {
  /* Link Building Hero */
  
  #link_building_hero {
    padding: 20px 16px;
  }

  .link_building_hero_anim {
    height: 320px;
  }

  /* Link Building POV */

  #link_building_pov {
    padding: 14px 16px;
  }

  .link_building_pov_title {
    font-size: 27px;
  }

  .link_building_pov_subtitle {
    font-size: 22px;
  }

  /* Outsource */
  
  #outsource {
    padding: 14px 16px;
  }

  .outsource_title {
    font-size: 24px;
  }

  .outsource_anim {
    max-width: 480px;
  }

  /* Team */

  #team {
    padding: 14px 16px;
  }

  .team_title {
    font-size: 32px;
  }

  .team_video_wrap {
    height: 400px;
  }

  .team_video {
    height: 100%;
    max-width: unset;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Process */

  #process {
    padding: 14px 16px;
  }

  .process_title {
    font-size: 24px;
  }

  .process_anim {
    max-width: 480px;
  }

  /* Our Difference */

  #our_difference {
    padding: 14px 16px;
  }

  #our_difference h2.title {
    font-size: 32px;
    line-height: 50px;
  }

  #differences_wrapper {
    padding: 30px 0 20px;
  }

  /* Case Studies */

  #case_studies {
    padding: 14px 0 0;
  }

  .case_studies_wrapper {
    column-gap: 0;
    justify-content: unset;
  }

  .case_studies_pagination {
    display: flex;
    bottom: 14px !important;
  }

  .case_studies_btn {
    margin-top: 12px;
  }

  /* Elephant animation */

  #elephant_container {
    display: none;
  }

  #testrun_popup {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  /* Link Building Hero */

  .link_building_hero_title {
    margin-top: 40px;
  }

  .link_building_hero_btn {
    margin-bottom: 40px;
  }

  /* Outsource */

  #outsource_inner {
    grid-template-columns: 1fr;
    gap: 30px 20px;
  }
  
  .outsource_title {
    max-width: 100%;
    text-align: center;
  }

  .outsource_content {
    max-width: 768px;
    grid-row: 3;
    padding-left: 20px;
    margin: 0 auto;
  }

  .outsource_anim {
    max-width: 768px;
    width: 100%;
    grid-row: 2;
    grid-column: 1 / 2;
    margin: 0 auto;
    border-radius: 14px;
  }

  .outsource_btn {
    grid-row: 4;
    margin: 0 auto;
  }

  /* Process */

  #process_inner {
    grid-template-columns: 1fr;
    gap: 30px 20px;
  }

  .process_title {
    max-width: 100%;
    text-align: center;
    grid-column: 1 / 2;
  }

  .process_content {
    max-width: 768px;
    grid-row: 3;
    grid-column: 1 / 2;
    padding-left: 20px;
    margin: 0 auto;
  }

  .process_anim {
    max-width: 768px;
    width: 100%;
    grid-row: 2;
    margin: 0 auto;
    border-radius: 12px;
  }

  .process_btn {
    grid-row: 4;
    grid-column: 1 / 2;
    margin: 0 auto;
    padding: 10px 30px;
  }
}

@media screen and (max-width: 820px) {
  /* Link Building Hero */

  .link_building_hero_title {
    font-size: 26px;
    margin-top: 20px;
  }

  .link_building_hero_anim {
    height: 280px;
  }

  .link_building_hero_btn {
    margin-bottom: 20px;
  }

  /* Our Difference */

  #differences_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .difference:last-of-type {
    grid-column: 1;
  }
}

@media screen and (max-width: 768px) {
  /* Link Building Hero */

  #link_building_hero {
    padding: 14px 9px;
  }

  #link_building_inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .link_building_hero_title,
  .link_building_hero_txt {
    grid-column: 1 / 2;
    max-width: 100%;
    margin-top: 0;
  }

  .link_building_hero_anim {
    grid-column: 1 / 2;
    grid-row: 3;
    height: unset;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 7px;
    border-radius: 3%;
  }

  .link_building_hero_btn {
    grid-row: 4;
    grid-column: 1 / 2;
    margin: 0 auto;
  }

  /* Link Building POV */

  #link_building_pov {
    margin-bottom: 40px;
  }

  .link_building_pov_wrapper {
    grid-template-columns: 1fr;
    row-gap: 26px;
  }

  .link_building_pov_subtitle {
    font-size: 21px;
    margin-bottom: 18px;
  }

  /* Outsource */

  #outsource {
    margin-bottom: 40px;
  }

  .outsource_btn {
    font-size: 14px;
    padding: 11.5px 30px;
  }

  /* Team */

  #team {
    margin-bottom: 40px;
  }

  .team_title {
    font-size: 28px;
  }

  .team_video_wrap {
    height: 350px;
  }

  /* Process */

  #process {
    margin-bottom: 40px;
  }

  .process_btn {
    font-size: 14px;
    padding: 11.5px 30px;
  }

  /* Our Difference */

  #our_difference {
    margin-bottom: 40px;
    padding: 0 16px;
  }

  #our_difference h2.title {
    font-size: 24px;
    line-height: 34px;
  }

  .difference_subtitle {
    font-size: 14px;
  }

  /* Case Studies */

  .case_studies_title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 650px) {
  .case_studies_btn {
    max-width: 360px;
    width: 100%;
  }

  .case_studies_link {
    max-width: 360px;
    width: 100%;
    text-align: center;
  }

  .left_hand {
    left: 2%;
  }

  .right_hand {
    right: 2%;
  }

  .left_hand.active {
    left: 5%;
  }

  .right_hand.active {
    right: 5%;
  }
}

@media screen and (max-width: 600px) {
  /* Link Building Hero */

  .link_building_hero_title {
    font-size: 24px;
  }

  .link_building_hero_txt {
    font-size: 14px;
  }

  .link_building_hero_anim {
    border-radius: 3.5%;
  }

  .link_building_hero_btn {
    max-width: 360px;
    width: 100%;
    font-size: 14px;
    padding: 11.5px 20px;
  }

  /* Link Building POV */

  .link_building_pov_title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  /* Outsource */

  .outsource_title {
    font-size: 22px;
  }

  .outsource_btn {
    max-width: 360px;
    width: 100%;
    text-align: center;
  }

  /* Team */

  .team_title {
    font-size: 24px;
  }

  .team_txt {
    font-size: 14px;
  }

  .team_video_wrap {
    height: 270px;
  }

  /* Process */

  .process_title {
    font-size: 22px;
  }

  .process_btn {
    max-width: 360px;
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 580px) {
  /* Our Difference */

  #our_difference {
    padding: 0 16px 20px;
  }

  #differences_wrapper {
    grid-template-columns: 1fr;
  }

  .difference {
    width: 100%;
    height: 120px;
  }

  .difference_br {
    display: none;
  }

  .difference .overlay {
    border-radius: 20px;
  }

  .difference .overlay img {
    width: max-content;
  }

  #sweet_pricing img {
    margin-left: auto;
    transform: rotate(-10deg) translateX(180%) translateY(10%);
  }

  .difference:hover #sweet_pricing,
  .difference.active #sweet_pricing {
    transform: rotate(5deg);
  }

  .difference:hover #backlink_relevance,
  .difference.active #backlink_relevance {
    transform: rotate(-2deg);
  }

  .difference:hover #fixed_timeframes,
  .difference.active #fixed_timeframes {
    transform: rotate(-5deg);
  }

  .difference:hover #valuable_connections,
  .difference.active #valuable_connections {
    transform: rotate(2deg);
  }

  #valuable_connections img {
    transform: rotate(-66deg) translateX(70%) translateY(35%);
    margin-left: auto;
  }

  .difference:hover #automated_solutions,
  .difference.active #automated_solutions {
    transform: rotate(-2deg);
  }
}

@media screen and (max-width: 510px) {
  /* Case Studies */

  .hands {
    height: 120px;
  }

  .hand {
    width: 180px;
    height: 180px;
  }

  .left_hand {
    left: 0;
  }

  .right_hand {
    right: 0;
  }

  .left_hand.active {
    left: 2%;
  }

  .right_hand.active {
    right: 2%;
  }
}

@media screen and (max-width: 450px) {
  .left_hand {
    left: -3%;
  }

  .right_hand {
    right: -3%;
  }

  .left_hand.active {
    left: 0;
  }

  .right_hand.active {
    right: 0;
  }
}

@media screen and (max-width: 400px) {
  .viewport_top_rating {
    font-size: 8px;
  }

  .viewport_bottom_item {
    font-size: 7px;
  }

  .rating,
  .traffic {
    font-size: 7px;
  }
}