.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid var(--border);
  min-height: min(760px, calc(100svh - 86px));
}

.hero-info {
  padding: clamp(42px, 6vw, 76px) var(--pad-h);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: none;
  direction: rtl;
}

.hero-badge {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--gray);
  margin-bottom: 16px;
  display: block;
}

.hero-title {
  font-size: clamp(24px, 2.8vw, 38px);
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--bone);
  line-height: 1.4;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 2;
  margin-bottom: 28px;
  max-width: 460px;
}

.hero-guests {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 500px;
}

.hero-guests span {
  border: 0.5px solid var(--border2);
  color: rgba(243, 235, 221, 0.7);
  font-size: 12px;
  line-height: 1.5;
  padding: 4px 12px;
}

.clubhouse-box {
  border: 0.5px solid var(--border2);
  padding: 20px 22px;
  background: transparent;
  max-width: 440px;
}

.ch-label {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--gray);
  margin-bottom: 6px;
}

.ch-info {
  font-size: 12px;
  color: rgba(243, 235, 221, 0.5);
  margin-bottom: 16px;
  line-height: 1.7;
}

.countdown {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  margin-bottom: 18px;
  direction: ltr;
}

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

.cd-num {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  color: var(--bone);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
  min-width: 2ch;
}

.cd-lbl {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.08em;
}

.cd-sep {
  font-size: 20px;
  color: var(--gray);
  opacity: 0.4;
  margin-top: 4px;
  padding: 0 2px;
}

.ch-link {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.00em;
  font-weight: 600;
  color: var(--black);
  background: var(--yellow);
  padding: 9px 20px;
  transition: opacity 0.2s;
}

.ch-link:hover {
  opacity: 0.88;
  color: var(--black);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  background: var(--mid);
  aspect-ratio: 1 / 1.4142;
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-poster a {
  display: block;
  height: 100%;
}

.hero-poster-placeholder {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  color: rgba(243, 235, 221, 0.45);
  border: 0.5px solid var(--border);
}

.section-bar {
  padding: 40px var(--pad-h) 20px;
  border-bottom: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  direction: rtl;
}

.section-bar-title {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--gray);
  text-transform: uppercase;
}

.section-bar-link {
  font-size: 12px;
  color: rgba(243, 235, 221, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.section-bar-link:hover {
  color: var(--bone);
}

.posters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: none;
  gap: 1px;
  padding: 0 var(--pad-h) 64px;
  background: rgba(243, 235, 221, 0.05);
}

.poster-card {
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
  background: var(--black);
}

.poster-card:hover {
  opacity: 0.78;
}

.poster-card-img {
  width: 100%;
  aspect-ratio: 1 / 1.4142;
  overflow: hidden;
  background: var(--mid);
}

.poster-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

.poster-card:hover .poster-card-img img {
  transform: scale(1.03);
}

.poster-card-info {
  padding: 14px 0 24px;
  border-top: none;
}

.poster-card-title {
  font-size: 13px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: rgba(243, 235, 221, 0.8);
  line-height: 1.55;
  margin-bottom: 4px;
}

.poster-card-ep {
  font-size: 12px;
  color: var(--gray);
}

.empty-state {
  padding: 48px var(--pad-h);
  color: var(--gray);
  font-size: 13px;
  direction: rtl;
  background: var(--black);
}

.quote-section {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-bottom: 0.5px solid var(--border);
  background: var(--dark2);
  min-height: 280px;
  direction: ltr;
}

.quote-img {
  position: relative;
  overflow: hidden;
  background: #111;
}

.quote-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(15%) contrast(1.05);
}

.quote-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, var(--dark2) 100%);
}

.quote-content {
  padding: 44px 56px 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  direction: rtl;
}

.quote-mark-icon {
  font-size: 56px;
  line-height: 0.8;
  color: rgba(243, 235, 221, 0.1);
  font-family: var(--font-fa);
}

.quote-text {
  font-size: clamp(15px, 2vw, 20px);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--bone);
  line-height: 1.85;
  max-width: 560px;
}

.quote-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quote-attribution {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 0.5px solid var(--border2);
  flex-shrink: 0;
  order: 1;
}

.quote-speaker-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  order: 1;
}

