:root {
   --white: #FFFFFF;
   --black: #000000;
   --danger: #dc3545;
   --danger-hover: #a92835;
   --danger-text: #FFFFFF;
   --success: #09ae61;
   --success-hover: #0c7544;
   --success-text: #FFFFFF;
   --business: #FFD712;
   --business-hover: #e5c10b;
   --business-text: #FFFFFF;
   --info: #0abce0;
   --info-hover: #079fbd;
   --info-text: #FFFFFF;
   --warning: #ffc107;
   --warning-hover: #dba505;
   --warning-text: #FFFFFF;
   --primary-50: #FFFFFF;
   --primary-100: #f8dfb6;
   --primary-200: #ffa516;
   --primary-300: #ffa516;
   --primary-400: #cc8311;
   --primary-500: #032069;
   --primary-600: #000f34;
   --primary-700: #ff7800;
   --primary-800: #cc6000;
   --primary-900: #3f1e02;
   --complementary-50: #e9e9e9;
   --complementary-200: #83858a;
   --complementary-500: #26262c;
   --complementary-900: #26262c;
   --family-primary: 'Open Sans', sans-serif;
   --family-secondary: 'Open Sans', sans-serif;
}

* {
   font-family: var(--family-primary);
}

/* Utilities Components */
.scroll-hidden::-webkit-scrollbar {
   display: none;
}

.bg-danger {
   background-color: var(--danger);
}

.bg-warning {
   background-color: var(--warning);
}

.bg-info {
   background-color: var(--info);
}

.bg-success {
   background-color: var(--success);
}

.bg-business {
   background-color: var(--business);
}

.bg-black {
   background-color: var(--black);
}

.bg-white {
   background-color: var(--white);
}

.bg-gradient {
   background: linear-gradient(to bottom, var(--primary-200), var(--primary-600), var(--primary-700));
}

.title-h1,
.title-h1-white,
.title-black {
   font-family: var(--family-primary);
   font-weight: 700;
   font-size: 2.7rem;
   line-height: 1.2;
   letter-spacing: -0.03em;
   word-spacing: 0.06rem;
}

.title-h1 {
   color: var(--primary-500);
}

.title-h1-white {
   color: var(--white);
}

.title-h1-black {
   color: var(--complementary-900);
}

.title,
.title-white,
.title-black {
   font-family: var(--family-primary);
   font-weight: 700;
   font-size: 2.2rem;
   line-height: 1.2;
   letter-spacing: -0.03em;
   word-spacing: 0.06rem;
}

.title {
   color: var(--complementary-900);
}

.title-white {
   color: var(--white);
}

.title-black {
   color: var(--black);
}

.subtitle,
.subtitle-white,
.subtitle-black {
   font-family: var(--family-primary);
   font-weight: 500;
   font-size: 1.5rem;
   line-height: 1.5;
   letter-spacing: -0.025em;
}

.subtitle {
   color: var(--complementary-500);
}

.subtitle-white {
   color: var(--white);
}

.subtitle-black {
   color: var(--black);
}

.txt-hat,
.txt-hat-white,
.txt-hat-black {
   font-family: var(--family-secondary);
   font-weight: 500;
   font-size: 1.125rem;
   line-height: 1.5;
}

.txt-hat {
   color: var(--primary-700);
}

.txt-hat-white {
   color: var(--white);
}

.txt-hat-black {
   color: var(--black);
}

.description,
.description-white,
.description-black {
   font-family: var(--family-secondary);
   font-weight: 500;
   font-size: 1rem;
   line-height: 1.5;
   letter-spacing: -0.03rem;
}

.description {
   color: var(--complementary-200);
}

.description-white {
   color: var(--white);
}

.description-black {
   color: var(--black);
}

.txt,
.txt-white,
.txt-black {
   font-family: var(--family-secondary);
   font-weight: 400;
   font-size: 1rem;
   line-height: 1.5;
   letter-spacing: -0.03rem;
}

.txt {
   color: var(--complementary-500);
}

.txt-white {
   color: var(--white);
}

.txt-black {
   color: var(--black);
}

.btn,
.btn-full,
.btn-full-2,
.btn-white,
.btn-dark,
.btn-business,
.btn-warning,
.btn-danger,
.btn-success,
.btn-info,
.btn-full-business {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   padding: 0.4rem 0.9rem;
   border-width: 1px;
   transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
   transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
   transition-duration: 200ms;
   border-radius: 6px;
}

.btn-label {
   display: block;
   margin: 0 auto;
   text-align: center;
   font-size: 0.875rem;
   line-height: 1.3rem;
   font-family: var(--family-secondary);
   font-weight: 500;
}

.btn {
   border-color: var(--primary-500);
}

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

.btn .btn-label {
   color: var(--primary-500);
}

.btn-full {
   background-color: var(--primary-500);
   border-color: var(--primary-500);
}

.btn-full:hover {
   background-color: var(--primary-600);
   border-color: var(--primary-600);
}

.btn-full .btn-label {
   color: var(--white);
}

.btn-full-business {
   background-color: var(--primary-800);
   border-color: var(--primary-900);
}

.btn-full-business:hover {
   background-color: var(--primary-900);
   border-color: var(--primary-900);
}

.btn-full-business .btn-label {
   color: var(--black);
}

.btn-full-2 {
   background-color: var(--primary-700);
   border-color: var(--primary-700);
}

.btn-full-2:hover {
   background-color: var(--primary-800);
   border-color: var(--primary-800);
}

.btn-full-2 .btn-label {
   color: var(--white);
}

.btn-white {
   border-color: var(--white);
}

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

.btn-white .btn-label {
   color: var(--white);
}

.btn-dark {
   border-color: var(--black);
   background-color: var(--black);
}

.btn-dark:hover {
   background-color: #1a1a1a;
}

.btn-dark .btn-label {
   color: var(--white);
}

.btn-white-full {
   border-color: var(--white);
   background-color: var(--white);
}

.btn-white-full:hover {
   background-color: #f5f5f5;
}

.btn-white-full .btn-label {
   color: var(--primary-500);
}

.btn-business {
   background-color: var(--business);
   border-color: var(--business);
}

.btn-business:hover {
   background-color: var(--business-hover);
   border-color: var(--business-hover);
}

.btn-business .btn-label {
   color: var(--black);
}

.btn-success {
   background-color: var(--success);
   border-color: var(--success);
}

.btn-success:hover {
   background-color: var(--success-hover);
   border-color: var(--success-hover);
}

.btn-success .btn-label {
   color: var(--success-text);
}

.btn-info {
   background-color: var(--info);
   border-color: var(--info);
}

.btn-info:hover {
   background-color: var(--info-hover);
   border-color: var(--info-hover);
}

.btn-info .btn-label {
   color: var(--info-text);
}

.btn-warning {
   background-color: var(--warning);
   border-color: var(--warning);
}

.btn-warning:hover {
   background-color: var(--warning-hover);
   border-color: var(--warning-hover);
}

.btn-warning .btn-label {
   color: var(--warning-text);
}

.btn-danger {
   background-color: var(--danger);
   border-color: var(--danger);
}

.btn-danger:hover {
   background-color: var(--danger-hover);
   border-color: var(--danger-hover);
}

.btn-danger .btn-label {
   color: var(--danger-text);
}

.link,
.link-active {
   display: inline-block;
   font-family: var(--family-secondary);
   font-size: 1.125rem;
   line-height: 1;
   color: var(--complementary-200);
   font-weight: 500;
}

.link-active {
   color: var(--primary-500);
}

.link::after {
   content: '';
   display: block;
   width: 0;
   height: 2px;
   background: var(--primary-500);
   transition: all 0.55s;
}

