@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400&display=swap');

:root {
    /* --primary-color: #FFD3E8; */
    --primary-color: #ffdd00; 
    /* --secondary-color: #b512ce; */

    /* secondary-color is button colors */
    --secondary-color: #0022ff; 
    /* --primary-light: #ebecee; */
    --primary-light: #fff5b4;
    --darker-color: rgb(1, 1, 1);
    /* --dark-color: #c48b9f; */
    --dark-color: #ffffff;
    --lightgreen-color: rgb(7, 11, 3);
    --light-color: #f4f4f4;
    --tertiary-color: seashell;
    --primary-variant-color: #6a48ff;
    --secondary-variant-color: #A8C26C;
    --bullet-point-color: pink;
    --box-color-for-settlements: #ffe0ef;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    overflow: auto;
    padding: 0 40px;
}

.card {
    background-color: var(--primary-light);
    border-radius: 20px;
    box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin: 5px;
    font-size: 18px;
    text-align: center;
}

/* Settlement Card Utilties */

.settlement-card {
    background-color: white;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin: 10px;
    width: 300px;
    border-radius: 20px;

    /* LINK TEXT behavior for settlement-card on index */

    /* Keep the same color after visiting */
    /* Set the link color to black */
    /* Remove underline from link */

    color: inherit;
    text-decoration: none;
    color: black;


}

.blog-card {
    background-color: white;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin: 10px;
    width: fit-content;
    border-radius: 20px;
    display: block
}

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

.settlement-card h1 {
    color: black;
}

.settlement-card-title {
    font-size: 1.5rem;
    font-weight: 900;
}

.settlement-image {
    object-fit: cover;
    height: 200px;
    /* margin: 5% 0; */
    border-radius: 20px 20px 0 0;
}

.settlement-amount {
    padding: 0.5rem;
    text-align: center;
    font-weight: bold;
}

/* Consider uniform font-styles for the entire site (Here it's custom) */

.settlement-card p,
.settlement-card-title,
.btn-settlement {
    padding: 0 0 12px 0;
    /* font-family: Georgia, 'Times New Roman', Times, serif; */
}

.btn-settlement {
    background-color: var(--secondary-color);
    border: none;
    outline: 0;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    width: 100%;
    display: block;
    color: var(--tertiary-color);
    font-weight: 900;
    border-radius: 0 0 20px 20px;
}

.btn-settlement-pink {
    background-color: var(--bullet-point-color);
    color: black;
}

.btn {
    display: inline-block;
    cursor: pointer;
    padding: 10px 30px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 900px;
    font-size: 18px;
}

.btnNoPadding {
    display: inline-block;
    cursor: pointer;
    padding: 2px 4px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 900px;
    font-size: 18px;
}

.btnPurple {
    color: var(--secondary-color);
    border: 7px solid honeydew;
}

.btn-settlement-post {
    display: inline-block;
    cursor: pointer;
    padding: 5px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 900px;
    font-size: 8px;
    height: 28px;
}

/* Blog comment button */

textarea {
    width: 100%;
    height: 100px;
    border-width: 3px;
    border-radius: 20px;
    padding: 10px;
    border-color: transparent;
    transition: 1s;
}

textarea:focus {
    outline-style: none;
}

.text-form {
    margin: 0 100px;
}

.comment-box {
    background-color: rgb(212, 218, 248);
}

.btn-comment {
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 5px;
}

.btns-cancel-comment {
    margin: 0 5px;
}

/* Animation for blog.html Button on home page */

@keyframes changing-size {
    0% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1.0);
    }
}

.btn-animation {
    animation: changing-size 2s infinite alternate;
    font-weight: 666;
    background-color: transparent;
}

.btn-animation-slower {
    animation: changing-size 5s infinite alternate;
    font-weight: 666;
    background-color: transparent;
}

#read-our-blog {
    background-image: linear-gradient(45deg, #ffdd00, #0022ff 90%);
}

.btn-outline {
    background-color: var(--primary-color);
    border: 4px solid honeydew;
    font-size: 18px;
}

.btn-outline-purple {
    background-color: 4px solid var(--secondary-color);
    color: white;
}

.btn:hover {
    transform: scale(0.95);
    transition-duration: 1s;
}

/* Backgrounds and Color Btns */

.bg-primary,
.btn-primary {
    background-color: var(--secondary-color);
}

.bg-secondary,
.btn-secondary {
    background-color: var(--secondary-color);
}

