@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800;9..40,900;9..40,1000&family=Inter:wght@200;300;400;500;600;700;800;900&family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
}

html{
    scroll-behavior: smooth;
}

header.sticky{
    padding: 0px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 80px;
	box-shadow: 0 2px 4px 0 rgba(0,0,0,.1), 0 0 2px 0 rgba(0,0,0,.06);
    transition: 0.4s all ease-in-out;
    background: hsla(0,0%,100%,.85);
    -webkit-backdrop-filter: saturate(180%) blur(32px);
    backdrop-filter: saturate(180%) blur(32px);
}


.page_title_holder::after{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 96px 60px 0 0;
    border-color: #47ea4e transparent transparent transparent;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(100%);
}

#key_features{
    background-image: url(./img/on_black_left.png);
    background-color: #000000;
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: auto;
}

.feature_num{
    text-shadow: -1px 0 #b3b3b3, 0 1px #b3b3b3, 1px 0 #b3b3b3, 0 -1px #b3b3b3;
}

a.round_dot:before {
    content: "";
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    background: transparent;
    border-radius: 90%;
    top: -7px;
    position: absolute;
    transition: .3s;
}

a.round_dot:hover {
    color: #fff;    
}

a.round_dot:hover:before {
    width: calc(100% + 30px);
    height: 51px;
    border-radius: 50px;
    top: -18px;
}

a.round_dot span{
    transition: .3s;
    display: inline-block;
    margin-left: 50px;
    letter-spacing: 2px;
}

a.round_dot:hover span {
    transform: translateX(-8px);
}

.pricing_tag{
    text-shadow: -1px 0 #b3b3b3, 0 1px #b3b3b3, 1px 0 #b3b3b3, 0 -1px #b3b3b3;
}

.pricing_tag::before{
    content: "";
    width: 110%;
    background-color: white;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: -1;
}

#milestones{
    background-image: url(./img/on_black_left.png);
    background-color: #000000;
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: auto;
}

#samples{
    background-image: url(./img/on_black_left.png);
    background-color: #000000;
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: auto; 
}

.mile_num{
    text-shadow: -1px 0 #b3b3b3, 0 1px #b3b3b3, 1px 0 #b3b3b3, 0 -1px #b3b3b3;
}

.black_slit{
    background-image: url("./img/on_black_left.png");
    background-position: center;
}

/* custom scroll bar */
html::-webkit-scrollbar{
    width: 0.4rem;
    background: transparent;
}
html::-webkit-scrollbar-thumb{
    background: #47ea4e;
}
/* Selection color */
::selection{
    background: #47ea4e;
    color: #47ea4e;
}