.link-active::after {
   content: '';
   display: block;
   width: 100%;
   height: 2px;
   background: var(--primary-500);
   transition: all 0.55s;
}

.link-white-active,
.link-white {
   display: inline-block;
   font-family: var(--family-secondary);
   font-size: 1.125rem;
   line-height: 1;
   color: var(--white);
   font-weight: 400;
}

.link-white::after {
   content: '';
   display: block;
   width: 0;
   height: 1px;
   background: var(--white);
   transition: all 0.55s;
   margin-top: -3px;
}

.link-white-active::after {
   content: '';
   display: block;
   width: 100%;
   height: 1px;
   background: var(--white);
   transition: all 0.55s;
   margin-top: -3px;
}

.link:hover::after,
.link-white:hover::after {
   width: 100%;
}

.modal-overlay {
   background: rgba(0, 0, 0, 0.5);
}

/* WhatsApp */
.whatsapp-button {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background-color: var(--success);
   transition: all 0.3s;
   /* Verde do WhatsApp */
   width: 60px;
   height: 60px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
   cursor: pointer;
   z-index: 1000;
}

.whatsapp-button:hover {
   background-color: var(--success-hover);

}

.whatsapp-button a {
   text-decoration: none;
}

.whatsapp-button svg {
   width: 30px;
   height: 30px;
}


/* Animations */
.animate-image:hover {
   -moz-transform: scale(1.2);
   -webkit-transform: scale(1.2);
   transform: scale(1.2);
}

/* Utilities */
.inpdddut[type="file"] {
   padding: 10px;
   margin-bottom: 20px;
   border: none;
   background-color: var(--primary-500);
   border-radius: 5px;
   width: 100%;
   max-width: 280px;
   cursor: pointer;
}

.inpdddut[type="submit"] {
   padding: 10px 20px;
   background-color: var(--primary-500);
   color: #fff;
   border: none;
   border-radius: 5px;
   cursor: pointer;
}

.inpdddut[type="submit"]:hover {
   background-color: var(--primary-500);
}

.txt-line::before {
   content: '';
   display: inline-block;
   margin-right: 10px;
   height: 1px;
   background: rgb(229, 231, 235);
   width: full;
}

.txt-line::after {
   content: '';
   display: inline-block;
   margin-left: 10px;
   height: 1px;
   background: rgb(229, 231, 235);
   width: full;
}

.vertical-line::before {
   content: '';
   display: block;
   width: 2px;
   height: 60px;
   background-color: #fff;
   margin-bottom: 15px;
}

.label:focus {
   outline: 0;
   border-color: var(--primary-500);
   box-shadow: 0 0 0 4px var(--primary-400);
}

.label input[type="checkbox"],
.label input[type="radio"] {
   clip: rect(0 0 0 0);
   clip-path: inset(100%);
   height: 1px;
   overflow: hidden;
   position: absolute;
   white-space: nowrap;
   width: 1px;
}

.label input[type="checkbox"]:checked+span,
.label input[type="radio"]:checked+span {
   border-color: var(--primary-500);
   background-color: var(--primary-400);
   z-index: 1;
   color: var(--primary-500);
}

.label span {
   cursor: pointer;
   background-color: #fff;
   padding: 0.375em .75em;
   position: relative;
   margin-left: .0625em;
   border: 1px solid #9ca3af;
   letter-spacing: .05em;
   color: #3e4963;
   text-align: center;
   transition: background-color .5s ease;
}

.label span {
   border-radius: 0.375rem
      /* 6px */
   ;
}

.custum-file-upload {
   height: 170px;
   max-width: 260px;
   display: flex;
   flex-direction: column;
   gap: 20px;
   cursor: pointer;
   align-items: center;
   justify-content: center;
   border: 2px dashed var(--primary-500);
   background-color: #fff;
   padding: 1.5rem;
   border-radius: 10px;
}

.custum-file-upload .icon {
   display: flex;
   align-items: center;
   justify-content: center;
}

.custum-file-upload .icon svg {
   height: 60px;
   fill: var(--primary-500);
}

.custum-file-upload .text {
   display: flex;
   align-items: center;
   justify-content: center;
}

.custum-file-upload .text span {
   font-weight: 400;
   color: var(--complementary-500);
}

.custum-file-upload input {
   display: none;
}

/* Inputs */
.checkbox-apple {
   position: relative;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
}