.bg-light,
.btn-light {
    background-color: var(--light-color);
    color: black;
}


.bg-dark a,
.btn-dark a,
.bg-light a,
.btn-light a,
.bg-primary a,
.btn-primary a,
.bg-secondary a,
.btn-secondary a {
    color: white;
}

/* Post Article Titles */

.underline {
    text-decoration: underline;
}

/* Text Sizes */

.lead {
    font-size: 20px;
}

.fontsize040 {
    font-size: 0.40rem;
}

.tiny {
    font-size: 0.5rem;
}

.font12 {
    font-size: 12px;
}

.fontsize075 {
    font-size: 0.75rem;
}

.left {
    text-align: left;
}

.sm {
    font-size: 1rem;
}

.med {
    font-size: 1.5rem;
}

.md {
    font-size: 2rem;
}

.md25 {
    font-size: 2.5rem;
}

.lg {
    font-size: 3rem;
}

.xl {
    /* also bolder */
    font-size: 3rem;
    font-weight: bolder;
}

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

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    /* justify-content: center; */
    align-items: center;
    height: 100%;
}

/* grid for settlements */

.grid-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: flex-end;
    height: 100%;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    height: 100%;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    height: 100%;
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.grid-7 {
    grid-template-columns: repeat(7, 1fr);
}

.grid-8 {
    grid-template-columns: repeat(8, 1fr);
}

.grid-title {
    display: grid;
    gap: 20px;
    grid-template-columns: 80% 20%;
}

/* Grid used in individual posts and blog posts */

.grid-post {
    display: grid;
    grid-template-columns: 55% 35%;
    gap: 100px;
    align-items: center;
    height: 100%;
}

.grid-post-recommended {
    gap: 40px;
}

.post-title {
    border-bottom: 5px solid black;
    top: 70px;
    position: sticky;
    z-index: 101;
}

/* Margins */

.margin-left-05 {
    margin-left: 8px;
}

.my-1 {
    margin: 1rem 0;
}

.my-2 {
    margin: 16px 0;
}

.my-3 {
    margin: 2rem 0;
}

.my-4 {
    margin: 3rem 0;
}

.my-5 {
    margin: 4rem 0;
}

.m-1 {
    margin: 1rem;
}

.m-2 {
    margin: 1.5rem;
}

.m-3 {
    margin: 2rem;
}

.m-4 {
    margin: 3rem;
}

.m-5 {
    margin: 4rem;
}

.mr-1 {
    margin-right: 1rem;
}

.mr-2 {
    margin-right: 1.5rem;
}

.mr-3 {
    margin-right: 2rem;
}

.mr-4 {
    margin-right: 3rem;
}

.mr-5 {
    margin-right: 4rem;
}

.width-90 {
    width: 90%;
}

/* Padding */

.py-1 {
    padding: 1rem 0;
}

.py-2 {
    padding: 1.5rem 0;
}

.py-3 {
    padding: 2rem 0;
}

.py-4 {
    padding: 3rem 0;
}

.py-5 {
    padding: 4rem 0;
}

.p-05 {
    padding: 0.5rem;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 1.5rem;
}

.p-3 {
    padding: 2rem;
}

.p-4 {
    padding: 3rem;
}

.p-5 {
    padding: 4rem;
}

.px-1 {
    padding: 0 1rem;
}

.px-2 {
    padding: 0 1.5rem;
}

.px-3 {
    padding: 0 2rem;
}

.px-4 {
    padding: 0 3rem;
}

.px-5 {
    padding: 0 4rem;
}

/* font weight */

.fw-1 {
    font-weight: 100;
}

.fw-3 {
    font-weight: 300;
}

.fw-5 {
    font-weight: 500;
}

.fw-7 {
    font-weight: 700;
}

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

/* Font Colors */

.font-white {
    color: white;
}

.font-black {
    color: black;
}

/* yesto #TODO - CHANGE THESE CLASSES names to make them applicable to all posts */

.imageYes {
    height: 460px;
    width: 420px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    /* flex: 2 2; */
}

.column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 3 1;
}

.double-column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
}

/*************/
/*************/
/*************/
/*************/
/* UTILITIES */
/*************/
/*************/
/*************/
/*************/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

h1,
h2 {
    font-weight: 300;
    line-height: 1.1;
    margin: 10px 0;
}


img {
    /* keep images inside their containers */
    width: 100%;
}

