body {
    padding: 0;
    margin: 0;
    font-family: "general_sans";
    background: #131111;
}

* {
    box-sizing: border-box;
    transition: all 0.5s ease;
}

/* width */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 8px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1019607843);
    border-radius: 8px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #1f1f1f;
}

ul,
ol {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input,
button,
select {
    background: transparent;
    border: none;
}

input:hover,
input:focus,
input:focus-within,
button:hover,
button:focus,
button:focus-within,
select:hover,
select:focus,
select:focus-within {
    box-shadow: none;
    outline: none;
}

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

a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

.siteContainer {
    max-width: 1312px;
    padding: 0 16px;
    margin: 0 auto;
    width: 100%;
}

.mainHeader {
    padding: 16px 0;
    background: rgb(23, 23, 23);
    height: 72px;
    position: sticky;
    top: 0;
    z-index: 3;
    display: flex;
    align-items: center;
}
.mainHeader__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.mainHeader__logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}
@media only screen and (max-width: 991px) {
    .mainHeader__logo img {
        height: 26px;
    }
}
@media only screen and (max-width: 991px) {
    .mainHeader__menu {
        display: none;
        position: absolute;
        top: 100%;
        width: 100%;
        left: 0;
        z-index: 1;
    }
}
.mainHeader__menu ul {
    display: flex;
    align-items: center;
    gap: 16px;
}
@media only screen and (max-width: 991px) {
    .mainHeader__menu ul {
        padding: 10px;
        gap: 6px;
        background: rgba(0, 0, 0, 0.62);
        border-top: 1px solid #ffffff;
        backdrop-filter: blur(20px);
        border-bottom: 1px solid #ffffff;
        flex-direction: column;
        text-align: left;
        align-items: stretch;
    }
}
.mainHeader__menu ul a {
    padding: 8px 16px;
    font-size: 16px;
    line-height: 22px;
    color: rgb(183, 190, 199);
    font-weight: 400;
    border: 1px solid transparent;
    display: inline-block;
}
@media only screen and (max-width: 991px) {
    .mainHeader__menu ul a {
        width: 100%;
        display: block;
    }
}
.mainHeader__menu ul a:hover {
    color: #fff;
    font-weight: 500;
    border-color: #fff;
}
.mainHeader__menu ul a.active {
    color: #fff;
    font-weight: 500;
    border-color: #fff;
}
.mainHeader__menu ul li:last-child a {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    font-weight: 500;
    color: #fff;
    border-radius: 4px;
}
@media only screen and (max-width: 991px) {
    .mainHeader__menu ul li:last-child a {
        text-align: center;
    }
}
.mainHeader .toggleMenu {
    height: 32px;
    width: 32px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    display: none;
}
@media only screen and (max-width: 991px) {
    .mainHeader .toggleMenu {
        display: flex;
    }
}
.mainHeader .toggleMenu img {
    height: 24px;
    width: 24px;
}
.mainHeader .toggleMenu img.close {
    display: none;
}
.mainHeader.menu-open .toggleMenu .open {
    display: none;
}
.mainHeader.menu-open .toggleMenu .close {
    display: block;
}
@media only screen and (max-width: 991px) {
    .mainHeader.menu-open .mainHeader__menu {
        display: block;
    }
}

.onboardingModal {
    background: rgba(0, 0, 0, 0.4);
}
.onboardingModal .modal-dialog {
    max-width: 580px;
    width: 100%;
    transform: translateY(-50%) !important;
    top: 50%;
    margin: 10px auto;
}
@media only screen and (max-width: 767px) {
    .onboardingModal .modal-dialog {
        width: calc(100% - 20px);
    }
}
.onboardingModal .modal-dialog .modal-content {
    background: #000;
    border: 1px solid #fff;
    border-radius: 0;
}
.onboardingModal .modal-dialog .modal-content .carousel-indicators {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    margin: 0 auto;
    position: static;
    margin: 0;
}
.onboardingModal .modal-dialog .modal-content .carousel-indicators button {
    padding: 0;
    margin: 0;
    width: 20px;
    height: 3px;
    border: none;
    background: rgba(255, 255, 255, 0.4);
}
.onboardingModal
    .modal-dialog
    .modal-content
    .carousel-indicators
    button.active {
    background: #fff;
    width: 32px;
}
.onboardingModal .onboardingSlider__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 24px 24px;
}
@media only screen and (max-width: 767px) {
    .onboardingModal .onboardingSlider__nav {
        padding: 0 20px 20px;
    }
}
.onboardingModal .onboardingSlider__nav-button {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
    .onboardingModal .onboardingSlider__nav-button {
        gap: 10px;
    }
}
.onboardingModal .onboardingSlider__nav-button button {
    position: static;
    width: fit-content;
    height: 40px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #fff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #000;
    opacity: 1;
}
.onboardingModal .onboardingSlider__nav-button button.carousel-control-prev {
    border-color: #2c2f33;
    color: #fff;
    background: transparent;
}

