@font-face {
  font-family: 'Oxygen';
  src: url('../fonts/Oxygen-Regular.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Fira';
  src: url('../fonts/FiraSans-SemiBold.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.ttf') format('truetype'); /* Corrected format */
  font-display: swap;
}

@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype'); /* Corrected format */
  font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: Nunito Sans,sans-serif;font-size: 1.15rem;line-height: 1.9rem;}
body { font-family: Arial, sans-serif; }

/* top bar start */

.topbar {
  display: flex;
  /*! flex-direction: column; */
  width: 100%;
  background-color: #fff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
  font-family: 'Oxygen';
  color: #000;
  /*! border-bottom: 1px solid #000; */
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  padding: 1.15rem 0;
  justify-content: center;
  align-items: flex-start;
}

.topbar a {
  color: #000;
  text-decoration: none;
  font-size: 2.75rem;
  padding:0 0 5rem 1rem;
  font-family: Bebas Neue,sans-serif;
  font-size: 3rem;
  letter-spacing: 0.1rem;
}

.topbar a:hover {
  color: #6e6e6e;
  transition: 0.5s ease;
}

.topbar p {
  width: 100%;
  margin: 5px 0;
  line-height: normal;
  font-size: 1.1rem;
}

.topbar p.justify {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 0;
  align-items: center;
}

.topbar p.justify a {
  padding: 0;
  margin: 2rem 0;
  font-size: 2.75rem;
  font-weight: bold;
  text-align: center;
  line-height: 2.75rem;
}

.topbar .socialicons {
  display: flex;
  padding: 1rem 0 0 2rem;
  color: #000;
  font-size: 12px;
  background-color: #fff;
  cursor: pointer;
  /*! transition: 0.5s ease; */
  /*! align-items: baseline; */
  position: absolute;
  left: 0;
  /*! padding-right: 10%; */
}

.topbar .socialicons a {
  padding-bottom: 0;
}

.topbar .socialicons img {
  display: flex;
  width: 2rem;
  margin: 0 5px;
}

/* Navigation Styles */
.navbar { background-color: #fff; padding: 0px 40px; }
.navbar ul { list-style: none; display: flex; align-items: center; }
.navbar li { padding: 0 0.1rem; }
.navbar li.signet {
margin-right: 0.5rem;
}
div.signet {
  display: none;
}
.navbar a { text-decoration: none; color: #333; }

.navbar a:hover { color: #f00; }

.columnacc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-left: 2px solid black;
  margin-left: 2rem;
  padding: 0 1rem;
}

  /* Mega Menu Styles */
  .mega-menu {
    display: none;
    position: absolute;
    width: 100%;
    background-color: #fff;
    padding: 0 0.5rem 0 0.5rem;
    box-shadow: 1px 0 16px rgba(0,0,0,0.1), /* Right shadow */ -1px 0 16px rgba(0,0,0,0.1), /* Left shadow */ 0 1px 16px rgba(0,0,0,0.1); /* Bottom shadow */
    left:0;
    margin-top:3.25rem;
  }

  .mega-menu a {
    padding:0;

  }

  .mega-menu a:hover {
    color: #f00;
  }

    .navbar li:hover .mega-menu { 
      display: block; 
    }

    .columns { 
      display: flex; justify-content: space-between; 
    }

    .column {
      flex-basis: fit-content;
      padding-bottom: 0.5rem;
     }
    
    .column_more {
      /* max-width: 17.5%; */
      min-width: 19%;
      text-align: center;
      padding: 0 1rem 0.5rem 0;
     }

     .column_more h3 {
      padding-top: 1.25rem;
      margin-bottom: 0.5rem;
      margin-top: 0;
      font-size: 100%;
     }

     .column_more img {
      box-shadow: 1px 0 16px rgba(0,0,0,0.1), -1px 0 16px rgba(0,0,0,0.1), 0 1px 16px rgba(0,0,0,0.1);
      border-radius: 10%;
      max-width: 100%;
      max-height: 300px;
    }

    .column_more img:hover {
      max-width: 98%;
      max-height: 294px;
    }

     .column_history {
      max-width: 30%;
      /* min-width: 30%; */
      text-align: center;
      padding-bottom: 0.5rem;
     }

     .column_history h3 {
      padding-top: 1.25rem;
      margin-bottom: 0.5rem;
      margin-top: 0;
      font-size: 100%;
     }
    
     .column_history p {
      font-size: 1rem;
      line-height: normal;
    }

    .column_history img {
      max-width: 100%;
      max-height: 300px;
      border-radius: 10%;
      box-shadow: 1px 0 16px rgba(0,0,0,0.1), -1px 0 16px rgba(0,0,0,0.1), 0 1px 16px rgba(0,0,0,0.1);
    }

    .column_history img:hover {
      max-width: 98%;
      max-height: 294px;
    }
    
    .column h3 {
      padding-top: 0.5rem;
      margin-bottom: 0.5rem;
      margin-top: 0;
    }

    .column img {
    max-width: 100%;
    max-height: 300px;
  }
  
  .column img:hover {
    width: 98%;
    max-height: 294px;
  }

  .column:hover {
    color: #f00;
    transition: 0.5s ease;
  }

.topbar .firstbar {
  display: flex;
  font-size: 12px;
  position: absolute;
  right: 0;
  padding: 1rem 5% 0 0;
}

.topbar .item_black {
  /* padding: 5px 10px 0px 10%; */
  display: flex;
  font-size: 12px;
}

.item_black .item {
  cursor: pointer;
  padding: 0px 10px 0px 0px;
  transition: 0.5s ease;
}

.item_black .item:hover {
  color: white;
  transition: 0.5s ease;
}

.firstbar .item_big {
  flex-grow: 1;
}

.firstbar .item_triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 33px 0;
  border-color: transparent #EB161E transparent transparent;
}

.topbar .item_red {
  padding: 1rem 7rem 0 0;
  color: #000;
  font-size: 12px;
  background-color: #fff;
  cursor: pointer;
  transition: 0.5s ease;
  display: flex;
  align-items: baseline;
  position: absolute;
  right: 0;
  }

.item_red .spacer {
  width: 30px;
}

.redHoverSelect {
  background: #fff;
  border: none;
  color: #000;
  position: relative;
  font-family: Bebas Neue,sans-serif;
  -webkit-appearance: none;
  appearance: none;
  padding: 0.5rem 0 0 1%;
  cursor: pointer;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  width: 2.75rem;
}

.redHoverSelect select {
  display: none;
  -webkit-appearance: none;
  appearance: none;
}

.redHoverSelect option {
  font-family: Bebas Neue,sans-serif;
  font-size: 2rem;
}

.topbar .secondbar {
  /* display: flex; */
  display:none;
  font-family: 'Fira';
  align-items: flex-start;
  /*! padding: 0 0 0 0; */
  /*! position: absolute; */
  /*! right: 0; */
  margin-right: 1rem;
}

.secondbar .item {
  text-transform: uppercase;
  color: #D1D1D1;
  font-size: 14px;
  cursor: pointer;
  transition: 0.5s ease;
  text-align: center;
  padding: 0 10px 0 10px;
}

.secondbar .item:hover {
  color: white;
  transition: 0.5s ease;
}

.secondbar .item_responsive {
  flex-grow: 1;
}

.cartHolder {
  position: absolute;
  right: 0;
  padding: 0.65rem 2rem 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cartHolder a {
  padding: 0;
}
.cartHolder .item-cartmenu {
  /*! font-family: Nunito Sans,sans-serif; */
  font-size: 1.15rem;
  /*! display: flex; */
  /*! justify-content: center; */
  /*! align-items: center; */
  /*! width: 1.5rem; */
  /*! height: 1.5rem; */
  /*! border-radius: 50%; */
  /*! background-color: #f0f0f0; */
  /*! color: #333; */
  /*! font-size: 20px; */
  /*! text-align: center; */
  /*! border: 1px solid #000; */
  margin: 0 0.25rem 0 0;
}

.secondbar .item-cartmenu {
  color: black;
  font-size: 14px;
  cursor: pointer;
  transition: 0.5s ease;
  background-color: white;
  /*! padding: 0 10px 0 10px; */
  border-radius: 15px;
}

.secondbar .item-cartmenu:hover {
  background-color: #d9d9d9;
  transition: 0.5s ease;
}

.burger_menu {
  display: none;
}

.logotype {
  display:none;
}

.tabletMenuHolder {
  display: none;
}

/* top bar end */

body {
  margin: 0;
  /*! background-color: #242424; */
  /*! color: #fff; */
}

h1, h2, h3, h4, h5, h6 {
  font-family: Bebas Neue,sans-serif;
  text-align: center;
  /*! white-space: pre-line; */
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: 4.45rem;
  margin-top: 3rem;
  letter-spacing: 0.1rem;
  line-height: normal;
  /*! line-height: 5.5rem; */
}

#addons {
  scroll-margin-top: 155px;
}

p {
  text-align: center;
  width: 80%;
  font-family: Nunito Sans,sans-serif;
  margin: 0 auto 0 auto;
  padding: 0 0 0 0;
  /*! white-space: pre-line; */
  /*! font-size: 1.15rem; */
  line-height: 1.9rem;
  /*! margin-top: 0.5remrem; */
  /*! margin-bottom: 1rem; */
  font-size: 1.15rem;
}

.sm {
  text-align: center;
  width: 60%;
  font-family: Nunito Sans,sans-serif;
  margin: 0 auto 0 auto;
  padding: 0 0 0 0;
  /*! white-space: pre-line; */
  /*! font-size: 1.15rem; */
  line-height: 1.9rem;
  /*! margin-top: 0.5remrem; */
  /*! margin-bottom: 1rem; */
  font-size: 0.95rem!important;
}

.swiper-wrapper {
  padding-bottom: 18px;
}

.swiper-button-next, .swiper-button-prev {
  color:var(--swiper-navigation-color,#c70f13);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left:var(--swiper-navigation-sides-offset,1.5rem);
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset,1.5rem);
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom:var(--swiper-pagination-bottom,-10px);
}

.swiper-pagination-bullet {
  width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,14px));
  height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,14px));
}