.checkbox-apple .label {
   position: absolute;
   top: 0;
   left: 0;
   width: 50px;
   height: 25px;
   border-radius: 50px;
   background: linear-gradient(to bottom, #b3b3b3, #e6e6e6);
   cursor: pointer;
   transition: all 0.3s ease;
}

.checkbox-apple .label:after {
   content: '';
   position: absolute;
   top: 1px;
   left: 1px;
   width: 23px;
   height: 23px;
   border-radius: 50%;
   background-color: #fff;
   box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
   transition: all 0.3s ease;
}

.checkbox-apple input[type="checkbox"]:checked+.label {
   background: linear-gradient(to bottom, #4cd964, #5de24e);
}

.checkbox-apple input[type="checkbox"]:checked+.label:after {
   transform: translateX(25px);
}

.checkbox-apple .label:hover {
   background: linear-gradient(to bottom, #b3b3b3, #e6e6e6);
}

.checkbox-apple .label:hover:after {
   box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.yep {
   position: absolute;
   top: 0;
   left: 0;
   width: 50px;
}

/* Searchbar */
.searchbar {
   background-color: transparent;
   width: 100%;
   display: block;
   outline: 2px solid transparent;
   outline-offset: 2px;
   font-size: 1rem;
   line-height: 1.5rem;
   color: var(--complementary-500);
}

.searchbar::placeholder {
   font-size: 1rem;
   line-height: 1.5rem;
   color: var(--complementary-500);
}

.searchbar::-webkit-search-cancel-button {
   display: none;
}

/* Media queries */
@media (min-width: 640px) {

   .btn,
   .btn,
   .btn-full,
   .btn-full-2,
   .btn-white,
   .btn-business,
   .btn-warning,
   .btn-danger,
   .btn-success,
   .btn-info {
      padding: 0.4rem 1.2rem;
   }

   .btn-label,
   .btn-label-white,
   .btn-label,
   .btn-label-white,
   .btn-label-business,
   .btn-label-warning,
   .btn-label-danger,
   .btn-label-success,
   .btn-label-info {
      font-size: 1rem;
      line-height: 1.4rem;
   }
}

@media (min-width: 768px) {

   .title-h1,
   .title-h1-white {
      font-size: 3.75rem;
      line-height: 1.15;
   }

   .title,
   .title-white {
      font-size: 3rem;
      line-height: 1.1;
   }

   .subtitle,
   .subtitle-white {
      font-size: 1.785rem;
      line-height: 1.4;
   }

   .description,
   .description-white,
   .description-black {
      font-size: 1.2rem;
      line-height: 1.5;
   }
}

/* PLUGINS */
/* Article */
.entry {
   margin: 0;
   padding: 50px 50px 50px 50px;
   background-color: #ffffff;
   max-width: 700px;
   margin-left: auto;
   margin-right: auto;
}


ul[dir="rtl"],
ul[dir="rtl"] ul,
ul[dir="rtl"] ol,
ol[dir="rtl"],
ol[dir="rtl"] ul,
ol[dir="rtl"] ol {
   margin-left: 0;
   margin-right: 16px;
}

ul[dir="rtl"] li,
ol[dir="rtl"] li {
   text-align: right;
}

nav ul,
nav ol {
   margin-left: 0;
   list-style: none;
}

dt {
   font-weight: bold;
}

dd+dt {
   margin-top: 0.25em;
}

pre {
   overflow: auto;
   white-space: pre;
   font-family: var(--family-secondary);
   font-size: 90%;
   line-height: 1.5;
   color: var(--primary-500);
   background-color: #F5F6F8;
   padding: 1em;
   border: 1px solid transparent;
   border-radius: 4px;
}

pre code {
   padding: 0;
   border: 0;
   font-size: 100%;
   display: block;
   line-height: inherit;
}

blockquote {
   color: var(--primary-500);
   font-style: italic;
   font-weight: normal;
   padding: 0;
   background: transparent;
}

blockquote p {
   color: var(--primary-500);
   font-size: 24px;
   line-height: 1.5;
}

blockquote p+p {
   margin-top: 0.5em;
}

blockquote cite,
figcaption cite {
   font-style: inherit;
   font-size: 12px;
   line-height: 1.5;
   color: rgba(36, 55, 66, 0.7);
}

caption {
   text-align: left;
   font-style: normal;
}

table {
   border-collapse: collapse;
   border-spacing: 0;
   width: 100%;
   empty-cells: show;
}

td,
th {
   text-align: left;
   vertical-align: top;
   font-size: 95%;
   line-height: 1.5;
   padding: 0.75em;
   border: 1px solid rgba(206, 210, 212, 0.5);
}

th {
   font-weight: normal;
}

thead th {
   font-weight: bold;
}

address {
   font-style: normal;
}

dfn,
abbr {
   font-size: 95%;
}

time,
cite,
small,
var,
kbd,
code {
   font-size: 85%;
}

sup,
sub {
   font-size: 65%;
}

var,
code,
kbd {
   display: inline-block;
   font-family: var(--family-secondary);
   font-style: normal;
   line-height: 1;
   vertical-align: baseline;
}

kbd,
code {
   border-radius: 4px;
}

kbd {
   color: rgba(3, 25, 39, 0.85);
   border: 1px solid rgba(3, 25, 39, 0.15);
   padding: .2em .4em;
}

var {
   color: rgba(3, 25, 39, 0.85);
}

code {
   color: rgba(3, 25, 39, 0.85);
   position: relative;
   top: -1px;
   border: 1px solid transparent;
   background-color: #F5F6F8;
   padding: .2em .4em .2em;
}

pre code {
   background: none;
}

mark {
   background-color: yellow;
   color: black;
}

b,
strong {
   font-weight: 600;
}

dfn,
abbr[title] {
   letter-spacing: .01em;
   text-transform: uppercase;
   text-decoration: none;
   border-bottom: 1px dotted rgba(0, 0, 0, 0.4);
   cursor: help;
}

cite {
   font-style: italic;
}

sub,
sup {
   line-height: 1;
   margin-left: 2px;
}

sub {
   vertical-align: sub;
}

sup {
   vertical-align: super;
}

figure>img,
figure>iframe,
figure>pre,
figure>div {
   vertical-align: middle;
}

figure figcaption {
   display: block;
   font-style: normal;
   margin-top: 0.25em;
   font-size: 12px;
   line-height: 1.5;
}

hr {
   position: relative;
   line-height: 1;
   background: none;
   border: none;
   text-align: left;
   margin-top: 1.5em;
   margin-bottom: 1.5em;
   height: 10px;
}

hr:before {
   content: '';
   position: absolute;
   top: 50%;
}

hr:before {
   width: 100%;
   max-width: 100%;
   margin-top: -0.5px;
   border-top-width: 1px;
   border-top-style: solid;
   border-top-color: rgba(206, 210, 212, 0.6);
}

.card {
   background-color: #F5F6F8;
   padding: 24px;
   border-radius: 4px;
}

.align-left {
   text-align: left;
}

.align-center {
   text-align: center;
}

.align-center img {
   margin-left: auto;
   margin-right: auto;
   max-width: 80%;
}

.align-center figcaption {
   text-align: center;
   margin-left: auto;
   margin-right: auto;
}

.align-right {
   text-align: right;
}

.align-right img {
   margin-left: auto;
}

.align-right figcaption {
   text-align: right;
   margin-left: auto;
}

.align-justify {
   text-align: justify;
}

.float-left {
   float: left;
   margin-right: 1em;
   margin-bottom: 1em;
   max-width: 200px;
}

.float-right {
   float: right;
   margin-left: 1em;
   margin-bottom: 1em;
   max-width: 200px;
}

.valign-top {
   align-items: start;
}

.valign-middle {
   align-items: center;
}

.valign-bottom {
   align-items: end;
}

.outset-right {
   position: relative;
   width: calc(100% + 50px);
   max-width: calc(100% + 50px);
   transform: translateX(50px) translate3d(0, 0, 0);
   left: -50px;
}

.outset-left {
   width: calc(100% + 50px);
   max-width: calc(100% + 50px);
   transform: translateX(-50px) translate3d(0, 0, 0);
}

.outset-both {
   position: relative;
   width: calc(100% + 100px);
   max-width: calc(100% + 100px);
   transform: translateX(-50%) translate3d(0, 0, 0);
   left: 50%;
}

.grid-article {
   display: grid;
   grid-template-columns: repeat(12, 1fr);
   grid-column-gap: 24px;
   grid-row-gap: 24px;
}

.grid-article+.grid-article {
   margin-top: 24px;
}

.grid-gutterless {
   grid-column-gap: 0;
}

.grid-gapless {
   grid-row-gap: 0;
}

.grid-gapless+.grid-article {
   margin-top: 0;
}

.grid-auto {
   grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
}

.grid-1 {
   grid-template-columns: repeat(1, 1fr);
}

.grid-2 {
   grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
   grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
   grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
   grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
   grid-template-columns: repeat(6, 1fr);
}

.grid-7 {
   grid-template-columns: repeat(7, 1fr);
}

.grid-8 {
   grid-template-columns: repeat(8, 1fr);
}

.grid-9 {
   grid-template-columns: repeat(9, 1fr);
}

.grid-10 {
   grid-template-columns: repeat(10, 1fr);
}

.grid-11 {
   grid-template-columns: repeat(11, 1fr);
}

.grid-12 {
   grid-template-columns: repeat(12, 1fr);
}

.column-1 {
   grid-column-end: span 1;
}

.column-2 {
   grid-column-end: span 2;
}

.column-3 {
   grid-column-end: span 3;
}

.column-4 {
   grid-column-end: span 4;
}

.column-5 {
   grid-column-end: span 5;
}

.column-6 {
   grid-column-end: span 6;
}

.column-7 {
   grid-column-end: span 7;
}

.column-8 {
   grid-column-end: span 8;
}

.column-9 {
   grid-column-end: span 9;
}

.column-10 {
   grid-column-end: span 10;
}

.column-11 {
   grid-column-end: span 11;
}

.column-12 {
   grid-column-end: span 12;
}

@media only screen and (max-width: 1023px) {
   .grid-1-md {
      grid-template-columns: repeat(1, 1fr);
   }

   .grid-2-md {
      grid-template-columns: repeat(2, 1fr);
   }

   .grid-3-md {
      grid-template-columns: repeat(3, 1fr);
   }

   .grid-4-md {
      grid-template-columns: repeat(4, 1fr);
   }

   .grid-5-md {
      grid-template-columns: repeat(5, 1fr);
   }

   .grid-6-md {
      grid-template-columns: repeat(6, 1fr);
   }

   .grid-7-md {
      grid-template-columns: repeat(7, 1fr);
   }

   .grid-8-md {
      grid-template-columns: repeat(8, 1fr);
   }

   .grid-9-md {
      grid-template-columns: repeat(9, 1fr);
   }

   .grid-10-md {
      grid-template-columns: repeat(10, 1fr);
   }

   .grid-11-md {
      grid-template-columns: repeat(11, 1fr);
   }

   .grid-12-md {
      grid-template-columns: repeat(12, 1fr);
   }
}

@media only screen and (max-width: 767px) {

   .grid-article,
   .grid-auto {
      grid-template-columns: repeat(1, 1fr);
   }

   .column {
      grid-column-end: span 1;
   }

   .column:empty {
      display: none;
   }

   .grid-1-sm {
      grid-template-columns: repeat(1, 1fr);
   }

   .grid-2-sm {
      grid-template-columns: repeat(2, 1fr);
   }

   .grid-3-sm {
      grid-template-columns: repeat(3, 1fr);
   }

   .grid-4-sm {
      grid-template-columns: repeat(4, 1fr);
   }

   .grid-5-sm {
      grid-template-columns: repeat(5, 1fr);
   }

   .grid-6-sm {
      grid-template-columns: repeat(6, 1fr);
   }

   .grid-7-sm {
      grid-template-columns: repeat(7, 1fr);
   }

   .grid-8-sm {
      grid-template-columns: repeat(8, 1fr);
   }

   .grid-9-sm {
      grid-template-columns: repeat(9, 1fr);
   }

   .grid-10-sm {
      grid-template-columns: repeat(10, 1fr);
   }

   .grid-11-sm {
      grid-template-columns: repeat(11, 1fr);
   }

   .grid-12-sm {
      grid-template-columns: repeat(12, 1fr);
   }
}

@media all and (-ms-high-contrast: none) {
   .column {
      flex: 1;
      margin-left: 24px;
      margin-bottom: 24px;
   }
}

@media all and (-ms-high-contrast: none) and (max-width: 767px) {
   .column {
      margin-left: 0;
   }
}

figure img {
   border-radius: 4px;
}

figure figcaption {
   margin-top: 12px;
   max-width: 240px;
   color: rgba(3, 25, 39, 0.5);
}

blockquote p {
   font-style: normal;
}


/* GDPR Cookie dialog */
.gdprcookie {
   position: fixed;
   color: var(--complementary-200);
   font-family: var(--family-secondary);
   font-size: .8em;
   line-height: 1.5em;
   right: 1.5rem;
   bottom: 1.5rem;
   max-width: 29em;
   padding: 2.2rem;
   background: #fff;
   box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
   border-radius: 8px;
   border: 1px solid #eee;
   z-index: 1000;
}

.gdprcookie h1,
.gdprcookie h2 {
   font-size: 1.2em;
   margin-bottom: .5rem;
   color: var(--primary-500);
   font-family: var(--family-primary);
   font-weight: 500;
}

.gdprcookie h2 {
   margin-top: 8px;
}

.gdprcookie p {
   margin-top: 5px;
}

.gdprcookie a {
   color: inherit;
}

a.gdpr-link {
   font-family: var(--family-secondary);
   font-weight: 400;
   color: var(--primary-500);
   text-decoration: underline;
   transition: all 200ms;
}

a.gdpr-link:hover {
   color: var(--primary-600);
}


/* GDPR Cookie buttons */

.gdprcookie-buttons {
   margin-top: 20px;
}

.gdprcookie-buttons button {
   color: white;
   font-family: inherit;
   font-size: 1em;
   padding: .4rem 0.6rem;
   border-radius: .15rem;
   cursor: pointer;
}

.gdprcookie-buttons button:first-child {
   background-color: var(--primary-500);
   color: #fff;
   font-weight: 500;
   margin-right: 10px;
   transition: color 0.2s;
}

.gdprcookie-buttons button:first-child:hover {
   background-color: var(--primary-600);
}

.gdprcookie-buttons button:last-child {
   background-color: none;
   color: var(--primary-500);
   font-weight: 400;
   margin-right: 10px;
   text-decoration-line: underline;
}

.gdprcookie-buttons button:last-child:hover {
   color: var(--primary-600);
}


.gdprcookie-buttons button:disabled {
   color: #bbb;
}

.gdprcookie-buttons button:disabled:hover {
   color: #bbb;
}

input[type="checkbox"] {
   accent-color: var(--primary-500);
}

.gdprcookie-buttons .acceptWhenCloseLGPD {
   background: url(../imgs/svg/close-primary.svg);
   position: absolute;
   margin: 15px;
   top: 0;
   right: 0;
   transition: 0.2s;
   width: 29px;
   height: 29px;
}

.gdprcookie-buttons .acceptWhenCloseLGPD:hover {
   opacity: 0.8;
}

/* GDPR Cookie types */

.gdprcookie-types ul {
   overflow: hidden;
   padding: 0;
   margin: 0 0 1rem;
}

.gdprcookie-types li {
   display: block;
   list-style: none;
   float: left;
   width: 50%;
   padding: 0;
   margin: 0;
}

.gdprcookie-types input[type=checkbox] {
   margin-right: .25rem;
}

@media (max-width: 640px) {
   .gdprcookie {
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      max-width: inherit;
      overflow-x: hidden;
      box-shadow: none;
      border-radius: 0px;
      border: none;
      border-top: 2px solid var(--primary-500);
      border-radius: none;
   }
}

/* Lightbox */
body.lb-disable-scrolling {
   overflow: hidden;
}

.lightboxOverlay {
   position: absolute;
   top: 0;
   left: 0;
   z-index: 9999;
   background-color: black;
   filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
   opacity: 0.8;
   display: none;
}

.lightbox {
   position: absolute;
   left: 0;
   width: 100%;
   z-index: 10000;
   text-align: center;
   line-height: 0;
   font-weight: normal;
   outline: none;
}

.lightbox .lb-image {
   display: block;
   height: auto;
   max-width: inherit;
   max-height: none;
   border-radius: 3px;
   border: 4px solid white;
}

.lightbox a img {
   border: none;
}

.lb-outerContainer {
   position: relative;
   zoom: 1;
   width: 250px;
   height: 250px;
   margin: 0 auto;
   border-radius: 4px;
   background-color: white;
}

.lb-outerContainer:after {
   content: "";
   display: table;
   clear: both;
}

.lb-loader {
   position: absolute;
   top: 43%;
   left: 0;
   height: 25%;
   width: 100%;
   text-align: center;
   line-height: 0;
}

.lb-cancel {
   display: block;
   width: 32px;
   height: 32px;
   margin: 0 auto;
   background: url(../imgs/lightbox/loading.gif) no-repeat;
}

.lb-nav {
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   z-index: 10;
}

.lb-container>.nav {
   left: 0;
}

.lb-nav a {
   outline: none;
   background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev,
.lb-next {
   height: 100%;
   cursor: pointer;
   display: block;
}

.lb-nav a.lb-prev {
   width: 34%;
   left: 0;
   float: left;
   background: url(../imgs/lightbox/prev.png) left 48% no-repeat;
   filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
   opacity: 0.4;
   -webkit-transition: opacity 0.6s;
   -moz-transition: opacity 0.6s;
   -o-transition: opacity 0.6s;
   transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
   filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
   opacity: 1;
}

.lb-nav a.lb-next {
   width: 64%;
   right: 0;
   float: right;
   background: url(../imgs/lightbox/next.png) right 48% no-repeat;
   filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
   opacity: 0.4;
   -webkit-transition: opacity 0.6s;
   -moz-transition: opacity 0.6s;
   -o-transition: opacity 0.6s;
   transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
   filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
   opacity: 1;
}

.lb-dataContainer {
   margin: 0 auto;
   padding-top: 5px;
   zoom: 1;
   width: 100%;
   border-bottom-left-radius: 4px;
   border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
   content: "";
   display: table;
   clear: both;
}

.lb-data {
   padding: 0 4px;
   color: #ccc;
}

.lb-data .lb-details {
   width: 85%;
   float: left;
   text-align: left;
   line-height: 1.1em;
}

.lb-data .lb-caption {
   font-size: 13px;
   font-weight: bold;
   line-height: 1em;
}

.lb-data .lb-caption a {
   color: #4ae;
}

.lb-data .lb-number {
   display: block;
   clear: left;
   padding-bottom: 1em;
   font-size: 12px;
   color: #999999;
}

.lb-data .lb-close {
   display: block;
   float: right;
   width: 30px;
   height: 30px;
   background: url(../imgs/lightbox/close.png) top right no-repeat;
   text-align: right;
   outline: none;
   filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
   opacity: 0.7;
   -webkit-transition: opacity 0.2s;
   -moz-transition: opacity 0.2s;
   -o-transition: opacity 0.2s;
   transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
   cursor: pointer;
   filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
   opacity: 1;
}

/* Swiper */

.swiper-with-thumbs .swiper-slide {
   text-align: center;
   font-size: 18px;
   background: #fff;
   display: flex;
   justify-content: center;
   align-items: center;
}

.swiper-with-thumbs .swiper-slide img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.swiper-with-thumbs .swiper {
   width: 100%;
   height: 160px;
   margin-left: auto;
   margin-right: auto;
}

.swiper-with-thumbs .swiper-slide {
   background-size: cover;
   background-position: center;
}

.swiper-with-thumbs .mySwiper2 {
   height: 80%;
   width: 100%;
}

.swiper-with-thumbs .mySwiper {
   height: 10%;
   box-sizing: border-box;
   padding: 10px 0;
}

.swiper-with-thumbs .mySwiper .swiper-slide {
   width: 25%;
   height: 100%;
   opacity: 0.4;
}

.swiper-with-thumbs .mySwiper .swiper-slide-thumb-active {
   opacity: 1;
}

.swiper-with-thumbs swiper-slide img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
}

:root {
   --swiper-theme-color: #032069
}

:host {
   position: relative;
   display: block;
   margin-left: auto;
   margin-right: auto;
   z-index: 1
}

.swiper {
   margin-left: auto;
   margin-right: auto;
   position: relative;
   overflow: hidden;
   overflow: clip;
   list-style: none;
   padding: 0;
   z-index: 1;
   display: block
}

.swiper-vertical>.swiper-wrapper {
   flex-direction: column
}

.swiper-wrapper {
   position: relative;
   width: 100%;
   height: 100%;
   z-index: 1;
   display: flex;
   transition-property: transform;
   transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
   box-sizing: content-box
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
   transform: translate3d(0px, 0, 0)
}

.swiper-horizontal {
   touch-action: pan-y
}

.swiper-vertical {
   touch-action: pan-x
}

.swiper-slide {
   flex-shrink: 0;
   width: 100%;
   height: 100%;
   position: relative;
   transition-property: transform;
   display: block
}

.swiper-slide-invisible-blank {
   visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
   height: auto
}

.swiper-autoheight .swiper-wrapper {
   align-items: flex-start;
   transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
   transform: translateZ(0);
   -webkit-backface-visibility: hidden;
   backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
   perspective: 1200px
}

.swiper-3d .swiper-wrapper {
   transform-style: preserve-3d
}

.swiper-3d {
   perspective: 1200px
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
   transform-style: preserve-3d
}

.swiper-css-mode>.swiper-wrapper {
   overflow: auto;
   scrollbar-width: none;
   -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
   display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
   scroll-snap-align: start start
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
   scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
   scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
   scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
   scroll-snap-align: none
}

.swiper-css-mode.swiper-centered>.swiper-wrapper::before {
   content: '';
   flex-shrink: 0;
   order: 9999
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
   scroll-snap-align: center center;
   scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
   margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
   height: 100%;
   min-height: 1px;
   width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
   margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before {
   width: 100%;
   min-width: 1px;
   height: var(--swiper-centered-offset-after)
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
   z-index: 10
}

.swiper-3d .swiper-slide-shadow {
   background: rgba(0, 0, 0, .15)
}

.swiper-3d .swiper-slide-shadow-left {
   background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-right {
   background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-top {
   background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-bottom {
   background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-lazy-preloader {
   width: 42px;
   height: 42px;
   position: absolute;
   left: 50%;
   top: 50%;
   margin-left: -21px;
   margin-top: -21px;
   z-index: 10;
   transform-origin: 50%;
   box-sizing: border-box;
   border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
   border-radius: 50%;
   border-top-color: transparent
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
   animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
   --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
   --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
   0% {
      transform: rotate(0deg)
   }

   100% {
      transform: rotate(360deg)
   }
}

.swiper-virtual .swiper-slide {
   -webkit-backface-visibility: hidden;
   backface-visibility: hidden;
   transform: translateZ(0)
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
   content: '';
   position: absolute;
   left: 0;
   top: 0;
   pointer-events: none
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
   height: 1px;
   width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
   width: 1px;
   height: var(--swiper-virtual-size)
}

:root {
   --swiper-navigation-size: 44px
}

.swiper-button-next,
.swiper-button-prev {
   position: absolute;
   top: var(--swiper-navigation-top-offset, 50%);
   width: 45px;
   height: 45px;
   margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
   z-index: 10;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--swiper-navigation-color, var(--complementary-500));
   background-color: var(--primary-100);
   padding: 10px;
   border-radius: 8px;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
   opacity: .35;
   cursor: auto;
   pointer-events: none
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
   opacity: 0;
   cursor: auto;
   pointer-events: none
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
   display: none !important
}

.swiper-button-next svg,
.swiper-button-prev svg {
   width: 100%;
   height: 100%;
   object-fit: contain;
   transform-origin: center
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
   transform: rotate(180deg)
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
   left: var(--swiper-navigation-sides-offset, 0px);
   right: auto
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
   right: var(--swiper-navigation-sides-offset, 0px);
   left: auto
}

.swiper-button-lock {
   display: none
}

.swiper-button-next:after,
.swiper-button-prev:after {
   font-family: swiper-icons;
   font-size: var(--swiper-navigation-size);
   text-transform: none !important;
   letter-spacing: 0;
   font-variant: initial;
   line-height: 1
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
   content: url(../imgs/svg/arrow-prev.svg);
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
   right: var(--swiper-navigation-sides-offset, 0px);
   left: auto
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
   content: url(../imgs/svg/arrow-next.svg);
}

.swiper-pagination {
   position: absolute;
   text-align: center;
   transition: .3s opacity;
   transform: translate3d(0, 0, 0);
   z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
   opacity: 0
}

.swiper-pagination-disabled>.swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
   display: none !important
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
   bottom: var(--swiper-pagination-bottom, 8px);
   top: var(--swiper-pagination-top, auto);
   left: 0;
   width: 100%
}

.swiper-pagination-bullets-dynamic {
   overflow: hidden;
   font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
   transform: scale(.33);
   position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
   transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
   transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
   transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
   transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
   transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
   transform: scale(.33)
}

.swiper-pagination-bullet {
   width: 30px;
   height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
   display: inline-block;
   background: var(--swiper-pagination-bullet-inactive-color, #000);
   opacity: var(--swiper-pagination-bullet-inactive-opacity, .4);
   border-radius: 7px;
}

button.swiper-pagination-bullet {
   border: none;
   margin: 0;
   padding: 0;
   box-shadow: none;
   -webkit-appearance: none;
   appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
   cursor: pointer
}

.swiper-pagination-bullet:only-child {
   display: none !important
}

.swiper-pagination-bullet-active {
   opacity: var(--swiper-pagination-bullet-opacity, 1);
   background: var(--primary-600);
   outline: #ebebeb 2px solid;
   border-radius: 7px;
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
   right: var(--swiper-pagination-right, 8px);
   left: var(--swiper-pagination-left, auto);
   top: 50%;
   transform: translate3d(0px, -50%, 0)
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
   margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
   display: block
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
   top: 50%;
   transform: translateY(-50%);
   width: 8px
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
   display: inline-block;
   transition: .2s transform, .2s top
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
   margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
   left: 50%;
   transform: translateX(-50%);
   white-space: nowrap
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
   transition: .2s transform, .2s left
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
   transition: .2s transform, .2s right
}

.swiper-pagination-fraction {
   color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
   background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));
   position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
   background: var(--swiper-pagination-color, var(--swiper-theme-color));
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   transform: scale(0);
   transform-origin: left top
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
   transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
   width: 100%;
   height: var(--swiper-pagination-progressbar-size, 4px);
   left: 0;
   top: 0
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical>.swiper-pagination-progressbar {
   width: var(--swiper-pagination-progressbar-size, 4px);
   height: 100%;
   left: 0;
   top: 0
}

.swiper-pagination-lock {
   display: none
}

.swiper-scrollbar {
   border-radius: var(--swiper-scrollbar-border-radius, 10px);
   position: relative;
   -ms-touch-action: none;
   background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, .1))
}

.swiper-scrollbar-disabled>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
   display: none !important
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
   position: absolute;
   left: var(--swiper-scrollbar-sides-offset, 1%);
   bottom: var(--swiper-scrollbar-bottom, 4px);
   top: var(--swiper-scrollbar-top, auto);
   z-index: 50;
   height: var(--swiper-scrollbar-size, 4px);
   width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%))
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical>.swiper-scrollbar {
   position: absolute;
   left: var(--swiper-scrollbar-left, auto);
   right: var(--swiper-scrollbar-right, 4px);
   top: var(--swiper-scrollbar-sides-offset, 1%);
   z-index: 50;
   width: var(--swiper-scrollbar-size, 4px);
   height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%))
}

.swiper-scrollbar-drag {
   height: 100%;
   width: 100%;
   position: relative;
   background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, .5));
   border-radius: var(--swiper-scrollbar-border-radius, 10px);
   left: 0;
   top: 0
}

