@charset "UTF-8";
:root {
  --highlight-color-1: #99151a;
  --highlight-color-2: #EE5307;
  --mock: gray;
  --custom-black: #262626;
  --custom-black-darker: #0f1012;
  --custom-gray01: #727279;
  --custom-gray02: #94949B;
  --custom-gray03: #CDCDD5;
  --custom-gray04: #F6F6F6;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Regular.ttf") format("truetype");
  font-weight: 400; /* normal */
  font-style: normal;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Medium.ttf") format("truetype");
  font-weight: 500; /* medium */
  font-style: normal;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Bold.ttf") format("truetype");
  font-weight: 700; /* bold */
  font-style: normal;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

::-moz-selection {
  background-color: var(--highlight-color-1); /* Cor de fundo da seleção */
  color: var(--custom-black); /* Cor do texto durante a seleção */
}

::selection {
  background-color: var(--highlight-color-1); /* Cor de fundo da seleção */
  color: var(--custom-black); /* Cor do texto durante a seleção */
}

.alm-load-more-btn {
  display: none;
}

body {
  font-family: "Rubik", sans-serif;
  font-size: 1rem;
  min-height: 100vh;
}
body .locked {
  overflow: hidden !important;
}

svg {
  height: 18px;
  fill: var(--highlight-color-1);
}

button {
  outline: none;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

textarea {
  font-family: "Rubik", sans-serif;
}
textarea::-webkit-input-placeholder {
  font-family: "Rubik", sans-serif;
}
textarea::-moz-placeholder {
  font-family: "Rubik", sans-serif;
}
textarea:-ms-input-placeholder {
  font-family: "Rubik", sans-serif;
}
textarea::-ms-input-placeholder {
  font-family: "Rubik", sans-serif;
}
textarea::placeholder {
  font-family: "Rubik", sans-serif;
}

p, span, h1, h2, h3, a {
  color: var(--custom-black);
  font-family: "Rubik", sans-serif;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
}

img {
  max-width: 100%;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.cover, .post-cover {
  background-color: var(--custom-black);
}

.sticky {
  position: sticky;
  top: 0;
}

html {
  font-size: 62.5%;
}
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-drag: none;
}

.swiper-wrapper {
  position: relative;
}
.swiper-wrapper .swiper-button-next, .swiper-wrapper .swiper-button-prev {
  width: 42px;
  height: 42px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 3;
  position: static;
}
.swiper-wrapper .swiper-button-next::after, .swiper-wrapper .swiper-button-prev::after {
  font-size: 20px;
}
.swiper-wrapper .swiper-button-next {
  right: 0;
  top: 0;
}

.container {
  max-width: 137.6rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
}

.heading-title {
  font-size: 2.5rem;
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 3px solid var(--highlight-color-1);
  max-width: 200px;
}

.alm-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.alm-btn-wrap .load-more-button {
  background-color: var(--highlight-color-1);
  color: #fff;
  padding: 12px 42px;
  border-radius: 2px;
  margin-top: 40px;
}
.alm-btn-wrap .load-more-button.done {
  display: none;
}

.search-modal {
  background-color: rgb(245, 246, 250);
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 300ms ease, -webkit-transform 300ms ease;
  transition: opacity 300ms ease, -webkit-transform 300ms ease;
  transition: transform 300ms ease, opacity 300ms ease;
  transition: transform 300ms ease, opacity 300ms ease, -webkit-transform 300ms ease;
  z-index: 10;
}
.search-modal.search-modal-is-open {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.search-modal.search-modal-is-open .close-modal, .search-modal.search-modal-is-open form {
  opacity: 1;
}
.search-modal .close-modal {
  opacity: 0;
  -webkit-transition: opacity 500ms ease-in-out;
  transition: opacity 500ms ease-in-out;
}
.search-modal .close-modal svg {
  width: 3.8rem;
  height: 3.8rem;
  position: absolute;
  top: 60px;
  right: 30px;
  fill: var(--custom-gray01);
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}
.search-modal .close-modal svg:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  fill: var(--custom-black);
}
.search-modal form {
  max-width: 50%;
  width: 100%;
  border-bottom: 1px solid var(--highlight-color-1);
  padding: 20px 35px 20px 0;
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 500ms ease-in-out;
  transition: opacity 500ms ease-in-out;
}
.search-modal form input {
  width: 100%;
  background-color: transparent;
  border: none;
  font-size: 2.4rem;
}
.search-modal form button {
  position: absolute;
  right: 0;
}
.search-modal form button svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: var(--custom-black);
  -webkit-transition: 150ms ease-in-out;
  transition: 150ms ease-in-out;
}
.search-modal form button svg:hover {
  fill: var(--highlight-color-1);
}
@media (max-width: 992px) {
  .search-modal .close-modal svg {
    width: 2.8rem;
    height: 2.8rem;
  }
}

.advertising-box {
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-color: var(--custom-gray03);
  cursor: pointer;
}

.page-title {
  width: 100%;
  height: 244px;
  overflow: hidden;
  background-color: var(--custom-black-darker);
  display: grid;
  place-content: center;
  padding: 0 40px;
}
.page-title img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-title .page-infos {
  text-align: center;
}
.page-title .page-infos .title {
  color: #fff;
  font-size: 3.2rem;
}
.page-title .page-infos .path {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.page-title .page-infos .path a {
  font-size: 14px;
  color: #fff;
  margin-top: 4px;
}

.newsletter-box {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 650px;
  background: url("../img/bgs/newsletter-bg.png") center center no-repeat;
  background-size: cover;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 3rem;
}
.newsletter-box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: var(--custom-black);
  opacity: 0.8;
}
.newsletter-box img, .newsletter-box span, .newsletter-box h3, .newsletter-box form {
  z-index: 1;
}
.newsletter-box .plane-icon, .newsletter-box span {
  position: relative;
  top: -40px;
}
.newsletter-box .plane-icon {
  max-width: 50px;
  margin-bottom: 2.2rem;
}
.newsletter-box span {
  color: var(--custom-gray03);
  text-transform: uppercase;
  font-size: 1.1rem;
  max-width: 24.2rem;
  text-align: center;
  margin-bottom: 1rem;
}
.newsletter-box h3 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 1.7rem;
  outline: none;
}
.newsletter-box form {
  width: 100%;
  max-width: 24.2rem;
  position: relative;
}
.newsletter-box form input {
  background: transparent;
  width: 100%;
  height: 100%;
  border: 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  padding: 0.8rem 0 1.4rem 0;
  font-size: 1.5rem;
}
.newsletter-box form button {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  width: 1.6rem;
}