.swiper-pagination-bullet-active {
  background:var(--swiper-pagination-color,#c70f13);
}

.fancybox_gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 1rem 0 0 1rem;
  max-width: 100%;
}

.fancybox_gallery a {
  line-height:0;
}

.fancybox_gallery_mobile {
  display:none;
}

.fancybox_gallery_mobile a {
  display:none;
}

.fancybox_gallery_tablet {
  display:none;
}

.fancybox_gallery_tablet a {
  display:none;
}

.btn-accentprimary {
  background-color: #e82020 !important;
  border-color: #e82020 !important;
}

.btn-primary, .btn-outline-primary:hover, .fake-button, .page-item.active a.page-link, .custom-control-input:checked ~ .custom-control-label::before, .custom-control-input:checked ~ .custom-control-label::after, .ui-progressbar .ui-progressbar-value, .payment-tabs .payment-tab.active {
  background-color: #e82020 !important;
  border-color: #e82020 !important;
}

.blue {
  --swiper-theme-color: #ff0000 !important;
}

b {
  text-align: center;
  font-family: Bebas Neue,sans-serif;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  font-size: 2.65rem;
  font-style: italic;
  font-weight: 100;
  letter-spacing: 0.1rem;
  line-height: normal;
}

a {
  color: #000;
  font-family: Nunito Sans,sans-serif;
}

.none_underline {
  text-decoration: none;
}

a:hover {
  color: #6e6e6e;
}



.title {
  font-family: Nunito Sans,sans-serif;
  font-size: 2rem;
  text-align: center;
  margin: 0 0 1rem 0;
}

.title_options {
  font-family: Nunito Sans,sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-size: 3.5rem;
  margin: 4rem auto 2rem auto;
  font-weight: bold;
}

.title h1 h2 h3 h4 h5 h6 {
  font-weight: 500;
  font-family: 'Fira';
  font-size: 2vw;
  text-align: center;
  margin: 0;
}

.contacts-container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
}

.text {
  text-align: center;
  width: 85%;
  font-family: Nunito Sans,sans-serif;
  margin: 1rem auto 1rem auto;
  /*! padding: 40px 0 0 0; */
  /*! letter-spacing: 0.1rem; */
  flex: 1 1 25%;
}

.text b {
  font-family: 'Fira';
}

.text p {
  font-family: Nunito Sans,sans-serif;
  transform: rotate(-90deg);
  display: inline-block;
  font-size: 3.5rem;
}

/* .text h2 { */
  /*! font-weight: 500; */
  /*! text-align: center; */
  /*! width: 70%; */
  /*! font-family: 'Oxygen'; */
  /*! margin: auto; */
  /*! padding: 0; */
  /*! font-size: 16px; */
/* } */

.text h3 {
  font-weight: 500;
  text-align: center;
  width: 70%;
  font-family: 'Oxygen';
  margin: auto;
  padding: 0;
  font-size: 16px;
}

.text-toleft {
  margin: auto;
  width: 50%;
  font-family: 'Oxygen';
  padding: 40px 0 0 0;
}

.pic-to-right {
  margin:auto;
  width:50%;
}