.swiper-scrollbar-cursor-drag {
   cursor: move
}

.swiper-scrollbar-lock {
   display: none
}

.swiper-zoom-container {
   width: 100%;
   height: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
   max-width: 100%;
   max-height: 100%;
   object-fit: contain
}

.swiper-slide-zoomed {
   cursor: move;
   touch-action: none
}

.swiper .swiper-notification {
   position: absolute;
   left: 0;
   top: 0;
   pointer-events: none;
   opacity: 0;
   z-index: -1000
}

.swiper-free-mode>.swiper-wrapper {
   transition-timing-function: ease-out;
   margin: 0 auto
}

.swiper-grid>.swiper-wrapper {
   flex-wrap: wrap
}

.swiper-grid-column>.swiper-wrapper {
   flex-wrap: wrap;
   flex-direction: column
}

.swiper-fade.swiper-free-mode .swiper-slide {
   transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
   pointer-events: none;
   transition-property: opacity
}

.swiper-fade .swiper-slide .swiper-slide {
   pointer-events: none
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
   pointer-events: auto
}

.swiper-cube {
   overflow: visible
}

.swiper-cube .swiper-slide {
   pointer-events: none;
   -webkit-backface-visibility: hidden;
   backface-visibility: hidden;
   z-index: 1;
   visibility: hidden;
   transform-origin: 0 0;
   width: 100%;
   height: 100%
}

