@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --ttRed: #FF0000;
  --ttLightRed: #F2EEEA;
  --ttGray: #B5B5B5;
  --ttGray2: #808080;
  --black: #000;
  --white: #fff;
  --font-inter: "Inter", sans-serif;
  --plyr-color-main: var(--ttRed);
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-inter);
  margin: auto;
}
@media screen and (max-width: 767px) {
  body {
    padding-bottom: 54px;
  }
}

a,
button,
img,
svg path {
  transition: 0.4s ease;
}

a {
  text-decoration: none;
  vertical-align: top;
}

button {
  background-color: transparent;
  border: none;
}

img {
  max-width: 100%;
}

i {
  line-height: 1;
}

p {
  line-height: 1.75;
}

[data-sal] {
  transition-duration: 1s;
  transition-delay: 0.2s;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input[type=radio]:checked + span::after {
  opacity: 1;
}

input {
  outline: none;
  border: none;
}

.form-select:focus {
  box-shadow: none;
  border-color: var(--ttRed);
}

.form-group-select select {
  background-color: transparent;
  color: var(--black);
}

input:-internal-autofill-selected {
  background-color: var(--white) !important;
  appearance: none;
  color: unset;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  color: var(--black) !important;
  -webkit-text-fill-color: var(--black) !important;
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.preloader .loader {
  width: 150px;
  aspect-ratio: 1.154;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  display: grid;
  background: conic-gradient(from 0deg at 50% 60%, #0219A6 120deg, rgba(0, 0, 0, 0) 0), conic-gradient(from 120deg at 50% 60%, #0219A6 120deg, rgba(0, 0, 0, 0) 0), conic-gradient(from 240deg at 50% 60%, #0219A6 120deg, rgba(0, 0, 0, 0) 0), conic-gradient(from 0deg at 50% 60%, #E5002A 120deg, rgba(0, 0, 0, 0) 0), conic-gradient(from 120deg at 50% 60%, #E5002A 120deg, rgba(0, 0, 0, 0) 0), conic-gradient(from 240deg at 50% 60%, #E5002A 120deg, rgba(0, 0, 0, 0) 0), #0219A6;
  background-size: 200% 200%;
  background-repeat: no-repeat;
  animation: l8 1.5s infinite;
}
@keyframes l8 {
  0% {
    background-position: left, top, right;
  }
  30%, 50% {
    background-position: left, top, right, center, center, center;
  }
  80%, 100% {
    background-position: center;
  }
}

.tt-container {
  display: flex;
}
.tt-container__left {
  width: clamp(259px, 15.45vw, 294px);
  height: 100vh;
  position: sticky;
  top: 0;
  flex-shrink: 0;
}
.tt-container__right {
  padding: clamp(20px, 1.58vw, 30px);
  flex-grow: 1;
  overflow: hidden;
}

.tt-section-heading {
  color: var(--ttRed);
  margin-bottom: clamp(18px, 1.16vw, 22px);
}
.tt-section-heading i {
  font-size: clamp(10px, 0.63vw, 12px);
}
.tt-section-heading__btn {
  background: rgba(255, 0, 0, 0.1);
  border-radius: 99px;
  padding: 0 10px;
  height: clamp(27px, 1.58vw, 30px);
  display: flex;
  align-items: center;
  font-size: clamp(12px, 0.79vw, 15px);
  color: var(--ttRed);
  flex-shrink: 0;
}
.tt-section-heading__btn:hover {
  background-color: var(--ttRed);
  color: var(--white);
}
.tt-section-title {
  color: var(--black);
  font-weight: 700;
  font-size: clamp(13px, 0.79vw, 15px);
}

.sa-single-accordion-item {
  transition: 0.4s ease;
}

.sa-single-accordion-item.open .sa-single-accordion-item__header i {
  transform: rotate(90deg);
}
.sa-single-accordion-item.open .sa-single-accordion-item__body {
  grid-template-rows: 1fr;
  padding-top: 9px;
}

.sa-single-accordion-item__header i {
  transition: transform 0.4s ease;
  display: inline-block;
  color: #000;
}

.sa-single-accordion-item__title {
  color: #000;
}

.sa-single-accordion-item__body {
  transition: all 0.4s ease;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
}

.sa-single-accordion-item__body > * {
  overflow: hidden;
}

.tt-slider-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 1;
  top: 44%;
  transform: translateY(-50%);
  right: 0;
  left: 0;
  opacity: 0;
  transition: 0.4s ease;
  visibility: hidden;
}
.tt-slider-nav.swiper-button-disabled {
  display: none;
}
@media screen and (max-width: 767px) {
  .tt-slider-nav {
    display: none;
  }
}
.tt-slider-nav button {
  background-color: var(--white);
  border-radius: 999px;
  width: clamp(42px, 2.52vw, 48px);
  height: clamp(42px, 2.52vw, 48px);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--ttRed);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  visibility: visible;
}
.tt-slider-nav button:hover {
  background-color: rgb(255, 0, 0);
  color: var(--white);
}
.tt-slider-nav button.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.tt-inner-page-banner {
  border-radius: 20px;
  position: relative;
  z-index: 1;
  background: no-repeat center center;
  background-size: cover;
  color: var(--white);
  padding: clamp(60px, 10.73vw, 206px) 15px;
  text-align: center;
  overflow: hidden;
}
.tt-inner-page-banner::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.tt-inner-page-title {
  font-weight: 700;
  font-size: clamp(30px, 1.89vw, 36px);
  margin-bottom: 0;
}
@media screen and (max-width: 479px) {
  .tt-inner-page-title {
    font-size: 30px;
  }
}
.tt-inner-page-inner-title {
  font-weight: 700;
  font-size: clamp(20px, 1.26vw, 24px);
  margin-bottom: clamp(13px, 0.79vw, 15px);
  margin-top: clamp(30px, 2.63vw, 50px);
}
@media screen and (max-width: 575px) {
  .tt-inner-page-inner-title {
    margin-top: 30px;
  }
}

.tt-user-dropdown {
  background-color: var(--white);
  position: absolute;
  right: clamp(30px, 2.1vw, 40px);
  z-index: 33;
  width: 240px;
  border-radius: 10px;
  box-shadow: 0px 4px 64px rgba(0, 0, 0, 0.1);
  max-height: 80%;
  overflow: auto;
  top: 88px;
  top: clamp(75px, 4.62vw, 88px);
  padding: 8px 0;
  display: none;
  --border-b: 1px solid rgba(0, 0, 0, 0.2);
}
.tt-user-dropdown.active {
  display: block;
}
@media screen and (max-width: 767px) {
  .tt-user-dropdown {
    width: 90%;
    right: 50%;
    transform: translateX(50%);
    height: 100%;
    position: fixed;
    overflow: auto;
    top: auto;
    bottom: 90px;
  }
}
.tt-user-dropdown .px {
  padding-right: 15px;
  padding-left: 15px;
}
.tt-user-dropdown .py {
  padding-top: 15px;
  padding-bottom: 15px;
}
.tt-user-dropdown .user-account {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: var(--border-b);
  padding-top: 18px;
  padding-bottom: 18px;
}
.tt-user-dropdown .user-account .img {
  flex-shrink: 0;
}
.tt-user-dropdown .user-account .img img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}
.tt-user-dropdown .user-account .img > a {
  display: block;
}
.tt-user-dropdown .user-account .name {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  display: block;
}
.tt-user-dropdown .user-account .name:hover {
  color: var(--ttRed);
}
.tt-user-dropdown .user-account .username {
  color: var(--ttGray2);
  font-size: 13px;
  font-weight: 400;
}
.tt-user-dropdown .account-channel {
  border-bottom: var(--border-b);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
}
.tt-user-dropdown .account-channel a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #5e5e5e;
}
.tt-user-dropdown .account-channel a:hover {
  color: var(--ttRed);
}
.tt-user-dropdown .account-channel i {
  font-size: 14px;
  color: var(--black);
}
.tt-user-dropdown .account-channel .switch-channel {
  display: grid;
  grid-template-rows: max-content 0fr;
  transition: 0.4s ease;
  width: 100%;
}
.tt-user-dropdown .account-channel .switch-channel.active {
  grid-template-rows: max-content 1fr;
}
.tt-user-dropdown .account-channel .switch-channel.active .channel-list {
  padding-top: 12px;
  padding-bottom: 6px;
}
.tt-user-dropdown .account-channel .channel-list {
  padding-left: 20px;
  transition: 0.4s ease;
  overflow: hidden;
}
.tt-user-dropdown .account-channel .channel-list .channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tt-user-dropdown .account-channel .channel-list .channel:not(:first-child) {
  margin-top: 10px;
}
.tt-user-dropdown .account-channel .channel-list .channel .left {
  gap: 6px;
  display: flex;
  align-items: center;
}
.tt-user-dropdown .account-channel .channel-list .channel .img img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.tt-user-dropdown .account-channel .channel-list .channel .name {
  font-weight: 500;
  font-size: 12px;
}
.tt-user-dropdown .account-channel .channel-list .channel .username {
  font-size: 11px;
}
.tt-user-dropdown .account-channel .channel-list .channel button:hover {
  color: var(--ttRed);
}