.text-fan {
  text-align: center;
  width: 70%;
  font-family: 'Oxygen';
  margin: auto;
  padding: 40px 0 0 0;
  border-radius: 15px;
  color: #5c5c5c;
  font-size: 16px;
}

.text a {
  color: #000;
}

.text a:hover {
  color: #6e6e6e;
}

#TotalToPay {
  font-size: 3.5rem;
  margin-top: 2rem;
  /*! color: red; */
  font-weight: bold;
  color: #D70D12;
  text-align:center;
}

.paypal-animation-container-expanded {
  margin-top: 4rem;
}

hr {
  width: 50%;
  margin: 40px auto auto auto;
  color: #5c5c5c;
}

.mini-img {
  /*! padding: 1rem 0 0 0; */
  margin: 1rem auto 1rem auto;
  text-align: center;
  width: 100%;
  /*! height: auto; */
}

.mini-img-desktop {
  /*! padding: 1rem 0 0 0; */
  margin: 1rem auto 1rem auto;
  text-align: center;
  width: 100%;
  /*! height: auto; */
}

.mini-img-machine {
  /*! padding: 1rem 0 0 0; */
  margin: 1rem auto 1rem auto;
  text-align: center;
  width: 100%;
  /*! height: auto; */
}

.mini-img-tablet {
  display: none;
}

.mini-img-mobile {
  display: none;
}

.mini-img-machine-desktop {
  /*! padding: 1rem 0 0 0; */
  margin: 1rem auto 1rem auto;
  text-align: center;
  width: 90%;
  /*! height: auto; */
}

.mini-img-machine-tablet {
  display:none;
}

.mini-img-machine-mobile {
  display:none;
}


.mini-img img {
  /*! border-radius: 15px; */
  max-width: 100%;
  /* height: 100%; */
}

.mini-img-desktop img {
  /*! border-radius: 15px; */
  max-width: 100%;
  /* height: 100%; */
}

.mini-img-machine-desktop img {
  /*! border-radius: 15px; */
  max-width: 100%;
  /* height: 100%; */
}

.pic_desc {
  /*! font-size: 95%; */
  font-style: italic;
  margin: 1.25rem auto 0 auto;
  font-weight: bold;
}

.max-img {
  padding: 40px 0 0 0;
  margin: auto;
  text-align: center;
  width: 73%;
  height: auto;
}

.max-img img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
}

.video-two {
  padding: 40px 0;
  display: flex;
  width: 100%;
  height: auto;
  justify-content: center;
}

.video-two-YTtitle-ios {
  display:none;
}

.video-two .container {
  position: relative; /* Added to position iframe absolutely inside it */
  display: flex;
  flex-direction: column;
  width: 35%;
  height: 0; /* Changed from auto to 0 */
  padding-bottom: 19.72%; /* This percentage gives aspect ratio */
  margin: 0 20px;
  overflow: hidden; /* Ensures no spillover */
}

.video-two .container-video {
  position: relative; /* Added to position iframe absolutely inside it */
  display: flex;
  flex-direction: column;
  width: 35%;
  height: 0; /* Changed from auto to 0 */
  padding-bottom: 19.72%; /* This percentage gives aspect ratio */
  margin: 0 20px;
  /*! overflow: hidden; */ /* Ensures no spillover */
}

.video-two .container-video-YTtitle {
  position: relative; /* Added to position iframe absolutely inside it */
  display: flex;
  flex-direction: column;
  width: 35%;
  height: 0; /* Changed from auto to 0 */
  padding-bottom: 19.72%; /* This percentage gives aspect ratio */
  margin: 0 20px;
  /*! overflow: hidden; */ /* Ensures no spillover */
}

.container a {
  text-decoration: none;
}

.video-two .title {
  font-family: Nunito Sans,sans-serif;
  font-size: 1.15rem;
  font-weight: bold;
  padding: 0 20px 20px 20px;
  margin: 0;
  /*! text-decoration: underline; */
  /*! margin-bottom: 1rem; */
  position: relative;
  /*! font-weight: bold; */
  letter-spacing: 0.1rem;
}

.video-two .video {
  position: absolute; /* Positioning inside .container */
  top: 0;
  left: 0;
  width: 100%; /* Fill the width */
  height: 100%; /* Fill the height */
}

.video-two .video iframe {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.video-two .video2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  margin-top: 2.25rem;
}

.video-two .video2 iframe {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.video-two .video video {
  border-radius: 15px;
  width: 100%;
  height: auto;
}

.video-two .video2 video {
  border-radius: 15px;
  width: 100%;
  height: auto;
}

.video-two-title .container {
  width: 35%;
  margin: 0 1rem;
  /*! padding-bottom: 20%; */
  position: relative;
  height: 100%;
}

.video-two-title {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  height: auto;
  margin-top: 1rem;
}

.video-two-title .video iframe {
  width: 100% !important;
  height: 100% !important;
  border-radius:15px;
  position: absolute;
  top: 0;
  left: 0;
}

.video-two-title .video {
  width: 100%;
  position: relative;
  overflow: hidden;
  /*! height: 100%; */
  /*! padding-bottom: 20%; */
  padding-top: 56.25%;
}

.video-bigger {
  /*! padding: 0 0 0 0; */
  width: 55%;
  height: auto;
  margin: 1rem auto 1rem auto;
}

.video-bigger video {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.video-basiciframe {
  /*! padding: 40px 0 0 0; */
  width: 100%;
  margin: 1rem auto 1rem auto;
}

.video-YTtitle-ios {
  display:none;
}

.video-basiciframe_mobile {
  display:none;
}

.video-iframe {
  position: relative;
  padding-bottom: 56.25%;
  padding-top:0;
  height: 0;
  overflow: hidden;
}

.video-iframe iframe, .video-iframe object, .video-iframe embed  {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*! border-radius: 15px; */
}

.contactdouble {
  display: flex;
  margin: 40px 40px 0 40px;

  -webkit-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.13);
  box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.13);
  border-radius: 10px;
}

.contactdouble .minitext {
  font-family: 'Fira';
  text-align: center;
  padding-bottom: 40px;
}

.contactdouble .image {
  width: 100%;
  margin: 40px;
  margin-left: 40px;
  align-self: center;
}

.contactdouble .image img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.contact_form {
  margin: auto;
  width: 80%;
  height: 100%;
  background-color: white;
  border-radius: 10px;
}

.contact_form .input {
  flex-grow: 1;
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  font-family: Nunito Sans,sans-serif;
  padding: 20px;
  margin-bottom: 20px;
}

.contact_form textarea {
  flex-grow: 1;
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  font-family: Nunito Sans,sans-serif;
  padding: 20px;
  margin-bottom: 20px;
}

