/*  ========== COLOR VARIABLES ========== */

@import url('https://fonts.cdnfonts.com/css/felt-tip-roman');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --white: #ffffff;
  --black: #000000;
  --errorColor: #FF0000;
  --mainColor: #192C71;
  --textColor: #333333;
  --ctaColor1: #C8102E;
  --ctaColor2: #FA4D00;
  --bannerColor: #dce7eb;
  --modalColor: #D8D8D8;
  --nbablue:#1d428a;
  --nbared:#d91a32;
  --nbagreen:#66ff00;
  --nbagray:#8b9297;
  --nbaorange:#fb4a02;
  --nbablueAlt1:#0064ff;
  --nbablueAlt2:#fbcd44;
  --nbablueAlt3:#733062;
}

body {
  background: var(--white);
  background-size: 100% auto;
  color: var(--textColor);
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  text-align: left;
}

section {
  padding: 4rem 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*.hs_cos_wrapper:not(:first-of-type):has(+ .hs_cos_wrapper > section) > section, .hs_cos_wrapper:last-of-type > section {
    padding-top: 0;
}*/

p, li {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  line-height: 1.4;
}

p:last-child, li:last-child {
  margin-bottom: 0 !important;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: 'Felt Tip Roman', sans-serif;
  font-weight: 900;
  line-height: 1;
  color: var(--nbablue);
  margin-bottom: 1rem;
}

h1, .h1 {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
}

h2, .h2 {
  font-size: clamp(1.75rem, 4vw + 0.875rem, 3rem);
}

h3, .h3 {
  font-size: clamp(1.5rem, 3.5vw + 0.75rem, 2.5rem);
}

h4, .h4 {
  font-size: clamp(1.25rem, 3vw + 0.625rem, 2rem);
}

h5, .h5 {
  font-size: clamp(1rem, 2.5vw + 0.5rem, 1.5rem);
}

h6, .h6 {
	font-size: clamp(0.875rem, 2vw + 0.375rem, 1.25rem);
}

.display-1, .display-2, .display-3, .display-4 {
  font-weight: 900;
  line-height:1;
}

.color-main {
  color: var(--nbablue);
}

.color-secondary {
  color: var(--nbared);
}

.color-accent {
  color: var(--nbaorange);
}

.color-green {
  color: var(--nbagreen);
}

.color-gray {
  color: var(--nbagray);
}

.color-cyan {
  color: var(--nbaAlt1);
}

.color-yellow {
  color: var(--nbaAlt2);
}

.color-purple {
  color: var(--nbaAlt3);
}

.subtitle {
  font-size: 1rem;
  letter-spacing: 10px;
  text-align: center;
  text-transform: uppercase;
}

.bordered {
  border: solid 5px var(--white);
}

.shadowed {
  box-shadow: 0 2rem 4rem rgba(0,0,0,.25);
}

.buttons-container {
  display: flex;
  flex-direction: row;
  gap:1.5rem;
}

.btn {
  border-radius: 50rem;
  font-family: 'Felt Tip Roman', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  min-width: 170px;
  padding: 1rem 1.5rem;
  text-align: center;
}

.btn.btn-sm {
  font-size: .75rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  padding: .75rem 1.25rem;
}

.btn.btn-lg {
  font-size: 2.25rem;
  padding: 1.75rem 2.25rem;
}

.btn-main {
  background-color: var(--nbagreen);
  border: 2px solid var(--nbagreen);
  color: var(--nbablue);
}

.btn-main.active, .btn-main:hover {
  background: var(--white);
  color: var(--nbagreen);
  border-color: var(--nbagreen);
}

.btn-secondary {
  background-color: var(--nbaorange);
  border: 2px solid var(--nbaorange);
  color: var(--white);
}

.btn-secondary.active, .btn-secondary:hover {
  background: var(--white);
  color: var(--nbaorange);
  border-color: var(--nbaorange);
}

.link {
  color: var(--mainColor);
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  position: relative;
  text-decoration: none;
  transition: 0.3s ease all;
}

.link.active, .link:hover {
  color: var(--mainColor);
  text-decoration: none;
}

.link::before {
  background: var(--mainColor);
  bottom: -2px;
  content: '';
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.3s ease all;
  width: 0;
}

.link.active::before, .link:hover::before {
  background: var(--mainColor);
  content: '';
  display: block;
  height: 2px;
  transition: 0.3s ease all;
  width: 100%;
}

.link.white {
  color: var(--white);
  display: inline-block;
  position: relative;
  text-decoration: none;
  transition: 0.3s ease all;
}

.link.white.active, .link.white:hover {
  color: var(--white);
  text-decoration: none;
}

.link.white::before {
  background: var(--white);
  bottom: -3px;
  content: '';
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.3s ease all;
  width: 0;
}

.link.white.active::before, .link.white:hover::before {
  background: var(--white);
  content: '';
  display: block;
  height: 2px;
  transition: 0.3s ease all;
  width: 100%;
}

.show-desktop {
  display: block;
}

.show-mobile {
  display: none;
}

.show-desktop-flex {
  display: flex;
}

.show-mobile-flex {
  display: none;
}

@media (max-width: 991px) {
  /*h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-weight: 700;
  }
  
  h1, .h1 {
    font-size: 50px;
    line-height: 60px;
  }
  
  h2, .h2 {
    font-size: 40px;
    line-height: 48px;
  }
  
  h3, .h3 {
    font-size: 30px;
    line-height: 38px;
  }
  
  h4, .h4 {
    font-size: 24px;
    line-height: 32px;
  }

  h5, .h5 {
    font-size: 20px;
    line-height: 24px;
  }*/

  section {
    padding: 3rem 0;
  }
  
  .show-desktop {
    display: none;
  }
  
  .show-mobile {
    display: block;
  }

  .show-desktop-flex {
    display: none;
  }
  
  .show-mobile-flex {
    display: flex;
  }
}

@media (max-width: 767px) {
  section {
    padding: 2rem 0;
  }

  .btn {
    display: block;
  }

  .buttons-container {
    flex-direction: column;
  }

  .buttons-container > div {
    margin: 10px 0;
  }
  
  .buttons-container > div:last-of-type {
    margin: 10px 0;
  }
  
  .buttons-container > div:first-of-type {
    margin: 10px 0;
  }
}


/* ========== HEADER START ========== */
header {
  /*background: url('https://nba-ifd.s3.us-east-2.amazonaws.com/jrnba/landings/pattern-bg.jpg') no-repeat center center;*/
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--nbablue);
  color: var(--white);
  position:relative;
  box-shadow: 0 2rem 4rem rgba(0,0,0,.25);
  z-index:10;
}