.tt-sidebar {
  background-color: rgba(255, 0, 0, 0.05);
  padding: clamp(28px, 1.84vw, 35px) clamp(25px, 1.58vw, 30px);
  overflow: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.tt-sidebar::-webkit-scrollbar {
  width: 6px;
}
.tt-sidebar::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.tt-sidebar::-webkit-scrollbar-thumb {
  background: #ffc1c1;
}
.tt-sidebar::-webkit-scrollbar-thumb:hover {
  background: #FFEAEA;
}
.tt-sidebar.sidebar-collapsed {
  width: max-content !important;
  padding: clamp(12px, 0.79vw, 15px);
}
.tt-sidebar.sidebar-collapsed .tt-sidebar__heading {
  justify-content: center !important;
}
.tt-sidebar__heading {
  margin-bottom: clamp(30px, 2.1vw, 40px);
}
.tt-sidebar__heading .logo {
  max-width: clamp(121px, 6.46vw, 124px);
}
.tt-sidebar__heading button {
  font-size: clamp(19px, 1.16vw, 22px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.tt-sidebar__heading button:hover {
  color: var(--ttRed);
}
.tt-sidebar__heading button i {
  display: block;
}
.tt-sidebar__nav a {
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(11.25px, 0.7vw, 13.25px) clamp(12px, 0.79vw, 15px) clamp(6.25px, 0.49vw, 9.25px);
  border-radius: 6px;
  color: var(--black);
  font-weight: 400;
  font-size: clamp(12px, 0.79vw, 15px);
  box-shadow: 0 4px 50px 5px rgba(255, 0, 0, 0);
  margin-bottom: clamp(7px, 0.53vw, 10px);
}
.tt-sidebar__nav a:hover, .tt-sidebar__nav a.active {
  background-color: var(--ttRed);
  color: var(--white);
}
.tt-sidebar__nav a:hover i, .tt-sidebar__nav a.active i {
  color: var(--white);
}
.tt-sidebar__nav a:hover .arrow-icon i, .tt-sidebar__nav a.active .arrow-icon i {
  color: var(--white);
}
.tt-sidebar__nav a.active {
  font-weight: 500;
  box-shadow: 0 4px 50px 5px rgba(255, 0, 0, 0.15);
}
.tt-sidebar__nav a i {
  font-size: clamp(11px, 0.74vw, 14px);
  color: var(--ttRed);
}
.tt-sidebar__nav a .arrow-icon i {
  color: var(--ttGray);
}
.tt-sidebar__nav-title {
  font-weight: 600;
  font-size: clamp(13px, 0.84vw, 16px);
  margin-top: clamp(17px, 1.05vw, 20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: clamp(11px, 0.74vw, 14px);
  margin-bottom: clamp(17px, 1.05vw, 20px);
}
.tt-sidebar__subscription {
  color: var(--black);
}
.tt-sidebar__subscription:hover {
  color: var(--ttRed);
}
.tt-sidebar__subscription:not(:last-child) {
  margin-bottom: clamp(17px, 1.05vw, 20px);
}
.tt-sidebar__subscription .subscription-logo {
  background-color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tt-sidebar__subscription .subscription-logo img {
  max-width: 100%;
}
.tt-sidebar__subscription .subscription-left {
  font-size: 15px;
  font-weight: 500;
}
.tt-sidebar__subscription .subscription-right span {
  font-weight: 500;
  font-size: 12px;
  color: var(--ttGray2);
}

.to-collapse.collpased {
  display: none !important;
}

.tt-sidebar-categories-mobile {
  padding-top: clamp(30px, 2.1vw, 40px);
  display: none;
}
.tt-sidebar-categories-mobile a {
  font-weight: 500;
  background-color: var(--ttRed);
  color: #fff;
  margin: 0;
  padding: 6px 12px;
  flex-shrink: 0;
}
.tt-sidebar-categories-mobile a i {
  color: var(--white);
}
@media screen and (max-width: 767px) {
  .tt-sidebar-categories-mobile {
    display: block;
  }
}

.tt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 3.15vw, 60px);
  margin-bottom: clamp(20px, 1.58vw, 30px);
}
.tt-header button,
.tt-header a {
  font-size: clamp(11px, 0.74vw, 14px);
  display: flex;
  align-items: center;
  gap: clamp(7px, 0.53vw, 10px);
  color: var(--black);
}
.tt-header button i,
.tt-header a i {
  font-size: clamp(13px, 0.84vw, 16px);
}
.tt-header button:hover,
.tt-header a:hover {
  color: var(--ttRed);
}
@media screen and (max-width: 767px) {
  .tt-header__search-wrapper {
    position: fixed !important;
    width: auto !important;
    left: 20px;
    right: 20px;
    z-index: 22;
  }
}
.tt-header__search {
  background-color: var(--white);
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 0 clamp(17px, 1.05vw, 20px);
  height: clamp(48px, 2.89vw, 55px);
}
@media screen and (max-width: 767px) {
  .tt-header__search {
    position: fixed;
    z-index: 99;
    width: auto;
    top: 60px;
    left: 10px;
    right: 10px;
    height: 50px;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-10%);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
  }
  .tt-header__search.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}
.tt-header__search input {
  background: transparent;
  border: none;
  width: 100%;
  height: 100%;
}
.tt-header__search button {
  font-size: clamp(15px, 0.95vw, 18px);
  color: var(--ttRed);
}
.tt-header__search button:hover {
  color: var(--black);
}
.tt-header-search-suggestion {
  background-color: var(--white);
  position: absolute;
  z-index: 22;
  box-shadow: 0px 4px 64px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: clamp(9px, 0.63vw, 12px) clamp(17px, 1.05vw, 20px);
  width: 100%;
  top: calc(100% + 10px);
  display: none;
}
.tt-header-search-suggestion.active {
  display: block;
}
@media screen and (max-width: 767px) {
  .tt-header-search-suggestion {
    top: 90px;
  }
}
@media screen and (max-width: 575px) {
  .tt-header-search-suggestion {
    top: 85px;
  }
}
.tt-header-search-suggestion a {
  display: block;
  color: var(--black);
  padding: 6px 0;
}
.tt-header-search-suggestion a:hover {
  color: var(--ttRed);
}
.tt-header__right {
  flex-shrink: 0;
  display: flex;
  gap: clamp(17px, 1.05vw, 20px);
}
@media screen and (max-width: 1199px) {
  .tt-header__right {
    gap: 15px;
  }
}
.tt-header__right button,
.tt-header__right a {
  border: 1px solid rgba(181, 181, 181, 0.25);
  height: clamp(35px, 2.1vw, 40px);
  padding: 0 clamp(12px, 0.79vw, 15px);
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--black);
}
@media screen and (max-width: 1199px) {
  .tt-header__right button,
  .tt-header__right a {
    padding: 0 11px;
  }
}
.tt-header__right button:hover,
.tt-header__right a:hover {
  color: var(--ttRed);
}

.tt-mobile-nav {
  position: fixed;
  bottom: 0;
  z-index: 99;
  left: 0;
  right: 0;
  background-color: var(--white);
  display: none;
  padding: 21px 20px 15px;
  justify-content: space-around;
  background: var(--white);
  box-shadow: 0px 4px 70px rgba(0, 0, 0, 0.1);
  border-radius: 20px 20px 0px 0px;
}
@media screen and (max-width: 767px) {
  .tt-mobile-nav {
    display: flex;
  }
}
.tt-mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 5px;
  color: var(--black);
  font-size: 14px;
}
@media screen and (max-width: 479px) {
  .tt-mobile-nav a {
    font-size: 12px;
  }
}
.tt-mobile-nav a:hover, .tt-mobile-nav a.active {
  color: var(--ttRed);
}
.tt-mobile-nav a i {
  font-size: 16px;
}

.tt-notification-popup {
  background-color: var(--white);
  position: absolute;
  right: 25%;
  z-index: 33;
  width: 500px;
  border-radius: 10px;
  box-shadow: 0px 4px 70px rgba(0, 0, 0, 0.2);
  max-height: 70%;
  overflow: auto;
  top: 88px;
  display: none;
}
.tt-notification-popup.active {
  display: block;
}
@media screen and (max-width: 1199px) {
  .tt-notification-popup {
    right: 15%;
  }
}
@media screen and (max-width: 991px) {
  .tt-notification-popup {
    right: 5px;
    width: 485px;
  }
}
@media screen and (max-width: 767px) {
  .tt-notification-popup {
    top: 68px;
    right: 15px;
  }
}
@media screen and (max-width: 575px) {
  .tt-notification-popup {
    width: auto;
    left: 15px;
  }
}
.tt-notification-popup__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tt-notification-video {
  display: flex;
  align-items: flex-start;
  padding: 15px 20px;
  gap: 15px;
}
.tt-notification-video:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 479px) {
  .tt-notification-video {
    flex-wrap: wrap;
  }
}
.tt-notification-video > * {
  flex-shrink: 0;
}
.tt-notification-video__text {
  flex-shrink: 1;
}
.tt-notification-video__title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 5px;
}
.tt-notification-video__title a {
  color: var(--black);
}
.tt-notification-video__title a:hover {
  color: var(--ttRed);
}
.tt-notification-video__date {
  font-size: 14px;
}
.tt-notification-video__thumb {
  max-width: 120px;
  overflow: hidden;
  border-radius: 8px;
  display: inline-block;
}

.tt-color-theme-swiper-btn {
  color: var(--black);
  font-size: 18px;
  display: inline-block;
  padding-top: 2px;
}
@media screen and (max-width: 1799px) {
  .tt-color-theme-swiper-btn {
    padding-top: 3px;
  }
}
.tt-color-theme-swiper-btn:hover {
  color: var(--ttRed);
}

.dark-mode .tt-color-theme-swiper-btn {
  color: var(--ttRed);
}

.tt-notification-popup-toggler i {
  padding-top: 5px;
}
@media screen and (max-width: 1799px) {
  .tt-notification-popup-toggler i {
    padding-top: 6px;
  }
}
@media screen and (max-width: 479px) {
  .tt-notification-popup-toggler i {
    padding-top: 2px;
  }
}

.tt-mobile-search-btn {
  padding-top: 6px;
}

.tt-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: linear-gradient(90deg, rgba(255, 232, 232, 0.2) 0%, #FFE1E1 100%);
  border-radius: 20px;
  position: relative;
  z-index: 1;
  margin-bottom: clamp(30px, 2.1vw, 40px);
}
@media screen and (max-width: 1199px) {
  .tt-hero {
    flex-direction: column;
  }
}
.tt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/hero-vector.png) no-repeat center center;
  border-radius: 20px;
  z-index: -1;
}
.tt-hero .txt {
  padding: clamp(35px, 3.15vw, 60px);
}
@media screen and (max-width: 1199px) {
  .tt-hero .txt {
    padding-bottom: 15px;
    align-self: flex-start;
  }
}
.tt-hero__title {
  font-size: clamp(30px, 2.52vw, 48px);
  line-height: 1.1;
  margin-bottom: clamp(9px, 0.63vw, 12px);
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  color: var(--black);
}
.tt-hero__descr {
  margin-bottom: clamp(26px, 1.68vw, 32px);
  font-size: clamp(13px, 0.84vw, 16px);
}
.tt-hero__btns {
  display: flex;
  gap: clamp(12px, 0.79vw, 15px);
}
.tt-hero__btns img {
  max-width: clamp(121px, 7.2vw, 138px);
  height: 100%;
  border-radius: 5px;
}
.tt-hero .img {
  flex-shrink: 0;
  margin-right: clamp(58px, 3.42vw, 65px);
  position: relative;
  z-index: 1;
  position: relative;
}
.tt-hero .img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: clamp(-76px, -3.47vw, -66px);
  right: clamp(-46px, -1.89vw, -36px);
  background: var(--white);
  height: clamp(190px, 11.04vw, 210px);
  border-radius: 999px 999px 0 0;
  z-index: -1;
}
.tt-hero .img img {
  max-width: clamp(110px, 7.36vw, 140px);
  width: 100%;
}
.tt-hero .img img:not(:first-child) {
  margin-left: clamp(-60px, -2.63vw, -50px);
}

.tt-shorts {
  padding-bottom: clamp(32px, 2.1vw, 40px);
}
@media screen and (max-width: 767px) {
  .tt-shorts {
    padding-bottom: 0;
  }
}
.tt-shorts .swiper-slide {
  max-width: clamp(210px, 12.51vw, 238px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .tt-shorts .swiper-slide {
    width: 42%;
  }
}
@media screen and (max-width: 575px) {
  .tt-shorts .swiper-slide {
    width: 42%;
  }
}
@media screen and (max-width: 479px) {
  .tt-shorts .swiper-slide {
    width: 62%;
  }
}
.tt-shorts:hover .tt-slider-nav {
  opacity: 1;
}

.tt-short {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: clamp(8px, 0.58vw, 11px);
  height: 100%;
}
.tt-short > a {
  display: block;
}
.tt-short img,
.tt-short video {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}
.tt-short__title {
  font-weight: 500;
  font-size: clamp(12px, 0.74vw, 14px);
  color: var(--black);
  margin-bottom: 3px;
  display: inline-block;
}
.tt-short__title:hover {
  color: var(--ttRed);
}
.tt-short .views-count {
  color: var(--ttGray2);
  font-size: clamp(12px, 0.74vw, 14px);
}
.tt-short .views-count i {
  font-size: clamp(7px, 0.53vw, 10px);
  margin-right: clamp(5px, 0.42vw, 8px);
}

.tt-categories {
  border: solid rgba(0, 0, 0, 0.2);
  border-width: 1px 0 1px 0;
  padding: clamp(17px, 1.05vw, 20px) 0;
  display: flex;
  gap: clamp(7px, 0.53vw, 10px);
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .tt-categories {
    padding: 12px 0;
  }
}
.tt-categories button,
.tt-categories a {
  background-color: rgba(181, 181, 181, 0.25);
  border-radius: 6px;
  padding: 0 clamp(7px, 0.53vw, 10px);
  height: clamp(27px, 1.58vw, 30px);
  line-height: clamp(27px, 1.58vw, 30px);
  font-size: clamp(11px, 0.74vw, 14px);
  text-transform: capitalize;
  flex-shrink: 0;
  color: var(--black);
}
.tt-categories button:hover,
.tt-categories a:hover {
  color: var(--ttRed);
  background-color: rgba(255, 0, 0, 0.2);
}
.tt-categories a {
  flex-shrink: 0;
}

.tt-categories-nav button {
  background-color: rgba(181, 181, 181, 0.25);
  border-radius: 6px;
  padding: 0 clamp(7px, 0.53vw, 10px);
  height: clamp(27px, 1.58vw, 30px);
  line-height: clamp(27px, 1.58vw, 30px);
  font-size: clamp(11px, 0.74vw, 14px);
  text-transform: capitalize;
  flex-shrink: 0;
  color: var(--black);
}
.tt-categories-nav button:hover {
  color: var(--ttRed);
  background-color: rgba(255, 0, 0, 0.2);
}

.tt-trending-videos {
  padding-top: clamp(30px, 2.1vw, 40px);
}
.tt-trending-videos .swiper-slide {
  max-width: max-content;
  margin-right: clamp(16px, 1.05vw, 20px);
}
.tt-trending-videos .swiper-slide:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .tt-trending-videos .swiper-slide {
    max-width: 45%;
  }
}
@media screen and (max-width: 479px) {
  .tt-trending-videos .swiper-slide {
    max-width: 65%;
  }
}