.onboardingCard__img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.onboardingCard__content {
    padding: 24px;
}
@media only screen and (max-width: 767px) {
    .onboardingCard__content {
        padding: 20px;
    }
}
.onboardingCard__content p {
    font-size: 14px;
    line-height: 20px;
    color: #8d9299;
    font-weight: 400;
}
.onboardingCard__title {
    font-size: 20px;
    line-height: 27px;
    color: #ffffff;
    font-weight: 500;
    margin: 0 0 8px;
}

.heroModule {
    min-height: calc(100vh - 72px);
    padding: 64px 0 80px;
    position: relative;
    overflow: hidden;
}
@media only screen and (max-width: 991px) {
    .heroModule {
        padding: 40px 0 60px;
    }
}
.heroModule__slider {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.heroModule__slider .carousel-inner {
    height: 100%;
}
.heroModule__slider .carousel-inner .carousel-item {
    height: 100%;
}
.heroModule__slider .carousel-inner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.heroModule__slider .carousel-item {
    position: relative;
}
.heroModule__slider .carousel-item::before {
    content: "";
    height: 100%;
    width: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}
.heroModule__slider .carousel-indicators {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    margin: 0 auto;
    max-width: 1312px;
    padding: 0 16px;
    bottom: 72px;
}
@media only screen and (max-width: 991px) {
    .heroModule__slider .carousel-indicators {
        bottom: 36px;
    }
}
.heroModule__slider .carousel-indicators button {
    padding: 0;
    margin: 0;
    width: 20px;
    height: 3px;
    border: none;
    background: rgba(255, 255, 255, 0.4);
}
.heroModule__slider .carousel-indicators button.active {
    background: #fff;
    width: 40px;
}
.heroModule__inner {
    position: relative;
    z-index: 1;
    max-width: 750px;
    width: 100%;
}
.heroModule__inner p {
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    font-weight: normal;
    margin: 0;
}
@media only screen and (max-width: 991px) {
    .heroModule__inner p {
        line-height: 24px;
    }
}
.heroModule__subTitle {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(17px);
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 16px;
    display: inline-flex;
}
.heroModule__title {
    font-size: 64px;
    line-height: 80px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 16px;
}
@media only screen and (max-width: 991px) {
    .heroModule__title {
        font-size: 42px;
        line-height: 50px;
    }
}
.heroModule__form {
    margin-top: 100px;
    max-width: 652px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(17px);
    padding: 24px;
    display: flex;
    align-items: flex-end;
    gap: 15px;
}
@media only screen and (max-width: 991px) {
    .heroModule__form {
        margin-top: 50px;
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
}
.heroModule__form-field {
    flex: 1 0 0;
}
.heroModule__form-field label {
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 18px;
    display: block;
}
.heroModule__form-field input {
    background: rgba(255, 255, 255, 0.2);
    padding: 14px 16px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    font-weight: 500;
    backdrop-filter: blur(54px);
    width: 100%;
    height: 48px;
}
.heroModule__form-field input::placeholder {
    color: rgb(177, 177, 177);
}
.heroModule__form-btn {
    background: #000;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    font-weight: 500;
    height: 48px;
    white-space: nowrap;
}

.historyTemplate {
    padding: 170px 0 40px;
}
.historyTemplate__head {
    padding-bottom: 32px;
    position: fixed;
    top: 72px;
    z-index: 1;
    background: #131111;
    max-width: 1280px;
    width: 100%;
    padding-top: 40px;
}
.historyTemplate__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media only screen and (max-width: 991px) {
    .historyTemplate__body {
        grid-template-columns: 1fr;
    }
}
.historyTemplate__title {
    font-size: 32px;
    line-height: 42px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 20px;
}
@media only screen and (max-width: 767px) {
    .historyTemplate__title {
        font-size: 28px;
        line-height: 36px;
    }
}
.historyTemplate__tabs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    background: #131111;
}
.historyTemplate__tabs button {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.0705882353);
    backdrop-filter: blur(54px);
    height: 36px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #ffffff;
    border-radius: 0;
    white-space: nowrap;
}
.historyTemplate__tabs button:hover {
    color: #fff;
}
.historyTemplate__tabs button.active {
    background: #fff;
    color: #000000;
}
.historyTemplate__tabs button.active:hover {
    color: #000000;
}
.historyTemplate__tabs button:focus {
    box-shadow: none;
}

