html,
body {
  overflow-x: hidden;
}

/*
=======
Variables
=======
*/

:root {
  --tcg-color-primary: rgb(17, 0, 129);
  --tcg-color-action-blue: #0033ff;
  --tcg-color-alternate: #333333;
  --tcg-section-padding: 128px;
}

@media (max-width: 576px) {
  :root {
    --tcg-section-padding: 32px;
  }
}
/* 
@media (max-width: 1440px) {
  .container {
    max-width: 1140px;
  }
} */

/*
=======
Global
=======
*/

a svg:not(.at-icon) {
  margin-left: 10px;
  fill: currentColor;
}

a span {
  align-items: center;
  display: inline-flex;
  white-space: nowrap;
  text-decoration: inherit;
}

button {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 17px;
}
/*
@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-SemiBold.ttf);
  font-weight: 600;
}

@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Regular.ttf);
  font-weight: 400;
}
*/
a,
p {
  font-family: 'Montserrat';
  font-weight: 600;
}

p {
  font-size: 1rem;
  font-weight: 400;
}

h1 {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 38px;
}

h2 {
  color: var(--tcg-color-primary);
  font-family: 'Montserrat';
  font-style: normal;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.02em;
}

h3 {
  font-family: 'Montserrat';
  font-weight: 700;
}

h4 {
  font-family: 'Montserrat';
  font-weight: 700;
}

h5 {
  color: var(--tcg-color-primary);
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 32px;
}

[type='button'],
[type='reset'],
[type='submit'],
button {
  -webkit-appearance: initial;
}

.interactive-banner li {
  font-family: 'Montserrat';
  font-size: 16px;
  line-height: 30px;
}

.interactive-banner .points div:first-child {
  margin-right: 2rem;
}

section {
  padding-bottom: var(--tcg-section-padding);
}

@media (max-width: 576px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 577px) {
  h1 {
    font-size: 48px;
    line-height: 60px;
  }

  h2 {
    font-size: 48px;
    line-height: 60px;
  }
}

@media (min-width: 1200px) {
  h1 {
    font-size: 60px;
    line-height: 72px;
  }
}

.tcg-background-overlay.active {
  background: rgba(0, 0, 0, 0.56);
  box-sizing: border-box;
  height: 100%;
  left: 0px;
  min-height: 100vh;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 1000;
}

/*
=======
Animations
=======
*/

@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  100% {
    transform: translateX(0);
  }
}

@keyframes slideInFwd {
  100% {
    width: 272px;
    height: 272px;
  }
}

@keyframes slideOutRight {
  100% {
    width: 272px;
    height: 272px;
  }
}

@media (min-width: 481px) {
  @keyframes slideInFwd {
    100% {
      width: 417px;
      height: 417px;
    }
  }

  @keyframes slideOutRight {
    100% {
      width: 417px;
      height: 417px;
    }
  }
}

@media (min-width: 768px) {
  @keyframes slideInFwd {
    100% {
      width: 330px;
      height: 330px;
    }
  }

  @keyframes slideOutRight {
    100% {
      width: 330px;
      height: 330px;
      transform: translateX(calc(100vw - 45px));
    }
  }
}

@media (min-width: 992px) {
  @keyframes slideInFwd {
    100% {
      width: 460px;
      height: 460px;
    }
  }

  @keyframes slideOutRight {
    100% {
      width: 460px;
      height: 460px;
      transform: translateX(calc(100vw - 45px));
    }
  }
}

@media (min-width: 1200px) {
  @keyframes slideInFwd {
    100% {
      width: 592px;
      height: 591px;
    }
  }

  @keyframes slideOutRight {
    100% {
      width: 592px;
      height: 591px;
      transform: translateX(calc(100vw - 45px));
    }
  }
}

@media (min-width: 1440px) {
  @keyframes slideOutRight {
    100% {
      width: 592px;
      height: 591px;
      transform: translateX(calc(100vw - 120px));
    }
  }
}

@media (min-width: 2200px) {
  @keyframes slideOutRight {
    100% {
      width: 592px;
      height: 591px;
      transform: translateX(calc(100vw - 592px));
    }
  }
}

/*
=======
Top Nav
=======
*/

.tcg-top-nav .nav-link {
  border: 1px solid transparent;
  color: #333333;
  font-size: 14px;
  padding: 0 !important;
  margin-right: 16px;
  margin-left: 16px;
}

