@charset "UTF-8";
header {
  background: rgba(241, 253, 255, 0.6);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  height: 80px;
  display: flex;
  flex-direction: row;
  padding: 0 9.375%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 81.25%;
  justify-content: space-between;
  z-index: 999;
  box-sizing: unset;
}

header .sub-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

header .site-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-basis: 24.375%;
}

header .site-branding {
  display: flex;
  align-items: center;
  flex-basis: 9.725%;
}

header .site-menu {
  flex-basis: 65.9%;
}

header .header-login {
  margin-left: 12px;
}

header .site-cta .button-secondary {
  padding: 10px 22px;
  height: 56px;
}

header .site-cta .button-primary {
  width: 226px;
  height: 56px;
}

header .button-burger {
  background: transparent;
  padding: 0;
  line-height: inherit;
}

header .menu-button {
  display: none;
}

header button {
  border: 0;
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  padding: 16px 24px;
  border-radius: 16px;
  text-decoration: none;
  cursor: pointer;
}

header .button-primary {
  color: #fff;
  background: linear-gradient(90deg, #6DCBD2 0%, #30B9C4 100%);
}

header .button-primary:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(90deg, #6DCBD2 0%, #30B9C4 100%);
}

header .button-secondary {
  background: #FFFFFF;
  color: #6DCBD2;
  border: 2px solid #6DCBD2;
}

header .button-secondary:hover {
  background: #F0FAFB;
  color: #46A3AA;
  border: 2px solid #46A3AA;
}

.mobile-menu ul {
  list-style: none;
}

menu-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: blue;
  /* just to make it obvious… */
}

#menu-mobile-menu {
  transform: translateY(-120%);
  position: fixed;
  width: 100%;
  height: calc(100vh - 64px);
  top: 64px;
  left: 0;
  background-color: white;
  visibility: hidden;
  overflow: scroll;
  margin-top: 0;
}

.closed #menu-mobile-menu {
  transition: transform 0.4s ease-in-out, visibility 0s 0.4s;
}

.mobile-menu.open #menu-mobile-menu {
  transform: translateY(0%);
  transition: all 0.4s ease-in-out;
  visibility: visible;
}

.site-menu ul {
  padding: 0;
  margin: 0 0 0 72px;
  display: flex;
  justify-content: flex-start;
  height: 100%;
  align-items: center;
}

.site-menu ul li a:hover,
.current-menu-item a {
  background: linear-gradient(90deg, #6DCBD2 0%, #30B9C4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 600 !important;
}

#menu-main-menu li:not(:last-child) {
  margin-right: 48px;
}

.site-menu li {
  list-style: none;
  position: relative;
}

.site-menu li.menu-item-has-children {
  cursor: pointer;
}

.site-menu ul li a {
  text-decoration: none;
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #374151;
}

.menu-item-has-children:hover ul.sub-menu {
  height: auto;
  min-width: 290px;
  opacity: 1;
  overflow: visible;
  visibility: visible;
  width: auto;
  left: 0;
  right: auto;
}

.site-menu li.menu-item-has-children:after {
  content: url("https://adsbot.co/wp-content/themes/adsbot/assets/dropdown-icon.svg");
}

.sub-menu {
  align-items: normal;
  background-color: inherit;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 0;
  left: -1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 100%;
  transition: opacity 0.1s linear;
  visibility: hidden;
  width: 0;
  z-index: 2;
  padding: 0 10px !important;
  margin-left: 0 !important;
  align-items: flex-start !important;
  box-shadow: 0px 2px 10px -2px rgba(10, 46, 49, 0.05);
  background: rgb(250, 250, 250);
}

.sub-menu li {
  width: 100%;
  margin: 5px 0px !important;
}

.sub-menu li:not(:first-child) {
  border-top: 1px solid #E5E7EB;
}

.mobile-menu {
  display: none;
}

