@include media-breakpoint-up(sm) { ... }
@include media-breakpoint-up(md) { ... }
@include media-breakpoint-up(lg) { ... }
@include media-breakpoint-up(xl) { ... }
@include media-breakpoint-up(xxl) { ... }


:root {
    --bg: url('/src/header/bg/bgnew.png');
    --bg_size: cover;
    --bg_position: center center;
    --bg_repeat: no-repeat;
    --bg_attachment: fixed; /* which one ? fixed , scroll */
  }

a {
    text-decoration: none;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Prompt;
}

.container-fluid {
    /* max-width: 1580px; */
    padding: 0;
}

.header-bg {
    background-image: var(--bg);
    background-size: var(--bg_size);
    background-position: var(--bg_position);
    background-repeat: var(--bg_repeat);
    background-attachment: var(--bg_attachment);
}

.site-title {
    color: white;
    height: 50px;
    background-image: linear-gradient(to left, rgba(58, 197, 197, 0), #3ac5c5);
}

.site-title-text {
    color: white;
    text-align: center;
    text-align: start;
    font-size: 28px;
}

.Text2 {
    color: white;
    text-align: center;
    margin: 270px 0 !important;
    font-size: 80px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 7px;
}

@media only screen and (max-width: 900px) {

}


.cursor-p {
    cursor: pointer;
}

@media only screen and (max-width: 575px) {

    .Text2 {
        font-size: 72px !important;
    }
}


@media only screen and (max-width: 400px) {

    .Text2 {
        font-size: 54px !important;
    }
}