.tcg-top-nav .nav-item:last-child .nav-link {
  margin-right: 0;
}

.tcg-top-nav .nav-link:hover {
  border-bottom: 1px solid #333333;
}

.tcg-top-nav .nav-link:focus {
  background: #333333;
  color: #ffffff;
}

.tcg-top-nav .tcg-nav-pipe {
  align-self: center;
  border-right: 1px solid #333333;
  height: 13px;
  margin-right: 16px;
  margin-left: 16px;
}

/*
=======
Main Nav
=======
*/

.tcg-main-nav.navbar {
  padding: 0;
  box-shadow: 1px 1px 4px 0 rgb(0 0 0 / 20%);
}

.tcg-main-nav .navbar-brand {
  padding: 16px 0 16px 0;
}

.tcg-main-nav .tcg-nav-logo {
  margin: 0;
  max-height: 44px;
  max-width: 120px;
  width: 100%;
}

.tcg-main-nav .nav-link {
  border-bottom: 2px solid transparent;
  font-weight: 600;
  font-size: 1rem;
  line-height: 20px;
  color: var(--tcg-color-primary);
  padding-top: 24px;
  padding-bottom: 0;
}

.tcg-main-nav .nav-link:hover {
  background: rgba(0, 51, 255, 0.12);
  border-bottom: 2px solid #110081;
}

.tcg-main-nav .nav-link:focus {
  background: #110081;
  color: white;
}

.tcg-main-nav .navbar-toggler {
  border: 0;
}

.tcg-main-nav .navbar-toggler:focus {
  box-shadow: none;
}

.tcg-main-nav .navbar-toggler .navbar-toggler-icon {
  height: 16px;
  width: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M14 1.41L12.59 0L7 5.59L1.41 0L0 1.41L5.59 7L0 12.59L1.41 14L7 8.41L12.59 14L14 12.59L8.41 7L14 1.41Z' fill='%23110081'/%3E%3C/svg%3E");
}

.tcg-main-nav .navbar-toggler[aria-expanded='false'] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12' fill='none'%3E%3Cpath d='M0 12H18V10H0V12ZM0 7H18V5H0V7ZM0 0V2H18V0H0Z' fill='%23110081'/%3E%3C/svg%3E");
}

.navbar-nav.mobile-main-nav {
  background: #f4f4f4;
}

.navbar-nav.mobile-main-nav .nav-link {
  color: #333333;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 767px) {
  .tcg-main-nav .container {
    padding: 0;
  }

  .tcg-main-nav .navbar-nav {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
  }

  .navbar-logo-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0 24px;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .tcg-main-nav .container {
    padding-right: 0;
  }

  .navbar-nav.mobile-main-nav {
    display: none;
  }

  .tcg-main-nav .navbar-nav .nav-item .nav-link {
    padding: 12px 16px;
  }

  .tcg-main-nav .nav-link span {
    min-height: 58px;
  }

  .tcg-main-nav .tcg-nav-logo {
    max-height: 60px;
    max-width: 180px;
  }
  .tcg-main-nav .navbar-brand {
    padding: 0;
  }
}

/*
=======
Hero
=======
*/

.tcg-hero-container {
  position: relative;
  height: calc(450px + var(--tcg-section-padding)); /* 30% of hero height */
  padding-bottom: 0;
}

.tcg-hero-container .tcg-hero {
  position: absolute;
  width: 821px;
  height: 821px;
  left: 80%;
  background: var(--tcg-color-action-blue);
  border-radius: 50%;
  padding-top: 100%;
  transform: translate(-50%, -100%);
  transition: 0.6s;
  z-index: 1;
}

.tcg-hero-container .tcg-hero-text {
  animation: fadeIn 0.4s forwards;
  animation-delay: 1s;
  color: white;
  opacity: 0;
  position: absolute;
  left: 2rem;
  top: 16px;
  width: calc(100% - 30%);
  z-index: 4;
}

.tcg-hero-container .tcg-hero-image {
  position: absolute;
  width: 816px;
  height: 816px;
  left: 50%;
  /* background-image: url('../../www-thecignagroup-com/images/TCG-hero-26x9-xs.png'); */
  background-image: url('/static/www-thecignagroup-com/images/TCG-hero-26x9-xs.png');
  background-size: initial;
  background-position: bottom;
  background-repeat: no-repeat;
  transform: translate(-50%, -100%);
  transition: 0.6s;
  z-index: 0;
}

