/** Shopify CDN: Minification failed

Line 754:41 The "+" operator only works if there is whitespace on both sides

**/


/* CSS from section stylesheet tags */
.tp-accordions-2 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .tp-accordions-2 {
    background-color: var(--tp-background, #000000);
  }

  .tp-accordions-2 a { color: inherit; }

  .tp-accordions-2 .tp__container {
    max-width: calc(var(--tp-section-width) + 40px);
    padding-block: var(--tp-padding-block, 30px);
    gap: var(--tp-container-gap, 40px);
    width: 100%;
    padding-inline: 20px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
  }

  .tp-accordions-2 .tp__section-heading {
    font-weight: var(--tp-section-heading-weight, 600);
    font-size: var(--tp-section-heading-size , 32px);
    text-align: var(--tp-heading-alignment, left);
    color: var(--tp-section-heading-color, #FFFFFF);
    flex: 1 0 100%;
    width: 100%;
  }

  .tp-accordions-2 .tp__content {
    gap: var(--tp-accordions-gap, 20px);
    flex-direction: column;
    width: 100%;
    flex: 1 0 100%;
    display: flex;
  }

  .tp-accordions-2 .tp__accordion-item {
    border-bottom: var(--tp-accordion-border, 1px solid #CCCCCC);
    padding-block: var(--tp-accordion-item-padding-block, 15px);
    background-color: var(--tp-accordion-background-color, #000000);
    transition: height 0.3s ease;
    overflow: hidden;
    display: flex;
    gap: 10px;
  }

  .tp-accordions-2 .tp__accordion-item:last-child {
    border-bottom: none;
  }

  .tp-accordions-2 .tp__accordion-button {
    font-weight: var(--tp-accordion-heading-weight, 400);
    font-size: var(--tp-accordion-heading-size, 18px);
    color: var(--tp-accordion-heading-color, #FFFFFF);
    justify-content: space-between;
    background-color: transparent;
    font-family: inherit;
    outline: none;
    border: none;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
  }

  .tp-accordions-2 .tp__accordion-icon {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .tp-accordions-2 .tp__accordion-button[aria-expanded="true"] .tp__accordion-icon--plus path:first-child {
    opacity: 0;
  }

  .tp-accordions-2 .tp__accordion-button[aria-expanded="true"] .tp__accordion-icon:not(.tp__accordion-icon--plus) {
    transform: rotate(180deg);
  }

  .tp-accordions-2 .tp__accordion-content {
    font-weight: var(--tp-accordion-description-weight, 400);
    font-size: var(--tp-accordion-description-size, 18px);
    color: var(--tp-accordion-description-color, #FFFFFF);
    width: 100%;
    height: 0;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    overflow: hidden;
    transition: height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  }

  .tp-accordions-2 .tp__accordion-content[aria-hidden="false"] {
    transform: scaleY(1);
    height: auto;
    opacity: 1;
  }

  .tp-accordions-2 .tp__accordion-content-inner {
    padding-block: var(--tp-accordion-description-padding-block, 12px);
    font-weight: var(--tp-accordion-description-weight, 400);
  }

  @media (min-width: 768px) {
    .tp-accordions-2 .tp__container {
      flex-direction: row;
    }

    .tp-accordions-2 .tp__section-heading {
      flex: 1 0 var(--tp-heading-width, 35%);
    }

    .tp-accordions-2 .tp__content {
      flex: 1 0 var(--tp-content-width);
    }
  }
.tp-banner-1 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .tp-banner-1 a {
    color: inherit;
  }

  .tp-banner-1 {
    position: relative;
    font-size: 0;
  }

  .tp-banner-1 .tp__overlay {
    background-color: var(--overlay-color, #000000);
    opacity: var(--overlay-opacity, 0.5);
    position: absolute;
    display: block;
    inset: 0;
  }

  .tp-banner-1 .tp__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  .tp-banner-1 .tp__container {
    padding-block: var(--padding-top, 80px) var(--padding-bottom, 80px);
    max-width: calc(var(--section-width, 1440px) + 40px);
    flex-direction: var(--flex-direction, row);
    gap: var(--container-gap, 50px);
    padding-inline: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
  }

  .tp-banner-1 .tp__play-wrapper {
    border: 1px solid var(--button-bg-color, #FFFFFF);
    padding: 35px;
    border-radius: 50%;
  }

  .tp-banner-1 .tp__play-button {
    background-color: color-mix(in srgb, var(--button-bg-color, #FFFFFF) 37%, transparent);
    width: var(--button-size, 140px);
    position: relative;
    aspect-ratio: 1/1;
    cursor: pointer;
    border: none;
    border-radius: 50%;
  }

  .tp-banner-1 .tp__play-button::after {
    border: 2px dotted var(--button-border-color, #FFFFFF);
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
  }

  .tp-banner-1 .tp__play-button:hover::after {
    animation: rotate 2s linear infinite;
  }

  .tp-banner-1 .tp__play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--button-border-color, #FFFFFF);
    width: 30px;
    height: 30px;
  }

  .tp-banner-1 .tp__play-icon--pause {
    display: none;
  }

  .tp-banner-1 .tp__content {
    max-width: var(--content-max-width, 700px);
    text-align: var(--content-alignment, right);
    width: 100%;
  }

  .tp-banner-1 .tp__heading {
    font-size: var(--heading-size, 75px);
    font-weight: var(--heading-weight, 400);
    color: var(--heading-color, #FFFFFF);
    line-height: 2ex;
    margin: 0;
  }

  .tp-banner-1 .tp__description {
    font-size: var(--description-size, 18px);
    font-weight: var(--description-weight, 300);
    color: var(--description-color, #FFFFFF);
    margin-top: var(--description-top-space, 25px);
    line-height: 3ex;
  }

  @keyframes rotate {
    to {
      transform: rotate(-360deg);
    }
  }
.tp-collection-1 {
		background: var(--tp-background-color, radial-gradient(rgba(137, 143, 239, 1), rgba(120, 196, 245, 1) 100%));
	}

  .tp-collection-1 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

	.tp-collection-1 a {
   color: inherit;
  }

  .tp-collection-1 .tp__container {
    padding-block: var(--tp-padding-top, 52px) var(--tp-padding-bottom, 52px);
    max-width: calc(var(--tp-section-width, 1200px) + 40px);
    padding-inline: 20px;
    margin-inline: auto;
  }
    
  .tp-collection-1 .tp__heading {
    margin-bottom: var(--tp-header-margin-bottom, 30px);
    text-align: var(--tp-heading-alignment, center);
    font-weight: var(--tp-heading-weight, 600 );
    font-size: var(--tp-heading-size, 24px);
    color: var(--tp-heading-color, #ffff);
  }

  .tp-collection-1 .tp__grid {
    grid-template-columns: var(--tp-grid-columns-mobile, 1fr);
    gap: var(--tp-grid-gap, 20px);
    display: grid;
  }

  .tp-collection-1 .tp__grid-item {
    border-radius: var(--tp-collection-border-radius, 20px);
    min-height: var(--tp-item-min-height-mobile, 200px);
    color: var(--tp-item-title-color, #ffff);
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    background-color: #f5f5f5f5;
  }

  .tp-collection-1 .tp__item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .tp-collection-1 .tp__grid-item:hover .tp__item-image {
    transform: scale(1.05);
  }

  .tp-collection-1 .tp__item-overlay {
    background-color: var(--tp-overlay-color, #337db4);
    opacity: var(--tp-overlay-opacity, 0.3);
    transition: opacity 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
  }

  .tp-collection-1 .tp__grid-item:hover .tp__item-overlay {
    opacity: calc(var(--tp-overlay-opacity, 0.3) * 1.2);
  }

  .tp-collection-1 .tp__item-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
  }

  .tp-collection-1 .tp__item-title {
    font-size: var(--tp-item-title-size, 32px);
    font-weight: var(--tp-item-title-weight, 500);
    color: inherit;
    line-height: 1.3;
  }

  @media screen and (min-width: 1024px) {
    .tp-collection-1 .tp__grid {
      grid-template-columns: var(--tp-grid-columns-desktop, 580px 1fr 1fr);
    }

    .tp-collection-1 .tp__grid-item {
      min-height: var(--tp-item-min-height-desktop, 250px);
    }

    .tp-collection-1 .tp__grid-item:nth-child(1) {
      grid-column: 1 / 2;
      grid-row: 1 / 3;
    }

    .tp-collection-1 .tp__grid-item:nth-child(2) {
      grid-column: 2 / 3;
      grid-row: 1 / 2;
    }
    
    .tp-collection-1 .tp__grid-item:nth-child(3) {
      grid-column: 3 / 4;
      grid-row: 1 / 2;
    }

    .tp-collection-1 .tp__grid-item:nth-child(4) {
      grid-column: 2 / 4;
      grid-row: 2 / 3;
    }

    .tp-collection-1 .tp__grid-item:nth-child(1) {
      min-height: calc(var(--tp-item-min-height-desktop, 250px) * 2 + var(--tp-grid-gap, 20px));
    }
  }
.tp-features-4 * {
		margin: 0;
		padding: 0
	}

	.tp-features-4 a {
		color: inherit;
	}

	.tp-features-4 .tp__flex {display: flex;}
	.tp-features-4 .tp__text-left { text-align: left; }
	.tp-features-4 .tp__text-center { text-align: center; }
	.tp-features-4 .tp__text-right { text-align: right; }

	.tp-features-4 .tp__container {
		max-width: var(--tp-section-width, 1440px);
		padding-block: var(--tp-padding-block, 0px 0px);
		flex-direction: column;
		justify-content: space-between;
		margin: 0 auto;
		padding-inline: 20px;
		gap: 60px;
	}

	.tp-features-4 .tp__details {
		max-width: var(--tp-header-width, 560px);
		top: var(--tp-header-sticky-top-space, 0px);
		position: static;
		align-self: flex-start;
	}
	
	.tp-features-4 .tp__heading {
		color: var(--tp-heading-color, #000000);
		font-size: var(--tp-heading-size, 50px);
		font-weight: var(--tp-heading-text-weight, 400);
		margin-bottom: var(--tp-heading-bottom-space, 28px);
		line-height: 1.2;
	}

	.tp-features-4 .tp__description {
		font-size: var(--tp-description-size, 16px);
		font-weight: var(--tp-description-text-weight, 400);
	}

	.tp-features-4 .tp__btn {
		color: var(--tp-button-color, #000000);
		font-size: var(--tp-button-text-size, 16px);
		background-color: var(--tp-button-background-color, #baf67c);
		border-radius: var(--tp-button-border-radius, 10px);
		font-weight: var(--tp-button-text-weight, 700);
		padding: 10px 20px;
		outline: none;
		cursor: pointer;
		transition: all 0.2s ease-in-out;
		text-decoration: none;
		display: inline-block;
		margin-top: var(--tp-heading-bottom-space, 28px);
	}

	.tp-features-4 .tp__btn--fade:hover {opacity: 0.8}
	.tp-features-4 .tp__btn--invert:hover {
		color: var(--tp-button-background-color);
		background-color: var(--tp-button-color);
		border-color: currentColor;
	}

	.tp-features-4 .tp__features {
		gap: var(--tp-features-gap, 16px);
		max-width: 100%;
		flex-wrap: wrap;
	}

	.tp-features-4 .tp__feature {
		background-color: var(--tp-feature-background-color, #f1f1f1);
		padding-block: var(--tp-featured-padding-block, 50px);
		padding-inline: var(--tp-featured-padding-inline, 50px);
		border: 1px solid var(--tp-feature-border-color, #28282a);
		border-radius: var(--tp-feature-border-radius, 24px);
		top: var(--tp-header-sticky-top-space, 0px);
		position: sticky;
		width: 100%;
	}

	.tp-features-4 .tp__feature:nth-child(odd) {
		transform: rotate(1.2deg);
	}

	.tp-features-4 .tp__feature:nth-child(even) {
		transform: rotate(-1.2deg);
	}

	.tp-features-4 .tp__feature h2 {
		font-size: var(--tp-feature-heading-size, 40px);
		font-weight: var(--tp-feature-heading-text-weight, 800);
		color: var(--tp-feature-heading-color, #28282a);
		margin-bottom: 10px;
	}

	.tp-features-4 .tp__feature p {
		font-size: var(--tp-feature-description-size, 16px);
		font-weight: var(--tp-feature-description-text-weight, 400);
		color: var(--tp-feature-description-color, #28282a);
		line-height: 1.5;
		margin-bottom: 5px;
	}

	.tp-features-4 .tp__features-icon svg,img {
		font-size: 0;
		object-fit: contain;
	}

	.tp-features-4 .tp__feature-link {
		color: var(--tp-feature-link-text-color, #28282a);
		font-size: var(--tp-feature-link-text-size, 16px);
		font-weight: var(--tp-feature-link-text-weight, 700);
	}

	@media screen and (min-width: 1100px) {
		.tp-features-4 .tp__details {
			position: var(--tp-header-position, sticky);
		}

		.tp-features-4 .tp__features {
			max-width: var(--tp-features-width, 645px);
			display: flex;
			flex-wrap: wrap;
		}
	}

	@media screen and (min-width: 1024px) {
		.tp-features-4 .tp__container {
			flex-direction: row;
		}
	}

	@media screen and (min-width: 767px) {
		.tp-features-4 .tp__container {
			gap: 30px;
		}

		.tp-features-4 .tp__btn {
			padding: 14px 24px;
		}
	}
.tp-footer-1 * {
    margin: 0;
    padding: 0;
    font-size: 0;
    box-sizing: border-box;
  }

  .tp-footer-1 a {
    color: inherit;
    font-size: inherit;
  }

  .tp-footer-1 {
    background: var(--tp-background, #121212);
    padding-block: var(--tp-padding-block, 60px 60px);
  }

  .tp-footer-1 .tp__container {
    max-width: calc(var(--tp-section-width, 1200px) + 40px);
    padding-inline: 20px;
    margin-inline: auto;
  }

  .tp-footer-1 .tp__main {
    padding-bottom: var(--tp-main-padding-bottom, 30px);
    gap: var(--tp-grid-gap, 40px);
    display: grid;
    grid-template-columns: 1fr;
  }

  .tp-footer-1 .tp__newsletter-title {
    font-size: var(--tp-newsletter-title-size, 18px);
    font-weight: var(--tp-newsletter-title-weight, 700);
    color: var(--tp-newsletter-title-color, #FFFFFF);
    margin-bottom: var(--tp-newsletter-title-margin-bottom, 15px);
  }

  .tp-footer-1 .tp__newsletter-text {
    font-size: var(--tp-newsletter-text-size, 14px);
    font-weight: var(--tp-newsletter-text-weight, 400);
    color: var(--tp-newsletter-text-color, #BFBFBF);
    margin-bottom: var(--tp-newsletter-text-margin-bottom, 20px);
    line-height: 1.5;
  }

  .tp-footer-1 .tp__newsletter-form {
    border-bottom: 1px solid var(--tp-input-border-color, #BFBFBF);
    display: flex;
    align-items: center;
    padding-bottom: 8px;
  }

  .tp-footer-1 .tp__newsletter-input {
    font-size: var(--tp-input-text-size, 14px);
    color: var(--tp-input-text-color, #FFFFFF);
    font-family: inherit;
    background: transparent;
    border: none;
    padding-left: 30px;
    position: relative;
    width: 100%;
    box-shadow: none;
    outline: none;
  }

  .tp-footer-1 .tp__newsletter-input::placeholder {
    color: var(--tp-input-placeholder-color, #A3A3A3);
    opacity: 1;
  }

  .tp-footer-1 .tp__newsletter-input-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
  }

  .tp-footer-1 .tp__newsletter-input-icon path {
    color: var(--tp-input-icon-color, #8D8D8D);
  }

  .tp-footer-1 .tp__newsletter-submit {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
  }

  .tp-footer-1 .tp__newsletter-submit-icon {
    fill: var(--tp-input-icon-color, #8D8D8D);
    width: 20px;
    height: 20px;
  }

  .tp-footer-1 .tp__newsletter-submit-icon path {
    color: var(--tp-input-icon-color, #8D8D8D);
  }

  .tp-footer-1 .tp__links {
    gap: var(--tp-links-gap, 30px);
    justify-content: flex-start;
    display: flex;
    flex-wrap: wrap;
  }

  .tp-footer-1 .tp__link-list-title {
    font-size: var(--tp-link-title-size, 16px);
    font-weight: var(--tp-link-title-weight, 700);
    color: var(--tp-link-title-color, #FFFFFF);
    margin-bottom: var(--tp-link-title-margin-bottom, 14px);
  }

  .tp-footer-1 .tp__link-list {
    list-style: none;
    padding: 0;
  }

  .tp-footer-1 .tp__link-item {
    margin-bottom: var(--tp-link-item-margin-bottom, 10px);
  }

  .tp-footer-1 .tp__link {
    font-size: var(--tp-link-text-size, 14px);
    font-weight: var(--tp-link-text-weight, 400);
    color: var(--tp-link-text-color, #BFBFBF);
    text-decoration: none;
  }

  .tp-footer-1 .tp__bottom {
    padding-top: var(--tp-bottom-padding-top, 20px);
    gap: var(--tp-bottom-gap, 20px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .tp-footer-1 .tp__social-icons {
    margin-bottom: var(--tp-social-margin-bottom, 15px);
    gap: var(--tp-social-gap, 15px);
    display: flex;
  }

  .tp-footer-1 .tp__social-icon {
    width: 24px;
    height: 24px;
  }

  .tp-footer-1 .tp__social-icon path {
    fill: var(--tp-social-icon-color, #FFFFFF);
  }

  .tp-footer-1 .tp__copyright {
    font-size: var(--tp-copyright-text-size, 12px);
    font-weight: var(--tp-copyright-text-weight, 400);
    color: var(--tp-copyright-text-color, #BFBFBF);
    text-align: left;
    max-width: 100%;
  }

  .tp-footer-1 .tp__copyright-link {
    margin-inline: 5px;
    text-decoration: none;
  }

  .tp-footer-1 .tp__payment-icons {
    gap: var(--tp-payment-gap, 8px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .tp-footer-1 .tp__payment-icon svg {
    width: 100%;
    height: 100%;
    border: 1px solid var(--tp-payment-border-color, #E0E0E0);
    border-radius: 4px;
  }

  @media (min-width: 768px) {
    .tp-footer-1 .tp__main {
      grid-template-columns: var(--tp-newsletter-width, 410px) 1fr;
      padding-bottom: var(--tp-main-padding-bottom-desktop, 40px);
      gap: var(--tp-grid-gap-desktop, 80px);
    }

    .tp-footer-1 .tp__links {
      gap: var(--tp-links-gap-desktop);
      justify-content: flex-end;
      flex-wrap: nowrap;
    }

    .tp-footer-1 .tp__bottom {
      padding-top: var(--tp-bottom-padding-top-desktop, 30px);
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }

    .tp-footer-1 .tp__social-icons {
      order: 1;
      margin-bottom: 0;
    }

    .tp-footer-1 .tp__copyright {
      max-width: 80%;
      order: 2;
    }

    .tp-footer-1 .tp__payment-icons {
      order: 3;
      justify-content: flex-end;
    }
  }
.tp-footer-3 * {
		padding: 0;
		margin: 0;
		box-sizing: border-box;
	}

	.tp-footer-3 .tp__logo-wrapper a {
		color: var(--tp-input-subheading-color, #FFFFFF);
		font-size: var(--tp-logo-font-size, 50px);
		text-decoration: none;
	}

	.tp-footer-3 a {
		color: inherit;
	}

	.tp-footer-3 .tp__button--fade:hover { opacity: 0.8; }
  .tp-footer-3 .tp__button--invert:hover {
    color: var(--tp-button-background-color) !important;
    background-color: var(--tp-button-text-color) !important;
	}

	.tp-footer-3 .tp__container {
		max-width: calc(var(--tp-section-width)+ 100px, 1990px);
		background: var(--tp-background, #00422b);
		border-radius: var(--tp-border-radius, 20px);
		width: 100%;
		display: flex;
		flex-direction: column;
		padding-inline: 0;
		overflow: hidden;
	}

	.tp-footer-3 .tp__content {
		padding-inline: 20px;
		max-width: 100%;
		margin: 0 auto;
	}

	.tp-footer-3 .tp__image-placeholder {
		width: var(--tp-logo-width, 100px);
		background-color: #F4F4F4;
	}
 
	.tp-footer-3 .contact-form span {
		color: var(--tp-input-subheading-color, #FFFFFF);
		font-size: var(--tp-input-subheading-size, 16px);
		letter-spacing: 0.24px;
		margin-bottom: 10px;
		display: block;
	}

	.tp-footer-3 .tp__input-wrapper {
		padding-block: var(--tp-input-container-padding, 60px);
    display: flex;
		flex-direction: column;
    justify-content: space-between;
		align-items: center;
		gap: 20px;
	}

	.tp-footer-3 .tp__form-input-wrapper {
		display: flex;
		flex-direction: column;
		gap: 15px;
		flex-wrap: nowrap;
	}

	.tp-footer-3 .contact-form {
		max-width: 423px;
		width: 100%;
	}

	.tp-footer-3 .tp__input {
		font-size: var(--tp-input-text-size, 16px);
		color: var(--tp-form-text-color, #111111);
		background-color: var(--tp-input-background-color, #ffffff);
		border-radius: var(--tp-form-border-radius, 30px);
		border: none;
		outline: none;
		padding: 20px;
		width: 100%;
		max-width: 100%;
	}

	.tp-footer-3 .tp__input::placeholder {
		color: var(--tp-form-placeholder-text-color, #ffffff)
	}

	.tp-footer-3 .tp__button {
		background-color: var(--tp-button-background-color, #ce4800);
		color: var(--tp-button-text-color, #ffffff);
		font-size: var(--tp-button-text-size, 20px);
		border-radius: var(--tp-button-border-radius, 30px);
		outline: none;
		border: none;
		cursor: pointer;
		padding-block: 10px;
		padding-inline: 30px;
		transition: all 0.3s ease-in-out;
	}

	.tp-footer-3 .tp__content-wrapper {
		background-color: var(--tp-links-container-background-color, #ffffff);
		border-radius: var(--tp-content-container-border-radius, 20px);
		padding: 30px;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 30px;
		max-width: 709px;
		width: 100%;
		flex: none;
	}

	.tp-footer-3 .tp__contentbox {
		padding-bottom: var(--tp-footer-content-space-below, 50px);
		gap: var(--tp-space-between-content, 20px);
		display: flex;
		flex-wrap: wrap;
	}

	.tp-footer-3 .tp__links {
		display: flex;
		gap: 10px;
	}

	.tp-footer-3 .tp__link-list-wrapper {
		list-style-type: none;
	}

	.tp-footer-3 .tp__link-title {
		font-size: var(--tp-link-title-size, 16px);
		color: var(--tp-link-title-color, #00422b);
		font-weight: var(--tp-link-title-text-weight, 600);
		margin-bottom: var(--tp-title-space-bottom, 20px);
	}

	.tp-footer-3 .tp__links-wrapper {
		gap: var(--tp-space-between-links);
		display: flex;
		flex-direction: column;
	}

	.tp-footer-3 .tp__links-wrapper li {
		font-size: 0;
	}

	.tp-footer-3 .tp__links-wrapper a {
		text-decoration: none;
	}

	.tp-footer-3 .tp__link {
		font-size: var(--tp-link-text-size, 14px);
		color: var(--tp-link-color, #101010);
		font-weight: var(--tp-link-text-weight, 400);
		text-decoration: none;	
	}

	.tp-footer-3 .tp__payments-wrapper {
		background-color: var(--tp-payments-container-background-color, #e0ebf7);
		border-radius: var(--tp-payments-container-border-radius, 20px);
		padding: 40px;
		display: flex;
		justify-content: flex-start;
		flex-direction: column;
		flex: 1;
	}

	.tp-footer-3 .tp__socials-wrapper {
		background-color: var(--tp-socials-wrapper-background-color, #FFFFFF);
		border-radius: var(--tp-socials-wrapper-border-radius, 20px);
		display: flex;
		flex-direction: column;
		align-self: flex-start;
		gap: 20px;
		padding: 10px;
	}

	.tp-footer-3 .tp__socials-wrapper a {
		height: 20px;
		width: 20px;
	}

	.tp-footer-3 .tp__social-icon a svg {
		width: 22px;
		height: 22px;
	}

	.tp-footer-3 .tp__payments-icons {
		display: flex;
		justify-content: flex-start;
		gap: 10px;
		flex-wrap: wrap;
		margin-top: auto;
	}

	.tp-footer-3 .tp__payments-icons svg {
		width: 44px;
		height: 27px;
	}

	.tp-footer-3 .tp__legal {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 10px;
	}

	.tp-footer-3 .tp__legal a {
		text-decoration: none;
	}

	.tp-footer-3 .tp__copyright-wrapper {
		max-width: calc(var(--tp-section-width, 1440) + 100px);
		background-color: var(--tp-copyright-wrapper-background-color, #ce4800);
		color: var(--tp-copyright-color, #FFFFFF);
		font-size: var(--tp-copyright-text-size, 13px);
		text-align: center;
		margin: 0 auto;
		padding: 20px;
		text-align: center;
	}

	.tp-footer-3 .tp__copyright-inner {
		display: flex;
    justify-content: space-between;
		flex-direction: column;
		max-width: 100%;
    width: 100%;
		margin-inline: auto;
	}

	.tp-footer-3 .tp__copyright {
		margin-bottom: var(--tp-space-below-copyright-text)
	}

	.tp-footer-3 .tp_back_to_top {
		margin-top: var(--tp-back-top-space-above, 30px);
		background-color: var(--tp-back-to-top-background-color, #ce4800);
		border-radius: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 8px;
		width: 40px;
		height: 40px;
	}

	@media screen and (min-width: 767px) {
		.tp-footer-3 .tp__content {
			padding-inline: 50px;
			max-width: 1540px;
		}

		.tp-footer-3 .tp__socials-wrapper {
			flex-direction: column;
		}

		.tp-footer-3 .tp__contentbox {
			justify-content: space-between;
			flex-wrap: nowrap;
			gap: 25px
		}

		.tp-footer-3 .tp__input-wrapper {
			flex-direction: row;
		}

		.tp-footer-3 .tp__form-input-wrapper {
			flex-direction: row;
			flex-wrap: wrap;
		}

		.tp-footer-3 .tp__payments-wrapper {
			flex: 1 0 40%;
		}

		.tp-footer-3 .tp__input {
			max-width: 250px;
		}

		.tp-footer-3 .tp__content-wrapper {
			flex-direction: row;
			flex: 1 0 50%;
		}

		.tp-footer-3 .tp__copyright-inner {
			flex-direction: row;
			max-width: 1540px;
      width: 100%;
      padding-inline: 50px;
		}

		.tp-footer-3 .tp__copyright {
			margin-bottom: 0
		}
	}
.tp-footer-4 * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  .tp-footer-4 a { color: inherit; }

  .tp-footer-4 .tp-footer {
    background: var(--tp-background-color, #000000);
    color: var(--tp-text-color, #FFFFFF);
    line-height: var(--tp-line-height, 1.6);
    padding-block: var(--tp-section-padding-block, 64px 64px);
  }

  .tp-footer-4 .tp-footer__container {
    max-width: calc(var(--tp-section-width, 1440px) + 20px * 2);
    gap: var(--tp-column-gap, 64px);
    width: 100%;
    padding-inline: 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .tp-footer-4 .tp-footer__column {
    gap: var(--tp-link-gap, 8px);
    display: flex;
    flex-direction: column;
  }

  .tp-footer-4 .tp-footer__column:nth-child(2) {
    /* grid-column: 1 / 3;
    grid-row: 1; */
    text-align: center;
  }

  .tp-footer-4 .tp-footer__links {
    /* grid-column: 1;
    grid-row: 3; */
    align-items: flex-start;
    text-align: left;
  }

  .tp-footer-4 .tp-footer__column:nth-child(3) {
    /* grid-column: 2;
    grid-row: 3; */
    align-items: flex-end;
    text-align: right;
  }

  .tp-footer-4 .tp-footer__links a,
  .tp-footer-4 .tp-footer__column:nth-child(3) a {
    font-size: var(--tp-link-text-size, 14px);
    font-weight: var(--tp-link-text-weight, 400);
    color: var(--tp-link-text-color, #FFFFFF);
    transition: opacity 0.2s ease;
    text-decoration: none;
    width: 100%;
    display: block;
  }

  .tp-footer-4 .tp-footer__column:nth-child(3) a {
    text-align: right;
  }

  .tp-footer-4 .tp-footer__links a:hover,
  .tp-footer-4 .tp-footer__column:nth-child(3) a:hover {
    text-decoration: underline;
    opacity: 0.7;
  }

  .tp-footer-4 .tp-footer__copyright {
    font-size: var(--tp-copyright-text-size, 18px);
    font-weight: var(--tp-copyright-text-weight, 400);
    color: var(--tp-copyright-text-color, #FFFFFF);
  }


  .tp-footer-4 .tp-footer__logo {
    width: var(--tp-logo-width, 100px);
    height: 100%;
  }

  .tp-footer-4 .tp-footer__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .tp-footer-4 .tp-footer__logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 28px;
    color: #666;
  }

  .tp-footer-4 .tp-footer__bottom {
    max-width: calc(var(--tp-section-width, 1440px) + 20px * 2);
    margin: var(--tp-footer-bottom-margin, 16px) auto 0 auto;
    grid-column: 1 / 3;
    grid-row: 4;
    padding-inline: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .tp-footer-4 .tp-footer__bottom:not(:has(.tp-footer__socials)) {
    justify-content: center;
  }

  .tp-footer-4 .tp-footer__socials {
    gap: var(--tp-social-gap, 12px);
    display: flex;
  }

  .tp-footer-4 .tp-footer__socials a svg {
    color: var(--tp-link-text-color, #FFFFFF);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tp-footer-4 .tp-footer__socials svg {
    width: var(--tp-social-size, 24px);
    height: var(--tp-social-size, 24px);
  }

  @media (min-width: 768px) {
    .tp-footer-4 .tp-footer__column {
      align-items: flex-start;
    }

    .tp-footer-4 .tp-footer__column:nth-child(2) {
      grid-column: unset;
      grid-row: unset;
      text-align: left;
    }

    .tp-footer-4 .tp-footer__links {
      grid-column: unset;
      grid-row: unset;
      align-items: flex-start;
      text-align: left;
    }

    .tp-footer-4 .tp-footer__column:nth-child(3) {
      grid-column: unset;
      grid-row: unset;
      align-items: flex-start;
      text-align: left;
    }

    .tp-footer-4 .tp-footer__bottom {
      grid-column: unset;
      grid-row: unset;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      text-align: left;
      gap: 20px;
    }

    .tp-footer-4 .tp-footer__bottom:not(:has(.tp-footer__socials)) {
      justify-content: center;
    }
  }
.tp-ugc-videos-1 * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  .tp-ugc-videos a { color: inherit; }

  .tp-ugc-videos-1 .tp-ugc-videos-1__container {
    max-width: calc(var(--tp-section-width, 1200px) + 20px * 2);
    gap: var(--tp-content-spacing, 30px);
    padding-block: var(--tp-section-padding-block, 60px 60px);
    background: var(--tp-background-color, #FFFFFF);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    width: 100%;
    padding-inline: 20px;
  }

  .tp-ugc-videos-1 .tp-ugc-videos-1__heading {
    font-size: var(--tp-heading-size, 48px);
    font-weight: var(--tp-heading-weight, 600);
    color: var(--tp-heading-color, #000000);
    text-align: var(--tp-text-alignment, center);
    line-height: 1.2;
  }

  .tp-ugc-videos-1 .tp-ugc-videos-1__grid {
    gap: var(--tp-grid-gap, 20);
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .tp-ugc-videos-1 .tp-ugc-videos-1__video-card {
    border-radius: var(--tp-card-radius, 8px);
    height: var(--tp-video-height, 550px);
    position: relative;
    overflow: hidden;
  }

  .tp-ugc-videos-1 .tp-ugc-videos-1__thumbnail {
    height: var(--tp-video-height, 550px);
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .tp-ugc-videos-1 .tp-ugc-videos-1__video,
  .tp-ugc-videos-1 .tp-ugc-videos-1__video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .tp-ugc-videos-1 .tp-ugc-videos-1__title {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding-bottom: var(--tp-title-padding, 14px);
    font-size: var(--tp-video-title-size, 20px);
    font-weight: var(--tp-title-weight, 600);
    color: var(--tp-title-color, #FFFFFF);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
  }

  .tp-ugc-videos-1 .tp-ugc-videos-1__carousel-container {
    position: relative;
    padding: 0;
  }

  .tp-ugc-videos-1 .tp-ugc-videos-1__arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 16px;
    position: static;
  }

  .tp-ugc-videos-1 .swiper-button-next,
  .tp-ugc-videos-1 .swiper-button-prev {
    width: 40px;
    height: 40px;
    margin: 0;
    box-shadow: none;
    position: static;
  }

  .tp-ugc-videos-1 .swiper-button-next svg,
  .tp-ugc-videos-1 .swiper-button-prev svg {
    width: 31px;
    height: 9px;
    display: block;
  }

  .tp-ugc-videos-1 .swiper-button-next svg path,
  .tp-ugc-videos-1 .swiper-button-prev svg path {
    fill: var(--tp-carousel-color, #000000);
  }

  .tp-ugc-videos-1 .swiper-button-next::after,
  .tp-ugc-videos-1 .swiper-button-prev::after {
    display: none;
  }

  .tp-ugc-videos-1 .tp-ugc-videos-1__grid.no-mobile-carousel {
    display: flex;
    flex-direction: column;
    gap: var(--tp-grid-gap, 20px);
    width: 100%;
  }

  .tp-ugc-videos-1 .tp-ugc-videos-1__grid.no-mobile-carousel .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--tp-grid-gap, 20px);
    width: 100%;
  }

  .tp-ugc-videos-1 .tp-ugc-videos-1__grid.no-mobile-carousel .swiper-slide {
    width: 100%;
    margin-right: 0;
  }

  .tp-ugc-videos-1 .tp-ugc-videos-1__grid.no-mobile-carousel + .tp-ugc-videos-1__arrows {
    display: none;
  }

  @media (min-width: 601px) {
    .tp-ugc-videos-1 .tp-ugc-videos-1__arrows {
      position: absolute;
      top: 50%;
      left: -64px;
      right: -64px;
      transform: translateY(-50%);
      justify-content: space-between;
      margin-top: 0;
    }

    .tp-ugc-videos-1 .swiper-button-next,
    .tp-ugc-videos-1 .swiper-button-prev {
      border-radius: var(--tp-carousel-border-radius, 30%);
      width: 48px;
      height: 48px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
  }

  @media (min-width: 1024px) {
    .tp-ugc-videos-1 .tp-ugc-videos-1__grid {
      grid-template-columns: repeat(var(--tp-columns-desktop, 4), 1fr);
    }
  }