/*
0 - 350px;         Small Phone
350 - 600px;       Phone
600 - 900px;       Table potrait
900 - 1200px;      Table landscape
1200 - 1800px ( is where the normal style is applies )
1200 - 1800+ px;   Big desktop
$breakpoint arguement choices :
- sm-phone
- phone
- tab-port
- tab-land
- big-desktop
 ORDER: Base + Typography > genarel layout + grid > page layout > components
*/
/* ============================================ */
/* ================ universal selector adjustment ================ */
/* ============================================ */
*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

/* ============================================ */
/* ================ html font size adjustment ================ */
/* ============================================ */
html {
    scroll-behavior: smooth;
    font-size: 10px;
}

/* ============================================ */
/* ================ body customization ================ */
/* ============================================ */
body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #050505 !important;
    font-family: "Urbanist", sans-serif !important;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.5px;
}

body a {
    text-decoration: none;
}

body button,
body button:focus {
    outline: none;
}

/* ============================================ */
/* ================ section padding ================ */
/* ============================================ */
section {
    padding: 9rem 0;
}

@media only screen and (max-width: 1200px) {
    section {
        padding: 6.5rem 0;
    }
}

@media only screen and (max-width: 900px) {
    section {
        padding: 5.5rem 0;
    }
}

@media only screen and (max-width: 600px) {
    section {
        padding: 6.5rem 12px;
    }
}

section .row {
    padding: 0 3rem;
}

@media only screen and (max-width: 900px) {
    section .row {
        padding: 0;
    }
}

@media only screen and (max-width: 600px) {
    section .row {
        padding: 0 1.4rem;
    }
}

/* ============================================ */
/* ================ no gutters for row ================ */
/* ============================================ */
.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*=" col-"] {
    padding-right: 0;
    padding-left: 0;
}

/* ============================================ */
/* ================ customize selection ================ */
/* ============================================ */
::-moz-selection {
    background-color: #050505;
    color: #fff;
}
::selection {
    background-color: #050505;
    color: #fff;
}

.heading-main {
    font-size: 4.6rem;
    color: #fff;
    font-weight: 800;
    margin: 0 0 4rem 0;
}

@media only screen and (max-width: 600px) {
    .heading-main {
        margin-bottom: 1.8rem;
    }
}

.brand {
    margin-top: 12rem;
}

.brand-logo {
    width: auto;
}

.brand-logo__inner img {
    height: 4rem;
}

.brand-logo img {
    width: auto;
    height: 8rem;
}

@media only screen and (max-width: 900px) {
    .brand-logo img {
        height: 6.5rem;
    }
}

@media only screen and (max-width: 600px) {
    .brand-logo img {
        height: 5rem;
    }
}

.brand-des {
    font-size: 2.4rem;
    color: #fff;
    margin-top: 3rem;
    opacity: 0.7;
}

@media only screen and (max-width: 900px) {
    .brand-des {
        font-size: 2.2rem;
    }
}

@media only screen and (max-width: 600px) {
    .brand-des {
        padding: 0 4rem;
        font-size: 2rem;
    }
}

