.section1 .buttons-container {
  margin-top: 48px;
  gap: 20px;
  display: flex;
}
.section1 .buttons-container .button_container {
  margin-top: 0;
}

.section1.landing-hero .container {
  position: relative;
  align-items: center;
  display: flex;
  gap: 0 100px;
}
.section1.landing-hero .container .section1_left {
  width: 650px;
  flex: 1 0 650px;
}
.section1.landing-hero .container .section1_right {
  position: relative;
  width: auto;
  height: auto;
  right: unset;
}
.section1.landing-hero .container .section1_right .section1_img img {
  width: 720px;
  height: 480px;
}

.business_name_container {
  padding: 88px 0;
  background-color: #000;
}
.business_name_container .business_name_container_title {
  text-align: center;
  margin-bottom: 48px;
}
.business_name_container .business_name_container_title h2 {
  color: #fff;
  font-size: 40px;
  line-height: 52px;
  font-weight: 700;
}
.business_name_container .section_description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 48px;
  text-align: center;
}
.business_name_container .items_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.business_name_container .items_container .business_name_item a {
  text-decoration: none;
  padding: 8px 24px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  border: 1px solid #fff;
  border-radius: 24px;
  display: inline-block;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.1);
}
.business_name_container .items_container .business_name_item a:hover {
  opacity: 0.5;
}

.carousel_section {
  overflow-x: hidden;
}
.carousel_section.space_top {
  padding-top: 148px;
}
.carousel_section.no_top_space {
  padding-top: 0;
  margin-top: 0;
}
.carousel_section.no_top_space .show_case_outer {
  margin-top: 0;
}
.carousel_section .button_container .tw_button {
  width: auto;
  white-space: nowrap;
  padding-left: 10px;
  padding-right: 10px;
  min-width: 220px;
}

.show_case_slider_container {
  padding: 0 calc((100% - 1280px) / 2);
  position: relative;
  overflow-y: hidden;
  overflow-x: hidden;
}
.show_case_slider_container .slick-list {
  overflow: visible;
}
.show_case_slider_container .slick-track {
  display: flex;
  gap: 24px;
}
.show_case_slider_container .item {
  width: 720px;
  height: 480px;
  box-sizing: border-box;
}
.show_case_slider_container .item * {
  box-sizing: border-box;
}
.show_case_slider_container .item.has_hover {
  position: relative;
}
.show_case_slider_container .item.has_hover:hover .item_overlay {
  opacity: 1;
  visibility: visible;
}
.show_case_slider_container .item.has_hover .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  background: var(--Surface-Black-Mid, rgba(0, 0, 0, 0.3));
  backdrop-filter: blur(8px);
  text-decoration: none;
  padding: 48px;
  opacity: 0;
  visibility: hidden;
}
.show_case_slider_container .item.has_hover .item_overlay strong {
  color: #fff;
  font-size: 24px;
  line-height: 36px;
}
.show_case_slider_container .item img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.show_case_outer {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  align-items: center;
  margin-top: 80px;
}
.show_case_outer .show_case_inner.visible_tablet {
  display: none;
}
.show_case_outer .show_case_inner {
  display: grid;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: flex-start;
  animation: marquee-inner 90s linear infinite;
  animation-fill-mode: forwards;
}
.show_case_outer .show_case_inner.animate_left {
  animation: marquee-inner-left 90s linear infinite;
  align-self: flex-end;
}
.show_case_outer .show_case_inner .show_case_items {
  width: auto;
  margin-bottom: 30px;
}
.show_case_outer .show_case_inner .show_case_items .items {
  display: flex;
  gap: 24px;
}
.show_case_outer .show_case_inner .show_case_items .items .item.has_hover {
  position: relative;
}
.show_case_outer .show_case_inner .show_case_items .items .item.has_hover .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  background: var(--Surface-Black-Mid, rgba(0, 0, 0, 0.3));
  backdrop-filter: blur(8px);
  text-decoration: none;
}
.show_case_outer .show_case_inner .show_case_items .items .item.has_hover .item_overlay strong {
  color: #fff;
  font-size: 24px;
  line-height: 36px;
}
.show_case_outer .show_case_inner .show_case_items .items .item img {
  width: 720px;
  height: 480px;
  border-radius: 12px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}