/* Navigation Bar */

.navbar {
    background-image: url("https://www.focusgroupmoney.com/assets/images/navbar.webp");
    object-fit: cover;
    background-size: cover;
    height: 70px;
    top: 0px;
    position: sticky;
    z-index: 101;

}

.navbar .flex {
    justify-content: space-between;
}

.navbar ul {
    display: flex;
}

.navbar-items a {
    color: black;
    font-weight: 700;
    padding: 10px;
    margin: 0 5x;
}

.navbar-items a:hover {
    opacity: 0.75;
    border-bottom: 5px white solid;
}

input:hover {
    cursor: text;
}


.btn:hover {
    cursor: pointer;
}

/* toggle button no Proof toggle */

.btnNoHover {
    display: inline-block;
    width: auto;
    cursor: pointer;
    padding: 10px 30px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    border-color: var(--secondary-color);
    border-width: 5px;
    transition-duration: 1s;
}

.btn-active {
    display: inline-block;
    cursor: pointer;
    padding: 10px 30px;
    background-color: var(--secondary-color);
    border-style: outset;
    border-color: white;
    border-width: 5px;
    color: white;
    border-radius: 8px;
    font-size: 18px;
    transition-duration: 1s;
}

/* California-Privacy Page */

.california-privacy-head img,
.settlements-head img {
    width: 200px;
    justify-self: flex-end;
}

.california-privacy-head {
    height: fit-content;
}

.california-privacy-sub-head img {
    width: 400px;
}

.california-privacy-sub-head img {
    transform: scaleX(-1);
}

.california-privacy-sub-head .grant1 {
    transform: scaleX(1);
}

.california-privacy-card {
    width: 300px;
    margin: 20px auto;
}

.california-privacy-card .form-control {
    padding: 5px;
}

/* Settlements Page */

.settlements-main .container {
    overflow: visible;
    justify-items: center;
}

.settlements-main .settlement-card:hover {
    opacity: .75;
    transition-duration: 1s;
    transform: scale(1.005);
}

.settlements-main .grid {
    grid-template-columns: 1fr 1fr 1fr;
}

/* Blog Pages */

.blog-main .container {
    overflow: visible;
}

.blog-main .card>i {
    margin-right: 10px;
}

/* Showcase FULL SIZE DESKTOP (See media query further below) */

.showcase-headline {
    text-align: left;
    font-weight: 500;
    margin: 35px 0;
}

.showcase {
    height: 400px;
    background-color: var(--primary-color);
    /* background-image: url("https://www.focusgroupmoney.com/assets/images/showcase-mediaquery2.webp"); */
    background-size: cover;
    position: relative;
}

.showcase h1 {
    font-size: 42px;
}

.showcase p {
    margin: 20px 0;
}

#blog-link {
    margin-top: 20px;
}

.showcase .grid {
    grid-template-columns: (1fr, 3fr);
    gap: 80px;
    overflow: visible;
}

.showcase-text {
    animation: slideInFromLeft 1s ease-in;
}

.showcase-form {
    /* position: relative; */
    top: 10px;
    height: 350px;
    width: 300px;
    padding: 40px;
    z-index: 100;
    animation: slideInFromRight 1s ease-in;
}

.showcase-form .form-control {
    margin: 30px 0;
}

.showcase-form input[type='text'],
.showcase-form input[type='email'] {
    width: 100%;
    height: 20px;
}

.showcase-form input:focus {
    outline-width: 30px;
}

.showcase::before,
.showcase::after {
    content: '';
    position: absolute;
    height: 160px;
    bottom: -110px;
    right: 0;
    left: 0;
    background-color: var(--dark-color);
    z-index: 99;
    transform: skewY(-2deg);
    -webkit-transform: skewY(-2deg);
    -moz-transform: skewY(-2deg);
    -ms-transform: skewY(-2deg);
}

/* Stats */

.stats-heading {
    max-width: 1100px;
    margin: auto;
}

.stats {
    padding-top: 130px;
}

.stats .grid h3 {
    font-size: 35px;
}

.stats .grid p {
    font-size: 18px;
    font-weight: bold;
}

/* Court Image */

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
    overflow: visible;
}

.card-grid .card:hover {
    transform: scale(1.1);
    transition-duration: 1s;
    cursor: grab;
}

.additional .card:hover {
    cursor: grab;
}

.newsletter .grid {
    grid-template-columns: (4fr 3fr);
}