.tt-video {
  max-width: clamp(261px, 15.5vw, 295px);
}
.tt-video__thumb {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  display: inline-block;
}
.tt-video__thumb img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.tt-video__author {
  font-size: clamp(10px, 0.68vw, 13px);
  color: var(--ttRed);
  display: inline-block;
  margin-bottom: 3px;
}
.tt-video__author:hover {
  color: var(--black);
}
.tt-video__title {
  display: block;
  width: max-content;
  max-width: 100%;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 3px;
  font-size: clamp(13px, 0.84vw, 16px);
}
.tt-video__title:hover {
  color: var(--ttRed);
}
.tt-video__infos {
  font-size: clamp(11px, 0.74vw, 14px);
  color: var(--ttGray2);
  font-weight: 400;
}
.tt-video__infos > *:not(:last-child) {
  margin-right: clamp(3px, 0.32vw, 6px);
  padding-right: clamp(5px, 0.42vw, 8px);
  border-right: 1px solid var(--ttGray2);
}

.tt-latest-movies-section .tt-latest-movies-slider:hover .tt-slider-nav {
  opacity: 1;
}

.tt-live-slider .tt-slider-nav {
  top: 50%;
}
.tt-live-slider:hover .tt-slider-nav {
  opacity: 1;
}

.tt-lives {
  margin: clamp(20px, 2.63vw, 50px) 0 0;
  padding: clamp(15px, 1.58vw, 30px);
  background-color: #f6f6f6;
  border-radius: 20px;
}
@media screen and (max-width: 479px) {
  .tt-lives {
    padding: 15px;
  }
}
.tt-lives__title {
  font-weight: 700;
  font-size: clamp(13px, 0.79vw, 15px);
  margin-bottom: clamp(18px, 1.47vw, 28px);
  position: relative;
  padding-left: clamp(14px, 1.05vw, 20px);
}
@media screen and (max-width: 479px) {
  .tt-lives__title {
    margin-bottom: 18px;
  }
}
.tt-lives__title::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--ttRed);
  border-radius: 999px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.tt-lives .swiper-slide {
  max-width: clamp(238px, 14.19vw, 270px);
}
@media screen and (max-width: 767px) {
  .tt-lives .swiper-slide {
    width: 52%;
  }
}
@media screen and (max-width: 575px) {
  .tt-lives .swiper-slide {
    width: 62%;
  }
}
@media screen and (max-width: 479px) {
  .tt-lives .swiper-slide {
    width: 70%;
  }
}

.tt-live {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
}
.tt-live:hover::before {
  opacity: 0;
}
.tt-live:hover::after {
  opacity: 1;
}
.tt-live::before, .tt-live::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 100%;
  background: linear-gradient(to bottom, transparent, var(--black));
  z-index: 0;
  transition: 0.4s ease;
}
.tt-live::after {
  opacity: 0;
  background: linear-gradient(to bottom, transparent, var(--ttRed));
}
.tt-live__thumb {
  border-radius: 10px;
  overflow: hidden;
  display: inline-block;
}
.tt-live__thumb img {
  width: 100%;
  aspect-ratio: 270/457;
  object-fit: cover;
}
.tt-live__txt {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
}
.tt-live__txt .tt-video__author {
  color: var(--white);
}
.tt-live__txt .tt-video__title {
  color: var(--white);
}
.tt-live__txt .tt-video__title:hover {
  color: var(--black);
}
.tt-live__txt .tt-video__infos {
  color: var(--white);
}
.tt-live__status {
  position: absolute;
  left: clamp(12px, 1.05vw, 20px);
  top: clamp(12px, 1.05vw, 20px);
  height: clamp(25px, 1.58vw, 30px);
  padding: 0 clamp(12px, 0.79vw, 15px);
  background-color: var(--white);
  border-radius: 6px;
  font-weight: 700;
  font-size: clamp(11px, 0.68vw, 13px);
  text-transform: uppercase;
  color: var(--ttRed);
  padding-left: 30px;
  padding-left: clamp(25px, 1.58vw, 30px);
  display: flex;
  align-items: center;
  justify-content: end;
}
.tt-live__status::before {
  position: absolute;
  content: "";
  width: clamp(13px, 0.84vw, 16px);
  height: clamp(13px, 0.84vw, 16px);
  background: url(../img/live-icon.svg) no-repeat center center;
  background-size: 100% 100%;
  left: clamp(7px, 0.53vw, 10px);
  top: 50%;
  transform: translateY(-51%);
}

.tt-sub-banner {
  margin-top: clamp(35px, 2.52vw, 48px);
}
.tt-sub-banner__img {
  border-radius: 20px;
  overflow: hidden;
  display: block;
  width: max-content;
  max-width: 100%;
  margin: auto;
}
.tt-sub-banner__btn {
  background: #D9D9D9;
  border-radius: 100px;
  height: clamp(45px, 3.15vw, 60px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(15px, 1.05vw, 20px);
  min-width: clamp(351px, 3.15vw, 401px);
  max-width: 100%;
  font-size: clamp(12px, 0.79vw, 15px);
  font-weight: 500;
  color: var(--black);
}
@media screen and (max-width: 767px) {
  .tt-sub-banner__btn {
    height: 45px;
    min-width: 301px;
  }
}
.tt-sub-banner__btn:hover {
  background-color: var(--ttRed);
  color: var(--white);
}
.tt-sub-banner__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-15%);
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #D9D9D9;
  z-index: -1;
}

.tt-footer {
  background-color: var(--black);
  padding: clamp(45px, 2.89vw, 55px) clamp(20px, 1.58vw, 30px);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 479px) {
  .tt-footer {
    padding: 45px 20px;
  }
}
.tt-footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(28px, 1.84vw, 35px);
  padding-bottom: clamp(30px, 2.1vw, 40px);
}
@media screen and (max-width: 1399px) {
  .tt-footer-top {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .tt-footer-top > * {
    flex-grow: 1;
  }
}
.tt-footer-top__about {
  max-width: 600px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .tt-footer-top__about {
    max-width: 100%;
  }
}
.tt-footer-top__logo {
  margin-bottom: 20px;
  display: inline-block;
}
.tt-footer-top__descr {
  margin-bottom: clamp(24px, 1.58vw, 30px);
  font-size: clamp(13px, 0.84vw, 16px);
}
.tt-footer-top__socials {
  display: flex;
  align-items: center;
  gap: 15px;
}
.tt-footer-top__socials a {
  width: clamp(37px, 2.47vw, 47px);
  font-size: clamp(17px, 1.05vw, 20px);
  color: rgba(255, 255, 255, 0.7);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d2d2d2;
  border-radius: 50%;
  transition: 0.4s ease;
}
.tt-footer-top__socials a i {
  padding-top: 3px;
}
.tt-footer-top__socials a:hover {
  background-color: var(--ttRed);
  color: var(--white);
  border-color: var(--ttRed);
}
.tt-footer-widget__title {
  font-size: clamp(17px, 1.05vw, 20px);
  font-weight: 700;
  margin-bottom: clamp(15px, 0.95vw, 18px);
}
.tt-footer-widget__links a {
  font-size: clamp(13px, 0.84vw, 16px);
  display: block;
  margin-bottom: clamp(5px, 0.42vw, 8px);
  color: var(--white);
}
.tt-footer-widget__links a:hover {
  color: var(--ttRed);
}
.tt-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(17px, 1.05vw, 20px) 0 0;
  gap: clamp(17px, 1.05vw, 20px) clamp(7px, 0.53vw, 10px);
}
.tt-footer-bottom p,
.tt-footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(13px, 0.84vw, 16px);
}
.tt-footer-bottom .links {
  gap: clamp(5px, 0.42vw, 8px) clamp(30px, 1.84vw, 35px);
}
.tt-footer-bottom a:hover {
  color: var(--ttRed);
}
.tt-footer .footer-apps-link a img {
  width: clamp(147px, 7.88vw, 150px);
  border: 1px solid #363636;
  border-radius: 8px;
}

