.stylingblock-content-wrapper, 
.stylingblock-content-wrapper tbody, 
.stylingblock-content-wrapper tr, 
.stylingblock-content-wrapper td {
  display: block;
}

.core {
  width: 100%;
  min-width: calc(100% - 20px);
  max-width: 100%;
  display: flex;
  z-index: 999;
  flex-shrink: 0;
  box-sizing: border-box;
  flex-direction: column;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
  position: absolute;
  background-color: #fff;
  height: 90px;
}

.core.fixed {
  position: fixed;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.4);
  height: 100px;
  border-bottom: none !important;
}

.appBar {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  position: relative;
  align-items: center;
  transition: opacity 0.2s ease-in;
  justify-content: center;
  max-width: 1380px;
}

.brandImg > a {
  display: flex;
}

.brandImg img {
  width: 156px;
}

@media (max-width: 960px) {
  .brandImg img {
    width: 140px;
  }
}

@media (max-width: 600px) {
  .core {
    height: 60px;
  }
  .brandImg img {
    width: 115px;
  }
}

.banner-container {
  background-color: #fff;
  padding-top: 90px;
  min-height: 100vh;
}

.banner-core {
  position: relative;
  display: flex;
  justify-content: center;
  max-height: calc(100vh - 90px);
}

.banner-core img {
  width: 100%;
  object-fit: cover;
}

.banner-wrapper {
  color: #fff;
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  padding: 90px 40px 60px 40px;
  z-index: 9;
  position: absolute;
  max-width: 1720px;
  justify-content: space-between;
}

.banner-layer {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}

.banner-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.banner-info p {
  text-transform: uppercase;
  font-size: 14px;
}

.banner-info h3 {
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.167;
}

.banner-line {
  width: 65px;
  height: 4px;
  background-color: #fff;
  margin-top: 25px;
}

.banner-description p {
  max-width: 400px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.banner-description span {
  font-weight: 500;
}

.contact-form {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px;
  width: 400px;
  box-shadow: 5px 10px 25px rgba(0, 0, 0, 0.15);
  height: fit-content;
}

.form-content {
  text-align: center;
  color: #000;
}

.form-content h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 16px;
  text-align: left;
}

.form-field label {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color:rgba(0, 0, 0, 0.06);
}

.form-checkbox {
  margin: 10px 0;
  text-align: left;
  display: flex;
}

.form-checkbox input {
  width: 14px;
  height: 14px;
}

.form-checkbox label {
  font-size: 14px;
  display: inline-block;
  margin-left: 8px;
}

.form-checkbox a {
  color: #000;
  text-decoration: underline;
}

.submit-button {
  background-color: #25d366;
  color: #fff;
  border: none;
  padding: 15px 20px;
  font-size: 21px;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-button:hover {
  background-color: #1da851;
}

@media (max-width: 600px) {
  .contact-form {
    width: 100%;
    padding: 20px;
  }

  .form-content h4 {
    font-size: 20px;
  }

  .form-field label,
  .form-checkbox label {
    font-size: 12px;
  }

  .submit-button {
    font-size: 14px;
  }
}

.heading-core {
  margin: auto;
  padding: 40px 0;
  max-width: 540px;
  text-align: center;
}

.heading-core h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #000;
}

.heading-core p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

@media (max-width: 600px) {
  .heading-core h4 {
    font-size: 20px;
  }

  .heading-core p {
    font-size: 14px;
  }
}

.cards {
  margin: auto;
  display: flex;
  padding: 0 40px;
  flex-wrap: wrap;
  max-width: 1720px;
  justify-content: center;
}

.card {
  color: #fff;
  width: 19%;
  height: 100%;
  /* min-height: 400px; */
  overflow: hidden;
  position: relative;
  margin-right: 20px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.card:last-of-type {
  margin-right: 0;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
  max-width: 100%;
}

.card .layer {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(0, 0, 0, 1) 100%
  );
  transition: 0.4s;
}