.industry_pricing .section-title {
  font-size: 56px;
  line-height: 72px;
}
.industry_pricing.has_margin {
  margin-top: 150px;
}

.pricing-container {
  padding: 48px 48px;
  border-radius: 24px;
  border: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 108px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.pricing-container * {
  box-sizing: border-box;
}
.pricing-container .button_container {
  margin-top: 0 !important;
}
.pricing-container .pricing_right {
  max-width: 50%;
  overflow: hidden;
}
.pricing-container .pricing_right .img_wrapper {
  width: 576px;
  height: 396px;
  position: absolute;
  right: 0;
  top: 0;
}
.pricing-container .pricing_right .img_wrapper img {
  object-fit: cover;
  height: 100%;
}
.pricing-container .pricing__features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.pricing-container .pricing__features .feature_item {
  flex: 0 0 calc(50% - 12px);
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.pricing-container .pricing__features .feature_item::before {
  content: "";
  width: 28px;
  height: 32px;
  background: url("../../../../../../uploads/tenweb-theme/images/icons/checkmark_blue_rounded.svg");
}
.pricing-container p {
  margin-top: 16px;
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 28px;
}
.pricing-container .price_wrapper span {
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
  display: inline-block;
}
.pricing-container .price_wrapper span.period {
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
  color: #000;
}
.pricing-container .price_wrapper strong.price {
  font-size: 52px;
  line-height: 68px;
}
.pricing-container .switcher_container {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: hidden;
  margin-bottom: 20px;
}
.pricing-container .switcher_container .switcher__item {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.5;
}
.pricing-container .switcher_container .switcher__item.active {
  opacity: 1;
}
.pricing-container .switcher_container .switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.pricing-container .switcher_container .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.pricing-container .switcher_container .switch input:checked + .slider {
  background-color: #5cc971;
}
.pricing-container .switcher_container .switch input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}
.pricing-container .switcher_container .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 9999px;
  overflow: hidden;
}
.pricing-container .switcher_container .switch .slider::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 9999px;
  filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.06)) drop-shadow(0px 3px 8px rgba(0, 0, 0, 0.15));
}

