@font-face {
  font-family: "Matter";
  src: url("../fonts/Matter-Medium.woff2") format("woff2"),
    url("../fonts/Matter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("../fonts/Matter-MediumItalic.woff2") format("woff2"),
    url("../fonts/Matter-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("../fonts/Matter-BoldItalic.woff2") format("woff2"),
    url("../fonts/Matter-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("../fonts/Matter-HeavyItalic.woff2") format("woff2"),
    url("../fonts/Matter-HeavyItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("../fonts/Matter-LightItalic.woff2") format("woff2"),
    url("../fonts/Matter-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("../fonts/Matter-Bold.woff2") format("woff2"),
    url("../fonts/Matter-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("../fonts/Matter-Light.woff2") format("woff2"),
    url("../fonts/Matter-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("../fonts/Matter-Heavy.woff2") format("woff2"),
    url("../fonts/Matter-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("../fonts/Matter-SemiBoldItalic.woff2") format("woff2"),
    url("../fonts/Matter-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("../fonts/Matter-RegularItalic.woff2") format("woff2"),
    url("../fonts/Matter-RegularItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("../fonts/Matter-Regular.woff2") format("woff2"),
    url("../fonts/Matter-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("../fonts/Matter-SemiBold.woff2") format("woff2"),
    url("../fonts/Matter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ROOT Variable Start*/
:root {
  --primary: #ff6a00;
  --black: #000000;
  --dark: #757575;
  --white: #ffffff;
  --gray: #f5f5f5;
  --blue: #2d97c7;
  --blue_light: #bdf0fd;
  --yellow: #fcc12c;
  --orange_light: #fde0c6;
  --pink: #fcc9d4;
}

body {
  font-family: "Matter";
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--black);
  overflow-x: hidden;
  padding-top: 110px;
}

body.menu-open {
  overflow: hidden;
}

.primary-btn {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  border: none;
  display: flex;
  background-color: transparent;
  cursor: pointer;
  font-family: "Matter";
  width: fit-content;
}

.primary-btn span {
  padding: 14px 33px;
  background-color: var(--primary);
  color: white;
  border-radius: 50px;
  transition: all 0.3s;
}

.primary-btn img {
  background-color: var(--primary);
  padding: 18px 15px;
  border-radius: 50px;
  margin-left: -10px;
  transition: all 0.3s;
  max-width: 52px !important;
}

.primary-btn:hover span {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 14px 14px 14px 33px;
}

.primary-btn:hover img {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.primary-btn.light span, .primary-btn.light img{
  background-color: var(--orange_light);
  color: var(--primary);
}

.secondary-btn {
  background-color: var(--black);
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  padding: 16px 30px;
  border-radius: 40px;
  color: var(--white);
  cursor: pointer;
  border: 1px solid var(--black);
  transition: all 0.3s;
  font-family: "Matter";
}

.secondary-btn:hover {
  color: var(--black);
  background-color: white;
}

.primary-text-btn {
  background-color: transparent;
  border: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Matter";
  cursor: pointer;
}

.primary-text-btn img {
  width: 11px;
  height: auto;
  transition: all 0.3s;
}

.primary-text-btn:hover img {
  transform: scale(1.3);
}

.black-outline-btn {
  background-color: transparent;
  border: 2px solid var(--black);
  padding: 17px 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  line-height: 21.6px;
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Matter";
}

.black-outline-btn:hover {
  box-shadow: 0 0 2px 4px #ff6a0031;
}

.orange-btn{
  display: block;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  padding: 12px 20px;
  color: var(--white);
  background-color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 50px;
  transition: all 0.3s;
  font-family: "Matter";
}

.orange-btn:hover{
  background-color: var(--white);
  color: var(--primary);
}

p {
  font-size: 20px;
  line-height: 30px;
}

.h2 {
  font-weight: 700;
  font-size: 120px;
  line-height: 135px;
  margin-bottom: 20px;
}

.h2 img {
  margin-bottom: -10px;
  margin-left: 5px;
  margin-right: 5px;
  max-width: 160px;
}

.h2 span.img-before{
  display: inline-block;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 106px;
  height: 106px;
  margin: 0px 10px;
  background-position: center center;
}

.image-mask {
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: left 0px top 0px;
  border-radius: 50px;
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(230, 230, 230);
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 10px;
}

.blog-section .tabs-section .tab-wrapper::-webkit-scrollbar {
  height: 5px;
}

.container {
  max-width: 1370px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  /* position: sticky;
  top: 0; */
  z-index: 99;
  background: var(--white);
  position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: auto;
  transition: transform 0.5s ease;
}

header.hide-header{
  transform: translateY(-100%);
}

.header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  padding: 15px 20px;
  color: var(--black);
  max-width: 1380px;
  margin: 0 auto;
  gap: 10px;
  position: relative;
}

.header .nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  z-index: 9;
}

.header .nav-item.has-mega-menu .nav-link {
  position: relative;
  padding-right: 20px;
  outline: none;
}

.header .nav-item.has-mega-menu .nav-link::after {
  content: "";
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  right: 0px;
  background-image: url("../images/down-arrow.svg");
  background-repeat: no-repeat;
  width: 10px;
  height: 6px;
}

/* .header .nav-item.has-mega-menu .nav-link::before{
  content: '';
  position: absolute;
  left: -50px;
  top: 0;
  width: 200px;
  height: 180px;
  pointer-events: none;
  background-color: #00000012;
} */

.header .nav-link {
  text-decoration: none;
  color: var(--black);
  padding: 30px 0px 40px 0;
  display: block;
}

.header .mega-content {
  padding: 15px;
}

.header .menu-toggle {
  display: none;
  cursor: pointer;
  width: 21px;
  height: 21px;
  position: relative;
}

.header .menu-toggle .toggle-bar {
  transition-duration: 0.5s;
  position: absolute;
  height: 3px;
  width: 21px;
  top: 9px;
  background-color: var(--black);
}

.header .menu-toggle .toggle-bar::before {
  transition-duration: 0.5s;
  position: absolute;
  width: 21px;
  height: 3px;
  background-color: var(--black);
  content: "";
  top: -7px;
  right: 0;
}

.header .menu-toggle .toggle-bar::after {
  transition-duration: 0.5s;
  position: absolute;
  width: 21px;
  height: 3px;
  background-color: var(--black);
  content: "";
  top: 7px;
  right: 0;
}

.header .menu-toggle.open .toggle-bar {
  background: transparent;
}

.header .menu-toggle.open .toggle-bar::before {
  transform: rotateZ(45deg) scaleX(1.25) translate(4.5px, 4.5px);
}
.header .menu-toggle.open .toggle-bar::after {
  transform: rotateZ(-45deg) scaleX(1.25) translate(4.5px, -4.5px);
}

/* Hide mega menu by default */
.header .mega-menu {
  display: none;
}

.header .nav-item .mega-menu .features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.header .nav-item.mobile-btn {
  display: none;
  padding: 30px 0 0 10px;
}

.header .nav-item .mega-menu .features .card a {
  border-radius: 30px;
  padding: 35px 20px 20px 20px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.3s;
  height: 100%;
}

.header .nav-item .mega-menu .features .card .img-div {
  width: 24px;
  margin-bottom: 15px;
}

.header .nav-item .mega-menu .features .card h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 11px;
  color: var(--black);
}

.header .nav-item .mega-menu .features .card p {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--black);
  margin-bottom: 20px;
}

.header .nav-item .mega-menu .features .card .explore-btn {
  border: 2px solid var(--black);
  padding: 8px 8px 8px 20px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.header .nav-item .mega-menu .features .card a:hover {
  background-color: var(--blue_light);
}

.header .nav-item .mega-menu .features .card a:hover .explore-btn {
  background-color: var(--black);
  color: white;
}

.header .nav-item .mega-menu .features .card a:hover .explore-btn img {
  filter: brightness(0) invert(1);
}

.header .nav-item .mega-menu .trial {
  margin-top: 33px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .nav-item .mega-menu .trial p {
  font-weight: 700;
  font-size: 28px;
  line-height: 33px;
}

.header .header-btn {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer {
  padding: 50px 0 0;
}

.footer .logo img {
  width: 100%;
}

.footer .logo {
  margin-bottom: 65px;
}

.footer .footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer .footer-grid h6 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 15px;
}

.footer .footer-grid ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer .footer-grid ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  color: var(--black);
}

.footer .footer-grid ul.font-bold li a {
  font-weight: 700;
}

.footer .footer-grid ul li a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer .footer-bottom {
  background-color: var(--gray);
  padding: 36px 0;
  margin-top: 65px;
}

.footer .footer-bottom .bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer .footer-bottom .bottom-inner .social {
  display: flex;
  align-items: center;
  gap: 7px;
  list-style: none;
}

.footer .footer-bottom .bottom-inner .social a img {
  transition: all 0.3s;
}

.footer .footer-bottom .bottom-inner .social a:hover img {
  transform: scale(1.1);
}

.home-banner {
  padding: 20px 0 20px;
}

.home-banner .home-flex {
  display: flex;
  gap: 25px;
}

.home-banner .home-flex > div {
  width: 100%;
}

.home-banner .home-flex .left-part {
  max-width: 55%;
  position: relative;
}

.home-banner .home-flex .left-part .image-mask {
  -webkit-mask-image: url("../images/card.png");
  mask-image: url("../images/card.png");
  border-radius: 50px;
  height: 100%;
  background-color: var(--gray);
  padding: 85px 50px 45px;
}

.home-banner .home-flex .left-part h1 {
  font-family: "Matter";
  font-weight: 700;
  font-size: 84px;
  line-height: 108px;
  margin-bottom: 34px;
  color: var(--black);
}

.home-banner .home-flex .left-part h1 span.img-before{
  display: inline-block;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 67px;
  height: 67px;
  margin: 0 10px;
  background-position: center;
}

.home-banner.gamification-banner .home-flex .left-part h1 span.img-before{
  width: 110px;
  height: 55px;
  margin: 0 5px;
}

.home-banner .home-flex .left-part p {
  font-family: "Matter";
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 100px;
  color: var(--black);
  padding-right: 20px;
}

.home-banner .home-flex .left-part p span {
  font-weight: 700;
}

.home-banner .home-flex .left-part .primary-btn {
  position: absolute;
  bottom: 40px;
  right: 40px;
}

.home-banner .home-flex .right-part {
  max-width: 45%;
}

.home-banner .home-flex .right-part img {
  width: 100%;
  border-radius: 50px;
}

.big-text {
  font-weight: 700;
  font-size: 120px;
  line-height: 130px;
  text-align: center;
  color: var(--black);
  margin: 20px 0 40px;
}

.big-text span.img-before{
  display: inline-block;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 140px;
  height: 90px;
  margin: 0px 10px;
  background-position: center center;
}

.img-flex {
  padding: 0px 0 40px;
}

.img-flex .flex-div {
  display: flex;
}

.img-flex .flex-div > div {
  width: 100%;
}

.img-flex .flex-div .left-part {
  background-color: var(--gray);
  border-radius: 50px;
  padding: 100px 50px 60px 95px;
  margin-bottom: 25px;
}

.img-flex .flex-div .left-part h3 {
  font-weight: 700;
  font-size: 48px;
  line-height: 57px;
  margin-bottom: 20px;
  position: relative;
  padding-top: 30px;
}

.img-flex .flex-div .left-part h3::before {
  content: "";
  width: 61px;
  height: 9px;
  background-color: var(--yellow);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 30px;
}

.img-flex .flex-div .left-part p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 28px;
}

.img-flex .flex-div .right-part {
  max-width: 550px;
}

.img-flex .flex-div .right-part img {
  width: 100%;
  border-radius: 50px;
}

.mask-img-text {
  padding: 35px 0;
}

.mask-img-text .inner-flex {
  display: flex;
  justify-content: space-between;
}

.mask-img-text .inner-flex > div {
  width: 100%;
}

.mask-img-text .inner-flex .left-part {
  max-width: 600px;
}

.mask-img-text .inner-flex .left-part h3 {
  font-weight: 700;
  font-size: 120px;
  line-height: 130px;
  margin-bottom: 15px;
  min-width: 900px;
  z-index: 1;
  position: relative;
}

.mask-img-text .inner-flex .left-part h3 span.img-before{
  display: inline-block;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 90px;
  height: 90px;
  margin: 0 10px;
  background-position: center;
}

.mask-img-text .inner-flex .left-part p + p {
  margin-top: 30px;
}

.mask-img-text .inner-flex .right-part {
  max-width: 680px;
  position: relative;
}

.mask-img-text .inner-flex .left-part .primary-text-btn {
  margin-top: 30px;
}

.mask-img-text .inner-flex .right-part .image-mask {
  -webkit-mask-image: url("../images/card2.png");
  mask-image: url("../images/card2.png");
  height: 100%;
}

.mask-img-text .inner-flex .right-part .image-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mask-img-text .inner-flex .right-part .primary-btn {
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.mask-img-text.flexible-customize .inner-flex {
  background-color: var(--blue_light);
  padding: 50px 60px 50px 90px;
  border-radius: 50px;
  align-items: center;
}

.mask-img-text.flexible-customize .image-mask {
  mask-image: none !important;
}

.mask-img-text.flexible-customize .inner-flex .left-part p {
  max-width: 550px;
}

.mask-img-text.thrive-gamification .right-part {
  max-width: 560px;
}

.mask-img-text.thrive-gamification .inner-flex .right-part .image-mask {
  mask-image: url("../images/card3.png");
}

.email-marketing {
  padding: 40px 0 30px;
}

.email-marketing h4 {
  font-weight: 700;
  font-size: 250px;
  line-height: 200px;
  text-align: center;
}

.email-marketing h5 {
  font-weight: 700;
  font-size: 120px;
  line-height: 130px;
  text-align: center;
}

.email-marketing .inner-flex {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.img-flex.email-marketing .flex-div {
  gap: 30px;
  margin-top: 50px;
}

.img-flex.email-marketing .flex-div .right-part {
  max-width: 650px;
}

.img-flex.email-marketing .flex-div .left-part {
  margin-bottom: 0;
}

.img-flex.email-marketing .big-text{
  display: none;
}

.mask-img-text.gray-wrapper .inner-flex {
  background-color: var(--gray);
  padding: 95px 85px 85px 95px;
}

.mask-img-text.gray-wrapper .inner-flex .left-part h3 {
  min-width: unset;
}

.mask-img-text.gray-wrapper .inner-flex .right-part {
  max-width: 490px;
}

.smackdab-click {
  padding: 30px 0;
  overflow: hidden;
}

.smackdab-click h2 {
  font-weight: 700;
  font-size: 130px;
  line-height: 130px;
  max-width: 760px;
  margin-bottom: 40px;
}

.smackdab-click h3 {
  font-weight: 700;
  font-size: 300px;
  line-height: 300px;
  text-align: right;
  position: relative;
}

.smackdab-click h3::before {
  content: "";
  position: absolute;
  width: 40%;
  max-width: 350px;
  height: 9px;
  border-radius: 30px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--yellow);
}

.smackdab-click .click-div {
  margin-top: 80px;
  background-color: var(--gray);
  padding: 30px 85px 60px;
  border-radius: 50px;
  position: relative;
}

.smackdab-click .click-div h6 {
  font-weight: 700;
  font-size: 16px;
  line-height: 19.2px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange_light);
  border-radius: 20px;
  gap: 10px;
  width: fit-content;
  padding: 10px 30px;
  height: 60px;
  position: absolute;
  left: 35px;
  transform: rotate(5deg);
  bottom: 120px;
}

.smackdab-click .click-div h6:nth-child(2) {
  left: unset;
  right: 85px;
  transform: rotate(-5deg);
  bottom: 130px;
}

.smackdab-click .img-div {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 30px;
}

.smackdab-click .img-div img {
  max-width: 215px;
  width: 100%;
}

.smackdab-click .img-div img:first-child {
  margin-top: 20px;
}

.smackdab-click .img-div img:nth-child(3) {
  margin-top: 30px;
}

.smackdab-click p {
  font-weight: 400;
  font-size: 22px;
  line-height: 34px;
  text-align: center;
  max-width: 570px;
  margin: 0 auto 40px;
}

.smackdab-click .primary-btn {
  margin: 0 auto;
}

.resource-hub {
  padding: 80px 0 60px;
  text-align: center;
}

.resource-hub h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 57.6px;
  text-align: center;
  margin: 0 auto 30px;
  max-width: 740px;
}

.resource-hub p {
  max-width: 730px;
  margin: 0 auto;
}

.resource-hub .btn-flex {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 10px;
  justify-content: center;
}

.resource-hub .resource-slider {
  width: 100%;
  margin: 80px auto 0;
  overflow: hidden;
  display: block;
}

.resource-hub .resource-slider2 {
  width: 100%;
  margin: 0 auto;
  display: block;
  overflow: hidden;
}

.resource-hub .resource-slider .slick-slide,
.resource-hub .resource-slider2 .slick-slide {
  text-align: center;
}

.resource-hub .resource-slider .img-div,
.resource-hub .resource-slider2 .img-div {
  border-radius: 20px;
  height: 247px;
  padding: 0 10px;
}

.resource-hub .resource-slider .img-div img,
.resource-hub .resource-slider2 .img-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 417px;
}

.resource-hub .resource-slider2 {
  margin-top: 20px;
}

.faq {
  padding: 30px 0;
}

.faq h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 57px;
  text-align: center;
  margin-bottom: 62px;
}

.accordion {
  border-radius: 50px;
  background: var(--gray);
  padding: 84px 105px 94px 94px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 0.5px solid #d6d1d1;
  padding-bottom: 20px;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  padding: 20px 0px 0px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: start;
}

.accordion-header img {
  margin-top: 5px;
}

.accordion-header p {
  font-weight: 600;
  font-size: 24px;
  line-height: 28.8px;
}

.accordion-content {
  max-height: 0; /* Collapsed state */
  overflow: hidden; /* Hide content when collapsed */
  transition: max-height 0.5s ease-in-out;
  padding: 0; /* Padding hidden when collapsed */
}

.accordion-content p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  max-width: 800px;
  margin-top: 20px;
}

/* .accordion .accordion-item.active .accordion-header {
  padding-bottom: 20px;
} */

.cta-section {
  padding: 140px 0 100px;
  text-align: center;
}

.cta-section .inner-wrapper {
  background: var(--blue_light);
  position: relative;
  padding: 84px 20px 74px;
  border-radius: 50px;
}

.cta-section h2 {
  font-weight: 700;
  font-size: 64px;
  line-height: 76px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 15px;
}

.cta-section p {
  max-width: 585px;
  margin: 0 auto 30px;
}

.cta-section .primary-btn {
  margin: 0 auto;
}

.cta-section .cta-img img {
  position: absolute;
  left: 60px;
  top: -90px;
  max-width: 230px;
}

.cta-section .cta-img img:nth-child(2) {
  left: unset;
  right: 65px;
  top: unset;
  bottom: -80px;
}

.all-in-one {
  text-align: center;
  padding: 50px 0;
}

.all-in-one h2 {
  font-weight: 700;
  font-size: 120px;
  line-height: 130px;
  margin-bottom: 80px;
}

.all-in-one img {
  width: 100%;
}

.multiple-tools {
  padding: 40px 0;
}

.multiple-tools .img-div {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.multiple-tools h2 {
  font-weight: 700;
  font-size: 90px;
  line-height: 108px;
  text-align: center;
  margin-bottom: 50px;
}

.multiple-tools .img-div img {
  display: block;
}

.multiple-tools .img-div img:first-child {
  transform: rotate(-12.71deg);
}

.multiple-tools .img-div img:nth-child(2) {
  transform: rotate(-16.82deg);
  margin-top: 70px;
}

.multiple-tools .img-div img:nth-child(3) {
  transform: rotate(12.76deg);
  margin-top: 50px;
}

.multiple-tools .img-div img:nth-child(4) {
  transform: rotate(-7.68deg);
  margin-top: 90px;
}

.multiple-tools .img-div img:nth-child(5) {
  transform: rotate(18.36deg);
}

.tabs-section {
  padding: 60px 0 0;
}

.tabs-section .wrapper {
  margin: auto;
  margin-top: 80px;
}
.tabs-section .tab-wrapper {
  text-align: center;
  display: block;
  margin: auto;
  max-width: 1270px;
}
.tabs-section .tabs {
  margin: 0;
  padding: 0;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.tabs-section .tab-link {
  list-style: none;
  padding: 20px 30px;
  color: var(--black);
  cursor: pointer;
  font-weight: 500;
  transition: all ease 0.5s;
  border-radius: 20px;
  background-color: var(--gray);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.tabs-section .tab-link:hover,
.tabs-section .tab-link.active {
  background-color: var(--blue_light);
}
.tabs-section .tab-link p {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--black);
}
.tabs-section .content-wrapper {
  padding: 40px 80px;
  margin-top: 120px;
}
.tabs-section .tab-content {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeIn 0.5s ease 1 forwards;
}
.tabs-section .tab-content.active {
  display: block;
}

.tabs-section .content-wrapper .content-flex {
  display: flex;
  gap: 80px;
}

.tabs-section .content-wrapper .content-flex > div {
  width: 100%;
}

.tabs-section .content-wrapper .content-flex .left-part {
  max-width: 450px;
}

.tabs-section .content-wrapper .content-flex .left-part img {
  width: 100%;
}

.tabs-section .content-wrapper .content-flex .right-part {
  max-width: 470px;
}

.tabs-section .content-wrapper .content-flex .right-part h3 {
  font-weight: 700;
  font-size: 38px;
  line-height: 45.6px;
  margin-bottom: 18px;
}

.tabs-section .content-wrapper .content-flex .right-part p {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 24px;
}

.one-platform {
  padding: 60px 0;
  text-align: center;
}

.one-platform h2 {
  font-weight: 700;
  font-size: 130px;
  line-height: 156px;
  margin: 0 auto 30px;
  max-width: 900px;
}

.one-platform p {
  max-width: 650px;
  margin: 0 auto 45px;
}

.one-platform .btn-wrapper {
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 215px;
  max-width: 650px;
  margin: 0 auto;
  border-radius: 50px;
  border: 2px dashed #fff;
  background: linear-gradient(#fff 0 0) padding-box,
    linear-gradient(180deg, #d9d9d9 0%, #ffffff 70%) border-box;
}

.mask-img-text.all-in-one-crm {
  padding: 0 0 50px;
}

.mask-img-text.all-in-one-crm .inner-flex {
  background-color: var(--gray);
}

.tabs-section .content-wrapper .content-flex .right-part h4 {
  display: none;
}

.one-platform-all {
  padding: 180px 0 40px;
}

.one-platform-all .container {
  position: relative;
}

.one-platform-all .inner-div .image-mask {
  -webkit-mask-image: url("../images/card4.png");
  mask-image: url("../images/card4.png");
  background-color: var(--blue_light);
  padding: 0px 100px 125px 100px;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
}

.one-platform-all .inner-div .left-part {
  max-width: 600px;
  padding-top: 100px;
}

.one-platform-all h2 {
  font-weight: 700;
  font-size: 64px;
  line-height: 76.8px;
  margin-bottom: 25px;
}

.one-platform-all .img-div {
  text-align: right;
  top: -140px;
  right: 50px;
  position: absolute;
}

.one-platform-all .img-div img {
  width: 100%;
  max-width: 500px;
}

.one-platform-all .primary-btn {
  position: absolute;
  bottom: 40px;
  right: 90px;
}

.img-flex.gamification .flex-div {
  flex-direction: row-reverse;
  align-items: center;
  gap: 0px 80px;
  justify-content: center;
  margin-top: 60px;
}

.img-flex.gamification .flex-div .left-part {
  background-color: transparent;
  padding: 0;
  max-width: 480px;
}

.img-flex.tools .container {
  position: relative;
}

.img-flex.tools .path-img {
  position: absolute;
  top: 250px;
  left: -60px;
}

.img-flex.tools h2 {
  text-align: left;
}

.img-flex.tools .flex-div {
  align-items: center;
  margin-top: -90px;
}

.img-flex.tools .flex-div .left-part {
  padding: 0;
  background-color: transparent;
}

.img-flex.orange {
  position: relative;
  padding: 80px 0;
}

.img-flex.orange .flex-div {
  background-color: var(--orange_light);
  border-radius: 50px;
  padding: 0px 154px 83px 128px;
  justify-content: space-between;
  align-items: center;
}

.img-flex.orange .flex-div .left-part {
  padding: 0;
  background-color: transparent;
}

.img-flex.orange .flex-div .left-part h3::before {
  display: none;
}

.img-flex.reverce .flex-div {
  flex-direction: row-reverse;
}

.img-flex.reverce .flex-div .right-part {
  max-width: 350px;
  margin-top: -40px;
}

.img-flex.reverce .flex-div .left-part {
  max-width: 580px;
  margin-bottom: 0;
}

.gamification-magic {
  padding: 60px 0 150px;
}

.gamification-magic h2 {
  font-weight: 700;
  font-size: 120px;
  line-height: 144px;
  text-align: center;
  margin: 0 auto 75px;
  max-width: 900px;
}

.gamification-magic .inner-flex {
  display: flex;
  align-items: start;
}

.gamification-magic .inner-flex > div {
  width: 100%;
}

.gamification-magic .inner-flex .left-part {
  backdrop-filter: blur(16px);
  box-shadow: 0px 4px 20px 0px #00000033;
  padding: 80px 120px 90px 100px;
  border-radius: 50px;
  position: relative;
  z-index: 1;
}

.gamification-magic .inner-flex .right-part {
  border-radius: 50px;
  position: relative;
  margin-left: -60px;
  margin-top: 140px;
}

.gamification-magic .inner-flex .right-part img {
  max-width: 670px;
}

.star-div .star-img {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 295px !important;
}

.level-up {
  padding: 80px 0;
}

.level-up .inner-div {
  background-color: var(--gray);
  padding: 110px 20px 66px;
  text-align: center;
  border-radius: 50px;
  position: relative;
}

.level-up .inner-div h2 {
  max-width: 790px;
  margin: 0 auto 20px;
}

.level-up .inner-div p {
  max-width: 550px;
  margin: 0 auto 50px;
}

.level-up .inner-div .primary-btn {
  margin: 0 auto;
}

.level-up .inner-div h2 img{
  max-width: 100px;
  width: 100%;
  margin-bottom: -10px;
}

.img-flex.no-bg {
  padding: 50px 0;
}

.img-flex.no-bg .flex-div .left-part {
  background-color: transparent;
  padding: 0;
}

.img-flex.no-bg .flex-div {
  align-items: center;
}

.img-flex.no-bg .flex-div .left-part h3 {
  padding-top: 0;
}

.img-flex.no-bg .flex-div .left-part h3::before {
  display: none;
}

.img-flex.no-bg .flex-div .left-part h3::after{
  content: '';
  position: absolute;
  top: -210px;
  left: 130px;
  width: 406px;
  height: 174px;
  border: 2px dashed #EAEAEA;
  border-top-left-radius: 20px;
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.ai-works {
  padding: 40px 0;
}

.ai-works .inner-flex {
  display: flex;
  gap: 0 24px;
}

.ai-works .inner-flex > div {
  width: 100%;
}

.ai-works .inner-flex .left-part {
  background-color: var(--gray);
  border-radius: 50px;
  position: relative;
  padding: 100px 85px 85px 95px;
  margin-bottom: 35px;
}

.ai-works .inner-flex .left-part h3 {
  font-weight: 700;
  font-size: 44px;
  line-height: 52.8px;
  margin: 0 0 20px;
}

.ai-works .inner-flex .left-part p b {
  margin: 25px 0 10px;
  display: block;
}

.ai-works .inner-flex .right-part {
  max-width: 520px;
  border-radius: 50px;
}

.ai-works .inner-flex .right-part img {
  width: 100%;
}

.ai-works .star-div .star-img {
  left: 25%;
}

.ai-works h2 {
  margin-bottom: 90px;
}

.automation-agents {
  padding: 40px 0;
}

.automation-agents .container {
  position: relative;
}

.automation-agents .shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: top;
}

.automation-agents h2 {
  font-size: 190px;
  line-height: 190px;
  margin-bottom: 110px;
  position: relative;
  z-index: 1;
}

.automation-agents h2 span.img-before{
  display: inline-block;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 160px;
  height: 90px;
  margin: 0px 10px;
  background-position: center center;
}

.automation-agents .inner-flex {
  position: relative;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.automation-agents .inner-flex .left-part {
  max-width: 620px;
  padding: 10px 0 50px 50px;
}

.automation-agents .inner-flex .left-part p {
  margin-bottom: 20px;
}

.automation-agents .inner-flex .right-part {
  border-radius: 50px;
  max-width: 400px;
}

.automation-agents .inner-flex .right-part img {
  width: 100%;
}

.automation-agents .inner-flex h3 {
  font-size: 44px;
  line-height: 52.8px;
  margin-bottom: 20px;
}

.automation-agents .inner-flex > div {
  width: 100%;
}

.flex-content {
  padding: 40px 0;
}

.flex-content .inner-flex {
  display: flex;
  gap: 0 70px;
  align-items: center;
}

.flex-content .inner-flex > div {
  width: 100%;
}

.flex-content .inner-flex .left-part {
  max-width: 480px;
  border-radius: 50px;
}

.flex-content .inner-flex .left-part img {
  width: 100%;
}

.flex-content .inner-flex .right-part {
  margin-bottom: 40px;
}

.flex-content.bg-orange .inner-flex {
  background-color: var(--orange_light);
  padding: 20px 0px 0 100px;
  border-radius: 50px;
}

.flex-content.reverce .inner-flex {
  flex-direction: row-reverse;
  gap: 0 10px;
}

.flex-content.bg-orange .inner-flex .left-part {
  max-width: 600px;
  margin-bottom: -60px;
}

.contact-management {
  padding: 60px 0;
}

.contact-management h2 {
  text-align: center;
  margin-bottom: 80px;
}

.contact-management .inner-flex {
  display: flex;
  gap: 40px;
  align-items: start;
  justify-content: center;
}

.contact-management .inner-flex .left-part {
  max-width: 460px;
  margin-top: -120px;
}

.contact-management .inner-flex .left-part img {
  width: 100%;
}

.contact-management .inner-flex .right-part {
  background-color: var(--gray);
  padding: 80px 90px;
  border-radius: 50px;
}

.contact-management .inner-flex .right-part p {
  margin-bottom: 40px;
  max-width: 460px;
}

.contact-management.magic .inner-flex {
  align-items: center;
  gap: 20px 90px;
}

.contact-management.magic .inner-flex .right-part {
  position: relative;
  background: linear-gradient(180deg, #eaeaea 0%, #ffffff 100%);
}

.contact-management.magic .inner-flex .right-part .star {
  position: absolute;
  top: -93px;
  left: 50px;
}

.contact-management.magic h2 {
  margin-bottom: 110px;
}

.contact-management.magic .inner-flex .left-part {
  margin-top: 0;
}

.level-up.take-break .inner-div h2 {
  max-width: unset;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.level-up.take-break .inner-div h2 span.img-before{
  display: inline-block;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 160px;
  height: 140px;
  background-position: center center;
  border-radius: 32px;
}

.level-up.blue-bg .inner-div {
  background-color: var(--blue_light);
}

.level-up.take-break .star-img {
  display: none;
}

.ai-banner {
  padding: 40px 0 60px;
}

.ai-banner .inner-div {
  position: relative;
}

.ai-banner .inner-div .image-mask {
  padding: 90px 20px 190px 65px;
  background-color: var(--gray);
  border-radius: 50px;
  -webkit-mask-image: url("../images/card5.png");
  mask-image: url("../images/card5.png");
}

.ai-banner h2 {
  margin-bottom: 20px;
}

.ai-banner .inner-div .primary-btn {
  position: absolute;
  bottom: 40px;
  left: 400px;
}

.ai-banner .banner-img {
  position: absolute;
  max-width: 550px;
  width: 100%;
  bottom: 50px;
  right: 20px;
}

.morning-brief {
  padding: 50px 0;
}

.morning-brief h2 {
  max-width: 700px;
}

.morning-brief .content {
  text-align: right;
  position: relative;
}

.morning-brief .content img {
  max-width: 815px;
  width: 100%;
  margin-left: auto;
}

.morning-brief .content .text {
  backdrop-filter: blur(16px);
  box-shadow: 0px 4px 20px 0px #00000033;
  padding: 45px;
  background-color: #ffffff12;
  border-radius: 50px;
  max-width: 512px;
  position: absolute;
  top: -40px;
  right: 30px;
  text-align: left;
}

.home-banner.email-banner .home-flex .left-part .image-mask {
  mask-image: none;
  height: unset;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}

.home-banner.email-banner .home-flex .left-part {
  max-width: unset;
  background-color: var(--gray);
  padding: 90px 60px 50px 60px;
  border-radius: 50px;
}

.home-banner.email-banner .home-flex .right-part {
  max-width: 460px;
}

.home-banner.email-banner .home-flex .left-part .primary-btn {
  position: unset;
}

.home-banner.email-banner .home-flex .left-part p {
  margin-bottom: 50px;
}

.contact-management.email .inner-flex .right-part {
  background-color: transparent;
  padding: 0;
}

.contact-management.email .inner-flex {
  gap: 40px 90px;
  align-items: center;
  justify-content: start;
  padding-left: 50px;
}

.contact-management.email .inner-flex .left-part {
  max-width: 530px;
  margin-top: -280px;
}

.contact-management.email h2 {
  position: relative;
}

.flex-content.bg-gray .inner-flex {
  gap: 0 20px;
}

.flex-content.bg-gray .inner-flex .right-part {
  padding: 80px 80px 90px 80px;
  background-color: var(--gray);
  border-radius: 50px;
}

.flex-content.bg-gray .inner-flex .left-part {
  max-width: 630px;
}

.data-driven {
  padding: 50px 0;
}

.data-driven h2 {
  margin-bottom: 60px;
}

.data-driven .inner-flex {
  display: flex;
  gap: 20px 90px;
  align-items: center;
}

.data-driven .inner-flex > div {
  width: 100%;
}

.data-driven .inner-flex .left-part {
  max-width: 440px;
}

.data-driven .inner-flex .right-part {
  max-width: 720px;
  position: relative;
}

.data-driven .inner-flex .left-part img {
  width: 100%;
}

.data-driven .inner-flex .right-part .image-mask {
  mask-image: url("../images/card6.png");
  background-color: var(--gray);
  padding: 95px 120px 110px;
}

.data-driven .inner-flex .right-part .image-mask p {
  margin-bottom: 60px;
}

.data-driven .inner-flex .right-part .primary-btn {
  position: absolute;
  bottom: 20px;
  left: 90px;
}

.built-marketer {
  padding: 50px 0;
}

.built-marketer h2 {
  margin-bottom: 45px;
}

.built-marketer h2 span {
  display: block;
  padding-left: 20%;
}

.built-marketer .inner-flex {
  display: flex;
  gap: 80px;
  align-items: start;
}

.built-marketer .inner-flex > div {
  width: 100%;
}

.built-marketer .inner-flex .left-part img {
  max-width: 100px;
  width: 100%;
  margin-bottom: 45px;
}

.built-marketer .inner-flex .left-part p {
  padding: 0 0 0 30px;
  max-width: 540px;
}

.built-marketer .inner-flex .right-part {
  max-width: 450px;
  padding-top: 100px;
}

.built-marketer .inner-flex .right-part img {
  width: 100%;
}

.level-up.superpower .inner-div p {
  max-width: 660px;
}

.contact-management.collaboration h2 {
  text-align: left;
}

.contact-management.collaboration h2 span.img-before{
  display: inline-block;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  margin: 0px 10px;
  background-position: center center;
}

.contact-management.collaboration h2 img {
  width: 100%;
  max-width: 100px;
  margin-bottom: -20px;
}

.contact-management.collaboration .inner-flex {
  gap: 0 20px;
  align-items: unset;
}

.contact-management.collaboration .inner-flex > div {
  width: 100%;
}

.contact-management.collaboration .inner-flex .left-part {
  margin-top: 0;
  max-width: 570px;
}

.contact-management.collaboration .inner-flex .right-part {
  margin-bottom: 40px;
}

.contact-management.email-client .inner-flex .left-part {
  margin-top: 0px;
}

.workflow {
  padding: 40px 0;
}

.workflow h2 {
  text-align: center;
  margin-bottom: 50px;
}

.workflow .inner-flex {
  display: flex;
  gap: 20px 100px;
  align-items: center;
  justify-content: center;
}

.workflow .inner-flex.reverce {
  flex-direction: row-reverse;
}

.workflow .inner-flex + .inner-flex {
  margin-top: 100px;
}

.workflow .inner-flex > div {
  width: 100%;
}

.workflow .inner-flex .left-part {
  max-width: 450px;
}

.workflow .inner-flex .right-part {
  max-width: 490px;
}

.workflow .inner-flex img {
  width: 100%;
  max-width: 450px;
}

.workflow .inner-flex h3 {
  font-weight: 700;
  font-size: 44px;
  line-height: 52.8px;
  text-align: left;
  margin-bottom: 20px;
}

.workflow .inner-flex p {
  text-align: left;
}

.workflow .inner-flex p + p {
  margin-top: 20px;
}

.the-talk {
  padding: 90px 0 40px;
  text-align: center;
}

.the-talk img {
  width: 100%;
  max-width: 950px;
}

.the-talk p {
  max-width: 590px;
  margin: 20px auto 40px;
}

.why-rocks {
  padding: 40px 0;
}

.why-rocks .inner-flex {
  background-color: var(--blue_light);
  border-radius: 50px;
  padding: 120px 100px 50px 80px;
  display: flex;
  position: relative;
  align-items: center;
  gap: 20px 100px;
}

.why-rocks .star-img {
  left: 40px;
  transform: none;
}

.why-rocks p {
  margin-bottom: 50px;
}

.home-banner.customization .home-flex .left-part .image-mask {
  mask-image: url("../images/card7.png");
  background-color: var(--blue_light);
}

.home-banner.customization .home-flex .left-part .primary-btn {
  left: 80px;
}

.personalized-layout {
  padding: 40px 0;
}

.personalized-layout .flex-div {
  display: flex;
  align-items: center;
  gap: 0 110px;
  margin-top: -70px;
}

.personalized-layout .flex-div > div {
  width: 100%;
}

.personalized-layout .flex-div img {
  width: 100%;
  max-width: 490px;
}

.custom-fields {
  padding: 40px 0;
}

.custom-fields h2 {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
}

.custom-fields .inner-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px 100px;
}

.custom-fields .inner-flex > div {
  width: 100%;
}

.custom-fields .inner-flex .left-part {
  max-width: 400px;
}

.custom-fields .inner-flex .left-part img {
  width: 100%;
}

.custom-fields .inner-flex.flex1 {
  flex-direction: row-reverse;
}

.custom-fields .inner-flex.flex1 .right-part {
  max-width: 530px;
}

.custom-fields .inner-flex + .inner-flex {
  margin-top: 100px;
}

.custom-fields .inner-flex.flex2 .right-part {
  max-width: 730px;
  position: relative;
}

.custom-fields .inner-flex.flex2 .right-part .image-mask {
  background-color: var(--gray);
  padding: 80px 85px 175px;
  mask-image: url("../images/card8.png");
}

.custom-fields .inner-flex.flex2 .right-part .primary-btn {
  position: absolute;
  bottom: 20px;
  left: 60px;
}

.ad-workflow {
  padding: 100px 0 50px;
}

.ad-workflow .inner-flex {
  position: relative;
  background-color: var(--gray);
  padding: 75px 150px 20px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 50px;
}

.ad-workflow .inner-flex .left-part {
  max-width: 500px;
}

.ad-workflow .inner-flex .right-part {
  max-width: 430px;
}

.ad-workflow .inner-flex .right-part img {
  width: 100%;
}

.ad-workflow .inner-flex > div {
  width: 100%;
}

.ad-workflow .star-div .star-img {
  left: 20%;
}

.ad-workflow.dynamic .inner-flex {
  background-color: transparent;
  padding-top: 0;
  padding-bottom: 0;
}

.ad-workflow.dynamic .inner-flex .left-part {
  max-width: unset;
}

.ad-workflow.dynamic .star-img {
  display: none;
}

.break-free {
  padding: 50px 0;
}

.break-free .image-mask {
  background-color: var(--blue_light);
  padding: 120px 90px 180px 100px;
}

.break-free .container {
  position: relative;
}

.break-free p {
  max-width: 570px;
}

.break-free .img {
  width: 100%;
  max-width: 370px;
  position: absolute;
  bottom: -60px;
  right: 80px;
}

.break-free .primary-btn {
  position: absolute;
  bottom: 20px;
  left: 100px;
}

.break-free .star-div .star-img {
  z-index: 9;
  left: 20%;
}

.break-free .image-mask {
  mask-image: url("../images/card9.png");
}

.enterprises {
  padding: 50px 0;
  text-align: center;
}

.enterprises h2 {
  max-width: 900px;
  margin: 0 auto 30px;
}

.enterprises h2 span {
  font-family: "Miniver", serif;
  font-weight: 400;
}

.enterprises .inner-div {
  border-radius: 50px;
  background-color: var(--blue_light);
  padding: 90px 20px 80px;
}

.enterprises p {
  max-width: 650px;
  margin: 0 auto 40px;
}

.enterprises .btn-div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 0;
}

.enterprises .btn-div .shapes {
  display: flex;
}

.enterprises .shapes .square {
  width: 50px;
  min-width: 50px;
  height: 50px;
  background-color: var(--yellow);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.enterprises .shapes .triangle {
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 50px solid var(--blue);
  cursor: pointer;
  transition: all 0.3s;
}

.enterprises .shapes .square:hover {
  transform: scale(1.2);
}

.enterprises .shapes .triangle:hover {
  transform: rotate(180deg);
}

.fits-all {
  padding: 50px 0;
  text-align: center;
}

.fits-all p {
  max-width: 620px;
  margin: 0 auto 50px;
}

.fits-all .primary-btn {
  margin: 0 auto 60px;
}

.fits-all .img-flex {
  display: flex;
  justify-content: center;
}

.fits-all .img-flex img {
  width: 100%;
  max-width: 320px;
}

.fits-all .img-flex .img-div {
  border-radius: 50px;
}

.fits-all .img-flex .img-div:nth-child(1) {
  transform: rotate(-6deg);
}

.fits-all .img-flex .img-div:nth-child(2) {
  transform: rotate(6deg);
}

.fits-all .img-flex .img-div:nth-child(4) {
  transform: rotate(5deg);
}

.small-to-mid {
  padding: 50px 0;
}

.small-to-mid .inner-flex {
  display: flex;
  gap: 20px 72px;
}

.small-to-mid .inner-flex > div {
  width: 100%;
}

.small-to-mid .inner-flex .left-part {
  padding-left: 80px;
  background-image: url("../images/vector7.svg");
  background-repeat: no-repeat;
  background-position: center left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.small-to-mid .inner-flex .right-part {
  max-width: 460px;
}

.small-to-mid .inner-flex .right-part img {
  width: 100%;
}

.small-to-mid h2 .small {
  font-size: 50px;
  line-height: 60px;
}

.small-to-mid h2 .to {
  font-size: 70px;
  line-height: 90px;
  margin: 0 15px;
  display: inline-block;
}

.small-to-mid .content {
  border-radius: 50px;
  background-color: var(--blue_light);
  padding: 80px 100px;
}

.sales-marketing {
  padding: 90px 0 50px;
}

.sales-marketing .inner-flex {
  display: flex;
  gap: 20px 70px;
  align-items: end;
  background-color: var(--gray);
  border-radius: 50px;
  padding: 90px 60px 60px 50px;
  position: relative;
}

.sales-marketing .inner-flex > div {
  width: 100%;
}

.sales-marketing .inner-flex .left-part {
  max-width: 400px;
  margin-bottom: -120px;
}

.sales-marketing .inner-flex .left-part img {
  width: 100%;
}

.sales-marketing .star-div .star-img {
  left: unset;
  right: 10%;
  transform: unset;
}

.sales-marketing p {
  margin: 0 0 50px;
  max-width: 490px;
}

.customer-services {
  padding: 70px 0 40px;
}

.customer-services .inner-flex {
  display: flex;
  margin-top: -50px;
}

.customer-services .inner-flex > div {
  width: 100%;
}

.customer-services .section-title {
  font-size: 90px;
  line-height: 108px;
  max-width: 800px;
}

.customer-services .left-part {
  display: flex;
  gap: 20px 50px;
  align-items: center;
}

.customer-services .right-part {
  max-width: 500px;
}

.customer-services .right-part img {
  width: 100%;
}

.mask-img-text.consultants .image-mask {
  mask-image: none !important;
}

.mask-img-text.consultants .inner-flex {
  gap: 20px 80px;
  align-items: center;
}

.mask-img-text.consultants .inner-flex .left-part {
  max-width: unset;
}

.mask-img-text.consultants .inner-flex .left-part h3 {
  min-width: unset;
}

.mask-img-text.consultants .inner-flex .left-part p {
  max-width: 460px;
}

.mask-img-text.consultants .inner-flex .right-part {
  max-width: 450px;
}

.contact-management.community .inner-flex {
  justify-content: start;
  align-items: end;
  gap: 0 0px;
}

.contact-management.community .inner-flex .left-part {
  max-width: 660px;
  margin-top: -220px;
}

.contact-management.community .inner-flex .right-part {
  background-color: #ffffff4d;
  box-shadow: 0px 16px 40px 0px #00000014;
  backdrop-filter: blur(16px);
  padding: 60px 90px;
  margin-left: -70px;
  box-shadow: 0px 3px 25px 0px #00000014;
}

.contact-management.community .inner-flex .right-part p {
  margin-bottom: 0;
}

.ai-works.real-estate .inner-flex .left-part {
  margin-bottom: 0;
}

.contact-management.education .inner-flex {
  align-items: center;
  gap: 20px 100px;
}

.contact-management.education .inner-flex .left-part {
  margin-top: 0px;
}

.contact-management.education .inner-flex .right-part {
  background-color: #ffffff4d;
  padding: 60px 100px;
  box-shadow: 0px 16px 40px 0px #00000014;
  backdrop-filter: blur(16px);
  margin-left: 0;
}

.blog-section {
  padding: 40px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 25px;
}

.blog-card .img-div {
  height: 256px;
  border-radius: 32px;
  margin-bottom: 20px;
}

.blog-card .img-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}

.blog-card .content .label {
  margin-bottom: 10px;
}

.blog-card .content p {
  font-weight: 500;
}

.blog-card .content p a {
  color: var(--black);
}

.blog-card .content .label p {
  background-color: var(--gray);
  border-radius: 10px;
  padding: 5px 10px;
  color: var(--black);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  width: fit-content;
  font-weight: 400;
}

.blog-card .content h4 {
  color: var(--dark);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin: 10px 0;
}

.blog-card .content .author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-card .content .author .img {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.blog-card .content p {
  text-align: left;
}

.blog-card .content .author .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card .content .author h5 {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.blog-card .content .author h6 {
  color: var(--dark);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.blog-section .h2 {
  text-align: center;
}

.blog-section .h2 + p {
  text-align: center;
}

.blog-section .tabs-section .wrapper {
  max-width: 1270px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
}

.blog-section .tabs-section .tab-wrapper {
  max-width: unset;
}

.blog-section .tabs-section .content-wrapper {
  margin-top: 0;
  padding: 50px 0px 0px;
}

.blog-section .pagination, .related-blog .pagination {
  margin-top: 60px;
}

.blog-section .pagination .pagination-list, .related-blog .pagination .pagination-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
}

.blog-section .pagination .pagination-list li a, .related-blog .pagination .pagination-list li a {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray);
  font-weight: 400;
  font-size: 18px;
  line-height: 21.6px;
  color: var(--black);
}

.blog-section .pagination .pagination-list li a.current-page, .related-blog .pagination .pagination-list li a.current-page {
  background-color: var(--blue_light);
}

.blog-section .pagination .pagination-list .prev-btn, .related-blog .pagination .pagination-list .prev-btn{
  margin-right: auto;
}

.blog-section .pagination .pagination-list .next-btn, .related-blog .pagination .pagination-list .next-btn{
  margin-left: auto;
}

.blog-section .pagination .pagination-list .prev-btn span, .blog-section .pagination .pagination-list .next-btn span,.related-blog .pagination .pagination-list .prev-btn span, .related-blog .pagination .pagination-list .next-btn span{
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray);
  font-weight: 400;
  font-size: 18px;
  line-height: 21.6px;
  color: var(--black);
  cursor: pointer;
}

.join-smackdab {
  padding: 40px 0 70px;
}

.join-smackdab h2 {
  text-align: left !important;
}

.join-smackdab p {
  text-align: left !important;
}

.join-smackdab .inner-flex {
  background-color: var(--blue_light);
  border-radius: 50px;
  padding: 110px 95px 0px 115px;
  display: flex;
  gap: 20px 80px;
}

.join-smackdab .inner-flex > div {
  width: 100%;
}

.join-smackdab .inner-flex .right-part {
  max-width: 400px;
  margin-bottom: -50px;
}

.join-smackdab .inner-flex .right-part img {
  width: 100%;
}

.join-smackdab .signup {
  display: flex;
  margin-top: 40px;
}

.join-smackdab .signup input {
  height: 51px;
  border: 1px solid var(--primary);
  padding: 10px 10px 10px 23px;
  background-color: transparent;
  border-radius: 50px 0 0 50px;
  font-size: 18px;
  color: var(--black);
  outline: none;
  width: calc(100% - 130px);
  max-width: 254px;
}

.join-smackdab .signup input::placeholder {
  color: var(--dark);
}

.join-smackdab .signup a {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: var(--white);
  background-color: var(--primary);
  border-radius: 0 50px 50px 0;
  border: 1px solid var(--primary);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.comparison {
  padding: 20px 0 60px;
}

.comparison .inner-div {
  background-color: var(--orange_light);
  padding: 70px 20px 90px;
  border-radius: 50px;
  text-align: center;
  position: relative;
}

.comparison h2 {
  max-width: 530px;
  margin: 0 auto 40px;
  text-align: center;
}

.comparison p {
  max-width: 580px;
  text-align: center;
  margin: 0 auto 50px;
}

.comparison .primary-btn {
  margin: 0 auto;
}

.comparison .images img:nth-child(1) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50px;
  width: 100%;
  max-width: 280px;
}

.comparison .images img:nth-child(2) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -40px;
  width: 100%;
  max-width: 450px;
}

.do-better {
  padding: 50px 0;
}

.do-better h2 {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.do-better .card {
  background-color: var(--gray);
  padding: 40px 40px 80px;
  border-radius: 50px;
  margin: 0 10px;
  max-width: 545px;
  height: auto;
}

.do-better .card img {
  margin-bottom: 25px;
  max-width: 140px;
}

.do-better .slick-dots {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 0 8px;
  margin-top: 60px;
}

.do-better .slick-dots li button {
  font-size: 0;
  width: 11px;
  height: 11px;
  border: 1px solid #d9d9d9;
  background: transparent;
  border-radius: 50%;
  transition: all 0.1s;
  cursor: pointer;
}

.do-better .slick-dots li.slick-active button {
  width: 12px;
  height: 12px;
  background-color: #d9d9d9;
}

.do-better .slick-track{
  display: flex;
  align-items: stretch;
}

.do-better .slick-track .slick-slide{
  height: auto;
}

.wins-everytime {
  padding: 50px 0;
}

.wins-everytime img {
  width: 100%;
  border-radius: 50px;
}

.wins-everytime h2 {
  text-align: center;
  margin: 0 auto 120px;
  max-width: 1000px;
}

.wins-everytime h2 span{
  position: relative;
  color: var(--white);
  display: inline-block;
}

.wins-everytime h2 span::before{
  position: absolute;
  background-color: var(--primary);
  border-radius: 30px;
  transform: rotate(-4deg);
  inset: -12px;
  content: "";
  z-index: -1;
  top: 12px;
}

.wins-everytime .feature-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 50px 25px;
}

.wins-everytime .feature-grid > div {
  width: calc(33% - 13px);
}

.wins-everytime .feature-grid h3 {
  font-weight: 700;
  font-size: 46px;
  line-height: 55.2px;
  margin: 0 0 20px;
  max-width: 310px;
}

.wins-everytime .feature-grid h3 span.img-before {
  width: 40px;
  height: 40px;
  margin: 0 10px -5px;
  filter: brightness(0);
  border-radius: 0;
  display: inline-block;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.wins-everytime .feature-grid .card1 {
  margin-top: 30px;
}

.wins-everytime .feature-grid .card1 .content {
  margin-bottom: 60px;
}

.wins-everytime .feature-grid .card1 .img-div {
  border-radius: 50px;
}

.wins-everytime .feature-grid .card1 .img-div img {
  width: 100%;
}

.wins-everytime .feature-grid .card1 h3 {
  position: relative;
}

.wins-everytime .feature-grid .card1 h3::before {
  content: "";
  position: absolute;
  width: 77px;
  height: 177px;
  border: 2px dashed #e6e7e8;
  border-top-left-radius: 20px;
  border-right-color: transparent;
  border-bottom-color: transparent;
  top: -200px;
  left: 50px;
}

.wins-everytime .feature-grid .card2 {
  background-color: var(--gray);
  padding: 35px 35px 100px;
  border-radius: 50px;
  margin-top: 60px;
}

.wins-everytime .feature-grid .card2 .img-div img {
  border-radius: 32px;
  margin-bottom: 30px;
}

.wins-everytime .feature-grid .card3 .content {
  padding: 60px 35px;
  background-color: var(--gray);
  border-radius: 50px;
  margin-bottom: 18px;
}

.wins-everytime .feature-grid .card4 {
  background-color: var(--blue_light);
  padding: 100px 40px 35px;
  border-radius: 300px;
}

.wins-everytime .feature-grid .card4 h3 {
  text-align: center;
  max-width: unset;
}

.wins-everytime .feature-grid .card4 p {
  margin-bottom: 20px;
}

.wins-everytime .feature-grid .card5 {
  padding: 40px 35px;
  box-shadow: 0px 4px 20px 0px #00000033;
  border-radius: 50px;
  margin-top: 100px;
}

.wins-everytime .feature-grid .card5 .img-div {
  margin-bottom: 50px;
}

.wins-everytime .feature-grid .card5 .img-div img {
  border-radius: 32px;
}

.wins-everytime .feature-grid .card6 p {
  box-shadow: 0px 4px 20px 0px #00000033;
  padding: 50px 58px 102px 36px;
  border-radius: 50px;
  margin-top: 60px;
}

.wins-everytime .feature-grid .card6 .img-div {
  margin-top: -50px;
}

.wins-everytime .feature-grid .card6 h3 {
  padding-left: 50px;
  position: relative;
}

.wins-everytime .feature-grid .card6 h3::before {
  content: "";
  position: absolute;
  width: 23px;
  height: 133px;
  border: 2px dashed #e6e7e8;
  border-top-left-radius: 20px;
  border-right-color: transparent;
  border-bottom-color: transparent;
  top: 30px;
  left: 0;
}

.blog-post .blog-content {
  display: flex;
  gap: 20px 50px;
}

.blog-post .blog-container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 40px 0 20px;
}

.blog-post .post-img-div {
  display: flex;
  gap: 20px 55px;
  margin-bottom: 40px;
}

.blog-post .post-img-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}

.blog-post .post-img-div > div {
  width: 100%;
}

.blog-post .post-img-div .post-image {
  max-width: 780px;
  border-radius: 32px;
  height: 395px;
}

.blog-post .join-smackdab {
  background-color: var(--primary);
  border-radius: 32px;
  padding: 40px 30px;
  max-width: 394px;
  color: var(--white);
}

.blog-post .join-smackdab h4 {
  font-weight: 700;
  font-size: 32px;
  line-height: 41px;
  margin-bottom: 20px;
  color: var(--white);
}

.blog-post .join-smackdab .signup input {
  width: calc(100% - 130px);
  color: var(--white);
  border: 1px solid var(--white);
}

.blog-post .join-smackdab .signup input::placeholder {
  color: var(--white);
}

.blog-post .join-smackdab .signup a {
  background-color: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
  padding: 10px 26px;
}

.blog-post .join-smackdab .signup {
  margin-top: 20px;
}

.blog-post h1 {
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 780px;
}

.blog-post .post-category {
  width: fit-content;
}

.blog-post .category-badge {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  padding: 5px 10px;
  background-color: var(--gray);
  border-radius: 10px;
  color: var(--black);
  display: block;
  width: fit-content;
}

.blog-post .blog-content .post-excerpt {
  background-color: var(--blue_light);
  padding: 40px 30px;
  border-radius: 32px;
  margin-top: 50px;
  margin-bottom: 40px;
}

.blog-post .blog-content .post-excerpt p{
  margin-bottom: 0 !important;
}

.blog-post .blog-content .latest-posts li::before{
  display: none;
}

.blog-post .blog-content h2{
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 20px;
}

.blog-post .blog-content p{
  margin-bottom: 40px;
}

.blog-post .blog-content h3{
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 20px;
}

.blog-post .blog-content h4{
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
}

.blog-post .blog-content ul{
  padding-left: 20px;
  list-style: none;
  margin-bottom: 20px;
}

.blog-post .blog-content ul li{
  position: relative;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

.blog-post .blog-content ul li::before{
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--black);
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: -15px;
}

.blog-post .blog-content .post-excerpt h2{
  font-size: 20px;
  line-height: 30px;
}

.blog-post .blog-content > div {
  width: 100%;
}

.blog-post .latest-article {
  max-width: 394px;
}

.blog-post .latest-post-info h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: var(--black);
  margin-top: 10px;
}

.blog-post .latest-post-info .category-badge {
  margin-top: 20px;
}

.blog-post .latest-posts {
  list-style-type: none !important;
  padding-left: 0 !important;
}

.blog-post .latest-article .latest-post-thumbnail {
  width: 100%;
  height: 296px;
  border-radius: 32px;
}

.blog-post .latest-article .latest-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}

.blog-post .latest-article h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 20px;
}

.blog-post .post-content p + p {
  margin-top: 20px;
}

.blog-post .post-content p a{
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.blog-post .blog-content .post-content img{
  width: 100%;
  margin: 20px 0;
}

.blog-post .breadcrumb{
  margin-top: 30px;
}

.whatMakesDiffSection h2 {
  font-weight: 700;
  font-size: 120px;
  line-height: 130px;
  margin-bottom: 200px;
}

.whatMakesDiffSection h2 span {
  position: relative;
  z-index: 9;
  color: var(--white);
  display: inline-block;
  margin-top: 0px;
}

.whatMakesDiffSection h2 span:before {
  position: absolute;
  background-color: var(--primary);
  border-radius: 30px;
  transform: rotate(-5deg);
  inset: -10px;
  content: "";
  z-index: -1;
}

.featureSection05 {
  margin-bottom: 65px;
}

.featureSection05.flex-wrap {
  display: flex;
  gap: 25px;
}

.featureSection05.flex-wrap .left-flex {
  width: 38%;
  position: relative;
}

.featureSection05.flex-wrap .left-flex img {
  border-radius: 50px;
}

.featureSection05.flex-wrap .left-flex:before {
  content: "05";
  font-weight: 700;
  font-size: 180px;
  line-height: 216px;
  text-align: center;
  color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-13.06deg);
}

.featureSection05.flex-wrap .right-flex {
  width: 60%;
  box-shadow: 0px 16px 40px 0px #00000014;
  border-radius: 50px;
  padding: 95px;
}

.featureSection05.flex-wrap .right-flex h3 {
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 20px;
}

.featureSection05.flex-wrap .right-flex p {
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
}

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

.featureSection04 {
  margin-bottom: 65px;
}

.featureSection04.flex-wrap {
  display: flex;
  gap: 25px;
}

.featureSection04.flex-wrap .left-flex {
  width: 50%;
  position: relative;
  padding: 85px 128px 85px 85px;
}

.featureSection04.flex-wrap .right-flex {
  width: 50%;
  position: relative;
  margin: 0 70px 0 92px;
}

.featureSection04.flex-wrap .right-flex img {
  border-radius: 50px;
}

.featureSection04.flex-wrap .left-flex h3 {
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 20px;
}

.featureSection04.flex-wrap .left-flex p {
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
}

.featureSection04.flex-wrap .right-flex:before {
  content: "04";
  font-weight: 700;
  font-size: 180px;
  line-height: 216px;
  text-align: center;
  color: var(--white);
  position: absolute;
  right: 33px;
  bottom: 14px;
  transform: rotate(8.17deg);
}

.featureSection05.flex-wrap.feat03 .right-flex {
  background-color: var(--orange_light);
}

.featureSection05.flex-wrap.feat03 .left-flex:before {
  content: "03";
  font-weight: 700;
  font-size: 180px;
  line-height: 216px;
  text-align: center;
  color: var(--white);
  position: absolute;
  top: 13px;
  left: 41px;
  z-index: 9;
}

.featureSection05.flex-wrap.feat03 .left-flex img {
  transform: rotate(7.08deg);
}

.featureSection05.flex-wrap.feat03 .left-flex {
  padding: 20px;
}

.featureSection05.flex-wrap.feat03 .right-flex {
  padding: 110px 160px 100px 100px;
}

.featureSection05.flex-wrap.feat03 .left-flex img {
  border-radius: 38px;
}

.featureSection02 {
  max-width: 1150px;
  margin: 0 auto 60px auto;
  box-shadow: 0px 16px 40px 0px #00000014;
  padding: 50px;
  border-radius: 50px;
}

.featureSection02 .flex-wrap {
  display: flex;
  gap: 95px;
  justify-content: center;
  align-items: center;
}

.featureSection02 .flex-wrap .left-flex {
  padding: 0 50px;
}

.featureSection02 .flex-wrap .left-flex h3 {
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 20px;
}

.featureSection02 .flex-wrap .left-flex p {
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
}

.featureSection02 .flex-wrap .right-flex {
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  max-width: 473px;
}

.featureSection02 .flex-wrap .right-flex:before {
  content: "02";
  font-weight: 700;
  font-size: 170px;
  line-height: 216px;
  text-align: center;
  color: var(--white);
  position: absolute;
  right: 10px;
  top: -30px;
  transform: rotate(-5.47deg);
  z-index: 9;
}

.featureSection01 {
  padding-left: 200px;
}

.featureSection01 .flex-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: var(--gray);
  border-radius: 38px;
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}

.featureSection01 .flex-wrap .left-flex {
  margin-left: -180px;
  border-radius: 500px;
  overflow: hidden;
  width: 483px;
  height: 483px;
  min-width: 483px;
}
.featureSection01 .flex-wrap .left-flex img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featureSection01 .flex-wrap .right-flex {
  width: 100%;
  padding-right: 77px;
}

.featureSection01 .flex-wrap .right-flex h3 {
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 20px;
}

.featureSection01 .flex-wrap .right-flex p {
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
}

.featureSection01 .flex-wrap .left-flex {
  position: relative;
}

.featureSection01 .flex-wrap .left-flex:before {
  content: "01";
  font-weight: 700;
  font-size: 180px;
  line-height: 216px;
  text-align: center;
  color: var(--white);
  position: absolute;
  right: 0px;
  left: 0px;
  bottom: 0px;
  margin: 0 auto;
  z-index: 9;
}

.smackItSec {
  padding: 60px 190px 100px 190px;
  text-align: center;
  color: var(--white);
  background-color: var(--primary);
  border-radius: 1000px;
  margin-bottom: 104px;
  font-family: "Matter";
  font-weight: 700;
  font-size: 180px;
  line-height: 180px;
  display: block;
}

.whySmackDabSec {
  position: relative;
}

.whySmackDabSec h2 {
  font-weight: 700;
  font-size: 120px;
  line-height: 144px;
  text-align: center;
  margin-bottom: 185px;
  position: relative;
}

.whySmackDabSec h2 span {
  font-size: 200px;
  line-height: 240px;
}

.whySmackDabSec h2::before{
  content: '';
  position: absolute;
  bottom: -70px;
  left: 100px;
  width: 76px;
  height: 137px;
  border: 2px dashed #EAEAEA;
  border-top-left-radius: 20px;
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.whySmackDabSec h2::after{
  content: '';
  position: absolute;
  bottom: -410px;
  right: 130px;
  width: 44px;
  height: 444px;
  border: 2px dashed #EAEAEA;
  border-top-right-radius: 20px;
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.whySmackDabSec:before {
  position: absolute;
  content: "";
  left: 0;
  top: 285px;
  width: 76px;
  height: 136px;
  border-top: 1px dashed #eaeaea;
  border-left: 1px dashed #eaeaea;
  border-top-left-radius: 20px;
}

.whySmackDabSec:after {
  position: absolute;
  content: "";
  right: 0;
  top: 285px;
  width: 44px;
  height: 444px;
  border-top: 1px dashed #eaeaea;
  border-right: 1px dashed #eaeaea;
  border-top-right-radius: 20px;
}

.whySmackDabSec .smackDetailSec {
  position: relative;
  padding: 120px 125px 100px 125px;
  max-width: 753px;
}

.whySmackDabSec .smackDetailSec:after {
  background-color: var(--blue_light);
  position: absolute;
  inset: 0;
  content: "";
  z-index: -1;
  border-radius: 50px;
  transform: rotate(4.92deg);
}

.whySmackDabSec .smackDetailSec:before {
  position: absolute;
  content: "Smack";
  color: var(--primary);
  font-family: "Matter";
  font-weight: 700;
  font-size: 120px;
  line-height: 144px;
  top: -95px;
  left: 50px;
  transform: rotate(4.92deg);
}

.whySmackDabSec .DabDetailSec {
  position: relative;
  padding: 120px 125px 100px 125px;
  max-width: 753px;
  margin-left: auto;
  margin-top: 20px;
  margin-bottom: 130px;
}

.whySmackDabSec .DabDetailSec:after {
  background-color: var(--orange_light);
  position: absolute;
  inset: 0;
  content: "";
  z-index: -1;
  border-radius: 50px;
  transform: rotate(-4.92deg);
}

.whySmackDabSec .DabDetailSec:before {
  position: absolute;
  content: "Dab";
  color: var(--primary);
  font-family: "Matter";
  font-weight: 700;
  font-size: 120px;
  line-height: 144px;
  top: -95px;
  right: 70px;
  transform: rotate(-4.92deg);
}

.aboutBannerSec {
  background-image: url(../images/aboutBannerImg.svg);
  background-size: 100% 100%;
  padding: 194px 51px 234px 134px;
  position: relative;
  margin-bottom: 60px;
}

.aboutBannerSec h2 {
  font-weight: 700;
  font-size: 90px;
  line-height: 108px;
  margin-bottom: 40px;
  position: relative;
}

.aboutBannerSec p {
  padding-right: 50%;
  font-weight: 400;
}

.aboutBannerSec p span {
  display: block;
  margin-top: 25px;
}

.aboutBannerSec h2:after {
  position: absolute;
  content: "";
  right: 50px;
  top: 160px;
  width: 52px;
  height: 170px;
  border-top: 1px dashed var(--white);
  border-right: 1px dashed var(--white);
  border-top-right-radius: 20px;
}

.aboutBannerSec img {
  position: absolute;
  transform: rotate(20deg);
  right: 125px;
  bottom: -100px;
  width: 331px;
  border-radius: 32px;
}

.aboutBelowBannerSec .flex-wrap {
  display: flex;
  gap: 35px;
  margin-bottom: 95px;
  margin-top: 175px;
}

.aboutBelowBannerSec .flex-wrap .left-flex {
  width: 27%;
  min-width: 27%;
}

.aboutBelowBannerSec .flex-wrap .right-flex {
  padding: 146px 163px 100px 163px;
  border-radius: 50px;
  background-color: var(--gray);
  position: relative;
}

.aboutBelowBannerSec .flex-wrap .right-flex .star-img{
  left: 20%;
}

.aboutBelowBannerSec .flex-wrap .left-flex img {
  border-radius: 50px;
}

.level-up.last-tool .inner-div h2{
  display: block;
  max-width: 600px;
}

.level-up.last-tool .inner-div h2 span.img-before {
  margin: 0 10px -30px;
  height: 110px;
}

.blog-post .author-card{
  background-color: var(--gray);
  padding: 40px 30px;
  border-radius: 32px;
}

.blog-post .author-card .heading{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid #BDBDBD;
}

.blog-post .author-card .profile{
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-post .author-card .profile h4{
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 0;
}

.blog-post .author-card .profile h5{
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--dark);
  margin-bottom: 0;
}

.blog-post .author-card .profile img{
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.blog-post .author-card .buttons{
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-post .author-card .social{
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.blog-post .author-card .social li{
  margin-bottom: 0;
  line-height: normal;
}

.blog-post .author-card .social li::before{
  display: none;
}

.blog-post .author-card .buttons .copy{
  border: 1px solid var(--black);
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  display: flex;  
  padding: 11px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
}

.blog-post .author-card .buttons .copy:hover{
  background-color: var(--white);
}

.blog-post .author-card .content{
  padding-top: 20px;
}

.blog-post .author-card .content p{
  margin-bottom: 0;
}

.breadcrumb{
  padding-left: 0;
  list-style: none;
  display: flex;
  gap: 5px 20px;
}

.breadcrumb li{
  position: relative;
}

.breadcrumb li a{
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  position: relative;
  color: var(--dark);
}

.breadcrumb li::after{
  content: '>';
  position: absolute;
  top: 6px;
  right: -15px;
  color: var(--dark);
}

.breadcrumb li:last-child:after{
  display: none;
}

.breadcrumb li a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.get-customers, .related-blog{
  padding: 50px 0;
}

.get-customers .images img{
  max-width: 130px;
}

.get-customers .images{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 50px;
  margin-bottom: 40px;
}

.get-customers .inner-div{
  background-color: var(--gray);
  padding: 80px 20px;
  border-radius: 50px;
}

.get-customers .inner-div h2{
  margin-bottom: 40px;
  max-width: 940px;
  margin: 0 auto;
}

.get-customers .inner-div .btn-div{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}

.related-blog h2{
  text-align: center;
  margin-bottom: 60px;
}

.level-up.about-level-up .star-div .star-img{
   display: none;
}

.level-up.about-level-up .inner-div{
  background-color: var(--orange_light);
}

.level-up.about-level-up .inner-div h2 span.img-before{
  display: inline-block;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 160px;
  height: 110px;
  background-position: center center;
  border-radius: 32px;
  margin: 0 10px -25px;
}

.related-blog-slider .blog-card{
  margin: 0 10px;
}

.related-blog-slider ul{
  padding-left: 0;
  list-style: none;
}

.related-blog-slider .slick-dots{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  gap: 10px;
}

.related-blog-slider .slick-dots li button{
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray);
  font-weight: 400;
  font-size: 18px;
  line-height: 21.6px;
  color: var(--black);
  border: none;
  font-family: "Matter";
  cursor: pointer;
}

.related-blog-slider .slick-dots li.slick-active button, .related-blog-slider .slick-dots li:hover button{
  background-color: var(--blue_light);
}

.related-blog-slider .slick-arrow{
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray);
  font-size: 0px;
  border: none;
  background-image: url("../images/slider-arrow-prev.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
  position: absolute;
  bottom: 0;
  left: 0;
  cursor: pointer;
}

.related-blog-slider .slick-arrow:hover{
  background-color: var(--blue_light);
}

.related-blog-slider .slick-arrow.slick-next{
  background-image: url("../images/slider-arrow-next.svg");
  left: unset;
  right: 0;
}

.related-blog-slider .slick-arrow.slick-disabled{
  pointer-events: none;
}

.pricing-head{
  padding: 40px 0 40px;
}

.pricing-head h2{
  text-align: center;
  margin-bottom: 40px;
}

.pricing-head h2 span{
  position: relative;
  z-index: 9;
  color: var(--white);
  display: inline-block;
}

.pricing-head h2 span::before{
  position: absolute;
  background-color: var(--primary);
  border-radius: 30px;
  inset: -10px;
  content: "";
  z-index: -1;
}

.pricing-head p.text{
  text-align: center;
  margin: 0 auto 50px;
  max-width: 880px;
}

.pricing-tab{
  padding: 0;
}

.tabs-section.pricing-tab .wrapper{
  margin: 0;
}

.tabs-section.pricing-tab .tabs{
  display: flex;
  justify-content: center;
  border: 1px solid var(--black);
  border-radius: 40px;
  padding: 10px;
  width: fit-content;
  margin: 0 auto;
}

.tabs-section.pricing-tab .tab-link{
  padding: 12px 30px;
  border-radius: 50px;
  background-color: transparent;
}

.tabs-section.pricing-tab .tab-link.active, .tabs-section.pricing-tab .tab-link:hover{
  background-color: var(--primary);
}

.tabs-section.pricing-tab .tab-link.active p{
  color: var(--white);
  font-weight: 500;
}

.tabs-section.pricing-tab .tab-link:hover p{
  color: var(--white);
}

.tabs-section.pricing-tab .tab-link p{
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}

.pricing-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 27px;
}

.pricing-grid .pricing-card{
  padding: 40px 30px;
  border: 1px solid var(--black);
  border-radius: 50px;
  position: relative;
}

.pricing-card h4{
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.pricing-card h5{
  font-weight: 500;
  font-size: 32px;
  line-height: 38.4px;
  text-align: center;
  margin-bottom: 10px;
}

.pricing-card h5 span{
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: var(--dark);
}

.pricing-card h6{
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: var(--dark);
  margin-bottom: 20px;
}

.pricing-card .orange-btn{
  margin-bottom: 20px;
}

.pricing-card h3{
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
}

.pricing-card .check-list{
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card label{
  background-color: var(--blue_light);
  padding: 6px 35px;
  border-radius: 22px;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 110px);
  text-align: center;
  max-width: 210px;
}

.pricing-card .check-list li{
  position: relative;
  padding-left: 26px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--black);
}

.pricing-card .check-list li::before{
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 11px;
  background-image: url("../images/primary-check.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.tabs-section.pricing-tab .content-wrapper {
  padding: 0px 0px;
  margin-top: 90px;
}

.price-add-on h2{
  margin-bottom: 60px;
  text-align: center;
}

.price-add-on .inner-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 27px;
  margin-bottom: 120px;
}

.price-add-on .add-on-card{
  border: 1px solid var(--black);
  padding: 50px 30px;
  border-radius: 50px;
}

.price-add-on .add-on-card h4{
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: var(--black);
  margin-bottom: 20px;
}

.price-add-on .add-on-card h5{
  font-weight: 500;
  font-size: 32px;
  line-height: 38.4px;
  margin-bottom: 20px;
}

.price-add-on .add-on-card h5 span{
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}

.price-add-on .add-on-card p{
  text-align: left;
}

.price-add-on .add-on-card p + p{
  margin-top: 20px;
}

.price-add-on .logo-grid{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px 70px;
  margin-bottom: 40px;
}

.price-add-on p{
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  text-align: center;
}

.pricing-plan h2{
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-plan p{
  text-align: center;
  margin-bottom: 60px;
}

.pricing-plan .pricing-table{
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  table-layout: fixed; /* Prevents column width shifting */
}

.pricing-table .table-heading {
  cursor: pointer;
  background-color: var(--orange_light);
  padding: 20px 30px;
  border-radius: 10px;
  margin-top: 20px;
  min-width: 900px;
  display: flex;
  width: 100%;
}
.pricing-plan .table-container {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
  width: 100%;
}

.pricing-plan .pricing-table .table-heading p{
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: var(--black);
  word-wrap: break-word;
  width: 17.5%;
  margin-bottom: 0;
  white-space: break-spaces;
}

.pricing-plan .pricing-table .table-heading p:first-child{
  width: 30%;
  text-align: left;
}

.pricing-plan .pricing-table .table-row{
  padding: 20px 30px;
  border-bottom: 1px solid #BDBDBD;
  display: flex;
  align-items: center;
}

.pricing-plan .pricing-table .table-row > div{
  width: 17.5%;
}

.pricing-plan .pricing-table .table-row > div:first-child{
  text-align: left;
  width: 30%;
}

.pricing-plan .pricing-table .table-row p{
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--black);
  white-space: break-spaces;
  margin-bottom: 0;
}

.pricing-plan .pricing-table .table-row div:first-child p{
  text-align: left;
}

.pricing-plan .table-container{
  min-width: 900px;
  width: 100%;
}

.pricing-plan .big-btn{
  padding: 40px 190px 55px 190px;
  font-weight: 700;
  font-size: 180px;
  line-height: 216px;
  text-align: center;
  margin-top: 160px;
  margin-bottom: 100px;
  border-radius: 170px;
}

.pricing-plan .table-wrapper{
  overflow: auto;
  padding-bottom: 10px;
}

.pricing-plan .table-wrapper::-webkit-scrollbar {
  height: 5px;
}

.pricing-tab .tab-link{
  position: relative;
}

.pricing-tab .tab-link span{
  font-weight: 500;
  font-size: 16px;
  line-height: 19.2px;
  text-align: center;
  color: var(--primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
  white-space: nowrap;
  visibility: hidden;
}

.pricing-tab .tab-link.active span{
  visibility: visible;
}

.terms-section{
  padding: 40px 0;
}

.terms-section .container{
  max-width: 720px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--dark);
}

.terms-section h1{
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.terms-section h4{
  font-size: 22px;
  margin-bottom: 20px;
  margin-top: 40px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--base-black);
}

.terms-section p{
  color: var(--dark);
}

.terms-section p strong{
  color: #000000b3;
}

.terms-section p:not(blockquote p, :last-child) {
  margin-bottom: 20px;
}

.terms-section ul li:not(:last-child){
  margin-bottom: 10px;
}

.terms-section ul{
  padding-left: 20px;
}

.terms-section ul li{
  font-size: 20px;
  line-height: 30px;
  color: var(--dark);
}

.terms-section ul li strong{
  color: #000000b3;
}

.free-forever{
  background-color: var(--gray);
  padding: 50px 65px 30px 100px;
  border-radius: 50px;
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
}

.free-forever .star-img{
  top: -65px;
  left: 180px;
  max-width: 215px !important;
}

.free-forever h4{
  font-weight: 400;
  font-size: 32px;
  line-height: 30px;
  margin-bottom: 15px;
}

.free-forever ul{
  padding-left: 24px;
  margin-bottom: 34px;
}

.free-forever ul li{
  line-height: 20px;
}

.free-forever .img-div img{
  max-width: 275px;
  border-radius: 50px;
  width: 100%;
  box-shadow: 0px 16px 40px 0px #00000014;
  backdrop-filter: blur(16px);
  margin-bottom: 20px;
  margin-top: 5px;
}

.pricing-tab.free-forever-tabs .tab-link{
  position: unset;
}

.tabs-section.pricing-tab.free-forever-tabs .tabs{
  position: relative;
  margin-left: 80px;
}

.tabs-section.free-forever-tabs .tab-link.active label, .tabs-section.free-forever-tabs .tab-link:hover label{
  color: var(--white);
}

.tabs-section.free-forever-tabs .tab-link label{
  cursor: pointer;
}

.annually-plan{
  display: flex;
  gap: 70px;
  margin-bottom: 80px;
}

.tabs-section .tab-content .annually-plan:last-child{
  margin-bottom: 0;
}

.annually-plan .left-part{
  border-radius: 50px;
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}

.annually-plan .left-part .image-mask{
  padding: 45px 50px 85px 100px;
}

.annually-plan.blue-bg .left-part .image-mask{
  padding: 45px 50px 65px 100px;
}

.annually-plan .left-part h4{
  font-weight: 400;
  font-size: 32px;
  line-height: 30px;
  margin-bottom: 10px;
}

.annually-plan .left-part ul{
  margin-bottom: 24px;
  padding-left: 25px;
}

.annually-plan .left-part h5{
  font-weight: 700;
  font-size: 64px;
  line-height: 76.8px;
}

.annually-plan .left-part .price{
  position: absolute;
  top: -20px;
  right: 10px;
  z-index: 9;
}

.annually-plan .left-part .price h5{
  position: relative;
}

.annually-plan .left-part .price h5::before{
  position: absolute;
  border-radius: 30px;
  inset: -10px;
  content: "";
  z-index: -1;
  left: 50%;
  transform: translateX(-50%) rotate(-6deg);
  padding: 0 100px;
}

.annually-plan.orange-bg .left-part .price h5::before{
  background-color: #eaeaea;
}

.annually-plan.orange-bg .left-part{
  background-color: var(--orange_light);
}

.annually-plan .left-part .primary-btn{
  position: absolute;
  bottom: 30px;
  left: 100px;
}

.annually-plan .right-part{
  width: 100%;
  max-width: 395px;
}

.annually-plan .right-part img{
  width: 100%;
}

.annually-plan.gray-bg .left-part{
  background-color: var(--gray);
}

.annually-plan.gray-bg .left-part .price h5::before{
  background-color: var(--primary);
}

.annually-plan.gray-bg .left-part .price h5, .annually-plan.blue-bg .left-part .price h5{
  color: var(--white);
}

.annually-plan.gray-bg .left-part {
  margin-bottom: 38px;
}

.annually-plan.blue-bg .image-mask{
  mask-image: url("../images/pricing-card.png");
  background-color: var(--blue_light);
}

.annually-plan.blue-bg .left-part .price h5::before{
  background-color: var(--blue);
}

.annually-plan.blue-bg .primary-btn{
  left: unset;
  right: 50px;
  bottom: 20px;
}

.available-add-on{
  padding: 40px 0;
}

.available-add-on h2{
  margin-bottom: 135px;
  text-align: center;
}

.available-add-on .addon-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.available-add-on .addon-grid .card{
  background-color: var(--gray);
  border-radius: 50px;
  padding: 20px 35px 45px;
}

.available-add-on .addon-grid .card h4{
  font-weight: 500;
  font-size: 48px;
  line-height: 57.6px;
  margin-bottom: 20px;
}

.available-add-on .addon-grid .card h4 span{
  font-size: 20px;
  line-height: 24px;
}

.available-add-on .addon-grid .card img{
  width: 100%;
  max-width: 360px;
  margin-bottom: 14px;
}

.available-add-on .addon-grid .card h3{
  font-weight: 700;
  font-size: 46px;
  line-height: 55.2px;
  margin-bottom: 32px;
}

.available-add-on .addon-grid .card h3 span{
  display: inline-block;
  width: 45px;
  height: 43px;
  background-image: url("/wp-content/uploads/2025/03/vector-5.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  top: -18px;
  margin-left: -10px;
  margin-right: -8px;
}

.available-add-on .addon-grid .card p, .available-add-on .addon-grid .card ul li{
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
}

.available-add-on .addon-grid .card ul{
  padding-left: 25px;
}

.available-add-on .addon-grid .card .primary-text-btn{
  justify-content: center;
  margin-top: 40px;
}

.available-add-on .addon-grid .card:nth-child(2){
  margin-top: -55px;
}

.available-add-on .addon-grid .card:nth-child(1) img{
  margin-bottom: -15px;
}

.contact-management .anime-img{
  display: none;
}

.animation-div .anime-img{
  display: block;
}


@keyframes fadeIn {
  100% {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 767px) {
  .mask-img-text.all-in-one-crm .inner-flex .left-part h3 {
    min-width: unset;
    font-size: 60px;
    line-height: 72px;
    margin-bottom: 30px;
  }

  .join-smackdab h2, .get-customers .inner-div h2, .related-blog h2, .price-add-on h2, .pricing-plan h2{
    font-size: 48px !important;
    line-height: 58px !important;
  }
}

@media (min-width: 992px) {
  .header .nav-item.active .mega-menu {
    display: block;
  }
  .header .nav-links {
    border: 1px solid var(--black);
    border-radius: 80px;
    padding: 0 60px;
    max-height: 81px;
  }
  .header .nav-item .mega-menu {
    width: calc(100% - 30px);
    padding: 40px;
    border-radius: 50px;
    background-color: var(--gray);
    transition: all 0.3s;
    border: 1px solid var(--black);
    margin: 0 15px;
    z-index: 9;
  }
  .header .mega-menu {
    position: absolute;
    top: calc(100% - 7px);
    left: 0;
    background: white;
    color: var(--black);
    transition: all 0.3s;
  }
  .img-flex.orange .flex-div .left-part h3,
  .mask-img-text.consultants .inner-flex .left-part h3,
  .contact-management.community h2,
  .ai-works.real-estate .inner-flex .left-part h3,
  .comparison h2 {
    font-size: 90px;
    line-height: 100px;
  }
  .level-up.about-level-up .inner-div h2{
    font-size: 90px !important;
    line-height: 110px !important;
    max-width: 960px;
    margin-bottom: 60px;
  }
  .level-up .inner-div h2 {
    font-size: 64px !important;
    line-height: 78px !important;
  }
  .contact-management.reverce .inner-flex {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .enterprises h2 {
    font-size: 60px !important;
    line-height: 72px !important;
  }
  .mask-img-text.consultants .inner-flex {
    flex-direction: row-reverse;
  }
  .contact-management.education h2 {
    font-size: 90px;
    line-height: 108px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .blog-post h1 {
    font-size: 64px !important;
    line-height: 76.8px !important;
  }
}

@media (min-width: 1025px) {
  .img-flex.no-bg .flex-div .left-part h3,
  .ad-workflow h2,
  .sales-marketing h2 {
    font-size: 90px;
    line-height: 108px;
  }
  .flex-content .inner-flex .right-part p {
    max-width: 650px;
  }
  .level-up.take-break .inner-div h2,
  .ad-workflow.dynamic h2 {
    font-size: 120px !important;
    line-height: 144px !important;
  }
  .level-up.take-break .inner-div {
    padding: 100px 20px 100px;
  }
  .ai-banner h2 {
    font-size: 70px !important;
    line-height: 80px !important;
    max-width: 600px;
  }
  .ai-banner p {
    max-width: 550px;
  }
  .level-up.superpower .inner-div h2 {
    font-size: 64px !important;
    line-height: 76px !important;
    margin-bottom: 40px;
  }
  .small-to-mid h2 {
    font-size: 60px !important;
    line-height: 70px !important;
  }
  .ai-works.real-estate p {
    max-width: 500px;
  }
  .level-up.comparison-div .inner-div {
    padding: 100px 20px 90px;
  }
  .level-up.comparison-div .inner-div h2 {
    margin-bottom: 50px;
  }
  .aboutBannerSec p {
    font-size: 22px;
    line-height: 32px;
  }
}

@media (min-width: 1201px) {
  .small-to-mid h2 {
    font-size: 90px !important;
    line-height: 108px !important;
  }
  .mask-img-text.consultants .inner-flex .left-part h3 img {
    max-width: 100px;
  }
}

@media (min-width: 1351px) {
  .flex-content.bg-gray .inner-flex .right-part h2, .free-forever .section-title, .annually-plan .left-part h3 {
    font-size: 90px !important;
    line-height: 108px !important;
  }
  .data-driven h2 {
    max-width: 800px;
    margin: 0 auto 90px;
    text-align: center;
  }
  .fits-all h2 {
    font-size: 90px;
    line-height: 108px;
  }
  .fits-all h2 span.img-before{
    width: 65px;
    height: 65px;
  }
  .available-add-on .h2 {
    font-size: 96px;
    line-height: 115px;
  }
}

@media (min-width: 1400px) {
  .flex-content.bg-orange .inner-flex .left-part {
    min-width: 600px;
  }
}

@media(min-width:1441px){
  .img-flex.gamification .big-text {
    font-size: 160px;
    line-height: 192px;
  }
  .ai-banner h2 {
    font-size: 90px !important;
    line-height: 108px !important;
  }
  .ai-works h2 {
    font-size: 120px;
    line-height: 144px;
    text-align: center;
  }
}

@media(max-width: 1440px){
  .h2 {
    font-size: 100px;
    line-height: 115px;
  }
  .home-banner .home-flex .left-part {
    max-width: 60%;
  }
  .home-banner .home-flex .right-part {
    max-width: 40%;
  }
  .home-banner .home-flex .right-part img {
    max-height: 460px;
    object-fit: cover;
    object-position: bottom;
  }
  .home-banner .home-flex .left-part .image-mask{
    padding: 35px 50px 25px;
  }
  .home-banner .home-flex .left-part p{
    margin-bottom: 40px;
    max-width: 600px;
  }
  .big-text{
    margin: 10px 0 35px;
  }
  .home-banner .home-flex .left-part .primary-btn{
    bottom: 20px;
  }
  .home-banner .home-flex .left-part h1{
    font-size: 70px;
    line-height: 1.2;
    max-width: 510px;
  }
  .all-in-one {
    padding: 20px 0 50px;
  }
  .mask-img-text .inner-flex .left-part h3 {
    font-size: 100px;
    line-height: 110px;
  }
  .ai-banner .inner-div .image-mask {
    padding: 70px 20px 190px 65px;
  }
  .home-banner.customization .home-flex .left-part .image-mask{
    padding: 35px 50px 45px;
  }
  .home-banner.customization .home-flex .right-part img {
    max-height: 560px;
  }
}

@media (max-width: 1400px) {
  .header .nav-item .mega-menu {
    padding: 30px 20px;
  }
  .header .nav-item .mega-menu .features {
    gap: 10px;
  }
  .header .nav-item .mega-menu .features .card .explore-btn {
    font-size: 14px;
    padding: 5px 8px 5px 15px;
  }
  .header .nav-item .mega-menu .features .card .explore-btn img {
    max-width: 22px;
  }
  .header .nav-item .mega-menu .trial p {
    font-size: 23px;
    line-height: 30px;
  }
  .email-marketing h4 {
    font-size: 200px;
  }
  .email-marketing h5 {
    font-size: 90px;
    line-height: 100px;
  }
  .one-platform h2 {
    font-size: 100px;
    line-height: 126px;
  }
}

@media (max-width: 1350px) {
  .big-text {
    font-size: 100px;
    line-height: 120px;
  }
  .home-banner .home-flex .left-part h1 {
    font-size: 80px;
    line-height: 98px;
  }
  .img-flex .flex-div .left-part {
    padding: 60px 40px 60px 40px;
  }
  .mask-img-text .inner-flex .left-part h3 {
    font-size: 100px;
    line-height: 100px;
    min-width: 750px;
  }
  .smackdab-click h2 {
    font-size: 100px;
    line-height: 100px;
  }
  .smackdab-click h3 {
    font-size: 250px;
    line-height: 250px;
  }
  .cta-section h2 {
    font-size: 48px;
    line-height: 54px;
  }
  .cta-section .cta-img img {
    max-width: 200px;
    left: 20px;
  }
  .cta-section .cta-img img:nth-child(2) {
    right: 20px;
  }
  .all-in-one h2 {
    font-size: 90px;
    line-height: 100px;
  }
  .multiple-tools h2 {
    font-size: 70px;
    line-height: 88px;
  }
  .one-platform h2 {
    font-size: 70px;
    line-height: 96px;
  }
  .one-platform-all .inner-div .image-mask {
    padding: 0px 50px 125px 50px;
  }
  .one-platform-all .img-div {
    top: -110px;
  }
  .one-platform-all .img-div img {
    max-width: 400px;
  }
  .one-platform-all h2 {
    font-size: 54px;
    line-height: 66.8px;
    max-width: 400px;
  }
  .img-flex.orange .flex-div {
    padding: 0px 50px 80px 50px;
  }
  .section-title,
  .h2 {
    font-size: 90px !important;
    line-height: 100px !important;
  }
  .section-title img {
    max-width: 130px;
  }
  .gamification-magic .inner-flex .left-part {
    padding: 60px 40px 60px 40px;
  }
  .level-up .inner-div h2 {
    max-width: unset;
  }
  .ai-works .inner-flex .left-part {
    padding: 70px 30px 50px 30px;
  }
  .ai-works .star-div .star-img {
    left: 18%;
    max-width: 205px !important;
    top: -70px;
  }
  .automation-agents .shape {
    display: none;
  }
  .automation-agents h2 {
    margin-bottom: 60px;
  }
  .automation-agents .inner-flex .left-part {
    max-width: unset;
    padding: 50px 30px 50px 30px;
    background: var(--blue_light);
    border-radius: 50px;
  }
  .flex-content.bg-orange .inner-flex {
    padding: 30px 0px 0 30px;
  }
  .ai-banner .banner-img {
    max-width: 470px;
  }
  .ai-banner .inner-div .image-mask {
    padding: 90px 20px 190px 35px;
  }
  .morning-brief h2 {
    margin-bottom: 70px;
  }
  .home-banner.email-banner .home-flex .left-part {
    padding: 50px 20px 50px 20px;
  }
  .flex-content.bg-gray .inner-flex .right-part {
    padding: 50px 30px 50px 30px;
  }
  .why-rocks .inner-flex {
    padding: 100px 50px 50px 60px;
    gap: 0px 40px;
  }
  .small-to-mid .inner-flex {
    gap: 20px 30px;
  }
  .small-to-mid .inner-flex .left-part {
    padding-left: 60px;
  }
  .small-to-mid .content {
    padding: 50px 40px;
  }
  .sales-marketing .inner-flex {
    gap: 20px 40px;
    padding: 90px 30px 60px 30px;
  }
  .sales-marketing .inner-flex .left-part {
    max-width: 350px;
  }
  .contact-management.community .inner-flex .left-part {
    max-width: 500px;
    margin-top: -150px;
  }
  .contact-management.community .inner-flex .right-part {
    padding: 50px 30px;
  }
  .join-smackdab .inner-flex {
    padding: 70px 30px 30px 30px;
    gap: 20px 40px;
  }
  .join-smackdab .inner-flex .right-part {
    margin-bottom: -70px;
  }
  .comparison .images img:nth-child(1) {
    max-width: 200px;
    top: 40%;
    left: 20px;
  }
  .comparison .images img:nth-child(2) {
    right: -30px;
    top: 80%;
    max-width: 350px;
  }
  .whySmackDabSec h2 span {
    font-size: 160px;
    line-height: 180px;
  }
  .wins-everytime .feature-grid .card1 h3::before{
    display: none;
  }
  .home-banner .home-flex .left-part p {
    margin-bottom: 100px;
  }
  .automation-agents h2 span.img-before{
    width: 110px;
    height: 60px;
  }
  .pricing-card label {
    width: calc(100% - 50px);
  }
  .pricing-grid, .price-add-on .inner-grid {
    gap: 15px;
  }
  .pricing-plan .big-btn {
    font-size: 140px;
    line-height: 166px;
  }
}

@media (max-width: 1280px) {
  .smackItSec {
    font-size: 100px;
    line-height: 100px;
  }
  .pricing-grid .pricing-card {
    padding: 40px 20px;
  }
}

@media (max-width: 1200px) {
  .section-title,
  .h2 {
    font-size: 70px !important;
    line-height: 80px !important;
  }
  .h2 img{
    max-width: 90px;
  }
  .h2 span.img-before{
    width: 90px;
    height: 90px;
  }
  .header .nav-item .mega-menu .features .card a {
    padding: 35px 15px 20px 15px;
  }
  .header .nav-links {
    padding: 0 30px;
    gap: 18px;
  }
  .header .secondary-btn {
    padding: 10px 20px;
    font-size: 17px;
  }
  .home-banner .home-flex .left-part h1 {
    font-size: 70px;
    line-height: 85px;
  }
  .home-banner .home-flex .left-part .image-mask {
    padding: 60px 40px 45px;
  }
  .big-text {
    font-size: 80px;
    line-height: 100px;
  }
  .big-text span.img-before{
    width: 90px;
    height: 60px;
  }
  .big-text img {
    max-width: 90px;
  }
  .img-flex .flex-div .left-part h3 {
    font-size: 38px;
    line-height: 47px;
  }
  .mask-img-text .inner-flex .left-part h3 {
    font-size: 70px;
    line-height: 70px;
    min-width: unset;
  }
  .mask-img-text .inner-flex {
    gap: 20px;
  }
  .mask-img-text .inner-flex .left-part h3 img {
    max-width: 60px;
  }
  .email-marketing h4 {
    font-size: 150px;
    line-height: 150px;
  }
  .email-marketing h5 {
    font-size: 70px;
    line-height: 70px;
  }
  .smackdab-click h3 {
    font-size: 200px;
    line-height: 200px;
  }
  .tabs-section .tab-link {
    padding: 20px 15px;
  }
  .tabs-section .content-wrapper {
    margin-top: 30px;
  }
  .secondary-title {
    font-size: 38px !important;
    line-height: 47px !important;
  }
  .ai-works .star-div .star-img {
    left: 50%;
  }
  .contact-management.email .inner-flex {
    gap: 20px 40px;
    padding-left: 0px;
  }
  .contact-management.email .inner-flex .right-part p {
    max-width: unset;
  }
  .contact-management.email .inner-flex .left-part {
    margin-top: -200px;
  }
  .data-driven .inner-flex {
    gap: 20px 40px;
  }
  .data-driven .inner-flex .right-part .primary-btn {
    bottom: 10px;
    left: 60px;
  }
  .data-driven .inner-flex .right-part .image-mask {
    padding: 50px 60px 110px;
  }
  .home-banner.customization .home-flex .left-part .primary-btn {
    left: 40px;
  }
  .custom-fields .inner-flex.flex2 .right-part .image-mask {
    padding: 50px 30px 155px;
  }
  .custom-fields .inner-flex {
    gap: 20px 40px;
  }
  .custom-fields .inner-flex + .inner-flex {
    margin-top: 50px;
  }
  .ad-workflow .inner-flex {
    padding: 75px 40px 50px 40px;
  }
  .break-free .image-mask {
    padding: 120px 160px 180px 30px;
  }
  .break-free .primary-btn {
    left: 40px;
  }
  .small-to-mid h2 .to {
    font-size: 50px;
    line-height: 70px;
  }
  .small-to-mid h2 .small {
    font-size: 30px;
    line-height: 40px;
  }
  .sales-marketing .inner-flex .left-part {
    max-width: 250px;
  }
  .sales-marketing .inner-flex {
    gap: 20px 0px;
    flex-direction: row-reverse;
    padding: 60px 0px 50px 30px;
  }
  .sales-marketing .inner-flex .left-part {
    margin-bottom: -100px;
  }
  .customer-services .right-part {
    max-width: 400px;
  }
  .customer-services .inner-flex {
    margin-top: 30px;
  }
  .featureSection05.flex-wrap .right-flex {
    padding: 70px;
  }
  .featureSection05.flex-wrap .right-flex h3 {
    font-size: 38px;
    line-height: 47px;
  }
  .featureSection04.flex-wrap .left-flex h3 {
    font-size: 38px;
    line-height: 47px;
  }
  .featureSection04.flex-wrap .left-flex {
    padding: 35px 60px 35px 60px;
  }

  .featureSection05.flex-wrap.feat03 .right-flex {
    padding: 70px;
  }
  .featureSection02 .flex-wrap .left-flex h3 {
    font-size: 38px;
    line-height: 47px;
  }
  .featureSection01 .flex-wrap .right-flex h3 {
    font-size: 38px;
    line-height: 47px;
  }
  .whySmackDabSec .DabDetailSec,
  .whySmackDabSec .smackDetailSec {
    padding: 100px;
  }

  .aboutBelowBannerSec .flex-wrap .right-flex {
    padding: 90px;
  }
  .aboutBannerSec h2:after {
    display: none;
  }
  .aboutBannerSec {
    background-color: var(--blue_light);
    border-radius: 50px;
    padding: 100px;
    margin-bottom: 200px;
  }
  .wins-everytime .feature-grid > div {
    width: calc(50% - 13px);
    margin-top: 0 !important;
  }
  .aboutBelowBannerSec .flex-wrap{
    margin-bottom: 75px;
    margin-top: 75px;
  }
  .whatMakesDiffSection h2 {
    margin-bottom: 120px;
  }
  .featureSection05.flex-wrap .left-flex:before,
  .featureSection04.flex-wrap .right-flex:before,
  .featureSection05.flex-wrap.feat03 .left-flex:before,
  .featureSection02 .flex-wrap .right-flex:before,
  .featureSection01 .flex-wrap .left-flex:before{
    font-size: 110px;
    line-height: 126px;
  }
  .about{
    padding: 20px 0 0;
  }
  .mask-img-text .inner-flex .left-part h3 span.img-before{
    width: 60px;
    height: 60px;
  }
  .automation-agents h2 span.img-before{
    width: 80px;
    height: 50px;
  }
  .home-banner.gamification-banner .home-flex .left-part h1 span.img-before {
    width: 80px;
    height: 38px;
  }
  .img-flex.no-bg .flex-div .left-part h3::after {
    top: -170px;
    left: 70px;
    width: 285px;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
  .price-add-on .inner-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .price-add-on .add-on-card {
    padding: 40px 20px;
  }
  .pricing-plan .big-btn {
    font-size: 120px;
    line-height: 136px;
    margin-top: 100px;
    margin-bottom: 50px;
  }
  .annually-plan .left-part .image-mask {
    padding: 45px 20px 75px 20px;
    mask-image: none;
    height: 100%;
  }
  .annually-plan .left-part .primary-btn{
    left: 20px;
    bottom: 30px;
  }
  .annually-plan .left-part h5 {
    font-size: 44px;
    line-height: 56.8px;
  }
  .annually-plan .left-part .price h5::before {
    padding: 0 75px;
  }
  .available-add-on .addon-grid {
    gap: 20px;
  }
  .available-add-on .addon-grid .card h3 {
    font-size: 36px;
    line-height: 45.2px;
    margin-bottom: 25px;
  }
  .available-add-on .addon-grid .card h4 {
    font-size: 38px;
    line-height: 47.6px;
  }
  .available-add-on .addon-grid .card p, .available-add-on .addon-grid .card ul li {
    font-size: 19px;
    line-height: 28px;
  }
  .available-add-on .addon-grid .card {
    padding: 30px 20px 45px;
  }
  .available-add-on h2 {
    margin-bottom: 115px;
  }
  .available-add-on .addon-grid .card h3 span{
    top: -13px;
    margin-left: -14px;
  }
}

@media (max-width: 1024px) {
  .home-banner .home-flex .left-part,
  .home-banner .home-flex .right-part {
    max-width: 100%;
  }
  .home-banner .home-flex .right-part {
    text-align: center;
  }
  .home-banner .home-flex {
    flex-direction: column;
  }
  .home-banner .home-flex .left-part .image-mask {
    mask-position: top;
    mask-size: auto;
  }
  .home-banner .home-flex .left-part h1 {
    font-size: 55px;
    line-height: 65px;
    max-width: unset;
  }
  .home-banner .home-flex .left-part h1 span.img-before {
    width: 40px;
    height: 40px;
  }
  .home-banner .home-flex .right-part img,
  .img-flex .flex-div .right-part img {
    max-width: 500px;
    width: 100%;
  }
  .img-flex .flex-div {
    flex-direction: column !important;
  }
  .img-flex .flex-div .right-part {
    max-width: 100%;
    text-align: center;
  }
  .img-flex {
    padding: 0px 0 20px;
  }
  .mask-img-text .inner-flex {
    flex-direction: column;
    align-items: center;
  }
  .mask-img-text .inner-flex .left-part,
  .img-flex.email-marketing .flex-div .right-part {
    max-width: 100% !important;
  }
  .mask-img-text .inner-flex .right-part {
    max-width: 600px;
  }
  .mask-img-text.flexible-customize .inner-flex {
    padding: 50px 40px 50px 40px;
  }
  .email-marketing h4 {
    margin-top: 30px;
  }
  .all-in-one h2 {
    font-size: 70px;
    line-height: 80px;
  }
  .multiple-tools h2 {
    font-size: 50px;
    line-height: 68px;
  }
  .one-platform h2 {
    font-size: 50px;
    line-height: 66px;
  }
  .image-mask {
    mask-image: none !important;
  }
  .mask-img-text .inner-flex .right-part .primary-btn {
    position: unset;
    margin-top: 20px;
    margin-left: auto;
  }
  .img-flex.gamification .flex-div {
    margin-top: 0;
  }
  .img-flex.gamification .flex-div .left-part {
    max-width: 800px;
  }
  .img-flex.tools .flex-div {
    margin-top: 0px;
  }
  .img-flex.tools .flex-div .left-part p {
    text-align: left;
  }
  .img-flex.reverce .flex-div .right-part {
    margin-top: 20px;
  }
  .img-flex.orange .flex-div .left-part h3 {
    font-size: 50px;
    line-height: 60px;
    padding-top: 50px;
  }
  .img-flex.orange .flex-div .left-part p,
  .img-flex.no-bg .flex-div .left-part p {
    text-align: left;
  }
  .img-flex.reverce .flex-div .left-part {
    max-width: unset;
  }
  .section-title,
  .h2 {
    font-size: 50px !important;
    line-height: 60px !important;
  }
  .section-title img {
    max-width: 80px;
  }
  .img-flex.orange,
  .gamification-magic {
    padding: 20px 0;
  }
  .gamification-magic .inner-flex .right-part {
    max-width: 500px;
  }
  .gamification-magic .inner-flex .right-part img {
    width: 100%;
  }
  .ai-works .inner-flex,
  .automation-agents .inner-flex {
    flex-direction: column;
    align-items: center;
  }
  .ai-works h2 {
    margin-bottom: 70px;
  }
  .automation-agents h2 {
    margin-bottom: 40px;
  }
  .flex-content .inner-flex {
    flex-direction: column-reverse;
    align-items: center;
  }
  .contact-management .inner-flex .right-part {
    padding: 50px 30px;
  }
  .contact-management .inner-flex .left-part {
    margin-top: -150px;
  }
  .level-up.take-break .inner-div h2 img {
    max-width: 100px;
  }
  .h2 img {
    max-width: 100px;
  }
  .ai-banner .inner-div {
    background-color: var(--gray);
    padding: 50px 20px;
    border-radius: 50px;
    text-align: center;
  }
  .ai-banner .inner-div .image-mask {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    text-align: left;
  }
  .ai-banner .inner-div .primary-btn {
    position: unset;
    margin: 0 auto;
  }
  .ai-banner .banner-img {
    position: unset;
    margin: 20px auto;
  }
  .morning-brief .content .text {
    padding: 40px 20px;
  }
  .home-banner .home-flex {
    align-items: center;
  }
  .data-driven .inner-flex .right-part .primary-btn {
    bottom: 30px;
  }
  .contact-management.collaboration h2 span.img-before{
    width: 60px;
    height: 60px;
  }
  .contact-management.collaboration h2 img {
    max-width: 60px;
  }
  .h2 img {
    max-width: 60px;
  }
  .h2 span.img-before{
    width: 60px;
    height: 60px;
  }
  .workflow .inner-flex {
    gap: 20px 40px;
  }
  .workflow .inner-flex h3 {
    font-size: 30px;
    line-height: 40px;
  }
  .why-rocks .inner-flex {
    flex-direction: column;
    align-items: start;
  }
  .personalized-layout .flex-div {
    gap: 0 40px;
    margin-top: 0;
  }
  .break-free .img {
    max-width: 280px;
  }
  .contact-management.community .inner-flex .left-part {
    max-width: 400px;
  }
  .ai-works.real-estate .inner-flex {
    gap: 20px;
  }
  .comparison .images img:nth-child(1) {
    max-width: 150px;
  }
  .comparison .images img:nth-child(2) {
    max-width: 300px;
  }
  .level-up.comparison-div .star-div .star-img {
    max-width: 160px !important;
    top: -70px;
  }
  .level-up.comparison-div.blue-bg .star-div .star-img{
    top: -50px;
  }
  .blog-post .post-img-div {
    gap: 20px 20px;
  }
  .blog-post .join-smackdab {
    padding: 40px 20px;
  }
  .featureSection05.flex-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .featureSection05.flex-wrap .right-flex {
    width: 100%;
  }
  .featureSection05.flex-wrap .left-flex:before {
    font-size: 100px;
    line-height: 150px;
  }
  .featureSection04.flex-wrap .left-flex {
    width: 100%;
  }
  .featureSection04.flex-wrap .right-flex:before {
    font-size: 100px;
    line-height: 150px;
  }
  .featureSection05.flex-wrap.feat03 .left-flex:before {
    font-size: 100px;
    line-height: 150px;
  }
  .featureSection02 .flex-wrap .right-flex:before {
    font-size: 100px;
    line-height: 150px;
  }
  .featureSection02 .flex-wrap {
    gap: 30px;
    flex-direction: column-reverse;
  }
  .featureSection02 .flex-wrap .right-flex:before {
    right: 30px;
  }
  .featureSection04.flex-wrap {
    flex-direction: column-reverse;
    align-items: center;
  }
  .featureSection01 .flex-wrap .left-flex:before {
    font-size: 100px;
    line-height: 150px;
  }
  .featureSection01 .flex-wrap {
    flex-direction: column;
    padding: 50px;
    text-align: center;
  }
  .featureSection01 {
    padding-left: 0;
  }
  .featureSection01 .flex-wrap .left-flex {
    margin-left: 0px;
  }
  .featureSection01 .flex-wrap .right-flex {
    padding-right: 0px;
  }
  .smackItSec {
    font-size: 80px;
    line-height: 80px;
    padding: 50px;
  }
  .whySmackDabSec .DabDetailSec,
  .whySmackDabSec .smackDetailSec {
    max-width: 65%;
    padding: 60px;
  }
  .aboutBannerSec img {
    position: static;
    transform: rotate(0deg);
    margin-top: 20px;
  }
  .aboutBannerSec p {
    padding-right: 0px;
  }
  .whySmackDabSec h2 span {
    font-size: 80px;
    line-height: 120px;
  }
  .aboutBannerSec {
    margin-bottom: 20px;
  }
  .aboutBelowBannerSec .flex-wrap .right-flex .star-img{
    display: none;
  }
  .level-up.last-tool .inner-div h2{
    max-width: 470px;
  }
  .level-up.last-tool .inner-div h2 span.img-before {
    margin: 0 10px -20px;
  }
  .wins-everytime h2 span::before {
    transform: rotate(-4deg);
    inset: -5px;
    top: 0px;
    border-radius: 20px;
  }
  .home-banner .home-flex .left-part p {
    margin-bottom: 50px;
  }
  .home-banner .home-flex .left-part p{
    max-width: unset;
  }
  .level-up.take-break .inner-div h2 span.img-before {
    width: 110px;
    height: 90px;
  }
  .whySmackDabSec h2{
    margin-bottom: 125px;
  }
  .whySmackDabSec h2::before, .whySmackDabSec h2::after{
    display: none;
  }
  .whySmackDabSec .smackDetailSec:before, .whySmackDabSec .DabDetailSec:before{
    font-size: 70px;
  }
  .img-flex.no-bg .flex-div .left-part h3::after{
    display: none;
  }
  .pricing-head h2 span::before{
    border-radius: 10px;
    inset: -5px;
  }
  .free-forever h4, .annually-plan .left-part h4{
    font-size: 22px;
    line-height: 26px;
  }
  .free-forever {
    padding: 70px 20px 30px 20px;
  }
  .free-forever .star-img{
    left: 50%;
  }
  .annually-plan {
    gap: 30px;
  }
  .annually-plan .right-part {
    max-width: 325px;
  }
}

@media (max-width: 991px) {
  body{
    padding-top: 75px;
  }
  .header .navbar {
    padding: 20px;
  }
  .header .nav-links {
    flex-direction: column;
    padding: 20px 15px;
    position: absolute;
    top: 73px;
    left: -100%;
    width: 100%;
    background: var(--gray);
    transition: all 0.5s;
    height: calc(100vh - 73px);
    overflow: auto;
    gap: 5px;
  }
  .header .nav-item {
    width: 100%;
  }
  .header .nav-link {
    padding: 15px;
    width: 100%;
    display: block;
    font-size: 20px;
    line-height: 21px;
    font-weight: 500;
    border-radius: 10px;
  }
  .header .nav-link:hover {
    background-color: #ebebeb;
  }
  .header .menu-toggle {
    display: block;
  }
  .header .nav-item .mega-menu {
    position: relative;
    width: 100%;
    padding: 20px 15px;
  }
  .header .nav-links.active {
    left: 0;
  }
  .header .nav-item.mobile-btn {
    display: block;
  }
  .header .nav-item.has-mega-menu .nav-link::after {
    top: 50%;
    right: 15px;
    transition: all 0.3s;
  }
  .header .nav-item .mega-menu .features {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .header .nav-item .mega-menu .trial {
    display: none;
  }
  .header .nav-item.active .nav-link::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .header .header-btn .secondary-btn {
    display: none;
  }
  .email-marketing h4 {
    font-size: 110px;
    line-height: 100px;
  }
  .email-marketing h5 {
    font-size: 50px;
    line-height: 50px;
  }
  .smackdab-click h2 {
    font-size: 80px;
    line-height: 80px;
  }
  .smackdab-click h3 {
    font-size: 150px;
    line-height: 150px;
  }
  .smackdab-click .click-div {
    padding: 30px 20px 60px;
  }
  .smackdab-click .img-div img {
    max-width: 200px;
    width: 100%;
  }
  .smackdab-click .click-div h6 {
    border-radius: 15px;
    padding: 10px 15px;
    height: 50px;
    left: 15px;
    bottom: 100px;
    transform: rotate(-5deg);
  }
  .smackdab-click .click-div h6:nth-child(2) {
    right: 15px;
    bottom: 110px;
    transform: rotate(5deg);
  }
  .cta-section .cta-img img {
    max-width: 120px;
    left: 20px;
    top: -40px;
  }
  .cta-section .cta-img img:nth-child(2) {
    bottom: -30px;
  }
  .tabs-section .wrapper {
    margin-top: 0;
  }
  .tabs-section .tab-wrapper {
    display: none;
  }
  .tabs-section .content-wrapper {
    margin-top: 0;
    padding: 20px 10px;
  }
  .tabs-section .content-wrapper .content-flex {
    flex-direction: column-reverse;
    background-color: var(--gray);
    padding: 30px 20px;
    border-radius: 20px;
  }
  .tabs-section .tab-content {
    padding: 0 3px;
  }
  .tabs-section .content-wrapper .content-flex .right-part h3 {
    font-size: 22px;
    line-height: 26px;
  }
  .tabs-section .content-wrapper .content-flex .right-part p {
    font-size: 16px;
    line-height: 20px;
  }
  .tabs-section .content-wrapper .primary-text-btn {
    font-size: 16px;
    line-height: 20px;
  }
  .tabs-section .content-wrapper .content-flex .left-part img {
    max-width: 300px;
    margin: 0 auto;
  }
  .tabs-section .content-wrapper .content-flex {
    gap: 20px;
  }
  .tabs-section .content-wrapper .content-flex .right-part h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 30px;
  }
  .tabs-section .content-wrapper .content-flex .right-part h4 img {
    max-width: 25px;
  }
  .one-platform-all,
  .enterprises {
    padding: 20px 0 20px;
  }
  .one-platform-all .img-div {
    position: unset;
  }
  .one-platform-all .primary-btn {
    position: unset;
  }
  .one-platform-all .inner-div {
    background-color: var(--blue_light);
    border-radius: 50px;
    padding: 50px 20px;
  }
  .one-platform-all .inner-div .image-mask {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
  }
  .one-platform-all .inner-div .left-part {
    max-width: unset;
    padding-top: 0;
  }
  .one-platform-all h2 {
    max-width: unset;
  }
  .one-platform-all .img-div {
    text-align: center;
    margin: 30px 0;
  }
  .one-platform-all h2 {
    font-size: 36px;
    line-height: 43px;
  }
  .header .secondary-btn {
    padding: 15px 22px;
    font-size: 18px;
  }
  .gamification-magic .inner-flex {
    flex-direction: column;
  }
  .gamification-magic .inner-flex .right-part {
    margin: 60px auto 10px;
  }
  .gamification-magic .inner-flex .left-part {
    padding: 50px 20px 50px 20px;
  }
  .star-div .star-img {
    max-width: 200px !important;
    top: -60px;
  }
  .img-flex.orange .flex-div {
    padding: 0px 20px 50px 20px;
  }
  .level-up .inner-div {
    padding: 70px 20px 50px;
  }
  .flex-content.reverce .inner-flex {
    flex-direction: column-reverse;
  }
  .flex-content.bg-orange .inner-flex {
    padding: 50px 20px 0 20px;
  }
  .flex-content,
  .automation-agents,
  .ai-works,
  .contact-management {
    padding: 20px 0;
  }
  .level-up {
    padding: 40px 0 30px;
  }
  .ai-works .inner-flex .left-part,
  .automation-agents .inner-flex .left-part {
    padding: 50px 20px 50px 20px;
  }
  .contact-management .inner-flex {
    flex-direction: column-reverse;
    align-items: center !important;
  }
  .contact-management h2 {
    margin-bottom: 40px;
  }
  .contact-management .inner-flex .right-part {
    width: 100%;
    position: relative;
  }
  .contact-management.magic .inner-flex .right-part .star {
    top: -56px;
    max-width: 130px;
  }
  .contact-management.email .inner-flex .left-part {
    margin-top: -180px;
    margin-left: -20px;
  }
  .data-driven,
  .built-marketer,
  .blog-section {
    padding: 20px 0;
  }
  .built-marketer .inner-flex {
    gap: 20px 20px;
  }
  .built-marketer .inner-flex .left-part img {
    max-width: 60px;
  }
  .contact-management .inner-flex .right-part p {
    max-width: unset;
  }
  .why-rocks .inner-flex {
    padding: 80px 20px 50px 20px;
  }
  .why-rocks p {
    margin-bottom: 30px;
  }
  .ad-workflow .inner-flex {
    flex-direction: column;
    gap: 50px;
  }
  .ad-workflow .inner-flex .left-part {
    max-width: unset !important;
  }
  .break-free .image-mask {
    padding: 80px 20px 130px 20px;
  }
  .break-free .img {
    max-width: 230px;
    right: 40px;
    bottom: -40px;
  }
  .ad-workflow {
    padding: 40px 0 20px;
  }
  .break-free {
    padding: 30px 0 20px;
  }
  .enterprises .inner-div {
    padding: 50px 20px 50px;
  }
  .ad-workflow .inner-flex {
    padding: 75px 0px 50px 0px;
  }
  .fits-all p {
    margin: 0 auto 30px;
  }
  .fits-all .primary-btn {
    margin: 0 auto 30px;
  }
  .small-to-mid .inner-flex {
    flex-direction: column;
    align-items: center;
  }
  .small-to-mid .inner-flex .left-part {
    padding-left: 0px;
    background-image: none;
  }
  .small-to-mid h2 .small {
    font-size: unset;
    line-height: unset;
  }
  .small-to-mid h2 .to {
    font-size: unset;
    line-height: unset;
  }
  .small-to-mid .content {
    padding: 50px 20px;
  }
  .small-to-mid,
  .fits-all {
    padding: 20px 0;
  }
  .sales-marketing {
    padding: 60px 0 50px;
  }
  .customer-services .inner-flex {
    flex-direction: column;
    align-items: center;
    gap: 30px 0;
  }
  .customer-services .left-part {
    gap: 20px 20px;
  }
  .customer-services .left-part img {
    max-width: 100px;
  }
  .customer-services {
    padding: 40px 0;
  }
  .contact-management.community .inner-flex {
    flex-direction: column;
    gap: 20px;
  }
  .contact-management.community h2 {
    position: relative;
    background-color: var(--white);
  }
  .contact-management.community .inner-flex .left-part {
    margin-top: -80px;
  }
  .contact-management.community .inner-flex .right-part {
    margin-left: 0;
    padding: 30px 20px;
    border-radius: 20px;
  }
  .ai-works.real-estate {
    padding: 60px 0 20px;
  }
  .ai-works.real-estate .star-div .star-img {
    max-width: 155px !important;
    top: -50px;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-section .tabs-section .tab-wrapper {
    display: block;
    padding-bottom: 20px;
    overflow: auto;
  }
  .blog-section .tabs-section .tabs {
    min-width: 1000px;
  }
  .join-smackdab .inner-flex {
    flex-direction: column;
    align-items: center;
    padding: 50px 20px 50px 20px;
  }
  .join-smackdab .inner-flex .right-part {
    margin-bottom: -90px;
  }
  .join-smackdab {
    padding: 20px 0 50px;
  }
  .comparison .images {
    display: none;
  }
  .do-better {
    padding: 20px 0;
  }
  .do-better .card {
    padding: 50px 20px 50px;
  }
  .comparison,
  .wins-everytime {
    padding: 20px 0 20px;
  }
  .do-better h2 {
    padding: 0 10px;
    margin: 0 auto 20px;
  }
  .do-better .slick-dots {
    margin-top: 30px;
  }
  .wins-everytime h2 {
    margin: 0 auto 40px;
  }
  .wins-everytime .feature-grid h3 {
    font-size: 35px;
    line-height: 42px;
  }
  .wins-everytime .feature-grid h3 span.img-before {
    width: 30px;
    height: 30px;
  }
  .wins-everytime .feature-grid .card6 h3 {
    padding-left: 0;
  }
  .wins-everytime .feature-grid .card6 h3::before {
    display: none;
  }
  .wins-everytime .feature-grid .card6 p {
    margin-top: 30px;
  }
  .level-up.comparison-div {
    padding: 50px 0 20px;
  }
  .blog-post .latest-article {
    max-width: 320px;
  }
  .blog-post .blog-content {
    gap: 20px 20px;
  }
  .blog-post .blog-content .post-excerpt {
    padding: 40px 20px;
    margin-top: 30px;
  }
  .aboutBannerSec{
    padding: 50px 20px;
  }
  .aboutBelowBannerSec .flex-wrap{
    gap: 20px;
  }
  .aboutBelowBannerSec .flex-wrap .right-flex {
    padding: 50px 20px;
    display: flex;
    align-items: center;
  }
  .whySmackDabSec .smackDetailSec:before, .whySmackDabSec .DabDetailSec:before{
    font-size: 70px;
  }
  .blog-post .blog-content {
    flex-direction: column;
  }
  .blog-post .latest-article {
    max-width: unset;
  }
  .blog-post .latest-posts{
    max-width: 450px;
  }
  .contact-management.email-client .inner-flex .left-part {
    margin-top: 0px !important;
    margin-left: 0px !important;
  }
  .level-up.about-level-up .inner-div h2 span.img-before {
    width: 100px;
    height: 78px;
    border-radius: 20px;
  }
  .price-add-on .logo-grid {
    gap: 30px 30px;
  }
  .price-add-on .inner-grid{
    gap: 30px 15px;
    margin-bottom: 100px;
  }
  .pricing-plan {
    margin-top: 10px;
  }
  .pricing-plan .big-btn {
    font-size: 80px;
    line-height: 86px;
    margin-top: 50px;
    padding: 40px 100px 55px 100px;
  }
  .tabs-section.pricing-tab .tab-wrapper {
    display: block;
  }
  .terms-section h4 {
    margin-bottom: 10px;
    margin-top: 30px;
  }
  .pricing-table {
    display: block;
    white-space: nowrap;
  }
  .tabs-section.pricing-tab.free-forever-tabs .tabs{
    margin-left: 0;
  }
  .annually-plan .left-part h5 {
    font-size: 34px;
    line-height: 46.8px;
  }
  .annually-plan .left-part .price h5::before {
    padding: 0 55px;
    border-radius: 20px;
  }
  .annually-plan .left-part .image-mask {
    padding: 30px 20px 75px 20px;
  }
}

@media (max-width: 850px) {
  .annually-plan{
    flex-direction: column;
    margin-bottom: 20px;
    align-items: center;
  }
  .annually-plan .left-part .price {
    right: 20px;
  }
  .available-add-on .addon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .available-add-on .addon-grid .card:nth-child(2) {
    margin-top: 0;
  }
  .available-add-on h2 {
    margin-bottom: 45px;
  }
  .annually-plan .left-part, .annually-plan.gray-bg .left-part {
    margin-bottom: 0px;
  }
}

@media (max-width: 767px) {
  p {
    font-size: 19px;
    line-height: 28px;
  }
  .terms-section ul li{
    font-size: 19px;
    line-height: 28px;
  }
  .smackdab-click p {
    font-size: 19px;
    line-height: 28px;
  }
  .header .nav-item .mega-menu .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer .logo {
    margin-bottom: 35px;
  }
  .home-banner .home-flex{
    gap: 40px;
  }
  .home-banner .home-flex .left-part h1 {
    font-size: 36px;
    line-height: 43px;
    margin-bottom: 20px;
  }
  .home-banner .home-flex .left-part h1 img:last-child {
    max-width: 30px;
  }
  .home-banner .home-flex .left-part h1 span.img-before {
    width: 32px;
    height: 32px;
  }
  .big-text{
    margin: 20px 0 20px;
  }
  .home-banner .home-flex .left-part p {
    margin-bottom: 60px;
  }
  .home-banner .home-flex .left-part p,
  .img-flex .flex-div .left-part p {
    font-size: 19px;
    line-height: 28px;
  }
  .secondary-btn {
    font-size: 16px;
    padding: 9px 25px;
  }
  .primary-btn {
    font-size: 16px;
  }
  .primary-btn span {
    padding: 13px 33px;
  }
  .primary-btn img {
    padding: 17px 14px;
    max-width: 50px !important;
  }
  .primary-btn:hover span {
    padding: 13px 20px 13px 33px;
  }
  .black-outline-btn {
    padding: 17px 30px;
    font-size: 16px;
    line-height: 20px;
  }
  .img-flex .flex-div .left-part h3 {
    font-size: 32px;
    line-height: 38px;
    padding-top: 20px;
  }
  .img-flex .flex-div .left-part h3::before {
    width: 41px;
    height: 9px;
  }
  .big-text {
    font-size: 60px;
    line-height: 80px;
  }
  .big-text span.img-before{
    width: 60px;
    height: 40px;
  }
  .big-text img {
    max-width: 60px;
  }
  .primary-text-btn {
    font-size: 17px;
  }
  .img-flex.email-marketing .flex-div {
    margin-top: 30px;
  }
  .mask-img-text .inner-flex .left-part h3 {
    font-size: 36px;
    line-height: 43px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
  }
  .mask-img-text .inner-flex .left-part h3 img {
    max-width: 40px;
  }
  .mask-img-text.flexible-customize .inner-flex {
    border-radius: 50px;
    padding: 50px 20px 50px 20px;
  }
  .email-marketing h4 {
    font-size: 70px;
    line-height: 70px;
  }
  .email-marketing h5 {
    font-size: 36px;
    line-height: 43px;
  }
  .smackdab-click h3::before {
    width: 30%;
    max-width: 300px;
  }
  .smackdab-click h2 {
    font-size: 60px;
    line-height: 60px;
  }
  .smackdab-click h3 {
    font-size: 100px;
    line-height: 100px;
  }
  .smackdab-click .img-div {
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-bottom: 250px;
    position: relative;
    margin-bottom: 100px;
  }
  .smackdab-click .img-div img {
    margin-top: 0 !important;
  }
  .resource-hub {
    padding: 40px 0 40px;
  }
  .smackdab-click .img-div img:first-child {
    margin-top: 20px;
    max-width: 230px;
  }
  .smackdab-click .img-div img:nth-child(3) {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .smackdab-click .click-div h6 {
    left: 50%;
    top: 530px;
    bottom: unset;
    transform: rotate(5deg) translateX(-50%);
    white-space: nowrap;
    font-size: 15px;
    line-height: 18px;
    gap: 5px;
  }
  .smackdab-click .click-div h6 svg {
    max-width: 25px;
  }
  .smackdab-click .click-div h6:nth-child(2) {
    left: 15px;
    top: 320px;
    transform: rotate(-5deg);
    right: unset;
    bottom: unset;
    z-index: 9;
  }
  .cta-section .cta-img img {
    max-width: 100px;
    top: -60px;
  }
  .cta-section .cta-img img:nth-child(2) {
    bottom: -30px;
  }
  .accordion {
    padding: 30px 25px 30px 25px;
  }
  .accordion-header p {
    font-size: 21px;
    line-height: 25px;
  }
  .resource-hub h2,
  .cta-section h2,
  .faq h2 {
    font-size: 40px;
    line-height: 45px;
  }
  .all-in-one h2 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 40px;
  }
  .multiple-tools h2 {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 60px;
  }
  .multiple-tools .img-div img {
    margin-top: 0 !important;
  }
  .multiple-tools .img-div {
    justify-content: center;
    gap: 20px 40px;
    position: relative;
    padding-bottom: 80px;
    max-width: 500px;
    margin: 0 auto;
  }
  .multiple-tools .img-div img:nth-child(2) {
    margin-top: 70px !important;
  }
  .multiple-tools .img-div img:nth-child(4) {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .multiple-tools .img-div img:nth-child(5) {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .all-in-one,
  .multiple-tools,
  .img-flex.no-bg,
  .workflow {
    padding: 20px 0;
  }
  .one-platform h2 {
    font-size: 36px;
    line-height: 43px;
  }
  .cta-section {
    padding: 60px 0 20px;
  }
  .one-platform {
    padding: 30px 0;
  }
  .one-platform .btn-wrapper {
    padding: 30px 20px;
    height: 145px;
  }
  .container {
    padding: 0 10px;
  }
  .tabs-section .content-wrapper {
    padding: 20px 0;
  }
  .tabs-section {
    padding: 30px 0 0;
  }
  .mask-img-text.all-in-one-crm {
    padding: 0 0 20px;
  }
  .gamification-magic h2 {
    margin: 0 auto 30px;
  }
  .secondary-title {
    font-size: 32px !important;
    line-height: 38px !important;
  }
  .level-up .inner-div {
    padding: 60px 20px 50px;
  }
  .level-up .inner-div p {
    margin: 0 auto 30px;
  }
  .morning-brief .content .text {
    position: unset;
    max-width: unset;
    box-shadow: none;
    padding: 0;
    margin-bottom: 30px;
  }
  .morning-brief h2 {
    margin-bottom: 30px;
  }
  .contact-management .inner-flex .right-part {
    padding: 50px 20px;
  }
  .contact-management.email .inner-flex .left-part {
    margin-top: -250px;
    margin-left: -20px;
  }
  .flex-content .inner-flex .right-part {
    margin-bottom: 20px;
  }
  .data-driven .inner-flex {
    flex-direction: column-reverse;
  }
  .data-driven .inner-flex .right-part .image-mask {
    padding: 50px 30px 100px;
  }
  .data-driven .inner-flex .right-part .primary-btn {
    left: 20px;
  }
  .data-driven .inner-flex .right-part .image-mask p {
    margin-bottom: 10px;
  }
  .data-driven h2 {
    margin-bottom: 30px;
  }
  .built-marketer .inner-flex {
    flex-direction: column;
    align-items: center;
  }
  .built-marketer .inner-flex .right-part {
    padding-top: 0;
  }
  .built-marketer .inner-flex .left-part img {
    margin-bottom: 20px;
  }
  .built-marketer h2 span {
    padding-left: 5%;
  }
  .built-marketer .inner-flex .left-part p {
    padding: 0 0 0 0px;
  }
  .workflow .inner-flex {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
  }
  .workflow .inner-flex > div {
    max-width: unset !important;
  }
  .workflow .inner-flex + .inner-flex {
    margin-top: 40px;
  }
  .contact-management.collaboration .inner-flex .right-part {
    margin-bottom: 20px;
  }
  .personalized-layout .flex-div {
    flex-direction: column-reverse;
    align-items: center;
  }
  .personalized-layout .flex-div div:last-child {
    text-align: center;
  }
  .custom-fields .inner-flex {
    flex-direction: column !important;
  }
  .custom-fields .inner-flex.flex1 .right-part {
    max-width: unset;
  }
  .custom-fields .inner-flex.flex2 .right-part .image-mask {
    padding: 50px 20px 130px;
  }
  .custom-fields .inner-flex.flex2 .right-part .primary-btn {
    left: 20px;
    bottom: 50px;
  }
  .home-banner .home-flex .left-part .image-mask {
    padding: 50px 20px 85px;
  }
  .home-banner .home-flex .left-part .primary-btn{
    bottom: 40px;
    left: 20px;
    right: unset;
  }
  .home-banner.customization .home-flex .left-part .primary-btn {
    left: 20px;
  }
  .break-free .img {
    display: none;
  }
  .break-free .primary-btn {
    left: 30px;
    bottom: 40px;
  }
  .break-free p {
    max-width: unset;
  }
  .break-free .star-div .star-img {
    left: 40%;
  }
  .ad-workflow .star-div .star-img {
    left: 40%;
  }
  .sales-marketing .inner-flex {
    flex-direction: column-reverse;
    align-items: center;
  }
  .sales-marketing .inner-flex .left-part {
    margin-bottom: -90px;
  }
  .comparison .inner-div {
    padding: 50px 20px 50px;
  }
  .comparison h2,
  .comparison p {
    margin: 0 auto 20px;
  }
  .wins-everytime .feature-grid {
    justify-content: center;
    gap: 20px;
  }
  .wins-everytime .feature-grid > div {
    width: 70%;
    margin-top: 0 !important;
  }
  .wins-everytime .feature-grid .card1 .content {
    margin-bottom: 30px;
  }
  .wins-everytime .feature-grid .card2 {
    padding: 20px 20px 40px;
  }
  .wins-everytime .feature-grid .card3 .content {
    padding: 50px 20px;
  }
  .wins-everytime .feature-grid .card5 {
    padding: 20px 20px 40px;
  }
  .wins-everytime .feature-grid .card6 p {
    padding: 40px 20px 70px 20px;
  }
  .wins-everytime .feature-grid .card5 .img-div {
    margin-bottom: 30px;
  }
  .blog-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .blog-post .post-img-div {
    flex-direction: column;
  }
  .blog-post .join-smackdab {
    max-width: unset;
  }
  .featureSection05.flex-wrap .left-flex {
    width: 100%;
  }
  .featureSection05.flex-wrap .right-flex {
    padding: 50px;
  }
  .featureSection05.flex-wrap .right-flex p {
    font-size: 20px;
    line-height: 28px;
  }
  .featureSection05.flex-wrap .right-flex p {
    font-size: 20px;
    line-height: 28px;
  }

  .whatMakesDiffSection h2 {
    margin-bottom: 70px;
  }

  .featureSection04.flex-wrap .left-flex p {
    font-size: 20px;
    line-height: 28px;
  }
  .featureSection02 .flex-wrap .left-flex p {
    font-size: 20px;
    line-height: 28px;
  }
  .featureSection01 .flex-wrap .right-flex p {
    font-size: 20px;
    line-height: 28px;
  }
  .featureSection04.flex-wrap .right-flex {
    width: 100%;
    margin: 0;
  }
  .featureSection05.flex-wrap.feat03 .right-flex {
    padding: 50px;
  }
  .featureSection02 .flex-wrap .left-flex {
    padding: 0px;
  }
  .smackItSec {
    font-size: 60px;
    line-height: 60px;
    padding: 20px;
  }
  .featureSection01 .flex-wrap {
    margin-bottom: 50px;
  }
  .whySmackDabSec .smackDetailSec:before,
  .whySmackDabSec .smackDetailSec:after,
  .whySmackDabSec .DabDetailSec:before,
  .whySmackDabSec .DabDetailSec:after {
    transform: rotate(0deg);
    font-size: 65px;
  }
  .whySmackDabSec .smackDetailSec:before,
  .whySmackDabSec .DabDetailSec:before {
    top: -80px;
  }
  .whySmackDabSec h2 span {
    font-size: 70px;
    line-height: 100px;
  }
  .whySmackDabSec .DabDetailSec,
  .whySmackDabSec .smackDetailSec {
    max-width: 80%;
  }
  .whySmackDabSec .DabDetailSec {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .aboutBelowBannerSec .flex-wrap {
    margin-bottom: 35px;
    margin-top: 35px;
  }
  .aboutBelowBannerSec .flex-wrap .left-flex {
    width: 100%;
    min-width: unset;
    max-width: 350px;
  }
  .aboutBelowBannerSec .flex-wrap .left-flex img {
    width: 100%;
  }
  .featureSection05.flex-wrap .right-flex h3,
  .featureSection04.flex-wrap .left-flex h3,
  .featureSection02 .flex-wrap .left-flex h3,
  .featureSection01 .flex-wrap .right-flex h3 {
    font-size: 30px;
    line-height: 40px;
  }
  .aboutBelowBannerSec .flex-wrap {
    flex-direction: column;
    align-items: center;
  }
  .blog-post .author-card {
    padding: 30px 20px;
  }
  .wins-everytime h2 span::before {
    border-radius: 10px;
  }
  .get-customers .inner-div{
    padding: 50px 20px;
  }
  .get-customers, .related-blog {
    padding: 20px 0;
  }
  .morning-brief, .personalized-layout, .custom-fields, .ad-workflow, .faq, .the-talk, .why-rocks, .customer-services{
    padding: 20px 0;
  }
  .home-banner.customization .home-flex .left-part .image-mask {
    padding: 50px 20px 50px;
  }
  .custom-fields h2 {
    margin: 0 auto 20px;
  }
  .resource-hub {
    padding: 40px 0 20px;
  }
  .resource-hub .resource-slider {
    margin: 20px auto 0;
  }
  .resource-hub .btn-flex {
    gap: 20px 15px;
  }
  .built-marketer h2, .data-driven h2{
    margin-bottom: 20px;
  }
  .workflow h2 {
    margin-bottom: 30px;
  }
  .contact-management h2 {
    margin-bottom: 20px;
  }
  .ai-works.real-estate {
    padding: 40px 0 20px;
  }
  .contact-management.education .inner-flex .right-part{
    padding: 50px 20px;
  }
  .contact-management .inner-flex .right-part p {
    margin-bottom: 0px;
  }
  .mask-img-text .inner-flex .left-part h3 span.img-before{
    width: 40px;
    height: 40px;
  }
  .home-banner.gamification-banner .home-flex .left-part h1 span.img-before {
    width: 50px;
    height: 24px;
  }
  .whySmackDabSec h2 {
    margin-bottom: 85px;
  }
  .level-up.about-level-up .inner-div h2 span.img-before {
    width: 80px;
    height: 68px;
    margin: 0 10px -15px;
  }
  .related-blog-slider .slick-dots li button, .related-blog-slider .slick-arrow{
    width: 40px;
    min-width: 40px;
    height: 40px;
    background-size: 6px;
  }
  .pricing-grid {
    gap: 40px 15px;
  }
  .price-add-on .inner-grid{
    gap: 30px 15px;
    margin-bottom: 50px;
  }
  .price-add-on .logo-grid {
    flex-wrap: wrap;
  }
  .price-add-on .logo-grid img{
    max-height: 50px;
    width: auto;
  }
  .pricing-plan .big-btn {
    font-size: 60px;
    line-height: 66px;
    padding: 20px 50px 25px 60px;
  }
  .pricing-head {
    padding: 20px 0 40px;
  }
  .pricing-head p.text {
    margin: 0 auto 20px;
  }
  .price-add-on h2 {
    margin-bottom: 30px;
  }
  .price-add-on p {
    font-size: 20px;
    line-height: 28px;
  }
  .price-add-on .add-on-card h5 {
    font-size: 28px;
    line-height: 35px;
  }
  .pricing-plan .pricing-table .table-heading p {
    font-size: 18px;
    line-height: 25px;
  }
  .pricing-plan .pricing-table .table-row {
    padding: 15px 20px;
  }
  .pricing-table .table-heading{
    padding: 20px 20px;
  }
  .free-forever {
    flex-direction: column;
    gap: 20px;
  }
  .free-forever > div{
    width: 100%;
  }
  .free-forever .img-div{
    text-align: center;
  }
  .tabs-section.pricing-tab .tab-link {
    padding: 12px 20px;
  }
}

@media(max-width: 650px){
  .available-add-on .addon-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .available-add-on .addon-grid .card h4 {
    font-size: 30px;
    line-height: 37.6px;
  }
  .available-add-on .addon-grid .card h3 {
    font-size: 30px;
    line-height: 35.2px;
  }
}

@media (max-width: 520px) {
  .breadcrumb{
    flex-wrap: wrap;
  }
  .header .nav-item .mega-menu .features {
    grid-template-columns: repeat(1, 1fr);
  }
  .header .header-btn {
    gap: 5px;
  }
  .big-text {
    font-size: 36px;
    line-height: 43px;
  }
  .img-flex .flex-div .left-part {
    padding: 50px 20px 50px 20px;
  }
  .mask-img-text .inner-flex .left-part h3 {
    font-size: 32px;
    line-height: 38px;
    text-align: center;
  }
  .mask-img-text .inner-flex .left-part h3 img {
    max-width: 30px;
  }
  .mask-img-text .inner-flex .left-part .primary-text-btn {
    margin-top: 20px;
  }
  .header .nav-links {
    top: 73px;
    height: calc(100vh - 73px);
  }
  .smackdab-click h2 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 10px;
  }
  .smackdab-click .click-div{
    margin-top: 40px;
  }
  .smackdab-click p {
    font-size: 16px;
    line-height: 26px;
  }
  .terms-section ul li{
    font-size: 16px;
    line-height: 26px;
  }
  .terms-section ul li:not(:last-child) {
    margin-bottom: 5px;
  }
  .smackdab-click h3::before {
    width: calc(100% - 160px);
    max-width: unset;
    height: 5px;
  }
  .smackdab-click .img-div img:nth-child(3) {
    left: 80%;
  }
  h2 {
    font-size: 36px;
    line-height: 43px;
  }
  .email-marketing h4 {
    font-size: 48px;
    line-height: 57px;
  }
  .smackdab-click h3 {
    font-size: 48px;
    line-height: 57px;
  }
  .resource-hub h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .cta-section h2,
  .faq h2 {
    font-size: 36px;
    line-height: 43px;
    margin-bottom: 30px;
  }
  .cta-section .inner-wrapper {
    padding: 50px 20px;
  }
  .cta-section .cta-img {
    display: none;
  }
  .home-banner .home-flex .left-part p,
  .img-flex .flex-div .left-part p {
    font-size: 16px;
    line-height: 26px;
  }
  p {
    font-size: 16px;
    line-height: 26px;
  }
  .mask-img-text .inner-flex .right-part .primary-btn {
    margin-left: 0;
  }
  .accordion-header p {
    font-size: 18px;
    line-height: 24px;
  }
  .accordion-content p {
    font-size: 16px;
    line-height: 26px;
  }
  .all-in-one h2,
  .multiple-tools h2 {
    font-size: 36px;
    line-height: 43px;
  }
  .multiple-tools .img-div {
    gap: 10px;
  }
  .footer .footer-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .big-text span.img-before{
    width: 40px;
    height: 25px;
  }
  .big-text img {
    max-width: 40px;
  }
  .img-flex.orange .flex-div .left-part h3 {
    font-size: 36px;
    line-height: 43px;
  }
  .section-title,
  .h2 {
    font-size: 36px !important;
    line-height: 43px !important;
  }
  .section-title img {
    max-width: 50px;
  }
  .level-up.take-break .inner-div h2 img {
    max-width: 70px;
  }
  .contact-management.email .inner-flex .left-part {
    margin-top: -210px;
  }
  .built-marketer h2 span {
    padding-left: 0%;
  }
  .contact-management.collaboration h2 span.img-before{
    width: 40px;
    height: 40px;
  }
  .contact-management.collaboration h2 img {
    margin-bottom: -10px;
    max-width: 40px;
  }
  .h2 img {
    max-width: 40px;
  }
  .h2 span.img-before{
    width: 40px;
    height: 40px;
  }
  .contact-management h2 {
    margin-bottom: 20px;
  }
  .customer-services .left-part img {
    max-width: 60px;
  }
  .whatMakesDiffSection h2 span {
    margin-top: 15px;
  }
  .featureSection01 .flex-wrap .left-flex img {
    width: 100%;
    height: 100%;
    min-width: unset;
  }
  .featureSection01 .flex-wrap .left-flex {
    width: 100%;
  }
  .smackItSec {
    font-size: 40px;
    line-height: 40px;
    padding: 15px;
    margin-bottom: 50px;
  }
  .whySmackDabSec .DabDetailSec,
  .whySmackDabSec .smackDetailSec {
    max-width: 100%;
  }
  .whySmackDabSec:after,
  .whySmackDabSec:before {
    display: none;
  }
  .whySmackDabSec .DabDetailSec {
    margin-bottom: 65px;
  }
  .whySmackDabSec h2 {
    margin-bottom: 50px;
  }
  .whySmackDabSec h2 span {
    font-size: 60px;
    line-height: 70px;
  }
  .whySmackDabSec .smackDetailSec:before, .whySmackDabSec .DabDetailSec:before{
    font-size: 40px;
    line-height: 50px;
    top: -30px;
  }   
   .whySmackDabSec .DabDetailSec, .whySmackDabSec .smackDetailSec {
    padding: 50px 20px;
  }
  .whatMakesDiffSection h2 span:before {
    border-radius: 20px;
    inset: -5px;
  }
  .featureSection01 .flex-wrap .left-flex{
    width: 100%;
    height: 100%;
    min-width: unset;
  }
  .featureSection05.flex-wrap .right-flex,
  .featureSection05.flex-wrap.feat03 .right-flex{
    padding: 50px 20px;
  }
  .featureSection04.flex-wrap .left-flex{
    padding: 50px 20px 0;
  }
  .featureSection02 {
    padding: 30px 20px 50px 20px;
    margin: 0 auto 30px auto;
  }
  .featureSection01 .flex-wrap{
    margin-bottom: 30px;
    padding: 30px 20px 50px 20px;
    gap: 30px;
  }
  .featureSection05, .featureSection04{
    margin-bottom: 30px;
  }
  .aboutBannerSec h2{
    margin-bottom: 20px;
  }
  .level-up.last-tool .inner-div h2 span.img-before {
    margin: 0 10px -10px;
  }
  .wins-everytime .feature-grid > div{
    width: 100%;
  }
  .level-up .inner-div h2 img {
    max-width: 70px;
  }
  .ai-banner {
    padding: 20px 0 20px;
  }
  .ai-works h2 {
    margin-bottom: 50px;
  }
  .automation-agents h2 {
    margin-bottom: 20px;
  }
  .contact-management.magic h2 {
    margin-bottom: 80px;
  }
  .contact-management .inner-flex .right-part p {
    margin-bottom: 0px;
  }
  .blog-section .pagination .pagination-list li a, .blog-section .pagination .pagination-list .prev-btn span, .blog-section .pagination .pagination-list .next-btn span,
  .related-blog .pagination .pagination-list li a, .related-blog .pagination .pagination-list .prev-btn span, .related-blog .pagination .pagination-list .next-btn span {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
  .get-customers .images img {
    max-width: 90px;
  }
  .get-customers .images {
    gap: 20px 30px;
    margin-bottom: 20px;
  }
  .email-marketing h4 {
    margin-top: 0px;
  }
  .mask-img-text {
    padding: 25px 0;
  }
  .automation-agents h2 span.img-before{
    width: 40px;
    height: 25px;
  }
  .level-up.take-break .inner-div h2 span.img-before {
    width: 70px;
    height: 50px;
    border-radius: 10px;
  }
  .img-flex.email-marketing{
    padding: 20px 0;
  }
  .level-up.about-level-up .inner-div h2 span.img-before {
    width: 60px;
    height: 50px;
    border-radius: 10px;
    margin: 0 10px -13px;
  }
  .related-blog h2 {
    margin-bottom: 30px;
  }
  .pricing-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .price-add-on .inner-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 15px;
  }
  .pricing-plan .big-btn {
    font-size: 40px;
    line-height: 46px;
    padding: 10px 20px 10px 20px;
  }
  .tabs-section.pricing-tab .tabs {
    padding: 6px;
  }
  .pricing-card .check-list {
    gap: 10px;
  }
  .pricing-plan p {
    margin-bottom: 20px;
  }
  .annually-plan .left-part h5 {
    font-size: 24px;
    line-height: 36.8px;
  }
  .annually-plan .left-part .price h5::before {
    padding: 0 45px;
    border-radius: 10px;
  }
  .annually-plan .left-part .price {
    right: 20px;
  }
  .pricing-tab .tab-link span{
    white-space: break-spaces;
    bottom: unset;
    top: 105%;
  }
  .tabs-section.free-forever-tabs .tab-link label, .pricing-tab .tab-link span{
    display: none;
  }
  .tabs-section.pricing-tab .content-wrapper {
    margin-top: 60px;
  }
}

@media (max-width: 475px) {
  .cta-section .cta-img img:nth-child(2) {
    bottom: -40px;
  }
  .cta-section .cta-img img {
    max-width: 80px;
    top: -40px;
  }
  .blog-section .pagination .pagination-list, .related-blog .pagination .pagination-list{
    flex-wrap: wrap;
  }
  .mask-img-text .inner-flex .left-part h3 span.img-before{
    width: 34px;
    height: 34px;
  }
  .join-smackdab .signup{
    flex-direction: column;
    gap: 10px;
  }
  .join-smackdab .signup input{
    width: 100% !important;
    border-radius: 50px;
    max-width: unset;
  }
  .join-smackdab .signup a{
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto;
  }
  .smackItSec {
    margin-bottom: 20px;
  }
  .all-in-one h2 {
    margin-bottom: 20px;
  }
  .tabs-section .content-wrapper {
    padding: 0px 0;
  }
  .related-blog-slider .slick-arrow{
    width: 35px;
    min-width: 35px;
    height: 35px;
  }
  .related-blog-slider .slick-dots li button{
    font-size: 0px;
    width: 8px;
    min-width: 8px;
    height: 8px;
  }
  .related-blog-slider .slick-dots{
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .tabs-section.pricing-tab .tab-link {
    padding: 12px 20px;
  }
  .tabs-section.pricing-tab .tab-link p {
    font-size: 17px;
    line-height: 20px;
  }
}

@media (max-width: 370px) {
  .header .navbar .logo img {
    width: 100%;
    max-width: 140px;
  }
}
a {
  text-decoration: none;
}