/* Additional */

.additional .flex {
    flex-wrap: wrap;
    flex-direction: row;
    overflow: visible;
}

.additional .card {
    text-align: center;
    margin: 18px 10px 20px;
    width: 200px;
    height: 200px;
    transition: 0.5s;
}

.settlements .card {
    transition: 0.8s
}

.additional .card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.additional .card:hover {
    transform: translateY(-25px);
    transition-delay: 0.015s;
    background-color: lightblue;
}

/* unordered list on the main page Tanias */

.list-grid {
    box-sizing: border-box;
    width: 300px;
    height: 500px;
}

.flex-list {
    display: flex;
}

.list-grid a {
    flex: 50%;
}

.list-grid b {
    flex: 50%;
}

ul.a {
    list-style-type: square;
    flex: 50%;
    border-bottom: 1px solid #bdccd6
}

ul.b {
    list-style-type: square;
    flex: 50%;
}

/* settlement post page (individual settlement posts linked from /settlements.html */

body {
    background-repeat: no-repeat;
    background-size: cover;
}

h6 {
    text-align: center;
    font-size: 49px;
    /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
}

h2 {
    font-weight: bold;
    text-align: center;
    font-size: 40px;
}

p1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 30px;
    text-indent: 1em;
}

/* Flex Box for settlement post card links */

.box {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    justify-items: center;
    align-items: right;
    margin: 0 auto;
    width: fit-content;
    /* margin-left: 50px; */
}

.box-blog {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    justify-items: center;
    align-items: center;
}



.flexbox-settlement-post {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    justify-items: center;
    align-items: center;
}


.cards {
    /* border: 1px solid black; */
    display: grid;
    grid-template-columns: 50%;
    box-shadow: 10px 7px 10px 0 black;
    width: 100%;
}

.cards a {
    font-weight: bold;
    width: 55px;
    height: 25px;
    color: white;
}

.cardsSpan {
    /* margin-left: 10px;
    font-size: 12px; */
}

.cards h5 {
    font-size: 18px;
    font-weight: 10px;
}

.deadline {
    font-size: 12px;
}

.cards .name {
    color: black;
}

img {
    width: 162px;
    height: 100%;
}

img #venmo {
    margin-top: 8px;
}


.description {
    grid-column-start: 2;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 2;
    padding-left: 6px;
    /* padding: 8px; */
}

.images {
    /* border: 5px saddlebrown black; */
    margin: 0px;
    /* grid-column-start: 1;
    grid-column-end: 2; */
}

/* showcase-mail card for individual posts (e.g. ./settlement_yesto.html) */

