* {
    font-family: "Inter", sans-serif;
}

body {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
}

section {
    overflow: hidden;
}

p,
li,
input,
label,
ul,
textarea,
a {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0em;
    color: #393939;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0em;
}


a {
    text-decoration: none;
    color: var(--primary-color);
    cursor: pointer;
}

a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}

.pd-pos-rel {
    position: relative;
}


.pd-y-btn {
    background-color: var(--button-color);
    border-radius: 8px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px);
    padding: 8px 17px;
    font-size: 16px;
    display: inline-block;
}

.pd-w-btn {
    background-color: white;
    border-radius: 8px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px);
    padding: 8px 17px;
    display: inline-block;
}

.pd-main-title {
    font-size: 44px;
    font-weight: 500;
    line-height: 50px;
    letter-spacing: 0em;
    color: #1d1d1d;
    margin-top: 20px;
    position: relative;
    text-transform: capitalize;
}

.pd-main-title::after{
    content: "";
    position: absolute;
    width: 98%;
    height: 1px;
    background: #19191A;
    left: -2px;
    top: -8px;
}

.pd-sub-title {
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #19191A;
    font-family: "Roboto Mono", monospace;
}