.tt-video-details > .d-flex {
  gap: clamp(22px, 1.58vw, 30px);
}
@media screen and (max-width: 1399px) {
  .tt-video-details > .d-flex {
    flex-direction: column;
  }
}
.tt-video-details__left {
  width: calc(100% - clamp(372px, 24.8vw, 472px));
  flex-grow: 1;
}
@media screen and (max-width: 1399px) {
  .tt-video-details__left {
    width: 100%;
  }
}
.tt-video-details__video {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: clamp(20px, 1.31vw, 25px);
}
@media screen and (max-width: 767px) {
  .tt-video-details__video {
    margin: 0 -20px 25px -20px;
    border-radius: 0;
  }
}
.tt-video-details__title {
  font-weight: 600;
  font-size: clamp(17px, 1.05vw, 20px);
  margin-bottom: clamp(20px, 1.31vw, 25px);
}
@media screen and (max-width: 479px) {
  .tt-video-details__title {
    font-size: 17px;
  }
}
.tt-video-details__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
@media screen and (max-width: 991px) {
  .tt-video-details__heading {
    flex-wrap: wrap;
  }
}
.tt-video-details__heading .left {
  display: flex;
  align-items: center;
  gap: 10px 30px;
}
@media screen and (max-width: 479px) {
  .tt-video-details__heading .left {
    flex-wrap: wrap;
  }
}
.tt-video-details__heading .author-channel {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tt-video-details__heading .author-channel .img img {
  width: 30px;
  aspect-ratio: 1/1;
  display: inline-block;
  border-radius: 50%;
}
.tt-video-details__heading .author-channel a {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
}
.tt-video-details__heading .author-channel a:hover {
  color: var(--ttRed);
}
.tt-video-details__heading .right {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 991px) {
  .tt-video-details__heading .right {
    flex-wrap: wrap;
  }
}
.tt-video-details__heading .right button,
.tt-video-details__heading .right a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  height: clamp(28px, 1.47vw, 32px);
  border-radius: 4px;
  background-color: var(--ttLightRed);
  color: var(--ttRed);
  font-size: clamp(13px, 0.84vw, 16px);
}
.tt-video-details__heading .right button i,
.tt-video-details__heading .right a i {
  font-size: clamp(12px, 0.74vw, 14px);
  color: var(--ttRed);
  padding-top: 2px;
}
.tt-video-details__heading .right button:hover,
.tt-video-details__heading .right a:hover {
  background-color: var(--ttRed);
  color: var(--white);
}
.tt-video-details__heading .right button:hover i,
.tt-video-details__heading .right a:hover i {
  color: var(--ttLightRed);
}
.tt-video-details-like-dislike a:first-child,
.tt-video-details-like-dislike button:first-child {
  border-radius: 4px 0 0 4px;
  display: flex;
  gap: 5px;
}
.tt-video-details-like-dislike a:first-child .count,
.tt-video-details-like-dislike button:first-child .count {
  font-size: 14px;
}
.tt-video-details-like-dislike a:last-child,
.tt-video-details-like-dislike button:last-child {
  border-radius: 0 4px 4px 0;
}
.tt-video-details-action-dropdown-wrapper {
  position: relative;
}
.tt-video-details-action-dropdown-wrapper .tt-video-details-action-dropdown {
  overflow: hidden;
  top: 40px;
  background-color: transparent;
}
.tt-video-details-action-dropdown-wrapper .tt-video-details-action-dropdown button,
.tt-video-details-action-dropdown-wrapper .tt-video-details-action-dropdown a {
  width: 100%;
  background-color: var(--white);
  border-radius: 0;
  border-bottom: 1px solid #ddd;
  height: 40px;
}
.tt-video-details-action-dropdown-wrapper .tt-video-details-action-dropdown button:last-child,
.tt-video-details-action-dropdown-wrapper .tt-video-details-action-dropdown a:last-child {
  border-bottom: 0;
}
.tt-video-details__descr {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-width: 1px 0 1px 0;
  padding: 28px 0;
  margin-top: clamp(20px, 1.58vw, 30px);
  font-size: clamp(13px, 0.84vw, 16px);
}
.tt-video-details__descr h6 {
  margin-bottom: clamp(5px, 0.42vw, 8px);
  color: var(--ttGray2);
  font-size: clamp(12px, 0.74vw, 14px);
}
.tt-video-details__descr h6 > span {
  font-weight: 600;
  color: var(--black);
}
.tt-video-details__same-author-videos .tt-section-heading {
  margin-bottom: clamp(15px, 0.95vw, 18px);
}
.tt-video-details__same-author-videos .tt-section-title {
  font-size: clamp(17px, 1.05vw, 20px);
  font-weight: 600;
}
@media screen and (max-width: 479px) {
  .tt-video-details__same-author-videos .tt-section-title {
    font-size: 17px;
  }
}
.tt-video-details__same-author-videos .tt-section-title a {
  color: var(--ttRed);
}
.tt-video-details__comment-container {
  background-color: #F3F3F3;
  border-radius: 20px;
  margin-top: clamp(30px, 2.1vw, 40px);
}
.tt-video-details__comment-form-container {
  padding: clamp(30px, 2.1vw, 40px);
  padding-bottom: clamp(20px, 1.58vw, 30px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 991px) {
  .tt-video-details__comment-form-container {
    padding: 25px 25px 15px 25px;
  }
}
@media screen and (max-width: 575px) {
  .tt-video-details__comment-form-container {
    padding: 25px 15px 15px 15px;
  }
}
.tt-video-details__comment-form-container .heading {
  margin-bottom: clamp(20px, 1.31vw, 25px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 479px) {
  .tt-video-details__comment-form-container .heading {
    flex-wrap: wrap;
  }
}
.tt-video-details__comment-form-container .heading h5 {
  color: var(--black);
  font-weight: 600;
}
@media screen and (max-width: 479px) {
  .tt-video-details__comment-form-container .heading h5 {
    font-size: 16px;
  }
}
.tt-video-details__comment-form-container .heading select {
  background-color: transparent;
  border: none;
  font-size: 15px;
}
.tt-video-details__comment-form-container .heading select:focus {
  outline: none;
}
.tt-video-details__comment-form textarea {
  border: none;
  height: 90px;
  border-radius: 10px;
  display: block;
  width: 100%;
  padding: clamp(15px, 1.05vw, 20px) clamp(20px, 1.31vw, 25px);
}
@media screen and (max-width: 479px) {
  .tt-video-details__comment-form textarea {
    padding: 15px 20px;
  }
}
.tt-video-details__comment-form textarea:focus {
  outline: none;
}
.tt-video-details__comment-form .btns {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(17px, 1.05vw, 20px);
}
.tt-video-details__comment-form .btns button {
  border-radius: 6px;
  height: clamp(30px, 1.79vw, 34px);
  padding: 0 clamp(7px, 0.53vw, 10px);
}
.tt-video-details__comment-form .btns button[type=button] {
  background-color: rgba(181, 181, 181, 0.25);
}
.tt-video-details__comment-form .btns button[type=button]:hover {
  background-color: var(--ttRed);
  color: var(--white);
}
.tt-video-details__comment-form .btns button[type=submit] {
  background-color: var(--ttRed);
  color: var(--white);
}
.tt-video-details__comment-form .btns button[type=submit]:hover {
  background-color: var(--black);
}
.tt-video-details__comments {
  padding: clamp(15px, 1.58vw, 30px) clamp(25px, 2.1vw, 40px);
}
@media screen and (max-width: 991px) {
  .tt-video-details__comments {
    padding: 15px 25px 15px 25px;
  }
}
.tt-video-details__comment {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 479px) {
  .tt-video-details__comment {
    flex-wrap: wrap;
  }
}
.tt-video-details__comment:not(:last-child) {
  margin-bottom: clamp(22px, 1.58vw, 30px);
}
.tt-video-details__comment-avatar img {
  display: inline-block;
  width: clamp(40px, 2.63vw, 50px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
}
.tt-video-details__comment-text {
  font-size: clamp(12px, 0.74vw, 14px);
  flex-grow: 1;
}
.tt-video-details__comment-head {
  display: flex;
  align-items: center;
  gap: clamp(17px, 1.05vw, 20px);
  margin-bottom: clamp(5px, 0.42vw, 8px);
}
.tt-video-details__comment-author {
  font-weight: 600;
  color: var(--black);
}
.tt-video-details__comment-date {
  color: var(--ttGray2);
}
.tt-video-details__comment-action {
  background-color: rgba(181, 181, 181, 0.25);
  font-size: 12px;
  border-radius: 6px;
  height: 33px;
  padding: 0 10px;
  font-weight: 500;
}
.tt-video-details__comment-action:hover {
  background-color: var(--ttRed);
  color: var(--white);
}
.tt-video-details__right {
  width: 23.02vw;
  padding: clamp(15px, 1.05vw, 20px);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  position: sticky;
  top: 0;
  height: 100%;
}
@media screen and (max-width: 1599px) {
  .tt-video-details__right {
    width: 25.02vw;
  }
}
@media screen and (max-width: 1399px) {
  .tt-video-details__right {
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .tt-video-details__right {
    padding: 15px;
  }
}
.tt-video-details__right-videos > *:not(:last-child) {
  margin-bottom: clamp(15px, 1.05vw, 20px);
}
.tt-video-details__categories-slider {
  padding: 0 clamp(22px, 1.58vw, 30px);
  margin-bottom: clamp(30px, 2.1vw, 40px);
  max-width: 72vw;
}
@media screen and (max-width: 1199px) {
  .tt-video-details__categories-slider {
    max-width: 66.6vw;
  }
}
@media screen and (max-width: 991px) {
  .tt-video-details__categories-slider {
    max-width: 56.9vw;
  }
}
@media screen and (max-width: 767px) {
  .tt-video-details__categories-slider {
    max-width: 87vw;
  }
}
@media screen and (max-width: 575px) {
  .tt-video-details__categories-slider {
    max-width: 85.6vw;
  }
}
@media screen and (max-width: 479px) {
  .tt-video-details__categories-slider {
    max-width: 80vw;
  }
}
.tt-video-details__categories-slider .swiper-slide {
  width: max-content;
}
.tt-video-details__categories-slider-nav {
  position: absolute;
  z-index: 22;
  top: 50%;
  transform: translateY(-51%);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  visibility: hidden;
}
.tt-video-details__categories-slider-nav button {
  padding: 0;
  background-color: var(--white);
  height: clamp(27px, 1.58vw, 30px);
  height: 30px;
  padding-top: 5px;
  visibility: visible;
  font-size: clamp(13px, 0.84vw, 16px);
}
.tt-video-details__categories-slider-nav button:first-child {
  padding-right: 7px;
}
.tt-video-details__categories-slider-nav button:last-child {
  padding-left: 7px;
}
.tt-video-details__categories-slider-nav button:hover {
  color: var(--ttRed);
}

.tt-same-author-videos-slider-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}
.tt-same-author-videos-slider-nav button {
  position: static;
  background-color: #FFF1F1;
  width: 36px;
  aspect-ratio: 1/1;
  padding: 0;
  height: auto;
  font-size: 12px;
  transform: translateY(0);
}
.tt-same-author-videos-slider-nav button:hover {
  background-color: var(--ttRed);
}

.tt-video-horizontal {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 1799px) {
  .tt-video-horizontal {
    gap: 15px;
  }
}
@media screen and (max-width: 479px) {
  .tt-video-horizontal {
    flex-direction: column;
    align-items: flex-start;
  }
}
.tt-video-horizontal .tt-video__thumb {
  margin-bottom: 0;
}
@media screen and (max-width: 479px) {
  .tt-video-horizontal .tt-video__thumb {
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .tt-video-horizontal .thumbnail {
    width: 100%;
  }
}
.tt-video-horizontal .thumbnail > a {
  display: block;
}
.tt-video-horizontal .thumbnail img {
  display: inline-block;
  width: clamp(147px, 9.3vw, 177px);
  aspect-ratio: 177/106;
  object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 479px) {
  .tt-video-horizontal .thumbnail img {
    width: 100%;
  }
}

.channel-subscribe-button {
  background: rgba(255, 0, 0, 0.1);
  border-radius: 99px;
  padding: 0 15px;
  font-weight: 600;
  height: 30px;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--ttRed) !important;
  flex-shrink: 0;
}
.channel-subscribe-button.subscribed {
  background: rgba(0, 0, 0, 0.1);
  color: var(--black) !important;
}

.tt-channel-cover {
  background: url(../img/channel-cover.jpg) no-repeat center center;
  background-size: contain;
  padding: clamp(6px, 0.47vw, 9px);
  border-radius: 20px;
  background-color: #b1b1b1;
}
.tt-channel-intro {
  display: flex;
  align-items: center;
  gap: clamp(20px, 1.58vw, 30px);
  background-color: rgba(255, 255, 255, 0.7);
  padding: clamp(25px, 1.84vw, 35px);
  width: max-content;
  border-radius: 20px;
  backdrop-filter: blur(150px);
  max-width: 100%;
}
@media screen and (max-width: 1599px) {
  .tt-channel-intro {
    padding: 25px;
    gap: 20px;
  }
}
@media screen and (max-width: 991px) {
  .tt-channel-intro {
    padding: 20px;
    gap: 15px;
  }
}
@media screen and (max-width: 479px) {
  .tt-channel-intro {
    padding: 15px;
    gap: 10px;
    align-items: flex-start;
  }
}
.tt-channel-intro__img {
  width: clamp(140px, 9.46vw, 180px);
  aspect-ratio: 1/1;
  display: inline-block;
}
@media screen and (max-width: 1599px) {
  .tt-channel-intro__img {
    width: 140px;
  }
}
@media screen and (max-width: 767px) {
  .tt-channel-intro__img {
    width: 110px;
  }
}
@media screen and (max-width: 575px) {
  .tt-channel-intro__img {
    width: 100px;
  }
}
@media screen and (max-width: 479px) {
  .tt-channel-intro__img {
    width: 70px;
  }
}
.tt-channel-intro__img img {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  object-fit: cover;
}
.tt-channel-intro__txt .channel-name {
  font-weight: 700;
  font-size: clamp(30px, 2.1vw, 40px);
  margin-bottom: 0;
}
@media screen and (max-width: 1599px) {
  .tt-channel-intro__txt .channel-name {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .tt-channel-intro__txt .channel-name {
    font-size: 28px;
  }
}
@media screen and (max-width: 575px) {
  .tt-channel-intro__txt .channel-name {
    font-size: 26px;
  }
}
@media screen and (max-width: 479px) {
  .tt-channel-intro__txt .channel-name {
    font-size: 20px;
  }
}
.tt-channel-intro__txt > * {
  row-gap: 5px !important;
}
@media screen and (max-width: 767px) {
  .tt-channel-intro__txt .verification-badge img {
    max-width: 20px;
  }
}
.tt-channel-intro__txt .username,
.tt-channel-intro__txt .subscriber-count {
  font-weight: 500;
}
@media screen and (max-width: 479px) {
  .tt-channel-intro__txt .username,
  .tt-channel-intro__txt .subscriber-count {
    font-size: 14px;
  }
}
.tt-channel-intro__txt .video-counts {
  background-color: var(--white);
  font-weight: 500;
  font-size: clamp(12px, 0.74vw, 14px);
  border-radius: 99px;
  padding: 4.5px clamp(7px, 0.53vw, 10px);
  display: inline-block;
  margin-top: clamp(12px, 0.79vw, 15px);
}
.tt-channel-nav {
  padding: clamp(20px, 1.58vw, 30px) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1599px) {
  .tt-channel-nav {
    padding: 20px 0;
  }
}
@media screen and (max-width: 479px) {
  .tt-channel-nav {
    flex-direction: column-reverse;
    row-gap: 15px;
  }
}
.tt-channel-nav .links {
  gap: clamp(12px, 0.79vw, 15px) 0;
}
@media screen and (max-width: 479px) {
  .tt-channel-nav .links {
    justify-content: center;
  }
}
.tt-channel-nav a {
  font-weight: 600;
  font-size: clamp(13px, 0.84vw, 16px);
  color: var(--black);
  line-height: 0.7;
}
.tt-channel-nav a:hover, .tt-channel-nav a.active {
  color: var(--ttRed);
}
.tt-channel-nav a:not(:last-child) {
  padding-right: clamp(12px, 1.05vw, 20px);
  margin-right: clamp(12px, 1.05vw, 20px);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 991px) {
  .tt-channel-nav a:not(:last-child) {
    padding-right: 12px;
    margin-right: 12px;
  }
}
.tt-channel-nav .subscribe-btn {
  box-shadow: 0px 4px 50px 5px rgba(255, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: clamp(12px, 0.79vw, 15px);
  color: var(--white);
  background-color: var(--ttRed);
  height: clamp(45px, 2.89vw, 55px);
  padding: 0 clamp(12px, 1.05vw, 20px);
  border-radius: 6px;
  font-weight: 600;
  font-size: clamp(15px, 0.95vw, 18px);
  flex-shrink: 0;
}
.tt-channel-nav .subscribe-btn.subscribed {
  background-color: var(--black);
  box-shadow: 0px 4px 50px 5px rgba(56, 56, 56, 0.15);
}
@media screen and (max-width: 991px) {
  .tt-channel-nav .subscribe-btn {
    height: 45px;
    font-size: 15px;
    padding: 0 12px;
    gap: 8px;
  }
}
.tt-channel-nav .subscribe-btn:hover {
  background-color: var(--black);
}
.tt-channel-more-channels {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: clamp(30px, 2.1vw, 40px);
  padding-top: clamp(20px, 1.58vw, 30px);
}
.tt-channel-more-channels__title {
  font-weight: 600;
  font-size: clamp(16px, 1.05vw, 20px);
  margin-bottom: 25px;
}
@media screen and (max-width: 479px) {
  .tt-channel-more-channels__title + a {
    font-size: clamp(14px, 1.05vw, 20px);
  }
}
.tt-channel-more-channels__grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(15px, 1.05vw, 20px) clamp(45px, 3.75vw, 72px);
}
.tt-channel-more-channel-single {
  text-align: center;
}
.tt-channel-more-channel-single__dp {
  border-radius: 50%;
  max-width: clamp(90px, 6.83vw, 130px);
  width: max-content;
  margin: auto;
  background-color: #b1b1b1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(14px, 0.89vw, 17px);
}
.tt-channel-more-channel-single__dp img {
  border-radius: 50%;
}
.tt-channel-more-channel-single__title {
  margin-bottom: 2px;
}
.tt-channel-more-channel-single__title a {
  font-weight: 600;
  font-size: clamp(15px, 0.95vw, 18px);
  margin-bottom: 0;
  color: var(--black);
}
.tt-channel-more-channel-single__title a:hover {
  color: var(--ttRed);
}
.tt-channel-more-channel-single .subscriber-count {
  font-weight: 400;
  font-size: clamp(11px, 0.74vw, 14px);
  color: var(--ttGray2);
}

.tt-login {
  background-color: var(--white);
  box-shadow: 0px 4px 120px 60px rgba(255, 0, 0, 0.1);
  padding: clamp(45px, 3.15vw, 60px) clamp(25px, 2.1vw, 40px);
  border-radius: 20px;
  max-width: clamp(507px, 30.22vw, 575px);
  margin: clamp(148px, 9.35vw, 178px) auto;
}
@media screen and (max-width: 1599px) {
  .tt-login {
    margin: 148px auto;
  }
}
@media screen and (max-width: 1199px) {
  .tt-login {
    margin: 98px auto;
  }
}
@media screen and (max-width: 991px) {
  .tt-login {
    margin: 58px auto;
    padding: 45px 25px;
  }
}
@media screen and (max-width: 767px) {
  .tt-login {
    margin: 58px auto;
    padding: 35px 25px;
  }
}
@media screen and (max-width: 479px) {
  .tt-login {
    padding: 25px 20px;
  }
}
.tt-login .heading {
  margin-bottom: clamp(20px, 1.58vw, 30px);
}
.tt-login__title {
  font-size: clamp(24px, 1.58vw, 30px);
  font-weight: 600;
  margin-bottom: clamp(7px, 0.53vw, 10px);
}
.tt-login__subtitle {
  font-size: clamp(15px, 0.95vw, 18px);
  color: var(--ttGray2);
  font-weight: 400;
}
.tt-login-form {
  display: flex;
  flex-direction: column;
  gap: clamp(17px, 1.05vw, 20px);
  margin-bottom: clamp(30px, 2.1vw, 40px);
}
.tt-login-form__submit-btn {
  height: clamp(46px, 2.94vw, 56px);
  border-radius: 10px;
  font-size: clamp(14px, 0.84vw, 16px);
  font-weight: 600;
  background-color: var(--ttRed);
  color: var(--white);
}
@media screen and (max-width: 479px) {
  .tt-login-form__submit-btn {
    height: 46px;
  }
}
.tt-login-form__submit-btn:hover {
  background-color: var(--black);
}
.tt-login .field-container {
  border: 1px solid #d9d9d9;
  height: clamp(46px, 2.94vw, 56px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: clamp(13px, 0.79vw, 15px);
  padding: 0 clamp(17px, 1.05vw, 20px);
}
@media screen and (max-width: 479px) {
  .tt-login .field-container {
    padding: 0 12px;
    gap: 10px;
  }
}
.tt-login .field-container input {
  background-color: transparent;
  align-self: stretch;
  padding: 0;
  width: 100%;
}
.tt-login .field-container input::placeholder {
  color: var(--ttGray2);
}
.tt-login .field-container i {
  color: var(--ttGray2);
}
.tt-login .sub-actions {
  font-size: clamp(12px, 0.74vw, 14px);
  color: var(--ttGray2);
}
.tt-login .sub-actions button {
  color: var(--ttRed);
}
.tt-login .sub-actions button:hover {
  color: var(--black);
}
.tt-login .register-direction {
  font-size: clamp(12px, 0.74vw, 14px);
  margin-top: clamp(22px, 1.58vw, 30px);
  text-align: center;
}
.tt-login .register-direction a {
  color: var(--ttRed);
}

.other-login-options__title {
  position: relative;
  z-index: 1;
  text-align: center;
}
.other-login-options__title::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.other-login-options__title span {
  background-color: var(--white);
  padding: 0 clamp(12px, 0.79vw, 15px);
}
.other-login-options .options {
  display: flex;
  gap: clamp(17px, 1.26vw, 24px);
  justify-content: center;
  margin-top: clamp(15px, 1.05vw, 20px);
}
.other-login-options .options button,
.other-login-options .options a {
  width: clamp(38px, 2.36vw, 45px);
  height: clamp(38px, 2.36vw, 45px);
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.other-login-options .options button:hover,
.other-login-options .options a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.tt-reset-password-succes .icon {
  font-size: 90px;
  display: inline-block;
  margin-bottom: -20px;
  color: #20BF55;
}

.main-btn {
  height: 56px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--ttRed);
  color: var(--white);
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 479px) {
  .main-btn {
    height: 46px;
  }
}
.main-btn:hover {
  background-color: var(--black);
  color: var(--white);
}

.tt-about-banner {
  background-image: url(../img/about-page-banner.jpg);
}

.tt-about-page__txt .descr {
  font-size: clamp(13px, 0.84vw, 16px);
}

.tt-about-team__heading {
  margin-bottom: clamp(14px, 0.89vw, 17px);
}

.tt-team-slider-nav button {
  color: var(--ttGray2);
}
.tt-team-slider-nav button:hover {
  color: var(--ttRed);
}

.tt-team-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.tt-team-card:hover::before {
  opacity: 1;
}
.tt-team-card:hover .tt-team-card__txt {
  opacity: 1;
  transform: translateY(0);
}
.tt-team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, var(--ttRed));
  pointer-events: none;
  opacity: 0;
  transition: 0.4s ease;
}
@media screen and (max-width: 479px) {
  .tt-team-card::before {
    opacity: 1;
  }
}
.tt-team-card__img img {
  width: 100%;
  aspect-ratio: 372/472;
  object-fit: cover;
}
.tt-team-card__txt {
  position: absolute;
  inset: 0;
  top: auto;
  text-align: center;
  z-index: 3;
  color: var(--white);
  opacity: 0;
  transform: translateY(30%);
  transition: 0.4s ease;
}
@media screen and (max-width: 479px) {
  .tt-team-card__txt {
    opacity: 1;
    transform: translateY(0);
  }
}
.tt-team-card__socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 38px;
}
.tt-team-card__socials a {
  border: 1px solid var(--white);
  width: clamp(32px, 1.89vw, 36px);
  aspect-ratio: 1/1;
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tt-team-card__socials a i {
  padding-top: 2px;
}
.tt-team-card__socials a:hover {
  color: var(--ttRed);
  background-color: var(--white);
}
.tt-team-card__name {
  margin-bottom: 0;
  font-weight: 700;
  font-size: clamp(19px, 1.16vw, 22px);
  margin-bottom: clamp(13px, 0.79vw, 15px);
}
.tt-team-card__position {
  margin-bottom: 0;
  font-weight: 400;
  margin-bottom: clamp(24px, 1.58vw, 30px);
}

.tt-testimonial-slider {
  padding: 30px;
  margin: -30px;
}

.tt-testimony {
  border-top: 3px solid var(--ttRed);
  background-color: var(--white);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  padding: clamp(30px, 2.1vw, 40px);
  padding-top: clamp(15px, 1.84vw, 35px);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1599px) {
  .tt-testimony {
    padding: 20px;
    padding-top: 15px;
  }
}
.tt-testimony::before {
  content: "";
  position: absolute;
  left: clamp(0px, 0.74vw, 14px);
  bottom: clamp(0px, 0.74vw, 14px);
  background: url(../img/testimony-vector.svg) no-repeat center center;
  pointer-events: none;
  z-index: -1;
  width: 110px;
  height: 107px;
}
@media screen and (max-width: 1599px) {
  .tt-testimony::before {
    left: 0;
    bottom: 0;
  }
}
.tt-testimony-reviewer__img {
  width: clamp(85px, 5.25vw, 100px);
  height: clamp(85px, 5.25vw, 100px);
  border-radius: 999px;
  overflow: hidden;
}
.tt-testimony-reviewer__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tt-testimony-reviewer__name {
  font-weight: 600;
  font-size: clamp(17px, 1.05vw, 20px);
  margin-bottom: 5px;
}
.tt-testimony-reviewer__position {
  font-size: clamp(11px, 0.74vw, 14px);
  color: var(--ttGray2);
  font-weight: 300;
  margin-bottom: clamp(5px, 0.42vw, 8px);
}
.tt-testimony p {
  font-size: clamp(13px, 0.84vw, 16px);
}
.tt-testimony-company-logo img {
  max-width: 95px;
  max-height: 100px;
}

.tt-faq-banner {
  background-image: url(../img/faq-page-banner.jpg);
}

.tt-accordion {
  margin: 3.15vw 8.9vw;
}
@media screen and (max-width: 1199px) {
  .tt-accordion {
    margin: 40px 5.9vw;
  }
}
@media screen and (max-width: 991px) {
  .tt-accordion {
    margin: 30px 3.9vw;
  }
}
@media screen and (max-width: 767px) {
  .tt-accordion {
    margin: 30px 0;
  }
}
.tt-accordion .sa-single-accordion-item {
  padding: clamp(18px, 1.58vw, 30px) clamp(12px, 1.05vw, 20px);
  border-radius: 10px;
  background-color: #f4f4f4;
}
.tt-accordion .sa-single-accordion-item:not(:last-child) {
  margin-bottom: clamp(12px, 1.05vw, 20px);
}
.tt-accordion .sa-single-accordion-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tt-accordion .sa-single-accordion-item__header .left {
  display: flex;
  gap: clamp(12px, 1.05vw, 20px);
  align-items: center;
}
.tt-accordion .sa-single-accordion-item__header .left > * {
  margin-bottom: 0;
}
.tt-accordion .sa-single-accordion-item__header .left h5 {
  font-weight: bold;
  font-size: clamp(17px, 1.05vw, 20px);
}
.tt-accordion .sa-single-accordion-item__header .left .order-num {
  color: var(--ttRed);
}
.tt-accordion .sa-single-accordion-item__title {
  margin-bottom: 0;
  transition: 0.4s ease;
}
.tt-accordion .sa-single-accordion-item__body {
  padding-left: clamp(25px, 2.1vw, 40px);
}
.tt-accordion .sa-single-accordion-item__body p {
  margin-bottom: 0;
  color: var(--white);
  font-weight: 600;
}
.tt-accordion .sa-single-accordion-item.open {
  background-color: var(--ttRed);
  color: var(--white);
}
.tt-accordion .sa-single-accordion-item.open .sa-single-accordion-item__header .order-num {
  color: var(--white);
}
.tt-accordion .sa-single-accordion-item.open .sa-single-accordion-item__title {
  color: var(--white);
}
.tt-accordion .sa-single-accordion-item.open .sa-single-accordion-item__header i {
  color: var(--white);
}
.tt-accordion .sa-single-accordion-item.open .sa-single-accordion-item__body {
  padding-top: clamp(12px, 1.05vw, 20px);
}

.tt-category-title {
  text-align: center;
  background-color: #F8F8F8;
  border-radius: 20px;
  font-size: clamp(32px, 1.89vw, 36px);
  font-weight: 700;
  padding: clamp(22px, 1.42vw, 27px) clamp(8px, 0.63vw, 12px);
  margin-bottom: clamp(20px, 1.58vw, 30px);
}
@media screen and (max-width: 1199px) {
  .tt-category-title {
    font-size: 32px;
    padding: 22px 12px;
  }
}
@media screen and (max-width: 575px) {
  .tt-category-title {
    font-size: 30px;
  }
}

.tt-category-ads {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 1.58vw, 30px);
  margin-bottom: clamp(15px, 1.58vw, 30px);
  margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
  .tt-category-ads {
    gap: 20px;
  }
}
@media screen and (max-width: 479px) {
  .tt-category-ads {
    grid-template-columns: repeat(1, 1fr);
  }
}
.tt-category-ads video {
  max-width: 100%;
  border-radius: 20px;
}
.tt-category-ads .tt-sub-banner {
  margin-top: 0;
}
.tt-category-ads .tt-sub-banner__img {
  margin-bottom: 0;
}

.tt-pricing-banner {
  background-image: url(../img/pricing-page-banner.jpg);
}

.tt-packages {
  margin: 3.15vw 8.9vw;
}
@media screen and (max-width: 1880px) {
  .tt-packages {
    margin: 3.15vw 7.9vw;
  }
}
@media screen and (max-width: 1599px) {
  .tt-packages {
    margin: 40px 2.9vw;
  }
}
@media screen and (max-width: 1399px) {
  .tt-packages {
    margin: 40px 0;
  }
}

.tt-package {
  box-shadow: 0px 4px 70px rgba(255, 0, 0, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  --gap: 6.78vw;
  gap: var(--gap);
  padding: clamp(30px, 2.1vw, 40px);
}
@media screen and (max-width: 1880px) {
  .tt-package {
    --gap: 4.78vw;
  }
}
@media screen and (max-width: 1799px) {
  .tt-package {
    --gap: 3.78vw;
  }
}
@media screen and (max-width: 1399px) {
  .tt-package {
    --gap: 2.78vw;
    padding: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .tt-package {
    flex-direction: column;
    row-gap: 10px;
    align-items: flex-start;
  }
}
@media screen and (max-width: 479px) {
  .tt-package {
    padding: 20px;
  }
}
.tt-package:not(:last-child) {
  margin-bottom: clamp(12px, 1.05vw, 20px);
}
.tt-package h5,
.tt-package p {
  margin-bottom: 0;
}
.tt-package__title {
  flex-shrink: 0;
  font-weight: bold;
  font-size: clamp(21px, 1.26vw, 24px);
  width: 110px;
}
.tt-package p {
  font-weight: 600;
  width: 420px;
  font-size: clamp(13px, 0.84vw, 16px);
}
.tt-package__right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  min-width: clamp(320px, 18.92vw, 360px);
  min-width: 360px;
  max-width: 100%;
}
@media screen and (max-width: 1199px) {
  .tt-package__right {
    width: 100%;
    justify-content: space-between;
  }
}
@media screen and (max-width: 479px) {
  .tt-package__right {
    min-width: 0;
  }
}
.tt-package__price {
  font-weight: bold;
  font-size: clamp(19px, 1.26vw, 24px);
}
.tt-package__btn {
  flex-shrink: 0;
  background-color: var(--ttRed);
  height: clamp(38px, 2.21vw, 42px);
  border-radius: 999px;
  color: var(--white);
  padding: 0 clamp(14px, 1.05vw, 20px);
  font-weight: 600;
  font-size: clamp(13px, 0.84vw, 16px);
}
.tt-package__btn:hover {
  background-color: var(--black);
  color: var(--ttRed);
}

.tt-contact-banner {
  background-image: url(../img/contact-page-banner.jpg);
}

.tt-inner-contact-container {
  margin: clamp(35px, 2.1vw, 40px) 4.73vw clamp(25px, 1.58vw, 30px);
}
@media screen and (max-width: 1599px) {
  .tt-inner-contact-container {
    margin: 35px 0 25px;
  }
}

.tt-contact-infos {
  display: flex;
  justify-content: center;
  gap: clamp(25px, 1.58vw, 30px);
}
.tt-contact-infos > * {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 1399px) {
  .tt-contact-infos > * {
    width: auto;
    max-width: 45%;
    flex-grow: 1;
  }
}
@media screen and (max-width: 1199px) {
  .tt-contact-infos > * {
    max-width: 55%;
  }
}
@media screen and (max-width: 991px) {
  .tt-contact-infos > * {
    max-width: 100%;
  }
}
@media screen and (max-width: 1399px) {
  .tt-contact-infos {
    flex-wrap: wrap;
  }
}

.tt-contact-info {
  background-color: #F4F4F4;
  border-radius: 20px;
  padding: clamp(15px, 1.58vw, 30px);
  display: flex;
  gap: clamp(12px, 1.05vw, 20px);
  align-items: center;
}
@media screen and (max-width: 991px) {
  .tt-contact-info {
    flex-direction: column;
    padding: 15px;
    text-align: center;
  }
}
.tt-contact-info .icon {
  width: clamp(61px, 3.73vw, 71px);
  aspect-ratio: 1/1;
  background-color: var(--white);
  border-radius: 20px;
  padding: clamp(7px, 3.73vw, 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: clamp(30px, 1.84vw, 35px);
  color: var(--ttRed);
}
.tt-contact-info .title {
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: 600;
  margin-bottom: 3px;
}
.tt-contact-info .descr {
  font-weight: 400;
  font-size: clamp(13px, 0.84vw, 16px);
}
.tt-contact-info .descr a {
  color: var(--black);
  display: block;
}
.tt-contact-info .descr a:hover {
  color: var(--ttRed);
}

.tt-contact-form-container {
  background-color: #F4F4F4;
  margin-top: clamp(20px, 1.58vw, 30px);
  padding: clamp(30px, 2.63vw, 50px);
  border-radius: 20px;
}
@media screen and (max-width: 1199px) {
  .tt-contact-form-container {
    padding: 30px;
  }
}
@media screen and (max-width: 479px) {
  .tt-contact-form-container {
    padding: 15px;
  }
}
.tt-contact-form-container__title {
  text-align: center;
  font-weight: 700;
  font-size: clamp(32px, 1.89vw, 36px);
  margin-bottom: clamp(11px, 0.68vw, 13px);
}
@media screen and (max-width: 479px) {
  .tt-contact-form-container__title {
    font-size: 30px;
  }
}
.tt-contact-form-container__descr {
  text-align: center;
  margin-bottom: clamp(22px, 1.68vw, 32px);
  font-size: clamp(13px, 0.84vw, 16px);
}

.tt-contact-form .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(15px, 1.58vw, 30px);
}
@media screen and (max-width: 767px) {
  .tt-contact-form .grid {
    grid-template-columns: 1fr;
  }
}
.tt-contact-form input,
.tt-contact-form textarea {
  margin-bottom: clamp(15px, 1.58vw, 30px);
  display: block;
  height: clamp(52px, 4.31vw, 82px);
  border: rgba(255, 0, 0, 0.25) 1px solid;
  border-radius: 10px;
  padding: 0 clamp(15px, 1.84vw, 35px);
  max-width: 100%;
  width: 100%;
  font-size: clamp(13px, 0.84vw, 16px);
}
@media screen and (max-width: 575px) {
  .tt-contact-form input,
  .tt-contact-form textarea {
    margin-bottom: 20px;
  }
}
.tt-contact-form input[name=subject],
.tt-contact-form textarea[name=subject] {
  grid-column: 1/3;
}
@media screen and (max-width: 767px) {
  .tt-contact-form input[name=subject],
  .tt-contact-form textarea[name=subject] {
    grid-column: 1/2;
  }
}
.tt-contact-form textarea {
  padding: clamp(20px, 1.31vw, 25px) clamp(15px, 1.84vw, 35px);
  height: 235px;
  grid-column: 1/3;
}
@media screen and (max-width: 1199px) {
  .tt-contact-form textarea {
    padding: 20px 15px;
  }
}
@media screen and (max-width: 767px) {
  .tt-contact-form textarea {
    grid-column: 1/2;
  }
}
.tt-contact-form textarea:focus, .tt-contact-form textarea:focus-visible, .tt-contact-form textarea:focus-within {
  outline: none;
}
.tt-contact-form button {
  flex-shrink: 0;
  background-color: var(--ttRed);
  height: clamp(38px, 2.21vw, 42px);
  border-radius: 999px;
  color: var(--white);
  padding: 0 clamp(15px, 1.05vw, 20px);
  font-weight: 600;
}
.tt-contact-form button:hover {
  background-color: var(--black);
  color: var(--ttRed);
}

.tt-watch-history {
  margin: 0 14.7vw;
}
@media screen and (max-width: 1599px) {
  .tt-watch-history {
    margin: 0 11.5vw;
  }
}
@media screen and (max-width: 1399px) {
  .tt-watch-history {
    margin: 0 6.5vw;
  }
}
@media screen and (max-width: 1199px) {
  .tt-watch-history {
    margin: 0;
  }
}
.tt-watch-history-single {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 991px) {
  .tt-watch-history-single {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .tt-watch-history-single {
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 575px) {
  .tt-watch-history-single {
    flex-direction: column;
  }
}
.tt-watch-history-single:not(:last-child) {
  margin-bottom: clamp(16px, 1.05vw, 20px);
}
@media screen and (max-width: 575px) {
  .tt-watch-history-single .thumbnail {
    width: 100%;
  }
}
.tt-watch-history-single .thumbnail img {
  width: clamp(245px, 15.5vw, 295px);
  aspect-ratio: 295/175;
  object-fit: cover;
}
@media screen and (max-width: 575px) {
  .tt-watch-history-single .thumbnail img {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .tt-watch-history-single .logo {
    width: 100%;
  }
}
.tt-watch-history-single .logo img {
  width: clamp(30px, 15.5vw, 60px);
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media screen and (max-width: 575px) {
  .tt-watch-history-single .logo img {
    width: 100%;
  }
}
.tt-watch-history-single__txt {
  flex-grow: 1;
  max-width: 100%;
}
@media screen and (max-width: 575px) {
  .tt-watch-history-single__txt {
    width: 100%;
  }
}
.tt-watch-history-single__title {
  font-size: clamp(17px, 1.05vw, 20px);
}
.tt-watch-history-single .more-info {
  font-weight: 400;
  font-size: clamp(11px, 0.74vw, 14px);
  margin-bottom: clamp(16px, 1.16vw, 22px);
}
.tt-watch-history-single .more-info span {
  font-weight: 600;
}
.tt-watch-history-single .author-info {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.31vw, 25px);
}
.tt-watch-history-single .author-channel {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tt-watch-history-single .author-channel .name {
  color: var(--black);
  font-weight: 500;
}
.tt-watch-history-single .author-channel .name:hover {
  color: var(--ttRed);
}
.tt-watch-history-single__remover {
  transform: rotate(45deg);
  width: clamp(32px, 2vw, 38px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: rgba(255, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ttRed);
  font-size: clamp(13px, 0.84vw, 16px);
}
@media screen and (max-width: 575px) {
  .tt-watch-history-single__remover {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
  }
}
.tt-watch-history-single__remover:hover {
  color: white;
  background-color: var(--ttRed);
}
.tt-watch-history-single__remover i {
  padding-right: 1px;
  padding-top: 2px;
}

.tt-channel-content-title {
  margin-bottom: clamp(12px, 1.05vw, 20px);
  font-size: clamp(21px, 1.26vw, 24px);
  font-weight: 700;
  padding-top: clamp(2px, 0.26vw, 5px);
}
@media screen and (max-width: 479px) {
  .tt-channel-content-title {
    font-size: 20px;
  }
}

.tt-channel-content-table {
  width: 100%;
  min-width: max-content;
}
.tt-channel-content-table thead {
  background-color: #F5F5F5;
  height: clamp(62px, 3.78vw, 72px);
}
.tt-channel-content-table thead th {
  font-weight: 600;
  font-size: clamp(13px, 0.84vw, 16px);
  padding-right: clamp(20px, 1.58vw, 30px);
}
.tt-channel-content-table thead th:first-child {
  border-radius: 10px 0 0 10px;
  padding-left: clamp(20px, 1.58vw, 30px);
}
.tt-channel-content-table thead th:last-child {
  border-radius: 0 10px 10px 0;
  padding-right: clamp(20px, 1.58vw, 30px);
  text-align: right;
}
.tt-channel-content-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.tt-channel-content-table tbody tr:last-child .tt-author-video-actions {
  top: auto;
  bottom: clamp(28px, 2vw, 38px);
  right: clamp(70px, 4.2vw, 80px);
}
@media screen and (max-width: 991px) {
  .tt-channel-content-table tbody tr:last-child .tt-author-video-actions {
    bottom: clamp(50px, 6.83vw, 130px);
  }
}
.tt-channel-content-table tbody td {
  padding: clamp(15px, 1.05vw, 20px) 0;
  padding-right: clamp(20px, 1.58vw, 30px);
  position: relative;
  font-size: clamp(13px, 0.84vw, 16px);
}
.tt-channel-content-table tbody td:last-child {
  padding-right: clamp(20px, 1.58vw, 30px);
  text-align: right;
}

.tt-author-video {
  display: flex;
  align-items: center;
  gap: 5px clamp(15px, 1.05vw, 20px);
}
@media screen and (max-width: 991px) {
  .tt-author-video {
    align-items: flex-start;
  }
}
@media screen and (max-width: 479px) {
  .tt-author-video {
    flex-direction: row;
    max-width: 200px;
  }
}
.tt-author-video__thumb {
  max-width: clamp(110px, 6.83vw, 130px);
  border-radius: 6px;
  overflow: hidden;
}
.tt-author-video .tt-premium__status {
  left: 6px;
  top: 6px;
  height: 22px;
  padding: 0 7px;
  gap: 2px;
}
.tt-author-video .tt-premium__status i {
  font-size: 13px;
}
.tt-author-video__txt {
  font-size: clamp(11px, 0.74vw, 14px);
  font-weight: 400;
  color: var(--ttGray2);
}
.tt-author-video__txt .duration {
  display: inline-block;
  margin-bottom: 4px;
}
.tt-author-video__txt .add-descr {
  padding: 0;
  color: var(--ttGray2);
  text-align: left;
}
.tt-author-video__title {
  font-size: clamp(12px, 0.79vw, 15px);
  color: var(--black);
  margin-bottom: 5px;
  display: inline-block;
}
.tt-author-video__title:hover {
  color: var(--ttRed);
}
.tt-author-video-action-toggler {
  flex-shrink: 0;
  background-color: var(--ttRed);
  height: clamp(36px, 2.21vw, 42px);
  aspect-ratio: 1/1;
  border-radius: 999px;
  color: var(--white);
  font-weight: 600;
  padding: 0;
}
.tt-author-video-action-toggler:hover {
  background-color: var(--black);
  color: var(--ttRed);
}
.tt-author-video-action-toggler i {
  line-height: 2.5vw;
}
@media screen and (max-width: 575px) {
  .tt-author-video-action-toggler {
    padding-top: 4px;
  }
}
@media screen and (max-width: 479px) {
  .tt-author-video-action-toggler {
    padding-top: 4px;
  }
}
.tt-author-video-actions {
  text-align: left;
  position: absolute;
  top: clamp(28px, 1.84vw, 35px);
  right: clamp(70px, 4.2vw, 80px);
  min-width: clamp(135px, 7.88vw, 150px);
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 4px 64px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: clamp(6px, 0.47vw, 9px) clamp(12px, 0.79vw, 15px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media screen and (max-width: 991px) {
  .tt-author-video-actions {
    top: clamp(50px, 6.83vw, 130px);
  }
}
.tt-author-video-actions.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.tt-author-video-actions a {
  display: flex;
  flex-direction: column;
  color: var(--black);
  padding: 6px 0;
}
.tt-author-video-actions a:hover {
  color: var(--ttRed);
}

.tt-channel-content-pagination > button {
  color: var(--ttRed);
  height: clamp(17px, 1.05vw, 20px);
}
.tt-channel-content-pagination .pages {
  display: flex;
  gap: clamp(8px, 0.58vw, 11px);
  overflow: auto;
}
.tt-channel-content-pagination .pages a {
  width: clamp(35px, 2.1vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  background-color: rgba(158, 158, 158, 0.102);
  font-weight: 700;
  font-size: clamp(13px, 0.84vw, 16px);
  color: var(--black);
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 479px) {
  .tt-channel-content-pagination .pages a {
    width: 32px;
  }
}
.tt-channel-content-pagination .pages a:hover, .tt-channel-content-pagination .pages a.active {
  background-color: var(--ttRed);
  color: var(--white);
}

.tt-user-settings-container {
  margin: 0px 16.4vw;
}
@media screen and (max-width: 1599px) {
  .tt-user-settings-container {
    margin: 0px 12.4vw;
  }
}
@media screen and (max-width: 1199px) {
  .tt-user-settings-container {
    margin: 0px 8.4vw;
  }
}
@media screen and (max-width: 991px) {
  .tt-user-settings-container {
    margin: 0;
  }
}

.tt-channel-customize-form label {
  display: block;
  width: max-content;
  max-width: 100%;
  font-weight: 600;
  color: var(--black);
  font-size: clamp(13px, 0.84vw, 16px);
}
.tt-channel-customize-form input,
.tt-channel-customize-form textarea {
  border: 1px solid #D9D9D9;
  height: clamp(60px, 3.94vw, 75px);
  width: 100%;
  padding: 0 clamp(15px, 1.84vw, 35px);
  font-size: clamp(13px, 0.84vw, 16px);
  font-weight: 500;
  color: var(--black);
  border-radius: 10px;
}
@media screen and (max-width: 575px) {
  .tt-channel-customize-form input,
  .tt-channel-customize-form textarea {
    height: 60px;
    padding: 0 20px;
  }
}
.tt-channel-customize-form input::placeholder,
.tt-channel-customize-form textarea::placeholder {
  color: var(--ttGray2);
}
.tt-channel-customize-form input[type=file],
.tt-channel-customize-form textarea[type=file] {
  padding: clamp(37px, 2.52vw, 48px);
  height: auto;
}
@media screen and (max-width: 1199px) {
  .tt-channel-customize-form input[type=file],
  .tt-channel-customize-form textarea[type=file] {
    padding: clamp(28px, 2.52vw, 48px);
  }
}
.tt-channel-customize-form textarea {
  height: 196px;
  padding: clamp(15px, 1.05vw, 20px) clamp(15px, 1.84vw, 35px);
}
@media screen and (max-width: 479px) {
  .tt-channel-customize-form textarea {
    padding: 10px 15px;
  }
}
.tt-channel-customize-form textarea:focus, .tt-channel-customize-form textarea:focus-visible, .tt-channel-customize-form textarea:focus-within {
  outline: none;
}
.tt-channel-customize-form .dp,
.tt-channel-customize-form .cover-pic {
  position: relative;
  margin-bottom: clamp(12px, 1.05vw, 20px);
}
.tt-channel-customize-form .dp > label,
.tt-channel-customize-form .cover-pic > label {
  margin-bottom: clamp(8px, 0.63vw, 12px);
}
.tt-channel-customize-form .uploaded-dp-preview,
.tt-channel-customize-form .uploaded-cover-pic-preview {
  width: clamp(170px, 10.51vw, 200px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f8f8;
  position: relative;
}
.tt-channel-customize-form .uploaded-dp-preview img,
.tt-channel-customize-form .uploaded-cover-pic-preview img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tt-channel-customize-form .uploaded-dp-preview label,
.tt-channel-customize-form .uploaded-cover-pic-preview label {
  position: absolute;
  top: 13px;
  right: -4px;
  width: clamp(46px, 2.84vw, 54px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  color: var(--white);
  background-color: var(--black);
  border: 4px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.tt-channel-customize-form .uploaded-cover-pic-preview {
  width: 100%;
  aspect-ratio: 936/238;
  max-height: clamp(252px, 14.03vw, 267px);
  border-radius: 10px;
}
.tt-channel-customize-form .uploaded-cover-pic-preview img {
  border-radius: 10px;
}
.tt-channel-customize-form .uploaded-cover-pic-preview label {
  top: 20px;
  right: 20px;
}
.tt-channel-customize-form-btn {
  flex-shrink: 0;
  background-color: var(--black);
  height: clamp(35px, 2.21vw, 42px);
  border-radius: 999px;
  color: var(--white);
  padding: 0 clamp(14px, 1.05vw, 20px);
  font-weight: 600;
}
.tt-channel-customize-form-btn:hover {
  background-color: var(--ttRed);
}

.tt-search-result-heading {
  text-align: center;
  padding: clamp(70px, 5.78vw, 110px) 15px;
  border-radius: 20px;
  background: url(../img/search-result-heading-bg.png) var(--black) no-repeat center center;
  background-size: cover;
  color: var(--white);
  margin-bottom: clamp(20px, 1.58vw, 30px);
}
@media screen and (max-width: 1399px) {
  .tt-search-result-heading {
    padding: 70px 15px;
  }
}
@media screen and (max-width: 991px) {
  .tt-search-result-heading {
    padding: 60px 15px;
  }
}
.tt-search-result-heading h3 {
  font-size: clamp(32px, 1.89vw, 36px);
  font-weight: 600;
}
@media screen and (max-width: 1399px) {
  .tt-search-result-heading h3 {
    font-size: 32px;
  }
}
@media screen and (max-width: 991px) {
  .tt-search-result-heading h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 575px) {
  .tt-search-result-heading h3 {
    font-size: 22px;
  }
}
@media screen and (max-width: 479px) {
  .tt-search-result-heading h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 1399px) {
  .tt-search-result-wrapper {
    flex-direction: column;
  }
}
.tt-search-result-wrapper .left {
  flex-grow: 1;
  max-width: 100%;
}
@media screen and (max-width: 1399px) {
  .tt-search-result-wrapper .left {
    width: 100%;
  }
}
.tt-search-result-wrapper .right {
  width: 27.45vw;
  min-width: 400px;
  flex-shrink: 0;
  background-color: #f5f5f5;
  padding: clamp(15px, 1.05vw, 20px) clamp(20px, 1.58vw, 30px);
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .tt-search-result-wrapper .right {
    width: 100%;
    min-width: auto;
  }
}
.tt-search-result-wrapper .right .tt-section-heading {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: clamp(15px, 1.05vw, 20px);
}
.tt-search-result-wrapper .right .tt-video-horizontal:not(:last-child) {
  margin-bottom: clamp(15px, 1.05vw, 20px);
}

.tt-search-result-single {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: clamp(15px, 1.05vw, 20px);
}

.tt-shorts-container {
  position: relative;
}
@media screen and (max-width: 991px) {
  .tt-shorts-container {
    width: max-content;
    max-width: 100%;
    margin: auto;
  }
}

.tt-shorts-nav {
  display: flex;
  flex-direction: column;
  gap: clamp(7px, 3.73vw, 10px);
}
@media screen and (max-width: 991px) {
  .tt-shorts-nav {
    position: absolute;
    left: clamp(10px, 1.05vw, 20px);
    z-index: 2;
  }
}
@media screen and (max-width: 991px) and (max-width: 575px) {
  .tt-shorts-nav {
    left: 10px;
  }
}
.tt-shorts-nav button {
  background-color: rgba(255, 0, 0, 0.1);
  width: clamp(40px, 2.52vw, 48px);
  height: clamp(40px, 2.52vw, 48px);
  border-radius: 50%;
  color: var(--ttRed);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tt-shorts-nav button:first-child i {
  padding-top: 0;
}
.tt-shorts-nav button:hover {
  background-color: var(--ttRed);
  color: var(--white);
}
@media screen and (max-width: 991px) {
  .tt-shorts-nav button {
    background-color: rgba(255, 255, 255, 0.5);
  }
}
@media screen and (max-width: 575px) {
  .tt-shorts-nav button {
    width: 38px;
    height: 38px;
  }
}
@media screen and (max-width: 479px) {
  .tt-shorts-nav button {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}
.tt-shorts-nav button i {
  padding-top: 5px;
}

.tt-shorts-video-container {
  width: clamp(448px, 26.69vw, 508px);
  margin-bottom: clamp(15px, 1.05vw, 20px);
  overflow: hidden;
  background-color: #f8f8f8;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  aspect-ratio: 508/905;
}
@media screen and (max-width: 1199px) {
  .tt-shorts-video-container {
    width: 418px;
  }
}
@media screen and (max-width: 991px) {
  .tt-shorts-video-container {
    width: 100%;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 767px) {
  .tt-shorts-video-container {
    height: 80vh;
    margin: 0;
  }
}
@media screen and (max-width: 479px) {
  .tt-shorts-video-container {
    height: 75vh;
  }
}
.tt-shorts-video-container .plyr {
  max-height: 100%;
}
.tt-shorts-video-container .plyr--video .plyr__controls {
  inset: auto;
  top: 25px;
  right: 25px;
  margin-left: auto;
  background: none;
  padding: 0;
}
.tt-shorts-video-container video {
  max-width: 100%;
  object-fit: fill;
  width: 100%;
  max-height: 100%;
}
.tt-shorts-video-container::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 40%;
  background: linear-gradient(to bottom, transparent, var(--black));
  pointer-events: none;
}

.tt-shorts-video-txt {
  position: absolute;
  bottom: clamp(20px, 1.58vw, 30px);
  left: clamp(20px, 1.58vw, 30px);
}
@media screen and (max-width: 479px) {
  .tt-shorts-video-txt {
    bottom: 15px;
    left: 15px;
  }
}
.tt-shorts-video-txt .author-info {
  display: flex;
  align-items: center;
  gap: clamp(20px, 1.31vw, 25px);
  margin-bottom: 12px;
}
.tt-shorts-video-txt .author-channel {
  display: flex;
  align-items: center;
  font-size: clamp(12px, 0.79vw, 15px);
  gap: 10px;
  font-weight: 600;
}
.tt-shorts-video-txt .author-channel a {
  color: var(--white);
}
.tt-shorts-video-txt .author-channel a:hover {
  color: var(--ttRed);
}
.tt-shorts-video-txt .tt-video__infos {
  color: var(--white);
}
.tt-shorts-video-txt .tt-video__infos *:not(:last-child) {
  border-right: 1px solid rgb(255, 255, 255);
}

@media screen and (max-width: 991px) {
  .tt-shorts-interactions {
    position: absolute;
    right: 20px;
  }
}
@media screen and (max-width: 575px) {
  .tt-shorts-interactions {
    right: 10px;
  }
}

.tt-shorts-interaction {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}
.tt-shorts-interaction:not(:last-child) {
  margin-bottom: clamp(16px, 1.16vw, 22px);
}
@media screen and (max-width: 575px) {
  .tt-shorts-interaction:not(:last-child) {
    margin-bottom: 10px;
  }
}
.tt-shorts-interaction button,
.tt-shorts-interaction a {
  width: clamp(42px, 2.73vw, 52px);
  height: clamp(42px, 2.73vw, 52px);
  border-radius: 50%;
  background-color: rgba(255, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ttRed);
  font-size: clamp(13px, 0.84vw, 16px);
  transition: all 0.3s;
}
@media screen and (max-width: 575px) {
  .tt-shorts-interaction button,
  .tt-shorts-interaction a {
    width: 42px;
    height: 42px;
  }
}
@media screen and (max-width: 479px) {
  .tt-shorts-interaction button,
  .tt-shorts-interaction a {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
}
.tt-shorts-interaction button:hover,
.tt-shorts-interaction a:hover {
  background-color: var(--ttRed);
  color: var(--white);
}
@media screen and (max-width: 991px) {
  .tt-shorts-interaction button,
  .tt-shorts-interaction a {
    background-color: rgba(255, 255, 255, 0.5);
  }
}
.tt-shorts-interaction button i,
.tt-shorts-interaction a i {
  padding-top: 2px;
}
.tt-shorts-interaction .txt {
  color: rgb(117, 117, 117);
}

.tt-live-stream-chat {
  padding: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tt-live-stream-chat .heading {
  padding: clamp(18px, 1.37vw, 26px) clamp(20px, 1.58vw, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 575px) {
  .tt-live-stream-chat .heading {
    padding: 16px 20px;
  }
}
.tt-live-stream-chat .heading .title {
  font-size: clamp(17px, 1.05vw, 20px);
}
.tt-live-stream-chat .heading .close {
  font-size: clamp(11px, 0.74vw, 14px);
}
.tt-live-stream-chat .heading .close:hover {
  color: var(--ttRed);
}
.tt-live-stream-chat .chats {
  padding: clamp(20px, 1.58vw, 30px);
}
@media screen and (max-width: 575px) {
  .tt-live-stream-chat .chats {
    padding: 20px;
  }
}

.tt-live-chat-form-wrapper {
  padding: clamp(20px, 1.58vw, 30px);
}
@media screen and (max-width: 575px) {
  .tt-live-chat-form-wrapper {
    padding: 20px;
  }
}
.tt-live-chat-form-wrapper form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 1.05vw, 20px);
}
.tt-live-chat-form-wrapper form > * {
  background-color: #f0f0f0;
  border-radius: 10px;
  height: clamp(38px, 2.36vw, 45px);
  padding: 0 20px;
}
.tt-live-chat-form-wrapper form input {
  width: 100%;
}
.tt-live-chat-form-wrapper form button {
  flex-shrink: 0;
  color: var(--ttRed);
}
.tt-live-chat-form-wrapper form button:hover {
  background-color: var(--ttRed);
  color: var(--white);
}

.tt-live-stream-details__heading {
  flex-wrap: wrap;
}

.tt-404-banner {
  background-image: url(../img/404-page-banner.jpg);
}

.tt-404-content {
  padding: clamp(50px, 3.15vw, 60px) 0;
}
.tt-404-content img {
  margin-bottom: clamp(25px, 1.84vw, 35px);
  max-width: clamp(482px, 28.74vw, 547px);
}
@media screen and (max-width: 575px) {
  .tt-404-content img {
    max-width: 100%;
  }
}
.tt-404-content .title {
  font-weight: 700;
  font-size: clamp(32px, 1.89vw, 36px);
  margin-bottom: clamp(30px, 2.1vw, 40px);
}
@media screen and (max-width: 1199px) {
  .tt-404-content .title {
    font-size: 32px;
  }
}
@media screen and (max-width: 991px) {
  .tt-404-content .title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 575px) {
  .tt-404-content .title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 479px) {
  .tt-404-content .title {
    font-size: 25px;
  }
}

.tt-404-btn {
  flex-shrink: 0;
  background-color: var(--ttRed);
  height: clamp(38px, 2.21vw, 42px);
  border-radius: 999px;
  color: var(--white);
  padding: 0 clamp(12px, 1.05vw, 20px);
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: clamp(13px, 0.84vw, 16px);
  line-height: clamp(38px, 2.21vw, 42px);
}
.tt-404-btn:hover {
  background-color: var(--black);
  color: var(--ttRed);
}

.tt-coming-soon-wrapper {
  min-height: 100vh;
  background: url(../img/coming-soon-bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: clamp(40px, 2.63vw, 50px) clamp(10px, 0.79vw, 15px);
}
.tt-coming-soon-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.8);
}
.tt-coming-soon-wrapper .tt-footer-top__socials {
  justify-content: center;
}
.tt-coming-soon-wrapper .sub-title {
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: clamp(8px, 0.74vw, 14px);
}
@media screen and (max-width: 575px) {
  .tt-coming-soon-wrapper .sub-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 479px) {
  .tt-coming-soon-wrapper .sub-title {
    font-size: 14px;
  }
}
.tt-coming-soon-wrapper .title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(76px, 5.04vw, 96px);
  margin-bottom: clamp(30px, 2.1vw, 40px);
}
@media screen and (max-width: 767px) {
  .tt-coming-soon-wrapper .title {
    font-size: 76px;
  }
}
@media screen and (max-width: 575px) {
  .tt-coming-soon-wrapper .title {
    font-size: 62px;
  }
}
@media screen and (max-width: 479px) {
  .tt-coming-soon-wrapper .title {
    font-size: 40px;
  }
}

#tt-coming-soon-timer {
  margin-top: clamp(50px, 3.15vw, 60px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(20px, 1.58vw, 30px);
  text-transform: uppercase;
  margin-bottom: 50px;
  font-size: clamp(11px, 0.74vw, 14px);
  font-weight: 700;
}
@media screen and (max-width: 575px) {
  #tt-coming-soon-timer {
    gap: 15px;
  }
}
#tt-coming-soon-timer .number {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  font-size: clamp(38px, 2.52vw, 48px);
  font-weight: 700;
  aspect-ratio: 1/1;
  min-width: clamp(86px, 5.04vw, 96px);
  padding: 0 clamp(10px, 0.79vw, 15px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(7px, 0.53vw, 10px);
}
@media screen and (max-width: 479px) {
  #tt-coming-soon-timer .number {
    font-size: 38px;
    min-width: 86px;
  }
}

.tt-softwares {
  --container-space-x: 30px;
  max-width: calc(clamp(1197px, 63.06vw, 1200px) + var(--container-space-x));
  margin: auto;
  padding-inline: calc(var(--container-space-x) / 2);
}

.tt-software {
  border-block-start: 1px solid #e0e0e0;
  padding: 16px 0;
  display: flex;
  align-items: flex-start;
  gap: 5px 30px;
}
@media screen and (max-width: 991px) {
  .tt-software {
    flex-direction: column;
  }
}
.tt-software .left {
  flex-grow: 1;
  flex-basis: 78%;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 479px) {
  .tt-software .left {
    flex-direction: column;
  }
}
.tt-software .right {
  flex-basis: 22%;
  flex-shrink: 0;
}
@media screen and (max-width: 1399px) {
  .tt-software .right {
    flex-basis: 30%;
  }
}
.tt-software__img {
  flex-shrink: 0;
}
.tt-software__img img {
  width: 100px;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.tt-software__title {
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-block-end: 4px;
  font-size: clamp(20px, 1.26vw, 24px);
  font-weight: 600;
  overflow: hidden;
}
.tt-software__title a {
  color: #141415;
}
.tt-software__title a:hover {
  color: var(--ttRed);
}
.tt-software__infos {
  display: flex;
  gap: 10px;
  margin-bottom: 6px;
}
.tt-software__price {
  color: var(--ttRed);
}
.tt-software__btn {
  background-color: var(--ttRed);
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  height: 45px;
  border-radius: 8px;
  font-weight: 500;
  margin-bottom: 20px;
  padding: 0 10px;
}
.tt-software .right a {
  font-size: 14px;
}
.tt-software__platforms a {
  color: var(--ttRed);
  border-right: 1px solid #c0c0c0;
  padding-right: 10px;
  margin-right: 10px;
}
.tt-software__platforms a:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.tt-software__links {
  margin-top: 6px;
}
.tt-software__links a {
  color: var(--black);
  border-right: 1px solid #c0c0c0;
  padding-right: 10px;
  margin-right: 10px;
}
.tt-software__links a:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}/*# sourceMappingURL=style.css.map */