.section-title {
  width: 100%;
  height: 300px;
}

.trailer-modal {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  position: fixed;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
.trailer-modal.active {
  opacity: 1;
  pointer-events: all;
}
.trailer-modal.active .background {
  opacity: 0.7;
  pointer-events: all;
}
.trailer-modal.active .trailer-container {
  pointer-events: all;
  opacity: 1;
}
.trailer-modal.active .trailer-container svg {
  height: 28px;
  fill: #fff;
  cursor: pointer;
  margin-left: calc(100% - 32px);
  margin-bottom: 12px;
}
.trailer-modal .background {
  position: absolute;
  inset: 0;
  display: inline-block;
  width: 100%;
  height: 120%;
  background-color: var(--custom-black);
  z-index: -1;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  opacity: 0;
  pointer-events: none;
}
.trailer-modal .trailer-container {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  -webkit-transition: 350ms ease-in-out;
  transition: 350ms ease-in-out;
  opacity: 0;
  pointer-events: none;
}
.trailer-modal .trailer-container iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 103px;
  width: 100%;
  -webkit-transition: 250ms ease-in-out;
  transition: 250ms ease-in-out;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  z-index: 3;
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 21px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 21px 5px rgba(0, 0, 0, 0.1);
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.mobile-menu > li {
  border-top: 1px solid var(--custom-gray04);
}
.mobile-menu > li:last-child {
  border-bottom: 1px solid var(--custom-gray04);
}
.mobile-menu > li > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.mobile-menu > li > span:hover svg {
  fill: var(--highlight-color-1);
}
.mobile-menu > li > span svg {
  width: 14px;
  margin-right: 14px;
  fill: var(--custom-black);
}
.mobile-menu > li > a, .mobile-menu > li > span {
  cursor: pointer;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1.5rem 0 1.5rem 2.5rem;
  width: 100%;
}
.mobile-menu > li > a:hover, .mobile-menu > li > span:hover {
  color: var(--highlight-color-1);
}
.mobile-menu > li > a:hover svg, .mobile-menu > li > span:hover svg {
  stroke: var(--highlight-color-1);
}
.mobile-menu > li .sub-category {
  -webkit-transition: 50ms ease-in-out;
  transition: 50ms ease-in-out;
  -webkit-animation-delay: height 1000ms;
  animation-delay: height 1000ms;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  opacity: 0;
  height: 0;
  pointer-events: none;
}
.mobile-menu > li .sub-category.active {
  opacity: 1;
  height: auto;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  pointer-events: all;
}
.mobile-menu > li .sub-category li a {
  font-size: 1.3rem;
  padding: 1rem 0 1rem 4rem;
  font-weight: 500;
}
.mobile-menu > li .sub-category li a:hover {
  color: var(--highlight-color-1);
}
@media (max-width: 1024px) {
  .mobile-menu {
    display: block;
  }
}

.posted-at {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  margin-bottom: 0.8rem;
}
.posted-at span {
  font-size: 1.4rem;
  color: var(--custom-gray02);
  margin-bottom: -3px;
}
.posted-at svg {
  display: none;
}

.left-column {
  width: 100%;
  max-width: 97.05rem;
}

.right-column {
  width: 100%;
  max-width: 28.4rem;
}
.right-column.sticky {
  position: sticky;
  top: 100px; /* distância do topo da tela ao grudar */
  -ms-flex-item-align: start;
  align-self: start;
}

.image-post {
  width: 100%;
  max-width: 29rem;
  aspect-ratio: 1/1;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.image-post:hover .background img, .image-post:hover .background span {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.image-post:hover .post-infos h1 {
  color: var(--highlight-color-1);
}
.image-post .background {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}
.image-post .background img, .image-post .background span {
  width: 100%;
  height: 100%;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
.image-post .background img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.image-post .background span {
  background-color: var(--custom-black);
  display: inline-block;
  position: absolute;
  inset: 0;
  opacity: 0.3;
  z-index: 2;
}
.image-post .post-infos {
  position: absolute;
  bottom: 1rem;
  padding: 3.2rem;
  z-index: 2;
}
.image-post .post-infos span {
  color: #fff;
}
.image-post .post-infos h1 {
  color: #fff;
  font-size: 2rem;
  margin-top: 1rem;
}

.post-gsize-col2 {
  width: 100%;
  max-width: 46.525rem;
}
.post-gsize-col2:hover .post-cover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.post-gsize-col2:hover .title {
  color: var(--highlight-color-1);
}
.post-gsize-col2:hover .description {
  color: var(--custom-black);
}
.post-gsize-col2 svg {
  height: 18px;
  fill: var(--highlight-color-1);
}
.post-gsize-col2 .post-cover {
  width: 100%;
  aspect-ratio: 17/10;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
.post-gsize-col2 .post-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
.post-gsize-col2 .posted-at {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  margin-bottom: 0.8rem;
}
.post-gsize-col2 .posted-at span {
  font-size: 1.4rem;
  color: var(--custom-gray02);
  margin-bottom: -3px;
}
.post-gsize-col2 .title {
  font-size: 2.4rem;
  line-height: 3.36rem;
  margin-bottom: 1rem;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
.post-gsize-col2 .description {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  line-height: 3.04rem;
  color: var(--custom-gray01);
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Número de linhas */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post-gsize-col2 .infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.post-gsize-col2 .infos li svg {
  fill: var(--custom-gray02);
}
.post-gsize-col2 .infos li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  margin-top: -3px;
}
.post-gsize-col2 .infos li span {
  font-size: 1.4rem;
  color: var(--custom-gray02);
}

.post-msize-col4 {
  width: 100%;
  max-width: 46.525rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.post-msize-col4:hover .cover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.post-msize-col4:hover .details .title {
  color: var(--highlight-color-1);
}
.post-msize-col4:hover .posted-at span {
  color: var(--custom-black);
}
.post-msize-col4 .cover {
  width: 100%;
  max-width: 15rem;
  aspect-ratio: 27/20;
  overflow: hidden;
  border-radius: 2px;
}
.post-msize-col4 .cover img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
.post-msize-col4 .details {
  padding-left: 1.5rem;
}
.post-msize-col4 .details .title {
  font-size: 1.8rem;
  margin-top: 8px;
}

.post-inline-text {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--custom-gray04);
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}
.post-inline-text:hover .posted-at span {
  color: var(--custom-black);
}
.post-inline-text:hover h1 {
  color: var(--highlight-color-1);
}
.post-inline-text:hover > svg {
  right: 14px;
  opacity: 1;
}
.post-inline-text > svg {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
.post-inline-text h1 {
  margin-top: 8px;
  font-size: 1.8rem;
  width: 100%;
  max-width: 24.4rem;
}

.s-title {
  z-index: -1;
  height: 48px;
  width: 100%;
  padding-left: 2rem;
  background-color: var(--highlight-color-1);
  margin-bottom: 40px;
  position: relative;
}
.s-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--highlight-color-1);
}
.s-title h1 {
  font-size: 1.8rem;
  color: #fff;
  line-height: 48px;
  font-weight: 500;
}

.trailer-media-item {
  width: 33.3333333333%;
  aspect-ratio: 16/8.9;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.trailer-media-item svg, .trailer-media-item img, .trailer-media-item .trailer-image-background {
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
.trailer-media-item svg {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  z-index: 1;
}
.trailer-media-item img {
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}
.trailer-media-item .trailer-image-background {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-color: var(--custom-black);
  opacity: 0.3;
  z-index: 1;
}
.trailer-media-item:hover svg {
  fill: #fff;
}
.trailer-media-item:hover img, .trailer-media-item:hover .trailer-image-background {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin: 0 auto;
  margin-top: 40px;
}
.pagination li {
  background-color: var(--highlight-color-1);
  font-weight: bold;
  color: #fff;
  height: 44px;
  font-size: 14px;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.pagination li.current-page {
  display: none;
  width: 60px;
  padding: 0 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.pagination li.current-page:hover {
  -webkit-filter: none;
  filter: none;
  cursor: auto;
}
.pagination li.previous-page, .pagination li.next-page {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.pagination li:hover {
  -webkit-filter: brightness(0.9);
  filter: brightness(0.9);
}
.pagination li.active {
  background-color: var(--highlight-color-1);
}
.pagination li.active a {
  color: #fff;
}
.pagination li.disabled {
  pointer-events: none;
  opacity: 0.4;
}
.pagination li.disabled a {
  color: var(--custom-black);
  background-color: var(--custom-gray01);
}
.pagination li a {
  display: grid;
  text-transform: uppercase;
  font-weight: bold;
  background-color: var(--highlight-color-1);
  place-content: center;
  color: #fff;
  border-radius: 2px;
  width: 100%;
  height: 100%;
}

.side-search {
  height: 44px;
  max-width: 230px;
  margin-bottom: 48px;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--custom-gray04);
}
.side-search input {
  height: 100%;
  width: 100%;
  padding-left: 12px;
  font-size: 16px;
  border: none;
  background-color: transparent;
}
.side-search button {
  margin-right: 8px;
}
.side-search button svg {
  fill: var(--custom-gray01);
}

@media (max-width: 1400px) {
  .post-gsize-col2 .title {
    font-size: 20px;
  }
  .post-gsize-col2 .description {
    font-size: 14px;
    line-height: 24.4px;
  }
  .post-msize-col4 .details .title {
    font-size: 16.5px;
  }
  .post-inline-text h1 {
    font-size: 16.5px;
  }
}
@media (max-width: 1024px) {
  .post-inline-text h1 {
    max-width: 100%;
    padding-right: 24px;
  }
  .trailer-media-item {
    width: 50%;
  }
}
@media (max-width: 834px) {
  .post-gsize-col2 {
    max-width: 100% !important;
  }
  .post-msize-col4 {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 100%;
  }
  .post-msize-col4 .posted-at {
    margin-bottom: 12px;
  }
  .trailer-media-item {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .page-title .page-infos .title {
    font-size: 2.5rem;
  }
}
header {
  height: 154px;
  background-color: var(--mock);
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 21px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 21px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 3;
}
header .top-header {
  background-color: var(--custom-black);
  color: #fff;
}
header .top-header .container {
  height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
header .top-header .container a {
  color: #fff;
  font-size: 14px;
}
header > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
header > .container .toggle-menu {
  display: none;
}
header > .container .logo {
  width: 100%;
  max-width: 182px;
  height: 29px;
}
header > .container .logo img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
header > .container .header-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}
header > .container .header-navigation > li {
  text-align: center;
}
header > .container .header-navigation > li > a {
  padding: 0 1.5rem;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 500;
  height: 100px;
  line-height: 100px;
  position: relative;
}
header > .container .header-navigation > li > a::after {
  content: "";
  -webkit-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
  width: 0;
  height: 3px;
  background-color: var(--highlight-color-1);
  position: absolute;
  left: 0;
  bottom: 0;
}
header > .container .header-navigation > li > a:hover {
  color: var(--highlight-color-1);
}
header > .container .header-navigation > li > a:hover span svg {
  fill: var(--highlight-color-1);
}
header > .container .header-navigation > li > a:hover::after {
  width: 100%;
}
header > .container .header-navigation > li > a span svg {
  width: 12px;
  height: 12px;
  -webkit-transition: 150ms ease-in-out;
  transition: 150ms ease-in-out;
  fill: var(--custom-black);
}
header > .container .header-navigation > li > a span svg.active {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
header > .container .header-navigation > li .tray {
  -webkit-box-shadow: 0px 5px 21px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 21px 5px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 100px;
  background-color: #fff;
  -webkit-transition: 300ms;
  transition: 300ms;
  width: 22.4rem;
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-230px);
  transform: translateY(-230px);
  z-index: -1;
}
header > .container .header-navigation > li .tray a {
  width: 100%;
  font-size: 1.4rem;
  padding: 14px 0 14px 2.5rem;
  text-align: left;
  font-weight: 500;
  color: var(--custom-gray01);
}
header > .container .header-navigation > li .tray a:hover {
  color: var(--highlight-color-1);
}
header > .container .header-navigation > li .tray.active {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
header > .container button svg {
  width: 24px;
  height: 24px;
  fill: var(--custom-black);
  width: 2rem;
  height: 2.1rem;
  -webkit-transition: 150ms ease-in-out;
  transition: 150ms ease-in-out;
}
header > .container button svg:hover {
  fill: var(--highlight-color-1);
}
@media (max-width: 1400px) {
  header .container {
    max-width: 111.6rem;
  }
}
@media (max-width: 1200px) {
  header .container {
    max-width: 93.6rem;
  }
}
@media (max-width: 1024px) {
  header {
    height: auto;
  }
  header .top-header .container {
    height: 44px;
    max-width: 100%;
  }
  header > .container {
    height: 5.9rem;
    max-width: 100%;
  }
  header > .container .header-navigation {
    display: none;
  }
  header > .container .logo {
    height: 20px;
  }
  header > .container .toggle-menu {
    display: block;
  }
  header > .container .toggle-menu svg {
    height: 20px;
  }
  header > .container .search-button svg {
    width: 18px;
    height: 18px;
  }
}

footer {
  width: 100%;
  background-color: rgb(15, 16, 18);
  margin-top: 40px;
  padding: 9rem 0 3rem 0;
}
footer p, footer span {
  color: #fff;
}
footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2.4rem;
}
footer .text-box {
  width: 100%;
  max-width: 550px;
}
footer .text-box img {
  width: 100%;
  max-width: 224px;
  margin-bottom: 2rem;
}
footer .text-box p {
  font-size: 16px;
  line-height: 3.04rem;
  margin-bottom: 20px;
  color: var(--custom-gray03);
}
footer .text-box .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
footer .text-box .socials li {
  width: 34px;
  height: 34px;
  background-color: transparent;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  border-radius: 2px;
  cursor: pointer;
}
footer .text-box .socials li:hover {
  background-color: var(--highlight-color-1);
}
footer .text-box .socials li:hover svg {
  fill: #fff;
}
footer .text-box .socials li a {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
}
footer .text-box .socials li a svg {
  height: 1.5rem;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
footer .contact-box {
  width: 400px;
}
footer .contact-box .heading-title {
  color: #fff;
  margin-bottom: 40px;
}
footer .contact-box p {
  font-size: 1.6rem;
  line-height: 2.5rem;
  margin-bottom: 2rem;
}
footer .contact-box form {
  height: 5rem;
  background-color: #2e2e2e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
footer .contact-box form input {
  width: 100%;
  max-width: 400px;
  border: none;
  background-color: transparent;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #fff;
  font-size: 1.5rem;
  margin-left: 20px;
}
footer .contact-box form input::-webkit-input-placeholder {
  font-size: 1.5rem;
}
footer .contact-box form input::-moz-placeholder {
  font-size: 1.5rem;
}
footer .contact-box form input:-ms-input-placeholder {
  font-size: 1.5rem;
}
footer .contact-box form input::-ms-input-placeholder {
  font-size: 1.5rem;
}
footer .contact-box form input::placeholder {
  font-size: 1.5rem;
}
footer .contact-box form button {
  width: 5rem;
  background-color: var(--highlight-color-1);
}
footer .contact-box form button svg {
  height: 14px;
  fill: #fff;
}
@media (max-width: 1024px) {
  footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  footer .text-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 100%;
    text-align: center;
  }
  footer .contact-box {
    margin: 0 auto;
    margin-top: 40px;
    text-align: center;
  }
  footer .contact-box .heading-title {
    max-width: 100%;
    border-bottom: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 524px) {
  footer .contact-box {
    max-width: 100%;
  }
}

.category-post-container {
  width: 100%;
}

.alm-listing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.home-posts-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
  padding-top: 60px;
}
.home-posts-container .left-column .mosaic-posts-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .home-posts-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .home-posts-container .right-column {
    max-width: 100%;
  }
  .home-posts-container .right-column .text-posts-container {
    display: grid;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 834px) {
  .home-posts-container .left-column, .home-posts-container .right-column {
    width: 100%;
  }
  .home-posts-container .mosaic-posts-wrapper {
    grid-template-columns: 1fr !important;
  }
  .home-posts-container .text-posts-container {
    grid-template-columns: 1fr !important;
  }
}

.trailers-container-heading {
  margin-top: 40px;
}

.trailers-container {
  width: 100%;
  margin-top: 2rem;
}
.trailers-container .container {
  min-height: 400px;
  padding-top: 8rem;
  padding-bottom: 8rem;
  width: 100%;
  overflow: hidden;
  height: 100%;
  background: url("https://media.istockphoto.com/id/1190671385/vector/grunge-black-background.jpg?s=612x612&w=0&k=20&c=p72Xip_eITl98rdfuslNyyNXc66TFtxPOHAMA1ck7yY=") center center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2.4rem;
  position: relative;
}
.trailers-container .container .next-button, .trailers-container .container .prev-button {
  width: 42px;
  height: 42px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  display: grid;
  place-content: center;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
.trailers-container .container .next-button:hover, .trailers-container .container .prev-button:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.trailers-container .container .next-button:disabled, .trailers-container .container .prev-button:disabled {
  background-color: gray;
}
.trailers-container .container .next-button {
  right: 20px;
}
.trailers-container .container .prev-button {
  left: 20px;
}
.trailers-container .container .swiper {
  overflow: hidden;
}

.home-posts-one-to-four-layout {
  padding-top: 24px;
}
.home-posts-one-to-four-layout .columns-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}
.home-posts-one-to-four-layout .left-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
.home-posts-one-to-four-layout .left-column .inner-left-side {
  width: 100%;
  max-width: 47.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.4rem;
}
.home-posts-one-to-four-layout .left-column .inner-right-side {
  width: 100%;
  max-width: 47.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.4rem;
}
@media (max-width: 1024px) {
  .home-posts-one-to-four-layout .columns-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .home-posts-one-to-four-layout .right-column {
    max-width: 100%;
  }
}
@media (max-width: 834px) {
  .home-posts-one-to-four-layout .left-column {
    grid-template-columns: 1fr;
  }
  .home-posts-one-to-four-layout .left-column .inner-left-side, .home-posts-one-to-four-layout .left-column .inner-right-side {
    max-width: 100%;
  }
}

.home-posts-gallery-layout > .container {
  margin-top: 6rem;
}
.home-posts-gallery-layout .columns-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}
.home-posts-gallery-layout .columns-wrapper .left-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  gap: 0.4rem;
}
.home-posts-gallery-layout .columns-wrapper .left-column .image-post {
  max-width: 100%;
}
.home-posts-gallery-layout .columns-wrapper .right-column .side-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  margin-top: 20px;
}
@media (max-width: 1244px) {
  .home-posts-gallery-layout .columns-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .home-posts-gallery-layout .columns-wrapper .right-column {
    max-width: 100%;
  }
  .home-posts-gallery-layout .columns-wrapper .right-column .newsletter-box {
    height: 300px;
  }
  .home-posts-gallery-layout .columns-wrapper .right-column .newsletter-box .plane-icon, .home-posts-gallery-layout .columns-wrapper .right-column .newsletter-box span {
    top: -20px;
  }
}
@media (max-width: 1024px) {
  .home-posts-gallery-layout .columns-wrapper .left-column {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 630px) {
  .home-posts-gallery-layout .columns-wrapper .left-column {
    grid-template-columns: 1fr;
  }
}

.contact-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8rem 0 14rem 0;
  height: auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.contact-section .text-container {
  width: 100%;
  max-width: 51.3rem;
}
.contact-section .text-container .title {
  font-size: 4rem;
  margin-bottom: 2rem;
}
.contact-section .text-container p {
  font-size: 1.5rem;
  line-height: 26.8px;
  color: var(--custom-gray01);
  margin-bottom: 2rem;
}
.contact-section .text-container ul li h3 {
  margin-bottom: 0.7rem;
  font-size: 1.6rem;
}
.contact-section .text-container ul li a {
  font-size: 1.6rem;
  color: var(--highlight-color-1);
}
.contact-section .contact-form {
  width: 100%;
  max-width: 53.5rem;
}
.contact-section .contact-form .top-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}
.contact-section .contact-form input, .contact-section .contact-form textarea {
  border: none;
  border-bottom: 1px solid var(--custom-gray02);
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  font-size: 1.5rem;
}
.contact-section .contact-form input::-webkit-input-placeholder, .contact-section .contact-form textarea::-webkit-input-placeholder {
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
.contact-section .contact-form input::-moz-placeholder, .contact-section .contact-form textarea::-moz-placeholder {
  -moz-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
.contact-section .contact-form input:-ms-input-placeholder, .contact-section .contact-form textarea:-ms-input-placeholder {
  -ms-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
.contact-section .contact-form input::-ms-input-placeholder, .contact-section .contact-form textarea::-ms-input-placeholder {
  -ms-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
.contact-section .contact-form input::placeholder, .contact-section .contact-form textarea::placeholder {
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
.contact-section .contact-form input:focus, .contact-section .contact-form textarea:focus {
  border-bottom: 1px solid var(--custom-gray01);
}
.contact-section .contact-form input:focus::-webkit-input-placeholder, .contact-section .contact-form textarea:focus::-webkit-input-placeholder {
  color: black;
}
.contact-section .contact-form input:focus::-moz-placeholder, .contact-section .contact-form textarea:focus::-moz-placeholder {
  color: black;
}
.contact-section .contact-form input:focus:-ms-input-placeholder, .contact-section .contact-form textarea:focus:-ms-input-placeholder {
  color: black;
}
.contact-section .contact-form input:focus::-ms-input-placeholder, .contact-section .contact-form textarea:focus::-ms-input-placeholder {
  color: black;
}
.contact-section .contact-form input:focus::placeholder, .contact-section .contact-form textarea:focus::placeholder {
  color: black;
}
.contact-section .contact-form input {
  padding: 0.975rem 1.8rem 0.975rem 0;
  width: 100%;
  margin-bottom: 3rem;
}
.contact-section .contact-form input::-webkit-input-placeholder {
  font-size: 1.4rem;
  color: var(--custom-gray02);
}
.contact-section .contact-form input::-moz-placeholder {
  font-size: 1.4rem;
  color: var(--custom-gray02);
}
.contact-section .contact-form input:-ms-input-placeholder {
  font-size: 1.4rem;
  color: var(--custom-gray02);
}
.contact-section .contact-form input::-ms-input-placeholder {
  font-size: 1.4rem;
  color: var(--custom-gray02);
}
.contact-section .contact-form input::placeholder {
  font-size: 1.4rem;
  color: var(--custom-gray02);
}
.contact-section .contact-form textarea {
  width: 100%;
  height: 14rem;
  margin-bottom: 2rem;
  outline: none;
  resize: none;
  font-size: 1.5rem;
}
.contact-section .contact-form textarea::-webkit-input-placeholder {
  font-size: 1.52rem;
  color: var(--custom-gray02);
}
.contact-section .contact-form textarea::-moz-placeholder {
  font-size: 1.52rem;
  color: var(--custom-gray02);
}
.contact-section .contact-form textarea:-ms-input-placeholder {
  font-size: 1.52rem;
  color: var(--custom-gray02);
}
.contact-section .contact-form textarea::-ms-input-placeholder {
  font-size: 1.52rem;
  color: var(--custom-gray02);
}
.contact-section .contact-form textarea::placeholder {
  font-size: 1.52rem;
  color: var(--custom-gray02);
}
.contact-section .contact-form button {
  width: 100%;
  height: 5.3rem;
  background-color: var(--highlight-color-1);
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 1.4rem;
}

.about-section {
  padding: 8rem 0;
}
.about-section .title {
  font-size: 4rem;
  margin-bottom: 2rem;
}
.about-section p {
  font-size: 1.6rem;
  line-height: 24px;
  color: var(--custom-gray01);
  margin-bottom: 2rem;
}
.about-section .newsletter-box {
  max-width: 100%;
  margin-top: 6rem;
}
.about-section .newsletter-box span, .about-section .newsletter-box h3, .about-section .newsletter-box form {
  max-width: 51rem;
}
.about-section .blog-statistics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-top: 6.8rem;
}
.about-section .blog-statistics li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.about-section .blog-statistics li h3 {
  font-size: 6rem;
}
.about-section .blog-statistics li span {
  font-size: 1.7rem;
}

.error-section {
  height: calc(100vh - 300px);
  display: grid;
  place-content: center;
  text-align: center;
}
.error-section h1 {
  font-size: 200px;
}
.error-section p {
  font-size: 18px;
}

.post-title {
  font-size: 4.6rem;
}

.post-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  gap: 8px;
  margin: 20px 0 40px 0;
}
.post-socials ul.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.post-socials ul.socials li {
  display: grid;
  place-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--highlight-color-1);
  border-radius: 4px;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
.post-socials ul.socials li:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}
.post-socials ul.socials li svg {
  fill: #fff;
  height: 14px;
}

.post-paragraph {
  font-size: 1.6rem;
  line-height: 3.04rem;
  margin-bottom: 2rem;
}

.post-quote {
  width: 100%;
  padding: 40px;
  font-size: 1.6rem;
  border-radius: 2px;
  color: var(--custom-gray01);
  background-color: var(--custom-gray04);
}

.post-rectangular-image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 2px;
  margin-bottom: 2rem;
  overflow: hidden;
}
.post-rectangular-image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.post-square-image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 2px;
  margin-bottom: 2rem;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.post-square-image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.post-content p {
  font-size: 1.6rem;
  line-height: 3.04rem;
  margin-bottom: 2rem;
}
.post-content h2 {
  line-height: 43.2px;
  font-size: 36px;
  margin: 3rem 0 2rem 0;
}
.post-content ul li {
  list-style: inside;
  font-size: 1.6rem;
  line-height: 3.04rem;
  margin-bottom: 1rem;
}
.post-content figure img {
  width: 100%;
}
.post-content figure figcaption {
  display: none;
}
.post-content blockquote {
  background-color: var(--custom-gray04);
  padding: 42px;
  border-radius: 2px;
  margin-bottom: 2rem;
}
.post-content blockquote p {
  font-weight: 500;
  font-size: 1.8rem;
  font-style: italic;
  margin: 0;
}
.post-content blockquote p::after, .post-content blockquote p::before {
  content: '"';
  color: var(--custom-gray02);
  font-size: 2rem;
}

@media (max-width: 1600px) {
  .contact-section, .about-section {
    padding: 8rem 4rem 14rem 4rem;
  }
}
@media (max-width: 1220px) {
  .contact-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contact-section .text-container, .contact-section .contact-form {
    max-width: 100%;
    margin: 0 auto;
  }
  .contact-section .text-container {
    margin-bottom: 8rem;
  }
  .contact-section .text-container ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
  }
}
@media (max-width: 800px) {
  .about-section .blog-statistics {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 60px;
  }
}
@media (max-width: 600px) {
  .contact-form .top-inputs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contact-form .top-inputs input.name-input {
    margin: 0;
  }
  .post-title {
    font-size: 28px;
  }
  .post-content h2 {
    line-height: 38px;
    font-size: 24px;
  }
}
.trailers-container, .trailers-container-heading {
  display: none !important;
}