.card .content {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  padding: 25px;
  position: absolute;
  flex-direction: column;
  justify-content: flex-end;
}

.card .content p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0;
  font-size: 14px !important;
  max-height: 0;
  transition: ease 0.5s;
}

.card:hover p {
  opacity: 1;
  max-height: 100%;
}

.card:hover img {
  transform: scale(1.05);
}

.card .content :first-child {
  text-transform: uppercase;
}

.card .content h5 {
  font-size: 21px;
  letter-spacing: -0.4px;
  font-weight: 400;
  line-height: 1.334;
}

.swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
}

.core-footer {
  background-color: #161618;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.core-footer .container {
  margin: auto;
  max-width: 1380px;
}
.core-footer .container .firstLine {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.core-footer .container .firstLine .work-with-us a p {
  color: #ffffff;
  width: 100%;
  border: 1px solid #ffffff;
  display: flex;
  padding: 17px 38px;
  max-width: 230px;
  align-items: center;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1rem;
}

.core-footer .container .firstLine .work-with-us a p img {
  width: 25px;
  filter: brightness(0) invert(1);
}

.core-footer .container .firstLine .work-with-us:hover {
  color: #161618;
  transition: 0.15s;
  background-color: #ffffff;
  p {
    color: #161618;
  }
  img {
    filter: brightness(0) invert(0);
  }
}

.core-footer .container .secondLine {
  display: flex;
  margin-top: 50px;
}

.core-footer .container .secondLine .address-container {
  display: flex;
  flex-wrap: wrap;
  text-align: start;
  margin-bottom: 60px;
  justify-content: space-between;
}

.core-footer .container .secondLine .social-links {
  margin-left: 135px;
  justify-content: start;
}

.core-footer .container .secondLine .address-container .title {
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 35px;
}

.core-footer .container .secondLine .social-links .title {
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 35px;
  line-height: 1.5;
}

.core-footer .container .secondLine .social-links a {
  margin-right: 15px;
}

.core-footer .container .secondLine .social-links a:last-child {
  margin-right: 0px;
}

.core-footer .container .secondLine .social-links img {
  width: 27px;
}

.core-footer .container .secondLine .address-container .address {
  width: 30%;
}

.core-footer .container .secondLine .address-container .address a {
  text-decoration: none;
}

.core-footer .container .secondLine .address-container .address a p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.core-footer .container .secondLine .address-container .address a :first-child {
  margin-bottom: 7px;
}

.core-footer .container .secondLine .address-container .address a :last-child {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
}

.core-footer .container .secondLine .address-container .address p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.core-footer .container .link {
  width: fit-content;
  margin: 30px auto 0 auto;
  display: block;
}

.core-footer .container .link img {
  width: 15px;
}

.container-slider {
  margin: auto;
  padding: 80px 20px 20px 20px;
  position: relative;
  max-width: 1400px;
  text-align: center;
}

.container-slider h3 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.167;
  font-family: "Volvo Broad Pro", sans-serif;
}

.slick-prev,
.slick-next {
  content:'' !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 40px !important;
  height: 40px !important;
  border: none;
  cursor: pointer;
}

.slick-prev:before,
.slick-next:before{
  display: none !important;
}

.slick-prev {
  left: 0px !important;
}

.slick-next {
  right: 0px !important;
}

.slick-next {
  background: url('https://image.marketing.volvodimas.com.br/lib/fe2e11747364057e7d1575/m/1/0b4d0d4a-4100-47d2-bfc6-b79011e7b394.png') center / 100% auto !important;
}

.slick-prev {
  background: url('https://image.marketing.volvodimas.com.br/lib/fe2e11747364057e7d1575/m/1/f901db4a-3067-4188-9c1d-64cca4a36b70.png') center / 100% auto !important;
}

.slick-slide img {
  margin: auto;
  padding: 30px 0 80px 0;
  display: block;
  width: 100%;
  max-width: 1100px;
}