.tcg-hero.show,
.tcg-hero-image.show {
  transform: translate(-50%, -48%);
}

.tcg-hero-show {
  left: 50%;
}

.tcg-hero.post-show {
  left: 20%;
  transform: translate(-50%, -70%);
}

@media (max-width: 576px) {
  .tcg-hero-container .tcg-hero-text {
    max-width: 310px;
  }
}

@media (min-width: 321px) {
  .tcg-hero-container .tcg-hero {
    left: 44%;
  }

  .tcg-hero-container .tcg-hero.post-show {
    left: 25%;
  }

  .tcg-hero-container .tcg-hero-image {
    /* background-image: url('../../www-thecignagroup-com/images/TCG-hero-26x9-sm.png'); */
    background-image: url('/static/www-thecignagroup-com/images/TCG-hero-26x9-sm.png');
  }

  .tcg-hero-container .tcg-hero-text {
    top: 24px;
    width: calc(100% - 30%);
  }
}

@media (min-width: 355px) {
  .tcg-hero-container .tcg-hero-text {
    top: 32px;
    width: calc(100% - 25%);
  }
}

@media (min-width: 385px) {
  .tcg-hero-container .tcg-hero-text {
    width: calc(100% - 20%);
  }
}

@media (min-width: 577px) {
  .tcg-hero-container {
    height: calc(618.3px + var(--tcg-section-padding)); /* 70% of 2061px */
  }

  .tcg-hero-container .tcg-hero-image {
    /* background-image: url('../../www-thecignagroup-com/images/TCG-hero-26x9-l.jpg'); */
    background-image: url('../images/TCG-hero-26x9-l.jpg');
    background-repeat: initial;
    background-position: inherit;
    background-size: contain;
    border-radius: 50%;
  }

  .tcg-hero-container .tcg-hero {
    left: 50%;
    height: 2061px;
    width: 2061px;
  }

  .tcg-hero-container .tcg-hero-image {
    width: 2061px;
    height: 2061px;
  }

  .tcg-hero.show,
  .tcg-hero-image.show {
    transform: translate(-50%, -70%);
  }

  .tcg-hero-container .tcg-hero.post-show {
    left: 15%;
    /* width: 1447px;
    height: 1447px; */
    transform: translate(-50%, -67%) scale(0.7);
  }

  .tcg-hero-container .tcg-hero-text {
    left: 1rem;
    top: 48px;
    width: calc(100% - 35%);
  }
}

@media (min-width: 620px) {
  .tcg-hero-container .tcg-hero-text {
    width: calc(100% - 30%);
  }
}

@media (min-width: 705px) {
  .tcg-hero-container .tcg-hero-text {
    width: calc(100% - 35%);
  }
}