.contact_form button {
  font-family: Bebas Neue,sans-serif;
  font-size: 2.5rem;
  color: white;
  background-color: #eb161e;
  border: 0;
  border-radius: 10px;
  padding: 1.5rem 4rem 1.5rem 4rem;
  cursor: pointer;
  transition: 1s;
  letter-spacing: 0.1rem;
}

.contact_form button:hover {
  background-color: #9e2b2b;
  transition: 1s;
}

.contact_form .spacer {
  width: 20px;
}

.contact_form .one {
  display: flex;
}

.contact_form .two {
  display: flex;
}

.contact_form .button {
  text-align: center;
}

.contact_form .firsttext {
  font-family: Nunito Sans, sans-serif;
  font-size: 22px;
  margin-bottom: 40px;
}

.capcha {
  display: flex;
  flex-grow: 1;
  width: 100%;
}

.capcha img {
  height: 58px;
  border-radius: 10px;
}

.capcha button {
  height: 58px;
  text-align: center;
  padding: 0 10px 0 10px;
  color: white;
}

.capcha button img {
  width: 32px;
  border-color: white;
}

.footer_sticky {
  margin: 40px 0 0 0;
  width: 100%;
  color: #6F6E6E;
  background-color: #F1F1F1;
  height: fit-content;
  position: fixed;
  bottom: 0;
}

.footer_sticky hr {
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #6F6E6E;
}

.footer_sticky .main {
  display: flex;
}

.footer_sticky .otherway {
  font-family: 'Oxygen';
  padding-left: 10%;
}

.footer_sticky .otherway a {
  color: #eb161e;
  text-decoration: none;
}

.footer_sticky .otherway a:hover {
  color: #9e2b2b;
  text-decoration: underline;
}

.footer {
  /*! margin: 40px 0 0 0; */
  width: 100%;
  color: #000;
  height: fit-content;
  background-color: #fff;
  display: flex;
  /*! justify-content: center; */
  /*! flex-direction: column; */
  padding: 3rem 0 3rem 0;
  box-shadow: 0 0px 30px rgba(0,0,0,0.1);
  margin-top: 2.25rem;
  /*! border-top: 1px solid #000; */
}

.footer hr {
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #6F6E6E;
}

.footer .main {
  display: flex;
  /*! margin: 0 auto; */
  justify-content: center;
  flex-direction: column;
  width: 70%;
  padding-left: 6%;
  /*! align-items: center; */
}

.footer .main p {
  font-family: Bebas Neue,sans-serif;
  font-size: 7rem;
  font-style: italic;
  line-height: 7rem;
  color: #000;
  letter-spacing: 0.45rem;
  text-align: center;
  font-weight: bold;
  margin: 0 0 0 5%;
}

.footer .otherway {
  font-family: 'Oxygen';
  /*! padding-left: 10%; */
  /*! justify-content: left; */
  display: flex;
  width: 30%;
  margin-right: 5%;
  flex-direction: column;
  /*! text-align: right; */
  align-items: center;
  justify-content: center;
}

.footer .otherway a {
  color: #000;
  text-decoration: none;
  font-family: Bebas Neue,sans-serif;
  font-size: 2.75rem;
  line-height: 3.5rem;
}

.footer .otherway a:hover {
  color: #6e6e6e;
  /*! text-decoration: underline; */
}

.footer_spacer {
  display: flex;
  flex-direction: column;
  width: 10%;
}

.footer_obj {
  display: flex;
  /*! flex-direction: column; */
  padding-bottom: 30px;
  /*! width: 16%; */
  /*! justify-content: right; */
}

.footer_obj a {
  font-family: 'Oxygen';
  color: #000;
  text-decoration: none;
}

.footer_obj a:visited {
  font-family: 'Oxygen';
  color: #6F6E6E;
  text-decoration: none;
}

.footer_obj .title {
  font-size: 16px;
  text-align: left;
  font-family: 'Fira';
  cursor: default;
  display: flex;
  justify-content: center;
}

/* .footer_obj .rest {
  /*! font-family: 'Oxygen'; */
  /*! display: flex; */
  /*! justify-content: right; */
/*} */

.footer_obj .rest:hover {
  cursor: pointer;
  text-decoration: underline;
}

.footer_mini_obj {
  padding-right: 50px;
  padding-bottom: 30px;
  font-family: 'Oxygen';
}

.footer_mini_obj:hover {
  cursor: pointer;
  text-decoration: underline;
}

.footer_mini_obj a {
  font-family: 'Oxygen';
  text-decoration: none;
  color: #6F6E6E;
}

.footer_mini_obj a:visited {
  font-family: 'Oxygen';
  color: #6F6E6E;
  text-decoration: none;
}

.video-movieselector {
  width: 100%;
  margin: 0 auto 1.5rem auto;
  display: flex;
  overflow: auto;
  justify-content: center;
  flex-wrap: wrap;
}

.video-movieselector .item {
  padding: 15px;
}

.video-movieselector .item:hover {
  background-color: #e8e8e8;
  border-radius: 15px;
  cursor: pointer;
}

.video-movieselector .item img {
  display: block;
  margin: 0 auto 0 auto;
}

.video-movieselector .title {
  font-family: Nunito Sans,sans-serif;
  font-size: 0.95rem;
  text-align: center;
  align-self: baseline;
  margin: 0;
}

#ProductData {
  margin: 1.75rem 0 1.75rem 0;
}

#ProductData2 {
  margin: 1.75rem 0 1.75rem 0;
}

#ProductData3 {
  margin: 1.75rem 0 1.75rem 0;
}

.price {
  width: fit-content;
  margin: 0 auto 0 auto;
  font-family: Bebas Neue,sans-serif;
  text-align: center;
  /*! font-size: 1.5rem; */
  font-size: 2rem;
}

.price select {
  font-family: Nunito Sans,sans-serif;
  /*! border-radius: 15px; */
  padding: 1rem;
  /*! margin-bottom: 0.25rem; */
  /*! border-color: #F1F1F1; */
  /*! color: #6F6E6E; */
  background-color: #fff;
  border: 1px solid #000;
  font-size: 1.5rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('https://s3.amazonaws.com/content.tytax.com/www/icons/arrow.jpg') no-repeat right center;
  /*! padding-right: 20px; */
  cursor: pointer;
  background-size: 15px 15px;
  /*! padding-right: 20px; */
  background-position: calc(100% - 12px) center;
  padding-right: 36px;
}

.price .longselect {
  width: 60%;
}