.container-slider .switch-colors {
  margin: auto;
  display: flex;
  max-width: 1100px;
}

.container-slider .switch-colors .box-color {
  margin-right: 5px;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 5px;
  transition: 0.2s;
  border-radius: 50%;
}

.container-slider .switch-colors .box-color:hover {
  border-color: #1c6bba;
}

.container-slider .switch-colors .box-color div {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.container-slider .switch-colors .box-color .black {
  background-color: rgb(45, 41, 38);
}
.container-slider .switch-colors .box-color .gray {
  background-color: rgb(137, 144, 152);
}
.container-slider .switch-colors .box-color .blue {
  background-color: rgb(103, 127, 156);
}
.container-slider .switch-colors .box-color .silver {
  background-color: rgb(209, 209, 210);
}
.container-slider .switch-colors .box-color .white {
  background-color: rgb(242, 242, 242);
}
.container-slider .switch-colors .box-color .green {
  background-color: rgb(152, 160, 151);
}
.container-slider .switch-colors .box-color .dusk {
  background-color: rgb(225, 220, 216);
}
.container-slider .switch-colors .box-color .stone {
  background-color: rgb(16, 24, 32);
}
.container-slider .switch-colors .box-color.active {
  border-color: #1c6bba !important;
}

.container-photos {
  margin: auto;
  padding: 0 40px;
  max-width: 1720px;
}

.container-photos .heading {
  margin: auto;
  padding: 40px 0;
  max-width: 540px;
  text-align: center;
}

.container-photos .heading h4 {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.235;
}

.container-photos .heading p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.container-photos .switch {
  margin: auto;
  display: flex;
  max-width: 280px;
  justify-content: space-between;
}

.container-photos .switch div {
  color: rgba(0, 0, 0, 0.5);
  padding-bottom: 10px;
  font-weight: bold;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: color 0.3s ease-out;
  font-size: 14px;
  font-weight: 400;
}

.container-photos .switch div:hover {
  color: #000;
}

.container-photos .switch div.active {
  color: #000;
  padding-bottom: 10px;
  font-weight: bold;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: color 0.3s ease-out;
  font-weight: 700;
}

.container-photos .switch div:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: #000;
  transition: width 0.3s ease-out, left 0.3s ease-out;
}

.container-photos .switch div.active:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: width 0.3s ease-out, left 0.3s ease-out;
}

.container-photos .content-external {
  height: auto;
  opacity: 1;
  padding: 40px 0;
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
  justify-content: space-between;
}

.container-photos .content-external div {
  width: 32.6%;
  cursor: pointer;
  margin: 0 0 15px 0;
  overflow: hidden;
}

.container-photos .content-external div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
  max-width: 100%;
}

.container-photos .content-external div img:hover {
  transform: scale(1.03);
}

.container-photos .content-external div:first-of-type {
  width: 100%;
  height: 305px;
}

.container-photos .content-internal {
  height: auto;
  opacity: 1;
  padding: 40px 0;
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
  justify-content: space-between;
}

.container-photos .content-internal div {
  width: 32.6%;
  cursor: pointer;
  margin: 0 0 15px 0;
  overflow: hidden;
}

.container-photos .content-internal div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
  max-width: 100%;
}

.container-photos .content-internal div img:hover {
  transform: scale(1.03);
}

.container-photos .content-internal :first-child {
  width: 100%;
  height: 305px;
}

.container-photos .container-video {
  justify-content: center;
  height: auto;
  opacity: 1;
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.container-photos .container-video .content {
  width: 1000px;
  height: 565px;
  cursor: pointer;
  margin: 0 0 15px 0;
  overflow: hidden;
}

.container-photos .container-video .content .cover {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("https://image.marketing.volvodimas.com.br/lib/fe2e11747364057e7d1575/m/1/0dc8ec7a-8c27-467e-981d-6435d9ece9a1.jpg");
  margin: 0 0 15px 0;
  overflow: hidden;
}

.container-photos .container-video .content .cover img {
  width: 72px;
}
.container-photos .container-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.content-external,
.content-internal,
.container-video {
  display: none;
}
.switch div.active {
  color: #000;
  font-weight: bold;
  position: relative;
}

.switch div.active:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #000;
  transition: width 0.3s ease-out, left 0.3s ease-out;
}

