html {
  position: relative;
  min-height: 100%;
}
body {
  font-family: 'Inter', sans-serif;	
  margin-bottom: 120px;
  color: #2E2E2E
}

a {
	color: #00CD6F;
	font-weight: 600;
}
a:hover {
	color: #00CD6F;
	text-decoration: none;
}

strong {
	font-weight: 700;
}

/* Sticky footer styles */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  line-height: 17px; 
}



/********button********/

.button {
	pointer-events: auto;
	cursor: pointer;
	border: none;
	margin: 0;
	position: relative;
	display: inline-block;
	font-size: 1.1rem;
  	padding: .7rem 2.7rem;
  	font-weight: 800;
	border-radius: 8px;
}

.button:disabled {
	 opacity: 0.6;
}


.button::before,
.button::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}




.button--green {
	letter-spacing: 0.05rem;
	font-weight: 700;
	overflow: hidden;
	color: #fff;
	background: #e7e7e7;
}

.button--green span {
	position: relative;
}

.button--green::before {
	content: '';
	background: #00CD6F;
	width: 120%;
	left: -10%;
	transform: skew(30deg);
	transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.button--green:hover::before {
	transform: translate3d(100%,0,0);
}

.st0{
	fill:none;
	stroke:#FFFFFF;
	stroke-width:3;
	stroke-linecap:round;
	stroke-linejoin:round;
}

.button--green svg {
	margin-right: 10px;
}

.button--green:hover .st0 {
	stroke:#00CD6F;
}


.button--yellow {
	letter-spacing: 0.05rem;
	font-weight: 700;
	overflow: hidden;
	color: #2E2E2E;
	background: #e7e7e7;
}

.button--yellow span {
	position: relative;
}

.button--yellow::before {
	content: '';
	background: #FFCC00;
	width: 120%;
	left: -10%;
	transform: skew(30deg);
	transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.button--yellow:hover::before {
	transform: translate3d(100%,0,0);
}
.button--yellow:hover {
	color: #2E2E2E;
}


.button--yellow--outline {
	letter-spacing: 0.05rem;
	font-weight: 700;
	overflow: hidden;
	color: #2E2E2E;
	background: #CFCFCF;
}

.button--yellow--outline span {
	position: relative;
}

.button--yellow--outline::before {
	content: '';
	background: #e7e7e7;
	width: 120%;
	height: 102%;
	left: -10%;
	transform: skew(30deg);
	transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.button--yellow--outline:hover::before {
	transform: translate3d(100%,0,0);
}

.button--yellow--outline:hover {
	color: #2E2E2E;
}










/* home */
.title-home {
    font-size: 3.3rem;
    font-weight: 900;
}

.img-home {
	margin-top: -380px;
}


/* pages */
.title-page {
	font-size: 2.3rem;
	font-weight: 900;
}
.lead-page {
	font-size: 1.2rem;
	font-weight: 300;
}




.checkbox-full-width {
	border: 2px solid #00CD6F;
	border-radius: 8px;
	padding: 14px;
}

.checkbox-full-width label {
	width: 100%;
}


.list-group-item {
  user-select: none;
  border-radius: 8px;	
}

.list-group-item span{
  margin-left: 40px
}

.list-group-item:last-child {
	border-bottom-right-radius: 8px;
	border-bottom-left-radius: 8px;
}

.list-group input[type="checkbox"] {
  display: none;
}

.list-group input[type="checkbox"] + .list-group-item {
  cursor: pointer;
}

.list-group input[type="checkbox"] + .list-group-item:before {
  content: url(../img/check.svg);
  color: transparent;
  font-weight: bold;
  position: absolute;
 
}

.list-group input[type="checkbox"]:checked + .list-group-item {
  background-color: #00CD6F;
  color: #FFF;
}

.list-group input[type="checkbox"]:checked + .list-group-item:before {
  color: inherit;
	content: url(../img/checked.svg);
}




.list-group input[type="radio"] {
  display: none;
}

.list-group input[type="radio"] + .list-group-item {
  cursor: pointer;
}

.list-group input[type="radio"] + .list-group-item:before {
  content: url(../img/check.svg);
  color: transparent;
  font-weight: bold;
  position: absolute;
 
}

.list-group input[type="radio"]:checked + .list-group-item {
  background-color: #00CD6F;
  color: #FFF;
}

.list-group input[type="radio"]:checked + .list-group-item:before {
  color: inherit;
	content: url(../img/checked.svg);
}


.form-control {
	height: auto;
	padding: .75rem 1.25rem;
}


@media screen and (max-width:768px) {
	.button {
		width: 100%;
		margin: 5px 0;
		padding: .7rem .5rem .7rem .8rem;
	}
	.button--green svg {
		margin-right: 5px;
		width: 22px;
	}
	.footer {
		height: 70px;
	}
}