@media (min-width: 768px) {
  .tcg-hero-container .tcg-hero-text {
    top: 64px;
    width: calc(100% - 45%);
  }

  .tcg-hero-container .tcg-hero-text p {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (min-width: 922px) {
  .tcg-hero-container .tcg-hero-text {
    width: calc(100% - 40%);
  }
}

@media (min-width: 992px) {
  .tcg-hero-container .tcg-hero-text {
    width: calc(100% - 50%);
  }
}

@media (min-width: 1400px) {
  .tcg-hero-container .tcg-hero-text {
    width: calc(100% - 55%);
  }
}

@media (min-width: 1024px) {
  .tcg-hero-container .tcg-hero.post-show {
    left: 20%;
  }
}

@media (min-width: 1440px) {
  .tcg-hero-container .tcg-hero.post-show {
    left: 28%;
    transform: translate(-50%, -64%) scale(0.7);
  }
}

/*
=======
Intro Content
=======
*/
.tcg-intro-content-1 {
  transform: translateX(-100vw);
}

.tcg-intro-content-2 {
  transform: translateX(100vw);
}

.tcg-intro-content-1.active,
.tcg-intro-content-2.active {
  animation: slideIn 0.5s forwards;
}

/*
=======
Pre Interactive Banner
=======
*/

.tcg-pre-interactive-block {
  opacity: 0;
  transform: translateY(-20px);
}

.tcg-pre-interactive-block.active {
  animation: fadeInDown 0.3s forwards;
}

/*
=======
Infographic
=======
*/

.tcg-interactive-banner {
  padding-bottom: 0;
}

.text-center {
  text-align: center;
}

.CignaGrouplogo {
  max-width: 160px;
}

@media (min-width: 768px) {
  .CignaGrouplogo {
    max-width: 320px;
  }
}

@media (min-width: 992px) {
  .CignaGrouplogo {
    max-width: 346px;
  }
}

.tcg-promo-content-mobile-blue .anchor-button,
.tcg-promo-content-desktop-blue .anchor-button {
  padding: 16px 24px;
  background: white;
  border-radius: 2rem;
  border: 1px solid white;
  color: blue;
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  line-height: 17px;
}

.tcg-promo-content-desktop-blue .anchor-button:hover,
.tcg-promo-content-mobile-blue .anchor-button:hover {
  background: rgba(255, 255, 255, 0.89);
}

.tcg-promo-content-desktop-blue .anchor-button:focus,
.tcg-promo-content-mobile-blue .anchor-button:focus {
  background-color: #e0e7ff;
  border: 2px solid white;
  box-shadow: 0 0 0 2px var(--tcg-color-action-blue) inset;
  color: var(--tcg-color-action-blue);
  filter: drop-shadow(rgba(0, 0, 0, 0.3) 1px 1px 2px);
  outline: 2px solid #333333;
}


.secondary-btn {
  border: 2px solid white;
  background: none;
  border-radius: 28px;
  display: block;
  color: white;
  padding: 10px 14px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

.secondary-btn:focus {
  background-color: #e0e7ff;
  border: 2px solid white;
  box-shadow: 0 0 0 2px #03f inset;
  color: #03f;
  filter: drop-shadow(rgba(0, 0, 0, 0.3) 1px 1px 2px);
  outline: 2px solid #333333;
}

.Evernorth .secondary-btn {
  border: 2px solid rgba(0, 51, 255, 1);
  color: rgba(0, 51, 255, 1);
}

.intro {
  width: 800px;
  max-width: 80vw;
  margin: 0 auto;
  margin-top: 50px;
}

.interactive-banner {
  margin: 0 auto;
  background: rgb(0, 51, 255);
  background: linear-gradient(90deg, rgba(0, 51, 255, 1) 50%, rgba(62, 255, 192, 1) 50%);
  font-family: Gotham, sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--tcg-color-alternate);
  background-size: 100%;
  background-position: center;
  transition: all 0.3s;
}

.interactive-banner p,
.interactive-banner li {
  font-weight: 400;
  position: relative;
}

.interactive-banner ul {
  list-style: none;
  padding-left: 30px;
  margin-left: 10px;
}

.interactive-banner ul li:before {
  content: '•';
  position: absolute;
  left: -25px;
  font-size: 15px;
  top: 0;
}

.interactive-banner h3 {
  margin-bottom: 0px;
  color: var(--tcg-color-primary);
  text-transform: uppercase;
}

.interactive-banner.activeCigna {
  background-position: left center;
  background-size: 180%;
  transition: all 0.3s;
}

.interactive-banner.activeEvernorth {
  background-position: right center;
  background-size: 180%;
  transition: all 0.3s;
}

.interactive-banner .CignaGroup {
  text-align: center;
  background: rgb(255, 255, 255);
  /* background: url('../../www-thecignagroup-com/images/interactive-banner-bottom.png'),
    linear-gradient(180deg, rgba(255, 255, 255, 1) 50%, rgba(0, 0, 0, 0) 50%); */
  background: url('/static/www-thecignagroup-com/images/interactive-banner-bottom.png'),
    linear-gradient(180deg, rgba(255, 255, 255, 1) 50%, rgba(0, 0, 0, 0) 50%);
  background-position: bottom center;
  background-size: calc(100vw + 50%) auto;
  padding-bottom: 80px;
  background-repeat: no-repeat;
}

.CignaEvernorth {
  display: flex;
}

.CignaEvernorth .Cigna,
.CignaEvernorth .Evernorth {
  display: flex;
  padding-bottom: 2rem;
  width: 50%;
}

.tcg-evernorth-main-container,
.CignaEvernorth .Cigna {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.tcg-evernorth-main-container {
  width: 100%;
}

@media (max-width: 576px) {
  .CignaEvernorth .Cigna .secondary-btn,
  .CignaEvernorth .Evernorth .secondary-btn {
    padding: 8px 16px;
    width: calc(100% - 21px);
    max-width: 150px;
  }

  #evernorthContent .points {
    width: calc(100% - 1rem);
  }
}

.Cigna.active #toggleCigna,
.Evernorth.active #toggleEvernorth {
  margin: 1.5rem 0 2rem 0;
}

.Evernorth .logo {
  max-width: 436px;
  width: 60%;
}

.Cigna .logo {
  max-width: 283px;
  width: 40%;
}

.Evernorth.active .logo,
.Cigna.active .logo {
  margin-bottom: 0;
}

.Evernorth .logo,
.Cigna .logo {
  margin-bottom: 0.75rem;
}

.CignaEvernorth .Evernorth.active,
.CignaEvernorth .Cigna.active {
  padding-top: 70px;
  margin-left: 15%;
  min-height: 520px;
  position: relative;
  width: 85%;
}

.CignaEvernorth .Cigna.active {
  margin-left: 5%;
}

.info {
  width: 95%;
}

.tcg-evernorth-panel-points {
  display: none;
}

@media (min-width: 768px) {
  .tcg-evernorth-panel-points {
    display: block;
  }

  .CignaEvernorth .Cigna,
  .CignaEvernorth .Evernorth {
    padding-bottom: 4.5rem;
  }

  .CignaEvernorth .Evernorth.active,
  .CignaEvernorth .Cigna.active,
  .CignaEvernorth .Evernorth.active .tcg-evernorth-main-container {
    display: block;
  }

  .info {
    width: 50%;
  }

  #evernorthContent .points {
    display: flex;
    position: absolute;
    right: 1rem;
    top: 100px;
    width: calc(50% - 2rem);
  }

  .Evernorth .logo,
  .Cigna .logo {
    margin-bottom: 3rem;
  }

  .Evernorth .logo {
    width: 80%;
  }

  .Evernorth.active .logo {
    width: 40%;
  }

  .Cigna .logo {
    width: 50%;
  }

  .Cigna.active .logo {
    width: 35%;
  }

  #toggleCigna::after,
  #toggleEvernorth::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    padding-left: 10px;
    content: '\f054';
    vertical-align: middle;
  }

  .Cigna.active #toggleCigna::after,
  .Evernorth.active #toggleEvernorth::after {
    display: none;
  }

  .Cigna.active #toggleCigna::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    padding-right: 10px;
    content: '\f053';
    vertical-align: middle;
  }

  .Evernorth.active #toggleEvernorth::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    padding-right: 10px;
    content: '\f053';
    vertical-align: middle;
  }

  /* .CignaEvernorth .Evernorth.active,
  .CignaEvernorth .Cigna.active {
    padding-top: 100px;
  } */

  .CignaEvernorth .Evernorth.active {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
}