header:before {
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:5px;
  transform: translateY(100%);
  background-color: var(--nbaorange);
}

header:after {
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:5px;
  transform: translateY(200%);
  background-color: var(--white);
}

header .navbar {
  position: relative;
}

header .navbar .nav-link {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  padding-bottom: 0;
  padding-top: 0;
}

header .img-logo {
  max-width: 6.25rem;
}

@media (max-width: 991px) {
  header .navbar-collapse::before {
    display: none;
  }
}
/* ========== HEADER END ========== */


/* ========== FOOTER START ========== */
footer {
  /*background: url('https://nba-ifd.s3.us-east-2.amazonaws.com/jrnba/landings/pattern-bg.jpg') no-repeat center center;*/
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--nbablue);
  background-size: cover;
  color: var(--white);
  padding: 60px 0;
  position:relative;
  z-index:11;
}

footer:before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  transform: translateY(-200%);
  background-color: var(--nbaorange);
}

footer:after {
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  transform: translateY(-100%);
  background-color: var(--white);
}

footer .img-logo {
  max-height: 40px;
  width: auto;
}

footer .enlaces {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}

footer .enlaces a:not(:last-of-type) {
  margin-right: 1.5rem;
  position: relative;
}

footer .enlaces a:not(:last-of-type):after {
  content: '|';
  position: absolute;
  top:0;
  right: -0.75rem;
  transform: translateX(50%);
  pointer-events: none;
}

footer .copyright p, footer .copyright p a {
  font-size: .75rem;
  color: var(--white);
  text-decoration: none;
}

footer .copyright p a:not(:last-of-type):after {
  content: '|';
  margin: 0 .25rem;
}

footer .copyright p a:before {
  content:none;
}

footer .social-links {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-content:center;
  gap: 1rem;
}