.switch div.active:hover:before {
  width: 100%;
  left: 0;
}

.input-filled {
  display: block;
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border: none;
  border-radius: 4px 4px 0 0;
  background-color: rgba(0, 0, 0, 0.06);
  transition: background-color 0.3s, border-bottom 0.3s;
}

.input-filled:focus {
  outline: none;
  background-color: rgba(0, 0, 0, 0.09);
  border-bottom: 2px solid #1976d2;
}

.input-label {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  display: block;
  margin-bottom: 4px;
}

.container-whatsapp {
  left: 0;
  width: auto;
  bottom: -110px;
  display: flex;
  padding: 0 25px;
  z-index: 99;
  position: fixed;
  transition: cubic-bezier(0.4, 1, 1, 1) 0.2s;
  align-items: flex-end;
  flex-direction: column;
  gap: 10px;
}

.container-whatsapp a {
  width: 260px;
  bottom: 0;
  cursor: pointer;
  height: 50px;
  display: flex;
  position: relative;
  box-shadow: 0 8px 12px 0px rgba(0, 0, 0, 0.2);
  transition: cubic-bezier(0.4, 1, 1, 1) 0.2s;
  align-items: center;
  background-color: #fff;
}

.container-whatsapp a figure {
  width: 50px;
  height: 100%;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
  background: #25d366;
}

.container-whatsapp a:last-of-type figure:first-of-type {
  background: #1c6bba;
}

.container-whatsapp a p {
  color: rgba(0, 0, 0, 0.87);
  font-size: 14px;
  margin-left: 20px;
}

.container-whatsapp a p b {
  font-weight: 700;
}

.container-whatsapp a img {
  width: 14px;
  height: auto;
  margin-left: 5px;
}

.container-whatsapp a figure img {
  width: 19px;
}

.success {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 30px;
  margin-top: -90px;
}

.success p:first-child {
  font-size: 14px;
  text-transform: uppercase;
}

.success p {
  font-size: 15px;
}

.success h2 {
  font-size: 30px;
  font-weight: 500;
  padding: 10px 0 15px 0;
}

.success button {
  width: 330px;
  border: 0;
  background-color: #1c6bba;
  color: #fff;
  margin-top: 35px;
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.switch-models {
  margin: auto;
  max-width: 1330px;
}

.switch-models .models {
  display: flex;
  justify-content: space-between;
}

.switch-models .box-model {
  width: 100%;
  height: 50px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex !important;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
}

.switch-models .box-model:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ebebeb;
  transition: width 0.3s ease-out, center 0.3s ease-out;
}

.switch-models .box-model:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease-out;
}

.switch-models .box-model.active:after {
  transform: scaleX(1);
}

@media (max-width: 1439px) {
  .banner-container {
    min-height: auto;
  }
  .banner-wrapper {
    padding: 40px 25px;
  }
  .card {
    width: 30%;
  }
  .container-slider {
    padding: 50px 50px 0 50px;
    max-width: 1100px;
  }
  .slick-slide img {
    max-width: 750px;
  }
  .container-slider .switch-colors {
    max-width: 750px;
  }
  .core-footer {
    padding: 40px 60px;
  }
  .core-footer .container .secondLine .social-links {
    margin-left: 65px;
  }
}