.swiper-cube .swiper-slide .swiper-slide {
   pointer-events: none
}

.swiper-cube.swiper-rtl .swiper-slide {
   transform-origin: 100% 0
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
   pointer-events: auto
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
   pointer-events: auto;
   visibility: visible
}

.swiper-cube .swiper-cube-shadow {
   position: absolute;
   left: 0;
   bottom: 0px;
   width: 100%;
   height: 100%;
   opacity: .6;
   z-index: 0
}

.swiper-cube .swiper-cube-shadow:before {
   content: '';
   background: #000;
   position: absolute;
   left: 0;
   top: 0;
   bottom: 0;
   right: 0;
   filter: blur(50px)
}

.swiper-cube .swiper-slide-next+.swiper-slide {
   pointer-events: auto;
   visibility: visible
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
   z-index: 0;
   -webkit-backface-visibility: hidden;
   backface-visibility: hidden
}

.swiper-flip {
   overflow: visible
}

.swiper-flip .swiper-slide {
   pointer-events: none;
   -webkit-backface-visibility: hidden;
   backface-visibility: hidden;
   z-index: 1
}

.swiper-flip .swiper-slide .swiper-slide {
   pointer-events: none
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
   pointer-events: auto
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
   z-index: 0;
   -webkit-backface-visibility: hidden;
   backface-visibility: hidden
}