@media (min-width: 992px) {
  .Evernorth .logo {
    width: 80%;
  }

  .Cigna .logo {
    width: 45%;
  }
}

@media (min-width: 1200px) {
  .Cigna.active .logo,
  .Cigna .logo,
  .Evernorth .logo,
  .Evernorth.active .logo {
    width: 100%;
  }
}

.CignaEvernorth .Cigna.active #toggleCigna {
  margin-left: 0px;
}

.Cigna .info a {
  color: white;
  text-decoration: none;
}
.Evernorth .info a {
  color: inherit;
  text-decoration: none;
}

#cignaContent {
  color: white;
  display: flex;
}

#evernorthContent {
  display: flex;
}

.Evernorth.active button {
  margin-left: 0px;
}

@media (min-width: 1201px) {
  .info p {
    line-height: 32px;
  }
  h4.desktop-align {
    margin-top: 55px;
  }
}

.points h4 {
  margin-bottom: 5px;
}

.interactive-banner p {
  margin-top: 10px;
  margin-bottom: 25px;
}

.hide {
  display: none !important;
}

.interactive-banner #evernorthContent a {
  color: var(--tcg-color-action-blue);
}

.interactive-banner #cignaContent a {
  color: white;
}

.interactive-banner #evernorthContent a:hover,
.interactive-banner #cignaContent a:hover {
  color: var(--tcg-color-primary);
}