.quote-speaker {
  font-size: 13px;
  font-weight: 600;
  color: var(--bone);
}

.quote-sub {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

.quote-episode {
  font-size: 12px;
  color: var(--gray);
  opacity: 0.7;
}

.quote-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 4px;
}

.q-dot {
  height: 3px;
  border-radius: 2px;
  background: var(--border2);
}

.q-dot--active {
  width: 18px;
  background: var(--bone);
}

.q-dot--inactive {
  width: 6px;
}

@media (min-width: 769px) {
  .godar-home {
    width: min(1170px, calc(100% - 180px));
  }

  .home-hero {
    display: grid;
    direction: ltr;
    grid-template-columns: 500px 575px;
    gap: 95px;
    min-height: 815px;
    padding-top: 42px;
    align-items: end;
  }

  .home-hero .hero-info {
    direction: rtl;
    grid-column: 1;
    padding: 0 0 18px;
    min-height: 640px;
    justify-content: flex-end;
    gap: 92px;
  }

  .home-hero .hero-poster {
    grid-column: 2;
    width: 575px;
    height: 806px;
    justify-self: end;
  }

  .home-hero .hero-copy {
    width: 100%;
  }

  .home-hero .hero-badge {
    margin-bottom: 26px;
    text-align: right;
  }

  .home-hero .hero-title {
    margin-bottom: 64px;
    font-size: 38px;
    line-height: 1.55;
    text-align: right;
  }

  .home-hero .hero-desc {
    max-width: 455px;
    margin-right: 0;
    margin-left: auto;
    font-size: 12px;
    line-height: 1.9;
  }

  .home-hero .clubhouse-box {
    width: 330px;
    margin-right: auto;
    margin-left: 0;
  }

  .home-hero .countdown {
    gap: 12px;
  }

  .home-hero .cd-num {
    font-size: 37px;
  }

  .section-bar {
    direction: ltr;
    padding: 82px 0 28px;
  }

  .section-bar-link,
  .section-bar-title {
    direction: rtl;
  }

  .posters-grid {
    direction: rtl;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 1px;
    padding-bottom: 126px;
  }

  .poster-card-img {
    aspect-ratio: 1 / 1.4142;
  }

  .quote-section {
    min-height: 500px;
  }
}

@media (min-width: 1180px) and (max-width: 1400px) {
  .godar-home {
    width: 1170px;
  }
}

@media (max-width: 768px) {
  .home-hero {
    direction: rtl;
  }
}

:root {
  --font-heading: var(--font-fa);
}

.hero-title,
.poster-card-title,
.quote-text,
.page-title,
.featured-title,
.card-title,
.parvande-title,
.ep-page-title,
.guest-name,
.about-headline,
.support-title,
.contact-title,
.ep-header-v4 .ep-page-title,
.guest-name-v4 {
  font-family: var(--font-fa);
}

.clubhouse-box,
.home-hero .clubhouse-box {
  text-align: right;
}

.ch-label,
.ch-info,
.home-hero .ch-label,
.home-hero .ch-info {
  text-align: right;
}

.ch-link,
.home-hero .ch-link {
  display: flex;
  width: fit-content;
  margin-right: auto;
  margin-left: 0;
  font-weight: 500;
  letter-spacing: 0;
}

.cd-unit {
  display: grid;
  justify-items: center;
  align-items: start;
  min-width: 48px;
}

.cd-num,
.cd-lbl {
  width: 100%;
  text-align: center;
}

.poster-card-info,
.poster-card-title,
.poster-card-ep {
  text-align: center;
}

.poster-card-title {
  margin-right: auto;
  margin-left: auto;
}

.quote-section {
  direction: rtl;
}

.quote-content {
  width: min(930px, 100%);
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
  align-items: stretch;
}

.quote-content::before {
  content: "\060C\060C";
  width: 100%;
  align-self: stretch;
  margin: 0 0 24px;
  text-align: right;
  font-family: var(--font-fa);
  font-size: clamp(74px, 8vw, 116px);
  font-weight: 900;
  line-height: 0.55;
  color: var(--bone);
}

.quote-text {
  width: 100%;
  max-width: none;
  margin: 0;
  font-family: var(--font-fa);
  text-align: justify;
  text-align-last: right;
}

.quote-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 10px;
}