.price .content div {
  /*! margin-top: 40px; */
  font-size: 32px;
  color: black;
  border-radius: 15px;
  /*! padding: 25px; */
  font-size: 1.5rem;
  margin: 0.25rem 0;
}

#ProductSelect2 {
  width: 100%;
}

.button {
  width: 55%;
  margin: auto auto 2rem auto;
  font-family: Bebas Neue,sans-serif;
  text-align: center;
  cursor: pointer;
}

.button a {
  text-decoration: none;
  color: white;
  font-family: Bebas Neue,sans-serif;
  font-size: 2.5rem;
}

.button .content {
  margin-top: 1.5rem;
  background-color: #D70D12; /*F1F1F1*/
  color: white; /*6F6E6E*/
  border-radius: 15px;
  padding: 1.5rem;
  font-size: 2.5rem;
  font-family: Bebas Neue,sans-serif;
  letter-spacing: 0.1rem;
  line-height: normal;
}

.button .content:hover {
  background-color: #9e2b2b; /*d4d4d4*/
}

#ButtonGenPlace, #ButtonGenPlace2, #ButtonGenPlace3 {
  width: 40%;
}

#ProductAddToCartButton, #ProductAddToCartButton2, #ProductAddToCartButton3 {
  font-family: Nunito Sans,sans-serif;
  font-size: 3.25rem;
}

.button-red {
  width: 55%;
  margin: auto;
  font-family: 'Fira';
  text-align: center;
  cursor: pointer;
  margin-bottom: 1rem;
  /*! line-height: normal; */
}

.button-red a {
  text-decoration: none;
  color: white;
}

.button-red .content {
  margin-top: 1rem;
  background-color: #D70D12;
  color: #ffffff;
  border-radius: 15px;
  padding: 1.25rem;
  font-size: 2.5rem;
  font-family: Bebas Neue,sans-serif;
  letter-spacing: 0.1rem;
}

.button-red .content:hover {
  background-color: #9e2b2b;
}

.button-red .content a {
  text-decoration: none;
  font-family: Bebas Neue,sans-serif;
  font-size: 2.5rem;
  /*! padding: 2rem; */
  line-height: normal;
}

.productstile {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #F1F1F1;
  padding-bottom: 2rem;
  /*! margin-top: 40px; */
  /*! background-color: #fff; */
}

.productstile a {
  text-decoration: none;
}

.productstile .subtitle {
  text-align: center;
  font-family: 'Fira';
}

.productstile b {
  text-align: center;
  font-family: Bebas Neue,sans-serif;
  font-size: 2.65rem;
  font-style: italic;
}

.productstile h1, h2, h3, h4, h5, h6 {
  font-family: Bebas Neue,sans-serif;
  text-align: center;
  font-size: 4.45rem;
  /*! margin-bottom: 0.75rem; */
}

/* .productstile p {
  /*! text-align: center; */
  /*! width: 80%; */
  /*! font-family: Nunito Sans,sans-serif; */
  /*! margin: auto; */
  /*! padding: 0; */
/* } */

.productstile .buttons {
  display: flex;
  width: 100%;

  font-family: 'Oxygen';
  font-size: 24px;
  color: #eb161e;
  cursor: pointer;
}

.productstile .button {
  margin-bottom: 1rem;
}

.centralbutton {
  width: 100%;
  padding-top: 40px;
  font-family: 'Oxygen';
  font-size: 24px;
  color: #eb161e;
  cursor: pointer;
  text-align: center;
  cursor: pointer;
}

.centralbutton:hover {
  text-decoration: underline;
  color: #9e2b2b;
}

.buttons .a {
  padding: 40px 40px 0px 40px;
  flex-grow: 1;
  text-align: right;
}

.buttons .a:hover {
  text-decoration: underline;
}

.buttons .b {
  padding: 40px 40px 0px 40px;
  flex-grow: 1;
  text-align: left;
}

.buttons .b:hover {
  text-decoration: underline;
}

.productstile-negativ {
  color: white;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #242424;
  padding-bottom: 2rem;
  /*! margin-top: 40px; */
}

.productstile-negativ a {
  text-decoration: none;
}

.productstile-negativ .subtitle {
  text-align: center;
  font-family: 'Fira';
}

.productstile-negativ .buttons {
  display: flex;
  width: 100%;

  font-family: 'Oxygen';
  font-size: 24px;
  color: #BDCCEC;
  cursor: pointer;
}

.moreimages {
  margin-top: 40px;
  display: flex;
  width: 100%;
  justify-content: center;
}

.moreimages .title {
  text-align: center;
  font-size: 12px;
  font-family: 'Oxygen';
  margin-bottom: 20px;
}

.moreimages .container {
  text-align: center;
  margin: 0 10px 0 10px;
}

.moreimages img {
  width: 400px;
  height: auto;
  border-radius: 15px;
  margin: 0 10px 0 10px;
}

.videofull {
  width: 100%;
  margin: 1rem auto 1rem auto;
}

.videofull video {
  width: 100%;
}

.leftandright {
  margin: 40px 0 0 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.leftandright a {
  color: black;
  /*! text-decoration: none; */
}

.leftandright .container-text {
  width: 30%;
  /*! padding: 0 40px 0 40px; */
  font-family: Nunito Sans,sans-serif;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.9rem;
}

.leftandright .video {
  width: 30%;
}

.leftandright .video video {
  width: 100%;
}

.leftandright .app-tablet {
  display:none;
}

.leftandright .app-mobile {
  display:none;
}

.leftandright .video-border {
  width: 30%;
}

.leftandright .video-border video {
  width: 100%;
  border-radius: 15px;
}

.leftandright .video-border img {
  width: 100%;
  border-radius: 15px;
}

.leftandright .button {
  font-family: 'Oxygen';
  margin-top: 20px;
  background-color: #D70D12;
  color: white;
  border-radius: 15px;
  padding: 1.5rem;
  font-size: 2.5rem;
}

.leftandright .button:hover {
  background-color: #9e2b2b;
}

.leftandright .button a {
  color: white;
  text-decoration: none;
  font-family: Bebas Neue,sans-serif;
  letter-spacing: 0.1rem;
  font-size: 2.5rem;
  line-height: normal;
}

.leftandright .title {
  font-family: 'Fira';
}

.s_cart {
  width: 3rem;
  }

.scart_empty {
  margin-top: 20px;
  width: 100%;
  border-radius: 15px;
  text-align: center;
  font-family: 'Oxygen';
}

.scart_item {
  margin-top: 20px;
  width: 80%;
  display: flex;
  /*! background-color: #F1F1F1; */
  /*! border-radius: 15px; */
  align-items: center;
  border: 1.5px solid #000;
  padding: 0.5rem 2rem 0.5rem 1rem;
}

.scart_item .image {
  width: 120px;
  height: auto;
  /*! margin: 10px; */
  margin-right: 1rem;
}

.scart_item .image img {
  width: 100%;
  border-radius: 15px;
  cursor: pointer;
}

.scart_title {
  font-family: Bebas Neue,sans-serif;
  font-size: 16px;
  flex-grow: 1;
  height: 100%;
  display: flex;
}

.scart_title .text {
  font-family: Bebas Neue,sans-serif;
  font-size: 2rem;
  text-align: left;
  align-self: center;
  /*! width: 100%; */
  padding: 0;
  /*! margin-bottom: 0; */
  /*! margin-top: 0; */
  display: inline;
  padding: 0;
  margin: 0;
}

.scart_title:hover {
  cursor: pointer;
  /*! text-decoration: underline; */
  color: #6e6e6e;
}

.scart_item .howmany {
  width: 10%;
  height: auto;
  background-color: white;
  margin: 10px;
  padding: 10px;
  border-radius: 15px;
  /*! font-size: 1.15rem; */
  border: 1.5px solid #000;
}

.scart_item .howmany input {
  height: 100%;
  width: 100%;
  border: none;
  background-color: none;
  /*! font-family: 'Oxygen'; */
  font-size: 1.15rem;
}

.scart_item .delete {
  /*! font-family: 'Oxygen'; */
  align-self: center;
  padding: 0 2% 0 2%;
}

.scart_item .delete:hover {
  color: red;
  cursor: pointer;
}

.sum_container {
  margin: 0 auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.75rem auto 1rem auto;
}

#CartLength {
  margin-left: 0.35rem;
}