@media only screen and (max-width: 1024px) {
  header .site-branding {
    flex-basis: 50%;
  }
  .mobile-menu {
    display: flex;
  }
  header .desktop {
    display: none;
  }
  .mobile-menu ul {
    padding-left: 0;
  }
  .mobile-menu ul li a {
    font: 500 16px/55px "Work Sans";
    color: #1F2937;
    padding-left: 23px;
    text-decoration: none;
  }
  .mobile-menu ul li {
    border-bottom: 1px solid #F3F4F6;
  }
  .site-branding,
.menu-button {
    z-index: 999;
  }
  .site-branding,
.site-menu {
    background: white;
  }
  header .menu-button {
    display: block;
  }
  .header-login,
.header-cta {
    display: none;
  }
  header {
    padding-right: 16px;
    padding-left: 16px;
    width: calc(100% - 32px);
    background: white;
    height: 64px;
    box-shadow: 0px 2px 13px -2px rgba(0, 0, 0, 0.07);
  }
  .site-logo svg {
    width: 86px;
    height: 40px;
  }
  header button {
    font-size: 14px;
    line-height: 22px;
    padding: 12px 16px;
  }
}
@media only screen and (min-width: 1441px) {
  header .sub-section {
    margin: 0 auto;
    width: 1440px;
  }
}
body.admin-bar header {
  top: 32px;
}