@media (max-width: 1200px) {
  .interactive-banner {
    font-size: 98%;
  }
  .interactive-banner #cignaContent {
    display: block;
  }
  .interactive-banner #evernorthContent .points,
  .interactive-banner #cignaContent .points {
    margin-top: 0px;
  }
  .interactive-banner .Cigna.active button,
  .interactive-banner .Evernorth.active button {
    margin-left: 0px !important;
  }
}

@media (max-width: 1200px) {
  .interactive-banner #evernorthContent .points,
  .interactive-banner #cignaContent .points {
    display: block;
  }
}

/*
=======
Articles
=======
*/
.tcg-articles {
  padding-top: var(--tcg-section-padding);
}

.tcg-articles .card {
  border: 0;
  border-radius: 30px;
  cursor: pointer;
  outline: 2px solid transparent;
  outline-offset: -1px;
}

.tcg-articles .card:hover {
  background: rgba(0, 51, 255, 0.12);
  outline-offset: -1px;
  outline: 2px solid var(--tcg-color-action-blue);
  transition: all 0.6s ease;
}

.tcg-articles .card img {
  border-radius: 30px 30px 0px 0px;
  max-height: 260px;
}

.tcg-articles .card .card-body {
  padding: 24px;
}

.tcg-articles .card .card-title {
  color: var(--tcg-color-alternate);
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

.tcg-articles .card .card-text a {
  color: var(--tcg-color-action-blue);
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  text-decoration: none;
}

.tcg-articles .card .card-text a:hover {
  color: var(--tcg-color-primary);
}

[class*='tcg-article-container'] {
  opacity: 0;
  transform: translateY(-20px);
}

[class*='tcg-article-container'].active {
  animation: fadeInDown 0.3s forwards;
}

/*
=======
Accordions
=======
*/

.tcg-accordions {
  padding-top: var(--tcg-section-padding);
  margin-top: 0;
}

@media (max-width: 576px) {
  .tcg-accordions {
    margin: 0;
    max-width: 100%;
  }
}

.tcg-accordions .accordion-item {
  border-width: 1px 0px;
  border-style: solid;
  border-color: rgba(0, 51, 255, 0.2);
  border-radius: 0;
}

.tcg-accordions .accordion-item .accordion-header button {
  color: #110081;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  justify-content: space-between;
  line-height: 30px;
  padding: 24px 0;
}

.tcg-accordions .accordion-item .accordion-header button::after {
  content: none;
}

.tcg-accordions .accordion-item .accordion-header button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
}

.tcg-accordions .accordion-item .accordion-body {
  font-family: 'Montserrat';
  font-size: 1rem;
  font-weight: 400;
  padding: 0 0 24px 0;
}

.tcg-accordions .accordion-button {
  gap: 2rem;
}

.tcg-accordions .accordion-item .accordion-header button .button-toggle {
  align-items: center;
  background: var(--tcg-color-action-blue);
  border-radius: 50%;
  display: flex;
  height: 32px;
  justify-content: center;
  min-height: 32px;
  min-width: 32px;
  width: 32px;
}

.tcg-accordions .accordion-item .accordion-header button:not(.collapsed) .button-toggle {
  background-color: transparent;
  border: 1px solid var(--tcg-color-action-blue);
}

.tcg-accordions .accordion-item .accordion-header button:not(.collapsed) .button-toggle svg path {
  fill: var(--tcg-color-action-blue);
}

.tcg-accordions .accordion-item .accordion-header button:not(.collapsed) .button-toggle svg {
  transform: rotate(180deg);
}

/*
=======
Promo
=======
*/

.tcg-promo {
  display: flex;
  padding-bottom: 0;
  padding-top: 272px;
  position: relative;
  margin-bottom: var(--tcg-section-padding);
}

.tcg-promo .tcg-promo-circle-green {
  background: #3effc0;
  border-radius: 50%;
  position: absolute;
  top: 0;
  width: 272px;
  height: 272px;
  transform: translateX(90vw);
}

.tcg-promo-circle-blue {
  height: 272px;
  width: 100%;
  background: var(--tcg-color-action-blue);
  border-top-right-radius: 294px;
  border-bottom-right-radius: 294px;
  max-width: 90vw;
  position: absolute;
  top: 0;
  left: 0;
}