footer .sponsorship-title {
  display: inline-block;
  margin-right: 30px;
}

footer h5:empty {
  display:none;
}

footer .footer-logo {
  max-width: 6.25rem; 
}

@media (max-width: 991px) {
  footer .enlaces {
    justify-content: center;
  }
  
  footer .logo-container {
    text-align: center;
  }
  
  footer .social-links {
    justify-content: center;
  }
}

@media (max-width: 580px) {
  footer .enlaces {center
    flex-direction: column;
    justify-content: center;
  }
  footer .enlaces a:not(:last-of-type) {
    margin-right: 0;
  }

  footer .enlaces a:not(:last-of-type):after {
    content: none;
  }
}
/* ========== FOOTER END ========== */


/* ========== BANNER START ========== */
.banner-section {
  /*background: var(--bannerColor) url('https://nba-ifd.s3.us-east-2.amazonaws.com/jrnba/landings/banner-bg.jpg') no-repeat top center;*/
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--textColor);
  overflow: hidden;
  position: relative;
  min-height: 60svh;
  display: flex;
  justify-content: center;
  align-items:center;
  z-index:9;
  /*margin-bottom:6rem;*/
}

.banner-section:before {
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:5px;
  background-color: var(--nbaorange);
  z-index:10;
}

.banner-section:after {
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:5px;
  transform: translateY(-100%);
  background-color: var(--white);
  z-index:10;
}

.banner-section .content {
  position: relative;
  z-index: 5;
}

.banner-section img.show-desktop {
  position: absolute;
  right: 0;
  top: 0;
  width: 45vw;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  clip-path: ellipse(100% 125% at 100% 50%);
}

.modal-content {
  background: var(--modalColor);
}

@media (max-width: 1199px) {
  .banner-section {
    /*min-height: 540px;
    margin-bottom: 4rem;*/
  }

  .banner-section img.show-desktop {
    height: 100%;
    max-width: unset;
    width: auto;
  }
}

@media (max-width: 767px) {
  .banner-section {
    /*min-height: 750px;*/
    padding: 3rem 0;
    /*margin-bottom: 3rem;*/
  }

  .banner-section img.show-mobile {
    bottom: 0;
    height: auto;
    left: 0;
    max-width: 100%;
    position: relative;
    transform: none;
    width: 100%;
  }
}

/* ========== BANNER END ========== */


/* ========== BENEFITS START ========== */
.benefits-section .paragraph {
  font-size: 16px;
  line-height: 24px;
}
/* ========== BENEFITS END ========== */


/* ========== CAROUSEL START ========== */
.carousel-images {
  margin: 0 auto;
  max-width: 970px;
  width: 100%;
}

.carousel-images img {
  display: inline-block;
}

.carousel-images .slick-prev {
  background: var(--mainColor);
  border-radius: 50%;
  height: 48px;
  left: -85px;
  width: 48px;
  z-index: 2;
}

.carousel-images .slick-prev::before {
  color: var(--white) !important;
  content: "\f104";
  font-family: 'Font Awesome 6 Free';
  font-size: 18px;
  font-weight: 900;
  transition: all 0.2s;
}

.carousel-images .slick-next {
  background: var(--mainColor);
  border-radius: 50%;
  height: 48px;
  right: -85px;
  width: 48px;
  z-index: 2;
}

.carousel-images .slick-next::before {
  color: var(--white) !important;
  content: "\f105";
  font-family: 'Font Awesome 6 Free';
  font-size: 18px;
  font-weight: 900;
  transition: all 0.2s;
}



/*.carousel-images .slick-dots {
  bottom: -60px;
  left: 0;
  width: 100%;
}*/

.carousel-images .slick-dots li {
  text-align: center;
}

.carousel-images .slick-dots li button {
  bottom: unset;
  display: inline-block;
  position: relative;
  text-align: center;
  top: unset;
}

.carousel-images .slick-dots li button::before {
  background: var(--nbablue);
  border: none;
  border-radius: 50rem;
  color: var(--mainColor);
  content: '';
  font-size: 8px;
  height: 8px;
  left: 50%;
  opacity: 1;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
}

.carousel-images .slick-dots li.slick-active button::before {
  background: var(--nbaorange);
  border: none;
  font-size: 16px;
  height: 16px;
  width: 16px;
}