.showcase-mail {
    background: linear-gradient(220deg, white, #4626c7, white, #3333d6);
    top: 30px;
    height: 280px;
    width: 650px;
    padding: 40px;
    z-index: 100;
}

.newsletter-post {
    background: linear-gradient(220deg, white, #4626c7, white, #3333d6);
    top: 30px;
    height: 280px;
    padding: 40px;
    z-index: 100;
}

.newsletter-post .post-form-control {
    margin: 10px;
    border-radius: 2px;
}

.newsletter-post h2 {
    margin-top: -10px;
    margin-bottom: 12px;
}

.showcase-mail h2 {
    margin-top: -10px;
    margin-bottom: 12px;
}

.newsletter-post input:focus {
    outline: none;
}

.newsletter-post input[type='text'],
.newsletter-post input[type='email'] {
    border: 0;
    border-bottom: 3px solid aliceblue;
    width: 350px;
    padding: 5px;
    font-size: 16px;
    border-radius: 30px;
}

/* The newsletter form prompt for individual posts (example: settlement-ducktrap.html*/

.showcase-mail .post-form-control {
    margin: 10px;
    border-radius: 2px;
}

.post-form-control {
    margin: 10px;
    border-radius: 42px;
    width: 70px;
}

.post-form-control input[type='text'],
.post-form-control input[type='email'] {
    border: 0;
    border-bottom: 3px solid aliceblue;
    width: 400px;
    padding: 15px;
    font-size: 16px;
    border-radius: 30px;
}

.btnnew {
    background-color: var(--secondary-color);
    cursor: pointer;
    width: 20px;
}

.btnnewNoHover {
    display: inline-block;
    cursor: pointer;
    padding: 10px 30px;
    background-color: var(--dark-color);
    color: rgb(88, 37, 37);
    border-radius: 8px;
    font-weight: bolder;
    font-size: 18px;
    border-color: var(--dark-color);
    border-width: 5px;
    transition-duration: 1s;
}

.btnnew-active {
    display: inline-block;
    cursor: pointer;
    padding: 10px 30px;
    background-color: var(--dark-color);
    border-style: outset;
    border-color: yellow;
    border-width: 5px;
    color: white;
    border-radius: 8px;
    font-weight: bolder;
    font-size: 18px;
    transition-duration: 1s;
}

.showcase-mail input:focus {
    outline: none;
}

.showcase-mail input[type='text'],
.showcase-mail input[type='email'] {
    border: 0;
    border-bottom: 3px solid aliceblue;
    width: 100px;
    padding: 5px;
    font-size: 16px;
    border-radius: 30px;
}

.showcase-mail input:focus {
    outline: none;
}

.form {
    /* This bit sets up the horizontal layout */
    display: flex;
    flex-direction: row;
    /* This bit draws the box around it */
    border: 1px solid rgb(245, 238, 238);
    /* I've used padding so you can see the edges of the elements. */
    padding: 2px;
    width: 290px;
    height: 40px;
    border-radius: 15px;
}

.showcase-form .form {
    width: auto;
}

input {
    /* Tell the input to use all the available space */
    flex-grow: 2;
    border: 0px solid white;
    border-radius: 15px;
    padding: 6px;
}

.socialshare {
    display: flex;
}

.socialshare>div {
    margin: 5px;
}

/* mailchimp / sendy newsletter signup form */

.newsletter-input {
    padding: 16px;
    margin-top: 1rem;
}

.newsletter-footer-input {
    padding: 16px;
    margin-bottom: 1rem;
}

.input-background {
    border: black;
    border-style: solid;
    border-width: 3px;
}

.mailchimp-post {
    text-align: left;
}

#mailchimp-post {
    display: inline;
}

.custom-grid {
    gap: 10px;
}

.clear {
    margin: 1rem;
}

.clear .btn {
    border-radius: 15px;
    margin-bottom: 12px;
    color: white;
}

.clear .btn-showcase {
    margin-top: 12px;
}

.clear .btn-footer {
    padding: 9px 12px;
    color: white;
}

.mc-field-group input:focus {
    /* padding-left: 8px; */
    /* padding: 16px; */
}

/* sign up field input just for the footer - mailchimp */

.footer-signup input:focus {
    padding: 6px;
}

input::-webkit-input-placeholder {
    padding: 8px;
}

.form-control input:focus::-webkit-input-placeholder {
    /* color: transparent */
}

input:focus::-webkit-input-placeholder {
    color: transparent
}

button {
    border: 1px solid rgb(238, 245, 239);
    background: rgb(46, 208, 97);
    color: white;
    border-radius: 14px;
    cursor: pointer;
    width: 70px;
}

/* main footer #TODO RENAME footer-post to just footer */

.footer-post {
    background-color: var(--primary-light);
    margin-top: 50px;
}

.footer-post-privacy {
    padding: 2rem;
}

.footer-post .social a {
    padding: 0 17px;
}

.footer-post .social {
    padding-bottom: 60px;
}

.footer-post :first-child {
    color: rgb(22, 21, 21);
}

.footer-post .btn-footer {
    color: rgb(233, 229, 229);
}

.footer-margin {
    margin-bottom: 25px;
}

/* new label */

.label {
    color: white;
    padding: 8px;
    font-family: Arial;
    background-color: green;
}

/* settlements page  */

.grid-box {
    display: grid;
    grid-template-columns: 500px;
    grid-gap: 10px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.grid-box>li {
    background-color: transparent;
    text-align: center;
    padding: 2px 0;
    font-size: 19px;
    border-bottom: 1px solid #bdccd6;
    text-align: left;
}

/* 2022-March-13 force settlement list text color and blog cards text color (cards on the blog.php page to stay black) */
.settlement-list a:link {
    color: black
}

.blog-card a:link {
    color: black
}

.settlements-bullet {
    list-style: none
}

.settlements-bullet::before {
    content: "\2022 \2000";
    color: var(--primary-variant-color);
}

.form button {
    background-color: var(--secondary-color)
}

/* Index Page Consumers served text */

.counter:after {
    content: '000';
}

.recommended {
    margin: 0px;
    padding: 0px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.recommended h2 {
    margin: 0px;
    padding: 0px;
}

.recommended img {
    height: 100px;
}

.recommended p {
    margin: 0px;
    padding: 0px;
}

/* =============================================================================================================== */

/* =============================================================================================================== */

/* =============================================================================================================== */

/* ============================================ A N I M A T I O N S ============================================== */

/* =============================================================================================================== */

/* =============================================================================================================== */

/* =============================================================================================================== */

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(0)
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%)
    }

    100% {
        transform: translateX(0)
    }
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes slideInFromTopMore {
    0% {
        transform: translateY(-200%)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%)
    }

    100% {
        transform: translateY(0)
    }
}