.swiper-creative .swiper-slide {
   -webkit-backface-visibility: hidden;
   backface-visibility: hidden;
   overflow: hidden;
   transition-property: transform, opacity, height
}

.swiper-cards {
   overflow: visible
}

.swiper-cards .swiper-slide {
   transform-origin: center bottom;
   -webkit-backface-visibility: hidden;
   backface-visibility: hidden;
   overflow: hidden
}

/* Photoswipe */
.pswp {
   --pswp-bg: #000000;
   --pswp-placeholder-bg: #000000;


   --pswp-root-z-index: 100000;

   --pswp-preloader-color: rgba(215, 215, 215, 0.4);
   --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);

   /* defined via js:
   --pswp-transition-duration: 333ms; */

   --pswp-icon-color: #ededed;
   --pswp-icon-color-secondary: #ededed;
   --pswp-icon-stroke-color: #ededed;
   --pswp-icon-stroke-width: 2px;

   --pswp-error-text-color: var(--pswp-icon-color);
}


/*
    Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
 */

.pswp {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: var(--pswp-root-z-index);
   display: none;
   touch-action: none;
   outline: 0;
   opacity: 0.003;
   contain: layout style size;
   -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
   (it may be focused initially) */
.pswp:focus {
   outline: 0;
}

.pswp * {
   box-sizing: border-box;
}

.pswp img {
   max-width: none;
}

.pswp--open {
   display: block;
}

.pswp,
.pswp__bg {
   transform: translateZ(0);
   will-change: opacity;
}

.pswp__bg {
   opacity: 0.005;
   background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
   overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
   width: auto;
   height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
   cursor: -webkit-zoom-in;
   cursor: -moz-zoom-in;
   cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
   cursor: move;
   cursor: -webkit-grab;
   cursor: -moz-grab;
   cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
   cursor: -webkit-grabbing;
   cursor: -moz-grabbing;
   cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
   cursor: -webkit-zoom-out;
   cursor: -moz-zoom-out;
   cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
}

.pswp__item {
   /* z-index for fade transition */
   z-index: 1;
   overflow: hidden;
}

.pswp__hidden {
   display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
   pointer-events: none;
}

.pswp__content>* {
   pointer-events: auto;
}


/*
 
   PhotoSwipe UI
 
 */

/*
    Error message appears when image is not loaded
    (JS option errorMsg controls markup)
 */
.pswp__error-msg-container {
   display: grid;
}

.pswp__error-msg {
   margin: auto;
   font-size: 1em;
   line-height: 1;
   color: var(--pswp-error-text-color);
}

/*
 class pswp__hide-on-close is applied to elements that
 should hide (for example fade out) when PhotoSwipe is closed
 and show (for example fade in) when PhotoSwipe is opened
  */
.pswp .pswp__hide-on-close {
   opacity: 0.005;
   will-change: opacity;
   transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
   z-index: 10;
   /* always overlap slide content */
   pointer-events: none;
   /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
   opacity: 1;
   pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
   position: relative;
   display: block;
   width: 50px;
   height: 60px;
   padding: 0;
   margin: 0;
   overflow: hidden;
   cursor: pointer;
   background: none;
   border: 0;
   box-shadow: none;
   opacity: 0.85;
   -webkit-appearance: none;
   -webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
   transition: none;
   padding: 0;
   background: none;
   border: 0;
   box-shadow: none;
   opacity: 1;
}

.pswp__button:disabled {
   opacity: 0.3;
   cursor: auto;
}

.pswp__icn {
   fill: var(--pswp-icon-color);
   color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
   position: absolute;
   top: 14px;
   left: 9px;
   width: 32px;
   height: 32px;
   overflow: hidden;
   pointer-events: none;
}

.pswp__icn-shadow {
   stroke: var(--pswp-icon-stroke-color);
   stroke-width: var(--pswp-icon-stroke-width);
   fill: none;
}

.pswp__icn:focus {
   outline: 0;
}

/*
    div element that matches size of large image,
    large image loads on top of it,
    used when msrc is not provided
 */
div.pswp__img--placeholder,
.pswp__img--with-bg {
   background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 60px;
   display: flex;
   flex-direction: row;
   justify-content: flex-end;
   z-index: 10;

   /* allow events to pass through top bar itself */
   pointer-events: none !important;
}

.pswp__top-bar>* {
   pointer-events: auto;
   /* this makes transition significantly more smooth,
      even though inner elements are not animated */
   will-change: opacity;
}


/*
 
   Close button
 
 */
.pswp__button--close {
   margin-right: 6px;
}


/*
 
   Arrow buttons
 
 */
.pswp__button--arrow {
   position: absolute;
   top: 0;
   width: 75px;
   height: 100px;
   top: 50%;
   margin-top: -50px;
}

.pswp__button--arrow:disabled {
   display: none;
   cursor: default;
}

.pswp__button--arrow .pswp__icn {
   top: 50%;
   margin-top: -30px;
   width: 60px;
   height: 60px;
   background: none;
   border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
   display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
   visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
   visibility: visible;
}

.pswp__button--arrow--prev {
   right: auto;
   left: 0px;
}

.pswp__button--arrow--next {
   right: 0px;
}

.pswp__button--arrow--next .pswp__icn {
   left: auto;
   right: 14px;
   /* flip horizontally */
   transform: scale(-1, 1);
}

/*
 
   Zoom button
 
 */
.pswp__button--zoom {
   display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
   display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
   display: none;
}


/*
 
   Loading indicator
 
 */
.pswp__preloader {
   position: relative;
   overflow: hidden;
   width: 50px;
   height: 60px;
   margin-right: auto;
}

.pswp__preloader .pswp__icn {
   opacity: 0;
   transition: opacity 0.2s linear;
   animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
   opacity: 0.85;
}

@keyframes pswp-clockwise {
   0% {
      transform: rotate(0deg);
   }

   100% {
      transform: rotate(360deg);
   }
}


/*
 
   "1 of 10" counter
 
 */
.pswp__counter {
   height: 30px;
   margin-top: 15px;
   margin-inline-start: 20px;
   font-size: 14px;
   line-height: 30px;
   color: var(--pswp-icon-color);
   text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
   opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
   display: none;
}


/* Article */
html {
   box-sizing: border-box;
   -ms-text-size-adjust: 100%;
   -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
   box-sizing: inherit;
}

* {
   margin: 0;
   padding: 0;
   outline: none;
}

audio,
canvas,
video,
progress,
iframe {
   display: block;
   vertical-align: baseline;
}

fieldset,
iframe,
img {
   border: 0;
}

embed,
object,
img,
video {
   max-width: 100%;
   height: auto;
}

button,
[type="submit"] {
   -webkit-appearance: button;
}

[type="radio"],
[type="checkbox"] {
   vertical-align: middle;
   position: relative;
   bottom: 0.15em;
   margin-right: 2px;
}

input[type="search"],
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
   -webkit-appearance: none;
}