.templates_holder.has_space,
.event-page.has_space {
  padding: 152px 0;
}
.templates_holder.has_space_top,
.event-page.has_space_top {
  padding-top: 152px;
}
.templates_holder .breadcrumbs,
.event-page .breadcrumbs {
  margin-bottom: 20px !important;
}
.templates_holder.no_pad_bottom,
.event-page.no_pad_bottom {
  padding-bottom: 0;
}
.templates_holder.single,
.event-page.single {
  padding-top: 0;
}
.templates_holder.single h3,
.templates_holder.single h1,
.event-page.single h3,
.event-page.single h1 {
  font-size: 40px;
  line-height: 52px;
  margin-bottom: 64px;
}
.templates_holder .tags_container,
.event-page .tags_container {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.templates_holder .tags_container.mobile,
.event-page .tags_container.mobile {
  display: none;
}
.templates_holder .tags_container .tag,
.event-page .tags_container .tag {
  border-radius: 6px;
  background-color: #f5f5f6;
  position: relative;
}
.templates_holder .tags_container .tag.more:hover .more_tags,
.event-page .tags_container .tag.more:hover .more_tags {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}
.templates_holder .tags_container .tag .more_tags,
.event-page .tags_container .tag .more_tags {
  padding-top: 20px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 20px;
}
.templates_holder .tags_container .tag .more_tags .more_tags_inner,
.event-page .tags_container .tag .more_tags .more_tags_inner {
  background-color: #fff;
  padding: 24px;
  border-radius: 6px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1), 0px -3px 4px -2px rgba(0, 0, 0, 0.06);
}
.templates_holder .tags_container .tag .more_tags .more_tags_inner .tag_link,
.event-page .tags_container .tag .more_tags .more_tags_inner .tag_link {
  margin-bottom: 16px;
}
.templates_holder .tags_container .tag .more_tags .more_tags_inner .tag_link:last-child,
.event-page .tags_container .tag .more_tags .more_tags_inner .tag_link:last-child {
  margin-bottom: 0;
}
.templates_holder .tags_container .tag .more_tags .more_tags_inner .tag_link a,
.event-page .tags_container .tag .more_tags .more_tags_inner .tag_link a {
  font-size: 14px;
  line-height: 20px;
  color: #000000;
  font-weight: 400;
  padding: 0;
}
.templates_holder .tags_container .tag .more_tags .more_tags_inner .tag_link a:hover,
.event-page .tags_container .tag .more_tags .more_tags_inner .tag_link a:hover {
  opacity: 0.5;
}
.templates_holder .tags_container .tag.active,
.event-page .tags_container .tag.active {
  background-color: #000000;
}
.templates_holder .tags_container .tag.active a,
.event-page .tags_container .tag.active a {
  color: #fff;
}
.templates_holder .tags_container .tag:hover,
.event-page .tags_container .tag:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.templates_holder .tags_container .tag:hover a,
.event-page .tags_container .tag:hover a {
  color: #000000;
}
.templates_holder .tags_container .tag a,
.event-page .tags_container .tag a {
  text-decoration: none;
  color: #7b7b7b;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  display: block;
  padding: 8px 16px;
  white-space: nowrap;
}
.templates_holder .pagination_container,
.event-page .pagination_container {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.templates_holder .pagination_container a,
.event-page .pagination_container a {
  font-size: 14px;
  color: #000000;
  text-decoration: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 40px;
}
.templates_holder .pagination_container a:hover,
.event-page .pagination_container a:hover {
  opacity: 0.5;
}
.templates_holder .pagination_container span.current,
.event-page .pagination_container span.current {
  color: #fff;
  width: 40px;
  height: 40px;
  background-color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 40px;
  font-size: 14px;
}
.templates_holder h3,
.templates_holder h1,
.event-page h3,
.event-page h1 {
  font-size: 28px;
  line-height: 40px;
  margin-bottom: 20px;
}
.templates_holder .templates_container,
.event-page .templates_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 56px;
}
.templates_holder .templates_container .template_item.hovered h4 a,
.event-page .templates_container .template_item.hovered h4 a {
  color: #000000;
  opacity: 0.5;
}
.templates_holder .templates_container .template_item .img_holder,
.event-page .templates_container .template_item .img_holder {
  position: relative;
  height: 286px;
  background-repeat: no-repeat;
  background-position: bottom;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 20px;
  background-color: #f9f9f9;
  background-size: contain;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1), 0px -3px 4px -2px rgba(0, 0, 0, 0.06);
}
.templates_holder .templates_container .template_item .img_holder a,
.event-page .templates_container .template_item .img_holder a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 10;
}
.templates_holder .templates_container .template_item .img_holder .top_bar,
.event-page .templates_container .template_item .img_holder .top_bar {
  position: absolute;
  width: 100%;
  top: 0;
}
.templates_holder .templates_container .template_item .img_holder .main_image img,
.event-page .templates_container .template_item .img_holder .main_image img {
  height: calc(100% - 30px);
  width: 100%;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.templates_holder .templates_container .template_item p,
.event-page .templates_container .template_item p {
  font-size: 18px;
  line-height: 28px;
  margin-top: 8px;
  font-weight: 400;
}
.templates_holder .templates_container .template_item h4,
.event-page .templates_container .template_item h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}
.templates_holder .templates_container .template_item h4 a,
.event-page .templates_container .template_item h4 a {
  text-decoration: none;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
  font-weight: 500;
  opacity: 1;
}

h2.title_lg {
  font-size: 64px;
  line-height: 80px;
}

.scroll-container {
  margin-bottom: 152px;
  margin-top: 152px;
  padding-top: 80px;
}
.scroll-container.no_margin {
  margin-top: 0;
}
.scroll-container.grey_bg {
  background-color: #f5f5f6;
}
.scroll-container.black_bg {
  background-color: #000000;
}
.scroll-container.black_bg h2 {
  color: #fff;
}
.scroll-container.black_bg .fixed-menu__container {
  background: #4e4e4e;
}
.scroll-container.black_bg .fixed-menu__container .highlight {
  background-color: #fff;
}
.scroll-container.black_bg .fixed-menu__container .fixed-menu__item {
  color: rgba(255, 255, 255, 0.7);
}
.scroll-container.black_bg .fixed-menu__container .fixed-menu__item.active {
  color: #000;
}