#scart_totalp {
  font-size: 3.5rem;
  margin-right: 1.25rem;
}
#scart_totaltype {
  font-size: 2.25rem;
}
.sum {
  display: inline;
  /*! margin-top: 1rem; */
}
.scart_item h2 {
  margin-top: 0;
}
.scart {
  display: flex;
  margin: 0 auto 0 auto;
  width: 80%;
  /*! justify-content: center; */
  flex-wrap: wrap;
  justify-content: center;
}

.lang_selector {
  width: 100%;
  height: 100%;
  position: absolute;
  backdrop-filter: blur(20px);
  background-color: rgb(0, 0, 0, 0.3);
  top: 0;
  left: 0;
}

.lang_options {
  width: 70%;
  height: 70%;
  background-color: white;
  border-radius: 15px;
  margin: auto;

  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.lang_options .content {
  padding: 30px;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.CheckoutForm {
  margin: 0 30% 0 30%;
}

.CheckoutForm hr {
  border: none;
}

.CheckoutForm .otherShipment {
  margin-top: 50px;
  display: flex;
  align-items: center;
}

.otherShipment .name {
  font-family: 'Oxygen';
  margin-left: 10px;
}

.CheckoutForm .checkbox {
  width: 32px;
  height: 32px;
  text-align: left;
}

.CheckoutForm .input {
  margin-top: 20px;
  border: 1.5px solid black;
  /*! border-radius: 10px; */
  padding: 10px;
  background: none;
}

.CheckoutForm .input_err {
  margin-top: 20px;
  border: 1.5px solid black;
  /*! border-radius: 10px; */
  padding: 10px;
  background: none;
}

.CheckoutForm textarea {
  width: 100%;
  font-size: 22px;
  border: none;
  font-family: 'Oxygen';
}

.CheckoutForm .name {
  font-family: Nunito Sans,sans-serif;
}

.CheckoutForm input {
  width: 100%;
  font-size: 22px;
  border: none;
  background: none;
}

.CheckoutForm select {
  width: 100%;
  font-size: 22px;
  border: none;
  font-family: 'Oxygen';
  padding: 0;
  background: none;
}

.buySelect {
  margin: 0 30% 0 30%;
}

.buySelect .btn {
  width: 100%;
  text-align: center;
  border: 1px solid black;
  /*! border-radius: 10px; */
  padding: 1.75rem;
  margin-top: 20px;
  display: block;
  /*! background-color: #7b7b7b; */
  /*! color: #fff; */
}

.buySelect .btn:hover {
  border: 1px solid #000;
  background-color: #e3e3e3;
  cursor: pointer;
}

.buySelect .name {
  font-family: Nunito Sans,sans-serif;
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.buySelect .text {
  font-family: Nunito Sans,sans-serif;
  /*! text-align: left; */
  margin: 0;
  padding: 0;
  width: 100%;
}

.CartAlert {
  text-align: center;
  font-family: Nunito Sans,sans-serif;
  background-color: #D70D12;
  width: 50%;
  margin: auto;
  /*! border: 1.5px solid #D70D12; */
  padding: 25px 0 25px 0;
  border-radius: 10px;
  margin-top: 25px;
  color: #fff;
}

.CartAlert:hover {
  background-color: #9e2b2b;
}

#checkbtnhover {
  margin: 3rem auto 2rem auto;
}

#checkbtn {
  background: none;
  border: none;
  color: #fff;
}

@keyframes slowOn {
  from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes SlowlyShowUp {
  from {Opacity: 0%;}
  to {Opacity: 100%;}
}

@keyframes SlowlyDropItems {
from {margin-bottom: 50px;}
to {margin-bottom: 0px;}
}

@keyframes Slidetoright {
from {width: 0;}
to {width: 40%;}
}

@keyframes ShowLater {
from {opacity: 0;}
to {opacity: 100%;}
}

.SlowShow {
  animation-name: 'slowOn';
  animation-duration: 1s;
}

.magicbutton {
  padding-top: 30px;
  text-align: center;
  font-family: 'Oxygen';
  font-size: 24px;
  color: #456ABE;
  cursor: pointer;
}

.magicbutton:hover {
  text-decoration: underline;
}

.magicbutton a {
  text-decoration: none;
  color: #456ABE;
}

.custom-button {
  font-family: Bebas Neue,sans-serif;
  text-align: center;
  cursor: pointer;
  border-radius: 15px;
  background-color: #eb161e;
  padding: 1rem 0;
  margin-bottom: 5px;
  color: white;
  font-size: 2rem;
  letter-spacing: 0.1rem;
}

.custom-button a {
  text-decoration: none;
  color: white;
}

.custom-button:hover {
  background-color: #9e2b2b;
}

.title-clicable {
  font-family: 'Fira';
  font-size: 2vw;
  text-align: center;
  margin: 40px 0 0 0;
  border-radius: 15px;
  background-color: #e0e0e0;
  padding: 10px 0 10px 0;
  margin-bottom: 10px;
  cursor: pointer;
}

.title-clicable:hover {
  background-color: #b0b0b0;
}

.mobilemenu {
  display: none;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
}


.basicMenu {
  background-color: black;
  width: 100vw;
}

.basicMenu img {
  padding: 20px;
}

.TytaxPartSkipper {
  /*! border-radius: 15px; */
  text-align: center;
  padding: 2.5rem;
  margin: 2rem auto 1rem auto;
  /*! border: 1px solid #D1D1D1; */
  width: 100%;
  cursor: pointer;
  background-color: #F7F7F7;
}

.TytaxPartSkipper a {
  color: #242424;
  text-decoration: none;
}

.TytaxPartMenu a {
  color: #242424;
  text-decoration: none;
}

.TytaxPartSkipper:hover {
  background-color: #f2f2f2;
}

.TytaxPartSkipper .main {
  font-family: Bebas Neue,sans-serif;
  font-size: 4.25rem;
}

.TytaxPartSkipper .small {
  font-family: 'Oxygen';
  color: #242424;
}

.TytaxPartMenu {
  border-radius: 15px;
  text-align: center;
  padding: 20px;
  margin: 20px auto 20px auto;
  border: 1px solid #D1D1D1;
  width: 50%;
}

.TytaxPartMenu .title {
  font-family: 'Fira';
  font-size: 22px;
  margin: 0;
}

.TytaxPartMenu .select {
  font-family: 'Oxygen';
  cursor: pointer;
}

.TytaxPartMenu .select:hover {
  text-decoration: underline;
}

.AllAboutTytaxContainer {
  margin: auto;
  margin-top: 20px;
  width: 60%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.AllAboutTytaxContainer .item {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-family: 'Oxygen';
  cursor: pointer;
}

.AllAboutTytaxContainer a {
  color: black;
  text-decoration: none;
}

.AllAboutTytaxContainer .item img{
  width: auto;
  height: 200px;
}

.video_movieselector_mobile {
  display: none;
}

.sugest {
  display: none;
}

.option_right {
  /*! margin-top: 40px; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 0 auto;
  width: 80%;
}

.option_right .text {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding-right: 1rem;
  /*! margin-right: 0.5rem; */
}

.option_right .long_text {
  margin-bottom: 1rem;
}

.option_right h3 {
  font-family: Nunito Sans,sans-serif;
  font-size: 2.75rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
}

  .option_right .spacer {
    width: 20%;
  }

  .option_right a {
    text-decoration: none;
  }

  .option_right .btn {
    font-family: Bebas Neue,sans-serif;
    background-color: #D70D12;
    padding: 1.5rem;
    border-radius: 15px;
    font-size: 2.5rem;
    text-decoration: none;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 0.1rem;
  }

  .option_right .btn:hover {
    cursor: pointer;
    background-color: #9e2b2b;
  }

  .option_right .video {
    flex-grow: 1;
    width: 30%;
    text-align: center;
    padding: 1.75rem;
    align-self: center;
  }

  .option_right .videoYT {
    flex-grow: 1;
    width: 30%;
    text-align: center;
    /*! padding: 1.75rem; */
    align-self: center;
    padding-bottom: 29.55%;
    height: 0;
    position: relative;
    margin: 1rem 0;
  }

  .option_right .videoYT_mobile {
    display:none;
  }

  .option_right .videoYT iframe {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    border-radius: 15px;
  }

  .option_right .video video {
    border-radius: 15px;
    width: 100%;
    height: auto;
  }

.option_left {
  /*! margin-top: 40px; */
  display: flex;
  /*! width: 100vw; */
  justify-content: center;
  align-items: center;
  margin: 0 auto 0 auto;
  width: 80%;
}

  .option_left .text {
    display: flex;
    width: 100%;
    flex-direction: column;
    padding-left: 1rem;
    /*! margin-right: 0.5rem; */
  }

  .option_left .long_text {
    margin-bottom: 1rem;
  }
  
  .option_left h3 {
    font-family: Nunito Sans,sans-serif;
    font-size: 2.75rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
  }

  .option_left .spacer {
    width: 20%;
  }

  .option_left a {
    text-decoration: none;
  }

  .option_left .btn {
    font-family: Bebas Neue,sans-serif;
    background-color: #D70D12;
    padding: 1rem;
    border-radius: 15px;
    font-size: 2.5rem;
    text-decoration: none;
    color: white;
    margin-bottom: 15px;
    padding: 1.5rem;
    letter-spacing: 0.1rem;
  }

  .option_left .btn:hover {
    cursor: pointer;
    background-color: #9e2b2b;
  }

  .option_left .video {
    flex-grow: 1;
    width: 30%;
    text-align: center;
    padding: 1.75rem;
    align-self: center;
  }

  .option_left .videoYT {
    flex-grow: 1;
    width: 30%;
    text-align: center;
    /*! padding: 1.75rem; */
    align-self: center;
    padding-bottom: 29.55%;
    height: 0;
    position: relative;
  }

  .option_left .videoYT_mobile {
    display:none;
  }

  .option_left .videoYT iframe {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    border-radius: 15px;
  }

  .option_left .video video {
    border-radius: 15px;
    width: 100%;
    height: auto;
  }

  ol {
    font-family: 'Oxygen';
    padding-top: 40px;
  }

  ol li {
    padding-top: 40px;
  }

  .numer_center {
    display: flex;
    width: 100vw;
    justify-content: center;
  }

  .grecaptcha-badge {
  visibility: hidden;
}


  .backtotop {
    position: fixed;
    background-color: #F7F7F7;
    border-radius: 15px;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    font-family: Oxygen;
    box-shadow: 0 0px 30px rgba(0,0,0,0.1);
    z-index: 2;
  }

.backtotop .text {
  color: black;
  width: fit-content;
  padding: 1rem 2rem 1rem 2rem;
  /*! font-size: rem; */
  display: flex;
  align-items: center;
}

.backtotop .text:hover {
  color: white;
}

.backtotop img {
  display: none;
}

.backtotop:hover {
  background-color: black;
  color: white;
}

.new_mobiletop {
  display: none;
}

.options-carusel {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 1rem 0 2rem 0;
}

.options-carusel a {
  color: black;
  text-decoration: none;
}

.options-carusel .custom-button {
  padding: 1rem 2.5rem;
  margin-left: 20px;
}

.tytax_blogtype {
  margin: auto;
  display: flex;
  flex-direction: column;
  width: 60%;
  margin-top: 20px;
}

.tytax_blogtype .item {
  display: flex;
  flex-direction: row;
  padding: 20px;
  cursor: pointer;
}

.tytax_blogtype a {
  text-decoration: none;
  color: black;
}

.tytax_blogtype img {
  border-radius: 15px;
  height: auto;
  min-width: 335px;
}

.tytax_blogtype .item:hover {
  background-color: #d6d6d6;
  border-radius: 15px;
}

.tytax_blogtype .textHold {
  display: flex;
  flex-direction: column;
  margin-left: 30px;
}

.buttonHold {
  display: flex;
  flex-direction: row;
}

.tytax_blogtype h2 {
  font-family: 'fira';
}

.tytax_blogtype h3 {
  font-family: 'Oxygen';
  font-size: 16px;
  color: #242424;
}

.tytax_blogtype .button {
  width: fit-content;
  border-radius: 15px;
  background-color: #d6d6d6;
  padding: 10px;
  margin: 0;
}

.tytax_blogtype .button_empty {
  padding: 10px;
  font-family: 'Oxygen';
  color: #181818;
  margin-left: 10px;
}

.pagination {
  margin: 20px 0 20px 0;
  display: flex;
}

.pagination .spacer {
  flex-grow: 1;
}

.pagination .button {
  padding: 10px;
  width: fit-content;
  padding: 20px;
  cursor: pointer;
}

.pagination .button:hover {
  border-radius: 15px;
  background-color: #d4d4d4;
}

.pagination .button_disable {
  padding: 10px;
  width: fit-content;
  padding: 20px;
  cursor: pointer;
  color: #919191;
  font-family: 'Fira';
}

.pagination .button_disable:hover {
  border-radius: 15px;
  background-color: #d4d4d4;
}

.pagination a {
  text-decoration: none;
  color: black;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contactPop {
  position: fixed;
  z-index: 9999;
  bottom: 20px;
  right: 20px;
  width: 64px;
  height: 64px;

  box-shadow: 0 0 0 0 rgb(224, 108, 108);
    transform: scale(1);
    animation: pulse 2s infinite;
  border-radius: 50%;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(230, 78, 78, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(224, 108, 108, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(224, 108, 108, 0);
    }
}

.contactdouble_basic {
  display: flex;
  margin: 1rem auto 0 auto;
}

.mobileMenuHolder {
  display: none;
}

.AllAboutTytax_obj {
  /*! background-color: #F7F7F7; */
  /*! border-radius: 15px; */
  width: 90%;
  margin: auto;
  padding: 20px;
  margin-top: 20px;
  background-color: #fff;
  cursor: pointer;
}

.AllAboutTytax_obj:hover {
  background-color: #F7F7F7;
}

.AllAboutTytax_obj a {
  text-decoration: none;
  color: black;
}

.AllAboutTytax_obj h2 {
  font-family: Bebas Neue,sans-serif;
  font-size: 3rem;
  margin: 0;
  cursor: pointer;
  text-align: left;
}

.AllAboutTytax_obj p {
  font-family: Nunito Sans,sans-serif;
  font-size: 1.1rem;
  margin: 0;
  cursor: pointer;
  text-align: left;
  padding: 0;
  line-height: normal;
}

.AllAboutTytax_obj img {
  padding: 20px;
  cursor: pointer;
}

.AllAboutTytax_obj .module {
  display: flex;
  align-items: center;

  animation-name: slowOn;
  animation-duration: 1s;
  cursor: pointer;
}

.arrowsvg {
  width: 32px;
  height: 32px;
  background-color: #eb161e;
  border-radius: 50%;
  display: none;
}

.AllAboutTytax_obj .photo {
  max-width: 219px;
  max-height: 130px;

  min-width: 219px;
  min-height: 130px;

  border-radius: 35px;
}

.AllAboutTytax_obj .module2 {
  display: flex;
  flex-direction: column;
  padding: 0 40px 40px 40px;

  animation-name: slowOn;
  animation-duration: 1s;
}

.AllAboutTytax_obj .module2 a {
  font-family: Bebas Neue,sans-serif;
  font-size: 1.75rem;
  margin: 0;
  cursor: pointer;
  text-decoration: none;
  color: black;
  padding-top: 20px;
  line-height: normal;
}

.AllAboutTytax_obj .module2 a:hover {
  /*! text-decoration: underline; */
  color: #6e6e6e;
}

.AllAboutTytax_obj .subButton {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-top: 10px;
}

.AllAboutTytax_obj .subButton img {
width: 32px;
height: 32px;
padding: 0;

background-color: #eb161e;
border-radius: 50%;
display: none;
}

.AllAboutTytax_obj .subButton h1 {
  font-family: 'Fira';
  font-size: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.AllAboutTytax_obj .subButton img {
  padding-left: 0;
}

.AllAboutTytax_obj .sub {
  display: flex;
  flex-direction: column;
  margin: 10px 0 10px 0;
}

.sub .sub_rest {
  display: flex;
  flex-direction: column;

  animation-name: slowOn;
  animation-duration: 1s;
}

.AllAboutTytax_obj .sub a {
  padding-left: 35px;
}

/* New top in product btn */

.topShopBuyMenu {
  display: flex;
  flex-wrap: wrap;
  width: 71%;
  margin: 3.75rem auto 5rem auto;
  /*! flex-direction: column; */
}

.topShopBuyMenu .price {
  cursor: default;
  font-family: Bebas Neue,sans-serif;
  font-size: 6rem;
  /*! border: 1px solid black; */
  /*! border-radius: 15px; */
  padding: 2rem;
  flex-grow: 1;
  width: fit-content;
  background-color: white;
  color: black;
  letter-spacing: 0.1rem;
  /*! margin-bottom: 1rem; */
}

.topShopBuyMenu .btn {
  font-family: Nunito Sans,sans-serif;
  font-size: 3.25rem;
  color: white;
  background-color: #D70D12;
  /*! border: 1px solid #EB161E; */
  border-radius: 15px;
  flex-grow: 2;
  padding: 2rem;
  align-self: center;
  margin: 0 auto 0 auto;
  text-align: center;
}

.topShopBuyMenu .btn:hover {
  cursor: pointer;
  background-color: #9e2b2b;
  border: 1px solid #9e2b2b;
}
.topShopBuyMenu .knowMore {
  cursor: default;
  font-family: Nunito Sans,sans-serif;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 20px;
  border: 1px solid black;
  border-radius: 15px;
  flex-grow: 1;
  text-align: center;
  padding: 1.5rem;
  width: fit-content;
  background-color: white;
  color: black;
  font-size: 2.5rem;
}

.topShopBuyMenu .knowMore img {
  padding-left: 10px;
  width: 17px;
  height: 17px;
}


.knowMore .spacer {
  flex-grow: 1;
}

.learn_more {
  display:none;
}
.opinion {
  font-style: italic;
}
b.noneitalic {
  font-style: normal;
}