html, body {
	min-height: 100%;
    width: 100%;
}

* {
	box-sizing: border-box;
}

body{
	background: #100f27;
    color: #FFFEE1;
    font-weight: normal;
    font-size: 14px;
    margin: 0;
    padding: 0;
    font: 14px/150% "Open Sans", sans-serif !important;
}

a {
    -webkit-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    color: #ef233c;
    font-weight: 600;
    text-decoration: none;
}

/* a{
	color:#fff;
	text-decoration: none;
	cursor: pointer;
	
	-webkit-transition: color 0.1s linear 0s;	
	   -moz-transition: color 0.1s linear 0s;
		 -o-transition: color 0.1s linear 0s;
		    transition: color 0.1s linear 0s;
}

a:hover,
a:active,
a:focus{
	outline: 0;
	color:#000;
	text-decoration:none;
}

a img {
	border: none;
}

a > img {
	vertical-align: bottom;	
}

img {
	max-width: 100%;	
}

strong {
  	font-weight: 500;
}

p {
	margin: 0 0 30px;
} */

.main_wrapper {
	width: 100%;
    /* min-height: 100%; */
    margin: auto;
    display: flex;
    flex: 1;
    justify-content: center;
	height: 100%;
	position: relative;
}
.main_wrapper img {
	max-width: 100%;
}

footer {
    text-align: center;
    line-height: 16px;
    font-size: 13px;
    position: absolute;
    bottom: 5px;
    z-index: 9;
    padding: 5px;
}

.buttons-grid-mobile {
    width: auto;
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    text-transform: capitalize;
    position: absolute;
    top: 55%;
    bottom: 50%;
    left: 15%;
    right: 15%;
}

.link-6 {
	 display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 4em;
    min-height: 4em;
    min-width: 12em;
    padding-right: 2em;
    padding-left: 2em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-style: solid;
    border-width: 1px;
    border-color: #7cffae;
    border-radius: 2em;
    background-color: #25d366;
    color: #000;
    -webkit-transition: background-color 500ms linear;
    -ms-transition: background-color 500ms linear;
    transition: background-color 500ms linear;
}

.link-6:hover {
    border-style: solid;
    border-width: 1px;
    border-color: hsla(0, 0%, 68.6%, 0.8);
    border-radius: 2em;
    color: #fff;
    background: linear-gradient(180deg, #0c7400, #28d466);
}

.buttons-grid a {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.buttons-grid img {
    width: 20px;
    height: 20px;
}

/* ==================================================
   Responsive Code
================================================== */

@media (min-width: 1000px) {
	.main_wrapper {
		display: flex;
	}

	.main_wrapper_mobile {
		display: none;
	}
}

@media (max-width: 999px) {
	.main_wrapper {
		display: none;
	}

	.main_wrapper_mobile {
		width: 100%;
		min-height: 100%;
		/* height: 100%; */
		margin: auto;
		display: flex;
		flex: 1;
		justify-content: center;
		flex-direction: column;
    	align-items: center;
    	position: relative;
	}

	.main_wrapper_mobile img {
		max-width: 100%;
	}

	footer {
		bottom: 0px;
	}
}








