/* ========================================
   ARQUIVO CSS PRINCIPAL
   ======================================== */

/* ========================================
   ÍNDICE:
   1. VARIÁVEIS E CORES
   2. RESET E BASE
   3. TIPOGRAFIA
   4. LAYOUT E GRID
   5. COMPONENTES
      5.1 Botões
      5.2 Cards
      5.3 Formulários
   6. UTILITÁRIOS
   7. RESPONSIVIDADE
   ======================================== */


/* ========================================
   1. VARIÁVEIS E CORES
   ======================================== */

:root {
    /* Cores principais */
    --white: #ffffff;
    --black: #000000;
    --a-g-theme-color: #6495ed;

    /* Adicione suas cores personalizadas aqui */
}


/* ========================================
   2. RESET E BASE
   ======================================== */



    :root {
      --white: #ffffff
    }

    .a-cloned .a-c-cont {
      width: 100%
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: Roboto, sans-serif;
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden
    }

    *,
    ::after,
    ::before,
    body {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    .ql-align-left {
      text-align: left
    }

    .ql-align-center {
      text-align: center
    }

    .ql-align-right {
      text-align: right
    }

    .ql-align-justify {
      text-align: justify
    }

    .atomicat-interactive-quiz-progress {
      margin: 20px auto;
      padding: 0;
      max-width: 28rem;
      height: 10px;
      overflow: hidden;
      position: relative;
      border-radius: 1rem
    }

    .atomicat-interactive-quiz-progress.atomicat-margin-top-zero {
      margin-top: 0
    }

    .a-txt-extra {
      padding: 1rem;
      border-radius: .375rem;
      line-height: 1.4;
      font-size: 16px;
      font-weight: 400
    }

    .a-txt-timer {
      line-height: 1.25;
      text-align: center;
      padding-left: 1.25rem;
      padding-right: 1.25rem
    }

    .a-txt-extra,
    .a-txt-extra.a-danger {
      color: rgb(185 28 28);
      background-color: rgb(254 226 226)
    }

    .a-txt-extra.a-danger.a-highlight {
      color: rgb(254 242 242);
      background-color: rgb(220 38 38)
    }

    .a-txt-extra.a-info {
      color: rgb(29 78 216);
      background-color: rgb(219 234 254)
    }

    .a-txt-extra.a-info.a-highlight {
      color: rgb(239 246 255);
      background-color: rgb(37 99 235)
    }

    .a-txt-extra.a-success {
      color: rgb(21 128 61);
      background-color: rgb(220 252 231)
    }

    .a-txt-extra.a-success.a-highlight {
      color: rgb(240 253 244);
      background-color: rgb(22 163 74)
    }

    .a-txt-extra.a-warning {
      color: rgb(161 98 7);
      background-color: rgb(254 249 195)
    }

    .a-txt-extra.a-warning.a-highlight {
      color: rgb(66 32 6);
      background-color: rgb(250 204 21)
    }

    .a-txt-extra.a-light {
      color: rgb(63 63 70);
      background-color: rgb(244 244 245)
    }

    .a-txt-extra.a-light.a-highlight {
      color: rgb(250 250 250);
      background-color: rgb(82 82 91)
    }

    button {
      border: none;
      outline: 0;
      background: 0 0;
      font-family: "Space Grotesk", sans-serif;
      cursor: pointer
    }

    .atomicat-interactive-quiz-bar-bg {
      opacity: .1;
      width: 100%
    }

    .atomicat-interactive-quiz-bar,
    .atomicat-interactive-quiz-bar-bg {
      height: 100%;
      background: var(--a-g-theme-color, #6495ed);
      transition-duration: .7s;
      position: absolute;
      top: 0;
      left: 0
    }

    a {
      color: inherit;
      text-decoration: inherit
    }

    .atomi-h1 {
      font-size: 36px
    }

    .atomi-h2 {
      font-size: 30px
    }

    .atomi-h3 {
      font-size: 24px
    }

    .atomi-h4 {
      font-size: 20px
    }

    .atomi-h5 {
      font-size: 18px
    }

    .atomi-h6 {
      font-size: 16px
    }

    h1 {
      font-size: 2em
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-weight: inherit
    }

    .a-g-m-t,
    [class*=atomicat-modal-trigger] {
      cursor: pointer
    }

    .atomicat-cursor-pointer {
      cursor: pointer
    }

    .a-o-cont.atomicat-unfold,
    .atomicat-unfold {
      overflow: hidden;
      height: 200px;
      align-items: start;
      position: relative;
      transition: height 4s ease-in-out
    }

    .a-o-cont.atomicat-unfold-transition {
      transition: height .5s ease-in-out
    }

    .a-b-cont {
      word-wrap: break-word
    }

    .atomicat-unfold-button {
      cursor: pointer;
      display: block;
      position: relative;
      z-index: 1;
      background: 0 0;
      border: none;
      padding: 10px;
      text-decoration: underline
    }

    .atomicat-unfold::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
      background: linear-gradient(rgba(255, 255, 255, 0), #fff);
      transition: background .5s ease-in-out;
      z-index: 1;
      height: 100%
    }

    .atomicat-ribbon-container {
      --text: 'MOST POPULAR';
      --first-color: #62baea;
      --second-color: #4a98bf;
      position: relative
    }

    .atomicat-ribbon-container .atomicat-ribbon {
      position: absolute;
      top: -10px;
      width: 150px;
      height: 150px;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9;
      overflow: hidden
    }

    .a-b-o-cont.atomicat-infinite-entrance-animation,
    .a-e-cont.atomicat-infinite-entrance-animation {
      animation-iteration-count: infinite
    }

    .a-b-o-cont {
      width: 100%;
      margin: 0 auto;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      max-width: 100%;
      position: relative
    }

    .atomicat-ribbon-top-left {
      left: -10px
    }

    .atomicat-ribbon-top-left::before {
      transform: rotate(-45deg) translateY(-20px)
    }

    .atomicat-ribbon-top-left::after {
      left: 0
    }

    .atomicat-ribbon-top-right {
      right: -10px
    }

    .atomicat-ribbon-top-right::before {
      transform: rotate(45deg) translateY(-20px)
    }

    .atomicat-ribbon-top-right::after {
      right: 0
    }

    .atomicat-ribbon-bottom-left {
      left: -10px;
      bottom: -10px
    }

    .atomicat-ribbon-bottom-left::before {
      transform: rotate(45deg) translateY(-20px)
    }

    .atomicat-ribbon-bottom-left::after {
      left: 0
    }

    .atomicat-ribbon-bottom-right {
      right: -10px;
      bottom: -10px
    }

    .atomicat-ribbon-bottom-right::before {
      transform: rotate(-45deg) translateY(-20px)
    }

    .atomicat-ribbon-bottom-right::after {
      right: 0
    }

    .atomicat-ribbon-container .atomicat-ribbon::before {
      content: var(--text);
      position: absolute;
      width: 150%;
      height: 40px;
      background: var(--first-color);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      letter-spacing: .1em;
      box-shadow: 0 5px 10px rgba(0, 0, 0, .1)
    }

    .atomicat-ribbon-container .atomicat-ribbon::after {
      content: '';
      position: absolute;
      bottom: 0;
      width: 10px;
      height: 10px;
      background: var(--second-color);
      z-index: -1;
      box-shadow: 140px -140px var(--second-color)
    }

    .atomicat-marquee {
      position: relative;
      display: flex
    }

    .atomicat-overflow-hidden {
      overflow: hidden
    }

    .atomicat-marquee-content {
      flex-shrink: 0;
      display: flex;
      justify-content: space-around;
      min-width: 100%
    }

    .atomicat-enable-animation .atomicat-marquee-content {
      animation: atomicat-marquee-animation 10s linear infinite
    }

    .atomicat-marquee-reverse .atomicat-marquee-content {
      animation-direction: reverse
    }

    .atomicat-marquee-alternate .atomicat-marquee-content {
      animation-direction: alternate
    }

    .atomicat-marquee-pause:hover .atomicat-marquee-content {
      animation-play-state: paused
    }

    @keyframes atomicat-marquee-animation {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-100%)
      }
    }

    .a-html-ele {
      width: 18px;
      height: 18px
    }

    .atomicat-page {
      background-color: red
    }

    .a-g-s-h,
    .atomicat-heading-title {
      color: #000;
      font-family: "Nunito Sans", sans-serif
    }

    .a-g-s-t,
    .atomicat-heading-title>span,
    .atomicat-text,
    .atomicat-text>span {
      color: #000;
      font-family: "Nunito Sans", sans-serif
    }

    .a-e-cont.a-btn>.a-btn,
    .a-g-s-b {
      color: #fff;
      font-family: "Nunito Sans", sans-serif;
      background: var(--a-g-theme-color, #6495ed)
    }

    .atomicat-fullheight {
      height: 100%
    }

    .atomicat-disable-selection {
      user-select: none;
      -moz-user-select: none;
      -webkit-user-select: none;
      cursor: default
    }

    .atomicat-hidden {
      display: none
    }

    .a-r {
      position: relative
    }

    .a-r .atomicat-hidden,
    .atomicat-hidden.a-i-e-cont,
    .atomicat-hidden.a-r {
      display: none
    }

    .atomicat-chosen-option {
      background: #ff0
    }

    .atomicat-fixed {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 20
    }

    .flex-row {
      display: flex
    }

    .flex-row-reverse {
      flex-direction: row-reverse
    }

    .flex-column-reverse {
      flex-direction: column-reverse
    }

    .flex-column {
      display: flex;
      flex-direction: column
    }

    .flex-row-all {
      display: flex;
      justify-content: center;
      align-items: center
    }

    .flex-column-all {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center
    }

    .flex-row-reverse {
      flex-direction: row-reverse
    }

    .flex-column-reverse {
      flex-direction: column-reverse
    }

    .flex-row-between {
      display: flex;
      justify-content: space-between;
      align-items: center
    }

    .gap-1 {
      gap: 1rem
    }

    .flex-align-center {
      align-items: center
    }

    .flex-row-center {
      display: flex;
      justify-content: center;
      align-items: center
    }

    .flex-row-align-center {
      display: flex;
      align-items: center
    }

    .a-c-cont {
      max-width: 100%;
      min-width: 0
    }

    .atomicat-custom-embed iframe {
      max-width: 100%;
      width: 100%;
      margin: 0;
      line-height: 1;
      border: none
    }

    .a-c-f-w {
      width: 100%
    }

    .a-e-cont {
      max-width: 100%
    }

    .atomicat-transform-element {
      transform: perspective(var(--atomicat-transform-perspective, 0)) rotate(var(--atomicat-transform-rotate-z, 0)) rotateX(var(--atomicat-transform-rotate-x, 0)) rotateY(var(--atomicat-transform-rotate-y, 0)) translate(var(--atomicat-transform-translate, 0)) translateX(var(--atomicat-transform-translate-x, 0)) translateY(var(--atomicat-transform-translate-y, 0)) scaleX(calc(var(--atomicat-transform-flip-x, 1)* var(--atomicat-transform-scale-x, var(--atomicat-transform-scale, 1)))) scaleY(calc(var(--atomicat-transform-flip-y, 1)* var(--atomicat-transform-scale-y, var(--atomicat-transform-scale, 1)))) skewX(var(--atomicat-transform-skew-x, 0)) skewY(var(--atomicat-transform-skew-y, 0));
      transform-origin: var(--atomicat-transform-origin-y) var(--atomicat-transform-origin-x);
      transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--atomicat-transform-transition-duration, .4s)
    }

    .a-e-cont.atomicat-googlemaps {
      overflow: hidden
    }

    .a-flex {
      display: flex
    }

    .atomicat-emoji {
      width: 65px
    }

    .atomica-emoji-unicode {
      font-size: 65px
    }

    .a-f-c {
      display: flex;
      flex-direction: column
    }

    .a-flex-start {
      align-self: flex-start
    }

    .a-flex-end {
      align-self: flex-end
    }

    .a-flex-center {
      align-self: center
    }

    .a-flex-wrapper {
      display: flex;
      flex-direction: column;
      width: 100%
    }

    .a-o-cont {
      display: flex;
      width: 100%;
      align-items: center;
      max-width: 100%;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center
    }

    .a-o-cont {
      height: 100%;
      margin: 0 auto
    }

    .a-acc-cont {
      position: relative
    }

    .a-i-e-cont {
      transition: height .5s ease-in-out, background .5s ease-in-out
    }

    .a-o-cont.a-cont-b>.a-cont {
      max-width: 1140px
    }

    .a-o-cont.a-cont-f-w>.a-cont {
      max-width: 100%
    }

    .a-o-cont .a-cont {
      flex-direction: column
    }

    .a-b-cont>.a-o-cont {
      margin: 0 auto
    }

    .atomicat-divider-flex {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 15px 0;
      gap: .5rem
    }

    .atomicat-divider-flex .atomicat-content {
      border-bottom: 2px solid #000;
      width: 50%
    }

    .atomicat-border-bottom {
      border-bottom: 1.5px solid #e6e8ea
    }

    .atomicat-border-top {
      border-top: 1.5px solid #e6e8ea
    }

    .a-cont {
      display: flex;
      margin: 0 auto;
      font-weight: 600;
      min-height: 100%;
      width: 100%
    }

    .atomicat-hidden-tablet {
      display: block
    }

    .atomicat-hidden-mobile {
      display: block
    }

    .atomicat-hidden-desktop {
      display: none
    }

    @media screen and (max-width:1024px) {
      .atomicat-hidden-mobile {
        display: block
      }

      .atomicat-hidden-desktop {
        display: block
      }

      .atomicat-hidden-tablet {
        display: none
      }
    }

    @media screen and (max-width:480px) {
      .a-o-cont.a-cont-b>.a-cont {
        grid-template-columns: repeat(1, 1fr)
      }

      .atomicat-hidden-tablet {
        display: block
      }

      .atomicat-hidden-desktop {
        display: block
      }

      .atomicat-hidden-mobile {
        display: none
      }

      .a-cont {
        flex-wrap: wrap
      }
    }

    @media (min-width:768px) {
      .atomicat-column[data-col="10"] {
        width: 10%
      }

      .atomicat-column[data-col="11"] {
        width: 11.111%
      }

      .atomicat-column[data-col="12"] {
        width: 12.5%
      }

      .atomicat-column[data-col="14"] {
        width: 14.285%
      }

      .atomicat-column[data-col="16"] {
        width: 16.666%
      }

      .atomicat-column[data-col="20"] {
        width: 20%
      }

      .atomicat-column[data-col="25"] {
        width: 25%
      }

      .atomicat-column[data-col="30"] {
        width: 30%
      }

      .atomicat-column[data-col="33"] {
        width: 33.333%
      }

      .atomicat-column[data-col="40"] {
        width: 40%
      }

      .atomicat-column[data-col="50"] {
        width: 50%
      }

      .atomicat-column[data-col="60"] {
        width: 60%
      }

      .atomicat-column[data-col="66"] {
        width: 66.666%
      }

      .atomicat-column[data-col="70"] {
        width: 70%
      }

      .atomicat-column[data-col="75"] {
        width: 75%
      }

      .atomicat-column[data-col="80"] {
        width: 80%
      }

      .atomicat-column[data-col="83"] {
        width: 83.333%
      }

      .atomicat-column[data-col="90"] {
        width: 90%
      }

      .atomicat-column[data-col="100"] {
        width: 100%
      }
    }

    .flexBox {
      display: flex;
      flex-direction: column;
      gap: 8px
    }

    @keyframes atomicat-animation-fadeInOut {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .5
      }
    }

    .a-ac .atomicat-content {
      padding: 15px 20px;
      font-weight: 400;
      white-space: pre-line;
      word-break: break-word;
      transition: height .5s ease-in-out
    }

    .a-ac .a-c-text {
      color: var(--a-g-content-color, #000)
    }

    .a-ac svg {
      height: 14px;
      color: var(--a-g-theme-color, #6ec1e4)
    }

    .a-ac .atomicat-title {
      padding: 15px 20px;
      transition: border-bottom .5s ease-in-out;
      border-bottom: 0 solid transparent;
      display: flex;
      justify-content: space-between;
      align-items: center
    }

    .a-ac .atomicat-title.atomicat-icons-start {
      flex-direction: row-reverse;
      justify-content: flex-end;
      gap: 1rem
    }

    .a-ac-t {
      cursor: pointer
    }

    .a-ac .atomicat-content-active {
      max-height: 1000rem
    }

    .a-ac .a-c-inactive {
      max-height: 0;
      padding: 0 20px;
      overflow: hidden;
      display: none
    }

    .a-ac-c {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 2px
    }

    .a-ac-i {
      border-radius: 10px;
      background: #f7f8fa;
      overflow: hidden
    }

    .a-ac .atomicat-content .a-img-w {
      display: flex;
      align-items: center;
      justify-content: center
    }

    .a-b-a {
      display: flex;
      flex-direction: row-reverse;
      gap: 5px;
      justify-content: center;
      align-items: center
    }

    .a-b-b {
      display: flex;
      flex-direction: row;
      gap: 5px;
      align-items: center;
      justify-content: center
    }

    .a-e-cont>.a-btn,
    .atomicat-marquee-content>.a-btn {
      background: var(--a-g-theme-color, #6495ed);
      padding: 12px;
      text-align: center;
      font-size: 16px;
      font-weight: 600;
      transition: background-color .3s ease-in-out, color .3s ease-in-out;
      word-break: break-word;
      color: #fff;
      border-radius: var(--a-g-round, 1rem);
      align-self: center
    }

    .a-btn svg {
      height: 14px
    }

    .a-icon svg {
      height: 24px
    }

    .a-icon .a-icon-wrap {
      display: inline-block
    }

    .atomicat-tooltip-trigger:hover .atomicat-tooltip {
      opacity: 1;
      z-index: 1;
      cursor: pointer
    }

    .a-c-cont .atomicat-tooltip-trigger {
      overflow: visible;
      position: relative;
      cursor: pointer
    }

    .atomicat-tooltip-trigger:hover .atomicat-tooltip-top {
      animation: atomicat-tooltip-topin .3s linear
    }

    .atomicat-tooltip-trigger:hover .atomicat-tooltip-right {
      animation: atomicat-tooltip-rightin .3s linear
    }

    .atomicat-tooltip-trigger:hover .atomicat-tooltip-bottom {
      animation: atomicat-tooltip-bottomin .3s linear
    }

    .atomicat-tooltip-trigger:hover .atomicat-tooltip-left {
      animation: atomicat-tooltip-leftin .3s linear
    }

    .atomicat-tooltip {
      width: 150px;
      background-color: #555;
      color: #fff;
      animation-duration: .3s;
      opacity: 0;
      display: block;
      color: #fff;
      border-radius: 4px;
      padding: 10px;
      position: absolute;
      z-index: -1;
      line-height: 1.3;
      cursor: pointer;
      text-align: left
    }

    .atomicat-tooltip::after {
      border-width: 5px;
      content: "";
      position: absolute;
      border-style: solid
    }

    .atomicat-tooltip-top {
      bottom: 100%;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      margin: 0 auto 10px auto
    }

    .atomicat-tooltip-top::after {
      top: 100%;
      left: calc(50% - 5px);
      border-top-color: #555;
      margin-top: 0;
      border-color: #000 transparent transparent transparent;
      border-top-color: #555
    }

    .atomicat-tooltip-right {
      top: 50%;
      left: 100%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out;
      margin-left: 10px;
      border-color: transparent #000 transparent transparent
    }

    .atomicat-tooltip-right::after {
      top: calc(50% - 5px);
      right: 100%;
      border-color: transparent #000 transparent transparent;
      border-right-color: #555
    }

    .atomicat-tooltip-bottom {
      top: 100%;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      margin: 10px auto 0 auto
    }

    .atomicat-tooltip-bottom::after {
      left: calc(50% - 5px);
      margin-top: 0;
      bottom: 100%;
      border-color: transparent transparent #000 transparent;
      border-bottom-color: #555
    }

    .atomicat-tooltip-left {
      top: 50%;
      right: 100%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      margin-right: 10px
    }

    .atomicat-tooltip-left::after {
      top: calc(50% - 5px);
      left: 100%;
      border-color: transparent transparent transparent #000;
      border-left-color: #555
    }

    @keyframes atomicat-tooltip-rightin {
      0% {
        opacity: 0;
        left: 105%
      }

      100% {
        opacity: 1;
        left: 100%
      }
    }

    @keyframes atomicat-tooltip-leftin {
      0% {
        opacity: 0;
        right: 105%
      }

      100% {
        opacity: 1;
        right: 100%
      }
    }

    @keyframes atomicat-tooltip-topin {
      0% {
        opacity: 0;
        bottom: 110%
      }

      100% {
        opacity: 1;
        bottom: 100%
      }
    }

    @keyframes atomicat-tooltip-bottomin {
      0% {
        opacity: 0;
        top: 110%
      }

      100% {
        opacity: 1;
        top: 100%
      }
    }

    .a-video {
      overflow: hidden
    }

    .a-video iframe {
      height: 100%;
      width: 100%
    }

    .a-v-o-c {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden
    }

    .a-v-o {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      transition: all .3s ease
    }

    .a-v-o:hover svg {
      transform: scale(1.1)
    }

    .a-v-p-b {
      width: 80px;
      height: 80px
    }

    @media (max-width:768px) {
      .a-v-p-b {
        width: 60px;
        height: 60px
      }
    }

    .atomicat-image {
      overflow: hidden;
      text-align: center
    }

    .atomicat-image img {
      display: inline-block;
      max-width: 100%;
      height: auto;
      vertical-align: middle
    }

    .atomicat-text * {
      word-break: break-word
    }

    .atomicat-text ul {
      padding-left: revert
    }

    .atomicat-text {
      white-space: pre-line;
      color: var(--a-g-content-color)
    }

    .atomicat-text :is(h1, h2, h3, h4, h5, h6) {
      color: var(--a-g-title-color)
    }

    .atomicat-text p {
      font-size: 16px;
      font-weight: 400
    }

    .atomicat-heading-title {
      white-space: pre-line
    }

    .atomicat-heading-title h1 {
      font-size: 48px;
      font-weight: 700
    }

    .atomicat-heading-title h2 {
      font-size: 36px;
      font-weight: 600
    }

    .atomicat-heading-title h3 {
      font-size: 24px;
      font-weight: 500
    }

    .a-divider-w {
      padding-top: 10px;
      padding-bottom: 10px
    }

    .atomicat-divider .a-divider-s {
      display: flex;
      align-items: center;
      width: 100%;
      mask-repeat: repeat-x;
      mask-size: 20px 100%;
      border-top: 1px solid #000
    }

    .atomicat-divider .a-divider-s .a-divider-e {
      margin-left: 15px;
      margin-right: 15px
    }

    .atomicat-divider .a-divider-s .a-divider-e.a-divider-e-i svg {
      height: 20px
    }

    .atomicat-divider .a-divider-s.a-divider-s-element.a-divider-s-center:after,
    .atomicat-divider .a-divider-s.a-divider-s-element.a-divider-s-center:before,
    .atomicat-divider .a-divider-s.a-divider-s-element.a-divider-s-end:before,
    .atomicat-divider .a-divider-s.a-divider-s-element.a-divider-s-start:after {
      display: block;
      content: "";
      border-bottom: 0;
      flex-grow: 1;
      mask-repeat: repeat-x;
      mask-size: 20px 100%
    }

    .atomicat-delay {
      display: none
    }
  


    .a-b-cont {
      overflow: hidden
    }
  


    @font-face {
      font-family: 'Nunito Sans';
      font-style: italic;
      font-weight: 400;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0RMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwd-RaLY50.woff2) format('woff2');
      unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: italic;
      font-weight: 400;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0RMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwd-1aLY50.woff2) format('woff2');
      unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: italic;
      font-weight: 400;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0RMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwd-ZaLY50.woff2) format('woff2');
      unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: italic;
      font-weight: 400;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0RMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwd-daLY50.woff2) format('woff2');
      unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: italic;
      font-weight: 400;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0RMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwd-laLQ.woff2) format('woff2');
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: italic;
      font-weight: 500;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0RMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwd-RaLY50.woff2) format('woff2');
      unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: italic;
      font-weight: 500;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0RMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwd-1aLY50.woff2) format('woff2');
      unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: italic;
      font-weight: 500;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0RMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwd-ZaLY50.woff2) format('woff2');
      unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: italic;
      font-weight: 500;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0RMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwd-daLY50.woff2) format('woff2');
      unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: italic;
      font-weight: 500;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0RMImSLYBIv1o4X1M8cce4OdVisMz5nZRqy6cmmmU3t2FQWEAEOvV9wNvrwlNstMKW3Y6K5WMwd-laLQ.woff2) format('woff2');
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 400;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t4R-tCKQ.woff2) format('woff2');
      unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 400;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7txR-tCKQ.woff2) format('woff2');
      unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 400;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t6R-tCKQ.woff2) format('woff2');
      unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 400;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t7R-tCKQ.woff2) format('woff2');
      unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 400;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t1R-s.woff2) format('woff2');
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 500;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t4R-tCKQ.woff2) format('woff2');
      unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 500;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7txR-tCKQ.woff2) format('woff2');
      unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 500;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t6R-tCKQ.woff2) format('woff2');
      unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 500;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t7R-tCKQ.woff2) format('woff2');
      unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 500;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t1R-s.woff2) format('woff2');
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 600;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t4R-tCKQ.woff2) format('woff2');
      unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 600;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7txR-tCKQ.woff2) format('woff2');
      unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 600;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t6R-tCKQ.woff2) format('woff2');
      unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 600;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t7R-tCKQ.woff2) format('woff2');
      unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 600;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t1R-s.woff2) format('woff2');
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 700;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t4R-tCKQ.woff2) format('woff2');
      unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 700;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7txR-tCKQ.woff2) format('woff2');
      unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 700;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t6R-tCKQ.woff2) format('woff2');
      unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 700;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t7R-tCKQ.woff2) format('woff2');
      unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 700;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t1R-s.woff2) format('woff2');
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 800;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t4R-tCKQ.woff2) format('woff2');
      unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 800;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7txR-tCKQ.woff2) format('woff2');
      unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 800;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t6R-tCKQ.woff2) format('woff2');
      unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 800;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t7R-tCKQ.woff2) format('woff2');
      unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 800;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t1R-s.woff2) format('woff2');
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 900;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t4R-tCKQ.woff2) format('woff2');
      unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 900;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7txR-tCKQ.woff2) format('woff2');
      unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 900;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t6R-tCKQ.woff2) format('woff2');
      unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 900;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t7R-tCKQ.woff2) format('woff2');
      unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF
    }

    @font-face {
      font-family: 'Nunito Sans';
      font-style: normal;
      font-weight: 900;
      font-stretch: 100%;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/nunitosans/v19/pe0TMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42ptCp7t1R-s.woff2) format('woff2');
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
    }
  


        .atomicat-container-5e7d223>.a-o-cont>.a-cont {
          flex-direction: row
        }

        .a-b-cont .atomicat-container-5e7d223.a-b-o-cont {
          background: #000;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center
        }

        @media screen and (max-width:480px) {
          .a-b-cont .atomicat-container-5e7d223.a-b-o-cont {
            background: #000
          }
        }
      


              .atomicat-container-9478b23>.a-o-cont>.a-cont {
                align-items: center;
                flex-direction: column;
                justify-content: center
              }

              .a-b-cont .atomicat-container-9478b23.a-b-o-cont {
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
                width: 25%
              }

              @media screen and (max-width:480px) {
                .a-b-cont .atomicat-container-9478b23.a-b-o-cont {
                  width: 20%
                }
              }
            


                    .a-icon-61fb185 {
                      text-align: center;
                      color: #fff
                    }

                    .a-icon-61fb185 .a-icon-wrap {
                      color: #fff;
                      font-size: 50px;
                      text-align: center
                    }

                    @media screen and (max-width:480px) {
                      .a-icon-61fb185 .a-icon-wrap {
                        font-size: 20px
                      }
                    }

                    .a-icon-61fb185 svg {
                      height: 50px
                    }

                    @media screen and (max-width:480px) {
                      .a-icon-61fb185 svg {
                        height: 20px
                      }
                    }

                    @media screen and (max-width:480px) {
                      .a-c-cont-61fb185>.a-e-cont {
                        margin-top: 18px
                      }
                    }
                  


              .atomicat-container-bef684e>.a-o-cont>.a-cont {
                flex-direction: column
              }

              .a-b-cont .atomicat-container-bef684e.a-b-o-cont {
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
                width: 50%
              }

              @media screen and (max-width:480px) {
                .a-b-cont .atomicat-container-bef684e.a-b-o-cont {
                  width: 60%
                }
              }
            


                    @media screen and (max-width:480px) {
                      .atomicat-image-2ee5a95 img {
                        width: 78%
                      }
                    }
                  


              .atomicat-container-8f97322>.a-o-cont>.a-cont {
                align-items: center;
                flex-direction: column;
                justify-content: center
              }

              .a-b-cont .atomicat-container-8f97322.a-b-o-cont {
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
                width: 25%
              }

              @media screen and (max-width:480px) {
                .a-b-cont .atomicat-container-8f97322.a-b-o-cont {
                  width: 20%
                }
              }
            


                    .a-icon-92e7b5c {
                      text-align: center;
                      color: #fff
                    }

                    .a-icon-92e7b5c .a-icon-wrap {
                      color: #fff;
                      text-align: center;
                      font-size: 50px
                    }

                    @media screen and (max-width:480px) {
                      .a-icon-92e7b5c .a-icon-wrap {
                        font-size: 20px
                      }
                    }

                    .a-icon-92e7b5c svg {
                      height: 50px
                    }

                    @media screen and (max-width:480px) {
                      .a-icon-92e7b5c svg {
                        height: 20px
                      }
                    }

                    @media screen and (max-width:480px) {
                      .a-c-cont-92e7b5c>.a-e-cont {
                        margin-top: 18px
                      }
                    }
                  


        .atomicat-container-ec130ef>.a-o-cont {
          padding-top: 50px;
          padding-bottom: 50px
        }

        @media screen and (max-width:1024px) {
          .atomicat-container-ec130ef>.a-o-cont {
            padding-right: 20px;
            padding-left: 20px
          }
        }

        .atomicat-container-ec130ef>.a-o-cont>.a-cont {
          flex-direction: row
        }

        .a-b-cont .atomicat-container-ec130ef.a-b-o-cont {
          background: #000;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center
        }

        @media screen and (max-width:480px) {
          .a-b-cont .atomicat-container-ec130ef.a-b-o-cont {
            background: #000
          }
        }
      


              .atomicat-container-d4c6593>.a-o-cont>.a-cont {
                flex-direction: column
              }

              .a-b-cont .atomicat-container-d4c6593.a-b-o-cont {
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
                width: 100%
              }

              @media screen and (max-width:480px) {
                .a-b-cont .atomicat-container-d4c6593.a-b-o-cont {
                  width: 100%
                }
              }
            


                    .a-e-cont.atomicat-heading-title-207180e p:hover {
                      -webkit-text-fill-color: unset
                    }

                    .a-e-cont.atomicat-heading-title-207180e p {
                      color: #fff;
                      font-family: "Nunito Sans", sans-serif;
                      text-transform: none;
                      background-image: unset;
                      font-size: 25px
                    }

                    @media screen and (max-width:480px) {
                      .a-e-cont.atomicat-heading-title-207180e p {
                        font-weight: 600;
                        text-align: left;
                        font-size: 14px;
                        line-height: 26px
                      }
                    }

                    .a-c-cont-207180e>.a-e-cont {
                      margin-bottom: 15px
                    }

                    @media screen and (max-width:480px) {
                      .a-c-cont-207180e>.a-e-cont {
                        margin-left: 20px;
                        margin-bottom: 3px;
                        margin-right: 0;
                        margin-top: 25px
                      }
                    }
                  


                    .a-e-cont.atomicat-heading-title-90c6ef5 p:hover {
                      -webkit-text-fill-color: unset
                    }

                    .a-e-cont.atomicat-heading-title-90c6ef5 p {
                      line-height: 55px;
                      text-align: center;
                      font-size: 50px;
                      color: #fff;
                      background-image: unset;
                      text-transform: capitalize;
                      font-family: "Nunito Sans", sans-serif;
                      font-weight: 600
                    }

                    @media screen and (max-width:1024px) {
                      .a-e-cont.atomicat-heading-title-90c6ef5 p {
                        line-height: 45px;
                        font-size: 35px
                      }
                    }

                    @media screen and (max-width:480px) {
                      .a-e-cont.atomicat-heading-title-90c6ef5 p {
                        line-height: 1.2em;
                        text-align: left;
                        font-size: 21px;
                        font-weight: 900
                      }
                    }

                    @media screen and (max-width:480px) {
                      .a-c-cont-90c6ef5>.a-e-cont {
                        margin-left: 20px;
                        margin-right: 10px;
                        margin-bottom: 20px;
                        margin-top: 5px
                      }
                    }
                  


        .atomicat-container-cf3fdaa>.a-o-cont {
          padding-bottom: 50px
        }

        .atomicat-container-cf3fdaa>.a-o-cont>.a-cont {
          flex-direction: column
        }

        @media screen and (max-width:480px) {
          .atomicat-container-cf3fdaa>.a-o-cont>.a-cont {
            min-height: 236px;
            max-width: 1600px
          }
        }

        .a-b-cont .atomicat-container-cf3fdaa.a-b-o-cont {
          background: #000;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center
        }

        @media screen and (max-width:480px) {
          .a-b-cont .atomicat-container-cf3fdaa.a-b-o-cont {
            min-height: 236px;
            background: #000
          }
        }

        @media screen and (max-width:480px) {
          .atomicat-container-cf3fdaa>.a-o-cont {
            min-height: 236px
          }
        }
      


              .a-c-cont-4bfeb52 {
                width: 100%
              }
            


        .atomicat-container-54f5ca3>.a-o-cont {
          padding-top: 20px;
          padding-bottom: 20px
        }

        .atomicat-container-54f5ca3>.a-o-cont>.a-cont {
          flex-direction: row
        }

        .a-b-cont .atomicat-container-54f5ca3.a-b-o-cont {
          background: #ffe100;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center
        }

        @media screen and (max-width:480px) {
          .a-b-cont .atomicat-container-54f5ca3.a-b-o-cont {
            background: #ffe200
          }
        }
      


              .atomicat-container-1c7634b>.a-o-cont>.a-cont {
                flex-direction: column
              }

              .a-b-cont .atomicat-container-1c7634b.a-b-o-cont {
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
                width: 100%
              }

              @media screen and (max-width:480px) {
                .a-b-cont .atomicat-container-1c7634b.a-b-o-cont {
                  width: 100%
                }
              }
            


                    .a-e-cont.atomicat-heading-title-dbd234a p:hover {
                      -webkit-text-fill-color: unset
                    }

                    .a-e-cont.atomicat-heading-title-dbd234a p {
                      color: #000;
                      font-weight: 900;
                      font-family: "Nunito Sans", sans-serif;
                      text-align: center;
                      background-image: unset;
                      font-size: 35px
                    }

                    @media screen and (max-width:480px) {
                      .a-e-cont.atomicat-heading-title-dbd234a p {
                        font-weight: 900;
                        line-height: 1.3em;
                        text-align: center;
                        font-size: 21px
                      }
                    }

                    @media screen and (max-width:480px) {
                      .a-c-cont-dbd234a>.a-e-cont {
                        margin-bottom: 10px;
                        margin-top: 10px
                      }
                    }
                  


        .atomicat-container-aca1ed1>.a-o-cont {
          padding-top: 20px;
          padding-bottom: 20px
        }

        .atomicat-container-aca1ed1>.a-o-cont>.a-cont {
          flex-direction: row
        }

        .a-b-cont .atomicat-container-aca1ed1.a-b-o-cont {
          background: #efc700;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center
        }

        @media screen and (max-width:480px) {
          .a-b-cont .atomicat-container-aca1ed1.a-b-o-cont {
            background: #efc700
          }
        }
      


              .atomicat-container-4ce7352>.a-o-cont>.a-cont {
                flex-direction: column
              }

              .a-b-cont .atomicat-container-4ce7352.a-b-o-cont {
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
                width: 100%
              }

              @media screen and (max-width:480px) {
                .a-b-cont .atomicat-container-4ce7352.a-b-o-cont {
                  width: 100%
                }
              }
            


                    .a-e-cont.atomicat-heading-title-5048b04 p:hover {
                      -webkit-text-fill-color: unset
                    }

                    .a-e-cont.atomicat-heading-title-5048b04 p {
                      background-image: unset;
                      font-weight: 800;
                      font-family: "Nunito Sans", sans-serif;
                      font-size: 30px;
                      color: #000;
                      text-align: center
                    }

                    @media screen and (max-width:480px) {
                      .a-e-cont.atomicat-heading-title-5048b04 p {
                        line-height: 1.3em;
                        font-weight: 900;
                        font-size: 26px;
                        text-align: center
                      }
                    }

                    @media screen and (max-width:480px) {
                      .a-c-cont-5048b04>.a-e-cont {
                        margin-top: 5px;
                        margin-bottom: 5px
                      }
                    }
                  


        .atomicat-container-8248fa4>.a-o-cont {
          padding-top: 65px;
          padding-bottom: 65px
        }

        @media screen and (max-width:480px) {
          .atomicat-container-8248fa4>.a-o-cont {
            padding-top: 20px;
            padding-right: 15px;
            padding-bottom: 20px;
            padding-left: 15px
          }
        }

        .atomicat-container-8248fa4>.a-o-cont>.a-cont {
          align-items: center;
          justify-content: center
        }

        .a-b-cont .atomicat-container-8248fa4.a-b-o-cont {
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center;
          width: 100%
        }

        @media screen and (max-width:480px) {
          .a-b-cont .atomicat-container-8248fa4.a-b-o-cont {
            width: 95%
          }
        }
      


              @media screen and (max-width:480px) {
                .atomicat-container-4186b65>.a-o-cont {
                  padding-right: 0;
                  padding-left: 0
                }
              }

              .atomicat-container-4186b65>.a-o-cont>.a-cont {
                column-gap: 50px;
                flex-direction: row;
                row-gap: 50px
              }

              .a-b-cont .atomicat-container-4186b65.a-b-o-cont {
                border-style: hidden;
                border-color: #009b26;
                border-image: unset 1;
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
                width: 100%
              }

              @media screen and (max-width:480px) {
                .a-b-cont .atomicat-container-4186b65.a-b-o-cont {
                  border-left-width: 3px;
                  border-bottom-right-radius: 20px;
                  border-bottom-left-radius: 20px;
                  border-top-right-radius: 20px;
                  border-right-width: 3px;
                  border-top-left-radius: 20px;
                  border-bottom-width: 3px;
                  border-top-width: 3px;
                  width: 100%
                }
              }
            


                    @media screen and (max-width:480px) {
                      .atomicat-container-fc6c545>.a-o-cont {
                        padding-right: 0;
                        padding-left: 0
                      }
                    }

                    .atomicat-container-fc6c545>.a-o-cont>.a-cont {
                      flex-direction: column
                    }

                    .a-b-cont .atomicat-container-fc6c545.a-b-o-cont {
                      border-color: #c5c5c5;
                      border-image: unset 1;
                      border-style: solid;
                      background-size: cover;
                      background-repeat: no-repeat;
                      background-position: center;
                      width: 100%
                    }

                    @media screen and (max-width:480px) {
                      .a-b-cont .atomicat-container-fc6c545.a-b-o-cont {
                        border-bottom-right-radius: 20px;
                        border-top-width: 3px;
                        border-bottom-left-radius: 20px;
                        border-bottom-width: 3px;
                        border-left-width: 3px;
                        border-right-width: 3px;
                        border-top-right-radius: 20px;
                        border-top-left-radius: 20px;
                        width: 100%
                      }
                    }
                  


                          .atomicat-container-103b5e7>.a-o-cont {
                            padding-top: 0;
                            padding-right: 0;
                            padding-bottom: 0;
                            padding-left: 0
                          }

                          .atomicat-container-103b5e7>.a-o-cont>.a-cont {
                            column-gap: 32px;
                            flex-direction: row;
                            row-gap: 32px
                          }

                          .a-b-cont .atomicat-container-103b5e7.a-b-o-cont {
                            background-size: cover;
                            background-repeat: no-repeat;
                            background-position: center;
                            width: 100%
                          }

                          @media screen and (max-width:480px) {
                            .a-b-cont .atomicat-container-103b5e7.a-b-o-cont {
                              border-bottom-left-radius: 35px;
                              border-top-left-radius: 35px;
                              border-bottom-right-radius: 35px;
                              border-top-right-radius: 35px;
                              background: #fff
                            }
                          }
                        


                                .atomicat-container-165cd7c>.a-o-cont {
                                  padding-top: 0;
                                  padding-right: 0;
                                  padding-bottom: 0;
                                  padding-left: 0
                                }

                                .atomicat-container-165cd7c>.a-o-cont>.a-cont {
                                  flex-direction: column
                                }

                                @media screen and (max-width:480px) {
                                  .atomicat-container-165cd7c>.a-o-cont>.a-cont {
                                    max-width: 1600px
                                  }
                                }

                                .a-b-cont .atomicat-container-165cd7c.a-b-o-cont {
                                  border-bottom-width: 1px;
                                  border-left-width: 1px;
                                  border-top-width: 1px;
                                  border-bottom-right-radius: 35px;
                                  border-right-width: 1px;
                                  border-top-right-radius: 35px;
                                  border-style: hidden;
                                  border-color: unset;
                                  border-image: linear-gradient(131deg, rgba(243, 122, 1, 1) 0%, rgba(237, 103, 4, 1) 100%) 1;
                                  border-bottom-left-radius: 35px;
                                  border-top-left-radius: 35px;
                                  background: rgba(253, 226, 185, .35);
                                  background-size: cover;
                                  background-repeat: no-repeat;
                                  background-position: center;
                                  width: 100%
                                }

                                @media screen and (max-width:480px) {
                                  .a-b-cont .atomicat-container-165cd7c.a-b-o-cont {
                                    border-bottom-width: 2px;
                                    order: 0;
                                    border-left-width: 2px;
                                    border-top-width: 2px;
                                    border-bottom-right-radius: 20px;
                                    border-right-width: 2px;
                                    border-top-right-radius: 20px;
                                    border-bottom-left-radius: 20px;
                                    border-top-left-radius: 20px;
                                    background: #fff
                                  }
                                }
                              


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-db83d9e {
                                          order: 0
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-db83d9e h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-db83d9e h3 {
                                        color: #000;
                                        font-size: 20px;
                                        text-transform: none;
                                        background-image: unset;
                                        text-align: center
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-db83d9e h3 {
                                          font-weight: 900;
                                          font-size: 32px
                                        }
                                      }

                                      .a-c-cont-db83d9e>.a-e-cont {
                                        margin-top: 1px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-db83d9e>.a-e-cont {
                                          margin-top: 1px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-d41ba37 {
                                          order: 1
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-d41ba37 h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-d41ba37 h3 {
                                        font-size: 14px;
                                        text-align: center;
                                        background-image: unset;
                                        color: #5d5d5d
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-d41ba37 h3 {
                                          font-size: 22px;
                                          font-weight: 900
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-d41ba37>.a-e-cont {
                                          margin-top: 0
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-bc83a90 {
                                          order: 2
                                        }
                                      }

                                      .atomicat-image-bc83a90 img {
                                        height: 100%;
                                        width: 66%
                                      }

                                      @media screen and (max-width:480px) {
                                        .atomicat-image-bc83a90 img {
                                          width: 97%
                                        }
                                      }

                                      .a-c-cont-bc83a90>.a-e-cont {
                                        margin-top: 24px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-bc83a90>.a-e-cont {
                                          margin-right: 8px;
                                          margin-top: 0
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-a8d4843 {
                                          order: 2
                                        }
                                      }

                                      .atomicat-image-a8d4843 img {
                                        height: 100%;
                                        width: 66%
                                      }

                                      @media screen and (max-width:480px) {
                                        .atomicat-image-a8d4843 img {
                                          width: 54%
                                        }
                                      }

                                      .a-c-cont-a8d4843>.a-e-cont {
                                        margin-top: 24px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-a8d4843>.a-e-cont {
                                          padding-right: 0;
                                          padding-top: 0;
                                          margin-top: 0;
                                          margin-bottom: 0
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-d99a65e {
                                          order: 4;
                                          align-self: center
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-d99a65e .a-divider-w .a-divider-s {
                                        border: 1px solid #c2c2c2
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-d99a65e .a-divider-w .a-divider-s {
                                          width: 92%;
                                          margin-left: auto;
                                          margin-right: auto
                                        }
                                      }

                                      @media screen and (max-width:480px) {

                                        .a-e-cont.atomicat-divider-d99a65e .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:after,
                                        .a-e-cont.atomicat-divider-d99a65e .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:before,
                                        .a-e-cont.atomicat-divider-d99a65e .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-end:before,
                                        .a-e-cont.atomicat-divider-d99a65e .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-start:after {
                                          width: 92%
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-d99a65e .a-divider-w {
                                          padding-bottom: 7px;
                                          padding-top: 7px
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-d99a65e .a-divider-w .a-divider-s.a-divider-s-element .a-divider-e {
                                        color: #fff
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-29a22fb {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-29a22fb h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-29a22fb h3 {
                                        font-size: large;
                                        text-align: center;
                                        color: #000;
                                        text-transform: uppercase;
                                        background-image: unset
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-29a22fb h3 {
                                          font-size: 17px;
                                          font-weight: 900
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-29a22fb>.a-e-cont {
                                          margin-top: 0
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-76e4dea {
                                          order: 4;
                                          align-self: center
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-76e4dea .a-divider-w .a-divider-s {
                                        border: 1px solid #c2c2c2
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-76e4dea .a-divider-w .a-divider-s {
                                          width: 92%;
                                          margin-left: auto;
                                          margin-right: auto
                                        }
                                      }

                                      @media screen and (max-width:480px) {

                                        .a-e-cont.atomicat-divider-76e4dea .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:after,
                                        .a-e-cont.atomicat-divider-76e4dea .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:before,
                                        .a-e-cont.atomicat-divider-76e4dea .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-end:before,
                                        .a-e-cont.atomicat-divider-76e4dea .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-start:after {
                                          width: 92%
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-76e4dea .a-divider-w {
                                          padding-bottom: 7px;
                                          padding-top: 7px
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-76e4dea .a-divider-w .a-divider-s.a-divider-s-element .a-divider-e {
                                        color: #fff
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-aeefc8d {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-aeefc8d h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-aeefc8d h3 {
                                        text-transform: uppercase;
                                        color: #000;
                                        font-size: large;
                                        text-align: center;
                                        background-image: unset
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-aeefc8d h3 {
                                          font-size: 17px;
                                          font-weight: 900
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-7a5571e {
                                          order: 4;
                                          align-self: center
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-7a5571e .a-divider-w .a-divider-s {
                                        border: 1px solid #c2c2c2
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-7a5571e .a-divider-w .a-divider-s {
                                          width: 92%;
                                          margin-left: auto;
                                          margin-right: auto
                                        }
                                      }

                                      @media screen and (max-width:480px) {

                                        .a-e-cont.atomicat-divider-7a5571e .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:after,
                                        .a-e-cont.atomicat-divider-7a5571e .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:before,
                                        .a-e-cont.atomicat-divider-7a5571e .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-end:before,
                                        .a-e-cont.atomicat-divider-7a5571e .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-start:after {
                                          width: 92%
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-7a5571e .a-divider-w {
                                          padding-bottom: 7px;
                                          padding-top: 7px
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-7a5571e .a-divider-w .a-divider-s.a-divider-s-element .a-divider-e {
                                        color: #fff
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-0cc89d1 {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-0cc89d1 h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-0cc89d1 h3 {
                                        color: #000;
                                        background-image: unset;
                                        text-transform: uppercase;
                                        text-align: center;
                                        font-size: large
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-0cc89d1 h3 {
                                          font-weight: 900;
                                          font-size: 17px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-e8bbbc7 {
                                          order: 4;
                                          align-self: center
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-e8bbbc7 .a-divider-w .a-divider-s {
                                        border: 1px solid #c2c2c2
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-e8bbbc7 .a-divider-w .a-divider-s {
                                          width: 92%;
                                          margin-left: auto;
                                          margin-right: auto
                                        }
                                      }

                                      @media screen and (max-width:480px) {

                                        .a-e-cont.atomicat-divider-e8bbbc7 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:after,
                                        .a-e-cont.atomicat-divider-e8bbbc7 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:before,
                                        .a-e-cont.atomicat-divider-e8bbbc7 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-end:before,
                                        .a-e-cont.atomicat-divider-e8bbbc7 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-start:after {
                                          width: 92%
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-e8bbbc7 .a-divider-w {
                                          padding-bottom: 7px;
                                          padding-top: 7px
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-e8bbbc7 .a-divider-w .a-divider-s.a-divider-s-element .a-divider-e {
                                        color: #fff
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-6f1262d {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-6f1262d h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-6f1262d h3 {
                                        color: #000;
                                        background-image: unset;
                                        text-align: center;
                                        font-size: large;
                                        text-transform: uppercase
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-6f1262d h3 {
                                          font-size: 17px;
                                          font-weight: 900
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-08f6f7b {
                                          order: 7
                                        }
                                      }

                                      .a-btn-08f6f7b.a-e-cont .a-btn:hover {
                                        background: linear-gradient(131deg, #009b26 0, #1faa00 100%);
                                        animation: atomicat-animation-fadeInOut 2s infinite linear;
                                        color: #fff
                                      }

                                      .a-btn-08f6f7b.a-e-cont .a-btn {
                                        background: linear-gradient(180deg, #1faa00 50%, #009b26 20%);
                                        font-family: "Nunito Sans", sans-serif;
                                        border-style: solid;
                                        border-image: unset 1;
                                        border-color: #009e26;
                                        border-bottom-left-radius: 100px;
                                        font-size: 14px;
                                        border-top-right-radius: 100px;
                                        padding-top: 16px;
                                        gap: 11px;
                                        color: #fff;
                                        width: 83%;
                                        align-self: center;
                                        border-bottom-right-radius: 100px;
                                        padding-bottom: 16px;
                                        border-top-left-radius: 100px;
                                        padding-left: 32px;
                                        padding-right: 32px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-btn-08f6f7b.a-e-cont .a-btn {
                                          border-bottom-left-radius: 5px;
                                          font-size: 24px;
                                          border-top-right-radius: 5px;
                                          padding-top: 15px;
                                          border-top-width: 1px;
                                          font-weight: 900;
                                          gap: 15px;
                                          border-right-width: 1px;
                                          width: 100%;
                                          align-self: center;
                                          border-bottom-right-radius: 5px;
                                          border-left-width: 1px;
                                          padding-bottom: 15px;
                                          border-top-left-radius: 5px;
                                          padding-left: 0;
                                          padding-right: 0;
                                          border-bottom-width: 1px
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-btn-08f6f7b.a-e-cont .a-btn svg {
                                          height: 20px
                                        }
                                      }

                                      .a-c-cont-08f6f7b>.a-e-cont {
                                        margin-bottom: 20px;
                                        border-top-left-radius: 0;
                                        margin-top: 20px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-08f6f7b>.a-e-cont {
                                          margin-bottom: 15px;
                                          margin-right: 20px;
                                          margin-top: 20px;
                                          margin-left: 20px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-0d78a24 {
                                          order: 12
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-0d78a24 p:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-0d78a24 p {
                                        font-family: "Nunito Sans", sans-serif;
                                        text-align: center
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-0d78a24 p {
                                          text-align: center;
                                          font-size: 18px;
                                          font-weight: 900
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-0d78a24>.a-e-cont {
                                          margin-top: 10px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-e183c53 {
                                          order: 12
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-e183c53 p:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-e183c53 p {
                                        text-align: center;
                                        font-family: "Nunito Sans", sans-serif
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-e183c53 p {
                                          text-align: center;
                                          font-weight: 900;
                                          font-size: 17px
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-e183c53>.a-e-cont {
                                          margin-top: 5px;
                                          margin-bottom: 25px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-3ce8867 {
                                          order: 11
                                        }
                                      }

                                      .atomicat-image-3ce8867 img {
                                        width: 223px
                                      }

                                      @media screen and (max-width:480px) {
                                        .atomicat-image-3ce8867 img {
                                          width: 206px
                                        }
                                      }

                                      .a-c-cont-3ce8867>.a-e-cont {
                                        padding-right: 24px;
                                        padding-left: 24px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-3ce8867>.a-e-cont {
                                          margin-bottom: 15px
                                        }
                                      }
                                    


                    @media screen and (max-width:480px) {
                      .atomicat-container-0af8475>.a-o-cont {
                        padding-right: 0;
                        padding-left: 0
                      }
                    }

                    .atomicat-container-0af8475>.a-o-cont>.a-cont {
                      flex-direction: column
                    }

                    .a-b-cont .atomicat-container-0af8475.a-b-o-cont {
                      border-color: #c5c5c5;
                      border-image: unset 1;
                      border-style: solid;
                      background-size: cover;
                      background-repeat: no-repeat;
                      background-position: center;
                      width: 100%
                    }

                    @media screen and (max-width:480px) {
                      .a-b-cont .atomicat-container-0af8475.a-b-o-cont {
                        border-bottom-right-radius: 20px;
                        border-top-width: 3px;
                        border-bottom-left-radius: 20px;
                        border-bottom-width: 3px;
                        border-left-width: 3px;
                        border-right-width: 3px;
                        border-top-right-radius: 20px;
                        border-top-left-radius: 20px;
                        width: 100%
                      }
                    }
                  


                          .atomicat-container-a9e7c2b>.a-o-cont {
                            padding-top: 0;
                            padding-right: 0;
                            padding-bottom: 0;
                            padding-left: 0
                          }

                          .atomicat-container-a9e7c2b>.a-o-cont>.a-cont {
                            column-gap: 32px;
                            flex-direction: row;
                            row-gap: 32px
                          }

                          .a-b-cont .atomicat-container-a9e7c2b.a-b-o-cont {
                            background-size: cover;
                            background-repeat: no-repeat;
                            background-position: center;
                            width: 100%
                          }

                          @media screen and (max-width:480px) {
                            .a-b-cont .atomicat-container-a9e7c2b.a-b-o-cont {
                              border-bottom-left-radius: 35px;
                              border-top-left-radius: 35px;
                              border-bottom-right-radius: 35px;
                              border-top-right-radius: 35px;
                              background: #fff
                            }
                          }
                        


                                .atomicat-container-08f2c81>.a-o-cont {
                                  padding-top: 0;
                                  padding-right: 0;
                                  padding-bottom: 0;
                                  padding-left: 0
                                }

                                .atomicat-container-08f2c81>.a-o-cont>.a-cont {
                                  flex-direction: column
                                }

                                @media screen and (max-width:480px) {
                                  .atomicat-container-08f2c81>.a-o-cont>.a-cont {
                                    max-width: 1600px
                                  }
                                }

                                .a-b-cont .atomicat-container-08f2c81.a-b-o-cont {
                                  border-bottom-width: 1px;
                                  border-left-width: 1px;
                                  border-top-width: 1px;
                                  border-bottom-right-radius: 35px;
                                  border-right-width: 1px;
                                  border-top-right-radius: 35px;
                                  border-style: hidden;
                                  border-color: unset;
                                  border-image: linear-gradient(131deg, rgba(243, 122, 1, 1) 0%, rgba(237, 103, 4, 1) 100%) 1;
                                  border-bottom-left-radius: 35px;
                                  border-top-left-radius: 35px;
                                  background: rgba(253, 226, 185, .35);
                                  background-size: cover;
                                  background-repeat: no-repeat;
                                  background-position: center;
                                  width: 100%
                                }

                                @media screen and (max-width:480px) {
                                  .a-b-cont .atomicat-container-08f2c81.a-b-o-cont {
                                    border-bottom-width: 2px;
                                    order: 0;
                                    border-left-width: 2px;
                                    border-top-width: 2px;
                                    border-bottom-right-radius: 20px;
                                    border-right-width: 2px;
                                    border-top-right-radius: 20px;
                                    border-bottom-left-radius: 20px;
                                    border-top-left-radius: 20px;
                                    background: #fff
                                  }
                                }
                              


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-511fd16 {
                                          order: 0
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-511fd16 h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-511fd16 h3 {
                                        text-transform: none;
                                        background-image: unset;
                                        font-size: 20px;
                                        color: #000;
                                        text-align: center
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-511fd16 h3 {
                                          font-size: 31px;
                                          font-weight: 900
                                        }
                                      }

                                      .a-c-cont-511fd16>.a-e-cont {
                                        margin-top: 20px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-511fd16>.a-e-cont {
                                          margin-top: 25px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-81f6a3a {
                                          order: 1
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-81f6a3a h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-81f6a3a h3 {
                                        text-align: center;
                                        background-image: unset;
                                        color: #5d5d5d;
                                        font-size: 14px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-81f6a3a h3 {
                                          font-weight: 900;
                                          font-size: 20px
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-81f6a3a>.a-e-cont {
                                          margin-bottom: 10px;
                                          margin-top: 0
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-2ed4677 {
                                          order: 2
                                        }
                                      }

                                      .atomicat-image-2ed4677 img {
                                        width: 66%;
                                        height: 100%
                                      }

                                      @media screen and (max-width:480px) {
                                        .atomicat-image-2ed4677 img {
                                          width: 93%
                                        }
                                      }

                                      .a-c-cont-2ed4677>.a-e-cont {
                                        margin-top: 24px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-2ed4677>.a-e-cont {
                                          padding-bottom: 0;
                                          margin-right: 10px;
                                          margin-top: 0
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-3ddaedb {
                                          order: 2
                                        }
                                      }

                                      .atomicat-image-3ddaedb img {
                                        width: 66%;
                                        height: 100%
                                      }

                                      @media screen and (max-width:480px) {
                                        .atomicat-image-3ddaedb img {
                                          width: 55%
                                        }
                                      }

                                      .a-c-cont-3ddaedb>.a-e-cont {
                                        margin-top: 24px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-3ddaedb>.a-e-cont {
                                          margin-bottom: 0;
                                          margin-top: 0;
                                          padding-top: 0;
                                          padding-right: 0
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-20c51fa {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-20c51fa .a-divider-w .a-divider-s {
                                        border: 1px solid #c2c2c2
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-20c51fa .a-divider-w .a-divider-s {
                                          width: 92%;
                                          margin-left: auto;
                                          margin-right: auto
                                        }
                                      }

                                      @media screen and (max-width:480px) {

                                        .a-e-cont.atomicat-divider-20c51fa .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:after,
                                        .a-e-cont.atomicat-divider-20c51fa .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:before,
                                        .a-e-cont.atomicat-divider-20c51fa .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-end:before,
                                        .a-e-cont.atomicat-divider-20c51fa .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-start:after {
                                          width: 92%
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-20c51fa .a-divider-w {
                                          padding-bottom: 7px;
                                          padding-top: 7px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-5260658 {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-5260658 h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-5260658 h3 {
                                        font-size: large;
                                        background-image: unset;
                                        text-align: center;
                                        color: #000;
                                        text-transform: uppercase
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-5260658 h3 {
                                          font-size: 17px;
                                          font-weight: 900
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-09efc02 {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-09efc02 .a-divider-w .a-divider-s {
                                        border: 1px solid #c2c2c2
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-09efc02 .a-divider-w .a-divider-s {
                                          width: 92%;
                                          margin-left: auto;
                                          margin-right: auto
                                        }
                                      }

                                      @media screen and (max-width:480px) {

                                        .a-e-cont.atomicat-divider-09efc02 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:after,
                                        .a-e-cont.atomicat-divider-09efc02 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:before,
                                        .a-e-cont.atomicat-divider-09efc02 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-end:before,
                                        .a-e-cont.atomicat-divider-09efc02 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-start:after {
                                          width: 92%
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-09efc02 .a-divider-w {
                                          padding-bottom: 7px;
                                          padding-top: 7px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-682319b {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-682319b h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-682319b h3 {
                                        background-image: unset;
                                        text-align: center;
                                        color: #000;
                                        text-transform: uppercase;
                                        font-size: large
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-682319b h3 {
                                          font-size: 17px;
                                          font-weight: 900
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-5db5494 {
                                          order: 7
                                        }
                                      }

                                      .a-btn-5db5494.a-e-cont .a-btn:hover {
                                        color: #000;
                                        animation-play-state: paused;
                                        background: linear-gradient(180deg, #ffe100 33%, #fdcd17 56%)
                                      }

                                      .a-btn-5db5494.a-e-cont .a-btn {
                                        font-size: 14px;
                                        border-bottom-right-radius: 100px;
                                        padding-bottom: 16px;
                                        gap: 11px;
                                        padding-left: 32px;
                                        background: linear-gradient(180deg, #ffe100 33%, #fdcd17 56%);
                                        border-bottom-left-radius: 100px;
                                        color: #000;
                                        border-top-left-radius: 100px;
                                        align-self: center;
                                        font-family: "Nunito Sans", sans-serif;
                                        padding-right: 32px;
                                        width: 83%;
                                        padding-top: 16px;
                                        border-top-right-radius: 100px;
                                        border-color: #d6a900;
                                        border-image: unset 1;
                                        border-style: solid
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-btn-5db5494.a-e-cont .a-btn {
                                          font-size: 24px;
                                          border-bottom-right-radius: 5px;
                                          padding-bottom: 15px;
                                          gap: 15px;
                                          padding-left: 0;
                                          font-weight: 900;
                                          border-bottom-left-radius: 5px;
                                          border-top-left-radius: 5px;
                                          align-self: center;
                                          border-left-width: 1px;
                                          border-right-width: 1px;
                                          border-bottom-width: 1px;
                                          border-top-width: 1px;
                                          padding-right: 0;
                                          width: 100%;
                                          padding-top: 15px;
                                          border-top-right-radius: 5px
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-btn-5db5494.a-e-cont .a-btn svg {
                                          height: 20px
                                        }
                                      }

                                      .a-c-cont-5db5494>.a-e-cont {
                                        border-top-left-radius: 0;
                                        margin-bottom: 20px;
                                        border-style: hidden;
                                        margin-top: 20px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-5db5494>.a-e-cont {
                                          margin-left: 20px;
                                          margin-right: 20px;
                                          margin-bottom: 15px;
                                          margin-top: 20px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-90ae4e2 {
                                          order: 12
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-90ae4e2 p:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-90ae4e2 p {
                                        text-align: center;
                                        font-family: "Nunito Sans", sans-serif
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-90ae4e2 p {
                                          text-align: center;
                                          font-weight: 900;
                                          font-size: 17px
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-90ae4e2>.a-e-cont {
                                          margin-top: 10px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-41c60bf {
                                          order: 12
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-41c60bf p:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-41c60bf p {
                                        text-align: center;
                                        font-family: "Nunito Sans", sans-serif
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-41c60bf p {
                                          font-size: 17px;
                                          font-weight: 900;
                                          text-align: center
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-41c60bf>.a-e-cont {
                                          margin-bottom: 25px;
                                          margin-top: 5px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-8c1f5fb {
                                          order: 11
                                        }
                                      }

                                      .atomicat-image-8c1f5fb img {
                                        width: 223px
                                      }

                                      @media screen and (max-width:480px) {
                                        .atomicat-image-8c1f5fb img {
                                          width: 206px
                                        }
                                      }

                                      .a-c-cont-8c1f5fb>.a-e-cont {
                                        padding-right: 24px;
                                        padding-left: 24px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-8c1f5fb>.a-e-cont {
                                          margin-bottom: 15px
                                        }
                                      }
                                    


                    @media screen and (max-width:480px) {
                      .atomicat-container-d89fd23>.a-o-cont {
                        padding-right: 0;
                        padding-left: 0
                      }
                    }

                    .atomicat-container-d89fd23>.a-o-cont>.a-cont {
                      flex-direction: column
                    }

                    .a-b-cont .atomicat-container-d89fd23.a-b-o-cont {
                      border-color: #c5c5c5;
                      border-image: unset 1;
                      border-style: solid;
                      background-size: cover;
                      background-repeat: no-repeat;
                      background-position: center;
                      width: 100%
                    }

                    @media screen and (max-width:480px) {
                      .a-b-cont .atomicat-container-d89fd23.a-b-o-cont {
                        border-bottom-right-radius: 20px;
                        border-top-width: 3px;
                        border-bottom-left-radius: 20px;
                        border-bottom-width: 3px;
                        border-left-width: 3px;
                        border-right-width: 3px;
                        border-top-right-radius: 20px;
                        border-top-left-radius: 20px;
                        width: 100%
                      }
                    }
                  


                          .atomicat-container-dcd4c4b>.a-o-cont {
                            padding-top: 0;
                            padding-right: 0;
                            padding-bottom: 0;
                            padding-left: 0
                          }

                          .atomicat-container-dcd4c4b>.a-o-cont>.a-cont {
                            column-gap: 32px;
                            flex-direction: row;
                            row-gap: 32px
                          }

                          .a-b-cont .atomicat-container-dcd4c4b.a-b-o-cont {
                            background-size: cover;
                            background-repeat: no-repeat;
                            background-position: center;
                            width: 100%
                          }

                          @media screen and (max-width:480px) {
                            .a-b-cont .atomicat-container-dcd4c4b.a-b-o-cont {
                              border-bottom-left-radius: 35px;
                              border-top-left-radius: 35px;
                              border-bottom-right-radius: 35px;
                              border-top-right-radius: 35px;
                              background: #fff
                            }
                          }
                        


                                .atomicat-container-5703e3e>.a-o-cont {
                                  padding-top: 0;
                                  padding-right: 0;
                                  padding-bottom: 0;
                                  padding-left: 0
                                }

                                .atomicat-container-5703e3e>.a-o-cont>.a-cont {
                                  flex-direction: column
                                }

                                @media screen and (max-width:480px) {
                                  .atomicat-container-5703e3e>.a-o-cont>.a-cont {
                                    max-width: 1600px
                                  }
                                }

                                .a-b-cont .atomicat-container-5703e3e.a-b-o-cont {
                                  border-bottom-width: 1px;
                                  border-left-width: 1px;
                                  border-top-width: 1px;
                                  border-bottom-right-radius: 35px;
                                  border-right-width: 1px;
                                  border-top-right-radius: 35px;
                                  border-style: hidden;
                                  border-color: unset;
                                  border-image: linear-gradient(131deg, rgba(243, 122, 1, 1) 0%, rgba(237, 103, 4, 1) 100%) 1;
                                  border-bottom-left-radius: 35px;
                                  border-top-left-radius: 35px;
                                  background: rgba(253, 226, 185, .35);
                                  background-size: cover;
                                  background-repeat: no-repeat;
                                  background-position: center;
                                  width: 100%
                                }

                                @media screen and (max-width:480px) {
                                  .a-b-cont .atomicat-container-5703e3e.a-b-o-cont {
                                    border-bottom-width: 2px;
                                    order: 0;
                                    border-left-width: 2px;
                                    border-top-width: 2px;
                                    border-bottom-right-radius: 20px;
                                    border-right-width: 2px;
                                    border-top-right-radius: 20px;
                                    border-bottom-left-radius: 20px;
                                    border-top-left-radius: 20px;
                                    background: #fff
                                  }
                                }
                              


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-0290eb1 {
                                          order: 0
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-0290eb1 h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-0290eb1 h3 {
                                        text-transform: none;
                                        background-image: unset;
                                        font-size: 20px;
                                        color: #000;
                                        text-align: center
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-0290eb1 h3 {
                                          font-size: 31px;
                                          font-weight: 900
                                        }
                                      }

                                      .a-c-cont-0290eb1>.a-e-cont {
                                        margin-top: 20px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-0290eb1>.a-e-cont {
                                          margin-top: 25px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-18ab08a {
                                          order: 1
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-18ab08a h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-18ab08a h3 {
                                        text-align: center;
                                        background-image: unset;
                                        color: #5d5d5d;
                                        font-size: 14px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-18ab08a h3 {
                                          font-weight: 900;
                                          font-size: 20px
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-18ab08a>.a-e-cont {
                                          margin-bottom: 10px;
                                          margin-top: 0
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-15eeaca {
                                          order: 2
                                        }
                                      }

                                      .atomicat-image-15eeaca img {
                                        width: 66%;
                                        height: 100%
                                      }

                                      @media screen and (max-width:480px) {
                                        .atomicat-image-15eeaca img {
                                          width: 84%
                                        }
                                      }

                                      .a-c-cont-15eeaca>.a-e-cont {
                                        margin-top: 24px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-15eeaca>.a-e-cont {
                                          padding-bottom: 0;
                                          margin-right: 10px;
                                          margin-top: 0
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-ccca873 {
                                          order: 2
                                        }
                                      }

                                      .atomicat-image-ccca873 img {
                                        width: 66%;
                                        height: 100%
                                      }

                                      @media screen and (max-width:480px) {
                                        .atomicat-image-ccca873 img {
                                          width: 55%
                                        }
                                      }

                                      .a-c-cont-ccca873>.a-e-cont {
                                        margin-top: 24px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-ccca873>.a-e-cont {
                                          margin-bottom: 0;
                                          margin-top: 0;
                                          padding-top: 0;
                                          padding-right: 0
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-7af7168 {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-7af7168 .a-divider-w .a-divider-s {
                                        border: 1px solid #c2c2c2
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-7af7168 .a-divider-w .a-divider-s {
                                          width: 92%;
                                          margin-left: auto;
                                          margin-right: auto
                                        }
                                      }

                                      @media screen and (max-width:480px) {

                                        .a-e-cont.atomicat-divider-7af7168 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:after,
                                        .a-e-cont.atomicat-divider-7af7168 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:before,
                                        .a-e-cont.atomicat-divider-7af7168 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-end:before,
                                        .a-e-cont.atomicat-divider-7af7168 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-start:after {
                                          width: 92%
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-7af7168 .a-divider-w {
                                          padding-bottom: 7px;
                                          padding-top: 7px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-0f3e852 {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-0f3e852 h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-0f3e852 h3 {
                                        font-size: large;
                                        background-image: unset;
                                        text-align: center;
                                        color: #000;
                                        text-transform: uppercase
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-0f3e852 h3 {
                                          font-size: 17px;
                                          font-weight: 900
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-99390f9 {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-99390f9 .a-divider-w .a-divider-s {
                                        border: 1px solid #c2c2c2
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-99390f9 .a-divider-w .a-divider-s {
                                          width: 92%;
                                          margin-left: auto;
                                          margin-right: auto
                                        }
                                      }

                                      @media screen and (max-width:480px) {

                                        .a-e-cont.atomicat-divider-99390f9 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:after,
                                        .a-e-cont.atomicat-divider-99390f9 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:before,
                                        .a-e-cont.atomicat-divider-99390f9 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-end:before,
                                        .a-e-cont.atomicat-divider-99390f9 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-start:after {
                                          width: 92%
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-99390f9 .a-divider-w {
                                          padding-bottom: 7px;
                                          padding-top: 7px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-9199979 {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-9199979 h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-9199979 h3 {
                                        background-image: unset;
                                        text-align: center;
                                        color: #000;
                                        text-transform: uppercase;
                                        font-size: large
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-9199979 h3 {
                                          font-size: 17px;
                                          font-weight: 900
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-3260b8b {
                                          order: 7
                                        }
                                      }

                                      .a-btn-3260b8b.a-e-cont .a-btn:hover {
                                        color: #000;
                                        animation-play-state: paused;
                                        background: linear-gradient(180deg, #ffe100 33%, #fdcd17 56%)
                                      }

                                      .a-btn-3260b8b.a-e-cont .a-btn {
                                        font-size: 14px;
                                        border-bottom-right-radius: 100px;
                                        padding-bottom: 16px;
                                        gap: 11px;
                                        padding-left: 32px;
                                        background: linear-gradient(180deg, #ffe100 33%, #fdcd17 56%);
                                        border-bottom-left-radius: 100px;
                                        color: #000;
                                        border-top-left-radius: 100px;
                                        align-self: center;
                                        font-family: "Nunito Sans", sans-serif;
                                        padding-right: 32px;
                                        width: 83%;
                                        padding-top: 16px;
                                        border-top-right-radius: 100px;
                                        border-color: #d6a900;
                                        border-image: unset 1;
                                        border-style: solid
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-btn-3260b8b.a-e-cont .a-btn {
                                          font-size: 24px;
                                          border-bottom-right-radius: 5px;
                                          padding-bottom: 15px;
                                          gap: 15px;
                                          padding-left: 0;
                                          font-weight: 900;
                                          border-bottom-left-radius: 5px;
                                          border-top-left-radius: 5px;
                                          align-self: center;
                                          border-left-width: 1px;
                                          border-right-width: 1px;
                                          border-bottom-width: 1px;
                                          border-top-width: 1px;
                                          padding-right: 0;
                                          width: 100%;
                                          padding-top: 15px;
                                          border-top-right-radius: 5px
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-btn-3260b8b.a-e-cont .a-btn svg {
                                          height: 20px
                                        }
                                      }

                                      .a-c-cont-3260b8b>.a-e-cont {
                                        border-top-left-radius: 0;
                                        margin-bottom: 20px;
                                        border-style: hidden;
                                        margin-top: 20px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-3260b8b>.a-e-cont {
                                          margin-left: 20px;
                                          margin-right: 20px;
                                          margin-bottom: 15px;
                                          margin-top: 20px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-cec5f60 {
                                          order: 12
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-cec5f60 p:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-cec5f60 p {
                                        text-align: center;
                                        font-family: "Nunito Sans", sans-serif
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-cec5f60 p {
                                          text-align: center;
                                          font-weight: 900;
                                          font-size: 17px
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-cec5f60>.a-e-cont {
                                          margin-top: 10px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-5a63f8f {
                                          order: 12
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-5a63f8f p:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-5a63f8f p {
                                        text-align: center;
                                        font-family: "Nunito Sans", sans-serif
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-5a63f8f p {
                                          font-size: 17px;
                                          font-weight: 900;
                                          text-align: center
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-5a63f8f>.a-e-cont {
                                          margin-bottom: 25px;
                                          margin-top: 5px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-2e26e75 {
                                          order: 11
                                        }
                                      }

                                      .atomicat-image-2e26e75 img {
                                        width: 223px
                                      }

                                      @media screen and (max-width:480px) {
                                        .atomicat-image-2e26e75 img {
                                          width: 206px
                                        }
                                      }

                                      .a-c-cont-2e26e75>.a-e-cont {
                                        padding-right: 24px;
                                        padding-left: 24px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-2e26e75>.a-e-cont {
                                          margin-bottom: 15px
                                        }
                                      }
                                    


        .atomicat-container-1144ec9>.a-o-cont {
          padding-top: 48px;
          padding-right: 150px;
          padding-bottom: 48px
        }

        @media screen and (max-width:1024px) {
          .atomicat-container-1144ec9>.a-o-cont {
            padding-right: 40px
          }
        }

        @media screen and (max-width:480px) {
          .atomicat-container-1144ec9>.a-o-cont {
            padding-right: 0
          }
        }

        .atomicat-container-1144ec9>.a-o-cont>.a-cont {
          align-items: center;
          column-gap: 36px;
          flex-direction: row;
          row-gap: 36px
        }

        @media screen and (max-width:480px) {
          .atomicat-container-1144ec9>.a-o-cont>.a-cont {
            min-height: 0
          }
        }

        .a-b-cont .atomicat-container-1144ec9.a-b-o-cont {
          border-style: solid;
          border-image: linear-gradient(304deg, rgba(0, 81, 174, 1) 0%, rgba(105, 163, 255, 1) 100%) 1;
          border-color: unset;
          background: rgba(126, 217, 87, .8);
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center
        }

        @media screen and (max-width:480px) {
          .a-b-cont .atomicat-container-1144ec9.a-b-o-cont {
            margin-top: 15px;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
            border-bottom-right-radius: 15px;
            border-bottom-left-radius: 15px;
            border-top-width: 0;
            border-right-width: 0;
            border-bottom-width: 0;
            border-left-width: 0;
            min-height: 0;
            background: #e0ebd9;
            width: 91%
          }
        }

        @media screen and (max-width:480px) {
          .atomicat-container-1144ec9>.a-o-cont {
            min-height: 0
          }
        }
      


              .atomicat-container-74b2a1f>.a-o-cont>.a-cont {
                flex-direction: column
              }

              .a-b-cont .atomicat-container-74b2a1f.a-b-o-cont {
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
                width: 75%
              }

              @media screen and (max-width:480px) {
                .a-b-cont .atomicat-container-74b2a1f.a-b-o-cont {
                  margin-top: -32px;
                  width: 100%
                }
              }
            


                    .atomicat-image-8235b9f img {
                      width: 200px
                    }

                    @media screen and (max-width:480px) {
                      .atomicat-image-8235b9f img {
                        width: 127px
                      }
                    }

                    .atomicat-image-8235b9f {
                      text-align: right
                    }

                    @media screen and (max-width:480px) {
                      .atomicat-image-8235b9f {
                        text-align: center
                      }
                    }

                    @media screen and (max-width:480px) {
                      .a-c-cont-8235b9f>.a-e-cont {
                        margin-top: 7px
                      }
                    }
                  


              .atomicat-container-ad6f3a0>.a-o-cont>.a-cont {
                flex-direction: column
              }

              .a-b-cont .atomicat-container-ad6f3a0.a-b-o-cont {
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
                width: 100%
              }

              @media screen and (max-width:480px) {
                .a-b-cont .atomicat-container-ad6f3a0.a-b-o-cont {
                  width: 100%
                }
              }
            


                    .a-e-cont.atomicat-heading-title-a36afb4 p:hover {
                      -webkit-text-fill-color: unset
                    }

                    .a-e-cont.atomicat-heading-title-a36afb4 p {
                      background-image: unset;
                      color: #000;
                      font-family: "Nunito Sans", sans-serif;
                      font-size: 40px;
                      text-align: left;
                      font-weight: 700;
                      line-height: 42px
                    }

                    @media screen and (max-width:480px) {
                      .a-e-cont.atomicat-heading-title-a36afb4 p {
                        font-size: 26px;
                        text-align: center;
                        font-weight: 900
                      }
                    }

                    .a-c-cont-a36afb4>.a-e-cont {
                      margin-bottom: 12px
                    }

                    @media screen and (max-width:480px) {
                      .a-c-cont-a36afb4>.a-e-cont {
                        margin-left: 20px;
                        margin-right: 20px;
                        margin-top: -20px
                      }
                    }
                  


                    .a-e-cont.atomicat-heading-title-b3befd6 p:hover {
                      -webkit-text-fill-color: unset
                    }

                    .a-e-cont.atomicat-heading-title-b3befd6 p {
                      background-image: unset;
                      color: #000;
                      font-size: 20px;
                      line-height: 22px;
                      text-align: left;
                      font-family: "Nunito Sans", sans-serif
                    }

                    @media screen and (max-width:480px) {
                      .a-e-cont.atomicat-heading-title-b3befd6 p {
                        font-size: 18px;
                        line-height: 22px;
                        text-align: center;
                        font-weight: 600
                      }
                    }

                    @media screen and (max-width:480px) {
                      .a-c-cont-b3befd6>.a-e-cont {
                        margin-left: 20px;
                        margin-right: 20px
                      }
                    }
                  


        .atomicat-container-1128cfc>.a-o-cont>.a-cont {
          flex-direction: column
        }

        .a-b-cont .atomicat-container-1128cfc.a-b-o-cont {
          margin-top: 50px;
          margin-bottom: 50px;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center
        }
      


              .a-e-cont.atomicat-heading-title-edf57d2 p:hover {
                -webkit-text-fill-color: unset
              }

              .a-e-cont.atomicat-heading-title-edf57d2 p {
                font-size: 40px;
                font-weight: 800;
                text-align: center;
                text-transform: capitalize
              }

              @media screen and (max-width:480px) {
                .a-e-cont.atomicat-heading-title-edf57d2 p {
                  font-size: 25px;
                  font-weight: 900;
                  letter-spacing: 0;
                  line-height: 1.3em;
                  text-align: center
                }
              }

              @media screen and (max-width:480px) {
                .a-c-cont-edf57d2>.a-e-cont {
                  margin-top: 25px
                }
              }
            


        .atomicat-container-30f0427>.a-o-cont {
          padding-top: 0;
          padding-right: 6%;
          padding-bottom: 0;
          padding-left: 6%
        }

        .atomicat-container-30f0427>.a-o-cont>.a-cont {
          flex-direction: row
        }

        @media screen and (max-width:480px) {
          .atomicat-container-30f0427>.a-o-cont>.a-cont {
            max-width: 1600px
          }
        }

        .a-b-cont .atomicat-container-30f0427.a-b-o-cont {
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center
        }
      


              .atomicat-container-6c5d85a>.a-o-cont>.a-cont {
                flex-direction: column;
                justify-content: center
              }

              .a-b-cont .atomicat-container-6c5d85a.a-b-o-cont {
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
                width: 100%
              }

              @media screen and (max-width:480px) {
                .a-b-cont .atomicat-container-6c5d85a.a-b-o-cont {
                  width: 100%
                }
              }
            


                    .atomicat-container-28c11c3>.a-o-cont>.a-cont {
                      flex-direction: column;
                      gap: 32px
                    }

                    .a-b-cont .atomicat-container-28c11c3.a-b-o-cont {
                      margin-top: 32px;
                      background-size: cover;
                      background-repeat: no-repeat;
                      background-position: center;
                      width: 100%
                    }
                  


                          .atomicat-container-59b3bad>.a-o-cont {
                            padding-top: 32px;
                            padding-right: 32px;
                            padding-bottom: 32px;
                            padding-left: 32px
                          }

                          .atomicat-container-59b3bad>.a-o-cont>.a-cont {
                            align-items: center;
                            flex-direction: column;
                            justify-content: center
                          }

                          .a-b-cont .atomicat-container-59b3bad.a-b-o-cont {
                            border-bottom-left-radius: 20px;
                            border-top-right-radius: 20px;
                            border-top-left-radius: 20px;
                            border-bottom-right-radius: 20px;
                            box-shadow: 0 10px 32px 0 rgba(103, 101, 101, .25);
                            background-size: cover;
                            background-repeat: no-repeat;
                            background-position: center;
                            width: 50%
                          }

                          @media screen and (max-width:1024px) {
                            .a-b-cont .atomicat-container-59b3bad.a-b-o-cont {
                              width: 75%
                            }
                          }

                          @media screen and (max-width:480px) {
                            .a-b-cont .atomicat-container-59b3bad.a-b-o-cont {
                              margin-top: -30px;
                              width: 100%
                            }
                          }
                        


                                @media screen and (max-width:480px) {
                                  .a-c-cont-5c6ef89 {
                                    order: 0
                                  }
                                }

                                .atomicat-image-5c6ef89 img {
                                  height: 96px;
                                  width: 96px
                                }

                                @media screen and (max-width:480px) {
                                  .atomicat-image-5c6ef89 img {
                                    height: 150px;
                                    width: 150px
                                  }
                                }

                                .atomicat-image-5c6ef89 {
                                  text-align: center
                                }

                                @media screen and (max-width:480px) {
                                  .atomicat-image-5c6ef89 {
                                    text-align: center
                                  }
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-5c6ef89>.a-e-cont {
                                    border-top-right-radius: 50px;
                                    border-bottom-left-radius: 50px;
                                    border-top-left-radius: 50px;
                                    border-bottom-right-radius: 50px
                                  }
                                }
                              


                                @media screen and (max-width:480px) {
                                  .a-c-cont-2b652f9 {
                                    order: 2
                                  }
                                }

                                .a-e-cont.atomicat-heading-title-2b652f9 p:hover {
                                  -webkit-text-fill-color: unset
                                }

                                .a-e-cont.atomicat-heading-title-2b652f9 p {
                                  font-style: italic;
                                  text-align: center;
                                  font-size: medium;
                                  font-weight: 500;
                                  font-family: "Nunito Sans", sans-serif
                                }

                                @media screen and (max-width:480px) {
                                  .a-e-cont.atomicat-heading-title-2b652f9 p {
                                    line-height: 22px;
                                    letter-spacing: 0;
                                    font-size: 18px
                                  }
                                }

                                .a-c-cont-2b652f9>.a-e-cont {
                                  padding-top: 12px
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-2b652f9>.a-e-cont {
                                    margin-top: 10px
                                  }
                                }
                              


                                @media screen and (max-width:480px) {
                                  .a-c-cont-e75fba0 {
                                    order: 1
                                  }
                                }

                                .a-e-cont.atomicat-heading-title-e75fba0 p:hover {
                                  -webkit-text-fill-color: unset
                                }

                                .a-e-cont.atomicat-heading-title-e75fba0 p {
                                  font-size: medium;
                                  text-align: center;
                                  font-weight: 800
                                }

                                @media screen and (max-width:480px) {
                                  .a-e-cont.atomicat-heading-title-e75fba0 p {
                                    font-size: 22px;
                                    letter-spacing: 0;
                                    line-height: 22px
                                  }
                                }

                                .a-c-cont-e75fba0>.a-e-cont {
                                  padding-top: 12px
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-e75fba0>.a-e-cont {
                                    margin-top: 10px
                                  }
                                }
                              


                          .atomicat-container-9853462>.a-o-cont {
                            padding-top: 32px;
                            padding-right: 32px;
                            padding-bottom: 32px;
                            padding-left: 32px
                          }

                          .atomicat-container-9853462>.a-o-cont>.a-cont {
                            align-items: center;
                            flex-direction: column;
                            justify-content: center
                          }

                          .a-b-cont .atomicat-container-9853462.a-b-o-cont {
                            border-top-right-radius: 20px;
                            border-top-left-radius: 20px;
                            border-bottom-right-radius: 20px;
                            border-bottom-left-radius: 20px;
                            box-shadow: 0 10px 32px 0 rgba(103, 101, 101, .25);
                            background-size: cover;
                            background-repeat: no-repeat;
                            background-position: center;
                            width: 50%
                          }

                          @media screen and (max-width:1024px) {
                            .a-b-cont .atomicat-container-9853462.a-b-o-cont {
                              width: 75%
                            }
                          }

                          @media screen and (max-width:480px) {
                            .a-b-cont .atomicat-container-9853462.a-b-o-cont {
                              margin-top: 0;
                              width: 100%
                            }
                          }
                        


                                @media screen and (max-width:480px) {
                                  .a-c-cont-5a70d96 {
                                    order: 0
                                  }
                                }

                                .atomicat-image-5a70d96 img {
                                  height: 96px;
                                  width: 96px;
                                  border-top-left-radius: 50%;
                                  border-top-right-radius: 50%;
                                  border-bottom-right-radius: 50%;
                                  border-bottom-left-radius: 50%
                                }

                                @media screen and (max-width:480px) {
                                  .atomicat-image-5a70d96 img {
                                    height: 150px;
                                    width: 150px;
                                    border-top-left-radius: 80px;
                                    border-top-right-radius: 80px;
                                    border-bottom-right-radius: 80px;
                                    border-bottom-left-radius: 80px
                                  }
                                }

                                .atomicat-image-5a70d96 {
                                  text-align: center
                                }

                                @media screen and (max-width:480px) {
                                  .atomicat-image-5a70d96 {
                                    text-align: center
                                  }
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-5a70d96>.a-e-cont {
                                    border-bottom-left-radius: 50px;
                                    border-bottom-right-radius: 50px;
                                    border-top-left-radius: 50px;
                                    border-top-right-radius: 50px
                                  }
                                }
                              


                                @media screen and (max-width:480px) {
                                  .a-c-cont-6e0af03 {
                                    order: 2
                                  }
                                }

                                .a-e-cont.atomicat-heading-title-6e0af03 p:hover {
                                  -webkit-text-fill-color: unset
                                }

                                .a-e-cont.atomicat-heading-title-6e0af03 p {
                                  font-size: medium;
                                  text-align: center;
                                  font-weight: 500;
                                  font-style: italic
                                }

                                @media screen and (max-width:480px) {
                                  .a-e-cont.atomicat-heading-title-6e0af03 p {
                                    line-height: 22px;
                                    font-size: 18px;
                                    letter-spacing: 0
                                  }
                                }

                                .a-c-cont-6e0af03>.a-e-cont {
                                  padding-top: 12px
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-6e0af03>.a-e-cont {
                                    margin-top: 10px
                                  }
                                }
                              


                                @media screen and (max-width:480px) {
                                  .a-c-cont-afb71da {
                                    order: 1
                                  }
                                }

                                .a-e-cont.atomicat-heading-title-afb71da p:hover {
                                  -webkit-text-fill-color: unset
                                }

                                .a-e-cont.atomicat-heading-title-afb71da p {
                                  font-weight: 800;
                                  text-align: center;
                                  font-size: medium
                                }

                                @media screen and (max-width:480px) {
                                  .a-e-cont.atomicat-heading-title-afb71da p {
                                    line-height: 22px;
                                    letter-spacing: 0;
                                    font-size: 22px
                                  }
                                }

                                .a-c-cont-afb71da>.a-e-cont {
                                  padding-top: 12px
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-afb71da>.a-e-cont {
                                    margin-top: 10px
                                  }
                                }
                              


                          .atomicat-container-0800961>.a-o-cont {
                            padding-top: 32px;
                            padding-right: 32px;
                            padding-bottom: 32px;
                            padding-left: 32px
                          }

                          .atomicat-container-0800961>.a-o-cont>.a-cont {
                            align-items: center;
                            flex-direction: column;
                            justify-content: center
                          }

                          .a-b-cont .atomicat-container-0800961.a-b-o-cont {
                            border-bottom-left-radius: 20px;
                            border-bottom-right-radius: 20px;
                            border-top-left-radius: 20px;
                            border-top-right-radius: 20px;
                            box-shadow: 0 10px 32px 0 rgba(103, 101, 101, .25);
                            background-size: cover;
                            background-repeat: no-repeat;
                            background-position: center;
                            width: 50%
                          }

                          @media screen and (max-width:1024px) {
                            .a-b-cont .atomicat-container-0800961.a-b-o-cont {
                              width: 75%
                            }
                          }

                          @media screen and (max-width:480px) {
                            .a-b-cont .atomicat-container-0800961.a-b-o-cont {
                              margin-top: 0;
                              width: 100%
                            }
                          }
                        


                                @media screen and (max-width:480px) {
                                  .a-c-cont-4f521cc {
                                    order: 0
                                  }
                                }

                                .atomicat-image-4f521cc img {
                                  width: 96px;
                                  height: 96px;
                                  border-top-left-radius: 50%;
                                  border-top-right-radius: 50%;
                                  border-bottom-right-radius: 50%;
                                  border-bottom-left-radius: 50%
                                }

                                @media screen and (max-width:480px) {
                                  .atomicat-image-4f521cc img {
                                    width: 150px;
                                    height: 150px;
                                    border-top-left-radius: 80px;
                                    border-top-right-radius: 80px;
                                    border-bottom-right-radius: 80px;
                                    border-bottom-left-radius: 80px
                                  }
                                }

                                .atomicat-image-4f521cc {
                                  text-align: center
                                }

                                @media screen and (max-width:480px) {
                                  .atomicat-image-4f521cc {
                                    text-align: center
                                  }
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-4f521cc>.a-e-cont {
                                    border-bottom-left-radius: 50px;
                                    border-bottom-right-radius: 50px;
                                    border-top-left-radius: 50px;
                                    border-top-right-radius: 50px
                                  }
                                }
                              


                                @media screen and (max-width:480px) {
                                  .a-c-cont-2f28ee1 {
                                    order: 2
                                  }
                                }

                                .a-e-cont.atomicat-heading-title-2f28ee1 p:hover {
                                  -webkit-text-fill-color: unset
                                }

                                .a-e-cont.atomicat-heading-title-2f28ee1 p {
                                  font-size: medium;
                                  text-align: center;
                                  font-style: italic;
                                  font-weight: 500
                                }

                                @media screen and (max-width:480px) {
                                  .a-e-cont.atomicat-heading-title-2f28ee1 p {
                                    font-size: 18px;
                                    line-height: 22px;
                                    letter-spacing: 0
                                  }
                                }

                                .a-c-cont-2f28ee1>.a-e-cont {
                                  padding-top: 12px
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-2f28ee1>.a-e-cont {
                                    margin-top: 10px
                                  }
                                }
                              


                                @media screen and (max-width:480px) {
                                  .a-c-cont-eb86636 {
                                    order: 1
                                  }
                                }

                                .a-e-cont.atomicat-heading-title-eb86636 p:hover {
                                  -webkit-text-fill-color: unset
                                }

                                .a-e-cont.atomicat-heading-title-eb86636 p {
                                  font-weight: 800;
                                  font-size: medium;
                                  text-align: center
                                }

                                @media screen and (max-width:480px) {
                                  .a-e-cont.atomicat-heading-title-eb86636 p {
                                    line-height: 22px;
                                    letter-spacing: 0;
                                    font-size: 22px
                                  }
                                }

                                .a-c-cont-eb86636>.a-e-cont {
                                  padding-top: 12px
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-eb86636>.a-e-cont {
                                    margin-top: 10px
                                  }
                                }
                              


                          .atomicat-container-774659e>.a-o-cont {
                            padding-top: 32px;
                            padding-right: 32px;
                            padding-bottom: 32px;
                            padding-left: 32px
                          }

                          .atomicat-container-774659e>.a-o-cont>.a-cont {
                            align-items: center;
                            flex-direction: column;
                            justify-content: center
                          }

                          .a-b-cont .atomicat-container-774659e.a-b-o-cont {
                            border-top-left-radius: 20px;
                            border-top-right-radius: 20px;
                            border-bottom-left-radius: 20px;
                            border-bottom-right-radius: 20px;
                            box-shadow: 0 10px 32px 0 rgba(103, 101, 101, .25);
                            background-size: cover;
                            background-repeat: no-repeat;
                            background-position: center;
                            width: 50%
                          }

                          @media screen and (max-width:1024px) {
                            .a-b-cont .atomicat-container-774659e.a-b-o-cont {
                              width: 75%
                            }
                          }

                          @media screen and (max-width:480px) {
                            .a-b-cont .atomicat-container-774659e.a-b-o-cont {
                              margin-top: 0;
                              width: 100%
                            }
                          }
                        


                                @media screen and (max-width:480px) {
                                  .a-c-cont-e067d5f {
                                    order: 0
                                  }
                                }

                                .atomicat-image-e067d5f img {
                                  width: 96px;
                                  height: 96px;
                                  border-top-left-radius: 50%;
                                  border-top-right-radius: 50%;
                                  border-bottom-right-radius: 50%;
                                  border-bottom-left-radius: 50%
                                }

                                @media screen and (max-width:480px) {
                                  .atomicat-image-e067d5f img {
                                    width: 150px;
                                    height: 150px;
                                    border-top-left-radius: 80px;
                                    border-top-right-radius: 80px;
                                    border-bottom-right-radius: 80px;
                                    border-bottom-left-radius: 80px
                                  }
                                }

                                .atomicat-image-e067d5f {
                                  text-align: center
                                }

                                @media screen and (max-width:480px) {
                                  .atomicat-image-e067d5f {
                                    text-align: center
                                  }
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-e067d5f>.a-e-cont {
                                    border-top-right-radius: 50px;
                                    border-bottom-right-radius: 50px;
                                    border-top-left-radius: 50px;
                                    border-bottom-left-radius: 50px
                                  }
                                }
                              


                                @media screen and (max-width:480px) {
                                  .a-c-cont-cd066eb {
                                    order: 2
                                  }
                                }

                                .a-e-cont.atomicat-heading-title-cd066eb p:hover {
                                  -webkit-text-fill-color: unset
                                }

                                .a-e-cont.atomicat-heading-title-cd066eb p {
                                  text-align: center;
                                  font-style: italic;
                                  font-size: medium;
                                  font-weight: 500
                                }

                                @media screen and (max-width:480px) {
                                  .a-e-cont.atomicat-heading-title-cd066eb p {
                                    letter-spacing: 0;
                                    line-height: 22px;
                                    font-size: 18px
                                  }
                                }

                                .a-c-cont-cd066eb>.a-e-cont {
                                  padding-top: 12px
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-cd066eb>.a-e-cont {
                                    margin-top: 10px
                                  }
                                }
                              


                                @media screen and (max-width:480px) {
                                  .a-c-cont-5b0c89d {
                                    order: 1
                                  }
                                }

                                .a-e-cont.atomicat-heading-title-5b0c89d p:hover {
                                  -webkit-text-fill-color: unset
                                }

                                .a-e-cont.atomicat-heading-title-5b0c89d p {
                                  text-align: center;
                                  font-weight: 800;
                                  font-size: medium
                                }

                                @media screen and (max-width:480px) {
                                  .a-e-cont.atomicat-heading-title-5b0c89d p {
                                    letter-spacing: 0;
                                    line-height: 22px;
                                    font-size: 22px
                                  }
                                }

                                .a-c-cont-5b0c89d>.a-e-cont {
                                  padding-top: 12px
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-5b0c89d>.a-e-cont {
                                    margin-top: 10px
                                  }
                                }
                              


                          .atomicat-container-2164d6c>.a-o-cont {
                            padding-top: 32px;
                            padding-right: 32px;
                            padding-bottom: 32px;
                            padding-left: 32px
                          }

                          .atomicat-container-2164d6c>.a-o-cont>.a-cont {
                            align-items: center;
                            flex-direction: column;
                            justify-content: center
                          }

                          .a-b-cont .atomicat-container-2164d6c.a-b-o-cont {
                            border-bottom-right-radius: 20px;
                            border-top-right-radius: 20px;
                            border-top-left-radius: 20px;
                            border-bottom-left-radius: 20px;
                            box-shadow: 0 10px 32px 0 rgba(103, 101, 101, .25);
                            background-size: cover;
                            background-repeat: no-repeat;
                            background-position: center;
                            width: 50%
                          }

                          @media screen and (max-width:1024px) {
                            .a-b-cont .atomicat-container-2164d6c.a-b-o-cont {
                              width: 75%
                            }
                          }

                          @media screen and (max-width:480px) {
                            .a-b-cont .atomicat-container-2164d6c.a-b-o-cont {
                              margin-top: 0;
                              width: 100%
                            }
                          }
                        


                                @media screen and (max-width:480px) {
                                  .a-c-cont-b2b9f24 {
                                    order: 0
                                  }
                                }

                                .atomicat-image-b2b9f24 img {
                                  height: 96px;
                                  width: 96px;
                                  border-top-left-radius: 50%;
                                  border-top-right-radius: 50%;
                                  border-bottom-right-radius: 50%;
                                  border-bottom-left-radius: 50%
                                }

                                @media screen and (max-width:480px) {
                                  .atomicat-image-b2b9f24 img {
                                    height: 150px;
                                    width: 150px;
                                    border-top-left-radius: 80px;
                                    border-top-right-radius: 80px;
                                    border-bottom-right-radius: 80px;
                                    border-bottom-left-radius: 80px
                                  }
                                }

                                .atomicat-image-b2b9f24 {
                                  text-align: center
                                }

                                @media screen and (max-width:480px) {
                                  .atomicat-image-b2b9f24 {
                                    text-align: center
                                  }
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-b2b9f24>.a-e-cont {
                                    border-bottom-right-radius: 50px;
                                    border-top-right-radius: 50px;
                                    border-bottom-left-radius: 50px;
                                    border-top-left-radius: 50px
                                  }
                                }
                              


                                @media screen and (max-width:480px) {
                                  .a-c-cont-136daa7 {
                                    order: 2
                                  }
                                }

                                .a-e-cont.atomicat-heading-title-136daa7 p:hover {
                                  -webkit-text-fill-color: unset
                                }

                                .a-e-cont.atomicat-heading-title-136daa7 p {
                                  font-weight: 500;
                                  font-size: medium;
                                  font-style: italic;
                                  text-align: center
                                }

                                @media screen and (max-width:480px) {
                                  .a-e-cont.atomicat-heading-title-136daa7 p {
                                    line-height: 22px;
                                    font-size: 18px;
                                    letter-spacing: 0
                                  }
                                }

                                .a-c-cont-136daa7>.a-e-cont {
                                  padding-top: 12px
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-136daa7>.a-e-cont {
                                    margin-top: 10px
                                  }
                                }
                              


                                @media screen and (max-width:480px) {
                                  .a-c-cont-628f75b {
                                    order: 1
                                  }
                                }

                                .a-e-cont.atomicat-heading-title-628f75b p:hover {
                                  -webkit-text-fill-color: unset
                                }

                                .a-e-cont.atomicat-heading-title-628f75b p {
                                  font-weight: 800;
                                  text-align: center;
                                  font-size: medium
                                }

                                @media screen and (max-width:480px) {
                                  .a-e-cont.atomicat-heading-title-628f75b p {
                                    letter-spacing: 0;
                                    font-size: 22px;
                                    line-height: 22px
                                  }
                                }

                                .a-c-cont-628f75b>.a-e-cont {
                                  padding-top: 12px
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-628f75b>.a-e-cont {
                                    margin-top: 10px
                                  }
                                }
                              


                          .atomicat-container-fd66d21>.a-o-cont {
                            padding-top: 32px;
                            padding-right: 32px;
                            padding-bottom: 32px;
                            padding-left: 32px
                          }

                          .atomicat-container-fd66d21>.a-o-cont>.a-cont {
                            align-items: center;
                            flex-direction: column;
                            justify-content: center
                          }

                          .a-b-cont .atomicat-container-fd66d21.a-b-o-cont {
                            border-bottom-right-radius: 20px;
                            border-top-right-radius: 20px;
                            border-top-left-radius: 20px;
                            border-bottom-left-radius: 20px;
                            box-shadow: 0 10px 32px 0 rgba(103, 101, 101, .25);
                            background-size: cover;
                            background-repeat: no-repeat;
                            background-position: center;
                            width: 50%
                          }

                          @media screen and (max-width:1024px) {
                            .a-b-cont .atomicat-container-fd66d21.a-b-o-cont {
                              width: 75%
                            }
                          }

                          @media screen and (max-width:480px) {
                            .a-b-cont .atomicat-container-fd66d21.a-b-o-cont {
                              margin-top: 0;
                              width: 100%
                            }
                          }
                        


                                @media screen and (max-width:480px) {
                                  .a-c-cont-22f1561 {
                                    order: 0
                                  }
                                }

                                .atomicat-image-22f1561 img {
                                  height: 96px;
                                  width: 96px;
                                  border-top-left-radius: 50%;
                                  border-top-right-radius: 50%;
                                  border-bottom-right-radius: 50%;
                                  border-bottom-left-radius: 50%
                                }

                                @media screen and (max-width:480px) {
                                  .atomicat-image-22f1561 img {
                                    height: 150px;
                                    width: 150px;
                                    border-top-left-radius: 80px;
                                    border-top-right-radius: 80px;
                                    border-bottom-right-radius: 80px;
                                    border-bottom-left-radius: 80px
                                  }
                                }

                                .atomicat-image-22f1561 {
                                  text-align: center
                                }

                                @media screen and (max-width:480px) {
                                  .atomicat-image-22f1561 {
                                    text-align: center
                                  }
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-22f1561>.a-e-cont {
                                    border-bottom-right-radius: 50px;
                                    border-top-right-radius: 50px;
                                    border-bottom-left-radius: 50px;
                                    border-top-left-radius: 50px
                                  }
                                }
                              


                                @media screen and (max-width:480px) {
                                  .a-c-cont-11c4fb9 {
                                    order: 2
                                  }
                                }

                                .a-e-cont.atomicat-heading-title-11c4fb9 p:hover {
                                  -webkit-text-fill-color: unset
                                }

                                .a-e-cont.atomicat-heading-title-11c4fb9 p {
                                  font-weight: 500;
                                  font-size: medium;
                                  font-style: italic;
                                  text-align: center
                                }

                                @media screen and (max-width:480px) {
                                  .a-e-cont.atomicat-heading-title-11c4fb9 p {
                                    line-height: 22px;
                                    font-size: 18px;
                                    letter-spacing: 0
                                  }
                                }

                                .a-c-cont-11c4fb9>.a-e-cont {
                                  padding-top: 12px
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-11c4fb9>.a-e-cont {
                                    margin-top: 10px
                                  }
                                }
                              


                                @media screen and (max-width:480px) {
                                  .a-c-cont-1b89631 {
                                    order: 1
                                  }
                                }

                                .a-e-cont.atomicat-heading-title-1b89631 p:hover {
                                  -webkit-text-fill-color: unset
                                }

                                .a-e-cont.atomicat-heading-title-1b89631 p {
                                  font-weight: 800;
                                  text-align: center;
                                  font-size: medium
                                }

                                @media screen and (max-width:480px) {
                                  .a-e-cont.atomicat-heading-title-1b89631 p {
                                    letter-spacing: 0;
                                    font-size: 22px;
                                    line-height: 22px
                                  }
                                }

                                .a-c-cont-1b89631>.a-e-cont {
                                  padding-top: 12px
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-1b89631>.a-e-cont {
                                    margin-top: 10px
                                  }
                                }
                              


                          .atomicat-container-92a3158>.a-o-cont {
                            padding-top: 32px;
                            padding-right: 32px;
                            padding-bottom: 32px;
                            padding-left: 32px
                          }

                          .atomicat-container-92a3158>.a-o-cont>.a-cont {
                            align-items: center;
                            flex-direction: column;
                            justify-content: center
                          }

                          .a-b-cont .atomicat-container-92a3158.a-b-o-cont {
                            border-bottom-right-radius: 20px;
                            border-top-right-radius: 20px;
                            border-top-left-radius: 20px;
                            border-bottom-left-radius: 20px;
                            box-shadow: 0 10px 32px 0 rgba(103, 101, 101, .25);
                            background-size: cover;
                            background-repeat: no-repeat;
                            background-position: center;
                            width: 50%
                          }

                          @media screen and (max-width:1024px) {
                            .a-b-cont .atomicat-container-92a3158.a-b-o-cont {
                              width: 75%
                            }
                          }

                          @media screen and (max-width:480px) {
                            .a-b-cont .atomicat-container-92a3158.a-b-o-cont {
                              margin-top: 0;
                              width: 100%
                            }
                          }
                        


                                @media screen and (max-width:480px) {
                                  .a-c-cont-8c99bfe {
                                    order: 0
                                  }
                                }

                                .atomicat-image-8c99bfe img {
                                  height: 96px;
                                  width: 96px;
                                  border-top-left-radius: 50%;
                                  border-top-right-radius: 50%;
                                  border-bottom-right-radius: 50%;
                                  border-bottom-left-radius: 50%
                                }

                                @media screen and (max-width:480px) {
                                  .atomicat-image-8c99bfe img {
                                    height: 150px;
                                    width: 150px;
                                    border-top-left-radius: 80px;
                                    border-top-right-radius: 80px;
                                    border-bottom-right-radius: 80px;
                                    border-bottom-left-radius: 80px
                                  }
                                }

                                .atomicat-image-8c99bfe {
                                  text-align: center
                                }

                                @media screen and (max-width:480px) {
                                  .atomicat-image-8c99bfe {
                                    text-align: center
                                  }
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-8c99bfe>.a-e-cont {
                                    border-bottom-right-radius: 50px;
                                    border-top-right-radius: 50px;
                                    border-bottom-left-radius: 50px;
                                    border-top-left-radius: 50px
                                  }
                                }
                              


                                @media screen and (max-width:480px) {
                                  .a-c-cont-2f55741 {
                                    order: 2
                                  }
                                }

                                .a-e-cont.atomicat-heading-title-2f55741 p:hover {
                                  -webkit-text-fill-color: unset
                                }

                                .a-e-cont.atomicat-heading-title-2f55741 p {
                                  font-weight: 500;
                                  font-size: medium;
                                  font-style: italic;
                                  text-align: center
                                }

                                @media screen and (max-width:480px) {
                                  .a-e-cont.atomicat-heading-title-2f55741 p {
                                    line-height: 22px;
                                    font-size: 18px;
                                    letter-spacing: 0
                                  }
                                }

                                .a-c-cont-2f55741>.a-e-cont {
                                  padding-top: 12px
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-2f55741>.a-e-cont {
                                    margin-top: 10px
                                  }
                                }
                              


                                @media screen and (max-width:480px) {
                                  .a-c-cont-cff4e07 {
                                    order: 1
                                  }
                                }

                                .a-e-cont.atomicat-heading-title-cff4e07 p:hover {
                                  -webkit-text-fill-color: unset
                                }

                                .a-e-cont.atomicat-heading-title-cff4e07 p {
                                  font-weight: 800;
                                  text-align: center;
                                  font-size: medium
                                }

                                @media screen and (max-width:480px) {
                                  .a-e-cont.atomicat-heading-title-cff4e07 p {
                                    letter-spacing: 0;
                                    font-size: 22px;
                                    line-height: 22px
                                  }
                                }

                                .a-c-cont-cff4e07>.a-e-cont {
                                  padding-top: 12px
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-cff4e07>.a-e-cont {
                                    margin-top: 10px
                                  }
                                }
                              


                          .atomicat-container-802740e>.a-o-cont {
                            padding-top: 32px;
                            padding-right: 32px;
                            padding-bottom: 32px;
                            padding-left: 32px
                          }

                          .atomicat-container-802740e>.a-o-cont>.a-cont {
                            align-items: center;
                            flex-direction: column;
                            justify-content: center
                          }

                          .a-b-cont .atomicat-container-802740e.a-b-o-cont {
                            border-bottom-right-radius: 20px;
                            border-top-right-radius: 20px;
                            border-top-left-radius: 20px;
                            border-bottom-left-radius: 20px;
                            box-shadow: 0 10px 32px 0 rgba(103, 101, 101, .25);
                            background-size: cover;
                            background-repeat: no-repeat;
                            background-position: center;
                            width: 50%
                          }

                          @media screen and (max-width:1024px) {
                            .a-b-cont .atomicat-container-802740e.a-b-o-cont {
                              width: 75%
                            }
                          }

                          @media screen and (max-width:480px) {
                            .a-b-cont .atomicat-container-802740e.a-b-o-cont {
                              margin-top: 0;
                              width: 100%
                            }
                          }
                        


                                @media screen and (max-width:480px) {
                                  .a-c-cont-33f5443 {
                                    order: 0
                                  }
                                }

                                .atomicat-image-33f5443 img {
                                  height: 96px;
                                  width: 96px;
                                  border-top-left-radius: 50%;
                                  border-top-right-radius: 50%;
                                  border-bottom-right-radius: 50%;
                                  border-bottom-left-radius: 50%
                                }

                                @media screen and (max-width:480px) {
                                  .atomicat-image-33f5443 img {
                                    height: 150px;
                                    width: 150px;
                                    border-top-left-radius: 80px;
                                    border-top-right-radius: 80px;
                                    border-bottom-right-radius: 80px;
                                    border-bottom-left-radius: 80px
                                  }
                                }

                                .atomicat-image-33f5443 {
                                  text-align: center
                                }

                                @media screen and (max-width:480px) {
                                  .atomicat-image-33f5443 {
                                    text-align: center
                                  }
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-33f5443>.a-e-cont {
                                    border-bottom-right-radius: 50px;
                                    border-top-right-radius: 50px;
                                    border-bottom-left-radius: 50px;
                                    border-top-left-radius: 50px
                                  }
                                }
                              


                                @media screen and (max-width:480px) {
                                  .a-c-cont-abb9cc2 {
                                    order: 2
                                  }
                                }

                                .a-e-cont.atomicat-heading-title-abb9cc2 p:hover {
                                  -webkit-text-fill-color: unset
                                }

                                .a-e-cont.atomicat-heading-title-abb9cc2 p {
                                  font-weight: 500;
                                  font-size: medium;
                                  font-style: italic;
                                  text-align: center
                                }

                                @media screen and (max-width:480px) {
                                  .a-e-cont.atomicat-heading-title-abb9cc2 p {
                                    line-height: 22px;
                                    font-size: 18px;
                                    letter-spacing: 0
                                  }
                                }

                                .a-c-cont-abb9cc2>.a-e-cont {
                                  padding-top: 12px
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-abb9cc2>.a-e-cont {
                                    margin-top: 10px
                                  }
                                }
                              


                                @media screen and (max-width:480px) {
                                  .a-c-cont-8763b31 {
                                    order: 1
                                  }
                                }

                                .a-e-cont.atomicat-heading-title-8763b31 p:hover {
                                  -webkit-text-fill-color: unset
                                }

                                .a-e-cont.atomicat-heading-title-8763b31 p {
                                  font-weight: 800;
                                  text-align: center;
                                  font-size: medium
                                }

                                @media screen and (max-width:480px) {
                                  .a-e-cont.atomicat-heading-title-8763b31 p {
                                    letter-spacing: 0;
                                    font-size: 22px;
                                    line-height: 22px
                                  }
                                }

                                .a-c-cont-8763b31>.a-e-cont {
                                  padding-top: 12px
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-8763b31>.a-e-cont {
                                    margin-top: 10px
                                  }
                                }
                              


        .atomicat-container-9d3b7e1>.a-o-cont>.a-cont {
          flex-direction: column
        }

        .a-b-cont .atomicat-container-9d3b7e1.a-b-o-cont {
          margin-top: 25px;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center
        }
      


              .atomicat-image-ce89a83 img {
                width: 25%
              }

              @media screen and (max-width:480px) {
                .atomicat-image-ce89a83 img {
                  width: 40%
                }
              }

              @media screen and (max-width:480px) {
                .a-c-cont-ce89a83>.a-e-cont {
                  margin-top: 10px
                }
              }
            


        .atomicat-container-825136c>.a-o-cont>.a-cont {
          flex-direction: column
        }

        .a-b-cont .atomicat-container-825136c.a-b-o-cont {
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center
        }
      


              .a-e-cont.atomicat-heading-title-094e6ac p:hover {
                -webkit-text-fill-color: unset
              }

              .a-e-cont.atomicat-heading-title-094e6ac p {
                font-size: 20px;
                font-weight: 700;
                text-align: center;
                text-transform: none
              }

              @media screen and (max-width:480px) {
                .a-e-cont.atomicat-heading-title-094e6ac p {
                  font-size: 18px;
                  font-weight: 900;
                  letter-spacing: 0;
                  line-height: 1.3em;
                  text-align: center
                }
              }

              @media screen and (max-width:480px) {
                .a-c-cont-094e6ac>.a-e-cont {
                  margin-bottom: 30px
                }
              }
            


        .atomicat-container-05a2b3d>.a-o-cont {
          padding-top: 20px;
          padding-bottom: 20px
        }

        .atomicat-container-05a2b3d>.a-o-cont>.a-cont {
          flex-direction: row
        }

        .a-b-cont .atomicat-container-05a2b3d.a-b-o-cont {
          margin-top: 25px;
          background: #ffe100;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center
        }

        @media screen and (max-width:480px) {
          .a-b-cont .atomicat-container-05a2b3d.a-b-o-cont {
            background: #ffe200
          }
        }
      


              .atomicat-container-1c22c0b>.a-o-cont>.a-cont {
                flex-direction: column
              }

              .a-b-cont .atomicat-container-1c22c0b.a-b-o-cont {
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
                width: 100%
              }

              @media screen and (max-width:480px) {
                .a-b-cont .atomicat-container-1c22c0b.a-b-o-cont {
                  width: 100%
                }
              }
            


                    .a-e-cont.atomicat-heading-title-33d74f1 p:hover {
                      -webkit-text-fill-color: unset
                    }

                    .a-e-cont.atomicat-heading-title-33d74f1 p {
                      color: #000;
                      font-weight: 900;
                      font-family: "Nunito Sans", sans-serif;
                      text-align: center;
                      background-image: unset;
                      font-size: 35px
                    }

                    @media screen and (max-width:480px) {
                      .a-e-cont.atomicat-heading-title-33d74f1 p {
                        font-weight: 900;
                        line-height: 1.3em;
                        text-align: center;
                        font-size: 21px
                      }
                    }

                    @media screen and (max-width:480px) {
                      .a-c-cont-33d74f1>.a-e-cont {
                        margin-bottom: 10px;
                        margin-top: 10px
                      }
                    }
                  


        .atomicat-container-e5790b7>.a-o-cont {
          padding-top: 20px;
          padding-bottom: 20px
        }

        .atomicat-container-e5790b7>.a-o-cont>.a-cont {
          flex-direction: row
        }

        .a-b-cont .atomicat-container-e5790b7.a-b-o-cont {
          background: #efc700;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center
        }

        @media screen and (max-width:480px) {
          .a-b-cont .atomicat-container-e5790b7.a-b-o-cont {
            background: #efc700
          }
        }
      


              .atomicat-container-fbd9e55>.a-o-cont>.a-cont {
                flex-direction: column
              }

              .a-b-cont .atomicat-container-fbd9e55.a-b-o-cont {
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
                width: 100%
              }

              @media screen and (max-width:480px) {
                .a-b-cont .atomicat-container-fbd9e55.a-b-o-cont {
                  width: 100%
                }
              }
            


                    .a-e-cont.atomicat-heading-title-f47e59c p:hover {
                      -webkit-text-fill-color: unset
                    }

                    .a-e-cont.atomicat-heading-title-f47e59c p {
                      background-image: unset;
                      font-weight: 800;
                      font-family: "Nunito Sans", sans-serif;
                      font-size: 30px;
                      color: #000;
                      text-align: center
                    }

                    @media screen and (max-width:480px) {
                      .a-e-cont.atomicat-heading-title-f47e59c p {
                        line-height: 1.3em;
                        font-weight: 900;
                        font-size: 26px;
                        text-align: center
                      }
                    }

                    @media screen and (max-width:480px) {
                      .a-c-cont-f47e59c>.a-e-cont {
                        margin-top: 5px;
                        margin-bottom: 5px
                      }
                    }
                  


        .atomicat-container-5e725d1>.a-o-cont {
          padding-top: 65px;
          padding-bottom: 65px
        }

        @media screen and (max-width:480px) {
          .atomicat-container-5e725d1>.a-o-cont {
            padding-top: 20px;
            padding-right: 15px;
            padding-bottom: 20px;
            padding-left: 15px
          }
        }

        .atomicat-container-5e725d1>.a-o-cont>.a-cont {
          align-items: center;
          justify-content: center
        }

        .a-b-cont .atomicat-container-5e725d1.a-b-o-cont {
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center;
          width: 100%
        }

        @media screen and (max-width:480px) {
          .a-b-cont .atomicat-container-5e725d1.a-b-o-cont {
            width: 95%
          }
        }
      


              @media screen and (max-width:480px) {
                .atomicat-container-3bf68c3>.a-o-cont {
                  padding-right: 0;
                  padding-left: 0
                }
              }

              .atomicat-container-3bf68c3>.a-o-cont>.a-cont {
                column-gap: 50px;
                flex-direction: row;
                row-gap: 50px
              }

              .a-b-cont .atomicat-container-3bf68c3.a-b-o-cont {
                border-style: hidden;
                border-color: #009b26;
                border-image: unset 1;
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
                width: 100%
              }

              @media screen and (max-width:480px) {
                .a-b-cont .atomicat-container-3bf68c3.a-b-o-cont {
                  border-left-width: 3px;
                  border-bottom-right-radius: 20px;
                  border-bottom-left-radius: 20px;
                  border-top-right-radius: 20px;
                  border-right-width: 3px;
                  border-top-left-radius: 20px;
                  border-bottom-width: 3px;
                  border-top-width: 3px;
                  width: 100%
                }
              }
            


                    @media screen and (max-width:480px) {
                      .atomicat-container-af8ac84>.a-o-cont {
                        padding-right: 0;
                        padding-left: 0
                      }
                    }

                    .atomicat-container-af8ac84>.a-o-cont>.a-cont {
                      flex-direction: column
                    }

                    .a-b-cont .atomicat-container-af8ac84.a-b-o-cont {
                      border-color: #c5c5c5;
                      border-image: unset 1;
                      border-style: solid;
                      background-size: cover;
                      background-repeat: no-repeat;
                      background-position: center;
                      width: 100%
                    }

                    @media screen and (max-width:480px) {
                      .a-b-cont .atomicat-container-af8ac84.a-b-o-cont {
                        border-bottom-right-radius: 20px;
                        border-top-width: 3px;
                        border-bottom-left-radius: 20px;
                        border-bottom-width: 3px;
                        border-left-width: 3px;
                        border-right-width: 3px;
                        border-top-right-radius: 20px;
                        border-top-left-radius: 20px;
                        width: 100%
                      }
                    }
                  


                          .atomicat-container-9e80db0>.a-o-cont {
                            padding-top: 0;
                            padding-right: 0;
                            padding-bottom: 0;
                            padding-left: 0
                          }

                          .atomicat-container-9e80db0>.a-o-cont>.a-cont {
                            column-gap: 32px;
                            flex-direction: row;
                            row-gap: 32px
                          }

                          .a-b-cont .atomicat-container-9e80db0.a-b-o-cont {
                            background-size: cover;
                            background-repeat: no-repeat;
                            background-position: center;
                            width: 100%
                          }

                          @media screen and (max-width:480px) {
                            .a-b-cont .atomicat-container-9e80db0.a-b-o-cont {
                              border-bottom-left-radius: 35px;
                              border-top-left-radius: 35px;
                              border-bottom-right-radius: 35px;
                              border-top-right-radius: 35px;
                              background: #fff
                            }
                          }
                        


                                .atomicat-container-e9316f3>.a-o-cont {
                                  padding-top: 0;
                                  padding-right: 0;
                                  padding-bottom: 0;
                                  padding-left: 0
                                }

                                .atomicat-container-e9316f3>.a-o-cont>.a-cont {
                                  flex-direction: column
                                }

                                @media screen and (max-width:480px) {
                                  .atomicat-container-e9316f3>.a-o-cont>.a-cont {
                                    max-width: 1600px
                                  }
                                }

                                .a-b-cont .atomicat-container-e9316f3.a-b-o-cont {
                                  border-bottom-width: 1px;
                                  border-left-width: 1px;
                                  border-top-width: 1px;
                                  border-bottom-right-radius: 35px;
                                  border-right-width: 1px;
                                  border-top-right-radius: 35px;
                                  border-style: hidden;
                                  border-color: unset;
                                  border-image: linear-gradient(131deg, rgba(243, 122, 1, 1) 0%, rgba(237, 103, 4, 1) 100%) 1;
                                  border-bottom-left-radius: 35px;
                                  border-top-left-radius: 35px;
                                  background: rgba(253, 226, 185, .35);
                                  background-size: cover;
                                  background-repeat: no-repeat;
                                  background-position: center;
                                  width: 100%
                                }

                                @media screen and (max-width:480px) {
                                  .a-b-cont .atomicat-container-e9316f3.a-b-o-cont {
                                    border-bottom-width: 2px;
                                    order: 0;
                                    border-left-width: 2px;
                                    border-top-width: 2px;
                                    border-bottom-right-radius: 20px;
                                    border-right-width: 2px;
                                    border-top-right-radius: 20px;
                                    border-bottom-left-radius: 20px;
                                    border-top-left-radius: 20px;
                                    background: #fff
                                  }
                                }
                              


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-6fd9f17 {
                                          order: 0
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-6fd9f17 h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-6fd9f17 h3 {
                                        color: #000;
                                        font-size: 20px;
                                        text-transform: none;
                                        background-image: unset;
                                        text-align: center
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-6fd9f17 h3 {
                                          font-weight: 900;
                                          font-size: 32px
                                        }
                                      }

                                      .a-c-cont-6fd9f17>.a-e-cont {
                                        margin-top: 4px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-6fd9f17>.a-e-cont {
                                          margin-top: 5px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-9eb0527 {
                                          order: 1
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-9eb0527 h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-9eb0527 h3 {
                                        font-size: 14px;
                                        text-align: center;
                                        background-image: unset;
                                        color: #5d5d5d
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-9eb0527 h3 {
                                          font-size: 22px;
                                          font-weight: 900
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-9eb0527>.a-e-cont {
                                          margin-top: 0
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-4485667 {
                                          order: 2
                                        }
                                      }

                                      .atomicat-image-4485667 img {
                                        height: 100%;
                                        width: 66%
                                      }

                                      @media screen and (max-width:480px) {
                                        .atomicat-image-4485667 img {
                                          width: 97%
                                        }
                                      }

                                      .a-c-cont-4485667>.a-e-cont {
                                        margin-top: 24px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-4485667>.a-e-cont {
                                          margin-right: 8px;
                                          margin-top: 0
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-946d254 {
                                          order: 2
                                        }
                                      }

                                      .atomicat-image-946d254 img {
                                        height: 100%;
                                        width: 66%
                                      }

                                      @media screen and (max-width:480px) {
                                        .atomicat-image-946d254 img {
                                          width: 54%
                                        }
                                      }

                                      .a-c-cont-946d254>.a-e-cont {
                                        margin-top: 24px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-946d254>.a-e-cont {
                                          padding-right: 0;
                                          padding-top: 0;
                                          margin-top: 0;
                                          margin-bottom: 0
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-a0013b7 {
                                          order: 4;
                                          align-self: center
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-a0013b7 .a-divider-w .a-divider-s {
                                        border: 1px solid #c2c2c2
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-a0013b7 .a-divider-w .a-divider-s {
                                          width: 92%;
                                          margin-left: auto;
                                          margin-right: auto
                                        }
                                      }

                                      @media screen and (max-width:480px) {

                                        .a-e-cont.atomicat-divider-a0013b7 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:after,
                                        .a-e-cont.atomicat-divider-a0013b7 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:before,
                                        .a-e-cont.atomicat-divider-a0013b7 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-end:before,
                                        .a-e-cont.atomicat-divider-a0013b7 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-start:after {
                                          width: 92%
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-a0013b7 .a-divider-w {
                                          padding-bottom: 7px;
                                          padding-top: 7px
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-a0013b7 .a-divider-w .a-divider-s.a-divider-s-element .a-divider-e {
                                        color: #fff
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-47b25a1 {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-47b25a1 h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-47b25a1 h3 {
                                        font-size: large;
                                        text-align: center;
                                        color: #000;
                                        text-transform: uppercase;
                                        background-image: unset
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-47b25a1 h3 {
                                          font-size: 17px;
                                          font-weight: 900
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-47b25a1>.a-e-cont {
                                          margin-top: 0
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-a4d8d7d {
                                          order: 4;
                                          align-self: center
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-a4d8d7d .a-divider-w .a-divider-s {
                                        border: 1px solid #c2c2c2
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-a4d8d7d .a-divider-w .a-divider-s {
                                          width: 92%;
                                          margin-left: auto;
                                          margin-right: auto
                                        }
                                      }

                                      @media screen and (max-width:480px) {

                                        .a-e-cont.atomicat-divider-a4d8d7d .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:after,
                                        .a-e-cont.atomicat-divider-a4d8d7d .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:before,
                                        .a-e-cont.atomicat-divider-a4d8d7d .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-end:before,
                                        .a-e-cont.atomicat-divider-a4d8d7d .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-start:after {
                                          width: 92%
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-a4d8d7d .a-divider-w {
                                          padding-bottom: 7px;
                                          padding-top: 7px
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-a4d8d7d .a-divider-w .a-divider-s.a-divider-s-element .a-divider-e {
                                        color: #fff
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-60a5c9f {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-60a5c9f h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-60a5c9f h3 {
                                        text-transform: uppercase;
                                        color: #000;
                                        font-size: large;
                                        text-align: center;
                                        background-image: unset
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-60a5c9f h3 {
                                          font-size: 17px;
                                          font-weight: 900
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-b6436d3 {
                                          order: 4;
                                          align-self: center
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-b6436d3 .a-divider-w .a-divider-s {
                                        border: 1px solid #c2c2c2
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-b6436d3 .a-divider-w .a-divider-s {
                                          width: 92%;
                                          margin-left: auto;
                                          margin-right: auto
                                        }
                                      }

                                      @media screen and (max-width:480px) {

                                        .a-e-cont.atomicat-divider-b6436d3 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:after,
                                        .a-e-cont.atomicat-divider-b6436d3 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:before,
                                        .a-e-cont.atomicat-divider-b6436d3 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-end:before,
                                        .a-e-cont.atomicat-divider-b6436d3 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-start:after {
                                          width: 92%
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-b6436d3 .a-divider-w {
                                          padding-bottom: 7px;
                                          padding-top: 7px
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-b6436d3 .a-divider-w .a-divider-s.a-divider-s-element .a-divider-e {
                                        color: #fff
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-f56e2c8 {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-f56e2c8 h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-f56e2c8 h3 {
                                        color: #000;
                                        background-image: unset;
                                        text-transform: uppercase;
                                        text-align: center;
                                        font-size: large
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-f56e2c8 h3 {
                                          font-weight: 900;
                                          font-size: 17px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-2157842 {
                                          order: 4;
                                          align-self: center
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-2157842 .a-divider-w .a-divider-s {
                                        border: 1px solid #c2c2c2
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-2157842 .a-divider-w .a-divider-s {
                                          width: 92%;
                                          margin-left: auto;
                                          margin-right: auto
                                        }
                                      }

                                      @media screen and (max-width:480px) {

                                        .a-e-cont.atomicat-divider-2157842 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:after,
                                        .a-e-cont.atomicat-divider-2157842 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:before,
                                        .a-e-cont.atomicat-divider-2157842 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-end:before,
                                        .a-e-cont.atomicat-divider-2157842 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-start:after {
                                          width: 92%
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-2157842 .a-divider-w {
                                          padding-bottom: 7px;
                                          padding-top: 7px
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-2157842 .a-divider-w .a-divider-s.a-divider-s-element .a-divider-e {
                                        color: #fff
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-7768564 {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-7768564 h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-7768564 h3 {
                                        color: #000;
                                        background-image: unset;
                                        text-align: center;
                                        font-size: large;
                                        text-transform: uppercase
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-7768564 h3 {
                                          font-size: 17px;
                                          font-weight: 900
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-0dd764d {
                                          order: 7
                                        }
                                      }

                                      .a-btn-0dd764d.a-e-cont .a-btn:hover {
                                        background: linear-gradient(131deg, #009b26 0, #1faa00 100%);
                                        animation: atomicat-animation-fadeInOut 2s infinite linear;
                                        color: #fff
                                      }

                                      .a-btn-0dd764d.a-e-cont .a-btn {
                                        background: linear-gradient(180deg, #1faa00 50%, #009b26 20%);
                                        font-family: "Nunito Sans", sans-serif;
                                        border-style: solid;
                                        border-image: unset 1;
                                        border-color: #009e26;
                                        border-bottom-left-radius: 100px;
                                        font-size: 14px;
                                        border-top-right-radius: 100px;
                                        padding-top: 16px;
                                        gap: 11px;
                                        color: #fff;
                                        width: 83%;
                                        align-self: center;
                                        border-bottom-right-radius: 100px;
                                        padding-bottom: 16px;
                                        border-top-left-radius: 100px;
                                        padding-left: 32px;
                                        padding-right: 32px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-btn-0dd764d.a-e-cont .a-btn {
                                          border-bottom-left-radius: 5px;
                                          font-size: 24px;
                                          border-top-right-radius: 5px;
                                          padding-top: 15px;
                                          border-top-width: 1px;
                                          font-weight: 900;
                                          gap: 15px;
                                          border-right-width: 1px;
                                          width: 100%;
                                          align-self: center;
                                          border-bottom-right-radius: 5px;
                                          border-left-width: 1px;
                                          padding-bottom: 15px;
                                          border-top-left-radius: 5px;
                                          padding-left: 0;
                                          padding-right: 0;
                                          border-bottom-width: 1px
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-btn-0dd764d.a-e-cont .a-btn svg {
                                          height: 20px
                                        }
                                      }

                                      .a-c-cont-0dd764d>.a-e-cont {
                                        margin-bottom: 20px;
                                        border-top-left-radius: 0;
                                        margin-top: 20px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-0dd764d>.a-e-cont {
                                          margin-bottom: 15px;
                                          margin-right: 20px;
                                          margin-top: 20px;
                                          margin-left: 20px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-e9f49ab {
                                          order: 12
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-e9f49ab p:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-e9f49ab p {
                                        font-family: "Nunito Sans", sans-serif;
                                        text-align: center
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-e9f49ab p {
                                          text-align: center;
                                          font-size: 18px;
                                          font-weight: 900
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-e9f49ab>.a-e-cont {
                                          margin-top: 10px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-6418756 {
                                          order: 12
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-6418756 p:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-6418756 p {
                                        text-align: center;
                                        font-family: "Nunito Sans", sans-serif
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-6418756 p {
                                          text-align: center;
                                          font-weight: 900;
                                          font-size: 17px
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-6418756>.a-e-cont {
                                          margin-top: 5px;
                                          margin-bottom: 25px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-363668e {
                                          order: 11
                                        }
                                      }

                                      .atomicat-image-363668e img {
                                        width: 223px
                                      }

                                      @media screen and (max-width:480px) {
                                        .atomicat-image-363668e img {
                                          width: 206px
                                        }
                                      }

                                      .a-c-cont-363668e>.a-e-cont {
                                        padding-right: 24px;
                                        padding-left: 24px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-363668e>.a-e-cont {
                                          margin-bottom: 15px
                                        }
                                      }
                                    


                    @media screen and (max-width:480px) {
                      .atomicat-container-6770149>.a-o-cont {
                        padding-right: 0;
                        padding-left: 0
                      }
                    }

                    .atomicat-container-6770149>.a-o-cont>.a-cont {
                      flex-direction: column
                    }

                    .a-b-cont .atomicat-container-6770149.a-b-o-cont {
                      border-color: #c5c5c5;
                      border-image: unset 1;
                      border-style: solid;
                      background-size: cover;
                      background-repeat: no-repeat;
                      background-position: center;
                      width: 100%
                    }

                    @media screen and (max-width:480px) {
                      .a-b-cont .atomicat-container-6770149.a-b-o-cont {
                        border-bottom-right-radius: 20px;
                        border-top-width: 3px;
                        border-bottom-left-radius: 20px;
                        border-bottom-width: 3px;
                        border-left-width: 3px;
                        border-right-width: 3px;
                        border-top-right-radius: 20px;
                        border-top-left-radius: 20px;
                        width: 100%
                      }
                    }
                  


                          .atomicat-container-e287dd9>.a-o-cont {
                            padding-top: 0;
                            padding-right: 0;
                            padding-bottom: 0;
                            padding-left: 0
                          }

                          .atomicat-container-e287dd9>.a-o-cont>.a-cont {
                            column-gap: 32px;
                            flex-direction: row;
                            row-gap: 32px
                          }

                          .a-b-cont .atomicat-container-e287dd9.a-b-o-cont {
                            background-size: cover;
                            background-repeat: no-repeat;
                            background-position: center;
                            width: 100%
                          }

                          @media screen and (max-width:480px) {
                            .a-b-cont .atomicat-container-e287dd9.a-b-o-cont {
                              border-bottom-left-radius: 35px;
                              border-top-left-radius: 35px;
                              border-bottom-right-radius: 35px;
                              border-top-right-radius: 35px;
                              background: #fff
                            }
                          }
                        


                                .atomicat-container-db5f5db>.a-o-cont {
                                  padding-top: 0;
                                  padding-right: 0;
                                  padding-bottom: 0;
                                  padding-left: 0
                                }

                                .atomicat-container-db5f5db>.a-o-cont>.a-cont {
                                  flex-direction: column
                                }

                                @media screen and (max-width:480px) {
                                  .atomicat-container-db5f5db>.a-o-cont>.a-cont {
                                    max-width: 1600px
                                  }
                                }

                                .a-b-cont .atomicat-container-db5f5db.a-b-o-cont {
                                  border-bottom-width: 1px;
                                  border-left-width: 1px;
                                  border-top-width: 1px;
                                  border-bottom-right-radius: 35px;
                                  border-right-width: 1px;
                                  border-top-right-radius: 35px;
                                  border-style: hidden;
                                  border-color: unset;
                                  border-image: linear-gradient(131deg, rgba(243, 122, 1, 1) 0%, rgba(237, 103, 4, 1) 100%) 1;
                                  border-bottom-left-radius: 35px;
                                  border-top-left-radius: 35px;
                                  background: rgba(253, 226, 185, .35);
                                  background-size: cover;
                                  background-repeat: no-repeat;
                                  background-position: center;
                                  width: 100%
                                }

                                @media screen and (max-width:480px) {
                                  .a-b-cont .atomicat-container-db5f5db.a-b-o-cont {
                                    border-bottom-width: 2px;
                                    order: 0;
                                    border-left-width: 2px;
                                    border-top-width: 2px;
                                    border-bottom-right-radius: 20px;
                                    border-right-width: 2px;
                                    border-top-right-radius: 20px;
                                    border-bottom-left-radius: 20px;
                                    border-top-left-radius: 20px;
                                    background: #fff
                                  }
                                }
                              


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-7a354f0 {
                                          order: 0
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-7a354f0 h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-7a354f0 h3 {
                                        text-transform: none;
                                        background-image: unset;
                                        font-size: 20px;
                                        color: #000;
                                        text-align: center
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-7a354f0 h3 {
                                          font-size: 31px;
                                          font-weight: 900
                                        }
                                      }

                                      .a-c-cont-7a354f0>.a-e-cont {
                                        margin-top: 20px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-7a354f0>.a-e-cont {
                                          margin-top: 25px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-65cfc7c {
                                          order: 1
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-65cfc7c h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-65cfc7c h3 {
                                        text-align: center;
                                        background-image: unset;
                                        color: #5d5d5d;
                                        font-size: 14px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-65cfc7c h3 {
                                          font-weight: 900;
                                          font-size: 20px
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-65cfc7c>.a-e-cont {
                                          margin-bottom: 10px;
                                          margin-top: 0
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-81e02a6 {
                                          order: 2
                                        }
                                      }

                                      .atomicat-image-81e02a6 img {
                                        width: 66%;
                                        height: 100%
                                      }

                                      @media screen and (max-width:480px) {
                                        .atomicat-image-81e02a6 img {
                                          width: 93%
                                        }
                                      }

                                      .a-c-cont-81e02a6>.a-e-cont {
                                        margin-top: 24px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-81e02a6>.a-e-cont {
                                          padding-bottom: 0;
                                          margin-right: 10px;
                                          margin-top: 0
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-584067d {
                                          order: 2
                                        }
                                      }

                                      .atomicat-image-584067d img {
                                        width: 66%;
                                        height: 100%
                                      }

                                      @media screen and (max-width:480px) {
                                        .atomicat-image-584067d img {
                                          width: 55%
                                        }
                                      }

                                      .a-c-cont-584067d>.a-e-cont {
                                        margin-top: 24px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-584067d>.a-e-cont {
                                          margin-bottom: 0;
                                          margin-top: 0;
                                          padding-top: 0;
                                          padding-right: 0
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-91df2ce {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-91df2ce .a-divider-w .a-divider-s {
                                        border: 1px solid #c2c2c2
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-91df2ce .a-divider-w .a-divider-s {
                                          width: 92%;
                                          margin-left: auto;
                                          margin-right: auto
                                        }
                                      }

                                      @media screen and (max-width:480px) {

                                        .a-e-cont.atomicat-divider-91df2ce .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:after,
                                        .a-e-cont.atomicat-divider-91df2ce .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:before,
                                        .a-e-cont.atomicat-divider-91df2ce .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-end:before,
                                        .a-e-cont.atomicat-divider-91df2ce .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-start:after {
                                          width: 92%
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-91df2ce .a-divider-w {
                                          padding-bottom: 7px;
                                          padding-top: 7px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-af7885a {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-af7885a h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-af7885a h3 {
                                        font-size: large;
                                        background-image: unset;
                                        text-align: center;
                                        color: #000;
                                        text-transform: uppercase
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-af7885a h3 {
                                          font-size: 17px;
                                          font-weight: 900
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-7b47266 {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-7b47266 .a-divider-w .a-divider-s {
                                        border: 1px solid #c2c2c2
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-7b47266 .a-divider-w .a-divider-s {
                                          width: 92%;
                                          margin-left: auto;
                                          margin-right: auto
                                        }
                                      }

                                      @media screen and (max-width:480px) {

                                        .a-e-cont.atomicat-divider-7b47266 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:after,
                                        .a-e-cont.atomicat-divider-7b47266 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:before,
                                        .a-e-cont.atomicat-divider-7b47266 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-end:before,
                                        .a-e-cont.atomicat-divider-7b47266 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-start:after {
                                          width: 92%
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-7b47266 .a-divider-w {
                                          padding-bottom: 7px;
                                          padding-top: 7px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-2fc6548 {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-2fc6548 h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-2fc6548 h3 {
                                        background-image: unset;
                                        text-align: center;
                                        color: #000;
                                        text-transform: uppercase;
                                        font-size: large
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-2fc6548 h3 {
                                          font-size: 17px;
                                          font-weight: 900
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-e1c41f8 {
                                          order: 7
                                        }
                                      }

                                      .a-btn-e1c41f8.a-e-cont .a-btn:hover {
                                        color: #000;
                                        animation-play-state: paused;
                                        background: linear-gradient(180deg, #ffe100 33%, #fdcd17 56%)
                                      }

                                      .a-btn-e1c41f8.a-e-cont .a-btn {
                                        font-size: 14px;
                                        border-bottom-right-radius: 100px;
                                        padding-bottom: 16px;
                                        gap: 11px;
                                        padding-left: 32px;
                                        background: linear-gradient(180deg, #ffe100 33%, #fdcd17 56%);
                                        border-bottom-left-radius: 100px;
                                        color: #000;
                                        border-top-left-radius: 100px;
                                        align-self: center;
                                        font-family: "Nunito Sans", sans-serif;
                                        padding-right: 32px;
                                        width: 83%;
                                        padding-top: 16px;
                                        border-top-right-radius: 100px;
                                        border-color: #d6a900;
                                        border-image: unset 1;
                                        border-style: solid
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-btn-e1c41f8.a-e-cont .a-btn {
                                          font-size: 24px;
                                          border-bottom-right-radius: 5px;
                                          padding-bottom: 15px;
                                          gap: 15px;
                                          padding-left: 0;
                                          font-weight: 900;
                                          border-bottom-left-radius: 5px;
                                          border-top-left-radius: 5px;
                                          align-self: center;
                                          border-left-width: 1px;
                                          border-right-width: 1px;
                                          border-bottom-width: 1px;
                                          border-top-width: 1px;
                                          padding-right: 0;
                                          width: 100%;
                                          padding-top: 15px;
                                          border-top-right-radius: 5px
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-btn-e1c41f8.a-e-cont .a-btn svg {
                                          height: 20px
                                        }
                                      }

                                      .a-c-cont-e1c41f8>.a-e-cont {
                                        border-top-left-radius: 0;
                                        margin-bottom: 20px;
                                        border-style: hidden;
                                        margin-top: 20px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-e1c41f8>.a-e-cont {
                                          margin-left: 20px;
                                          margin-right: 20px;
                                          margin-bottom: 15px;
                                          margin-top: 20px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-3191f80 {
                                          order: 12
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-3191f80 p:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-3191f80 p {
                                        text-align: center;
                                        font-family: "Nunito Sans", sans-serif
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-3191f80 p {
                                          text-align: center;
                                          font-weight: 900;
                                          font-size: 17px
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-3191f80>.a-e-cont {
                                          margin-top: 10px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-320413c {
                                          order: 12
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-320413c p:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-320413c p {
                                        text-align: center;
                                        font-family: "Nunito Sans", sans-serif
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-320413c p {
                                          font-size: 17px;
                                          font-weight: 900;
                                          text-align: center
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-320413c>.a-e-cont {
                                          margin-bottom: 25px;
                                          margin-top: 5px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-ef95177 {
                                          order: 11
                                        }
                                      }

                                      .atomicat-image-ef95177 img {
                                        width: 223px
                                      }

                                      @media screen and (max-width:480px) {
                                        .atomicat-image-ef95177 img {
                                          width: 206px
                                        }
                                      }

                                      .a-c-cont-ef95177>.a-e-cont {
                                        padding-right: 24px;
                                        padding-left: 24px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-ef95177>.a-e-cont {
                                          margin-bottom: 15px
                                        }
                                      }
                                    


                    @media screen and (max-width:480px) {
                      .atomicat-container-b159e11>.a-o-cont {
                        padding-right: 0;
                        padding-left: 0
                      }
                    }

                    .atomicat-container-b159e11>.a-o-cont>.a-cont {
                      flex-direction: column
                    }

                    .a-b-cont .atomicat-container-b159e11.a-b-o-cont {
                      border-color: #c5c5c5;
                      border-image: unset 1;
                      border-style: solid;
                      background-size: cover;
                      background-repeat: no-repeat;
                      background-position: center;
                      width: 100%
                    }

                    @media screen and (max-width:480px) {
                      .a-b-cont .atomicat-container-b159e11.a-b-o-cont {
                        border-bottom-right-radius: 20px;
                        border-top-width: 3px;
                        border-bottom-left-radius: 20px;
                        border-bottom-width: 3px;
                        border-left-width: 3px;
                        border-right-width: 3px;
                        border-top-right-radius: 20px;
                        border-top-left-radius: 20px;
                        width: 100%
                      }
                    }
                  


                          .atomicat-container-084916c>.a-o-cont {
                            padding-top: 0;
                            padding-right: 0;
                            padding-bottom: 0;
                            padding-left: 0
                          }

                          .atomicat-container-084916c>.a-o-cont>.a-cont {
                            column-gap: 32px;
                            flex-direction: row;
                            row-gap: 32px
                          }

                          .a-b-cont .atomicat-container-084916c.a-b-o-cont {
                            background-size: cover;
                            background-repeat: no-repeat;
                            background-position: center;
                            width: 100%
                          }

                          @media screen and (max-width:480px) {
                            .a-b-cont .atomicat-container-084916c.a-b-o-cont {
                              border-bottom-left-radius: 35px;
                              border-top-left-radius: 35px;
                              border-bottom-right-radius: 35px;
                              border-top-right-radius: 35px;
                              background: #fff
                            }
                          }
                        


                                .atomicat-container-5c926b6>.a-o-cont {
                                  padding-top: 0;
                                  padding-right: 0;
                                  padding-bottom: 0;
                                  padding-left: 0
                                }

                                .atomicat-container-5c926b6>.a-o-cont>.a-cont {
                                  flex-direction: column
                                }

                                @media screen and (max-width:480px) {
                                  .atomicat-container-5c926b6>.a-o-cont>.a-cont {
                                    max-width: 1600px
                                  }
                                }

                                .a-b-cont .atomicat-container-5c926b6.a-b-o-cont {
                                  border-bottom-width: 1px;
                                  border-left-width: 1px;
                                  border-top-width: 1px;
                                  border-bottom-right-radius: 35px;
                                  border-right-width: 1px;
                                  border-top-right-radius: 35px;
                                  border-style: hidden;
                                  border-color: unset;
                                  border-image: linear-gradient(131deg, rgba(243, 122, 1, 1) 0%, rgba(237, 103, 4, 1) 100%) 1;
                                  border-bottom-left-radius: 35px;
                                  border-top-left-radius: 35px;
                                  background: rgba(253, 226, 185, .35);
                                  background-size: cover;
                                  background-repeat: no-repeat;
                                  background-position: center;
                                  width: 100%
                                }

                                @media screen and (max-width:480px) {
                                  .a-b-cont .atomicat-container-5c926b6.a-b-o-cont {
                                    border-bottom-width: 2px;
                                    order: 0;
                                    border-left-width: 2px;
                                    border-top-width: 2px;
                                    border-bottom-right-radius: 20px;
                                    border-right-width: 2px;
                                    border-top-right-radius: 20px;
                                    border-bottom-left-radius: 20px;
                                    border-top-left-radius: 20px;
                                    background: #fff
                                  }
                                }
                              


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-6584ea5 {
                                          order: 0
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-6584ea5 h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-6584ea5 h3 {
                                        text-transform: none;
                                        background-image: unset;
                                        font-size: 20px;
                                        color: #000;
                                        text-align: center
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-6584ea5 h3 {
                                          font-size: 31px;
                                          font-weight: 900
                                        }
                                      }

                                      .a-c-cont-6584ea5>.a-e-cont {
                                        margin-top: 20px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-6584ea5>.a-e-cont {
                                          margin-top: 25px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-fd89858 {
                                          order: 1
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-fd89858 h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-fd89858 h3 {
                                        text-align: center;
                                        background-image: unset;
                                        color: #5d5d5d;
                                        font-size: 14px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-fd89858 h3 {
                                          font-weight: 900;
                                          font-size: 20px
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-fd89858>.a-e-cont {
                                          margin-bottom: 10px;
                                          margin-top: 0
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-ab0ee3f {
                                          order: 2
                                        }
                                      }

                                      .atomicat-image-ab0ee3f img {
                                        width: 66%;
                                        height: 100%
                                      }

                                      @media screen and (max-width:480px) {
                                        .atomicat-image-ab0ee3f img {
                                          width: 84%
                                        }
                                      }

                                      .a-c-cont-ab0ee3f>.a-e-cont {
                                        margin-top: 24px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-ab0ee3f>.a-e-cont {
                                          padding-bottom: 0;
                                          margin-right: 10px;
                                          margin-top: 0
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-8bfdf7b {
                                          order: 2
                                        }
                                      }

                                      .atomicat-image-8bfdf7b img {
                                        width: 66%;
                                        height: 100%
                                      }

                                      @media screen and (max-width:480px) {
                                        .atomicat-image-8bfdf7b img {
                                          width: 55%
                                        }
                                      }

                                      .a-c-cont-8bfdf7b>.a-e-cont {
                                        margin-top: 24px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-8bfdf7b>.a-e-cont {
                                          margin-bottom: 0;
                                          margin-top: 0;
                                          padding-top: 0;
                                          padding-right: 0
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-4056fc1 {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-4056fc1 .a-divider-w .a-divider-s {
                                        border: 1px solid #c2c2c2
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-4056fc1 .a-divider-w .a-divider-s {
                                          width: 92%;
                                          margin-left: auto;
                                          margin-right: auto
                                        }
                                      }

                                      @media screen and (max-width:480px) {

                                        .a-e-cont.atomicat-divider-4056fc1 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:after,
                                        .a-e-cont.atomicat-divider-4056fc1 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:before,
                                        .a-e-cont.atomicat-divider-4056fc1 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-end:before,
                                        .a-e-cont.atomicat-divider-4056fc1 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-start:after {
                                          width: 92%
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-4056fc1 .a-divider-w {
                                          padding-bottom: 7px;
                                          padding-top: 7px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-eec5c5e {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-eec5c5e h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-eec5c5e h3 {
                                        font-size: large;
                                        background-image: unset;
                                        text-align: center;
                                        color: #000;
                                        text-transform: uppercase
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-eec5c5e h3 {
                                          font-size: 17px;
                                          font-weight: 900
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-8d70240 {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-divider-8d70240 .a-divider-w .a-divider-s {
                                        border: 1px solid #c2c2c2
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-8d70240 .a-divider-w .a-divider-s {
                                          width: 92%;
                                          margin-left: auto;
                                          margin-right: auto
                                        }
                                      }

                                      @media screen and (max-width:480px) {

                                        .a-e-cont.atomicat-divider-8d70240 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:after,
                                        .a-e-cont.atomicat-divider-8d70240 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-center:before,
                                        .a-e-cont.atomicat-divider-8d70240 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-end:before,
                                        .a-e-cont.atomicat-divider-8d70240 .a-divider-w .a-divider-s.a-divider-s-element.a-divider-s-start:after {
                                          width: 92%
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-divider-8d70240 .a-divider-w {
                                          padding-bottom: 7px;
                                          padding-top: 7px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-cf2c762 {
                                          order: 4
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-cf2c762 h3:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-cf2c762 h3 {
                                        background-image: unset;
                                        text-align: center;
                                        color: #000;
                                        text-transform: uppercase;
                                        font-size: large
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-cf2c762 h3 {
                                          font-size: 17px;
                                          font-weight: 900
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-953ed76 {
                                          order: 7
                                        }
                                      }

                                      .a-btn-953ed76.a-e-cont .a-btn:hover {
                                        color: #000;
                                        animation-play-state: paused;
                                        background: linear-gradient(180deg, #ffe100 33%, #fdcd17 56%)
                                      }

                                      .a-btn-953ed76.a-e-cont .a-btn {
                                        font-size: 14px;
                                        border-bottom-right-radius: 100px;
                                        padding-bottom: 16px;
                                        gap: 11px;
                                        padding-left: 32px;
                                        background: linear-gradient(180deg, #ffe100 33%, #fdcd17 56%);
                                        border-bottom-left-radius: 100px;
                                        color: #000;
                                        border-top-left-radius: 100px;
                                        align-self: center;
                                        font-family: "Nunito Sans", sans-serif;
                                        padding-right: 32px;
                                        width: 83%;
                                        padding-top: 16px;
                                        border-top-right-radius: 100px;
                                        border-color: #d6a900;
                                        border-image: unset 1;
                                        border-style: solid
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-btn-953ed76.a-e-cont .a-btn {
                                          font-size: 24px;
                                          border-bottom-right-radius: 5px;
                                          padding-bottom: 15px;
                                          gap: 15px;
                                          padding-left: 0;
                                          font-weight: 900;
                                          border-bottom-left-radius: 5px;
                                          border-top-left-radius: 5px;
                                          align-self: center;
                                          border-left-width: 1px;
                                          border-right-width: 1px;
                                          border-bottom-width: 1px;
                                          border-top-width: 1px;
                                          padding-right: 0;
                                          width: 100%;
                                          padding-top: 15px;
                                          border-top-right-radius: 5px
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-btn-953ed76.a-e-cont .a-btn svg {
                                          height: 20px
                                        }
                                      }

                                      .a-c-cont-953ed76>.a-e-cont {
                                        border-top-left-radius: 0;
                                        margin-bottom: 20px;
                                        border-style: hidden;
                                        margin-top: 20px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-953ed76>.a-e-cont {
                                          margin-left: 20px;
                                          margin-right: 20px;
                                          margin-bottom: 15px;
                                          margin-top: 20px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-7c374ef {
                                          order: 12
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-7c374ef p:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-7c374ef p {
                                        text-align: center;
                                        font-family: "Nunito Sans", sans-serif
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-7c374ef p {
                                          text-align: center;
                                          font-weight: 900;
                                          font-size: 17px
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-7c374ef>.a-e-cont {
                                          margin-top: 10px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-29fc5e6 {
                                          order: 12
                                        }
                                      }

                                      .a-e-cont.atomicat-heading-title-29fc5e6 p:hover {
                                        -webkit-text-fill-color: unset
                                      }

                                      .a-e-cont.atomicat-heading-title-29fc5e6 p {
                                        text-align: center;
                                        font-family: "Nunito Sans", sans-serif
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-e-cont.atomicat-heading-title-29fc5e6 p {
                                          font-size: 17px;
                                          font-weight: 900;
                                          text-align: center
                                        }
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-29fc5e6>.a-e-cont {
                                          margin-bottom: 25px;
                                          margin-top: 5px
                                        }
                                      }
                                    


                                      @media screen and (max-width:480px) {
                                        .a-c-cont-4cfdb61 {
                                          order: 11
                                        }
                                      }

                                      .atomicat-image-4cfdb61 img {
                                        width: 223px
                                      }

                                      @media screen and (max-width:480px) {
                                        .atomicat-image-4cfdb61 img {
                                          width: 206px
                                        }
                                      }

                                      .a-c-cont-4cfdb61>.a-e-cont {
                                        padding-right: 24px;
                                        padding-left: 24px
                                      }

                                      @media screen and (max-width:480px) {
                                        .a-c-cont-4cfdb61>.a-e-cont {
                                          margin-bottom: 15px
                                        }
                                      }
                                    


        .atomicat-container-6aaba0b>.a-o-cont {
          padding-top: 3%;
          padding-bottom: 5%
        }

        @media screen and (max-width:480px) {
          .atomicat-container-6aaba0b>.a-o-cont {
            padding-top: 10%;
            padding-bottom: 10%
          }
        }

        .atomicat-container-6aaba0b>.a-o-cont>.a-cont {
          flex-direction: row
        }

        @media screen and (max-width:480px) {
          .atomicat-container-6aaba0b>.a-o-cont>.a-cont {
            max-width: 1600px
          }
        }

        .a-b-cont .atomicat-container-6aaba0b.a-b-o-cont {
          margin-bottom: 0;
          margin-top: 0;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center
        }
      


              .atomicat-container-8969105>.a-o-cont>.a-cont {
                flex-direction: column
              }

              .a-b-cont .atomicat-container-8969105.a-b-o-cont {
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
                width: 100%
              }

              @media screen and (max-width:480px) {
                .a-b-cont .atomicat-container-8969105.a-b-o-cont {
                  width: 100%
                }
              }
            


                    .atomicat-container-e89455e>.a-o-cont {
                      padding-top: 0;
                      padding-right: 0;
                      padding-bottom: 0;
                      padding-left: 0
                    }

                    .atomicat-container-e89455e>.a-o-cont>.a-cont {
                      column-gap: 24px;
                      flex-direction: row;
                      row-gap: 24px
                    }

                    @media screen and (max-width:480px) {
                      .atomicat-container-e89455e>.a-o-cont>.a-cont {
                        max-width: 1012px
                      }
                    }

                    .a-b-cont .atomicat-container-e89455e.a-b-o-cont {
                      margin-top: 0;
                      margin-bottom: 0;
                      background-size: cover;
                      background-repeat: no-repeat;
                      background-position: center
                    }
                  


                          .atomicat-container-9f32289>.a-o-cont {
                            padding-top: 70px;
                            padding-right: 0;
                            padding-bottom: 0;
                            padding-left: 0
                          }

                          @media screen and (max-width:480px) {
                            .atomicat-container-9f32289>.a-o-cont {
                              padding-top: 0;
                              padding-right: 16px;
                              padding-bottom: 0;
                              padding-left: 16px
                            }
                          }

                          .atomicat-container-9f32289>.a-o-cont>.a-cont {
                            flex-direction: column
                          }

                          .a-b-cont .atomicat-container-9f32289.a-b-o-cont {
                            border-bottom-left-radius: 0;
                            border-right-width: 4px;
                            border-color: #c5fca3;
                            border-style: hidden;
                            border-top-right-radius: 0;
                            border-top-left-radius: 0;
                            border-top-width: 0;
                            border-bottom-right-radius: 0;
                            border-left-width: 4px;
                            border-bottom-width: 0;
                            box-shadow: 0 0 0 0 #dedede;
                            background: #fff;
                            background-size: cover;
                            background-repeat: no-repeat;
                            background-position: center
                          }
                        


                                .a-e-cont.atomicat-heading-title-91894e9 p:hover {
                                  -webkit-text-fill-color: unset
                                }

                                .a-e-cont.atomicat-heading-title-91894e9 p {
                                  font-size: 40px;
                                  text-transform: capitalize;
                                  font-weight: 800;
                                  text-align: center
                                }

                                @media screen and (max-width:480px) {
                                  .a-e-cont.atomicat-heading-title-91894e9 p {
                                    font-size: 22px;
                                    font-weight: 800;
                                    text-align: center
                                  }
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-91894e9>.a-e-cont {
                                    margin-bottom: 16px
                                  }
                                }
                              


                                .a-ac-f46a7f0 .atomicat-content {
                                  font-size: 15px;
                                  color: #3e3e3e;
                                  line-height: 23px;
                                  font-weight: 500;
                                  background: #fff
                                }

                                @media screen and (max-width:480px) {
                                  .a-ac-f46a7f0 .atomicat-content {
                                    font-size: 16px
                                  }
                                }

                                .a-ac-f46a7f0 .atomicat-content .a-c-text {
                                  color: #3e3e3e
                                }

                                .a-ac-f46a7f0 .atomicat-title {
                                  font-weight: 800;
                                  color: #000;
                                  background: #fff
                                }

                                @media screen and (max-width:480px) {
                                  .a-ac-f46a7f0 .atomicat-title {
                                    font-size: 18px
                                  }
                                }

                                .a-ac-f46a7f0 .a-ac-t-active {
                                  color: #006eff
                                }

                                .a-ac-f46a7f0 .a-ac-c .a-ac-i {
                                  border-top-left-radius: 0;
                                  border-top-width: 0;
                                  border-style: solid;
                                  border-color: #e6e6e6;
                                  border-bottom-right-radius: 0;
                                  border-bottom-width: 1px;
                                  border-left-width: 0;
                                  border-right-width: 0;
                                  border-top-right-radius: 0;
                                  border-bottom-left-radius: 0
                                }

                                .a-ac-f46a7f0 .a-ac-tg svg {
                                  height: 13px;
                                  color: #676767
                                }

                                @media screen and (max-width:480px) {
                                  .a-c-cont-f46a7f0>.a-e-cont {
                                    margin-bottom: 0;
                                    padding-bottom: 0
                                  }
                                }
                              


        .atomicat-container-e1536c1>.a-o-cont>.a-cont {
          flex-direction: row
        }

        .a-b-cont .atomicat-container-e1536c1.a-b-o-cont {
          background-position: center
        }

        @media screen and (max-width:480px) {
          .a-b-cont .atomicat-container-e1536c1.a-b-o-cont {
            background: #f5f5f5;
            background-size: cover;
            background-repeat: no-repeat
          }
        }
      


              .atomicat-container-5aa13c8>.a-o-cont>.a-cont {
                flex-direction: column
              }

              .a-b-cont .atomicat-container-5aa13c8.a-b-o-cont {
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
                width: 100%
              }

              @media screen and (max-width:480px) {
                .a-b-cont .atomicat-container-5aa13c8.a-b-o-cont {
                  width: 100%
                }
              }
            


                    .a-e-cont.atomicat-heading-title-745b43c p:hover {
                      -webkit-text-fill-color: unset
                    }

                    .a-e-cont.atomicat-heading-title-745b43c p {
                      background-image: unset;
                      color: #8f8f8f;
                      font-weight: 600
                    }

                    @media screen and (max-width:480px) {
                      .a-e-cont.atomicat-heading-title-745b43c p {
                        line-height: 17px;
                        text-align: center;
                        font-size: 11px
                      }
                    }

                    @media screen and (max-width:480px) {
                      .a-c-cont-745b43c>.a-e-cont {
                        margin-left: 20px;
                        margin-bottom: 10px;
                        margin-right: 20px;
                        margin-top: 20px
                      }
                    }
                  


                    .a-e-cont.atomicat-heading-title-ae23b7f p:hover {
                      -webkit-text-fill-color: unset
                    }

                    .a-e-cont.atomicat-heading-title-ae23b7f p {
                      text-align: center;
                      color: #686868;
                      font-weight: 800;
                      background-image: unset
                    }

                    @media screen and (max-width:480px) {
                      .a-e-cont.atomicat-heading-title-ae23b7f p {
                        line-height: 17px;
                        text-align: center;
                        font-size: 11px
                      }
                    }

                    @media screen and (max-width:480px) {
                      .a-c-cont-ae23b7f>.a-e-cont {
                        margin-bottom: 20px;
                        margin-left: 10px;
                        margin-top: 10px;
                        margin-right: 10px
                      }
                    }
                  