*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul{
    padding: 0;
    margin: 0;
}
ul li{
   list-style-type: none;
}
a{
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}
img{
    border:none;
    /*width:100%;
    height:100%;*/
}
h1, h2, h3, h4, h5, h6, p{
    margin: 0;
    padding:0;
}
h1{
    font-size: var(--f1);
    line-height: var(--f1l);
    font-weight: 300;
}
h2{
    font-size: var(--f2);
    line-height: var(--f2l);
    font-weight: 300;

}
h3{
    font-size: var(--f3);
    line-height: var(--f3l);
    font-weight: 300;

}
h4{
    font-size: var(--f4);
    line-height: var(--f4l);
    font-weight:400;

}
h5{
    font-size: var(--f5);
    line-height: var(--f5l);
    font-weight:500;

}
h6{
    font-size: var(--f6);
    line-height: var(--f6l);
    font-weight:500;

}
body{
    margin: 0;
    padding:0;
    font-family: "Manrope", sans-serif !important;
    font-size: var(--f7);
    line-height: var(--f7l);
    background: var(--c5);
    font-weight:400;
}
.green-button{
    padding:24px 40px;
    border-radius:40px;
    background-color: var(--c1);
    font-size: var(--f8);
    color:var(--c6);
    font-weight:500;
    transition: all .2s ease-in-out;
    display: inline-block;

}
.green-button:hover{
    background: var(--c6);
    color:var(--c3);
}
.white-button{
    padding:24px 40px;
    border-radius:40px;
    background: var(--c6);
    color:var(--c4);
    font-size: var(--f8);
    font-weight:500;
    transition: all .2s ease-in-out;
    display: inline-block;

}
.white-button:hover{
    background-color: var(--c1);
    color:var(--c6);

}
.outline-button{
    padding:24px 40px;
    border-radius:40px;
    background-color:transparent;
    border:1px solid var(--c6);
    color:var(--c6);
    font-size: var(--f8);
    font-weight:500;
    transition: all .2s ease-in-out;
    display: inline-block;
    font-family: "manrope", sans-serif;

}
.outline-button:hover{
    background: var(--c6);
    color:var(--c4);
}
.custom-container{
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
    padding:0px 100px;
}
.ellipse-gray {
	position: absolute;
	content: '';
	width: 102%;
	height: 213px;
	border-radius: 0px 0px 50% 50%;
	left: -20px;
	background: url(../images/ellipse-gray.png) left top no-repeat;
	top: -106px;
	background-size: 143%;
}
#smooth-content{
    overflow:hidden;
}