.tcg-promo-content-mobile-blue {
  background: var(--tcg-color-action-blue);
  width: 100%;
  padding: 48px 16px 32px;
}

.tcg-promo-content-mobile-blue .anchor-button,
.tcg-promo-content-desktop-blue .anchor-button {
  padding: 16px 24px;
  background: white;
  border-radius: 2rem;
  border: 1px solid white;
  color: blue;
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  line-height: 17px;
}

.tcg-promo-content-desktop-blue .anchor-button:hover,
.tcg-promo-content-mobile-blue .anchor-button:hover {
  /*background: rgba(255, 255, 255, 0.89);*/
    background: #c0d3ff;
}

.tcg-promo-content-mobile-blue h5,
.tcg-promo-content-desktop-blue h5,
.tcg-promo-content-desktop-blue h2 {
  color: white;
  margin: 0;
  padding-bottom: 1rem;
  text-align: var(--bs-body-text-align);
}

.tcg-promo-image {
  position: absolute;
  right: 0;
  top: 0;
  height: 272px;
  width: 272px;
  border-radius: 50%;
}

.tcg-promo-mobile {
  padding-top: 32px;
}

.tcg-promo-content-container-desktop-blue {
  display: none;
}

@media (min-width: 400px) {
  .tcg-promo-circle-blue {
    max-width: 85vw;
  }

  .tcg-promo .tcg-promo-circle-green {
    transform: translateX(85vw);
  }
}

@media (min-width: 500px) {
  .tcg-promo-content-desktop-blue {
    max-width: 417px;
  }

  .tcg-promo {
    padding-top: 417px;
  }

  .tcg-promo-circle-blue {
    height: 417px;
  }

  .tcg-promo .tcg-promo-circle-green {
    height: 417px;
    width: 417px;
  }

  .tcg-promo-image {
    height: 417px;
    width: 417px;
  }
}

@media (min-width: 620px) {
  .tcg-promo-circle-blue {
    max-width: 75vw;
  }

  .tcg-promo .tcg-promo-circle-green {
    transform: translateX(75vw);
  }
}

@media (min-width: 700px) {
  .tcg-promo-circle-blue {
    max-width: 65vw;
  }

  .tcg-promo .tcg-promo-circle-green {
    transform: translateX(65vw);
  }
}