header .button-burger {
  padding: 0;
  line-height: inherit;
  content: "";
  background: url(https://adsbot.co/wp-content/themes/adsbot/assets/burger-menu.svg);
  width: 24px;
  height: 24px;
}

header .button-burger.menu-open {
  background: url(https://adsbot.co/wp-content/themes/adsbot/assets/X.svg);
}

@font-face {
  font-family: "Inter";
  src: url("../../../v2/assets/fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../../../v2/assets/fonts/WorkSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../../../v2/assets/fonts/WorkSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../../../v2/assets/fonts/WorkSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../../../v2/assets/fonts/WorkSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../../../v2/assets/fonts/WorkSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
body.admin-bar .site-content {
  margin-top: 112px;
}
@media (min-width: 1024px) {
  body.admin-bar .site-content {
    margin-top: 172px;
  }
}

body {
  font: 400 16px/24px "Work Sans", sans-serif;
  color: #4B5563;
  background-color: #FAFAFA;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin: 0;
  font: 400 16px/24px "Work Sans";
}
@media (min-width: 1024px) {
  p {
    font-size: 16px;
    line-height: 24px;
  }
}

ul {
  margin: 0;
}

h2 {
  font: 700 28px/33px "Work Sans";
  margin: 0;
}
@media (min-width: 1024px) {
  h2 {
    font-size: 40px;
    line-height: 48px;
  }
}

.btn {
  border-radius: 16px;
  align-items: center;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  justify-content: center;
  padding: 16px 24px;
  text-decoration: none;
  font: 600 16px/24px "Work Sans", sans-serif;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.btn.blue-main {
  color: #fff;
  background: none 0% 0%/auto repeat scroll padding-box border-box rgb(109, 203, 210);
}
.btn.blue-main:after {
  content: url(../../../v2/assets/img/right-arrow.svg);
  width: 20px;
  height: 20px;
  display: block;
  margin-left: 8px;
}
@media (min-width: 1024px) {
  .btn.blue-main:hover {
    background: linear-gradient(66deg, rgb(190, 120, 237) 0%, rgb(50, 185, 195) 100%);
    box-shadow: rgba(42, 42, 42, 0.25) 0px 12px 33px 0px;
  }
}

.btn-demo {
  color: rgb(109, 203, 210);
  border: 2px solid rgb(109, 203, 210);
  background-color: #FFFFFF;
}
.btn-demo:hover {
  background-color: #F0FAFB;
}

.btn-soft-blue {
  align-items: center;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  color: rgb(109, 203, 210);
  font: 500 16px/24px "Work Sans", sans-serif;
  text-decoration: none;
  cursor: pointer;
  z-index: 99;
}
@media (min-width: 1024px) {
  .btn-soft-blue:hover {
    text-decoration: underline;
  }
}
.btn-soft-blue:after {
  color: rgb(109, 203, 210);
  content: url(../../../v2/assets/img/right-arrow-blue.svg);
  width: 20px;
  height: 20px;
  display: block;
  margin-left: 6px;
}

.cta-container {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .cta-container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.cta-container a {
  width: -webkit-fill-available;
}
@media (min-width: 1024px) {
  .cta-container a {
    width: 42%;
  }
}
.cta-container a:last-child {
  margin-top: 15px;
}
@media (min-width: 1024px) {
  .cta-container a:last-child {
    margin: 0;
  }
}

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

.feature-1 .hero {
  padding: 0 16px;
  padding-top: 120px;
  padding-bottom: 56px;
}
@media (min-width: 1024px) {
  .feature-1 .hero {
    padding: 0 80px;
    max-width: 1040px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .feature-1 .hero {
    max-width: 720px;
    padding: 170px 0 110px;
    margin: 0 auto;
  }
}
.feature-1 .hero h1 {
  font: 500 16px/24px "Work Sans";
  margin: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.00001) 100%), linear-gradient(90deg, #0B71B4 0%, #5EB8EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-blend-mode: overlay, normal;
}
@media (min-width: 1024px) {
  .feature-1 .hero h1 {
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 6px;
  }
}
.feature-1 .hero h2 {
  color: #1f2937;
  padding-bottom: 16px;
  font: 700 32px/40px "Work Sans";
}
@media (min-width: 1024px) {
  .feature-1 .hero h2 {
    padding-bottom: 8px;
    font-size: 56px;
    line-height: 68px;
  }
}
@media (min-width: 1024px) {
  .feature-1 .hero p {
    padding: 16px 0 16px;
  }
}
.feature-1 .ref-slide {
  background-color: #F3F4F6;
}
.feature-1 .ref-slide .slider-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.feature-1 .ref-slide .slider-wrapper .slider-slide img {
  width: 130px;
  height: auto;
}
.feature-1 .dark {
  background-color: #292939;
  padding: 0 16px;
  padding-top: 42px;
  padding-bottom: 42px;
}
@media (min-width: 1024px) {
  .feature-1 .dark {
    padding: 0 80px;
    max-width: 1040px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .feature-1 .dark {
    padding: 100px 0 50px;
    margin: unset;
    max-width: unset;
  }
}
.feature-1 .dark .container {
  max-width: 1040px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .feature-1 .dark .container .section_top {
    display: flex;
    gap: 60px;
  }
}
@media (min-width: 1024px) {
  .feature-1 .dark .container .section_top .top-left, .feature-1 .dark .container .section_top .top-right {
    width: 50%;
  }
}
.feature-1 .dark h2 {
  padding-bottom: 16px;
  color: #30b9c3;
}
.feature-1 .dark p, .feature-1 .dark li {
  color: #F3F4F6;
  padding-bottom: 16px;
}
.feature-1 .dark img {
  margin-top: 10px;
  border-radius: 8px;
}
.feature-1 .s3 {
  padding: 0 16px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .feature-1 .s3 {
    padding: 0 80px;
    max-width: 1040px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .feature-1 .s3 {
    padding-top: 110px;
    padding-bottom: 70px;
  }
}
.feature-1 .s3 h2 {
  color: #1F2937;
  padding-bottom: 16px;
}
.feature-1 .s3 h2 span {
  color: #30b9c3;
}
.feature-1 .s3 img {
  margin: 30px 0;
}
.feature-1 .s4 {
  background: linear-gradient(105.44deg, rgba(232, 244, 245, 0.3) 7.88%, rgba(203, 234, 237, 0.3) 91.77%);
}
.feature-1 .s4 .container {
  padding: 0 16px;
  padding-top: 40px;
  padding-bottom: 70px;
}
@media (min-width: 1024px) {
  .feature-1 .s4 .container {
    padding: 0 80px;
    max-width: 1040px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .feature-1 .s4 .container {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}
.feature-1 .s4 h2 {
  color: #1F2937;
  padding-bottom: 16px;
}
.feature-1 .s4 h2 span {
  color: #30b9c3;
}
.feature-1 .s4 h2:not(:first-of-type) {
  padding-top: 30px;
}
.feature-1 .s4 p:not(:last-child) {
  padding-bottom: 16px;
}
@media (min-width: 1024px) {
  .feature-1 .s3 .cta-container, .feature-1 .s4 .cta-container {
    margin: 16px 0 0;
    justify-content: unset;
    margin-top: 32px;
  }
  .feature-1 .s3 .cta-container a, .feature-1 .s4 .cta-container a {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .feature-1 .s3 .cta-container a:first-child, .feature-1 .s4 .cta-container a:first-child {
    margin-right: 8px;
  }
}/*# sourceMappingURL=campaignPerformance.css.map */