/* =============================================================================================================== */

/* =============================================================================================================== */

/* =============================================================================================================== */

/* ======================================= Between tablets and laptop ============================================ */

/* =============================================================================================================== */

/* =============================================================================================================== */

/* =============================================================================================================== */

@media(min-width: 769px) {

    .grid-post-blog {
        display: grid;
        grid-template-columns: 55% 35%;
        gap: 100px;
        align-items: center;
        height: 100%;
    }

    .showcase .grid {
        grid-template-columns: 65% 35%;
    }

    .media-only {
        display: none;
    }

    .media-only {
        color: blue;
    }

    .recommendedTitle {
        line-height: 50px;
    }
}

@media (min-width: 501px) and (max-width:768px) {

    /* padding between description and image in recommended pane */
    .box .cards .description {
        padding-left: 24px;
    }

    .cards a {
        font-weight: bold;
        width: 125px;
        height: 55px;
        color: white;
    }
}

/* Tablets and under */

@media(max-width: 768px) {

    .grid,
    .showcase .grid,
    .stats .grid,
    .additional .grid,
    .newsletter .grid {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }

    .showcase {
        height: auto;
    }

    .showcase-text {
        text-align: center;
        margin-top: 40px;
    }

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

    .showcase-form {
        /* CSS - note for self - justify-self moves grid or flex items */
        justify-self: center;
        width: 470px;
        padding: 20px;
    }

    .showcase .card {
        height: 225px;
        margin: auto;
        width: 620px;
    }

    .card-grid {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(1, 1fr);
    }

    .blog-main .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .settlements-main .grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-post {
        padding: 1rem;
    }

    .grid-box {
        grid-template-columns: 1fr;
    }

    .grid-box li {
        font-size: 35px;
    }

    .grid-post {
        grid-template-columns: 1fr;
        font-size: 19px;
        padding: 25px;
    }

    .box .cards img {
        width: 100%;
    }

    .box .cards a {
        font-size: 20px;
        font-weight: bold;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .box .cards h5 {
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .box .cards p {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .cards {
        display: grid;
        grid-template-columns: 50%;
        box-shadow: 10px 7px 10px 0 black;
        width: 80%
    }

    .cards a {
        font-weight: bold;
        width: 90px;
        height: 36px;
        color: white;
    }
}

/* Mobile */

/* =============================================================================================================== */

/* =============================================================================================================== */

/* =============================================================================================================== */

/* ================================================= M A X 500 =================================================== */

/* =============================================================================================================== */

/* =============================================================================================================== */

/* =============================================================================================================== */

@media(max-width: 500px) {

    .container {
        padding: 0 10px;
    }

    .settlementpost-fontsize>div {
        font-size: 16px;
    }

    .grid-box li {
        font-size: 18px;
    }

    .grid-post {
        overflow: visible;
    }

    .fontsize075 {
        font-size: 0.45rem;
    }

    .recommendedBtnMediaQuery {
        font-size: 0px;
        padding: 0px;
    }

    .box .cards .description {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .box .cards img {
        height: fit-content;
        margin: 10px;
    }

    .box .cards h5 {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .box .cards p {
        font-size: 0px;
        margin-bottom: 0px;
    }

    .cards a {
        width: fit-content;
        height: fit-content;
    }

    /* Showcase MEDIA QUERY */

    .showcase {
        background-image: url("https://www.focusgroupmoney.com/assets/images/showcase.webp")
    }

    .margin-bottom-showcase {
        margin-bottom: 2.5rem;
    }



}

/* =============================================================================================================== */

/* =============================================================================================================== */

/* =============================================================================================================== */

/* =================================================425=========================================================== */

/* =============================================================================================================== */

/* =============================================================================================================== */

/* =============================================================================================================== */

@media(max-width: 425px) {
    .container {
        overflow: hidden;

    }

    .navbar {
        height: 80px;
        overflow: auto;

    }

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

    .navbar .flex {
        flex-direction: column;
        font-size: 15px;
    }

    .navbar .ul {
        padding: 10px;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .showcase .card {
        width: 210px;
        height: 290px;
    }

    /* Sign up for our newsletter text size */
    .showcase h2 {
        font-size: 30px;
    }

    .footer .md {
        font-size: 24px;
    }

    .footer-post .md {
        font-size: 24px;
    }

    .footer-post {
        padding: 6px;
    }

    .footer .grid {
        grid-template-columns: 1fr;
    }

    .footer-post .grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 3fr;
    }

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

    .showcase-form .form-control {
        margin: 10px 0;
    }

    .california-privacy-sub-head img {
        width: 250px;
    }

    .blog-main .grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .settlement-card {
        width: 215px;
    }

    /*  */
    .grid-box {
        grid-template-columns: 1fr;
    }

    .text-center {
        font-size: 30px;
    }

    .grid-post {
        grid-template-columns: 1fr;
        /* font-weight: 10px; */
        font-size: 13px;
        /* padding: 25px; */
        /* width: 290px; */
    }

    .showcase-mail {
        width: 250px;
    }

    .showcase-mail h2 {
        font-size: 20px;
    }

    /* .grid-post .box {
        width: 250px;
    } */

    .box .cards img {
        width: 90%;
        /* padding: 10px; */
    }

    .box .cards a {
        /* font-size: 12px;
        font-weight: bold; */
        /* color: x rgb(98, 94, 94); */
    }

    .grid-footer {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .settlements-main .grid {
        grid-template-columns: 1fr;
    }

    .cards {
        display: grid;
        grid-template-columns: 50%;
        box-shadow: 10px 7px 10px 0 black;
        width: 100%
    }

    .showcase-form input::-webkit-input-placeholder {
        font-size: 12px;
    }
}

/* Larger than Tablet */

/* =============================================================================================================== */

/* =============================================================================================================== */

/* =============================================================================================================== */

/* =================================================320 - 499===================================================== */

/* =============================================================================================================== */

/* =============================================================================================================== */

/* =============================================================================================================== */

@media (min-width: 320px) and (max-width:499px) {

    .settlement-card {
        width: 275px;
    }

    .grid-box {
        grid-template-columns: 1fr;
    }

    .text-center {
        font-size: 40px;
    }

    .grid-post {
        grid-template-columns: 1fr;
        font-size: 13px;
        /* padding: 25px; */
        /* width: 290px; */
    }

    .stats-heading {
        font-size: 35px;
    }

    .showcase-mail {
        width: 310px;
    }

    .showcase-mail h2 {
        font-size: 22px;
    }

    .showcase-mail .btn {
        margin: -203px;
    }

    .box .cards {
        width: 75%;
    }

    .box .cards img {
        width: 100%;
    }

    .grid-footer {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .navbar-320 {
        font-size: 1.5rem;
    }

    /* EXPERIMENTAL JULY 29 */
    .container {
        overflow: hidden;
    }

    .body {
        background-color: var(--primary-color);
    }

    .navbar {
        height: 95px;
        background-image: url("https://www.focusgroupmoney.com/assets/images/navbar.webp")
    }

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

    .navbar .ul {
        padding: 10px;
        background-color: rgba(0, 0, 0, 0.1);
    }

    .showcase .card {
        width: 250px;
        height: 300px;
    }

    .footer .md {
        font-size: 24px;
    }

    /* FOOTER USED EVERYWHERE JULY 30 2021 */
    .footer-post {
        padding: 6px;
    }

    .grid-footer {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .footer-post .md {
        font-size: 24px;
    }

    .california-privacy-sub-head img {
        width: 300px;
    }

    .blog-main .grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .settlements-main .grid {
        grid-template-columns: 1fr;
    }

    /* Animations! */
    .showcase-form,
    .showcase-text {
        animation: slideInFromTop 1s ease-in;
    }

    .showcase-mail .card {
        width: 400px;
    }

    .showcase-mail {
        width: 360px;
    }

    .showcase-mail h2 {
        font-size: 30px;
    }

    .showcase-mail .btn {
        margin: -203px;
    }

    .box .cards img {
        width: 100%;
        padding: 10px;
    }

    .grid-footer {
        grid-template-columns: 1fr;
        padding: 50px;
    }
}