::-moz-focus-inner {
   border: none;
   padding: 0;
}

.entry {
   margin: 0;
   padding: 50px 50px 50px 50px;
   background-color: #ffffff;
   max-width: 700px;
   margin-left: auto;
   margin-right: auto;
}


ul[dir="rtl"],
ul[dir="rtl"] ul,
ul[dir="rtl"] ol,
ol[dir="rtl"],
ol[dir="rtl"] ul,
ol[dir="rtl"] ol {
   margin-left: 0;
   margin-right: 16px;
}

ul[dir="rtl"] li,
ol[dir="rtl"] li {
   text-align: right;
}

nav ul,
nav ol {
   margin-left: 0;
   list-style: none;
}

dt {
   font-weight: bold;
}

dd+dt {
   margin-top: 0.25em;
}

pre {
   overflow: auto;
   white-space: pre;
   font-family: var(--family-secondary);
   font-size: 90%;
   line-height: 1.5;
   color: var(--primary-500);
   background-color: #F5F6F8;
   padding: 1em;
   border: 1px solid transparent;
   border-radius: 4px;
}

pre code {
   padding: 0;
   border: 0;
   font-size: 100%;
   display: block;
   line-height: inherit;
}

blockquote {
   color: var(--primary-500);
   font-style: italic;
   font-weight: normal;
   padding: 0;
   background: transparent;
}

blockquote p {
   color: var(--primary-500);
   font-size: 24px;
   line-height: 1.5;
}

blockquote p+p {
   margin-top: 0.5em;
}

blockquote cite,
figcaption cite {
   font-style: inherit;
   font-size: 12px;
   line-height: 1.5;
   color: rgba(36, 55, 66, 0.7);
}

caption {
   text-align: left;
   font-style: normal;
}

table {
   border-collapse: collapse;
   border-spacing: 0;
   width: 100%;
   empty-cells: show;
}

td,
th {
   text-align: left;
   vertical-align: top;
   font-size: 95%;
   line-height: 1.5;
   padding: 0.75em;
   border: 1px solid rgba(206, 210, 212, 0.5);
}

th {
   font-weight: normal;
}

thead th {
   font-weight: bold;
}

address {
   font-style: normal;
}

dfn,
abbr {
   font-size: 95%;
}

time,
cite,
small,
var,
kbd,
code {
   font-size: 85%;
}

sup,
sub {
   font-size: 65%;
}

var,
code,
kbd {
   display: inline-block;
   font-family: var(--family-secondary);
   font-style: normal;
   line-height: 1;
   vertical-align: baseline;
}

kbd,
code {
   border-radius: 4px;
}

kbd {
   color: rgba(3, 25, 39, 0.85);
   border: 1px solid rgba(3, 25, 39, 0.15);
   padding: .2em .4em;
}

var {
   color: rgba(3, 25, 39, 0.85);
}

