/* General */
.wraper_1334 {
  width: 100%;
  max-width: 1334px;
  margin: 0 auto;
}

.wraper {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  margin: 0 auto;
}
@media screen and (min-width: 576px) {
  .wraper {
    max-width: 540px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .wraper {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .wraper {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .wraper {
    max-width: 1140px;
  }
}
@media screen and (min-width: 1400px) {
  .wraper {
    max-width: 1320px;
  }
}

.bg-purple {
  background-image: url("../img/usa/rebooking/bg-purple.svg");
  background-size: cover;
  background-position: center;
}

.image_wraper_cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.border_white {
  border: 8px solid #fff;
}

.text_secondary {
  color: #2DF6D9;
}

.animate_animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.overlay_img {
  height: 100%;
}
.overlay_img::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background-image: url("../img/2022/overlay-stain.png");
  background-position: center;
  background-size: 100% 100%;
  transition: all 0.3s ease;
  opacity: 0.4;
  z-index: 1;
}
.overlay_img:hover:before {
  background-size: 110% 110%;
  opacity: 0.2;
}

.overlay_primary:after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  transition: all 0.3s ease;
  background-color: rgba(245, 72, 146, 0.8);
}
.overlay_primary:hover::after {
  background-color: rgba(245, 72, 146, 0);
}

.overlay_secondary:after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  transition: all 0.3s ease;
  background-color: rgba(45, 246, 217, 0.8);
}
.overlay_secondary:hover::after {
  background-color: rgba(45, 246, 217, 0);
}

.bg_img {
  transition: all 0.3s ease;
  background-position: center;
  background-size: cover;
  min-height: inherit;
}

.comming_soon {
  text-align: center;
  margin-top: 150px;
  margin-bottom: 100px;
}

/* Spacer  */
@media screen and (max-width: 991px) {
  .spacer {
    max-height: 60px;
  }
}

/* Hero */
.hero.theme_1 {
  padding-top: 60px;
}
@media screen and (min-width: 992px) {
  .hero.theme_1 {
    padding-top: 90px;
  }
}
.hero.theme_1 img {
  width: 100%;
  height: auto;
}
.hero.theme_1 .desktop_image {
  display: none;
}
@media screen and (min-width: 768px) {
  .hero.theme_1 .desktop_image {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .hero.theme_1 .mobile_image {
    display: none;
  }
}
.hero.theme_2 {
  height: 510px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 0;
  margin-top: 110px;
  position: relative;
}
@media screen and (min-width: 1400px) {
  .hero.theme_2 {
    background-size: contain;
  }
}
.hero.theme_2 .wraper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  align-items: center;
  padding-bottom: 16px;
  position: relative;
  text-align: center;
}
.hero.theme_2 .wraper h3 {
  color: #ffebde;
}
.hero.theme_2 .wraper .title {
  color: #F54892;
  text-transform: uppercase;
}

.ribbon_banner.theme_2 {
  background-image: url("../img/2022/banner-ribbon.png");
  background-repeat-y: no-repeat;
  background-position-x: center;
  height: 200px;
}