.event-carousel.has-space {
  padding-bottom: 0px !important;
}
.event-carousel.has-space .show_case_items {
  margin-bottom: 0px !important;
}

.black_bg {
  background-color: #000;
}

.two-rows .opened-cards {
  padding: 0px;
}

.opened-cards.grey_bg .opened-cards__item-info img {
  padding: 5px;
  box-sizing: border-box;
}

.horizontal-blocks.grey_background_items {
  padding-bottom: 30px;
}
.horizontal-blocks.grey_background_items.no-padding {
  padding: 0;
}

.support-section.space_top {
  margin-top: 152px;
}

.use_cases_container {
  margin-top: 150px;
}
.use_cases_container h2 {
  font-size: 40px;
  line-height: 52px;
  margin-bottom: 64px;
  text-align: center;
}
.use_cases_container .items_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.use_cases_container .items_wrapper .item {
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1), 0px -3px 4px -2px rgba(0, 0, 0, 0.06);
}
.use_cases_container .items_wrapper .item .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  opacity: 0.3;
}
.use_cases_container .items_wrapper .item .icon img {
  width: 100%;
}
.use_cases_container .items_wrapper .item .desc {
  color: rgba(0, 0, 0, 0.8);
  font-size: 18px;
  line-height: 28px;
}

.support_container {
  padding: 64px 0 64px 64px;
  border-radius: 32px;
  background: #f5f5f6;
  position: relative;
  overflow: hidden;
  margin-bottom: 150px;
  height: 480px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.support_container .img_wrapper {
  position: absolute;
  right: -64px;
  bottom: -64px;
  width: 720px;
  height: 480px;
}
.support_container .img_wrapper.smaller_size {
  width: 546px;
  height: 363px;
  right: 62px;
  bottom: 60px;
}
.support_container .img_wrapper.smaller_size img {
  max-width: 100%;
}
.support_container .img_wrapper img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
  border-radius: 16px;
  max-width: 720px;
}
.support_container .content {
  padding: 50px 0;
}
.support_container .content.smaller_size {
  padding: 76px 0;
}
.support_container .content h3 {
  font-size: 40px;
  line-height: 52px;
  margin-bottom: 48px;
}
.support_container .content .buttons-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 0;
}
.support_container .content .buttons-container .button_container {
  margin-top: 0;
}

.posts_section {
  padding: 152px 0 0 0;
}
.posts_section h2 {
  font-size: 40px;
  line-height: 52px;
  margin-bottom: 64px;
}
.posts_section .posts_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.posts_section .posts_grid .post_card {
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1), 0px -3px 4px -2px rgba(0, 0, 0, 0.06);
  text-decoration: none;
}
.posts_section .posts_grid .post_card:visited {
  color: #000000;
}
.posts_section .posts_grid .post_card .tag {
  padding: 8px 12px;
  border-radius: 9999px;
  background: rgba(51, 57, 241, 0.1);
  color: rgba(51, 57, 241, 0.8);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 32px;
  display: inline-block;
}
.posts_section .posts_grid .post_card h5 {
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  height: 120px;
  color: #000000;
}
.posts_section .posts_grid .post_card p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 24px;
}
.posts_section .posts_grid .post_card .card_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.posts_section .posts_grid .post_card .card_footer .date {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.posts_section .posts_grid .post_card .card_footer .link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.08), 0px -3px 4px -2px rgba(0, 0, 0, 0.04);
}
.posts_section .posts_grid .post_card .card_footer .link a {
  display: block;
}
.posts_section .posts_grid .post_card .card_footer .link a img {
  width: 24px;
  height: 24px;
}

.no-bottom-padding {
  padding-bottom: 0 !important;
}

@keyframes marquee-inner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2740px);
  }
}
@keyframes marquee-inner-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(2740px);
  }
}
