:root{
    --white-color: #FFFFFF;
    --paragraph-color: #666666;
    --subtext-color: #333333;
    --title-color: #222222;
    --secondary-color: #F57F17;
    --primary-color: #09BEAD;
	--primary-color2:#854fee;
	--border-color: #201f1f17;
	--bg1-color: #8540FF;
	--bg2-color: #FFC50C;
	--bg3-color: #EC407A;
	--bg4-color: #FF6331;
	--bg5-color: #13B6FF;
	--bg6-color: #49AF46;
	--box-shadow: 0px 10px 30px rgba(57, 56, 61, 0.205);
	--poppins:'Poppins';
}

/* reset styles */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav, ul, li {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}
/* end reset styles */

h1{ 
    font-weight: 700;
    font-size: 40px;
    color: var(--title-color);
    margin-bottom: 10px;
    line-height: 1.4;
  }
h2{ 
    font-weight: 600;
    font-size: 28px;
    color: var(--subtext-color);
    margin-bottom: 20px;
    line-height: 1.2;
  }
h3{ 
    font-weight: 600;
    font-size: 24px;
    color: var(--subtext-color);
    margin-bottom: 10px;
	line-height:1.4;
  }
h4{ 
    font-weight: 600;
    font-size: 20px;
    color: var(--subtext-color);
    margin-bottom: 10px;
	line-height:1.4;
  }
p{ 
    font-weight: 400;
    font-size: 16px;
    color: var(--paragraph-color);
    margin-bottom: 10px;
  }
  h1 span{font-weight: 700; font-size: 40px; color: var(--primary-color);}
  .main-title h1, .main-title p{color: var(--primary-color);}
span{ 
    font-weight: 600;
    font-size: 14px;
    color: var(--paragraph-color);
  }
 button{
    background-color: var(--primary-color);
    color: #fff;
    font-size: 16px;
    padding: 12px 30px;
    border: none;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .btn {
    font-size: 16px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: var(--primary-color);
    border: 0px solid transparent;
    padding: .9rem 2.5rem;
    font-size: .9rem;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
 .btn:hover {
	color: #fff;
    background-color: var(--secondary-color);
}
.btn a{ color:#fff; text-decoration:none;}
 .btn-primary {
    color: #fff;
    background-color: var(--secondary-color)!important;
    border: 0px solid transparent;
  }
  .btn-primary:hover {
    color: #fff;
    background-color: var(--title-color)!important;
  }
 .btn-second {
    color: #fff;
    background-color: var(--secondary-color)!important;
    border: 0px solid transparent;
  }
  .btn-second:hover {
    color: #fff;
    background-color: var(--title-color)!important;
  }










