/* -------------------- Fonts --------------------*/

@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;700&family=Figtree:wght@300..900&display=swap");

/* -------------------- Basic CSS --------------------*/

:root {
    --barlow: "Barlow", sans-serif;
    --figtree: "Figtree", sans-serif;
    --bodyBg: #040925;
}

html {
    font-size: 0.695vw;
}

body {
    background-color: var(--bodyBg);
    font-family: var(--barlow);
    font-size: 1.8rem;
    color: white;
    line-height: 1.3;
    letter-spacing: -0.001rem;
}

.container {
    padding: 0 1.6rem;
}

a {
    text-decoration: none;
}

a,
img {
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.btn-design {
    font-weight: 700;
    color: white;
    padding: 2rem 4rem;
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#00bef0),
            to(#e00787));
    background: -o-linear-gradient(left, #00bef0 0%, #e00787 100%);
    background: linear-gradient(90deg, #00bef0 0%, #e00787 100%);
    border-radius: 1.6rem;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.btn-design:hover {
    background: -webkit-gradient(linear,
            right top,
            left top,
            from(#00bef0),
            to(#e00787));
    background: -o-linear-gradient(right, #00bef0 0%, #e00787 100%);
    background: linear-gradient(-90deg, #00bef0 0%, #e00787 100%);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.btn-design::after {
    content: "";
    height: 3.2rem;
    width: 90%;
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#00bef0),
            to(#e00787));
    background: -o-linear-gradient(left, #00bef0 0%, #e00787 100%);
    background: linear-gradient(90deg, #00bef0 0%, #e00787 100%);
    -webkit-filter: blur(1.58rem);
    filter: blur(1.58rem);
    position: absolute;
    bottom: -1.2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -2;
}

main {
    position: relative;
}

.shape-1 {
    width: 64.7rem;
    position: absolute;
    left: 0;
    top: -17rem;
    z-index: 1;
}



/* -------------------- preloader --------------------*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1111;
    background: #040925;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 500ms;
}

.preloader.show{
    opacity: 1;
    pointer-events: auto;
}

.loading_dots {
    width: 5rem;
    margin: auto;
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.loading {
    width: 1rem;
    height: 1rem;
    background: #fff;
    border-radius: 100%;
}

.loading-0 {
    -webkit-animation: bounce 1s infinite;
    -webkit-animation-delay: 0.1s;
    background: #00BEF0;
}

.loading-1 {
    -webkit-animation: bounce 1s infinite;
    -webkit-animation-delay: 0.3s;
    background: rgb(255, 255, 255, 0.5);
}

.loading-2 {
    -webkit-animation: bounce 1s infinite ease;
    -webkit-animation-delay: 0.5s;
    background: #E00787;
}

@-webkit-keyframes bounce {

    0%,
    100% {
        opacity: 1;
    }

    60% {
        opacity: 0;
    }
}

/* -------------------- Header Section --------------------*/

header {
    padding-top: 4rem;
    padding-bottom: 5.5rem;
    text-align: center;
}

.logo {
    width: 16.7rem;
}

/* -------------------- banner section --------------------*/

.banner-section {
    padding-top: 9.6rem;
    position: relative;
}

.shape-2 {
    position: absolute;
    right: 0;
    bottom: -34rem;
    z-index: -1;
    width: 100%;
}

.shape-3 {
    position: absolute;
    right: 0;
    bottom: -90rem;
    z-index: -1;
    width: 61.8rem;
}

.banner-content {
    text-align: center;
}

.banner-content h1 {
    font-family: var(--figtree);
    font-weight: 700;
    font-size: 8rem;
    text-transform: uppercase;
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#00bef0),
            to(#e00787));
    background: -o-linear-gradient(left, #00bef0 0%, #e00787 100%);
    background: linear-gradient(90deg, #00bef0 0%, #e00787 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.banner-content h1 span {
    color: white;
    display: inline-block;
    padding: 0rem 1rem;
    position: relative;
}

.banner-content h1 span span {
    z-index: 1;
    padding: 0;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.banner-content h1>span::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #00bef0;
    top: 0;
    left: 0;
    border-radius: 1.2rem;
    z-index: -1;
    -webkit-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    transform: rotate(-2deg);
}

.banner-content h2 {
    font-size: 6.2rem;
    font-weight: 500;
    font-family: var(--figtree);
    text-transform: uppercase;
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#00bef0),
            to(#e00787));
    background: -o-linear-gradient(left, #00bef0 0%, #e00787 100%);
    background: linear-gradient(90deg, #00bef0 0%, #e00787 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    line-height: 1.5;
}

.banner-content p {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 4rem;
}

.banner-img {
    margin-top: 6.4rem;
    position: relative;
    z-index: 2;
}

.banner-img img {
    border-radius: 2.4rem;
    width: 100%;
}

/* -------------------- Phase Section --------------------*/

.phase-section {
    padding-block: 9.6rem;
    position: relative;
}

.shape-4 {
    position: absolute;
    top: -35rem;
    left: 0;
    z-index: -1;
    width: 100%;
}

.shape-5 {
    position: absolute;
    bottom: 32rem;
    right: 0;
    z-index: -1;
    width: 53rem;
}

.phase-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.2rem;
}

.phase-box:not(:last-child) {
    margin-bottom: 12rem;
}

.phase-content {
    text-align: center;
}

.phase-content h6 {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1;
    text-transform: uppercase;
}

.phase-content h2 {
    font-weight: 700;
    font-size: 4.4rem;
    line-height: 1.3;
    margin-top: 0.8rem;
    margin-bottom: 1.6rem;
}

.phase-content h2 span {
    font-weight: 700;
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#00bef0),
            to(#e00787));
    background: -o-linear-gradient(left, #00bef0 0%, #e00787 100%);
    background: linear-gradient(90deg, #00bef0 0%, #e00787 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.phase-content p {
    font-weight: 500;
    line-height: 1.7;
}

.phase-box img {
    width: 27rem;
}

.phase-box img.ph3-img2 {
    width: 27.7rem;
}

.phase-box img.ph4-img1 {
    width: 25rem;
}

.phase-box img.ph4-img2 {
    width: 25rem;
}

/* -------------------- Brand Section --------------------*/

.brand-section {
    padding: 9.6rem 0;
}

.brand-content {
    padding: 6.4rem;
    gap: 6.4rem;
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#00bef0),
            to(#e00787));
    background: -o-linear-gradient(left, #00bef0 0%, #e00787 100%);
    background: linear-gradient(90deg, #00bef0 0%, #e00787 100%);
    border-radius: 1.6rem;
    position: relative;
}

.brand-content h2 {
    font-weight: 700;
    font-size: 4.4rem;
    line-height: 1.3;
}

.brand-content p {
    font-weight: 500;
    line-height: 1.7;
}

.brand-content a {
    display: inline-block;
    padding: 2rem 4rem;
    background: #ffffff;
    border-radius: 1.6rem;
    font-weight: 700;
}

.brand-content a:hover {
    background: #040925;
}

.brand-content a span {
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#00bef0),
            to(#e00787));
    background: -o-linear-gradient(left, #00bef0 0%, #e00787 100%);
    background: linear-gradient(90deg, #00bef0 0%, #e00787 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.brand-shape {
    position: absolute;
    width: 40rem;
    left: 50%;
    top: -6rem;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
}


/* form */

.contact-form {
    padding: 4rem;
    border-radius: 1.6rem;
    background: #fff;
    backdrop-filter: blur(5px);
}

.contact-form .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

.label {
    display: block;
    color: #000;
    font-size: 1.3rem;
    font-weight: 500;
    padding-bottom: 0.6rem;
    text-align: left;
}

.input_box {
    width: 100%;
    height: 3.8rem;
    padding: 0 0.6rem;
    border-radius: 0.6rem;
    border: 0.2rem solid rgb(0, 0, 0, 0.1);
    outline: none;
    font-size: 1.3rem;
}

.input_box:focus {
    border-color: rgb(0, 0, 0, 0.2);
}

.contact-form .submit {
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    color: white;
    padding: 1.3rem 4rem;
    background: linear-gradient(90deg, #00bef0 0%, #e00787 100%);
    border-radius: .8rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: none;
    outline: none;
    width: 100%;
    margin-top: 1rem;
}

.contact-form .submit:hover {
    background: linear-gradient(-90deg, #00bef0 0%, #e00787 100%);
}


/* -------------------- Footer Section --------------------*/

footer {
    padding-block: 5.6rem;
    border-top: 0.1rem solid white;
    position: relative;
}

.shape-4-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
}

.footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-logo {
    width: 16.8rem;
}

.footer-content p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.8rem;
}

.footer-content a {
    color: white;
    -webkit-transition: 0ms;
    -o-transition: 0ms;
    transition: 0ms;
}

.footer-content a:hover {
    color: #d3d3d3;
    text-decoration: underline;
}

.shape-6 {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