code {
   color: rgba(3, 25, 39, 0.85);
   position: relative;
   top: -1px;
   border: 1px solid transparent;
   background-color: #F5F6F8;
   padding: .2em .4em .2em;
}

pre code {
   background: none;
}

mark {
   background-color: yellow;
   color: black;
}

b,
strong {
   font-weight: 600;
}

dfn,
abbr[title] {
   letter-spacing: .01em;
   text-transform: uppercase;
   text-decoration: none;
   border-bottom: 1px dotted rgba(0, 0, 0, 0.4);
   cursor: help;
}

cite {
   font-style: italic;
}

sub,
sup {
   line-height: 1;
   margin-left: 2px;
}

sub {
   vertical-align: sub;
}

sup {
   vertical-align: super;
}

figure>img,
figure>iframe,
figure>pre,
figure>div {
   vertical-align: middle;
}

figure figcaption {
   display: block;
   font-style: normal;
   margin-top: 0.25em;
   font-size: 12px;
   line-height: 1.5;
}

hr {
   position: relative;
   line-height: 1;
   background: none;
   border: none;
   text-align: left;
   margin-top: 1.5em;
   margin-bottom: 1.5em;
   height: 10px;
}

hr:before {
   content: '';
   position: absolute;
   top: 50%;
}

hr:before {
   width: 100%;
   max-width: 100%;
   margin-top: -0.5px;
   border-top-width: 1px;
   border-top-style: solid;
   border-top-color: rgba(206, 210, 212, 0.6);
}

.card {
   background-color: #F5F6F8;
   padding: 24px;
   border-radius: 4px;
}

.align-left {
   text-align: left;
}

.align-center {
   text-align: center;
}

.align-center img {
   margin-left: auto;
   margin-right: auto;
   max-width: 80%;
}

.align-center figcaption {
   text-align: center;
   margin-left: auto;
   margin-right: auto;
}

.align-right {
   text-align: right;
}

.align-right img {
   margin-left: auto;
}

.align-right figcaption {
   text-align: right;
   margin-left: auto;
}

.align-justify {
   text-align: justify;
}

.float-left {
   float: left;
   margin-right: 1em;
   margin-bottom: 1em;
   max-width: 200px;
}

.float-right {
   float: right;
   margin-left: 1em;
   margin-bottom: 1em;
   max-width: 200px;
}

.valign-top {
   align-items: start;
}

.valign-middle {
   align-items: center;
}

.valign-bottom {
   align-items: end;
}

.outset-right {
   position: relative;
   width: calc(100% + 50px);
   max-width: calc(100% + 50px);
   transform: translateX(50px) translate3d(0, 0, 0);
   left: -50px;
}

.outset-left {
   width: calc(100% + 50px);
   max-width: calc(100% + 50px);
   transform: translateX(-50px) translate3d(0, 0, 0);
}

.outset-both {
   position: relative;
   width: calc(100% + 100px);
   max-width: calc(100% + 100px);
   transform: translateX(-50%) translate3d(0, 0, 0);
   left: 50%;
}

.grid-article {
   display: grid;
   grid-template-columns: repeat(12, 1fr);
   grid-column-gap: 24px;
   grid-row-gap: 24px;
}

.grid-article+.grid-article {
   margin-top: 24px;
}

.grid-gutterless {
   grid-column-gap: 0;
}

.grid-gapless {
   grid-row-gap: 0;
}

.grid-gapless+.grid-article {
   margin-top: 0;
}

.grid-auto {
   grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
}

.grid-1 {
   grid-template-columns: repeat(1, 1fr);
}

.grid-2 {
   grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
   grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
   grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
   grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
   grid-template-columns: repeat(6, 1fr);
}

.grid-7 {
   grid-template-columns: repeat(7, 1fr);
}

.grid-8 {
   grid-template-columns: repeat(8, 1fr);
}

.grid-9 {
   grid-template-columns: repeat(9, 1fr);
}

.grid-10 {
   grid-template-columns: repeat(10, 1fr);
}

.grid-11 {
   grid-template-columns: repeat(11, 1fr);
}

.grid-12 {
   grid-template-columns: repeat(12, 1fr);
}

.column-1 {
   grid-column-end: span 1;
}

.column-2 {
   grid-column-end: span 2;
}

.column-3 {
   grid-column-end: span 3;
}

.column-4 {
   grid-column-end: span 4;
}

.column-5 {
   grid-column-end: span 5;
}

.column-6 {
   grid-column-end: span 6;
}

.column-7 {
   grid-column-end: span 7;
}

.column-8 {
   grid-column-end: span 8;
}

.column-9 {
   grid-column-end: span 9;
}

.column-10 {
   grid-column-end: span 10;
}

.column-11 {
   grid-column-end: span 11;
}

.column-12 {
   grid-column-end: span 12;
}

@media only screen and (max-width: 1023px) {
   .grid-1-md {
      grid-template-columns: repeat(1, 1fr);
   }

   .grid-2-md {
      grid-template-columns: repeat(2, 1fr);
   }

   .grid-3-md {
      grid-template-columns: repeat(3, 1fr);
   }

   .grid-4-md {
      grid-template-columns: repeat(4, 1fr);
   }

   .grid-5-md {
      grid-template-columns: repeat(5, 1fr);
   }

   .grid-6-md {
      grid-template-columns: repeat(6, 1fr);
   }

   .grid-7-md {
      grid-template-columns: repeat(7, 1fr);
   }

   .grid-8-md {
      grid-template-columns: repeat(8, 1fr);
   }

   .grid-9-md {
      grid-template-columns: repeat(9, 1fr);
   }

   .grid-10-md {
      grid-template-columns: repeat(10, 1fr);
   }

   .grid-11-md {
      grid-template-columns: repeat(11, 1fr);
   }

   .grid-12-md {
      grid-template-columns: repeat(12, 1fr);
   }
}

@media only screen and (max-width: 767px) {

   .grid-article,
   .grid-auto {
      grid-template-columns: repeat(1, 1fr);
   }

   .column {
      grid-column-end: span 1;
   }

   .column:empty {
      display: none;
   }

   .grid-1-sm {
      grid-template-columns: repeat(1, 1fr);
   }

   .grid-2-sm {
      grid-template-columns: repeat(2, 1fr);
   }

   .grid-3-sm {
      grid-template-columns: repeat(3, 1fr);
   }

   .grid-4-sm {
      grid-template-columns: repeat(4, 1fr);
   }

   .grid-5-sm {
      grid-template-columns: repeat(5, 1fr);
   }

   .grid-6-sm {
      grid-template-columns: repeat(6, 1fr);
   }

   .grid-7-sm {
      grid-template-columns: repeat(7, 1fr);
   }

   .grid-8-sm {
      grid-template-columns: repeat(8, 1fr);
   }

   .grid-9-sm {
      grid-template-columns: repeat(9, 1fr);
   }

   .grid-10-sm {
      grid-template-columns: repeat(10, 1fr);
   }

   .grid-11-sm {
      grid-template-columns: repeat(11, 1fr);
   }

   .grid-12-sm {
      grid-template-columns: repeat(12, 1fr);
   }
}

.article-x *:not(:first-child) {
   margin-top: 20px;
}

@media all and (-ms-high-contrast: none) {
   .column {
      flex: 1;
      margin-left: 24px;
      margin-bottom: 24px;
   }
}

@media all and (-ms-high-contrast: none) and (max-width: 767px) {
   .column {
      margin-left: 0;
   }
}

figure img {
   border-radius: 4px;
}

figure figcaption {
   margin-top: 12px;
   max-width: 240px;
   color: rgba(3, 25, 39, 0.5);
}

blockquote p {
   font-style: normal;
}