.historyCard {
    background: #1f1f1f;
    padding: 16px;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
    height: 100%;
}
.historyCard__content {
    padding-bottom: 20px;
    border-bottom: 1px solid #2a2c2e;
    display: flex;
    flex: 1 0 0;
    flex-direction: column;
    gap: 8px;
}
.historyCard__content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #8d9299;
}
.historyCard__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.historyCard__title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: #fff;
}
.historyCard__date {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #8d9299;
}
.historyCard__creator {
    display: flex;
    align-items: center;
    gap: 12px;
}
@media only screen and (max-width: 767px) {
    .historyCard__creator {
        align-items: start;
    }
}
.historyCard__creator-img {
    height: 48px;
    width: 48px;
    object-fit: cover;
}
.historyCard__creator-text {
    flex: 1 0 0;
}
.historyCard__creator-text p {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #8d9299;
}
.historyCard__creator-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 4px;
    flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
    .historyCard__creator-heading {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }
}
.historyCard__creator-title {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #fff;
}
.historyCard__creator-name {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #8d9299;
}
.historyCard__creator-name a {
    color: #fff;
    text-decoration: none;
}
.historyCard__creator-name a:hover {
    color: #fff;
    text-decoration: underline;
}

.channelTemplate {
    padding: 40px 0;
}
.channelTemplate__head {
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
    .channelTemplate__head {
        flex-direction: column;
        align-items: stretch;
    }
}
.channelTemplate__form {
    display: flex;
    gap: 20px;
    align-items: center;
    flex: 1 0 0;
    justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
    .channelTemplate__form {
        gap: 12px;
        justify-content: flex-start;
    }
}
@media only screen and (max-width: 600px) {
    .channelTemplate__form {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
.channelTemplate__form-btn {
    background: #ffffff;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    font-weight: 500;
    height: 44px;
    white-space: nowrap;
    backdrop-filter: blur(54px);
}
.channelTemplate__form input {
    background: rgba(255, 255, 255, 0.2);
    padding: 14px 16px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    font-weight: 500;
    backdrop-filter: blur(54px);
    width: 100%;
    height: 44px;
    max-width: 333px;
    min-width: 280px;
}
@media only screen and (max-width: 600px) {
    .channelTemplate__form input {
        max-width: 100%;
    }
}
.channelTemplate__form input::placeholder {
    color: #b1b1b1;
}
.channelTemplate__body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px 16px;
}
@media only screen and (max-width: 991px) {
    .channelTemplate__body {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}
@media only screen and (max-width: 767px) {
    .channelTemplate__body {
        grid-template-columns: 1fr;
    }
}
.channelTemplate__title {
    font-size: 32px;
    line-height: 42px;
    color: #fff;
    font-weight: 600;
    margin: 0;
}
@media only screen and (max-width: 767px) {
    .channelTemplate__title {
        font-size: 28px;
        line-height: 36px;
    }
}

.channelCard {
    background: #1f1f1f;
    padding: 16px;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: space-between;
    height: 100%;
}
.channelCard__img {
    height: 384px;
    width: 100%;
}
@media only screen and (max-width: 767px) {
    .channelCard__img {
        height: 300px;
    }
}
.channelCard__img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.channelCard__title {
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 5px;
}
.channelCard__content {
    flex: 1 0 0;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-direction: column;
}
.channelCard__content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #8d9299;
}
.channelCard__button {
    border: 1px solid #565d67;
    padding: 8px 16px;
    height: 36px;
    border-radius: 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #fff;
    background: transparent;
    width: fit-content;
}
.channelCard__button:hover {
    background: #565d67;
}
.channelCard__button.subscribe {
    border-color: #fd4242;
    background: #fd4242;
}
.channelCard__button.subscribe:hover {
    background: #fd4242;
    color: #fff;
}

.channelDetailsTemplate {
    min-height: calc(100vh - 72px);
    background-size: cover;
    background-position: center;
    padding: 40px 0 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.channelDetailsTemplate::before {
    content: "";
    height: 100%;
    width: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.channelDetailsCard {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5411764706);
    border: 1px solid #ffffff;
    border-bottom: none;
    max-width: 724px;
    margin: 0 auto;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    backdrop-filter: blur(20px);
    justify-content: space-between;
}
@media only screen and (max-width: 767px) {
    .channelDetailsCard {
        padding: 20px;
        gap: 20px;
    }
}
.channelDetailsCard__title {
    font-size: 32px;
    line-height: 42px;
    color: #fff;
    font-weight: 500;
    margin: 32px 0 0;
}
@media only screen and (max-width: 767px) {
    .channelDetailsCard__title {
        margin: 20px 0 0;
        font-size: 28px;
        line-height: 36px;
    }
}
.channelDetailsCard__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 12px 0 0;
}
@media only screen and (max-width: 767px) {
    .channelDetailsCard__text {
        gap: 12px;
    }
}
.channelDetailsCard__text p {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: 400;
}
@media only screen and (max-width: 767px) {
    .channelDetailsCard__text p {
        font-size: 14px;
        line-height: 20px;
    }
}
.channelDetailsCard__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
@media only screen and (max-width: 767px) {
    .channelDetailsCard__buttons {
        gap: 12px;
    }
}
.channelDetailsCard__buttons #copy {
    border: 1px solid #565d67;
    padding: 14px 16px;
    height: 48px;
    border-radius: 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #fff;
    background: transparent;
    width: fit-content;
    display: inline-flex;
    align-items: center;
}
.channelDetailsCard__buttons #copy:hover {
    background: #565d67;
}
.channelDetailsCard__buttons #copy.copied {
    color: #ffc8c8;
}
.channelDetailsCard__buttons #subscribe {
    border: 1px solid #fff;
    padding: 14px 16px;
    height: 48px;
    border-radius: 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #000;
    background: #fff;
    width: fit-content;
    display: inline-flex;
    align-items: center;
}
.channelDetailsCard__buttons #subscribe:hover {
    background: transparent;
    color: #fff;
}
.channelDetailsCard__buttons #subscribe.subscribe {
    border-color: #fd4242;
    background: #fd4242;
    color: #fff;
}
.channelDetailsCard__buttons #subscribe.subscribe:hover {
    background: #fd4242;
    color: #fff;
}

