@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@200;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/satoshi');
*{
    margin: 0;
    padding: 0;
}

:root {
    --black: #020108;
    --white: white;
    --violet: #df9aff;
    --blue-violet: #6825f5;
    --light-steel-blue: #a4abec;
    --purple: #c6abff;
    --dark-purple: #7142d5;
    --opacity-text: rgba(255, 255, 255, .6);
    --opacity-textdiv: rgb(239 239 239);
    --midnight-blue: #1a1048;
    --dark-pink-gradient: #401048;
    --transparent: rgba(255, 255, 255, 0);
    --border-color: #202020;

    --gradient-red: linear-gradient(rgba(133, 7, 7, 0.808), rgba(107, 12, 12, 0.329));
    --gradient-green: linear-gradient(rgba(7, 133, 20, 0.781), rgba(41, 107, 12, 0.329));
    --gradient-blue: linear-gradient(rgba(7, 62, 133, 0.788), rgba(12, 67, 107, 0.377));
    --gradient-yellow: linear-gradient(rgba(134, 143, 9, 0.781), rgba(82, 107, 12, 0.363));
    --gradient-orange: linear-gradient(rgba(133, 72, 7, 0.753), rgba(107, 74, 12, 0.342));
    --gradient-pink: linear-gradient(rgba(133, 7, 127, 0.795), rgba(82, 12, 107, 0.397));
    --gradient-purple: linear-gradient(rgb(160 24 222 / 80%), rgb(93 16 124 / 35%));

    --div-bg: rgba(255, 255, 255, .05);
    --gradientdiv: linear-gradient(rgb(64 7 133 / 32%), rgb(29 12 107 / 14%));

    --btn-boxshadow: inset 0 1px 4px rgb(129 94 203 / 16%), inset 0 2px 4px rgba(129, 94, 203, .24), inset 0 24px 50px rgb(68 41 126 / 25%), inset 2px 0 50px rgba(4, 1, 15, .2), inset -1px -1px rgba(255, 255, 255, .1);
   
    --cl-yellow: #ffe96a;
    --cl-orange: #f3953d;
    --cl-light-green: #36fb9a;
    --cl-green: #1ae47f;
    --cl-green-btn: #0cb763; 
    --cl-red: #f74141;
    --cl-red-light: #fd6a6a;
    --cl-blue: #4c9cf8;
    --cl-purple: #a928f3;
    --cl-border: #90909017;
}
body{
    background-color: #000;
    font-family: 'mulish';
    /* font-family: 'Satoshi'; */
    overflow-x: hidden;
}
html{
    overflow-x: hidden;
}
h1{
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}
span,p{
    letter-spacing: 0.15px;
    font-weight: 300;
    color: var(--opacity-textdiv);
}
button, input, textarea{
    font-family: "mulish";
    border: none;
    transition: all 0.3s ease-in;
    outline: none;
}
button{
    cursor: pointer;
}

.cn{
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}
.lf{
    transform: translate(-50%, 0%);
    left: 50%;
}
.rh{
    transform: translate(50%, 0%);
    right: 50%;
}
.tp{
    transform: translate(0%, -50%);
    top: 50%;
}
::-webkit-scrollbar {
    width:4px;
    height: 2px;
}
::-webkit-scrollbar-track {
    background: #111;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(92, 92, 92, 0.356);
    border-radius: 1px; 
    transition: 0.3s;
}


.scrl{
    scrollbar-width: thin !important;
    scrollbar-color: rgba(100, 100, 100, 0.5) transparent !important;
}
.scrl::-webkit-scrollbar{
    width: 8px !important;
}
.scrl::-webkit-scrollbar-track {
    background: transparent !important;
}

.scrl::-webkit-scrollbar-thumb {
    background-color: rgba(100, 100, 100, 0.5) !important;
    border-radius: 4px !important;
}

button.close{
    position: absolute;
    right: 15px;
    width: 30px;
    height: 30px;
    top: 15px;
    border-radius: 10px;
    background-color: #202020;
    color: var(--opacity-text);
}
button.close i{
    position: absolute;
    font-size: 20px;
}