@media screen and (min-width: 768px) {
  .mobile_image {
    display: none;
  }
}
/* Side by side */
.side_by_side.text_image {
  padding: 105px 32px 100px;
}
@media (max-width: 767px) {
  .side_by_side.text_image {
    padding: 31px 28px 75px;
  }
}
.side_by_side.text_image .wraper {
  max-width: 1334px;
  gap: 12px;
}
@media (max-width: 1279px) {
  .side_by_side.text_image .wraper {
    gap: 60px;
    padding: 0;
  }
}
@media (max-width: 1023px) {
  .side_by_side.text_image .wraper {
    flex-direction: column;
    padding: 0;
  }
}
.side_by_side.text_image .wraper .cta {
  margin-top: 40px;
  padding: 13px 61px;
  font-size: 18px;
  line-height: 22px;
  display: block;
  font-weight: 900;
  width: max-content;
  border-radius: 8px;
  transform: translateY(0);
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.2s ease;
  box-shadow: 0 0 0 0 #30FFD2;
}
.side_by_side.text_image .wraper .cta:hover {
  color: #fff;
}
@media (max-width: 1279px) {
  .side_by_side.text_image .wraper .small-cta {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .side_by_side.text_image .wraper .small-cta {
    padding: 13px 67px;
  }
}
@media screen and (min-width: 768px) {
  .side_by_side.text_image .wraper .small-cta {
    padding: 19px 62px;
    font-size: 22px;
    line-height: 26px;
  }
  .side_by_side.text_image .wraper .small-cta:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 4px 0 0 #30FFD2;
  }
}
.side_by_side.text_video {
  position: relative;
  padding: 55px 32px 132px;
}
.side_by_side.text_video .wraper {
  max-width: 1334px;
}
@media (max-width: 1365px) {
  .side_by_side.text_video .wraper {
    flex-direction: column;
  }
}
@media (max-width: 1365px) and (max-width: 991px) {
  .side_by_side.text_video .wraper {
    max-width: none;
  }
}
@media (max-width: 767px) {
  .side_by_side.text_video {
    padding: 50px 28px 105px;
  }
}
.side_by_side.text_video:after {
  position: absolute;
  display: block;
  content: "";
  background-image: url("../img/dublin-2023/couldbreaker-desktop.png");
  width: 100%;
  height: 94px;
  top: -93px;
  left: 0;
  z-index: 5;
  background-size: contain;
  background-repeat: repeat no-repeat;
  background-position-y: bottom;
}
.side_by_side.text_video .cta {
  margin-top: 40px;
  padding: 13px 61px;
  font-size: 18px;
  line-height: 22px;
  display: block;
  font-weight: 900;
  width: max-content;
  border-radius: 8px;
  transform: translateY(0);
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.2s ease;
  box-shadow: 0 0 0 0 #30FFD2;
}
@media screen and (min-width: 1900px) {
  .side_by_side.text_video .cta {
    transform: translateY(0) translateX(80px);
  }
}
.side_by_side.text_video .cta:hover {
  color: #fff;
}
.side_by_side.text_video .small-cta {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .side_by_side.text_video .small-cta {
    padding: 13px 67px;
  }
}
@media screen and (min-width: 768px) {
  .side_by_side.text_video .small-cta {
    padding: 19px 62px;
    font-size: 22px;
    line-height: 26px;
  }
  .side_by_side.text_video .small-cta:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 4px 0 0 #30FFD2;
  }
}
@media screen and (min-width: 1900px) {
  .side_by_side.text_video .small-cta:hover {
    transform: translateY(-4px) translateX(80px);
  }
}
@media screen and (max-width: 767px) {
  .side_by_side.text_video video {
    margin-left: -28px;
    margin-right: -28px;
    width: 100vw;
  }
}
@media screen and (max-width: 575px) {
  .side_by_side.text_video video {
    margin-left: -40px;
    margin-right: -40px;
  }
}
.side_by_side.text_card {
  padding: 65px 32px 123px;
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .side_by_side.text_card {
    background: linear-gradient(transparent 50%, #0E0A10 50%);
  }
}
@media screen and (max-width: 1023px) {
  .side_by_side.text_card {
    background-color: #35273E;
  }
}
@media screen and (max-width: 767px) {
  .side_by_side.text_card {
    padding: 55px 26px 65px;
  }
}
.side_by_side.text_card .wraper {
  max-width: 1334px;
  gap: 75px;
  padding: 0;
}
@media screen and (max-width: 1366px) {
  .side_by_side.text_card .wraper {
    gap: 32px;
  }
}
@media screen and (max-width: 1023px) {
  .side_by_side.text_card .wraper {
    gap: 38px;
  }
}
.side_by_side.text_card .side_by_side_v4_item_left {
  width: calc(100% - 465px - 75px);
}
@media screen and (max-width: 1366px) {
  .side_by_side.text_card .side_by_side_v4_item_left {
    width: calc(100% - 350px - 32px);
  }
}
@media screen and (max-width: 1023px) {
  .side_by_side.text_card .side_by_side_v4_item_left {
    width: 100%;
  }
}
.side_by_side.text_card .side_by_side_v4_item_left h3 {
  color: #30FFD2;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .side_by_side.text_card .side_by_side_v4_item_left h3 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media screen and (max-width: 767px) {
  .side_by_side.text_card .side_by_side_v4_item_left p {
    font-size: 20px;
    line-height: 32px;
  }
}
.side_by_side.text_card .side_by_side_v4_item_left .description strong {
  color: #30FFD2;
}
.side_by_side.text_card .side_by_side_v4_item_right {
  width: 465px;
}
@media screen and (max-width: 1366px) {
  .side_by_side.text_card .side_by_side_v4_item_right {
    width: 350px;
  }
}
@media screen and (max-width: 1023px) {
  .side_by_side.text_card .side_by_side_v4_item_right {
    width: 100%;
  }
}
.side_by_side.text_card .side_by_side_v4_item_right_description {
  padding: 40px 60px;
  border: 2px solid #FFFFFF;
  box-shadow: 6px 6px 0 0 #30FFD2;
}
@media screen and (max-width: 1023px) {
  .side_by_side.text_card .side_by_side_v4_item_right_description {
    background-color: #0E0A10;
  }
}
@media screen and (max-width: 767px) {
  .side_by_side.text_card .side_by_side_v4_item_right_description {
    padding: 37px 25px;
    text-align: center;
  }
  .side_by_side.text_card .side_by_side_v4_item_right_description h6 {
    font-size: 22px;
  }
}
.side_by_side .wraper {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  .side_by_side .wraper {
    flex-direction: row;
    gap: 32px;
  }
}
.side_by_side .card_content {
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-around;
  z-index: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .side_by_side .card_content {
    padding: 32px;
    justify-content: center;
    gap: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .side_by_side .card_content {
    gap: 16px;
  }
}
.side_by_side .card_content h1 {
  color: white;
  text-transform: uppercase;
  margin: 0;
}
@media screen and (min-width: 992px) {
  .side_by_side .card_content h1 {
    margin-bottom: 18px;
  }
}
.side_by_side a:not(.btn) {
  position: relative;
  font-size: 16px;
  display: inline;
  padding: 0;
  text-transform: lowercase;
  text-decoration: underline;
  color: white;
}
.side_by_side a:not(.btn):hover {
  color: #ffebde;
}
.side_by_side a.btn {
  position: relative;
  padding: 12px 20px;
  font-size: 16px;
}
@media screen and (min-width: 992px) {
  .side_by_side a.btn {
    padding: 16px 32px;
  }
}
.side_by_side a.btn:hover, .side_by_side a.btn:focus, .side_by_side a.btn:active {
  color: #2c312d;
}
.side_by_side p, .side_by_side h6 {
  color: white;
  margin: 0;
}

.side_by_side_item {
  width: 100%;
  min-height: 260px;
  position: relative;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}
.side_by_side_item:hover, .side_by_side_item:focus {
  top: -4px;
  left: -4px;
  box-shadow: 4px 4px 8px 0px #9f9d9a;
}
@media screen and (min-width: 576px) {
  .side_by_side_item {
    min-height: 300px;
  }
}
@media screen and (min-width: 768px) {
  .side_by_side_item {
    min-height: 450px;
  }
}
@media screen and (min-width: 992px) {
  .side_by_side_item {
    width: 50%;
  }
}

.side_by_side_v2_item_left {
  width: calc(100% - 12px - 532px);
}
@media (max-width: 1500px) {
  .side_by_side_v2_item_left {
    width: 50%;
  }
}
@media (max-width: 1365px) {
  .side_by_side_v2_item_left {
    width: 100%;
  }
}
.side_by_side_v2_item_left h3 {
  color: #F72389;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .side_by_side_v2_item_left h3 {
    font-size: 24px;
    line-height: 28px;
  }
}
.side_by_side_v2_item_left .description {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.side_by_side_v2_item_left .description p {
  color: inherit;
}
@media (max-width: 767px) {
  .side_by_side_v2_item_left .description p {
    font-size: 20px;
    line-height: 32px;
  }
}
.side_by_side_v2_item_right {
  position: relative;
  width: 532px;
  height: max-content;
}
@media (max-width: 1279px) {
  .side_by_side_v2_item_right {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .side_by_side_v2_item_right .image_wraper {
    aspect-ratio: 414/384;
  }
  .side_by_side_v2_item_right .image_wraper img {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .side_by_side_v2_item_right .image_wraper {
    margin-left: -28px;
    margin-right: -28px;
  }
}
.side_by_side_v2_item_right_description {
  max-width: 465px;
  background-color: #554263;
  position: absolute;
  padding: 41px 52px 46px 60px;
  bottom: 0;
  display: flex;
  gap: 28px;
  flex-direction: column;
  box-shadow: 8px 8px 0 0 #F72389;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .side_by_side_v2_item_right_description p {
    font-size: 20px;
    line-height: 32px;
    text-align: center;
  }
}
.side_by_side_v2_item_right_description strong {
  font-size: 22px;
  font-size: 22px;
}
@media (max-width: 1023px) {
  .side_by_side_v2_item_right_description {
    padding: 37px 25px;
    gap: 36px;
  }
}
.side_by_side_v2_item_right_description a {
  color: #30FFD2 !important;
  text-transform: none !important;
  font-size: 20px !important;
  line-height: 32px !important;
}
.side_by_side_v2_item_right_description a:hover {
  text-decoration: none;
}
.side_by_side_v2_item_right .image_wraper {
  height: 600px;
}
@media (max-width: 1365px) {
  .side_by_side_v2_item_right .image_wraper {
    margin-bottom: 80px;
  }
}
@media (max-width: 1279px) {
  .side_by_side_v2_item_right .image_wraper {
    height: 100%;
    margin-bottom: 200px;
    overflow: hidden;
  }
  .side_by_side_v2_item_right .image_wraper img {
    width: 100%;
    object-fit: cover;
  }
}

@media (min-width: 1366px) {
  .side_by_side_v3_item_left {
    width: calc(100% - 12px - 600px);
  }
}
@media (min-width: 1560px) {
  .side_by_side_v3_item_left {
    width: calc(100% - 12px - 730px);
  }
}
@media (max-width: 767px) {
  .side_by_side_v3_item_left h3 {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
  }
}
.side_by_side_v3_item_right video {
  padding-top: 85px;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .side_by_side_v3_item_right video {
    max-width: calc(100vw - 64px);
  }
}
@media (min-width: 1024px) {
  .side_by_side_v3_item_right video {
    max-width: calc(100vw - 137px - 64px);
  }
}
@media (min-width: 1366px) {
  .side_by_side_v3_item_right video {
    max-width: 600px;
  }
}
@media (min-width: 1560px) {
  .side_by_side_v3_item_right video {
    max-width: 730px;
  }
}
@media (min-width: 1900px) {
  .side_by_side_v3_item_right video {
    transform: translateX(80px);
    max-width: 802px;
    width: 802px;
  }
}
@media (min-width: 1900px) {
  .side_by_side_v3_item_right .cta {
    margin-left: 80px;
  }
}

/* Schedule section */
.schedule_section {
  padding-top: 48px;
}
@media screen and (min-width: 992px) {
  .schedule_section {
    padding-top: 64px;
  }
}
@media screen and (min-width: 1400px) {
  .schedule_section {
    padding-top: 96px;
  }
}
.schedule_section .schedule_description .title {
  color: #f2488f;
}
.schedule_section .schedule-filters, .schedule_section .schedule-day-name {
  display: none;
}
.schedule_section .brella-widget-container {
  min-height: auto !important;
}
.schedule_section .schedule-day-container {
  display: none;
}
.schedule_section .schedule-filters-tag {
  display: none;
}
.schedule_section div.brella-widget-root {
  background-color: transparent;
  padding: 0;
  font-family: Roboto Slab, serif;
  margin: 0;
}
.schedule_section div.schedule-day-container {
  position: relative;
  margin-top: 0;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .schedule_section div.schedule-day-container {
    padding-right: 1rem;
  }
}
.schedule_section div.schedule-day-container:after {
  content: "";
  height: 100px;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, #dedbd6 0%, rgba(254, 251, 246, 0.1) 100%);
}
.schedule_section ul.schedule-slots-container {
  width: 100%;
  overflow-y: scroll;
  overflow-x: visible;
  max-height: 600px;
}
.schedule_section ul.schedule-slots-container .schedule-slot {
  margin-top: 1.5rem !important;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .schedule_section ul.schedule-slots-container .schedule-slot {
    width: calc(100% - 10px);
    margin-left: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .schedule_section ul.schedule-slots-container .schedule-slot {
    width: calc(100% - 110px);
  }
}
.schedule_section ul.schedule-slots-container .schedule-slot:last-child {
  margin-bottom: 5rem !important;
}
.schedule_section ul.schedule-slots-container .schedule-slot:hover .schedule-slot-content {
  border: 2px solid #EEAE43;
}
.schedule_section ul.schedule-slots-container .schedule-slot:hover .schedule-slot-content::before {
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.schedule_section div.schedule-slot-content {
  max-width: none;
  background: #ffffff;
  border-radius: 0;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.schedule_section div.schedule-slot-content::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  bottom: 0.5rem;
  right: -0.5rem;
  left: 0.5rem;
  border: 2px solid #EEAE43;
  z-index: -1;
  transition: all 0.3s ease;
}
.schedule_section div.schedule-slot-start-time {
  font-size: 0.875rem;
  font-family: brice-bold, sans-serif;
  font-weight: normal;
}
.schedule_section div.schedule-slot-start-day,
.schedule_section div.schedule-slot-subtitle {
  color: #222222;
}
.schedule_section .schedule-slot-head {
  display: none;
}
.schedule_section .schedule-slot-header {
  display: flex;
  justify-content: space-between;
}
.schedule_section .schedule-slot-duration {
  flex-basis: 70px;
  flex-grow: 0;
  flex-shrink: 0;
  text-align: right;
}
.schedule_section .schedule-modal-mask,
.schedule_section .schedule-modal-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.schedule_section div.schedule-modal-content {
  font-family: Roboto Slab, serif;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .schedule_section div.schedule-slot-start-date-time {
    background-color: #2df3d6;
    text-align: left;
    padding: 1rem 0.75rem;
    width: 100px;
    left: -90px;
    top: 0;
    z-index: -1;
  }
}
@media screen and (max-width: 767px) {
  .schedule_section .brella-widget-container {
    flex-direction: column-reverse;
  }
  .schedule_section .powered-by-brella {
    margin-bottom: 5rem;
  }
}
.schedule_section [data-custom-data="2023-05-31"] [data-schedule-date="2023-05-31"] {
  display: block;
}
.schedule_section [data-custom-data="2023-06-01"] [data-schedule-date="2023-06-01"] {
  display: block;
}
.schedule_section [data-custom-data="2023-06-02"] [data-schedule-date="2023-06-02"] {
  display: block;
}

/* Carousel Hero */
.carousel_hero {
  position: relative;
  min-height: max-content;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (min-width: 992px) {
  .carousel_hero {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 100vh;
  }
}
.carousel_hero .background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.carousel_hero .background:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 8, 51, 0.7);
  z-index: 2;
}
.carousel_hero .background img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.carousel_hero .container {
  display: flex;
  flex-direction: column;
  gap: 52px;
  position: relative;
  z-index: 5;
  height: 100%;
  align-items: center;
}
@supports (-webkit-hyphens: none) {
  .carousel_hero .container {
    height: -webkit-fill-available;
  }
}
@media screen and (min-width: 992px) {
  .carousel_hero .container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.carousel_hero .container .image_wraper {
  height: 250px;
}
@media screen and (min-width: 992px) {
  .carousel_hero .container .image_wraper {
    width: 50%;
    height: 330px;
  }
}
.carousel_hero .container .image_wraper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.carousel_hero .container .content {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .carousel_hero .container .content {
    width: 50%;
  }
}
.carousel_hero .container .content .logo_white {
  margin: 0 auto;
  width: 50%;
}
.carousel_hero .container .content .description {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.carousel_hero .container .content .description * {
  color: white;
  text-transform: uppercase;
}
.carousel_hero .container .content .description a {
  color: #ffebde;
  font-family: brice-bold, sans-serif;
  font-weight: 500;
  line-height: 1.2;
  font-size: 20px;
}
.carousel_hero .container .content .description a:hover {
  text-decoration: underline;
}

/* Hotel Partner */
.hotel_partner .wraper {
  display: flex;
  flex-direction: column;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .hotel_partner .wraper {
    flex-direction: row;
  }
}
@media screen and (min-width: 992px) {
  .hotel_partner .wraper .content {
    width: 50%;
  }
}
.hotel_partner .wraper .content .top_block {
  background-color: #35273E;
  border-bottom: 1px solid #ffffff20;
  padding: 24px;
}
@media screen and (min-width: 992px) {
  .hotel_partner .wraper .content .top_block {
    padding: 48px;
  }
}
.hotel_partner .wraper .content .top_block .address p {
  margin: 0;
}
.hotel_partner .wraper .content .top_block .address a {
  color: white;
  text-decoration: underline;
}
.hotel_partner .wraper .content .content_block {
  background-color: #35273E;
  padding: 24px;
  color: white;
}
@media screen and (min-width: 992px) {
  .hotel_partner .wraper .content .content_block {
    padding: 48px;
  }
}
.hotel_partner .wraper .content .content_block .description {
  margin-bottom: 40px;
}
.hotel_partner .wraper .content .bottom_block {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1200px) {
  .hotel_partner .wraper .content .bottom_block {
    flex-direction: row;
  }
}
@media screen and (min-width: 1200px) {
  .hotel_partner .wraper .content .bottom_block .text_secondary {
    width: 45%;
  }
}
.hotel_partner .wraper .content .bottom_block .caption {
  margin-bottom: 40px;
}
@media screen and (min-width: 1200px) {
  .hotel_partner .wraper .content .bottom_block .caption {
    width: 55%;
  }
}
.hotel_partner .wraper .content .bottom_block .caption p {
  margin: 0;
}
.hotel_partner .wraper .image_wraper {
  height: 400px;
}
@media screen and (min-width: 992px) {
  .hotel_partner .wraper .image_wraper {
    width: 50%;
    height: auto;
  }
}

/* Map */
.map iframe {
  max-width: 100%;
}

/* Grid */
.grid_section .wraper .title {
  text-align: center;
  cursor: pointer;
  width: max-content;
  margin: 0 auto;
}
.grid_section .wraper .title:hover a {
  text-decoration: underline;
}
.grid_section .wraper .title a {
  color: #f2488f;
  font-family: brice-bold, sans-serif;
  font-weight: 500;
  line-height: 24px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .grid_section .wraper .title a {
    line-height: 32px;
    font-size: 24px;
  }
}
.grid_section .wraper .items {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
@media screen and (min-width: 992px) {
  .grid_section .wraper .items {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.grid_section .wraper .items .inner_item {
  border: 2px solid #faab1b;
  height: 100%;
}
.grid_section .wraper .items .margin_minus {
  position: relative;
  left: 0.5rem;
  top: 0.5rem;
  height: 100%;
  background: #ffffff;
  padding: 24px;
}
@media screen and (min-width: 992px) {
  .grid_section .wraper .items .margin_minus {
    padding: 48px;
  }
}
@media (max-width: 821px) {
  .grid_section .wraper .items .margin_minus {
    position: static;
  }
}
.grid_section .wraper .grid_desc p {
  margin-bottom: 0;
}
.grid_section.theme_2 {
  padding-right: 38px;
  padding-left: 28px;
  background-color: #44344E;
}
@media screen and (max-width: 1023px) {
  .grid_section.theme_2 {
    width: 100vw;
  }
}
@media screen and (max-width: 767px) {
  .grid_section.theme_2 {
    padding-right: 10px;
    padding-left: 0;
  }
}
@media screen and (max-width: 575px) {
  .grid_section.theme_2 {
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .grid_section.theme_2 .wraper {
    padding-right: 0;
    padding-left: 0;
  }
}
.grid_section__cards {
  display: flex;
  gap: 35px;
  padding-top: 32px;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .grid_section__cards {
    flex-direction: column;
  }
}
@media screen and (max-width: 575px) {
  .grid_section__cards {
    gap: 0;
    padding-bottom: 0;
  }
}
.grid_section__card {
  display: flex;
  gap: 30px;
  flex-direction: column;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .grid_section__card {
    width: calc((100% - 35px) / 2);
  }
}
@media screen and (min-width: 576px) {
  .grid_section__card.color-theme--pink {
    box-shadow: 10px 10px 0 0 #F72389;
  }
}
.grid_section__card.color-theme--pink h1, .grid_section__card.color-theme--pink h2, .grid_section__card.color-theme--pink h3, .grid_section__card.color-theme--pink h4, .grid_section__card.color-theme--pink h5, .grid_section__card.color-theme--pink h6 {
  color: #F72389;
}
.grid_section__card.color-theme--pink ul li {
  list-style-image: url("../img/dublin-2023/Vinyl-Pink.svg");
}
.grid_section__card.color-theme--pink ol li {
  list-style-image: url("../img/dublin-2023/Pink_Check.svg");
}
@media screen and (min-width: 576px) {
  .grid_section__card.color-theme--green {
    box-shadow: 10px 10px 0 0 #27CAAF;
  }
}
.grid_section__card.color-theme--green h1, .grid_section__card.color-theme--green h2, .grid_section__card.color-theme--green h3, .grid_section__card.color-theme--green h4, .grid_section__card.color-theme--green h5, .grid_section__card.color-theme--green h6 {
  color: #22A58F;
}
.grid_section__card.color-theme--green ul li {
  list-style-image: url("../img/dublin-2023/Vinyl-Green.svg");
}
.grid_section__card.color-theme--green ol li {
  list-style-image: url("../img/dublin-2023/Green_Check.svg");
}
.grid_section__card.color-theme--green .cta {
  background-color: #27CAAF;
}
.grid_section__card_description {
  padding-left: 26px;
  padding-right: 26px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .grid_section__card_description {
    padding-left: 54px;
    padding-right: 34px;
  }
}
.grid_section__card_description p {
  font-size: 20px;
  line-height: 32px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .grid_section__card_description p {
    font-size: 18px;
    line-height: 28px;
  }
}
.grid_section__card h5 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .grid_section__card h5 {
    padding-top: 16px;
  }
}
.grid_section__card_link {
  padding-left: 54px;
  padding-right: 34px;
  text-align: center;
  margin-bottom: 65px;
}
@media screen and (min-width: 768px) {
  .grid_section__card_link {
    margin-bottom: 32px;
  }
}
.grid_section__card_link .cta {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 9px;
}
.grid_section__card li {
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
  padding-left: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .grid_section__card li {
    font-size: 18px;
    line-height: 28px;
  }
}
.grid_section__card img {
  width: 100%;
  height: auto;
}
.grid_section__images {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .grid_section__images {
    gap: 12px;
    flex-wrap: wrap;
  }
}
.grid_section__images img {
  width: calc((100% - 32px) / 3);
  height: 425px;
  object-fit: cover;
}
@media screen and (max-width: 1365px) {
  .grid_section__images img {
    height: 325px;
  }
}
@media screen and (max-width: 991px) {
  .grid_section__images img {
    height: 275px;
  }
}
@media screen and (max-width: 767px) {
  .grid_section__images img {
    width: calc((100% - 12px) / 2);
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .grid_section__images img:first-of-type {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .grid_section__images_desktop {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .grid_section__images_mobile {
    display: none;
  }
}
.grid_section.theme_4 {
  position: relative;
  padding: 74px 32px;
  background: linear-gradient(#fff 58%, #35273E 58%);
}
@media screen and (max-width: 767px) {
  .grid_section.theme_4 {
    padding: 26px 26px 80px;
    background: #ffffff;
  }
}
.grid_section.theme_4 .wraper {
  max-width: 1604px;
  padding: 0;
}
.grid_section.theme_4 .title {
  width: auto;
}
.grid_section.theme_4 h3 {
  color: #44344E;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .grid_section.theme_4 h3 {
    font-size: 24px;
    line-height: 32px;
    color: #252222;
    margin-bottom: 22px;
  }
}
.grid_section.theme_4 h3 strong {
  color: #27CAAF;
}
.grid_section.theme_4:after {
  position: absolute;
  display: block;
  content: "";
  background-image: url("../img/dublin-2023/couldbreaker-desktop.png");
  width: 100%;
  height: 94px;
  top: -93px;
  left: 0;
  z-index: 5;
  background-size: contain;
  background-repeat: repeat no-repeat;
  background-position-y: bottom;
}
@media screen and (min-width: 1024px) {
  .grid_section.theme_4:after {
    background-color: #0E0A10;
  }
}

/* Cards */
.cards_section .title {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 48px;
}
.cards_section .title em {
  font-style: normal;
  color: #F54892;
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.cards_section .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.cards_section .cards .card {
  width: 100%;
  height: auto;
  min-height: 16rem;
  border: none;
  border-radius: 0;
  background-color: transparent;
  transform: translate3d(0, 100%, 0);
  animation: 0.4s linear slideInUp;
}
.cards_section .cards .card.animated {
  transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .cards_section .cards .card {
    min-height: 28rem;
    width: calc((100% - 24px) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .cards_section .cards .card {
    width: calc((100% - 48px) / 3);
  }
}
.cards_section .cards .card .card_wraper {
  height: 100%;
  transition: all 0.3s ease;
}
.cards_section .cards .card:nth-child(odd):after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  transition: background-color 0.3s ease;
  background-color: rgba(45, 246, 217, 0.8);
}
.cards_section .cards .card:nth-child(odd):hover::after {
  background-color: rgba(45, 246, 217, 0);
  top: -4px;
  left: -4px;
}
.cards_section .cards .card:nth-child(even):after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  transition: background-color 0.3s ease;
  background-color: rgba(245, 72, 146, 0.8);
}
.cards_section .cards .card:nth-child(even):hover::after {
  background-color: rgba(245, 72, 146, 0);
  top: -4px;
  left: -4px;
}
.cards_section .cards .card:hover .card_wraper {
  position: relative;
  top: -4px;
  left: -4px;
  box-shadow: 4px 4px 8px 0px #9f9d9a;
}
@media screen and (max-width: 767px) {
  .cards_section .cards .card.mobile_autohover::after {
    background-color: rgba(45, 246, 217, 0);
    top: -4px;
    left: -4px;
  }
  .cards_section .cards .card.mobile_autohover .card_wraper {
    position: relative;
    top: -4px;
    left: -4px;
    box-shadow: 4px 4px 8px 0px #9f9d9a;
  }
}
.cards_section .cards .card .card_content {
  display: block;
  height: 100%;
  width: 100%;
  padding: 32px;
  display: flex;
  align-items: flex-end;
}
.cards_section .cards .card .card_content .card_title {
  z-index: 5;
  position: relative;
  color: white;
  text-transform: uppercase;
}

/* General content */
.button_primary {
  font-family: brice-bold, sans-serif;
  width: max-content;
  margin: 0 auto;
  font-size: 20px;
  line-height: 28px;
  padding: 16px 48px;
  display: block;
  color: white;
  text-transform: uppercase;
  background-color: #f54892;
  border-color: #f54892;
  transition: all 0.2s ease-in-out;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  max-width: calc(100vw - 24px);
  text-align: center;
}
@media screen and (min-width: 576px) {
  .button_primary {
    max-width: 100%;
  }
}
.button_primary:hover {
  background-color: white;
  border-color: white;
  color: #2c312d;
}

/* Partners */
.partner_section {
  padding-top: 48px;
  padding-bottom: 48px;
}
.partner_section .title {
  text-align: center;
}
.partner_section .title h2 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 48px;
}
@media screen and (min-width: 992px) {
  .partner_section .title h2 {
    font-size: 3.5rem;
  }
}
.partner_section .title h2 em {
  color: #f54892;
  font-style: normal;
}

.partners_cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.partners_cards .partner_card {
  width: 100%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  height: 300px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .partners_cards .partner_card {
    width: calc((100% - 24px) / 2);
  }
}
@media screen and (min-width: 992px) {
  .partners_cards .partner_card {
    width: calc((100% - 48px) / 3);
  }
}
@media screen and (min-width: 1200px) {
  .partners_cards .partner_card {
    width: calc((100% - 72px) / 4);
  }
}
@media screen and (max-width: 767px) {
  .partners_cards .partner_card.mobile_autohover .partner_desc {
    z-index: 1;
    opacity: 1;
  }
}
.partners_cards .partner_card .image_wraper {
  width: 100%;
  height: 100%;
  background-image: url("../img/2022/border.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners_cards .partner_card .image_wraper img {
  max-width: 70%;
  max-height: 70%;
  height: auto;
}
.partners_cards .partner_card .partner_desc {
  background-color: #f54892;
  color: white;
  padding: 2rem;
  opacity: 0;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: max-content;
  text-align: center;
}
.partners_cards .partner_card .partner_desc a {
  color: white;
  font-family: brice-bold, sans-serif;
  font-size: 1.25rem;
  z-index: 3;
}
.partners_cards .partner_card .partner_desc a:hover {
  text-decoration: underline;
}
.partners_cards .partner_card .partner_desc:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/2022/overlay-stain.png");
  background-size: cover;
  opacity: 0.4;
}
.partners_cards .partner_card:hover .partner_desc {
  z-index: 1;
  opacity: 1;
}

/* Form */
.subscribe_form .wraper {
  text-align: center;
}
.subscribe_form .wraper .title h2 {
  font-size: 32px;
  line-height: 40px;
}
@media screen and (min-width: 768px) {
  .subscribe_form .wraper .title h2 {
    font-size: calc(1.5625rem + 3.75vw);
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  .subscribe_form .wraper .title h2 {
    font-size: 70px;
    line-height: 84px;
  }
}
.subscribe_form .wraper .title img {
  width: 100%;
  max-width: 32px;
}
@media screen and (min-width: 768px) {
  .subscribe_form .wraper .title img {
    max-width: 64px;
  }
}
@media screen and (max-width: 767px) {
  .subscribe_form .wraper .subtitle {
    font-size: 16px;
  }
}
.subscribe_form .form_wraper {
  max-width: 546px;
  margin: 48px auto 0;
}
.subscribe_form.theme_2 * {
  color: #fff;
}
.subscribe_form.theme_2 .wraper {
  max-width: 1064px;
  padding-left: 26px;
  padding-right: 26px;
  margin-top: -220px;
}
@media screen and (min-width: 577px) {
  .subscribe_form.theme_2 .wraper {
    margin-top: -200px;
  }
}
@media screen and (min-width: 768px) {
  .subscribe_form.theme_2 .wraper {
    margin-top: -100px;
  }
}
@media screen and (min-width: 1024px) {
  .subscribe_form.theme_2 .wraper {
    margin-top: 0;
    background-color: #2C2033;
    box-shadow: 10px 10px 0 0 #E53178;
    padding: 56px 30px 67px;
  }
}
.subscribe_form.theme_2 .wraper .form_wraper {
  max-width: 659px;
}
.subscribe_form.theme_2 .wraper .hbspt-form form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 410px) {
  .subscribe_form.theme_2 .wraper .hbspt-form form {
    flex-direction: row;
    gap: 0;
  }
}
.subscribe_form.theme_2 .wraper .hbspt-form form label {
  display: none;
}
.subscribe_form.theme_2 .wraper .hbspt-form form .hs_email {
  width: 100%;
}
.subscribe_form.theme_2 .wraper .hbspt-form form .hs-input {
  height: 44px;
  width: 100%;
  border: none;
  border-radius: 12px;
  padding-left: 33px;
  padding-right: 33px;
}
@media screen and (min-width: 410px) {
  .subscribe_form.theme_2 .wraper .hbspt-form form .hs-input {
    border-radius: 12px 0 0 12px;
  }
}
@media screen and (min-width: 768px) {
  .subscribe_form.theme_2 .wraper .hbspt-form form .hs-input {
    height: 64px;
  }
}
.subscribe_form.theme_2 .wraper .hbspt-form form .hs-button {
  background-color: #F72389;
  height: 44px;
  border: none;
  font-weight: 900;
  border-radius: 12px;
  font-size: 22px;
  line-height: 28px;
  width: 100%;
}
@media screen and (min-width: 410px) {
  .subscribe_form.theme_2 .wraper .hbspt-form form .hs-button {
    border-radius: 0px 12px 12px 0px;
    width: 251px;
  }
}
@media screen and (min-width: 768px) {
  .subscribe_form.theme_2 .wraper .hbspt-form form .hs-button {
    height: 64px;
  }
}

/* Counter */
.counter {
  padding: 17px 26px 30px;
}
@media screen and (min-width: 1024px) {
  .counter {
    padding: 28px 26px 48px;
  }
}
.counter .wraper_1604 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.counter .wraper_1604 h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: white;
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .counter .wraper_1604 h6 {
    font-size: 20px;
    line-height: 28px;
  }
}
@media screen and (min-width: 1280px) {
  .counter .wraper_1604 h6 {
    font-size: 28px;
    line-height: 34px;
  }
}
.counter .wraper_1604 p {
  font-family: "Montserrat", sans-serif;
  color: white;
  margin: 0;
}
.counter .counter_wraper {
  gap: 12px;
}
.counter .counter_wraper .counter_block {
  font-family: "Montserrat", sans-serif;
  color: white;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 27px;
}
@media screen and (min-width: 1024px) {
  .counter .counter_wraper .counter_block {
    font-size: 16px;
    line-height: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .counter .counter_wraper .counter_block .mobile {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .counter .counter_wraper .counter_block .desktop {
    display: none;
  }
}
.counter .counter_wraper .counter_block span {
  color: #f54892;
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  display: block;
  border-bottom: 2px solid white;
  width: 51px;
}
@media screen and (min-width: 1024px) {
  .counter .counter_wraper .counter_block span {
    font-size: 64px;
    line-height: 78px;
    width: 122px;
  }
}

/* Tickets */
.tickets {
  padding-top: calc(5.8823529412vw + 122px);
  margin-top: calc(-5.8823529412vw - 122px);
}
@media screen and (min-width: 1024px) {
  .tickets {
    padding-top: 93px;
    margin-top: -93px;
  }
}
@media screen and (min-width: 1280px) {
  .tickets {
    padding-top: 121px;
    margin-top: -121px;
  }
}
.tickets .body {
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .tickets .body {
    padding-left: 26px;
    padding-right: 26px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}
@media screen and (min-width: 1800px) {
  .tickets .body {
    padding-left: 0;
    padding-right: 0;
  }
}
.tickets .body .ticket {
  box-shadow: 0px 4px 8px #00000029;
  border: 1px solid #252222;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .tickets .body .ticket {
    width: 45%;
  }
}
@media screen and (min-width: 1024px) {
  .tickets .body .ticket {
    width: calc((100% - 32px) / 3);
  }
}
.tickets .body .ticket .title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 24px;
  line-height: 29px;
  color: white;
  background-color: #2C2033;
  padding: 20px;
  margin: 0 0 21px;
}
@media screen and (min-width: 1280px) {
  .tickets .body .ticket .title {
    font-size: 32px;
    line-height: 39px;
    padding: 26px;
  }
}
.tickets .body .ticket .ticket_body .subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #707070;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .tickets .body .ticket .ticket_body .subtitle {
    font-size: 20px;
    line-height: 24px;
  }
}
.tickets .body .ticket .ticket_body .price {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
  color: #f54892;
  text-decoration: line-through;
  font-size: 28px;
  line-height: 34px;
  padding-top: 10px;
}
@media screen and (min-width: 1280px) {
  .tickets .body .ticket .ticket_body .price {
    font-size: 40px;
    line-height: 49px;
  }
}
.tickets .body .ticket .ticket_body .discounted_price {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 64px;
  line-height: 78px;
  color: #707070;
}
@media screen and (min-width: 1280px) {
  .tickets .body .ticket .ticket_body .discounted_price {
    font-size: 80px;
    line-height: 97px;
  }
}
.tickets .body .ticket .ticket_body .advantages {
  padding: 25px 37px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}
@media screen and (min-width: 1280px) {
  .tickets .body .ticket .ticket_body .advantages {
    padding: 16px 44px 54px 62px;
  }
}
.tickets .body .ticket .ticket_body .advantages li {
  list-style: none;
  padding-left: 37px;
  background-image: url("../img/usa/rebooking/red_checkbox.svg");
  background-repeat: no-repeat;
  background-position-y: center;
  color: #000000;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 28px;
}
@media screen and (min-width: 1280px) {
  .tickets .body .ticket .ticket_body .advantages li {
    font-size: 20px;
    line-height: 29px;
  }
}
.tickets .body .ticket .ticket_body .btn_red {
  margin: 0 auto 43px;
}
@media screen and (min-width: 1280px) {
  .tickets .body .ticket .ticket_body .btn_red {
    margin: 0 auto 60px;
  }
}
.tickets .ticket_options_wraper {
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .tickets .ticket_options_wraper {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
.tickets .ticket_options_wraper .ticket_option {
  color: #CBCBCB;
  font-size: 16px;
  line-height: 19px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: solid 1px #707070;
  width: 50%;
  background-color: #EFEFEF;
  transition: all 0.3s ease;
  cursor: pointer;
}
.tickets .ticket_options_wraper .ticket_option.multi {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .tickets .ticket_options_wraper .ticket_option.multi .mobile {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .tickets .ticket_options_wraper .ticket_option.multi .desktop {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .tickets .ticket_options_wraper .ticket_option.multi .accent {
    color: #f54892;
  }
}
@media screen and (min-width: 768px) {
  .tickets .ticket_options_wraper .ticket_option {
    color: #252222;
    border: none;
    background-color: transparent;
    font-size: 28px;
    line-height: 34px;
    justify-content: start;
    max-width: 400px;
  }
  .tickets .ticket_options_wraper .ticket_option.single {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .tickets .ticket_options_wraper .ticket_option {
    height: 64px;
  }
}
@media screen and (max-width: 767px) {
  .tickets .ticket_options_wraper .ticket_option.active {
    background-color: white;
    color: #252222;
  }
}
.tickets .ticket_options_wraper .switcher {
  display: none;
}
@media screen and (min-width: 768px) {
  .tickets .ticket_options_wraper .switcher {
    display: block;
    cursor: pointer;
    width: 97px;
    height: 48px;
    border: solid 1px #707070;
    border-radius: 90px;
    background-color: #f5489270;
    position: relative;
  }
  .tickets .ticket_options_wraper .switcher:after {
    position: absolute;
    display: block;
    background-color: #f5489270;
    content: "";
    width: 46px;
    height: 46px;
    border: solid 1px #252222;
    border-radius: 50%;
    top: 0;
    left: 0;
    transition: left 0.3s ease;
  }
  .tickets .ticket_options_wraper .switcher.multi:after {
    left: calc(100% - 46px);
  }
}
.tickets .tito-widget-button {
  background-color: transparent;
  border: none;
  color: white;
  font-weight: 600;
  padding: 0;
}
.tickets.theme_2 {
  /* background: linear-gradient(transparent 350px, #2C2033 0); */
}
.theme_2 .date {
  color: #fff !important;
  padding-top: 16px;
  padding-bottom: 16px;
  text-transform: uppercase;
  font-weight: 900 !important;
  text-align: center;
}
@media screen and (max-width: 1279px) {
  .tickets.theme_2 {
    background: linear-gradient(transparent 350px, #44344E 0);
  }
}
@media screen and (max-width: 1023px) {
  .tickets.theme_2 {
    margin-top: 0;
    padding-top: 30px;
    padding-bottom: 85px;
  }
}
@media screen and (max-width: 767px) {
  .tickets.theme_2 {
    background: linear-gradient(transparent 32px, #44344E 0);
  }
}
.tickets.theme_2 .ticket_options_wraper .ticket_option {
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .tickets.theme_2 .ticket_options_wraper .ticket_option {
    background-color: #35273E;
    font-size: 16px !important;
    line-height: 20px !important;
    opacity: 0.5;
    padding: 4px;
  }
}
.tickets.theme_2 .ticket_options_wraper .ticket_option.active {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .tickets.theme_2 .ticket_options_wraper {
    gap: 0 !important;
  }
}
.tickets.theme_2 .wraper_1604 {
  max-width: 1229px;
  gap: 26px;
}
.tickets.theme_2 .body {
  padding-left: 10px;
  padding-right: 15px;
}
@media screen and (max-width: 1279px) {
  .tickets.theme_2 .body {
    flex-direction: column;
  }
}
.tickets.theme_2 .body .ticket {
  justify-content: start;
  margin-bottom: 8px;
  border-radius: 8px;
  width: calc((100% - 56px) / 3);
  box-shadow: none;
  border: none;
}
@media screen and (min-width: 1280px) {
  .tickets.theme_2 .body .ticket {
    justify-content: space-between;
  }
}
@media screen and (max-width: 1279px) {
  .tickets.theme_2 .body .ticket {
    width: 100%;
  }
}
@media screen and (max-width: 1279px) {
  .tickets.theme_2 .body .ticket .title {
    position: relative;
  }
  .tickets.theme_2 .body .ticket .title:after {
    position: absolute;
    content: "";
    display: block;
    width: 23px;
    height: 20px;
    top: 23px;
    right: 20px;
    transition: transform 0.2s ease;
  }
  .tickets.theme_2 .body .ticket .title.active:after {
    transform: scale(1, -1);
  }
}
.tickets.theme_2 .body .ticket.pink .title {
  border-bottom: 2px dashed #E33D88;
  box-shadow: 6px 6px 0 0 #E33D88;
}
@media screen and (min-width: 768px) {
  .tickets.theme_2 .body .ticket.pink .title {
    box-shadow: 8px 8px 0 0 #E33D88;
  }
}
.tickets.theme_2 .body .ticket.pink .title:after {
  background-image: url("data:image/svg+xml,%3Csvg width='23' height='20' viewBox='0 0 23 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_12_15)'%3E%3Cpath d='M11.5 16.8553L20.2335 1.66667L2.76651 1.66667L11.5 16.8553ZM11.5 20L1.93914e-06 4.76837e-07L23 4.76837e-07L11.5 20Z' fill='%23F72389'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_12_15'%3E%3Crect width='20' height='23' fill='white' transform='matrix(0 -1 1 0 0 20)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E ");
}
.tickets.theme_2 .body .ticket.pink .title.active:after {
  background-image: url("data:image/svg+xml,%3Csvg width='23' height='20' viewBox='0 0 23 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_43_51)'%3E%3Cpath d='M11.5 16.8553L20.2335 1.66667L2.76651 1.66667L11.5 16.8553ZM11.5 20L1.93914e-06 4.76837e-07L23 4.76837e-07L11.5 20Z' fill='%23F72389'/%3E%3Cpath d='M11.5 17.0834L2.53664 1.45837L20.4634 1.45837L11.5 17.0834Z' fill='%23F72389'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_43_51'%3E%3Crect width='20' height='23' fill='white' transform='matrix(0 -1 1 0 0 20)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E ");
}
.tickets.theme_2 .body .ticket.pink .ticket_body {
  box-shadow: 8px 8px 0 0 #E33D88;
}
.tickets.theme_2 .body .ticket.neon .title {
  border-bottom: 2px dashed #30FFD2;
  box-shadow: 6px 6px 0 0 #30FFD2;
  position: relative;
}
@media screen and (min-width: 768px) {
  .tickets.theme_2 .body .ticket.neon .title {
    box-shadow: 8px 8px 0 0 #30FFD2;
  }
}
.tickets.theme_2 .body .ticket.neon .title:after {
  background-image: url("data:image/svg+xml,%3Csvg width='23' height='20' viewBox='0 0 23 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_12_15)'%3E%3Cpath d='M11.5 16.8553L20.2335 1.66667L2.76651 1.66667L11.5 16.8553ZM11.5 20L1.90735e-06 0L23 0L11.5 20Z' fill='%232FFFD2'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_12_15'%3E%3Crect width='20' height='23' fill='white' transform='matrix(0 -1 1 0 0 20)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.tickets.theme_2 .body .ticket.neon .title.active:after {
  background-image: url("data:image/svg+xml,%3Csvg width='23' height='20' viewBox='0 0 23 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_43_51)'%3E%3Cpath d='M11.5 16.8553L20.2335 1.66667L2.76651 1.66667L11.5 16.8553ZM11.5 20L1.93914e-06 4.76837e-07L23 4.76837e-07L11.5 20Z' fill='%232FFFD2'/%3E%3Cpath d='M11.5 17.0834L2.53664 1.45837L20.4634 1.45837L11.5 17.0834Z' fill='%232FFFD2'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_43_51'%3E%3Crect width='20' height='23' fill='white' transform='matrix(0 -1 1 0 0 20)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E ");
}
.tickets.theme_2 .body .ticket.neon .ticket_body {
  box-shadow: 8px 8px 0 0 #30FFD2;
}
.tickets.theme_2 .body .ticket.neon .ticket_body .advantages li {
  background-image: url(../img/dublin-2023/neon_checkbox.svg);
}
.tickets.theme_2 .body .ticket.yellow .title {
  border-bottom: 2px dashed #E99A1B;
  box-shadow: 6px 6px 0 0 #E99A1B;
  position: relative;
}
@media screen and (min-width: 768px) {
  .tickets.theme_2 .body .ticket.yellow .title {
    box-shadow: 8px 8px 0 0 #E99A1B;
  }
}
.tickets.theme_2 .body .ticket.yellow .title:after {
  background-image: url("data:image/svg+xml,%3Csvg width='23' height='20' viewBox='0 0 23 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_12_15)'%3E%3Cpath d='M11.5 16.8553L20.2335 1.66667L2.76651 1.66667L11.5 16.8553ZM11.5 20L1.93914e-06 4.76837e-07L23 4.76837e-07L11.5 20Z' fill='%23DE9E3D'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_12_15'%3E%3Crect width='20' height='23' fill='white' transform='matrix(0 -1 1 0 0 20)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E ");
}
.tickets.theme_2 .body .ticket.yellow .title.active:after {
  background-image: url("data:image/svg+xml,%3Csvg width='23' height='20' viewBox='0 0 23 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_43_51)'%3E%3Cpath d='M11.5 16.8553L20.2335 1.66667L2.76651 1.66667L11.5 16.8553ZM11.5 20L1.93914e-06 4.76837e-07L23 4.76837e-07L11.5 20Z' fill='%23DE9E3D'/%3E%3Cpath d='M11.5 17.0834L2.53664 1.45837L20.4634 1.45837L11.5 17.0834Z' fill='%23DE9E3D'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_43_51'%3E%3Crect width='20' height='23' fill='white' transform='matrix(0 -1 1 0 0 20)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E ");
}
.tickets.theme_2 .body .ticket.yellow .ticket_body {
  box-shadow: 8px 8px 0 0 #E99A1B;
}
.tickets.theme_2 .body .ticket.yellow .ticket_body .advantages li {
  background-image: url(../img/dublin-2023/yellow_checkbox.svg);
}
.tickets.theme_2 .body .ticket .title {
  background-color: #35273E;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0;
  padding: 22px 26px 17px;
}
.tickets.theme_2 .body .ticket .title img {
  max-width: 100%;
  height: 104px;
}
.tickets.theme_2 .body .ticket_body {
  background-color: #35273E;
  border-radius: 8px 8px 20px 20px;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .tickets.theme_2 .body .ticket_body {
    height: calc(100% - 144px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.tickets.theme_2 .body .ticket_body .advantages {
  padding: 20px 32px 38px;
  transition: all 0.3s ease;
  gap: 0;
}
@media screen and (max-width: 1279px) {
  .tickets.theme_2 .body .ticket_body .advantages {
    overflow: hidden;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.tickets.theme_2 .body .ticket_body .advantages li {
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  background-position-y: 6px;
}
.tickets.theme_2 .body .ticket_bottom {
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  padding-bottom: 23px;
  position: relative;
  z-index: 2;
  border-radius: 8px 8px 20px 20px;
}
.tickets.theme_2 .body .ticket_bottom .price {
  text-decoration: none;
  color: #2C2033;
  font-weight: 900;
  margin-bottom: 15px;
}
.tickets.theme_2 .body .ticket_bottom .btn_red {
  background-color: #F72389;
  margin-bottom: 0 !important;
}
.tickets.theme_2 .ticket_options_wraper {
  padding-top: 49px;
  padding-bottom: 46px;
}
.tickets.theme_2 .ticket_options_wraper .ticket_option {
  color: #fff;
  font-size: 22px;
  line-height: 28px;
}
.tickets.theme_2 .ticket_options_wraper .ticket_option .accent {
  color: #E99A1B;
}
.tickets.theme_2 .switcher {
  background-color: #735D80;
}
.tickets.theme_2 .switcher:after {
  background-color: #30FFD2;
}
.tickets.theme_2 .cta {
  margin-left: auto;
  margin-right: auto;
}
.tickets.theme_2 .tito-widget-button {
  font-weight: 900;
}

.fade {
  animation-name: fade;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes fade {
  from {
    opacity: 0.1;
  }
  to {
    opacity: 1;
  }
}
/* Attendees section */
.attendees_section {
  padding-bottom: 0;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .attendees_section.theme_1 {
    padding-top: 116px;
    padding-bottom: 116px;
  }
}
.attendees_section.theme_1 .rows .row .caption {
  border: solid 1px #606060;
}
.attendees_section.theme_1 .rows .row .caption .number {
  color: #f54892;
}
.attendees_section.theme_1 .rows .row .slider {
  background-color: white;
  border: solid 1px #606060;
}
.attendees_section.theme_1 .title {
  font-weight: 700;
}
.attendees_section.theme_2 {
  background-color: #2C2033;
  background-image: none;
  padding: 21px 35px;
}
@media screen and (min-width: 768px) {
  .attendees_section.theme_2 {
    padding-top: 21px;
    padding-bottom: 21px;
  }
}
@media screen and (min-width: 1024px) {
  .attendees_section.theme_2 {
    padding: 64px 0;
  }
}
.attendees_section.theme_2 .title {
  display: block;
  font-size: 22px;
  line-height: 28px;
}
@media screen and (min-width: 1024px) {
  .attendees_section.theme_2 .title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media screen and (min-width: 1366px) {
  .attendees_section.theme_2 .title {
    font-size: 52px;
    line-height: 72px;
  }
}
@media screen and (max-width: 1023px) {
  .attendees_section.theme_2 .rows {
    display: flex;
    justify-content: center;
    padding-top: 0;
    gap: 75px;
  }
}
@media screen and (max-width: 767px) {
  .attendees_section.theme_2 .rows {
    gap: 8px;
    justify-content: space-between;
  }
}
.attendees_section.theme_2 .rows .row .caption {
  width: 23%;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #606060;
  padding: 23px;
}
@media screen and (max-width: 1366px) {
  .attendees_section.theme_2 .rows .row .caption {
    width: 19.5%;
  }
}
@media screen and (max-width: 1023px) {
  .attendees_section.theme_2 .rows .row .caption {
    width: 100%;
    border: none;
    padding: 0;
  }
}
.attendees_section.theme_2 .rows .row .caption .number {
  color: #F72389;
  font-size: 28px;
  line-height: 36px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 900;
  display: flex;
}
.attendees_section.theme_2 .rows .row .caption .number span {
  color: #F72389;
}
@media screen and (min-width: 375px) {
  .attendees_section.theme_2 .rows .row .caption .number {
    font-size: 40px;
    line-height: 48px;
  }
}
@media screen and (max-width: 1023px) {
  .attendees_section.theme_2 .rows .row .caption .number {
    font-weight: 900;
  }
}
@media screen and (min-width: 1366px) {
  .attendees_section.theme_2 .rows .row .caption .number {
    font-size: 64px;
    line-height: 78px;
  }
}
.attendees_section.theme_2 .rows .row .caption .name {
  font-weight: 900;
  font-size: 14px;
  line-height: 19px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 375px) {
  .attendees_section.theme_2 .rows .row .caption .name {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .attendees_section.theme_2 .rows .row .caption .name {
    font-size: 22px;
    line-height: 28px;
  }
}
@media screen and (min-width: 1366px) {
  .attendees_section.theme_2 .rows .row .caption .name {
    font-size: 32px;
    line-height: 40px;
  }
}
.attendees_section.theme_2 .rows .row .slider {
  background-color: #fff;
  border-bottom: solid 1px #606060;
  display: none;
}
@media screen and (min-width: 1024px) {
  .attendees_section.theme_2 .rows .row .slider {
    display: block;
    width: 80.5%;
  }
}
@media screen and (min-width: 1366px) {
  .attendees_section.theme_2 .rows .row .slider {
    width: 77%;
  }
}
@media screen and (max-width: 1023px) {
  .attendees_section.theme_2 .rows .row:nth-child(2) .number {
    color: #E99A1B;
  }
}
@media screen and (max-width: 1023px) {
  .attendees_section.theme_2 .rows .row:nth-child(3) .number {
    color: #24FFDD;
  }
}
.attendees_section.theme_2 .rows .row:last-of-type .caption {
  border-bottom: none;
}
.attendees_section.theme_2 .rows .row:last-of-type .slider {
  border-bottom: none;
}
.attendees_section.theme_2 .title {
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .attendees_section {
    padding-top: 56px;
  }
}
.attendees_section .title {
  color: white;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-size: 30px;
  line-height: 40px;
  padding-left: 26px;
  padding-right: 26px;
}
@media screen and (max-width: 767px) {
  .attendees_section .title {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .attendees_section .title {
    font-size: 48px;
    line-height: 58px;
  }
}
@media screen and (min-width: 768px) {
  .attendees_section .rows {
    padding-top: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .attendees_section .rows {
    padding-top: 66px;
  }
}
.attendees_section .rows .row .caption {
  display: flex;
  flex-direction: column;
  background-color: #2C2033;
  padding: 23px 40px;
  text-align: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .attendees_section .rows .row .caption {
    width: 28%;
  }
}
@media screen and (min-width: 992px) {
  .attendees_section .rows .row .caption {
    padding: 23px 78px;
  }
}
@media screen and (min-width: 2000px) {
  .attendees_section .rows .row .caption {
    width: 35%;
  }
}
.attendees_section .rows .row .caption .number {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 78px;
}
@media screen and (min-width: 768px) {
  .attendees_section .rows .row .caption .number {
    font-size: 48px;
    line-height: 56px;
  }
}
@media screen and (min-width: 1200px) {
  .attendees_section .rows .row .caption .number {
    font-size: 64px;
    line-height: 78px;
  }
}
@media screen and (min-width: 1560px) {
  .attendees_section .rows .row .caption .number {
    margin-left: calc((100vw - 1604px) / 2);
  }
}
.attendees_section .rows .row .caption .name {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .attendees_section .rows .row .caption .name {
    font-size: 24px;
    line-height: 28px;
  }
}
@media screen and (min-width: 1200px) {
  .attendees_section .rows .row .caption .name {
    font-size: 32px;
    line-height: 39px;
  }
}
@media screen and (min-width: 1560px) {
  .attendees_section .rows .row .caption .name {
    margin-left: calc((100vw - 1604px) / 2);
  }
}
.attendees_section .rows .row .slider {
  width: 72%;
  max-height: 165px;
}
@media screen and (max-width: 767px) {
  .attendees_section .rows .row .slider {
    display: none;
  }
}
@media screen and (min-width: 2000px) {
  .attendees_section .rows .row .slider {
    width: 65%;
  }
}
.attendees_section .rows .row .slider .swiper-wrapper {
  list-style: none;
}
.attendees_section .rows .row .slider .swiper-wrapper .swiper-slide {
  max-width: 115px;
}
@media screen and (min-width: 1280px) {
  .attendees_section .rows .row .slider .swiper-wrapper .swiper-slide {
    max-width: 145px;
  }
}
.attendees_section .rows .row .slider .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.attendees_section * {
  color: white;
}

/* Slider */
.slider_section .wraper_1334 {
  position: relative;
}
.slider_section .title {
  color: white;
  font-size: 40px;
  line-height: 48px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left: 26px;
  padding-right: 26px;
}
@media screen and (min-width: 1200px) {
  .slider_section .title {
    font-size: 56px;
    line-height: 64px;
  }
}
@media screen and (min-width: 1560px) {
  .slider_section .title {
    font-size: 80px;
    line-height: 97px;
  }
}
.slider_section .slider {
  max-width: 100vw;
  height: 345px;
  position: relative;
}
.slider_section .slider:before {
  position: absolute;
  display: block;
  content: "";
  height: 100%;
  width: 400px;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, #252222, #25222200);
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .slider_section .slider:before {
    display: none;
  }
}
.slider_section .slider:after {
  position: absolute;
  display: block;
  content: "";
  height: 100%;
  width: 400px;
  right: 0;
  top: 0;
  background: linear-gradient(90deg, #25222200, #252222);
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .slider_section .slider:after {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .slider_section .slider {
    height: 500px;
  }
}
@media screen and (min-width: 1200px) {
  .slider_section .slider {
    height: 600px;
  }
}
@media screen and (min-width: 1560px) {
  .slider_section .slider {
    height: 800px;
  }
}
.slider_section .slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider_section .slider .swiper-pagination {
  bottom: 32px;
}
.slider_section .slider .swiper-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background-color: white;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .slider_section .slider .swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
  }
}
.slider_section .slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #f54892;
}
.slider_section .swiper-button-next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='62' viewBox='0 0 54 62'%3E%3Cg id='Polygon_1' data-name='Polygon 1' transform='translate(54) rotate(90)' fill='none'%3E%3Cpath d='M31,0,62,54H0Z' stroke='none'/%3E%3Cpath d='M 31.00000190734863 4.017143249511719 L 3.454288482666016 52 L 58.54571533203125 52 L 31.00000190734863 4.017143249511719 M 31.00000190734863 0 L 62 54 L 3.814697265625e-06 54 L 31.00000190734863 0 Z' stroke='none' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
  width: 62px;
  height: 62px;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .slider_section .swiper-button-next {
    display: none;
  }
}
@media screen and (min-width: 1560px) {
  .slider_section .swiper-button-next {
    right: -100px;
  }
}
.slider_section .swiper-button-next:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='62' viewBox='0 0 54 62'%3E%3Cg id='Polygon_1' data-name='Polygon 1' transform='translate(54) rotate(90)' fill='none'%3E%3Cpath d='M31,0,62,54H0Z' stroke='none'/%3E%3Cpath d='M 31.00000190734863 4.017143249511719 L 3.454288482666016 52 L 58.54571533203125 52 L 31.00000190734863 4.017143249511719 M 31.00000190734863 0 L 62 54 L 3.814697265625e-06 54 L 31.00000190734863 0 Z' stroke='none' fill='%23f54892'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.slider_section .swiper-button-next:after {
  display: none;
}
.slider_section .swiper-button-prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='62' viewBox='0 0 54 62'%3E%3Cg id='Polygon_2' data-name='Polygon 2' transform='translate(0 62) rotate(-90)' fill='none'%3E%3Cpath d='M31,0,62,54H0Z' stroke='none'/%3E%3Cpath d='M 31.00000190734863 4.017143249511719 L 3.454288482666016 52 L 58.54571533203125 52 L 31.00000190734863 4.017143249511719 M 31.00000190734863 0 L 62 54 L 3.814697265625e-06 54 L 31.00000190734863 0 Z' stroke='none' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E ");
  width: 62px;
  height: 62px;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .slider_section .swiper-button-prev {
    display: none;
  }
}
@media screen and (min-width: 1560px) {
  .slider_section .swiper-button-prev {
    left: -100px;
  }
}
.slider_section .swiper-button-prev:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='62' viewBox='0 0 54 62'%3E%3Cg id='Polygon_2' data-name='Polygon 2' transform='translate(0 62) rotate(-90)' fill='none'%3E%3Cpath d='M31,0,62,54H0Z' stroke='none'/%3E%3Cpath d='M 31.00000190734863 4.017143249511719 L 3.454288482666016 52 L 58.54571533203125 52 L 31.00000190734863 4.017143249511719 M 31.00000190734863 0 L 62 54 L 3.814697265625e-06 54 L 31.00000190734863 0 Z' stroke='none' fill='%23f54892'/%3E%3C/g%3E%3C/svg%3E ");
}
.slider_section .swiper-button-prev:after {
  display: none;
}
@media screen and (max-width: 767px) {
  .slider_section.hide_on_mobile_version {
    display: none;
  }
}
.slider_section.theme_2 {
  background-color: #35273E;
}
.slider_section.theme_2 .slider {
  background-color: #44344E;
}
@media screen and (max-width: 767px) {
  .slider_section.theme_2 .slider {
    height: auto;
  }
}
@media screen and (min-width: 1701px) {
  .slider_section.theme_2 .slider::before {
    display: none;
  }
  .slider_section.theme_2 .slider::after {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .slider_section.theme_2 .wraper_1334 {
    max-width: 834px;
  }
}
@media screen and (min-width: 1280px) {
  .slider_section.theme_2 .wraper_1334 {
    max-width: 920px;
  }
}
@media screen and (min-width: 1400px) {
  .slider_section.theme_2 .wraper_1334 {
    max-width: 1190px;
  }
}
@media screen and (min-width: 1560px) {
  .slider_section.theme_2 .wraper_1334 {
    max-width: 1334px;
  }
}
@media screen and (max-width: 767px) {
  .slider_section.theme_2 .swiper-wrapper {
    transform: none;
    flex-direction: column;
    gap: 10px;
  }
}
.slider_section.theme_2 .swiper-button-next {
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='60' viewBox='0 0 48 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_12_15)'%3E%3Cpath d='M40.4528 30L4 7.21699L4 52.783L40.4528 30ZM48 30L0 60L0 0L48 30Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_12_15'%3E%3Crect width='48' height='60' fill='white' transform='matrix(-1 0 0 -1 48 60)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E ");
}
@media screen and (max-width: 1023px) {
  .slider_section.theme_2 .swiper-button-next {
    display: none;
  }
}
@media screen and (max-width: 1700px) {
  .slider_section.theme_2 .swiper-button-next {
    right: 20px;
  }
}
.slider_section.theme_2 .swiper-button-next:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='60' viewBox='0 0 48 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_12_79)'%3E%3Cpath d='M40.4528 30L4 7.21699L4 52.783L40.4528 30ZM48 30L0 60L0 0L48 30Z' fill='white'/%3E%3Cpath d='M41 30L3.5 53.3827L3.5 6.61731L41 30Z' fill='%23F72389'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_12_79'%3E%3Crect width='48' height='60' fill='white' transform='matrix(-1 0 0 -1 48 60)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E ");
}
.slider_section.theme_2 .swiper-button-prev {
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='60' viewBox='0 0 48 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_12_74)'%3E%3Cpath d='M7.54718 30L44 52.783V7.21699L7.54718 30ZM0 30L48 3.8147e-06L48 60L0 30Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_12_74'%3E%3Crect width='48' height='60' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
@media screen and (max-width: 1023px) {
  .slider_section.theme_2 .swiper-button-prev {
    display: none;
  }
}
@media screen and (max-width: 1700px) {
  .slider_section.theme_2 .swiper-button-prev {
    left: 20px;
  }
}
.slider_section.theme_2 .swiper-button-prev:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='60' viewBox='0 0 48 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_12_69)'%3E%3Cpath d='M7.54718 30L44 52.783V7.21699L7.54718 30ZM0 30L48 3.8147e-06L48 60L0 30Z' fill='white'/%3E%3Cpath d='M7 30L44.5 6.61732V53.3827L7 30Z' fill='%23F72389'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_12_69'%3E%3Crect width='48' height='60' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E ");
}
@media screen and (max-width: 767px) {
  .slider_section.theme_2 .swiper-pagination {
    display: none;
  }
}

.slider_section_cta {
  background-color: #35273E;
  padding: 22px 28px 52px;
}
.slider_section_cta h6 {
  color: #fff;
  font-weight: 500;
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
}
.slider_section_cta .cta {
  margin: 28px auto 0;
}
@media screen and (min-width: 768px) {
  .slider_section_cta {
    display: none;
  }
}
/* In The Press */
.in_the_press {
  padding-top: 60px;
  padding-bottom: 83px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .in_the_press {
    padding-top: 50px;
    padding-bottom: 60px;
    padding-top: 100px;
    padding-bottom: 132px;
  }
}
.in_the_press .title {
  color: white;
  text-align: center;
  padding-left: 26px;
  padding-right: 26px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 34px;
}
@media screen and (min-width: 768px) {
  .in_the_press .title {
    font-size: 40px;
    line-height: 49px;
  }
}
.in_the_press .slider {
  margin-top: 40px;
  padding-left: 26px;
  padding-right: 26px;
}
@media screen and (min-width: 768px) {
  .in_the_press .slider {
    margin-top: 60px;
    padding-left: 32px;
    padding-right: 32px;
    background-color: white;
  }
}
@media screen and (min-width: 1668px) {
  .in_the_press .slider {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .in_the_press .slider .swiper-wrapper {
    background-color: white;
    gap: 16px 11px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.in_the_press .slider .swiper-wrapper .swiper-slide {
  height: 69px;
  width: auto;
  max-width: 200px;
}
@media screen and (max-width: 767px) {
  .in_the_press .slider .swiper-wrapper .swiper-slide {
    width: calc((100% - 16px) / 2);
  }
}
@media screen and (min-width: 768px) {
  .in_the_press .slider .swiper-wrapper .swiper-slide {
    height: 100px;
  }
}
.in_the_press .slider .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* CTA Button */
.header-dublin-body.dark .cta_button * {
  color: #fff;
}

.cta_button {
  padding: 40px 26px;
}
@media screen and (min-width: 768px) {
  .cta_button {
    padding: 53px 26px;
  }
}
.cta_button .btn_red {
  margin: 0 auto;
}
.cta_button .btn_red:hover {
  color: white;
  background-color: #f763a2;
}
.cta_button.theme_1.color-theme-dublin {
  background-image: none;
}
.cta_button.theme_1.color-theme-dublin a {
  background-color: #F72389;
  font-size: 22px;
  line-height: 28px;
  padding: 25px 57px;
  font-weight: 900;
  transform: translateY(0);
  transition: all 0.2s ease;
  box-shadow: 0 0 0 0 #30FFD2;
}
.cta_button.theme_1.color-theme-dublin a:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 0 0 #30FFD2;
}
.cta_button.theme_2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  padding: 40px 40px 60px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .cta_button.theme_2 {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .cta_button.theme_2 {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1366px) {
  .cta_button.theme_2 {
    padding-top: 116px;
    padding-bottom: 31px;
  }
}
.cta_button.theme_2 h4 {
  margin: 0;
}
.cta_button.theme_3 {
  background-color: #44344E;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 767px) {
  .cta_button.theme_3 {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .cta_button.theme_3 {
    background-color: #35273E;
  }
}
@media screen and (min-width: 1366px) {
  .cta_button.theme_3 {
    padding-top: 84px;
    padding-bottom: 70px;
  }
}
.cta_button.theme_3 .cta_button_theme_3_wraper {
  display: flex;
  max-width: 1334px;
  width: 100%;
  margin: 0 auto;
  gap: 29px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta_button.theme_3 .cta_button_theme_3_wraper * {
  color: #fff;
}
.cta_button.theme_3 .cta_button_theme_3_wraper * em {
  color: #F72389;
}
.cta_button.theme_3 .cta_button_theme_3_wraper * strong {
  color: #30FFD2;
}
.cta_button.theme_3 .cta_button_theme_3_wraper h2 {
  margin-bottom: 0;
}
@media screen and (max-width: 1279px) {
  .cta_button.theme_3 .cta_button_theme_3_wraper h2 {
    font-size: 36px;
    line-height: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .cta_button.theme_3 .cta_button_theme_3_wraper h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .cta_button.theme_3 .cta_button_theme_3_wraper h2 {
    font-size: 22px;
    line-height: 27px;
  }
}
@media screen and (max-width: 767px) {
  .cta_button.theme_3 .cta_button_theme_3_wraper .cta {
    display: none;
  }
}
.cta_button.theme_4 {
  text-align: center;
}
.cta_button.theme_4 strong {
  color: #F72389;
}
.cta_button.theme_4 .cta {
  margin: 56px auto;
  background-color: transparent;
}
.cta_button.theme_4.dark {
  background-color: #44344E;
}
@media screen and (max-width: 767px) {
  .cta_button.theme_4.dark {
    background-color: #554263;
  }
}
@media screen and (max-width: 767px) {
  .cta_button.theme_4.dark h4 strong {
    color: #ffffff;
  }
}
.cta_button.theme_4.dark .cta {
  border: 4px solid #FFFFFF;
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .cta_button.theme_4.dark .cta {
    margin-top: 27px;
    margin-bottom: 55px;
  }
}
.cta_button.theme_4.dark .cta:hover {
  background-color: #ffffff;
  color: #44344E;
  transform: translateY(0);
  box-shadow: none;
}
.cta_button.theme_4.light .cta {
  border: 4px solid #F62388;
  color: #F62388;
  margin-bottom: 23px;
  margin-top: 71px;
}
.cta_button.theme_4.light .cta:hover {
  background-color: #F62388;
  color: #ffffff;
  transform: translateY(0);
  box-shadow: none;
}

/* Get Involved */
.get_involved_section {
  padding-top: 77px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1024px) {
  .get_involved_section {
    padding-top: 118px;
    padding-bottom: 118px;
  }
}
.get_involved_section .wraper_1604 {
  padding-left: 26px;
  padding-right: 26px;
}
@media screen and (min-width: 1024px) {
  .get_involved_section .wraper_1604 {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 74px;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }
}
.get_involved_section .title {
  font-size: 56px;
  line-height: 56px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  color: #252222;
}
@media screen and (min-width: 414px) {
  .get_involved_section .title {
    font-size: 72px;
    line-height: 72px;
  }
}
@media screen and (min-width: 1024px) {
  .get_involved_section .title {
    padding: 0 0 0 32px;
  }
}
@media screen and (min-width: 1560px) {
  .get_involved_section .title {
    font-size: 100px;
    line-height: 92px;
  }
}
@media screen and (min-width: 1668px) {
  .get_involved_section .title {
    padding: 0;
  }
}
.get_involved_section .cards {
  margin-top: 31px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media screen and (min-width: 1024px) {
  .get_involved_section .cards {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 23px 16px;
    padding: 0 32px 0 0;
    margin: 0;
  }
}
@media screen and (min-width: 1668px) {
  .get_involved_section .cards {
    padding: 0;
  }
}
.get_involved_section .cards a {
  color: #707070;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  display: flex;
  height: 120px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 24px;
  border: 1px solid #707070;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.get_involved_section .cards a:hover {
  background-color: #f763a2;
  color: white;
}
@media screen and (min-width: 1024px) {
  .get_involved_section .cards a {
    width: calc((100% - 16px) / 2);
    height: 196px;
  }
}

/* Accordions */
.accordions {
  background-color: #fff;
  padding-top: 126px;
  padding-bottom: 146px;
}
@media (max-width: 1200px) {
  .accordions {
    padding-top: 110px;
    padding-bottom: 115px;
  }
}
@media (max-width: 992px) {
  .accordions {
    padding-top: 98px;
    padding-bottom: 72px;
  }
}
@media (max-width: 400px) {
  .accordions {
    padding-top: 60px;
    padding-bottom: 65px;
  }
}
.accordions .wraper_1604 {
  padding: 0px 26px;
}
@media (max-width: 1600px) {
  .accordions .wraper_1604 {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .accordions .wraper_1604 {
    padding: 0px 30px;
  }
}
.accordions__title {
  margin-bottom: 104px;
  color: #f54892;
  font-size: 48px;
  line-height: 1.21;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}
@media (max-width: 1500px) {
  .accordions__title {
    font-size: 40px;
    margin-bottom: 65px;
  }
}
@media (max-width: 1200px) {
  .accordions__title {
    font-size: 30px;
    margin-bottom: 45px;
  }
}
@media (max-width: 768px) {
  .accordions__title {
    font-size: 28px;
    margin-bottom: 27px;
  }
}
@media (max-width: 768px) {
  .accordions__title {
    font-size: 26px;
    margin-bottom: 25px;
  }
}
.accordions-list-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 93px;
}
@media (max-width: 992px) {
  .accordions-list-item {
    gap: 21px;
    margin-bottom: 80px;
  }
}
@media (max-width: 400px) {
  .accordions-list-item {
    margin-bottom: 40px;
  }
}
.accordions-list-item:last-of-type {
  margin-bottom: 0px;
}
.accordions-list__image {
  max-width: 33.8%;
  width: 100%;
}
@media (max-width: 1200px) {
  .accordions-list__image {
    max-width: 37%;
  }
}
@media (max-width: 992px) {
  .accordions-list__image {
    max-width: 80%;
  }
}
@media (max-width: 768px) {
  .accordions-list__image {
    max-width: 100%;
  }
}
.accordions-list__image-wrapper {
  position: relative;
}
.accordions-list__image-wrapper img {
  border: 8px solid #f54892;
  width: 100%;
  height: 496px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .accordions-list__image-wrapper img {
    height: 395px;
  }
}
@media (max-width: 992px) {
  .accordions-list__image-wrapper img {
    height: 550px;
  }
}
@media (max-width: 768px) {
  .accordions-list__image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 576px) {
  .accordions-list__image-wrapper img {
    height: 420px;
  }
}
@media (max-width: 476px) {
  .accordions-list__image-wrapper img {
    height: 336px;
  }
}
@media (max-width: 400px) {
  .accordions-list__image-wrapper img {
    height: 310px;
  }
}
.accordions-list__title {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  color: #fff;
  font-size: 72px;
  line-height: 1.22;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-align: center;
}
@media (max-width: 1600px) {
  .accordions-list__title {
    font-size: 65px;
  }
}
@media (max-width: 1400px) {
  .accordions-list__title {
    font-size: 58px;
  }
}
@media (max-width: 1220px) {
  .accordions-list__title {
    font-size: 48px;
  }
}
@media (max-width: 992px) {
  .accordions-list__title {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .accordions-list__title {
    font-size: 52px;
  }
}
@media (max-width: 576px) {
  .accordions-list__title {
    font-size: 50px;
  }
}
@media (max-width: 412px) {
  .accordions-list__title {
    font-size: 48px;
  }
}
@media (max-width: 376px) {
  .accordions-list__title {
    font-size: 42px;
  }
}
@media (max-width: 330px) {
  .accordions-list__title {
    font-size: 40px;
  }
}
.accordions-list__info {
  max-width: 51.2%;
  width: 100%;
}
@media (max-width: 992px) {
  .accordions-list__info {
    max-width: 100%;
  }
}
.accordions-list__info .accordion .accordion-item {
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 24px 50px 22px 42px;
}
@media (max-width: 1500px) {
  .accordions-list__info .accordion .accordion-item {
    margin-bottom: 20px;
    padding: 22px 35px 20px 30px;
  }
}
@media (max-width: 768px) {
  .accordions-list__info .accordion .accordion-item {
    margin-bottom: 20px;
    padding: 22px 27px 20px 22px;
  }
}
@media (max-width: 400px) {
  .accordions-list__info .accordion .accordion-item {
    padding: 22px 20px 20px 16px;
  }
}
.accordions-list__info .accordion .accordion-item__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  color: #252222;
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
  padding-right: 24px;
  transition: all 0.3s ease;
}
.accordions-list__info .accordion .accordion-item__title:hover {
  opacity: 0.8;
}
@media (max-width: 992px) {
  .accordions-list__info .accordion .accordion-item__title:hover {
    opacity: 1;
  }
}
.accordions-list__info .accordion .accordion-item__title:hover::after {
  opacity: 0.8;
}
@media (max-width: 992px) {
  .accordions-list__info .accordion .accordion-item__title:hover::after {
    opacity: 1;
  }
}
.accordions-list__info .accordion .accordion-item__title::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23.616' height='13.503' viewBox='0 0 23.616 13.503'%3E%3Cpath d='M18,20.679l8.93-8.937a1.681,1.681,0,0,1,2.384,0,1.7,1.7,0,0,1,0,2.391L19.2,24.258a1.685,1.685,0,0,1-2.327.049L6.68,14.14a1.688,1.688,0,0,1,2.384-2.391Z' transform='translate(-6.188 -11.247)'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 24px;
  height: 14px;
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .accordions-list__info .accordion .accordion-item__title::after {
    width: 18px;
    height: 10px;
    right: -9px;
  }
}
@media (max-width: 400px) {
  .accordions-list__info .accordion .accordion-item__title::after {
    right: -4px;
  }
}
.accordions-list__info .accordion .accordion-item__title.active::after {
  transform: translateY(-50%) rotate(180deg);
}
@media (max-width: 1500px) {
  .accordions-list__info .accordion .accordion-item__title {
    font-size: 26px;
    line-height: 32px;
  }
}
@media (max-width: 1200px) {
  .accordions-list__info .accordion .accordion-item__title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 768px) {
  .accordions-list__info .accordion .accordion-item__title {
    font-size: 20px;
    line-height: 24px;
    padding-right: 18px;
  }
}
@media (max-width: 400px) {
  .accordions-list__info .accordion .accordion-item__title {
    line-height: 22px;
  }
}
.accordions-list__info .accordion .accordion-item__content {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 27px;
  display: none;
  padding-top: 33px;
  padding-bottom: 19px;
}
@media (max-width: 1200px) {
  .accordions-list__info .accordion .accordion-item__content {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .accordions-list__info .accordion .accordion-item__content {
    font-size: 16px;
    line-height: 24px;
    padding-top: 25px;
  }
}
.accordions-list__info .btn_red {
  margin-left: auto;
  margin-top: 32px;
  color: #fff;
}
@media (max-width: 992px) {
  .accordions-list__info .btn_red {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .accordions-list__info .btn_red {
    padding: 16px 67px;
  }
}

/* Subscribe Section */
.subscribe_section {
  padding: 49px 26px 86px;
}
@media screen and (min-width: 1280px) {
  .subscribe_section {
    padding: 62px 26px 115px;
  }
}
.subscribe_section .title {
  font-size: 52px;
  line-height: 63px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  color: white;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (min-width: 1280px) {
  .subscribe_section .title {
    font-size: 80px;
    line-height: 97px;
    margin-bottom: 43px;
  }
}
.subscribe_section .subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #C1C0C0;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1280px) {
  .subscribe_section .subtitle {
    font-size: 32px;
    line-height: 39px;
  }
}
.subscribe_section .form {
  max-width: 794px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1280px) {
  .subscribe_section .form {
    margin-top: 16px;
  }
}
.subscribe_section .form label {
  color: #FFFFFF;
  font-size: 20px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-top: 20px;
}
@media screen and (min-width: 1280px) {
  .subscribe_section .form label {
    margin-top: 30px;
  }
}
.subscribe_section .form input {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  color: #252222;
  height: 48px;
  border-radius: 0;
  border: none;
  outline: none;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 1280px) {
  .subscribe_section .form input {
    height: 64px;
  }
}
.subscribe_section .form input:-webkit-autofill,
.subscribe_section .form input:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
}
.subscribe_section .form .hs-button {
  display: block;
  margin: 64px auto 0;
  color: white;
  background-color: #f54892;
  border-radius: 8px;
  padding: 6px 55px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
  width: max-content;
  height: auto;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.subscribe_section .form .hs-button:hover {
  background-color: #f763a2;
}
@media screen and (min-width: 1280px) {
  .subscribe_section .form .hs-button {
    padding: 16px 35px;
    font-size: 32px;
    line-height: 40px;
    margin: 40px auto 0;
  }
}

/* Footer */
.footer-usa-rebooking {
  background-color: #f54892;
  height: 93px;
}

/* Video */
.video {
  position: relative;
  height: 234px;
}
@media screen and (min-width: 768px) {
  .video {
    height: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .video {
    height: 662px;
  }
}
.video h1 {
  position: absolute;
  z-index: 5;
  color: white;
  font-size: 72px;
  line-height: 88px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
}
.video .btn_play {
  position: absolute;
  z-index: 5;
  background-image: url("../img/usa/rebooking/slider-navigation-next.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video #player {
  width: 100%;
  height: 234px;
}
.video #player video {
  min-width: 100vw;
}
@media screen and (min-width: 768px) {
  .video #player {
    height: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .video #player {
    height: 662px;
  }
}

/* CTA Video */
.cta-video .cta-video-wrapper {
  margin: 0px;
  position: relative;
  width: 100%;
  height: 1080px;
  overflow: hidden;
}
@media (max-width: 1700px) {
  .cta-video .cta-video-wrapper {
    height: 720px;
  }
}
@media (max-width: 1400px) {
  .cta-video .cta-video-wrapper {
    height: 600px;
  }
}
@media (max-width: 992px) {
  .cta-video .cta-video-wrapper {
    height: 480px;
  }
}
@media (max-width: 768px) {
  .cta-video .cta-video-wrapper {
    height: 360px;
  }
}
@media (max-width: 576px) {
  .cta-video .cta-video-wrapper {
    height: 320px;
  }
}
@media (max-width: 476px) {
  .cta-video .cta-video-wrapper {
    height: 233px;
  }
}
@media (max-width: 400px) {
  .cta-video .cta-video-wrapper {
    height: 200px;
  }
}
.cta-video .cta-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 4;
  position: relative;
}
.cta-video .cta-video-wrapper .video-poster {
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.cta-video .cta-video-play {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='291' height='291' viewBox='0 0 291 291'%3E%3Cg transform='translate(-804 -5568)'%3E%3Cpath d='M63,0l63,109H0Z' transform='translate(1022 5651) rotate(90)' fill='%23fff'/%3E%3Cg transform='translate(804 5568)' fill='none' stroke='%23fff' stroke-width='10'%3E%3Ccircle cx='145.5' cy='145.5' r='145.5' stroke='none'/%3E%3Ccircle cx='145.5' cy='145.5' r='140.5' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 291px;
  height: 291px;
  border-radius: 50%;
  background-color: transparent;
  border: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  transition: all 0.3s ease;
  cursor: pointer;
}
.cta-video .cta-video-play:hover {
  opacity: 0.8;
}
@media (max-width: 1700px) {
  .cta-video .cta-video-play {
    width: 220px;
    height: 220px;
  }
}
@media (max-width: 1400px) {
  .cta-video .cta-video-play {
    width: 160px;
    height: 160px;
  }
}
@media (max-width: 992px) {
  .cta-video .cta-video-play {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .cta-video .cta-video-play {
    width: 63px;
    height: 63px;
  }
}
@media (max-width: 400px) {
  .cta-video .cta-video-play {
    width: 52px;
    height: 52px;
  }
}

.dublin-saascity-cta {
  padding-bottom: 100px !important;
  gap: 60px !important;
  padding-top: 167px !important;
}
@media screen and (max-width: 767px) {
  .dublin-saascity-cta {
    gap: 45px !important;
    padding-top: 60px !important;
  }
}

/*# sourceMappingURL=flexible_content.css.map */
