* {
  margin: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

html {
  font-size: 10px;
  line-height: 1.2;
}
html.scroll-off {
  overflow: hidden;
}

main {
  margin-top: 7.3rem;
}
@media (min-width: 992px) {
  main {
    margin-top: 0;
  }
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  color: #0C0A0A;
}

h1,
h2,
h3,
h4,
h5,
h6,
b,
strong {
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.6rem;
}

.list-unstyled {
  list-style: none;
  padding-left: 0px;
}

a {
  color: #000;
  text-decoration: none;
}

.img-placeholder {
  position: relative;
  display: block;
}
.img-placeholder:after {
  content: "";
  display: block;
  padding-top: 100%;
}
.img-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 992px) {
  .layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .layout .main-content {
    flex: 0 0 calc(100% - 332px);
    width: calc(100% - 332px);
  }
}
@media (min-width: 992px) {
  .layout .sidebar {
    flex: 0 0 300px;
    width: 300px;
    margin-inline: 0;
  }
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid #0C0A0A;
  position: relative;
  padding-bottom: 0.8rem;
  margin-bottom: 2.4rem;
}
@media (min-width: 992px) {
  .section-header {
    margin-bottom: 3.2rem;
  }
}
.section-header::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  border-bottom: 1px solid #0C0A0A;
}
.section-header .section-title {
  margin-bottom: 0;
}
.section-header .section-title a,
.section-header .section-title span {
  display: block;
  color: rgba(12, 10, 10, 0.95);
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.section-header .see-all {
  display: block;
  color: #EC2548;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.banner,
.bnr {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3.8rem;
  position: relative;
  overflow: hidden;
}

.banner-wrapper,
.bnr-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.banner-wrapper:after,
.bnr-wrapper:after {
  content: "Oglas";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fefefe;
  color: #777;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.banner-wrapper .banner-inner,
.banner-wrapper .bnr-inner,
.bnr-wrapper .banner-inner,
.bnr-wrapper .bnr-inner {
  position: relative;
  z-index: 2;
}
.sidebar .banner-wrapper,
.sidebar .bnr-wrapper {
  min-width: 300px;
}

.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.position-relative {
  position: relative;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
}

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

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

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

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

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-static {
  position: static;
}

.position-fixed {
  position: fixed;
}

.btn-warning, .btn-secondary, .btn-primary {
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: 0.2s linear;
  font-size: 1.4rem;
  line-height: 1.8rem;
  letter-spacing: 0.19px;
  border-radius: 3rem;
}

.btn-block {
  display: block;
}

.btn-primary {
  background-color: #0C0A0A;
  color: #fff !important;
}
.btn-primary:hover {
  background-color: black;
  color: #fff !important;
}

.bg-primary {
  background-color: #0C0A0A;
}

.text-primary {
  color: #0C0A0A !important;
}

.btn-secondary {
  background-color: #fff;
  color: #000 !important;
}
.btn-secondary:hover {
  background-color: #e6e6e6;
  color: #000 !important;
}

.bg-secondary {
  background-color: #fff;
}

.text-secondary {
  color: #fff !important;
}

.btn-warning {
  background-color: #EC2548;
  color: #fff !important;
}
.btn-warning:hover {
  background-color: #cc1233;
  color: #fff !important;
}

.bg-warning {
  background-color: #EC2548;
}

.text-warning {
  color: #EC2548 !important;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.row > [class*=col-] {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.row.no-gutters {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.row.no-gutters > [class*=col-] {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.container,
.container-fluid {
  width: 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-row {
  flex-direction: row;
}

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

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

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

.align-items-stretch {
  align-items: stretch;
}

.align-content-start {
  align-content: flex-start;
}

.align-content-end {
  align-content: flex-end;
}

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

.align-content-stretch {
  align-content: stretch;
}

.align-content-between {
  align-content: space-between;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

@media (min-width: 450px) {
  .col-xm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .d-xm-none {
    display: none !important;
  }
  .d-xm-block {
    display: block !important;
  }
  .d-xm-flex {
    display: flex !important;
  }
  .d-xm-inline-block {
    display: inline-block !important;
  }
  .d-xm-inline-flex {
    display: inline-flex !important;
  }
  .flex-xm-wrap {
    flex-wrap: wrap;
  }
  .flex-xm-nowrap {
    flex-wrap: nowrap;
  }
  .flex-xm-row {
    flex-direction: row;
  }
  .flex-xm-column {
    flex-direction: column;
  }
  .align-items-xm-start {
    align-items: flex-start;
  }
  .align-items-xm-end {
    align-items: flex-end;
  }
  .align-items-xm-center {
    align-items: center;
  }
  .align-items-xm-stretch {
    align-items: stretch;
  }
  .align-content-xm-start {
    align-content: flex-start;
  }
  .align-content-xm-end {
    align-content: flex-end;
  }
  .align-content-xm-center {
    align-content: center;
  }
  .align-content-xm-stretch {
    align-content: stretch;
  }
  .align-content-xm-between {
    align-content: space-between;
  }
  .justify-content-xm-start {
    justify-content: flex-start;
  }
  .justify-content-xm-end {
    justify-content: flex-end;
  }
  .justify-content-xm-center {
    justify-content: center;
  }
  .justify-content-xm-between {
    justify-content: space-between;
  }
  .justify-content-xm-around {
    justify-content: space-around;
  }
}
@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap;
  }
  .flex-sm-row {
    flex-direction: row;
  }
  .flex-sm-column {
    flex-direction: column;
  }
  .align-items-sm-start {
    align-items: flex-start;
  }
  .align-items-sm-end {
    align-items: flex-end;
  }
  .align-items-sm-center {
    align-items: center;
  }
  .align-items-sm-stretch {
    align-items: stretch;
  }
  .align-content-sm-start {
    align-content: flex-start;
  }
  .align-content-sm-end {
    align-content: flex-end;
  }
  .align-content-sm-center {
    align-content: center;
  }
  .align-content-sm-stretch {
    align-content: stretch;
  }
  .align-content-sm-between {
    align-content: space-between;
  }
  .justify-content-sm-start {
    justify-content: flex-start;
  }
  .justify-content-sm-end {
    justify-content: flex-end;
  }
  .justify-content-sm-center {
    justify-content: center;
  }
  .justify-content-sm-between {
    justify-content: space-between;
  }
  .justify-content-sm-around {
    justify-content: space-around;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 740px;
  }
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap;
  }
  .flex-md-row {
    flex-direction: row;
  }
  .flex-md-column {
    flex-direction: column;
  }
  .align-items-md-start {
    align-items: flex-start;
  }
  .align-items-md-end {
    align-items: flex-end;
  }
  .align-items-md-center {
    align-items: center;
  }
  .align-items-md-stretch {
    align-items: stretch;
  }
  .align-content-md-start {
    align-content: flex-start;
  }
  .align-content-md-end {
    align-content: flex-end;
  }
  .align-content-md-center {
    align-content: center;
  }
  .align-content-md-stretch {
    align-content: stretch;
  }
  .align-content-md-between {
    align-content: space-between;
  }
  .justify-content-md-start {
    justify-content: flex-start;
  }
  .justify-content-md-end {
    justify-content: flex-end;
  }
  .justify-content-md-center {
    justify-content: center;
  }
  .justify-content-md-between {
    justify-content: space-between;
  }
  .justify-content-md-around {
    justify-content: space-around;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap;
  }
  .flex-lg-row {
    flex-direction: row;
  }
  .flex-lg-column {
    flex-direction: column;
  }
  .align-items-lg-start {
    align-items: flex-start;
  }
  .align-items-lg-end {
    align-items: flex-end;
  }
  .align-items-lg-center {
    align-items: center;
  }
  .align-items-lg-stretch {
    align-items: stretch;
  }
  .align-content-lg-start {
    align-content: flex-start;
  }
  .align-content-lg-end {
    align-content: flex-end;
  }
  .align-content-lg-center {
    align-content: center;
  }
  .align-content-lg-stretch {
    align-content: stretch;
  }
  .align-content-lg-between {
    align-content: space-between;
  }
  .justify-content-lg-start {
    justify-content: flex-start;
  }
  .justify-content-lg-end {
    justify-content: flex-end;
  }
  .justify-content-lg-center {
    justify-content: center;
  }
  .justify-content-lg-between {
    justify-content: space-between;
  }
  .justify-content-lg-around {
    justify-content: space-around;
  }
}
@media (min-width: 1265px) {
  .container {
    max-width: 1260px;
  }
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap;
  }
  .flex-xl-row {
    flex-direction: row;
  }
  .flex-xl-column {
    flex-direction: column;
  }
  .align-items-xl-start {
    align-items: flex-start;
  }
  .align-items-xl-end {
    align-items: flex-end;
  }
  .align-items-xl-center {
    align-items: center;
  }
  .align-items-xl-stretch {
    align-items: stretch;
  }
  .align-content-xl-start {
    align-content: flex-start;
  }
  .align-content-xl-end {
    align-content: flex-end;
  }
  .align-content-xl-center {
    align-content: center;
  }
  .align-content-xl-stretch {
    align-content: stretch;
  }
  .align-content-xl-between {
    align-content: space-between;
  }
  .justify-content-xl-start {
    justify-content: flex-start;
  }
  .justify-content-xl-end {
    justify-content: flex-end;
  }
  .justify-content-xl-center {
    justify-content: center;
  }
  .justify-content-xl-between {
    justify-content: space-between;
  }
  .justify-content-xl-around {
    justify-content: space-around;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1342px;
  }
  .col-xxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap;
  }
  .flex-xxl-row {
    flex-direction: row;
  }
  .flex-xxl-column {
    flex-direction: column;
  }
  .align-items-xxl-start {
    align-items: flex-start;
  }
  .align-items-xxl-end {
    align-items: flex-end;
  }
  .align-items-xxl-center {
    align-items: center;
  }
  .align-items-xxl-stretch {
    align-items: stretch;
  }
  .align-content-xxl-start {
    align-content: flex-start;
  }
  .align-content-xxl-end {
    align-content: flex-end;
  }
  .align-content-xxl-center {
    align-content: center;
  }
  .align-content-xxl-stretch {
    align-content: stretch;
  }
  .align-content-xxl-between {
    align-content: space-between;
  }
  .justify-content-xxl-start {
    justify-content: flex-start;
  }
  .justify-content-xxl-end {
    justify-content: flex-end;
  }
  .justify-content-xxl-center {
    justify-content: center;
  }
  .justify-content-xxl-between {
    justify-content: space-between;
  }
  .justify-content-xxl-around {
    justify-content: space-around;
  }
}
.nl-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 9998;
}