@media (max-width: 1199px) {
  .carousel-images .slick-prev {
    left: 0;
  }

  .carousel-images .slick-next {
    right: 0;
  }
}
/* ========== CAROUSEL END ========== */


/* ========== CTA START ========== */
.cta-section {
  padding: 30px 0;
}

.cta-bg {
  background: url('https://14544723.fs1.hubspotusercontent-na1.net/hubfs/14544723/lp-marzo-2023/cta-bg-img.png') no-repeat right;
  border-radius: 7px;
  height: 256px;
  position: relative;
}

.cta-bg::before {
  background: url('https://14544723.fs1.hubspotusercontent-na1.net/hubfs/14544723/lp-marzo-2023/cta-bg.png') no-repeat left;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.cta-bg .content {
  color: var(--white);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  margin-left: 8%;
  max-width: 320px;
  position: relative;
  z-index: 5;
}

@media (max-width: 767px) {
  .cta-bg {
    background: url('https://14544723.fs1.hubspotusercontent-na1.net/hubfs/14544723/lp-marzo-2023/cta-bg-img-mobile.png') no-repeat bottom center;
    border-radius: 7px;
    height: 480px;
    margin: 0 auto;
    max-width: 345px;
    position: relative;
  }
  
  .cta-bg::before {
    background: url('https://14544723.fs1.hubspotusercontent-na1.net/hubfs/14544723/lp-marzo-2023/cta-bg-mobile.svg') no-repeat top center;
    content: '';
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
  }

  .cta-bg .content {
    color: var(--white);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: start;
    margin: 0 auto;
    max-width: 170px;
    padding-top: 15px;
    position: relative;
    text-align: center;
    z-index: 5;
  }

  .cta-bg .content br {
    display: none;
  }
}
/* ========== CTA END ========== */


/* ========== POSTS START ========== */

.posts-section .card-post a {
  text-decoration:none;
}

.posts-section .card-post a:hover {
  text-decoration:none;
}

.posts-section .card-post a:before {
  display:none;
}

.posts-section .card-post .author {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.posts-section .card-post .author:has(p:empty) {
  display: none;
}

.posts-section .card-post .author .date {
  color: var(--mainColor);
}

/* ========== POSTS END ========== */


/* ========== FORM START ========== */
.form-section {
  background: url('https://14544723.fs1.hubspotusercontent-na1.net/hubfs/14544723/lp-marzo-2023/subscribe-bg.png') no-repeat top center;
  background-size: cover;
}

.form-section input {
  background: var(--white);
  border: 1px solid var(--mainColor);
  border-radius: 3px;
  color: var(--mainColor);
  font-size: 16px;
  margin-bottom: 15px;
  min-height: 40px;
  padding: 4px 12px;
  width: 100% !important;
}

.form-section input[type="radio"] {
	width: auto !important;
}

.form-section input[type="checkbox"] {
	width: auto !important;
}

.form-section select {
  background: var(--white);
  border: 1px solid var(--mainColor);
  border-radius: 3px;
  color: var(--mainColor);
  font-size: 16px;
  margin-bottom: 15px;
  min-height: 40px;
  padding: 4px 12px;
  width: 100% !important;
}

.form-section input[type="submit"] {
  background: var(--ctaColor1);
  border: 1px solid var(--ctaColor1);
  border-radius: 3px;
  color: var(--white);
  display: block;
  font-size: 16px;
  margin-bottom: 15px;
  min-height: 40px;
  padding: 8px 30px;
  position: relative;
  transition: 0.3s ease all;
  width: 100% !important;
}

.form-section input[type="submit"]:hover {
  background: var(--white);
  border: 1px solid var(--ctaColor1);
  color: var(--ctaColor1);
  transition: all 0.2s;
}

.form-section label {
  color: var(--mainColor);
  font-size: 15px;
}

.form-section .hs-form-booleancheckbox label {
  color: var(--mainColor);
  display: block;
}

.form-section .hs-fieldtype-booleancheckbox .inputs-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.form-section input[type="checkbox"] {
  background: var(--white);
  border: 1px solid var(--textColor);
  color: var(--textColor);
  margin: 0 10px 0 0;
  min-height: unset;
  outline: none;
  width: auto;
}

.form-section textarea {
  background: var(--white);
  border: 1px solid var(--mainColor);
  border-radius: 3px;
  color: var(--mainColor);
  font-size: 16px;
  outline: none;
  padding: 4px 12px;
  resize: none;
  width: 100% !important;
}

.form-section form a {
  color: var(--ctaColor1);
}

.form-section .hs-form-field {
  margin-bottom: 20px;
  margin-top: 0;
}

.form-section .hs-error-msg, .form-section .hs-error-msgs {
  color: var(--errorColor);
  list-style: none;
  margin: 0;
  padding: 0;
}

.form-section fieldset {
  max-width: unset !important;
}

.form-section ul.inputs-list {
  overflow: hidden;
}

.form-section .hs-form-field > label {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}

.form-section .hs-form-checkbox-display span {
  display: inline-block;
  margin-top: 10px;
  position: relative;
}


.form-section .multi-container {
  list-style: none;
  margin: 0;
  padding: 0;
}


@media(max-width: 767px) {
  .form-section label {
    font-size: 12px;
  }
  
  .form-section .hs-form-field > label {
    font-size: 12px;
    margin-bottom: 4px;
  }
  
  .form-section li.hs-form-checkbox {
    float: none;
    width: 100%;
  }
}
/* ========== FORM END ========== */


/* ========== BLOG BANNER START ========== */
.blog-banner-section {
  overflow: hidden;
  padding: 0;
  position: relative;
}

.blog-banner-section::before {
  background: url('https://14544723.fs1.hubspotusercontent-na1.net/hubfs/14544723/lp-marzo-2023/blog-main-post-bg.svg') no-repeat right top;
  background-size: cover;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 70%;
  z-index: 2;
}

.blog-banner-section::after {
  background: rgba(0, 0, 0, 0.25);
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.blog-banner-section .content {
  color: var(--white);
  display: flex;
  flex-direction: column;
  height: 585px;
  justify-content: center;
  padding: 30px 0;
  position: relative;
  z-index: 5;
}

.blog-banner-section img {
  height: auto;
  min-height: 585px;
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  z-index: 0;
}

.blog-banner-section.small-section .content {
  height: auto;
  min-height: 350px;
}

.blog-banner-section.small-section::before {
  display: none;
}

.blog-banner-section.small-section img {
  height: auto;
  min-height: unset;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 0;
}

@media (max-width: 1399px) {
  .blog-banner-section img {
    height: 585px;
    min-height: 585px;
    width: auto;
  }
}

@media (max-width: 767px) {
  .blog-banner-section .content {
    height: auto;
    min-height: 400px;
    max-width: 100%;
  }

  .blog-banner-section img {
    height: 525px;
    min-height: 525px;
    width: auto;
  }
}

@media (max-width: 559px) {
  .blog-banner-section::before {
    background: url('https://14544723.fs1.hubspotusercontent-na1.net/hubfs/14544723/lp-marzo-2023/blog-main-post-bg.svg') no-repeat right top;
    background-size: cover;
    content: '';
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 80%;
  }
}
/* ========== BLOG BANNER END ========== */


/* ========== BLOG LIST START ========== */
.blog-list-section {
  background: url('https://14544723.fs1.hubspotusercontent-na1.net/hubfs/14544723/lp-marzo-2023/blog-main-bg.png') no-repeat top center;
  background-size: 100% auto;
  padding: 60px 0;
  position: relative;
}

.blog-list-section .post-elem {
  border-top: 1px solid var(--modalColor);
  display: flex;
  flex-direction: row;
  padding: 60px 0;
}

.blog-list-section .post-elem:first-of-type {
  border-top: 0;
}

.blog-list-section .post-elem img {
  margin-right: 30px;
  max-width: 370px;
  min-width: 370px;
}

.blog-list-section .post-elem .link {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.blog-list-section .post-elem .date {
  color: var(--mainColor);
  font-size: 16px;
  line-height: 24px;
}

.blog-list-section .post-elem .paragraph {
  font-size: 16px;
  line-height: 24px;
}

.blog-list-section .category-block {
  background: var(--modalColor);
  border-radius: 7px;
  padding: 25px 25px;
}

.blog-list-section .newsletter-block {
  background: var(--ctaColor1);
  border-radius: 7px;
  padding: 25px 25px;
}

.blog-list-section .newsletter-block p {
  font-size: 16px;
  line-height: 24px;
}

.blog-list-section .ebook-block {
  background: url('https://14544723.fs1.hubspotusercontent-na1.net/hubfs/14544723/lp-marzo-2023/blog-ebook-bg.png') no-repeat top center;
  background-size: cover;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 300px;
  padding: 25px 25px;
}

.blog-list-section .categories-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-list-section .categories-list li {
  margin: 0 0 4px;
}

@media (max-width: 991px) {
  .blog-list-section .post-elem img {
    margin-right: 0;
    max-width: 270px;
    min-width: 270px;
    padding-right: 30px;
  }
}

@media (max-width: 767px) {
  .blog-list-section {
    padding: 30px 0;
  }

  .blog-list-section .post-elem {
    flex-direction: column;
    padding: 30px 0;
  }

  .blog-list-section .post-elem img {
    display: block;
    margin: 0 auto 20px;
  }

  .blog-list-section .category-block {
    padding: 15px;
  }

  .blog-list-section .newsletter-block {
    padding: 15px;
  }

  .blog-list-section .ebook-block {
    padding: 15px;
  }
}
/* ========== BLOG LIST END ========== */


/* ========== BLOG LIST START ========== */
.blog-post-section {
  padding: 60px 0;
  position: relative;
}

.blog-post-section .post-content img {
  height: auto;
  max-width: 100%;
}

.blog-post-section .social-block {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.blog-post-section .social-block .social-icon {
  background: var(--ctaColor2);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  height: 32px;
  margin: 0 8px;
  text-align: center;
  transition: 0.3s ease all;
  width: 32px;
}

.blog-post-section .social-block .social-icon:hover {
  background: var(--ctaColor1);
}

@media (max-width: 767px) {
  .blog-post-section {
    padding: 30px 0;
  }
}
/* ========== BLOG LIST END ========== */


/* ========== CTA BLOG START ========== */
.cta-blog-section {
  padding: 60px 0;
}

.cta-blog-section .cta-blog-bg {
  background: url('https://14544723.fs1.hubspotusercontent-na1.net/hubfs/14544723/lp-marzo-2023/blog-cta-bg.png') no-repeat right;
  border-radius: 7px;
  display: flex;
  flex-direction: row;
  height: 256px;
  justify-content: end;
  position: relative;
}

.cta-blog-section .cta-blog-bg .content {
  color: var(--white);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  margin-right: 8%;
  max-width: 320px;
  position: relative;
  z-index: 5;
}

.btn-blog {
  background: var(--mainColor);
  border: 1px solid var(--mainColor);
  border-radius: 3px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  min-width: 170px;
  padding: 11px 20px;
  text-align: center;
  transition: 0.3s ease all;
}

.btn-blog.active, .btn-blog:hover {
  background: var(--white);
  color: var(--mainColor);
}

@media (max-width: 767px) {
  .cta-blog-section {
    padding: 30px 0;
  }

  .cta-blog-section .cta-blog-bg {
    background: url('https://14544723.fs1.hubspotusercontent-na1.net/hubfs/14544723/lp-marzo-2023/cta-bg-img-mobile.png') no-repeat bottom center;
    border-radius: 7px;
    height: 480px;
    margin: 0 auto;
    max-width: 345px;
    position: relative;
  }

  .cta-blog-section .cta-blog-bg .content {
    color: var(--white);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: start;
    margin: 0 auto;
    max-width: 170px;
    padding-top: 15px;
    position: relative;
    text-align: center;
    z-index: 5;
  }

  .cta-blog-section .cta-blog-bg .content br {
    display: none;
  }
}
/* ========== CTA BLOG END ========== */

/* ========== TESTIMONIALS START ========== */
.testimonial-carousel {}
.testimonial-item {
  text-align: center;
  padding: 1.5rem 15%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-text {
  font-size: clamp(1rem, 2.5vw + 0.5rem, 1.5rem);
}
.testimonial-name {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 10px;
  color: var(--nbaorange);
}
/* ========== TESTIMONIALS END ========== */

/* ========== COUNTER START ========== */
.counter {
  /*color: var(--nbaorange);*/
  font-weight:800;
}
/* ========== COUNTER END ========== */