:root {
    --grey: #cbd5e0;
    --orange: #ffbc02;
    --card-grey: #f6f5f4;
    --blue: rgb(24, 139, 246);
}

body {
    margin: 0;
    font-family: "Arial", sans-serif;
    font-size: 17px;
}

#layout {
    display: flex;
    flex-direction: column;
}

#header,
#content,
#footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}



#content {
    padding-top: 30px;
    padding-bottom: 30px;
}

#header-inner,
#content-inner,
#footer-inner {
    display: flex;
    width: 100%;
    max-width: 1170px;
    justify-content: center;
}

#content-inner {
    align-items: center;
}

.float-right {
    float: right;
}

.width-50-percent {
    width: 50%;
}

.card {
    border: 2px solid var(--card-grey);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
}

.align-center {
    text-align: center;
}

.flex {
    display: flex;
}

.flex-column{
    flex-direction: column;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.gap-40 {
    gap: 40px;
}

.gap-80 {
    gap: 80px;
}

.card-grey {
    background-color: var(--card-grey);
}

.card-shadow {
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 1px, rgba(0, 0, 0, 0.06) 0px 1px 1px;
}

.card-shadow-right {
  box-shadow: 2px 2px 2px 0 #70707029;
  border-color: rgb(246, 245, 244);
  border-width: 1px;
}

.logo {
    font-size: 27pt;
    font-weight: bold;
}

.logo a {
    color: black;
    text-decoration: none;
}

.margin-top-20{
    margin-top: 20px;
}

.margin-right-10 {
    margin-right: 5px;
}

.align-items-start {
    align-items: start;
}

.align-items-center {
    align-items: center;
}

.justify-content-start {
    justify-content: start;
}

.box {
    padding: 10px;
}

.bg-green {
    background-color: #eff7e8;
}

.bg-card-grey {
    background-color: var(--card-grey);
}

.bg-grey {
    background-color: #f5f5f9;
}

.bg-yellow {
    background-color: #fffee0;
}

.rounded {
    border-radius: 10px;
}

.full-width {
    width: 100%;
}

.width-90-percent{
    width: 90%;
}

.width-47-percent{
    width: 47%;
}

.width-48-percent{
    width: 48%;
}

.width-53-percent{
    width: 53%;
}

.width-57-percent{
    width: 57%;
}

.width-43-percent{
    width: 43%;
}

.width-60-percent{
    width: 60%;
}

.width-33-percent{
    width: 33%;
}

.width-50-percent{
    width: 50%;
}

.width-62p5-percent{
    width: 62.5%;
}

.font-size-20 {
    font-size: 20px;
}

.checkmark-list {
    list-style-type: none;
    padding: 0;
}

.checkmark-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 2px;
}

.checkmark-list li::before {
    content: "✅";
    position: absolute;
    left: 0;
    color: green;
}

.rounded-checkmarks li::before{
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: rgb(55, 202, 55);
}

.list-style-none {
    list-style-type: none;
}

.padding-left-0 {
    padding-left: 0;
}

.list-gap-22 li {
    margin-bottom: 22px;
}

.inter-23{
    font-family: "Inter";
    font-size: 23px;
}

.inter-26{
    font-family: "Inter";
    font-size: 26px;
}

.inter-32{
    font-family: "Inter";
    font-size: 32px;
}

.font-weight-900{
    font-weight: 900;
}
