 
@import url('https://fonts.googleapis.com/css?family=Exo+2:100,200,300,400,500,600,700,800,900');
@import url('https://fonts.googleapis.com/css?family=Ubuntu:300,300i,400,500,700');
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&amp;family=Roboto:wght@100;300;400;500;700;900&amp;display=swap);


/*=======================================================================
[02] Normalization Css
=========================================================================*/
htm, body{
    color: #999999;
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
} 
a{
    color: #000;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}
a:hover{
    text-decoration: none;
    color: #000;
}
a:active,
a:focus,
*:focus{
    outline: none !important;
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    margin: 0 0 15px 0;
   font-family: Poppins, sans-serif;
}
h1 {
    font-size: 36px;
}
h2 {
    font-size: 30px; 
}
h3 {
    font-size: 24px; 
}
h4 { 
    font-size: 18px; 
}
h5 { 
    font-size: 14px; 
}
h6 {
    font-size: 12px; 
}

/*=======================================================================
[03] Common Css
=========================================================================*/
.main{
    margin: 0 40px;
    overflow: hidden;
}
.common-section{
    padding: 60px 0;
    position: relative;
}
.section-title {
    position: relative;
    margin: 40px 0PX;
}
.section-title h1 {
    font-size: 100px;
    color: #00b157;
    margin: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -1px;
 
}
.section-title p {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 6px;
    margin: auto;
    color: #000;
}
.section-title-2{
    margin-bottom: 65px;
}
.section-title-2 h5{
    color: #fff;
}
.section-title-2 h2{
    font-size: 60px;
    color: #fff;
    font-weight: 700;
}

.section-title-2.black h5,
.section-title-2.black h2{
    color: #000;
}

.button{
    border: 1px solid #00b157;
    color: #00b157;
    font-weight: 500;
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    background: transparent;
    cursor: pointer;
}
.button:hover{
    background: #00b157;
    color: #fff;
}
.button.fill{
    background: #00b157;
    color: #fff;
}
.button.white{
    color: #fff;
    border-color: #fff;
}
.button.white:hover{
    background: #fff;
    color: #000;
}

.bar{
    width: 50px;
    height: 2px;
    background: #00b157;
    display: block;
}
.bar.white{
    background: #fff;
}
.bar.center{
    margin: auto;
}
.bg-gray{
    background: #fcfcfc;
}

.pb-0{
    padding-bottom: 0 !important;
}
.pt-0{
    padding-top: 0 !important;
}
.mb-90{
    margin-bottom: 90px;
}
.mt-50{
    margin-top: 50px;
}