@media (min-width: 768px) {
  .tcg-promo-content-container-desktop-blue {
    display: block;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .tcg-promo-content-container-desktop-blue.active {
    animation: fadeIn 0.4s forwards;
    animation-delay: 0.6s;
  }

  .tcg-promo-content-desktop-blue {
    max-width: 330px;
  }

  .tcg-promo-content-desktop-blue h5 {
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
  }

  .tcg-promo {
    padding-top: 330px;
  }

  .tcg-promo-mobile {
    display: none;
  }

  .tcg-promo-circle-blue {
    height: 330px;
    transform: translateX(-100vw);
    max-width: initial;
    width: calc(100% - 45px);
  }

  .tcg-promo .tcg-promo-circle-green {
    height: 1px;
    max-width: initial;
    transform: translateX(calc(50vw - 165px));
    width: 1px;
  }

  .tcg-promo .tcg-promo-circle-green.active {
    animation: slideInFwd 0.5s forwards, slideOutRight 0.5s forwards 1.01s;
  }

  .tcg-promo-circle-blue.active {
    animation: slideIn 0.6s forwards;
  }

  .tcg-promo-image {
    height: 330px;
    width: 330px;
  }
}

@media (min-width: 992px) {
  .tcg-promo-circle-blue {
    height: 460px;
  }

  .tcg-promo-content-desktop-blue {
    max-width: 357px;
  }

  .tcg-promo {
    padding-top: 460px;
  }

  .tcg-promo .tcg-promo-circle-green {
    transform: translateX(calc(50vw - 230px));
  }

  .tcg-promo-image {
    height: 460px;
    width: 460px;
  }
}

@media (min-width: 1200px) {
  .tcg-promo-content-desktop-blue {
    max-width: 446px;
  }

  .tcg-promo-content-desktop-blue h5 {
    font-size: 48px;
    line-height: 60px;
  }
    
  .tcg-promo {
    padding-top: 591px;
  }

  .tcg-promo-circle-blue {
    height: 588px;
  }

  .tcg-promo .tcg-promo-circle-green {
    transform: translateX(calc(50vw - 296px));
  }

  .tcg-promo-image {
    height: 588px;
    width: 588px;
  }
}

@media (min-width: 1440px) {
  .tcg-promo-circle-blue {
    width: calc(100% - 120px);
  }
  .tcg-promo-content-desktop-blue {
    max-width: 486px;
  }
}

@media (min-width: 2200px) {
  .tcg-promo-circle-blue {
    width: calc(100% - 592px);
  }
}

/*
=======
Footer
=======
*/

.tcg-footer {
  padding-bottom: 0;
}

.tcg-footer .footer-top {
  margin-bottom: 32px;
}

.tcg-footer .footer-top a,
.tcg-footer .footer-bottom a {
  border-bottom: 1px solid;
  text-decoration: none;
}

.tcg-footer .footer-top .footer-socials a {
  border: none;
}

.tcg-footer .footer-top .footer-socials li:not(:first-child) svg {
  margin-left: 1rem;
}

.tcg-footer .footer-top .footer-socials a:focus svg {
  outline: 1px solid var(--tcg-color-action-blue);
}

.tcg-footer .footer-bottom {
  background: #f4f4f4;
  padding: 4.5rem 0;
}

.tcg-footer .footer-bottom .footer-links {
  flex-direction: column;
  margin-bottom: 0;
}

.tcg-footer .footer-bottom .footer-links .footer-link {
  padding: 0 0 24px;
}

.tcg-footer .footer-bottom .footer-links .footer-link a,
.tcg-footer .footer-top .footer-top-links a {
  padding: 0 2px;
}

.tcg-footer .footer-bottom .footer-links .footer-link:first-child {
  padding-left: 0;
}

.tcg-footer .footer-bottom .footer-links .footer-link:last-child {
  padding-right: 0;
}

.tcg-footer .footer-bottom .footer-links .footer-pipe {
  align-self: center;
  border-right: 1px solid #333333;
  display: none;
  height: 13px;
}

.tcg-footer .footer-bottom .footer-right-text {
  margin-bottom: 48px;
}

.tcg-footer .footer-bottom .footer-right-text p,
.tcg-footer .footer-top p,
.tcg-footer .footer-bottom .footer-right-text a {
  color: #333333;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.tcg-footer .footer-bottom .footer-right-text a:focus,
.tcg-footer .footer-bottom .footer-links a:focus,
.tcg-footer .footer-top .footer-top-links a:focus {
  color: #ffffff;
  background: #333333;
}

.tcg-footer .footer-top .tcg-footer-logo {
  max-width: 200px;
}

.tcg-footer .footer-top .footer-top-links li {
  margin-bottom: 14px;
}

.footer-top-section-container {
  width: 100%;
}

.tcg-footer .footer-top .footer-top-section {
  margin-bottom: 32px;
  padding: 0;
}

.tcg-footer .footer-top .footer-top-section h3 {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 1rem;
}

@media (min-width: 577px) {
  .tcg-footer .footer-top {
    margin-bottom: 48px;
  }

  .tcg-footer .footer-top .tcg-footer-logo-container {
    align-items: flex-start;
    display: flex;
  }

  .tcg-footer .footer-top .tcg-footer-logo {
    max-width: 300px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .tcg-footer .footer-top {
    display: flex;
    justify-content: space-between;
  }

  .tcg-footer .footer-top .footer-top-section {
    padding: 0 16px;
  }
}

@media (min-width: 992px) {
  .tcg-footer .footer-bottom .footer-links .footer-pipe {
    display: list-item;
  }

  .tcg-footer .footer-bottom .footer-links {
    align-items: center;
    flex-direction: row;
  }

  .tcg-footer .footer-bottom .footer-links .footer-link {
    display: flex;
    padding: 0 24px;
    text-align: center;
  }

  .tcg-footer .footer-top .tcg-footer-logo {
    max-width: 182px;
  }

  .footer-top-section-container {
    display: flex;
    justify-content: space-around;
  }
}

@media (min-width: 1200px) {
  .tcg-footer .footer-top .tcg-footer-logo {
    max-width: 300px;
  }
}