.backBtn {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #fff;
}
.backBtn:hover {
    opacity: 60%;
    color: #fff;
}

footer {
    background-color: #1a2525;
    color: #a3bffa;
    padding: 1rem 0;

}
.nav-link {
    color: #a3bffa;
    margin-left: "5px";
}
.nav-link:hover {
    color: #fff;
}

.channelTemplate__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.channelTemplate__form-btn {
    width: fit-content;
}
.modal-content.dark-mode {
    background-color: #1a1a1a;
    color: #ffffff;
    border: 1px solid #333;
}
.modal-content.dark-mode .modal-header {
    background-color: #2c2c2c;
    border-bottom: 1px solid #444;
}
.modal-content.dark-mode .modal-title {
    color: #ffffff;
}
.modal-content.dark-mode .modal-body {
    background-color: #1a1a1a;
}
.modal-content.dark-mode .form-control {
    background-color: #333;
    color: #ffffff;
    border: 1px solid #555;
}
.modal-content.dark-mode .form-control::placeholder {
    color: #aaa;
}
.modal-content.dark-mode .form-control:focus {
    background-color: #333;
    color: #ffffff;
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.modal-content.dark-mode .btn-secondary {
    background-color: #555;
    border-color: #555;
    color: #ffffff;
}
.modal-content.dark-mode .btn-secondary:hover {
    background-color: #666;
    border-color: #666;
}
/*# sourceMappingURL=style.css.map */