.nl-modal {
  padding: 20px;
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.nl-dialog {
  background: #fff;
  overflow: hidden;
  max-width: 999px;
  width: 100%;
  display: grid;
  position: relative;
}

.nl-content {
  padding: 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nl-title {
  color: #0C0A0A;
  font-family: "Noto Serif", serif;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 0.8rem;
}

.nl-sub {
  color: rgba(12, 10, 10, 0.8);
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 2.4rem;
}

.nl-form,
.mc4wp-form-fields {
  display: grid;
  gap: 1.8rem;
}

.nl-input {
  height: 5rem;
  padding: 0 2.4rem;
  border: 1px solid #dcdcdc;
  color: rgba(12, 10, 10, 0.8);
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.nl-input:focus-visible {
  outline: none;
}
.nl-input::placeholder {
  color: rgba(12, 10, 10, 0.8);
  opacity: 1;
}

.nl-btn {
  height: 5rem;
  border: 0;
  background: #000;
  color: #fff;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  cursor: pointer;
}

.nl-media {
  position: relative;
  min-height: 32rem;
  background: #eee;
  order: -1;
}

.nl-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nl-close {
  position: absolute;
  top: 1.7rem;
  right: 2rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  z-index: 10;
}

.nl-close span {
  font-size: 3.5rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .nl-dialog {
    grid-template-columns: repeat(2, 1fr);
  }
  .nl-media {
    order: 2;
  }
}
@media (min-width: 1265px) {
  .nl-content {
    padding: 4.5rem;
  }
  .nl-media {
    height: 61.6rem;
  }
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 11;
  background-color: #fff;
}
@media (min-width: 992px) {
  header {
    position: relative;
    top: unset;
  }
}
header .header-top {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(12, 10, 10, 0.1);
}
@media (min-width: 992px) {
  header .header-top {
    padding: 2.4rem 0;
    position: unset;
    border-bottom: 1px solid #0C0A0A;
  }
}
header .header-top .navbar-toggler {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 2.1em;
  height: 1.8rem;
  cursor: pointer;
  position: relative;
  margin-right: 1.4rem;
}
@media (min-width: 992px) {
  header .header-top .navbar-toggler {
    display: none;
  }
}
header .header-top .navbar-toggler.active span:nth-of-type(1) {
  top: 50%;
  transform: rotate(45deg);
}
header .header-top .navbar-toggler.active span:nth-of-type(2) {
  opacity: 0;
}
header .header-top .navbar-toggler.active span:nth-of-type(3) {
  bottom: auto;
  top: 50%;
  transform: rotate(-45deg);
}
header .header-top .navbar-toggler span {
  display: block;
  width: 2.1rem;
  height: 2px;
  background-color: #0C0A0A;
  position: absolute;
  transition: 0.3s linear;
}
header .header-top .navbar-toggler span:nth-of-type(1) {
  top: 0;
}
header .header-top .navbar-toggler span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
header .header-top .navbar-toggler span:nth-of-type(3) {
  bottom: 0;
}
header .header-top .logo,
header .header-top .custom-logo-link {
  display: block;
  max-width: 12rem;
  flex: 0 0 12rem;
  width: 12rem;
}
@media (min-width: 992px) {
  header .header-top .logo,
  header .header-top .custom-logo-link {
    max-width: 19.2rem;
    flex: 0 0 19.2rem;
    width: 19.2rem;
    order: 2;
    flex-shrink: 0;
  }
}
header .header-top .header-action {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media (min-width: 992px) {
  header .header-top .header-action {
    order: 1;
    flex: 1;
    margin-left: unset;
    position: relative;
  }
}
header .header-top .header-action .newsletter {
  display: block;
  position: relative;
  padding-left: 1.6rem;
  margin-left: 1.6rem;
  color: rgba(0, 0, 0, 0.95);
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}
header .header-top .header-action .newsletter:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: rgba(12, 10, 10, 0.2);
}
header .header-top .header-social {
  display: none;
}
@media (min-width: 992px) {
  header .header-top .header-social {
    display: block;
    order: 3;
    flex: 1;
  }
}
@media (min-width: 992px) {
  header .header-bottom {
    padding: 1.6rem 0;
    border-bottom: 1px solid #0C0A0A;
  }
}
header .header-bottom .menu-wrapper {
  display: block;
  position: fixed;
  height: 100vh;
  width: 100%;
  left: -100%;
  padding: 5.4rem 1.2rem 30rem;
  top: 7.3rem;
  z-index: 10;
  transition: 0.3s linear;
  overflow-y: auto;
  background-color: #fff;
}
@media (min-width: 576px) {
  header .header-bottom .menu-wrapper {
    width: 390px;
    left: -390px;
  }
}
@media (min-width: 992px) {
  header .header-bottom .menu-wrapper {
    position: unset;
    height: auto;
    width: auto;
    left: unset;
    padding: 0;
    top: unset;
    transition: unset;
    overflow-y: unset;
  }
}
header .header-bottom .menu-wrapper.menu-on {
  left: 0;
}
header .header-bottom .menu-wrapper .main-menu {
  text-align: center;
  margin-bottom: 5.9rem;
}
@media (min-width: 992px) {
  header .header-bottom .menu-wrapper .main-menu {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  header .header-bottom .menu-wrapper .main-menu .main-menu-item:not(:last-of-type) {
    margin-right: 3.2rem;
  }
}
header .header-bottom .menu-wrapper .main-menu .main-menu-item .main-menu-link-wrapper {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(12, 10, 10, 0.1);
}
@media (min-width: 992px) {
  header .header-bottom .menu-wrapper .main-menu .main-menu-item .main-menu-link-wrapper {
    padding: 0;
    border-bottom: none;
  }
}
header .header-bottom .menu-wrapper .main-menu .main-menu-item .main-menu-link-wrapper .main-menu-link {
  display: block;
  color: #0C0A0A;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  transition: 0.3s linear;
}
header .header-bottom .menu-wrapper .main-menu .main-menu-item .main-menu-link-wrapper .main-menu-link:hover {
  color: #EC2548;
}
header .header-bottom .menu-wrapper .main-menu .main-menu-item .main-menu-link-wrapper .main-menu-link.active {
  color: #EC2548;
}
@media (min-width: 992px) {
  header .header-bottom .menu-wrapper .social-wrapper {
    display: none;
  }
}
header .header-bottom .menu-wrapper .social-wrapper .social-label {
  display: block;
  text-align: center;
  color: #0C0A0A;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 1.6rem;
}
header .header-bottom .menu-wrapper .social-wrapper .social {
  justify-content: center;
}

.news-item:hover .news-item-data .news-item-title a {
  text-decoration-color: #0C0A0A;
}
.news-item .news-item-image-wrapper {
  position: relative;
}
.news-item .news-item-image-wrapper .news-item-image {
  position: relative;
  display: block;
  margin-bottom: 0;
}
.news-item .news-item-image-wrapper .news-item-image:after {
  content: "";
  display: block;
  padding-top: 66%;
}
.news-item .news-item-image-wrapper .news-item-image img,
.news-item .news-item-image-wrapper .news-item-image video,
.news-item .news-item-image-wrapper .news-item-image iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-item .news-item-data .news-item-title {
  position: relative;
  margin-bottom: 0;
  font-weight: 600;
  font-family: "Noto Serif", serif;
}
.news-item .news-item-data .news-item-title a {
  color: #0C0A0A;
  display: block;
  font-family: "Noto Serif", serif;
  font-weight: 600;
  text-decoration: underline transparent;
  transition: text-decoration 0.3s ease;
}
.news-item .news-item-data .news-item-description {
  display: none;
}
.news-item .news-item-data .news-item-description p {
  margin-bottom: 0;
}
.news-item .news-item-data .news-item-description p:last-of-type {
  margin-bottom: 0;
}
.news-item .news-item-data .news-item-category-date {
  display: flex;
  align-items: center;
}
.news-item .news-item-data .news-item-category-date .news-item-category {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  font-size: 1.4rem;
  line-height: 100%;
  color: #EC2548;
}
.news-item .news-item-data .news-item-category-date .news-item-category:last-of-type {
  position: relative;
  padding-right: 1.2rem;
  margin-right: 0.8rem;
}
.news-item .news-item-data .news-item-category-date .news-item-category:last-of-type::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: rgba(12, 10, 10, 0.4);
}
.news-item .news-item-data .news-item-category-date .news-item-date {
  display: block;
  color: rgba(12, 10, 10, 0.4);
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 100%;
}

.homepage-latest {
  padding-top: 1.3rem;
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .homepage-latest {
    padding-top: 2.8rem;
    margin-bottom: 8rem;
  }
}
@media (min-width: 768px) {
  .homepage-latest {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.6rem;
  }
}
@media (min-width: 992px) {
  .homepage-latest {
    grid-gap: 3.2rem;
  }
}
.homepage-latest .news-item:first-of-type {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .homepage-latest .news-item:first-of-type {
    margin-bottom: 0;
    grid-row: 1/5;
    grid-column: 2/4;
  }
}
.homepage-latest .news-item:first-of-type .news-item-image-wrapper {
  margin-bottom: 1.8rem;
}
.homepage-latest .news-item:first-of-type .news-item-data .news-item-category-date {
  margin-bottom: 1.2rem;
}
.homepage-latest .news-item:first-of-type .news-item-data .news-item-title {
  margin-bottom: 1.2rem;
}
.homepage-latest .news-item:first-of-type .news-item-data .news-item-title a {
  font-size: 2.6rem;
  line-height: 130%;
}
@media (min-width: 1265px) {
  .homepage-latest .news-item:first-of-type .news-item-data .news-item-title a {
    font-size: 3.2rem;
  }
}
.homepage-latest .news-item:first-of-type .news-item-data .news-item-description {
  display: block;
  color: rgba(12, 10, 10, 0.8);
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.homepage-latest .news-item:not(:first-of-type):not(:last-of-type) {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .homepage-latest .news-item:not(:first-of-type):not(:last-of-type) {
    margin-bottom: 0;
  }
}
.homepage-latest .news-item:not(:first-of-type) .news-item-image-wrapper {
  margin-bottom: 1.6rem;
}
.homepage-latest .news-item:not(:first-of-type) .news-item-data .news-item-category-date {
  margin-bottom: 0.9rem;
}
.homepage-latest .news-item:not(:first-of-type) .news-item-data .news-item-title a {
  font-size: 1.8rem;
  line-height: 130%;
}
@media (min-width: 1265px) {
  .homepage-latest .news-item:not(:first-of-type) .news-item-data .news-item-title a {
    font-size: 2rem;
  }
}

.one-three-news-box {
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .one-three-news-box {
    margin-bottom: 8rem;
  }
}
.one-three-news-box .one-three-news-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 2.2rem;
  grid-row-gap: 4rem;
}
@media (min-width: 768px) {
  .one-three-news-box .one-three-news-items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1265px) {
  .one-three-news-box .one-three-news-items {
    grid-gap: 3.2rem;
  }
}
.one-three-news-box .one-three-news-items .news-item .news-item-image-wrapper {
  margin-bottom: 1.6rem;
}
.one-three-news-box .one-three-news-items .news-item .news-item-data .news-item-category-date {
  margin-bottom: 0.9rem;
}
.one-three-news-box .one-three-news-items .news-item .news-item-data .news-item-title {
  margin-bottom: 0;
}
.one-three-news-box .one-three-news-items .news-item .news-item-data .news-item-title a {
  font-size: 1.8rem;
  line-height: 130%;
}
@media (min-width: 1265px) {
  .one-three-news-box .one-three-news-items .news-item .news-item-data .news-item-title a {
    font-size: 2rem;
  }
}
.one-three-news-box .one-three-news-items .news-item:first-of-type {
  grid-column: 1/3;
}
@media (min-width: 768px) {
  .one-three-news-box .one-three-news-items .news-item:first-of-type {
    grid-column: 1/4;
  }
}
@media (min-width: 1265px) {
  .one-three-news-box .one-three-news-items .news-item:first-of-type {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (min-width: 1400px) {
  .one-three-news-box .one-three-news-items .news-item:first-of-type {
    justify-content: flex-start;
  }
}
.one-three-news-box .one-three-news-items .news-item:first-of-type .news-item-image-wrapper {
  width: 100%;
  margin-right: 0;
  margin-bottom: 2.4rem;
}
@media (min-width: 1265px) {
  .one-three-news-box .one-three-news-items .news-item:first-of-type .news-item-image-wrapper {
    margin-bottom: 0;
    flex: 0 0 49%;
    width: 49%;
  }
}
@media (min-width: 1400px) {
  .one-three-news-box .one-three-news-items .news-item:first-of-type .news-item-image-wrapper {
    flex: 0 0 52.8rem;
    width: 52.8rem;
    margin-right: 2.4rem;
  }
}
@media (min-width: 1265px) {
  .one-three-news-box .one-three-news-items .news-item:first-of-type .news-item-data {
    flex: 0 0 49%;
    width: 49%;
  }
}
@media (min-width: 1400px) {
  .one-three-news-box .one-three-news-items .news-item:first-of-type .news-item-data {
    flex: 1;
    width: 100%;
  }
}
.one-three-news-box .one-three-news-items .news-item:first-of-type .news-item-data .news-item-category-date {
  margin-bottom: 1.2rem;
}
.one-three-news-box .one-three-news-items .news-item:first-of-type .news-item-data .news-item-title {
  margin-bottom: 1.2rem;
}
.one-three-news-box .one-three-news-items .news-item:first-of-type .news-item-data .news-item-title a {
  font-size: 2.6rem;
  line-height: 130%;
}
@media (min-width: 768px) {
  .one-three-news-box .one-three-news-items .news-item:first-of-type .news-item-data .news-item-title a {
    font-size: 3.2rem;
  }
}
.one-three-news-box .one-three-news-items .news-item:first-of-type .news-item-data .news-item-description {
  display: block;
  color: gba(12, 10, 10, 0.8);
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media (min-width: 768px) {
  .one-three-news-box .one-three-news-items .news-item:first-of-type .news-item-data .news-item-description {
    font-size: 1.6rem;
  }
}
@media (min-width: 1265px) {
  .one-three-news-box.image-right .one-three-news-items .news-item:first-of-type .news-item-image-wrapper {
    order: 2;
  }
}
@media (min-width: 1400px) {
  .one-three-news-box.image-right .one-three-news-items .news-item:first-of-type .news-item-image-wrapper {
    margin-right: 0;
  }
}
@media (min-width: 1265px) {
  .one-three-news-box.image-right .one-three-news-items .news-item:first-of-type .news-item-data {
    order: 1;
  }
}
@media (min-width: 1400px) {
  .one-three-news-box.image-right .one-three-news-items .news-item:first-of-type .news-item-data {
    margin-right: 3.2rem;
  }
}

.four-news-box {
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .four-news-box {
    margin-bottom: 8rem;
  }
}
.four-news-box .four-news-box-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 2.2rem;
  grid-row-gap: 4rem;
}
@media (min-width: 1265px) {
  .four-news-box .four-news-box-items {
    grid-gap: 3.2rem;
  }
}
@media (min-width: 992px) {
  .four-news-box .four-news-box-items .news-item {
    display: flex;
    align-items: flex-start;
  }
}
.four-news-box .four-news-box-items .news-item .news-item-image-wrapper {
  margin-bottom: 1.6rem;
}
@media (min-width: 992px) {
  .four-news-box .four-news-box-items .news-item .news-item-image-wrapper {
    margin-bottom: 0;
    flex: 0 0 22.6rem;
    width: 22.6rem;
    margin-right: 2.4rem;
  }
}
@media (min-width: 992px) {
  .four-news-box .four-news-box-items .news-item .news-item-data {
    flex: 1;
    width: 100%;
  }
}
.four-news-box .four-news-box-items .news-item .news-item-data .news-item-category-date {
  margin-bottom: 0.9rem;
}
.four-news-box .four-news-box-items .news-item .news-item-data .news-item-title {
  margin-bottom: 0;
}
.four-news-box .four-news-box-items .news-item .news-item-data .news-item-title a {
  font-size: 1.8rem;
  line-height: 130%;
}
@media (min-width: 992px) {
  .four-news-box .four-news-box-items .news-item .news-item-data .news-item-title a {
    font-size: 2rem;
  }
}

.news-box-landscape {
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .news-box-landscape {
    margin-bottom: 8rem;
  }
}
.news-box-landscape.has-bg-color {
  padding: 3.1rem 0;
}
@media (min-width: 992px) {
  .news-box-landscape.has-bg-color {
    padding: 4.9rem 0;
  }
}
.news-box-landscape .news-box-landscape-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 2.2rem;
  grid-row-gap: 4rem;
}
@media (min-width: 992px) {
  .news-box-landscape .news-box-landscape-items {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 3.2rem;
  }
}
.news-box-landscape .news-box-landscape-items .news-item .news-item-image-wrapper {
  margin-bottom: 1.6rem;
}
.news-box-landscape .news-box-landscape-items .news-item .news-item-data .news-item-category-date {
  margin-bottom: 0.9rem;
}
.news-box-landscape .news-box-landscape-items .news-item .news-item-data .news-item-title {
  margin-bottom: 0;
}
.news-box-landscape .news-box-landscape-items .news-item .news-item-data .news-item-title a {
  font-size: 1.8rem;
  line-height: 130%;
}
@media (min-width: 992px) {
  .news-box-landscape .news-box-landscape-items .news-item .news-item-data .news-item-title a {
    font-size: 2rem;
  }
}

.category-box {
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .category-box {
    margin-bottom: 10rem;
  }
}
@media (min-width: 992px) {
  .category-box .category-box-wrapper {
    display: flex;
  }
}
.category-box .category-box-wrapper .category-box-item-wrapper:not(:last-of-type) {
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .category-box .category-box-wrapper .category-box-item-wrapper:not(:last-of-type) {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .category-box .category-box-wrapper .category-box-item-wrapper {
    flex: 0 0 calc(33.3333333333% - 21.3333333333px);
    width: calc(33.3333333333% - 21.3333333333px);
    margin-right: 32px;
  }
  .category-box .category-box-wrapper .category-box-item-wrapper:last-of-type {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .category-box .category-box-wrapper .category-box-item-wrapper .section-header {
    margin-bottom: 2.4rem;
  }
}
.category-box .category-box-wrapper .category-box-item-wrapper .category-box-item-list .news-item:not(:last-of-type) {
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .category-box .category-box-wrapper .category-box-item-wrapper .category-box-item-list .news-item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.category-box .category-box-wrapper .category-box-item-wrapper .category-box-item-list .news-item:not(:first-of-type) {
  display: flex;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .category-box .category-box-wrapper .category-box-item-wrapper .category-box-item-list .news-item:not(:first-of-type) {
    padding: 1.6rem 0;
    border-bottom: 1px solid rgba(12, 10, 10, 0.1);
  }
  .category-box .category-box-wrapper .category-box-item-wrapper .category-box-item-list .news-item:not(:first-of-type):last-of-type {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.category-box .category-box-wrapper .category-box-item-wrapper .category-box-item-list .news-item:not(:first-of-type) .news-item-image-wrapper {
  flex: 0 0 14.1rem;
  width: 14.1rem;
  margin-right: 1.6rem;
}
@media (min-width: 992px) {
  .category-box .category-box-wrapper .category-box-item-wrapper .category-box-item-list .news-item:not(:first-of-type) .news-item-image-wrapper {
    flex: 0 0 13rem;
    width: 13rem;
  }
}
.category-box .category-box-wrapper .category-box-item-wrapper .category-box-item-list .news-item:not(:first-of-type) .news-item-data {
  flex: 1;
  width: 100%;
}
.category-box .category-box-wrapper .category-box-item-wrapper .category-box-item-list .news-item:not(:first-of-type) .news-item-data .news-item-category-date {
  margin-bottom: 0.9rem;
}
.category-box .category-box-wrapper .category-box-item-wrapper .category-box-item-list .news-item:not(:first-of-type) .news-item-data .news-item-title {
  margin-bottom: 0;
}
.category-box .category-box-wrapper .category-box-item-wrapper .category-box-item-list .news-item:not(:first-of-type) .news-item-data .news-item-title a {
  font-size: 1.6rem;
  line-height: 130%;
}
@media (min-width: 992px) {
  .category-box .category-box-wrapper .category-box-item-wrapper .category-box-item-list .news-item:not(:first-of-type) .news-item-data .news-item-title a {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  .category-box .category-box-wrapper .category-box-item-wrapper .category-box-item-list .news-item:first-of-type {
    padding-bottom: 1.6rem;
    border-bottom: 1px solid rgba(12, 10, 10, 0.1);
  }
}
.category-box .category-box-wrapper .category-box-item-wrapper .category-box-item-list .news-item:first-of-type .news-item-image-wrapper {
  margin-bottom: 2.4rem;
}
@media (min-width: 992px) {
  .category-box .category-box-wrapper .category-box-item-wrapper .category-box-item-list .news-item:first-of-type .news-item-image-wrapper {
    margin-bottom: 1.6rem;
  }
}
.category-box .category-box-wrapper .category-box-item-wrapper .category-box-item-list .news-item:first-of-type .news-item-data .news-item-category-date {
  margin-bottom: 1.2rem;
}
@media (min-width: 992px) {
  .category-box .category-box-wrapper .category-box-item-wrapper .category-box-item-list .news-item:first-of-type .news-item-data .news-item-category-date {
    margin-bottom: 0.9rem;
  }
}
.category-box .category-box-wrapper .category-box-item-wrapper .category-box-item-list .news-item:first-of-type .news-item-data .news-item-title {
  margin-bottom: 0;
}
.category-box .category-box-wrapper .category-box-item-wrapper .category-box-item-list .news-item:first-of-type .news-item-data .news-item-title a {
  font-size: 2.6rem;
  line-height: 130%;
}
@media (min-width: 992px) {
  .category-box .category-box-wrapper .category-box-item-wrapper .category-box-item-list .news-item:first-of-type .news-item-data .news-item-title a {
    font-size: 2rem;
  }
}

.related-news {
  margin-bottom: 5.3rem;
}
@media (min-width: 992px) {
  .related-news {
    margin-bottom: 8rem;
  }
}
.related-news .related-news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 2.2rem;
  grid-row-gap: 4rem;
}
@media (min-width: 1265px) {
  .related-news .related-news-list {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 3.2rem;
  }
}
.related-news .related-news-list .news-item .news-item-image-wrapper {
  margin-bottom: 1.6rem;
}
.related-news .related-news-list .news-item .news-item-data .news-item-category-date {
  margin-bottom: 0.9rem;
}
.related-news .related-news-list .news-item .news-item-data .news-item-title {
  margin-bottom: 0;
}
.related-news .related-news-list .news-item .news-item-data .news-item-title a {
  font-size: 1.8rem;
  line-height: 130%;
}
@media (min-width: 992px) {
  .related-news .related-news-list .news-item .news-item-data .news-item-title a {
    font-size: 2rem;
  }
}

.news-list .news-item {
  display: flex;
  align-items: flex-start;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(45, 45, 45, 0.1);
}
@media (min-width: 1265px) {
  .news-list .news-item {
    padding: 3.2rem 0;
  }
}
.news-list .news-item:first-of-type {
  padding-top: 0;
}
.news-list .news-item .news-item-image-wrapper {
  flex: 0 0 8rem;
  width: 8rem;
  margin-right: 1.6rem;
}
@media (min-width: 576px) {
  .news-list .news-item .news-item-image-wrapper {
    flex: 0 0 15rem;
    width: 15rem;
  }
}
@media (min-width: 768px) {
  .news-list .news-item .news-item-image-wrapper {
    flex: 0 0 30.4rem;
    width: 30.4rem;
  }
}
@media (min-width: 992px) {
  .news-list .news-item .news-item-image-wrapper {
    flex: 0 0 15rem;
    width: 15rem;
  }
}
@media (min-width: 1265px) {
  .news-list .news-item .news-item-image-wrapper {
    flex: 0 0 30.4rem;
    width: 30.4rem;
    margin-right: 3.2rem;
  }
}
.news-list .news-item .news-item-image-wrapper .news-item-image::after {
  padding-top: 100%;
}
@media (min-width: 576px) {
  .news-list .news-item .news-item-image-wrapper .news-item-image::after {
    padding-top: 66%;
  }
}
.news-list .news-item .news-item-data {
  flex: 1;
  width: 100%;
}
.news-list .news-item .news-item-data .news-item-title {
  margin-bottom: 0;
}
.news-list .news-item .news-item-data .news-item-title a {
  font-size: 1.8rem;
  line-height: 130%;
}
@media (min-width: 992px) {
  .news-list .news-item .news-item-data .news-item-title a {
    font-size: 2rem;
  }
}
.news-list .news-item .news-item-data .news-item-category-date {
  margin-bottom: 1.2rem;
}

.latest-page {
  padding: 3rem 0 4.4rem;
}
@media (min-width: 992px) {
  .latest-page {
    padding: 2.8rem 0 9.6rem;
  }
}
.latest-page .layout .main-content {
  margin-bottom: 3.8rem;
}
@media (min-width: 992px) {
  .latest-page .layout .main-content {
    margin-bottom: 0;
  }
}
@media (min-width: 1265px) {
  .latest-page .layout .main-content .news-list .news-item .news-item-title {
    margin-bottom: 1.2rem;
  }
}
@media (min-width: 1265px) {
  .latest-page .layout .main-content .news-list .news-item .news-item-description {
    display: block;
  }
}
@media (min-width: 1265px) {
  .latest-page .layout .main-content .news-list .news-item .news-item-description p {
    color: rgba(12, 10, 10, 0.8);
    font-family: "Roboto", sans-serif;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 0;
  }
}

.search-page {
  padding: 3rem 0 4.4rem;
}
@media (min-width: 992px) {
  .search-page {
    padding: 2.8rem 0 9.6rem;
  }
}
.search-page .search-action {
  margin-bottom: 2.4rem;
}
@media (min-width: 992px) {
  .search-page .search-action {
    width: calc(100% - 332px);
  }
}
.search-page .search-action .search-wrapper {
  margin-bottom: 2.4rem;
}
.search-page .search-action .search-wrapper .toggle-search {
  display: none;
}
.search-page .search-action .search-wrapper .search-form-wrapper {
  width: 100%;
  top: unset;
  left: unset;
  transform: unset;
  opacity: 1;
  visibility: visible;
  transition: unset;
  position: relative;
}
.search-page .search-action .search-wrapper .search-form-wrapper .search-form {
  width: 100%;
}
.search-page .search-action .search-wrapper .search-form-wrapper .search-form .form-group .close-search {
  display: none;
}
.search-page .search-action .results-title {
  display: block;
  color: #0C0A0A;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 2.4rem;
}
@media (min-width: 1265px) {
  .search-page .search-action .results-title {
    font-size: 2.4rem;
  }
}
.search-page .search-action .results-number {
  display: flex;
  align-items: center;
  color: rgba(12, 10, 10, 0.4);
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.search-page .search-action .results-number .number {
  color: #0C0A0A;
  font-weight: 600;
  padding: 0 0.5rem;
}
.search-page .news-list .news-item:first-of-type {
  padding-top: 1.6rem;
  border-top: 1px solid rgba(45, 45, 45, 0.1);
}
@media (min-width: 1265px) {
  .search-page .news-list .news-item:first-of-type {
    padding-top: 3.2rem;
  }
}
.search-page .layout .main-content {
  margin-bottom: 3.8rem;
}
@media (min-width: 992px) {
  .search-page .layout .main-content {
    margin-bottom: 0;
  }
}

.most-read {
  padding: 2.7rem 1.7rem;
  background-color: rgba(12, 10, 10, 0.03);
  border: 1px solid #0c0a0a;
  position: relative;
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .most-read {
    margin-bottom: 3.8rem;
  }
}
.most-read:before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 1px solid #0c0a0a;
  pointer-events: none;
}
@media (min-width: 992px) {
  .most-read .section-header {
    margin-bottom: 2.4rem;
  }
}
.most-read .most-read-list .news-item {
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(12, 10, 10, 0.1);
  position: relative;
}
.most-read .most-read-list .news-item:first-of-type {
  padding-top: 0;
}
.most-read .most-read-list .news-item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.most-read .most-read-list .news-item .news-item-image-wrapper {
  display: none;
}
.most-read .most-read-list .news-item .news-item-data .news-item-title {
  margin-bottom: 0;
}
.most-read .most-read-list .news-item .news-item-data .news-item-title a {
  font-size: 1.6rem;
  line-height: 130%;
}
.most-read .most-read-list .news-item .news-item-data .news-item-category-date {
  margin-bottom: 0.9rem;
}

.latest {
  margin-bottom: 4.8rem;
}
.latest .latest-list {
  padding-left: 2.4rem;
  margin-bottom: 2.4rem;
}
.latest .latest-list .news-item {
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(45, 45, 45, 0.1);
  position: relative;
}
.latest .latest-list .news-item:first-of-type {
  padding-top: 0;
}
.latest .latest-list .news-item:first-of-type:before {
  top: 0.2rem;
}
.latest .latest-list .news-item:first-of-type::after {
  top: 0 !important;
  height: calc(100% + 2.4rem) !important;
}
.latest .latest-list .news-item:before {
  content: "";
  display: block;
  position: absolute;
  top: 1.8rem;
  left: -2.4rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  z-index: 1;
}
.latest .latest-list .news-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.4rem;
  left: -2.05rem;
  width: 1px;
  height: 100%;
  background-color: rgba(45, 45, 45, 0.1);
  z-index: 0;
}
.latest .latest-list .news-item .news-item-image-wrapper {
  display: none;
}
.latest .latest-list .news-item .news-item-data {
  display: flex;
  flex-direction: column;
}
.latest .latest-list .news-item .news-item-data .news-item-title {
  margin-bottom: 0;
  order: 2;
}
.latest .latest-list .news-item .news-item-data .news-item-title a {
  font-size: 1.6rem;
  line-height: 125%;
}
@media (min-width: 992px) {
  .latest .latest-list .news-item .news-item-data .news-item-title a {
    font-size: 1.8rem;
  }
}
.latest .latest-list .news-item .news-item-data .news-item-category-time {
  order: 1;
  margin-bottom: 1.2rem;
}
.latest .latest-list .news-item .news-item-data .news-item-category-time .news-item-category {
  display: none;
}
.latest .latest-list .news-item .news-item-data .news-item-category-time .news-item-date {
  display: none;
}
.latest .latest-list .news-item .news-item-data .news-item-category-time .news-item-time {
  display: block;
}
.latest .latest-list .news-item .news-item-data .news-item-category-time .news-item-time .hours {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}
.latest .latest-list .news-item .news-item-data .news-item-category-time .news-item-time .ago-wrapper {
  display: none;
}
.latest .see-all {
  text-align: center;
  display: block;
  border-radius: 4px;
  padding: 1.45rem 0;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
}

.printed-sidebar {
  padding: 3.2rem 4.6rem;
  background-color: rgba(12, 10, 10, 0.03);
  border: 1px solid #0c0a0a;
  position: relative;
  margin-bottom: 3.8rem;
}
.printed-sidebar:before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 1px solid #0c0a0a;
  pointer-events: none;
}
.printed-sidebar .section-header {
  justify-content: center;
}
.printed-sidebar .printed-item {
  margin-bottom: 1.7rem;
}
.printed-sidebar .printed-item .printed-item-image {
  margin-bottom: 1.7rem;
}
.printed-sidebar .printed-item .printed-item-data {
  display: none;
}
.printed-sidebar .read-all {
  display: block;
  background: #0C0A0A;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  padding: 1.6rem 0;
}

.single-news-wrapper {
  padding-top: 1.3rem;
}
@media (min-width: 992px) {
  .single-news-wrapper {
    padding-top: 1.8rem;
  }
}
.single-news-wrapper .single-news {
  max-width: 77.2rem;
  margin-inline: auto;
}
.single-news-wrapper .single-news .single-news-header {
  margin-bottom: 3rem;
}
.single-news-wrapper .single-news .single-news-header .single-news-cat-date {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.single-news-wrapper .single-news .single-news-header .single-news-cat-date .single-news-category {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  color: #EC2548;
}
.single-news-wrapper .single-news .single-news-header .single-news-cat-date .single-news-category:last-of-type {
  position: relative;
  padding-right: 1.2rem;
  margin-right: 0.8rem;
}
.single-news-wrapper .single-news .single-news-header .single-news-cat-date .single-news-category:last-of-type::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: rgba(12, 10, 10, 0.4);
}
.single-news-wrapper .single-news .single-news-header .single-news-cat-date .date {
  display: block;
  color: rgba(12, 10, 10, 0.4);
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 100%;
}
.single-news-wrapper .single-news .single-news-header .single-news-title {
  color: #0C0A0A;
  font-family: "Noto Serif", serif;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 992px) {
  .single-news-wrapper .single-news .single-news-header .single-news-title {
    font-size: 4.4rem;
  }
}
.single-news-wrapper .single-news .single-news-header .author-name {
  display: block;
  color: #0C0A0A;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 100%;
  text-decoration: underline;
  line-height: 100%;
  text-align: center;
  margin-bottom: 2rem;
}
.single-news-wrapper .single-news .single-news-header .comments-wrapper {
  display: block;
  margin-bottom: 3rem;
  text-align: center;
}
.single-news-wrapper .single-news .single-news-header .comments-wrapper .comments-text {
  display: block;
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.single-news-wrapper .single-news .single-news-header .single-news-image-wrapper {
  margin-bottom: 3rem;
}
.single-news-wrapper .single-news .single-news-header .single-news-image-wrapper .single-news-image {
  position: relative;
  display: block;
  margin-bottom: 0;
}
.single-news-wrapper .single-news .single-news-header .single-news-image-wrapper .single-news-image:after {
  content: "";
  display: block;
  padding-top: 57%;
}
.single-news-wrapper .single-news .single-news-header .single-news-image-wrapper .single-news-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.single-news-wrapper .single-news .single-news-header .share-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.single-news-wrapper .single-news .single-news-header .share-links .share-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 0 4rem;
  width: 4rem;
  height: 4rem;
  border-radius: 20px;
  border: 0.909px solid #000;
}
@media (min-width: 992px) {
  .single-news-wrapper .single-news .single-news-header .share-links .share-link {
    flex: 0 0 4.4rem;
    width: 4.4rem;
    height: 4.4rem;
  }
}
.single-news-wrapper .single-news .single-news-header .single-news-short-desc p {
  color: rgba(12, 10, 10, 0.8);
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 3rem;
}
.single-news-wrapper .single-news .single-news-header .single-news-short-desc p:last-of-type {
  margin-bottom: 0;
}
.single-news-wrapper .single-news .single-news-header .single-news-short-desc a {
  color: #EC2548;
  text-decoration: underline;
  font-weight: 500;
}
.single-news-wrapper .single-news .single-news-content {
  padding-top: 3rem;
  border-top: 1px solid rgba(12, 10, 10, 0.1);
}
.single-news-wrapper .single-news .single-news-content h2,
.single-news-wrapper .single-news .single-news-content h3,
.single-news-wrapper .single-news .single-news-content h4,
.single-news-wrapper .single-news .single-news-content h5,
.single-news-wrapper .single-news .single-news-content h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #0C0A0A;
  line-height: 130%;
  margin-bottom: 1.8rem;
}
.single-news-wrapper .single-news .single-news-content h2 {
  font-size: 2.4rem;
}
@media (min-width: 992px) {
  .single-news-wrapper .single-news .single-news-content h2 {
    font-size: 3.2rem;
  }
}
.single-news-wrapper .single-news .single-news-content h3 {
  font-size: 2rem;
}
@media (min-width: 992px) {
  .single-news-wrapper .single-news .single-news-content h3 {
    font-size: 2.6rem;
  }
}
.single-news-wrapper .single-news .single-news-content h4 {
  font-size: 1.8rem;
}
@media (min-width: 992px) {
  .single-news-wrapper .single-news .single-news-content h4 {
    font-size: 2.2rem;
  }
}
.single-news-wrapper .single-news .single-news-content h5 {
  font-size: 1.6rem;
}
@media (min-width: 992px) {
  .single-news-wrapper .single-news .single-news-content h5 {
    font-size: 2rem;
  }
}
.single-news-wrapper .single-news .single-news-content h6 {
  font-size: 1.4rem;
}
@media (min-width: 992px) {
  .single-news-wrapper .single-news .single-news-content h6 {
    font-size: 1.8rem;
  }
}
.single-news-wrapper .single-news .single-news-content p {
  color: rgba(12, 10, 10, 0.8);
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 3rem;
}
.single-news-wrapper .single-news .single-news-content a {
  color: #EC2548;
  text-decoration: underline;
  font-weight: 600;
}
.single-news-wrapper .single-news .single-news-content b,
.single-news-wrapper .single-news .single-news-content strong {
  font-weight: 600;
}
.single-news-wrapper .single-news .single-news-content em {
  font-style: italic;
}
.single-news-wrapper .single-news .single-news-content ul,
.single-news-wrapper .single-news .single-news-content ol {
  margin-bottom: 3rem;
}
.single-news-wrapper .single-news .single-news-content ul li,
.single-news-wrapper .single-news .single-news-content ol li {
  color: rgba(12, 10, 10, 0.8);
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 1rem;
}
.single-news-wrapper .single-news .single-news-content ul li:last-of-type,
.single-news-wrapper .single-news .single-news-content ol li:last-of-type {
  margin-bottom: 0;
}
.single-news-wrapper .single-news .single-news-content blockquote {
  background: rgba(12, 10, 10, 0.1);
  padding: 2.4rem;
  margin-bottom: 3rem;
  position: relative;
}
@media (min-width: 992px) {
  .single-news-wrapper .single-news .single-news-content blockquote {
    padding: 3.2rem;
  }
}
.single-news-wrapper .single-news .single-news-content blockquote p {
  color: rgba(12, 10, 10, 0.8);
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 3rem;
}
.single-news-wrapper .single-news .single-news-content blockquote p:last-of-type {
  margin-bottom: 0;
}
.single-news-wrapper .single-news .single-news-content p > picture > img,
.single-news-wrapper .single-news .single-news-content p > img {
  width: 100%;
  height: auto;
}
@media (min-width: 576px) {
  .single-news-wrapper .single-news .single-news-content p > picture > img.alignleft,
  .single-news-wrapper .single-news .single-news-content p > img.alignleft {
    float: left;
    width: auto;
    max-width: calc(50% - 1rem);
    margin-right: 1rem;
  }
}
@media (min-width: 576px) {
  .single-news-wrapper .single-news .single-news-content p > picture > img.alignright,
  .single-news-wrapper .single-news .single-news-content p > img.alignright {
    float: right;
    width: auto;
    max-width: calc(50% - 1rem);
    margin-left: 1rem;
  }
}
@media (min-width: 576px) {
  .single-news-wrapper .single-news .single-news-content p > picture > img.aligncenter,
  .single-news-wrapper .single-news .single-news-content p > img.aligncenter {
    width: auto;
    max-width: 100%;
    display: block;
    margin-inline: auto;
  }
}
.single-news-wrapper .single-news .single-news-content .image-wrapper {
  margin-bottom: 3rem;
  overflow: hidden;
}
.single-news-wrapper .single-news .single-news-content .image-wrapper figure {
  margin: 0 !important;
}
.single-news-wrapper .single-news .single-news-content .image-wrapper img {
  display: block;
  width: 100%;
}
.single-news-wrapper .single-news .single-news-content .image-wrapper.aligncenter {
  margin-inline: auto;
}
@media (min-width: 576px) {
  .single-news-wrapper .single-news .single-news-content .image-wrapper.alignright {
    max-width: calc(50% - 1rem);
    width: auto;
    float: right;
    margin-left: 1rem;
  }
  .single-news-wrapper .single-news .single-news-content .image-wrapper.alignright img {
    width: 100%;
  }
  .single-news-wrapper .single-news .single-news-content .image-wrapper.alignleft {
    max-width: calc(50% - 1rem);
    width: auto;
    float: left;
    margin-right: 1rem;
  }
  .single-news-wrapper .single-news .single-news-content .image-wrapper.alignleft img {
    width: 100%;
  }
}
.single-news-wrapper .single-news .single-news-content .gallery-wrapper {
  margin-bottom: 3rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .single-news-wrapper .single-news .single-news-content .gallery-wrapper {
    margin-bottom: 3.2rem;
  }
}
.single-news-wrapper .single-news .single-news-content .gallery-wrapper .gallery-item {
  display: none !important;
  width: 100%;
  position: relative;
  text-decoration: none;
}
.single-news-wrapper .single-news .single-news-content .gallery-wrapper .gallery-item figure {
  margin-bottom: 0;
}
.single-news-wrapper .single-news .single-news-content .gallery-wrapper .gallery-item:first-of-type {
  display: block !important;
}
.single-news-wrapper .single-news .single-news-content .gallery-wrapper .gallery-item img {
  width: 100%;
  display: block;
}
.single-news-wrapper .single-news .single-news-content .gallery-wrapper .gallery-item .image-source {
  display: block;
  color: #8e8e83;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  padding-top: 1.2rem;
  text-align: center;
}
.single-news-wrapper .single-news .single-news-content .gallery-wrapper .gallery-item .display-gallery {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 1rem;
  color: #0C0A0A;
  margin-bottom: 0;
}
.single-news-wrapper .single-news .single-news-content .gallery-wrapper .gallery-item .display-gallery span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 133%;
}
.single-news-wrapper .single-news .single-news-content .post-views {
  display: none;
}

.image-info {
  position: relative;
}
.image-info .wp-caption-text {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: auto;
  height: auto;
  color: #0C0A0A;
  background-color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 133%;
  padding: 0.6rem 1rem;
}
.image-info .img-source {
  display: block;
  color: #8e8e83;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  padding-top: 1.2rem;
  text-align: center;
}

.instagram-media {
  max-width: 70% !important;
  min-width: 300px !important;
  margin-inline: auto !important;
  margin: 0 auto 3rem !important;
}

iframe:not(.instagram-media) {
  max-width: 100% !important;
}

iframe[src*=facebook] {
  display: block;
  margin: 0 auto 3rem !important;
}

iframe[src*=linkedin] {
  display: block;
  margin: 0 auto 3rem !important;
}

iframe[src*=youtube],
iframe[src*=vimeo] {
  display: block;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16/9;
  margin: 0 auto 3rem !important;
}

.twitter-tweet {
  margin-inline: auto !important;
  margin-top: 0 !important;
  margin: 0 auto 3rem !important;
}

.tags-wrapper {
  padding: 2rem 0;
  border-top: 1px solid rgba(12, 10, 10, 0.1);
  border-bottom: 1px solid rgba(12, 10, 10, 0.1);
  margin-bottom: 3rem;
}
.tags-wrapper .tag-title {
  text-align: center;
  display: block;
  color: #0C0A0A;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.tags-wrapper .tags-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .tags-wrapper .tags-list {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.4rem;
  }
}
.tags-wrapper .tags-list .tag-link {
  display: block;
  font-family: "Roboto", sans-serif;
  color: rgba(12, 10, 10, 0.8);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  text-transform: uppercase;
  text-decoration: underline;
}

.leave-comment {
  background: rgba(12, 10, 10, 0.03);
  padding: 4.9rem 1.4rem;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .leave-comment {
    padding: 4.9rem 3.2rem;
  }
}
.leave-comment .comments-area .comment-respond .comment-reply-title {
  color: rgba(12, 10, 10, 0.95);
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-bottom: 3px solid #0C0A0A;
  padding-bottom: 0.8rem;
  margin-bottom: 3.2rem;
  position: relative;
}
.leave-comment .comments-area .comment-respond .comment-reply-title::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  border-bottom: 1px solid #0C0A0A;
}
.leave-comment .comments-area .comment-respond .comment-form .logged-in-as {
  color: rgba(12, 10, 10, 0.8);
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 2.2rem;
}
.leave-comment .comments-area .comment-respond .comment-form .logged-in-as a {
  font-weight: 500;
  text-decoration: underline;
}
.leave-comment .comments-area .comment-respond .comment-form .comment-form-comment label {
  display: block;
  color: #0C0A0A;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.leave-comment .comments-area .comment-respond .comment-form .comment-form-comment textarea {
  width: 100%;
  border: 1px solid rgba(12, 10, 10, 0.4);
  background: #f8f8f8;
  padding: 2rem 2.7rem;
  overflow: hidden;
  color: rgba(12, 10, 10, 0.8);
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 2.2rem;
}
.leave-comment .comments-area .comment-respond .comment-form .comment-form-comment textarea::placeholder {
  color: rgba(12, 10, 10, 0.8);
  opacity: 1;
}
.leave-comment .comments-area .comment-respond .comment-form .comment-form-comment textarea:focus-visible {
  outline: none;
}
.leave-comment .comments-area .comment-respond .comment-form .comment-form-comment p {
  color: rgba(12, 10, 10, 0.8);
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-top: 0;
  margin-bottom: 2.2rem !important;
}
.leave-comment .comments-area .comment-respond .comment-form .form-submit {
  text-align: end;
}
.leave-comment .comments-area .comment-respond .comment-form .form-submit .submit {
  border: none;
  background-color: transparent;
  padding: 0;
  color: #EC2548;
  text-overflow: ellipsis;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  cursor: pointer;
}
.leave-comment .comments-area .comment-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 3rem;
}
.leave-comment .comments-area .comment-list li:last-of-type .comment-body {
  padding-bottom: 0;
}
.leave-comment .comments-area .comment-list li .comment-body {
  padding: 2.4rem 0;
  border-top: 1px solid rgba(12, 10, 10, 0.1);
}
.leave-comment .comments-area .comment-list li .comment-body .comment-author {
  display: none;
}
.leave-comment .comments-area .comment-list li .comment-body .comment-meta {
  display: none;
}
.leave-comment .comments-area .comment-list li .comment-body p {
  color: rgba(12, 10, 10, 0.8);
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.leave-comment .comments-area .comment-list li .comment-body .reply {
  display: none;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding-top: 5.5rem;
}
@media (min-width: 1265px) {
  .pagination {
    padding-top: 7rem;
  }
}
.pagination .page-numbers {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 130%;
  transition: 0.3s linear;
  font-family: "Noto Serif", serif;
  color: rgba(12, 10, 10, 0.4);
  font-weight: 600;
  text-transform: uppercase;
}
.pagination .page-numbers.current {
  color: #0C0A0A;
}
.pagination .page-numbers:hover {
  color: #0C0A0A;
}
.pagination .page-numbers.next svg path {
  transition: 0.3s linear;
}
.pagination .page-numbers.next:hover svg path {
  fill: #0C0A0A;
  fill-opacity: 1;
}
.pagination .page-numbers.prev svg path {
  transition: 0.3s linear;
}
.pagination .page-numbers.prev:hover svg path {
  fill: #0C0A0A;
  fill-opacity: 1;
}

.search-wrapper .toggle-search {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.search-wrapper .toggle-search .label {
  display: none;
}
@media (min-width: 992px) {
  .search-wrapper .toggle-search .label {
    display: block;
    color: rgba(0, 0, 0, 0.95);
    font-family: "Roboto", sans-serif;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-left: 0.9rem;
  }
}
.search-wrapper .search-form-wrapper {
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  height: auto;
  width: 100%;
  z-index: 11;
}
.search-wrapper .search-form-wrapper.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
@media (min-width: 992px) {
  .search-wrapper .search-form-wrapper {
    width: auto;
    top: 0;
    left: unset;
  }
}
.search-wrapper .search-form-wrapper .search-form {
  position: relative;
}
@media (min-width: 992px) {
  .search-wrapper .search-form-wrapper .search-form {
    width: 23rem;
  }
}
@media (min-width: 1265px) {
  .search-wrapper .search-form-wrapper .search-form {
    width: 36.7rem;
  }
}
.search-wrapper .search-form-wrapper .search-form .form-group {
  position: relative;
}
.search-wrapper .search-form-wrapper .search-form .form-group .input-group {
  width: 100%;
  height: 4rem;
  border: none;
  border-bottom: 1px solid rgba(12, 10, 10, 0.4);
  padding: 0;
  padding-left: 3rem;
  color: rgba(0, 0, 0, 0.95);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.search-wrapper .search-form-wrapper .search-form .form-group .input-group:focus-visible {
  outline: none;
}
.search-wrapper .search-form-wrapper .search-form .form-group .input-group::placeholder {
  color: rgba(0, 0, 0, 0.95);
  opacity: 1;
}
.search-wrapper .search-form-wrapper .search-form .form-group .search-btn {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  width: 2.2rem;
  height: 2.2rem;
}
.search-wrapper .search-form-wrapper .search-form .form-group .close-search {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  align-items: end;
  justify-content: center;
  flex-direction: column;
}

.social-wrapper .social-label {
  display: none;
}
.social-wrapper .social {
  display: flex;
  align-items: center;
  justify-content: end;
}
.social-wrapper .social .social-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 2.4rem;
}
.social-wrapper .social .social-item:not(:last-of-type) {
  margin-right: 2.4rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .breadcrumb {
    padding-bottom: 5rem;
  }
}
.breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
}
.breadcrumb .breadcrumb-item::after {
  color: #8e8e83;
}
.breadcrumb .breadcrumb-item.active span {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 133.333%;
  max-width: 193px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.breadcrumb .breadcrumb-item a {
  display: block;
  color: #8e8e83;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 133.333%;
  transition: 0.3s linear;
}
.breadcrumb .breadcrumb-item a:hover {
  color: #000;
}

footer .footer-top {
  background-color: #211f1f;
  padding: 3.2rem 0;
}
@media (min-width: 992px) {
  footer .footer-top {
    padding: 4.8rem 0;
  }
}
@media (min-width: 992px) {
  footer .footer-top .footer-top-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
footer .footer-top .footer-top-wrapper .footer-top-action {
  margin-bottom: 4.4rem;
}
@media (min-width: 992px) {
  footer .footer-top .footer-top-wrapper .footer-top-action {
    margin-bottom: 0;
    flex: 0 0 30%;
    width: 30%;
  }
}
footer .footer-top .footer-top-wrapper .footer-top-action .footer-logo {
  display: block;
  margin-inline: auto;
  margin-bottom: 1.6rem;
  max-width: 12rem;
  flex: 0 0 12rem;
  width: 12rem;
}
@media (min-width: 768px) {
  footer .footer-top .footer-top-wrapper .footer-top-action .footer-logo {
    max-width: 19.2rem;
    flex: 0 0 19.2rem;
    width: 19.2rem;
  }
}
@media (min-width: 992px) {
  footer .footer-top .footer-top-wrapper .footer-top-action .footer-logo {
    margin-inline: unset;
    margin-bottom: 3.2rem;
  }
}
footer .footer-top .footer-top-wrapper .footer-top-action .social-wrapper .social-label {
  display: block;
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 1.6rem;
}
@media (min-width: 992px) {
  footer .footer-top .footer-top-wrapper .footer-top-action .social-wrapper .social-label {
    text-align: start;
  }
}
footer .footer-top .footer-top-wrapper .footer-top-action .social-wrapper .social {
  justify-content: center;
}
@media (min-width: 992px) {
  footer .footer-top .footer-top-wrapper .footer-top-action .social-wrapper .social {
    justify-content: start;
  }
}
footer .footer-top .footer-top-wrapper .footer-top-action .social-wrapper .social .social-item svg {
  fill: #fff;
}
@media (min-width: 992px) {
  footer .footer-top .footer-top-wrapper .footer-top-menu {
    display: flex;
    align-items: flex-start;
    flex: 0 0 70%;
    width: 70%;
  }
}
footer .footer-top .footer-top-wrapper .footer-top-menu .footer-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 3.2rem;
  grid-row-gap: 1.6rem;
  margin-bottom: 4.4rem;
}
@media (min-width: 992px) {
  footer .footer-top .footer-top-wrapper .footer-top-menu .footer-menu {
    margin-bottom: 0;
    flex: 1;
    width: 100%;
    flex: 0 0 70%;
    width: 70%;
    margin-right: 1.6rem;
  }
}
@media (min-width: 1400px) {
  footer .footer-top .footer-top-wrapper .footer-top-menu .footer-menu {
    margin-right: 3.2rem;
  }
}
footer .footer-top .footer-top-wrapper .footer-top-menu .footer-menu .footer-item .footer-link {
  display: block;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  text-transform: uppercase;
  transition: 0.3s linear;
}
footer .footer-top .footer-top-wrapper .footer-top-menu .footer-menu .footer-item .footer-link:hover {
  color: #EC2548;
}
@media (min-width: 992px) {
  footer .footer-top .footer-top-wrapper .footer-top-menu .secondary-menu {
    flex: 0 0 30%;
    width: 30%;
  }
}
footer .footer-top .footer-top-wrapper .footer-top-menu .secondary-menu .secondary-menu-item:not(:last-of-type) {
  margin-bottom: 1.6rem;
}
footer .footer-top .footer-top-wrapper .footer-top-menu .secondary-menu .secondary-menu-item .secondary-menu-link {
  display: block;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  transition: 0.3s linear;
}
footer .footer-top .footer-top-wrapper .footer-top-menu .secondary-menu .secondary-menu-item .secondary-menu-link:hover {
  color: #EC2548;
}
footer .footer-bottom {
  padding: 1.8rem 0;
}
@media (min-width: 992px) {
  footer .footer-bottom .footer-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
footer .footer-bottom .footer-bottom-wrapper .static-menu {
  display: flex;
  align-items: center;
  margin-bottom: 1.6rem;
}
@media (min-width: 992px) {
  footer .footer-bottom .footer-bottom-wrapper .static-menu {
    margin-bottom: 0;
  }
}
footer .footer-bottom .footer-bottom-wrapper .static-menu .static-menu-item:not(:last-of-type) {
  margin-right: 1.6rem;
}
footer .footer-bottom .footer-bottom-wrapper .static-menu .static-menu-item .static-menu-link {
  display: block;
  color: #0C0A0A;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
footer .footer-bottom .footer-bottom-wrapper .copyright {
  text-align: center;
  color: #0C0A0A;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
footer .footer-bottom .footer-bottom-wrapper .copyright a {
  font-weight: 700;
  text-decoration: underline;
}

/*# sourceMappingURL=single-news.css.map */