.creator-card {
    padding: 4rem;
    border-radius: 2.2rem;
    background-color: #1c1d21;
    border: 1px solid rgba(255, 255, 255, 0);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (max-width: 900px) {
    .creator-card {
        padding: 3.5rem;
        margin-bottom: 1.5rem;
    }
}

.creator-card:hover {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-box-shadow: 0px 8px 42px #0b0b0d;
    box-shadow: 0px 8px 42px #0b0b0d;
}

.creator-card__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.creator-card__top-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.creator-card__top-left .hashtag {
    font-size: 1.6rem;
    color: #aeaeae;
    margin-bottom: 1.5rem;
}

.creator-card__btm {
    margin-top: 3rem;
}

.creator-dp {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background-color: #fff;
}

@media only screen and (max-width: 900px) {
    .creator-dp {
        width: 8rem;
        height: 8rem;
    }
}

.creator-dp img {
    width: 100%;
    height: 100%;
}

.creator-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.creator-social_link {
    font-size: 2.4rem;
    color: #fff;
    text-decoration: none;
}

@media only screen and (max-width: 900px) {
    .creator-social_link {
        font-size: 2.8rem;
    }
}

.creator-social_link:hover {
    text-decoration: none;
    color: #fff;
}

.creator-social_link img {
    width: auto;
    height: 2.3rem;
    margin-left: 1.6rem;
    margin-top: -8px;
}

@media only screen and (max-width: 900px) {
    .creator-social_link img {
        height: 2.6rem;
    }
}

.creator-name {
    font-size: 2.6rem;
    color: #fff;
    font-weight: 600;
}

@media only screen and (max-width: 900px) {
    .creator-name {
        font-size: 2.4rem;
    }
}

.creator-handle {
    font-size: 1.9rem;
    color: #aeaeae;
    margin-top: 8px;
    margin-bottom: 3rem;
}

@media only screen and (max-width: 900px) {
    .creator-handle {
        font-size: 1.7rem;
        margin-bottom: 2.5rem;
    }
}

.creator .file-btn__link {
    text-decoration: none;
    width: 100% !important;
    height: auto;
    padding: 1.6rem 1.8rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    background-color: #292b30;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 1.4rem;
}

@media only screen and (max-width: 900px) {
    .creator .file-btn__link {
        padding: 1.4rem 1.8rem;
        font-size: 1.6rem;
    }
}

.resources-box {
    width: 100%;
    height: auto;
    padding: 4rem;
    background-color: #1c1d21;
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 2.2rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media only screen and (max-width: 600px) {
    .resources-box {
        padding: 3.5rem;
        margin-bottom: 1.5rem;
    }
}

.resources-box:hover {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-box-shadow: 0px 8px 42px #0b0b0d;
    box-shadow: 0px 8px 42px #0b0b0d;
}

.resources-box__img {
    width: auto;
    height: 7.2rem;
}

.resources-box__img img {
    width: auto;
    height: 100%;
}

.resources-box__name {
    font-size: 2.2rem;
    color: #fff;
    margin-top: 3rem;
    font-weight: 600;
}

.resources-box__des {
    font-size: 1.6rem;
    color: #aeaeae;
    margin-top: 8px;
    margin-bottom: 0;
}

@media only screen and (max-width: 600px) {
    .resources-box__des {
        font-size: 1.7rem;
    }
}

.maker-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 2.4rem;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 4rem;
    margin-bottom: 9rem;
}

@media only screen and (max-width: 600px) {
    .maker-text {
        font-size: 2.1rem;
    }
}

.maker-text__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
}

.maker-text__link:hover {
    color: #fff;
}

.maker-text__link span {
    width: auto;
    height: 3rem;
    margin-left: 1.2rem;
    margin-right: 7px;
}

@media only screen and (max-width: 600px) {
    .maker-text__link span {
        height: 2.6rem;
    }
}

.maker-text__link span img {
    width: auto;
    height: 100%;
    margin-top: -1.2rem;
}

@media only screen and (max-width: 600px) {
    .maker-text__link span img {
        margin-top: -1rem;
    }
}

.content {
    width: 100%;
}

.content-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 3rem;
}

.content-details__img {
    width: auto;
    height: 12rem;
}

@media only screen and (max-width: 600px) {
    .content-details__img {
        height: 10rem;
    }
}

.content-details__img img {
    width: auto;
    height: 100%;
}

.content-name {
    font-size: 5.2rem;
    font-weight: 800;
    color: #fff;
    margin-top: 2.8rem;
    margin-bottom: 12rem;
}

@media only screen and (max-width: 900px) {
    .content-name {
        font-size: 4.4rem;
        margin-top: 3.2rem;
    }
}

@media only screen and (max-width: 600px) {
    .content-name {
        font-size: 3.6rem;
        line-height: 1.4;
    }
}

@media only screen and (max-width: 375px) {
    .content-name {
        font-size: 3.2rem;
    }
}

.content-box {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 7.4rem 0;
}

@media only screen and (max-width: 600px) {
    .content-box {
        padding: 6.2rem 0;
    }
}

@media only screen and (max-width: 375px) {
    .content-box {
        padding: 5.8rem 0;
    }
}

.content-box__heading {
    font-size: 4rem;
    color: white;
    font-weight: 600;
}

@media only screen and (max-width: 900px) {
    .content-box__heading {
        font-size: 3.6rem;
    }
}

@media only screen and (max-width: 600px) {
    .content-box__heading {
        font-size: 3.2rem;
        line-height: 1.3;
    }
}

@media only screen and (max-width: 375px) {
    .content-box__heading {
        font-size: 2.8rem;
    }
}

.content-box__des {
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2.2rem;
    margin-bottom: 0;
}

@media only screen and (max-width: 600px) {
    .content-box__des {
        font-size: 1.7rem;
        margin-top: 2rem;
        line-height: 1.6;
    }
}
/*# sourceMappingURL=style.css.map */