@keyframes opcShow {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
.tcls{
    background: #1B8ACF;
    background: linear-gradient(to right, #1B8ACF 0%, #55CFCD 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tcap{
    background: #4C9CF8;
    background: linear-gradient(90deg, rgba(76, 156, 248, 1) 0%, rgba(85, 207, 205, 1) 71%);
}


.ssl{
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    opacity: 0;
    border-radius: 8px;
    transition: all 0.7s ease-in;
    background-color: #000000f1;
    z-index: -1;
    pointer-events: none;
}
.ssl.show{
    opacity: 1;
    transition: all 0.1s ease-in;
    z-index: 150;
    pointer-events: all;
}
.ssl i{
    position: absolute;
    font-size: 45px;
}
.w-notifications{
    position: fixed;
    right: 30px;
    border-radius: 8px;
    bottom: 15px;
    padding: 0px 10px;
    background-color: #000000c5;
    z-index: 1000;
}
.w-notifications .x-notf{
    position: relative;
    display: block;
    border-radius: 8px;
    background-color: #000;
    padding: 10px;
    margin: 10px 0;
    animation: opcShow 0.3S ease-in;
}
.w-notifications .x-notf.success{
    background-color: rgba(50, 255, 43, 0.308);
} 
.w-notifications .x-notf.success .icon,
.w-notifications .x-notf.success .l div{
    background-color: rgba(50, 255, 43, 0.18);
}
.w-notifications .x-notf.error,
.w-notifications .x-notf.error .l div{
    background-color: rgba(255, 0, 0, 0.24);
}
.w-notifications .x-notf.error .icon{
    background-color: rgba(255, 0, 0, 0.192);
}
.w-notifications .x-notf.uk{
    background-color: #303030d7;
}
.w-notifications .x-notf .icon{
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 30px;
    height: 30px;
    border-radius: 8px;
}
.w-notifications .x-notf .icon i{
    position: absolute;
    font-size: 17px;
    color: var(--white);
}
.w-notifications .x-notf .x{
    position: relative;
    margin: 0 10px 0px 5px;
    display: inline-block;
    color: var(--white);
    font-size: 13px;
    vertical-align: middle;
    top: 1.5px;
}
.w-notifications .x-notf .l{
    position: absolute;
    bottom: 2px;
    height: 2px;
    width: 95%;
    border-radius: 3px;
}
.w-notifications .x-notf .l div{
    height: inherit;
    position: relative;
    border-radius: inherit;
    left: 0;
}

.material-icons {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}
.project-glow {
    position: absolute;
    background: radial-gradient(
        circle,
        rgba(27, 138, 207, 0.9) 0%,         
        rgba(85, 207, 205, 0.6) 30%,      
        rgba(85, 207, 205, 0.15) 60%,     
        rgba(0, 0, 0, 0) 100%            
    );
    filter: blur(120px); 
    z-index: 0; 
    pointer-events: none;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}
.project-glow {
  animation: pulseGlow 10s ease-in-out infinite;
}

.w-footer{
    width: 100%;
    padding: 80px 0 50px 0;
    position: relative;
    text-align: center;
    background-color: #000;
}
.w-footer .wlogo{
    display: block;
    margin: 20px 0;
}
.w-footer .wlogo i{
    color: var(--white);
    display: inline-block;
    vertical-align: top;
    position: relative;
    top: 2.5px;
    margin-right: 12.5px;
    font-size: 35px;
}
.w-footer .wlogo span{
    font-size: 30px;
    color: var(--white);
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin-left: 5px;
    font-weight: 500;
}
.w-footer .wlogo img{
    width: 150px;
    height: 50px;
}
.w-footer .hrefs{
    display: block;
    padding: 20px 0;
}
.w-footer .hrefs span,
.w-footer .hrefs a{
    margin: 0 15px;
    color: var(--white);
    font-weight: 500;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
}
.w-footer .icons{
    position: absolute;
    bottom: 40px;
    right: 20%;
    transform: translate(50%, 0);
}
.w-footer .icons a{
    color: var(--opacity-text);
    display: inline-block;
    vertical-align: middle; 
    margin: 0 15px;
}
.w-footer .icons img{
    width: 20px;
    height: 20px;
    opacity: 0.7;
}
.w-footer hr{
    display: block;
    margin: 30px 0 30px 0;
    width: 65%;
    height: 1px;
    position: relative;
    border: none;
    border-radius: 3px;
    background-color: #40404041;
}
.w-footer span.ge{
    margin: 20px 0;
    color: var(--opacity-text);
    font-size: 14px;
}
.w-header .w-top{
    display: block;
    position: relative;
    padding: 50px 20px;
}
.w-header .w-top .ihm{
    color: var(--white);
    position: relative;
    display: inline-block;
}
.w-header .w-top .ihm i{
    font-size: 40px;
}
.w-header .w-top .ihm img{
    width: 50px;
    height: 50px;
}
.w-header .w-top a.logo{
    position: absolute;
    color: var(--white);
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 65px;
    letter-spacing: 0.5px;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 7.5%;
}
.w-header .w-top a.logo strong{
    font-size: 40px;
}

.w-header .w-top .wtbs{
    position: absolute;
    z-index: 5;
    right: 7.5%;
    top: 50%;
    transform: translate(50%, -50%);
}
.w-header .w-top  .wtbs button{
    border-radius: 25px;
    display: inline-block;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px);
    vertical-align: top;
    position: relative;
    height: 45px;
    margin-left: 5px;
}
.w-header .w-top .wtbs button.mrs{
    width: 45px;
    border-radius: 50%;
    border: 2px solid #171717;
    background-color: transparent;
}
.w-header .w-top .wtbs button.mrs i{
    position: absolute;
    color: var(--white);
    font-size: 14px;
    transform:translate(-50%, -47.5%) rotate(90deg);
}
.w-header .w-top .wtbs button.cnt{
    padding: 0 18px;
    border: 1px solid #202020;
    background-color: #0808084b;
}
.w-header .w-top .wtbs button.cnt i{
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    color: var(--white);
    position: relative;
    top: 2px;
    margin-left: 5px;
}
.w-header .w-top .wtbs button.cnt span{
    font-size: 14px;
    display: inline-block;
    font-weight: 600;
    color: var(--white);
    vertical-align: top;
}