.quote-img {
  display: block;
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 50%;
  background: #111;
  flex: 0 0 auto;
  order: 1;
}

.quote-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.quote-img::after {
  content: none;
}

.quote-speaker-info {
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.quote-speaker,
.quote-sub,
.quote-episode {
  text-align: right;
}

@media (min-width: 769px) {
  .quote-content {
    padding-top: 18px;
  }
}

@media (max-width: 768px) {
  .quote-content::before {
    font-size: 64px;
  }

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

@media (min-width: 1180px) {
  .godar-home {
    width: min(1156px, calc(100% - 72px));
  }

  .home-hero {
    grid-template-columns: 500px 572px;
    gap: 80px;
    min-height: 859px;
    padding-top: 50px;
    align-items: start;
  }

  .home-hero .hero-poster {
    width: 572px;
    height: 809px;
    align-self: start;
    justify-self: end;
  }

  .home-hero .hero-info {
    position: relative;
    width: 500px;
    min-height: 809px;
    padding: 0;
    gap: 0;
  }

  .home-hero .hero-copy {
    position: absolute;
    top: 164px;
    right: 0;
    width: 500px;
  }

  .home-hero .hero-badge {
    margin: 0 0 27px;
    font-family: var(--font-fa);
    font-size: 20.49px;
    font-weight: 500;
    line-height: 1.25;
    color: #77736a;
  }

  .home-hero .hero-title {
    margin: 0 0 78px;
    font-family: var(--font-fa);
    font-size: 35px;
    font-weight: 900;
    line-height: 1.28;
    color: #f3ebdd;
  }

  .home-hero .hero-desc {
    max-width: 468px;
    margin: 0;
    font-family: var(--font-fa);
    font-size: 13.04px;
    font-weight: 500;
    line-height: 1.78;
    color: #77736a;
  }

  .home-hero .clubhouse-box {
    position: absolute;
    top: 558px;
    left: 32px;
    width: 365px;
    margin: 0;
    font-family: var(--font-fa);
  }

  .home-hero .ch-label,
  .home-hero .ch-info {
    font-size: 13.04px;
    font-weight: 500;
    line-height: 17.79px;
    color: #77736a;
  }

  .home-hero .ch-label {
    margin-bottom: 0;
  }

  .home-hero .ch-info {
    margin-bottom: 54px;
  }

  .home-hero .countdown {
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 31px;
    direction: ltr;
  }

  .home-hero .cd-unit {
    min-width: 54px;
  }

  .home-hero .cd-num {
    font-family: var(--font-fa);
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    color: #f3ebdd;
  }

  .home-hero .cd-lbl {
    margin-top: 8px;
    font-family: var(--font-fa);
    font-size: 12.28px;
    font-weight: 500;
    line-height: 1.2;
    color: #77736a;
  }

  .home-hero .cd-sep {
    font-size: 32px;
    line-height: 1;
    margin-top: -1px;
  }

  .home-hero .ch-link {
    width: 100px;
    height: 36px;
    min-width: 100px;
    min-height: 36px;
    padding: 0;
    justify-content: center;
    font-family: var(--font-fa);
    font-size: 13.22px;
    font-weight: 500;
    color: #030303;
  }
}

@media (min-width: 1180px) {
  .godar-home {
    width: min(1188px, calc(100% - 72px));
  }

  .section-bar {
    direction: ltr;
    padding: 82px 0 37px;
    align-items: center;
  }

  .section-bar-link,
  .section-bar-title {
    direction: rtl;
    font-family: var(--font-fa);
    font-size: 19px;
    font-weight: 500;
    line-height: 24px;
    color: #77736a;
  }

  .section-bar-link {
    gap: 10px;
  }

  .posters-grid {
    direction: rtl;
    width: 1188px;
    grid-template-columns: repeat(4, 294px);
    column-gap: 4px;
    row-gap: 0;
    padding: 0 0 126px;
    background: transparent;
  }

  .poster-card {
    width: 294px;
  }

  .poster-card-img {
    width: 294px;
    height: auto;
    aspect-ratio: 1 / 1.4142;
  }

  .poster-card-info {
    padding: 24px 0 0;
  }

  .poster-card-title {
    max-width: 294px;
    margin: 0 auto 7px;
    font-family: var(--font-fa);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.25;
    color: #f3ebdd;
    text-align: center;
  }

  .poster-card-ep {
    font-family: var(--font-fa);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.25;
    color: #77736a;
    text-align: center;
  }
}

@media (min-width: 1180px) {
  .quote-section {
    position: relative;
    display: block;
    width: 1164px;
    min-height: 372px;
    border: 0;
    background: transparent;
    direction: rtl;
  }

  .quote-content {
    position: relative;
    display: block;
    width: 100%;
    height: 372px;
    margin: 0;
    padding: 0;
  }

  .quote-content::before {
    position: absolute;
    top: 0;
    right: 74px;
    width: 67px;
    height: 55px;
    margin: 0;
    font-family: var(--font-fa);
    font-size: 86px;
    font-weight: 900;
    line-height: 0.55;
    color: #f3ebdd;
    text-align: right;
  }

  .quote-text {
    position: absolute;
    top: 57px;
    right: 74px;
    width: 860px;
    max-width: none;
    margin: 0;
    font-family: var(--font-fa);
    font-size: 40px;
    font-weight: 900;
    line-height: 1.4;
    color: #f3ebdd;
    text-align: justify;
    text-align-last: right;
  }

  .quote-meta {
    position: absolute;
    top: 174px;
    right: 167px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    width: 360px;
    margin: 0;
  }

  .quote-img {
    display: block;
    order: 1;
    width: 66px;
    height: 66px;
    flex: 0 0 66px;
    border-radius: 50%;
    overflow: hidden;
    background: #111;
  }

  .quote-speaker-info {
    order: 2;
    align-items: flex-end;
    gap: 0;
    text-align: right;
  }

  .quote-speaker {
    font-family: var(--font-fa);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.3;
    color: #f3ebdd;
  }

  .quote-sub,
  .quote-episode {
    font-family: var(--font-fa);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #77736a;
  }

  .quote-dots {
    position: absolute;
    top: 302px;
    left: 538px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    direction: ltr;
  }

  .q-dot {
    width: 25px;
    height: 4px;
    border-radius: 0;
    background: #f3ebdd;
  }

  .q-dot--active {
    width: 25px;
    opacity: 1;
  }

  .q-dot--inactive {
    width: 25px;
    opacity: 0.35;
  }

}

.quote-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.quote-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.q-dot {
  appearance: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

@media (min-width: 1180px) {
  .section-bar-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    direction: rtl;
  }

  .section-bar-arrow {
    display: inline-block;
    margin-right: 10px;
  }

  .poster-card-title {
    font-size: 14px;
    line-height: 1.45;
    max-width: 250px;
  }

  .poster-card-ep {
    font-size: 12px;
    line-height: 1.35;
  }

  .quote-content::before {
    content: "";
    top: 0;
    right: 74px;
    width: 67px;
    height: 55px;
    background: url("../images/quote-right.png") center / contain no-repeat;
  }

  .quote-slide {
    position: absolute;
    inset: 0;
  }

  .quote-text {
    top: 63px;
    right: 74px;
    width: 860px;
    font-size: 30px;
    line-height: 1.4;
  }

  .quote-meta {
    top: 181px;
  }

  .quote-dots {
    z-index: 2;
  }
}

@media (min-width: 1180px) {
  .home-hero .hero-copy {
    top: 104px;
  }

  .home-hero .hero-badge {
    margin-bottom: 24px;
  }

  .home-hero .hero-title {
    margin-bottom: 58px;
  }

  .home-hero .hero-desc {
    max-width: 486px;
    line-height: 1.68;
  }

  .home-hero .clubhouse-box {
    top: 604px;
  }

  .home-hero .ch-info {
    margin-bottom: 44px;
  }
}

@media (min-width: 1180px) {
  .home-hero .hero-guests {
    display: block;
    max-width: 486px;
    margin: 18px 0 0;
    font-family: var(--font-fa);
    font-size: 13.04px;
    font-weight: 500;
    line-height: 1.68;
    color: #77736a;
    text-align: right;
  }

  .home-hero .hero-guests-label {
    display: inline;
    margin-left: 4px;
    color: #77736a;
  }

  .home-hero .hero-guests span:not(.hero-guests-label) {
    display: inline;
  }

  .home-hero .hero-guests span:not(.hero-guests-label)::after {
    content: "\060C\0020";
  }

  .home-hero .hero-guests span:not(.hero-guests-label):last-child::after {
    content: "";
  }

  .home-hero .ch-info {
    white-space: pre-line;
    margin-bottom: 44px;
  }
}

@media (min-width: 1180px) {
  .home-hero .hero-info {
    height: 809px;
    min-height: 809px;
  }

  .home-hero .clubhouse-box {
    top: auto;
    bottom: 0;
  }

  .home-hero .ch-info {
    font-size: 13.04px;
    line-height: 1.68;
    white-space: pre-line;
  }

  .home-hero .hero-guests span {
    border: 0;
    padding: 0;
    background: transparent;
    color: #77736a;
    font-size: inherit;
    line-height: inherit;
  }
}

@media (min-width: 1180px) {
  .home-hero .hero-guests a,
  .home-hero .hero-guests span:not(.hero-guests-label) {
    display: inline;
    border: 0;
    padding: 0;
    background: transparent;
    color: #77736a;
    font-size: inherit;
    line-height: inherit;
  }

  .home-hero .hero-guests a::after,
  .home-hero .hero-guests span:not(.hero-guests-label)::after {
    content: "\060C\0020";
  }

  .home-hero .hero-guests a:last-child::after,
  .home-hero .hero-guests span:not(.hero-guests-label):last-child::after {
    content: "";
  }

  .home-hero .hero-guests a:hover,
  .quote-speaker a:hover,
  .quote-episode a:hover {
    color: #f3ebdd;
  }

  .quote-content::before {
    right: 74px;
  }

  .quote-text {
    right: 141px;
    width: 793px;
    font-size: 20px;
    line-height: 1.55;
  }

  .quote-meta {
    top: 166px;
    right: 235px;
    width: 360px;
    direction: rtl;
  }

  .quote-speaker-info {
    align-items: flex-end;
    text-align: right;
  }

  .quote-speaker {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
  }

  .quote-sub,
  .quote-episode {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
  }

  .quote-speaker a,
  .quote-episode a {
    color: inherit;
  }
}

@media (min-width: 1180px) {
  .home-hero .ch-info {
    line-height: 1.68;
    white-space: normal;
  }

  .quote-meta {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    direction: ltr;
  }

  .quote-img {
    order: 0;
    flex: 0 0 66px;
  }

  .quote-speaker-info {
    order: 0;
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
    align-items: flex-end;
    text-align: right;
    direction: rtl;
  }

  .quote-speaker,
  .quote-sub,
  .quote-episode {
    display: block;
    width: 100%;
    text-align: right;
    direction: rtl;
  }
}

@media (min-width: 1180px) {
  body.home .home-hero,
  body.front-page .home-hero {
    padding-top: 10px !important;
    align-items: start !important;
    grid-template-columns: 632px 518px !important;
    column-gap: 0 !important;
    justify-content: space-between !important;
    min-height: 778px !important;
  }

  body.home .home-hero .hero-info,
  body.front-page .home-hero .hero-info {
    align-self: start !important;
    width: 632px !important;
    min-height: 728px !important;
    height: 728px !important;
  }

  body.home .home-hero .hero-poster,
  body.front-page .home-hero .hero-poster {
    align-self: start !important;
    width: 518px !important;
    height: auto !important;
    aspect-ratio: 1 / 1.4142 !important;
  }

  body.home .home-hero .clubhouse-box,
  body.front-page .home-hero .clubhouse-box {
    background: transparent !important;
  }

  body.home .home-hero .hero-poster img,
  body.front-page .home-hero .hero-poster img {
    object-fit: cover !important;
    object-position: center center !important;
  }

  body.home .home-hero .hero-copy,
  body.front-page .home-hero .hero-copy {
    top: 0 !important;
    width: 632px !important;
  }

  body.home .home-hero .hero-desc,
  body.front-page .home-hero .hero-desc,
  body.home .home-hero .hero-guests,
  body.front-page .home-hero .hero-guests {
    max-width: 632px !important;
  }
}

body.home .godar-home,
body.front-page .godar-home,
body.home .godar-home *,
body.front-page .godar-home * {
  border: 0 !important;
}
