body {
    background: #f7f6fb;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;

    /* center all content horizontally & vertically, but should adjust height to fit all content */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: calc(100vh - 60px);
    padding-top: 30px;
    padding-bottom: 30px;

    padding-left: 15px;
    padding-right: 15px;

    /* add radial color background */
    /* background-image: radial-gradient(circle, #6f00ff47 0%, #ffffff 60vh); */
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* .box {
	width: 200px;
	height: 400px;
	position: relative;
}
.cat1 {
	z-index: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: none;
}
.cat2 {
	width: 60px;
	z-index: 1;
	position: absolute;
} */

.card {
    width: 100%;
    max-width: 600px;
    box-shadow: 4px 4px 50px 0 rgb(104, 255, 242);
    border-radius: 25px;

    background-image: url(../images/background.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    /* center all content horizontally */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Top */
.titleSection {
    /* center all content horizontally */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #ffffff83;
    padding-top: 32px;
    padding-bottom: 20px;
    /* top corners are rounded */
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    /* border is white 1px and on the bottom only */
    border-bottom: 1px solid white;
}
.titleTxt {
    font-size: 35px;
    font-weight: normal;
    color: white;
    margin: 0 0 16px;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}
.subtitle {
    margin-top: -10px;
    /* items should be aligned horizontally, and wrap if not fit */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    /* set space between items */
    gap: 10px;
}
.subtitle .sideTexts {
    color: white;
    font-weight: normal;
    font-size: 25px;
    margin: 0 0 8px;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.subtitle .nameBrandText {
    font-weight: normal;
    font-size: 30px;
    margin: 0 0 8px;

    color: #0ae5b3;
    /* text-shadow: 0px 4px 10px #57f89f; */
}

/* Bottom */
.buttonsContainer {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 60px;

    /* background: red; */

    /* center all content horizontally */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card a {
    text-decoration: none;
    margin-left: 10px;
    margin-right: 10px;
}

.container_row {
    display: grid;
}

.layer {
    grid-column: 1;
    grid-row: 1;

    /* center content verically */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btnContainer {
    /* center content verically */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    /* background: green; */
}
.btnImgBg {
    width: 100%;
    margin-top: 5px;
}

.btnGridRow {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    width: 100%;
}
.btnGridCol {
    /* align items to the left with flex */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.btnCol1f {
    padding-left: 30%;
    /* background: blue; */
}
.btnCol2f {
    padding-right: 20%;
    /* background: yellow; */
}

.btnTitleTxt {
    color: black;
    text-align: left;
    font-size: 15px;
}
.btnBrandTxt {
    color: black;
    text-align: left;
    font-size: 20px;
    font-weight: bold;
}

.iconImg {
    max-width: 32px;
    margin-bottom: 3px;
}
