body {
    margin: 0;
    padding: 0;
    font-family: 'Jost';
    line-height: normal;
    background-color: #000;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

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

a {
    text-decoration: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
    font-family: 'Poppins';
}

.sec-padding {
    padding: 80px 0;
}

.sec-margin {
    margin: 80px 0;
}


.para,
p {
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    color: #fff;
}

h1,
h2,
.title {
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 80px;
    text-transform: capitalize;
    margin: 0;
    color: #fff;
}

.custom-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 25px;
    background: #fff;
    padding: 15px 30px;
    border-radius: 40px;
    color: #000;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.custom-btn:hover {
    background: #000;
    color: #fff;
    transition: 0.3s;
}

.cursor {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 1px solid #fff;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: 1024;
    mix-blend-mode: luminosity;
}

.cursor2 {
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: #fff;
    opacity: .3;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 1024;
    mix-blend-mode: luminosity;
}

.hover {
    background-color: red;
    opacity: 0.5;
}

.cursorinnerhover {
    width: 50px;
    height: 50px;
    opacity: .5;
}