@media (max-width: 1279px) {
  .contact-form {
    box-shadow: 5px 10px 25px rgba(0, 0, 0, 0.15);
    width: 100%;
    margin: auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .banner-content {
    min-height: 340px;
  }
  .banner-core {
    height: 550px;
    margin-bottom: 30px;
  }
  .banner-description p {
    display: none;
  }
  .banner-info h3 {
    font-size: 35px;
  }
  .banner-info p {
    font-size: 12px;
  }
  .form-content {
    width: 100%;
    margin: auto;
    max-width: 600px;
  }
}

@media (max-width: 1023px) {
  .banner-wrapper {
    flex-direction: column;
  }

  .banner-core {
    height: 550px;
    margin-bottom: 340px;
  }

  .card {
    width: 47%;
  }
  .core-footer .container .firstLine {
    flex-direction: column;
    gap: 50px;
  }

  .core-footer .container .secondLine {
    flex-direction: column;
    justify-content: center;
  }

  .core-footer .container .secondLine .address-container {
    text-align: center;
    margin-bottom: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .core-footer .container .secondLine .address-container .address {
    width: 100%;
    margin-bottom: 40px;
  }

  .core-footer .container .secondLine .social-links {
    margin-left: 0;
    flex-direction: row;
    justify-content: center;
  }

  .core-footer .container .link {
    margin: 0 auto 0 auto;
  }
  .container-photos {
    padding: 0px;
  }
  .container-photos .heading {
    padding: 40px 25px;
  }

  .container-photos .container-video {
    padding: 30px 25px;
  }
  .container-photos .container-video .content {
    width: 100%;
    height: 270px;
  }
}

@media (max-width: 767px) {
  .desktop {
    display: none;
  }

  .banner-container {
    padding-top: 60px;
  }

  .cards {
    margin-right: 80px;
  }

  .swiper-container {
    height: 350px;
  }

  .swiper-slide {
    width: 100% !important;
    height: 250px !important;
    transition: all 0.3s ease;
    z-index: 1;
  }

  .swiper-slide .card .content h5 {
    opacity: 0;
  }

  .swiper-slide-active {
    width: 100% !important;
    height: 310px !important;
    z-index: 2;
  }
  .card .layer {
    background: hsla(0, 0%, 100%, 0.4);
  }
  .card {
    width: 100% !important;
    height: 100%;
    transition: all 0.3s ease !important;
  }

  .swiper-slide-active .card {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .swiper-slide-active .card .layer {
    background: linear-gradient(
      to bottom,
      transparent 40%,
      rgba(0, 0, 0, 1) 100%
    );
  }

  .swiper-slide-active .card p {
    opacity: 1;
    max-height: 100%;
  }

  .swiper-slide-active .card .content h5 {
    opacity: 1;
  }

  .card .content h5 {
    font-size: 18px;
  }

  .card .content p {
    font-size: 13px !important;
  }
  .slick-prev {
    left: -25px !important;
  }
  .slick-next {
    right: -25px !important;
  }

  .slick-next:before,
  .slick-prev:before {
    display: inline-block;
    transform: scale(0.6);
  }

  .container-slider .switch-colors .box-color div {
    width: 23px;
    height: 23px;
  }

  .container-slider .switch-colors .box-color {
    margin-right: 2px;
  }

  .container-photos .content-external div {
    width: 49%;
    height: auto;
  }

  .container-photos .content-external div:first-of-type {
    width: 49%;
    height: auto;
  }

  .container-photos .content-internal div {
    width: 49%;
    height: auto;
  }

  .container-photos .content-internal div img {
    width: 100%;
    height: auto;
  }

  .container-photos .content-internal :first-child {
    width: 49%;
    height: auto;
  }
  .container-photos .content-internal :first-child img {
    width: 100%;
    height: 100%;
  }
  .container-photos .container-video {
    min-height: 370px;
  }

  .switch-models .models {
    gap: 10px;
  }

  .switch-models .models .box-model {
    font-size: 0px;
    height: 20px;
  }

  .slick-slide img {
    padding: 30px 0 0 0;
  }
}

@media (max-width: 600px) {
  .core {
    .core p:first-child {
      font-size: 12px;
    }

    .core p {
      font-size: 14px;
    }

    .core h2 {
      font-size: 24px;
    }
  }
}
