/*
    Theme Name: Federated Computer Demo Theme
    Description: Federated Computer's Custom Theme for their demo website
    Text Domain: Federated Computer
    Version: 1.0.4
    Author: Carly Beal
*/

/* #region reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* #endregion reset */

/* #region Globals */
* {
    box-sizing: border-box;
}

body {
    font-family: "Hanken Grotesk", sans-serif;
    min-width: 300px;
    overflow-x: hidden;
}

input,
button,
textarea,
select {
    font: inherit;
}

button {
    background: none;
    border: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: var(--main-orange-hover-color);
}

:root {
    /* Default colors */
    --white: rgb(255, 255, 255);
    --black: rgb(0, 0, 0);
    --grey: rgb(128, 128, 128);
    --light-grey: rgb(168, 168, 168);
    --red: rgb(255, 0, 0);
    --green: rgb(0, 128, 0);
    --blue: rgb(0, 0, 255);


    /* Custom Colors */
    --main-blue: #4D6F83;
    --secondary-blue: #385261;
    --main-orange: #D67147;
    --main-orange-hover-color: #DD9E5E;
    --main-purple: #50345c;
    --off-white: #E4E3D8;
    --light-black: #353533;
    --olive-green: #768A54;


    /* opacity colors */
    --white-op85: rgba(255, 255, 255, 0.85);
    --white-op6: rgba(255, 255, 255, 0.6);
    --white-op3: rgba(255, 255, 255, 0.3);

    --black-op8: rgba(0, 0, 0, 0.8);
    --black-op7: rgba(0, 0, 0, 0.7);
    --black-op6: rgba(0, 0, 0, 0.6);
    --black-op55: rgba(0, 0, 0, 0.55);
    --black-op4: rgba(0, 0, 0, 0.4);
    --black-op3: rgba(0, 0, 0, 0.3);
    --black-op25: rgba(0, 0, 0, 0.25);
    --black-op2: rgba(0, 0, 0, 0.2);
    --black-op15: rgba(0, 0, 0, 0.15);
    --black-op1: rgba(0, 0, 0, 0.1);
    --black-op05: rgba(0, 0, 0, 0.05);
}

.fc__white-text {
    color: var(--white);
}

.fc__black-text {
    color: var(--black);
}

.fc__black-background {
    background: #000;
}

.fc__main-blue-background {
    background: var(--main-blue);
}

.fc__secondary-blue-background {
    background: var(--secondary-blue);
}

.fc__white-background {
    background-color: #fff;
}

/* #endregion Globals */

/* #region Universal Utility */
/* ==================
    Typography
===================== */
h1 {
    font-size: 2em;

    @media (min-width: 768px) {
        font-size: 2.5em;
    }

    @media (min-width: 1280px) {
        font-size: 3em;
    }
}

h2 {
    font-size: 1.5em;

    @media (min-width: 768px) {
        font-size: 1.8em;
    }

    @media (min-width: 1280px) {
        font-size: 2em;
    }

}

h3 {
    font-size: 1.3em;

    @media (min-width: 768px) {
        font-size: 1.4em;
    }

    @media (min-width: 1280px) {
        font-size: 1.5em;
    }
}

p {
    font-size: 1.1em;
    line-height: 1.1;
}

strong {
    font-weight: 700;
}

li {
    font-size: 1.1em;
}

.fc__bold-700 {
    font-weight: 700;
}

.fc__bold-600 {
    font-weight: 600;
}

.fc__bold-500 {
    font-weight: 500;
}

.fc__bold-400 {
    font-weight: 400;
}

.fc__bold-300 {
    font-weight: 300;
}

.fc__bold-200 {
    font-weight: 200;
}

.fc__bold-100 {
    font-weight: 100;
}

.fc__opacity04 {
    opacity: 0.4;
}

/* ==================
    Layout
===================== */
.fc__main-padding-container {
    padding: 32px 16px;

    @media (min-width: 768px) {
        .fc__main-padding-container {
            padding: 48px 0;
        }
    }

    @media (min-width: 1280px) {
        .fc__main-padding-container {
            padding: 64px 0;
        }
    }
}

@media (min-width: 768px) {
    .fc__main-width-container {
        max-width: 720px;
        margin: 0 auto;
    }
}

@media (min-width: 1280px) {
    .fc__main-width-container {
        max-width: 1200px;
    }
}

.fc__height100vh {
    min-height: 100vh;
}

.fc__flex-col-gap1 {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.fc__flex-col-gap2 {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.fc__flex {
    display: flex;
}

.fc__justify-content-center {
    justify-content: center;
}

/* #endregion Universal Utility */

/* #region Comparison Table */
.fc__comparison-table {
    width: 100%;
}

.fc__comparison-table tbody tr th {
    text-align: left;
    border: 1px solid var(--black-op3);
    background-color: var(--black-op3);
    padding: 5px 5px 5px 2px;
}

.fc__comparison-table tbody tr td {
    border: 1px solid var(--black-op3);
    padding: 5px 5px 5px 2px;
}

/* #endregion Comparison Table */

/* #region header */
.fc__header {
    padding: 1em;
    background-color: var(--main-blue);
}

@media (min-width: 768px) {
    .fc__header {
        padding: 1em 0;
    }
}

.fc__header-content {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .fc__header-content {
        gap: 0;
        max-width: 720px;
    }
}

@media (min-width: 1280px) {
    .fc__header-content {
        max-width: 1200px;
    }
}

.fc__header-logo {
    display: flex;
    max-width: 150px;
}

@media (min-width: 768px) {
    .fc__header-logo {
        max-width: 180px;
    }
}

@media (min-width: 1280px) {
    .fc__header-logo {
        max-width: 250px;
    }
}

.fc__header-logo img {
    width: 100%;
}

.fc-nav {
    display: flex;
    gap: 4px;
    position: static;
    flex-direction: row;
    align-items: center;
    padding: 0;
}

@media (min-width: 768px) {
    .fc-nav {
        gap: 10px;
    }
}

@media (min-width: 1280px) {
    .fc-nav {
        gap: 20px;
    }
}

.fc__header-button {
    font-size: 0.7em;
    padding: 0.5em;
    line-height: 1.3;
    text-align: center;

    color: #fff;
    border: 1px solid #fff;
}

@media (min-width: 768px) {
    .fc__header-button {
        line-height: inherit;
        padding: 1em 1.5em;
        font-size: 0.8em;
    }
}

@media (min-width: 1280px) {
    .fc__header-button {
        font-size: 1em;
    }
}

.fc__header-button:hover {
    border: 1px solid var(--main-orange-hover-color);
    background-color: 1px solid var(--main-orange-hover-color);
    color: var(--main-orange-hover-color);
}

.fc__header-button-accented {
    border: 1px solid var(--main-orange);
    background-color: var(--main-orange);
    color: #fff;
}

.fc__header-button-accented:hover {
    border: 1px solid var(--main-orange-hover-color);
    background-color: var(--main-orange-hover-color);
    color: #fff;
}

/* #endregion header */

/* #region Footer */
/* ==================
    Typography
===================== */
.fc__footer-title {
    color: #fff;
    font-size: 0.8em;
    line-height: 1.3;
    max-width: 350px;
}

@media (min-width: 768px) {
    .fc__footer-title {
        font-size: 1em;
        max-width: 100%;
    }
}

@media (min-width: 1280px) {
    .fc__footer-title {
        max-width: 650px;
    }
}

.fc__footer-header-text {
    color: #fff;
    font-size: 0.9em;
    font-weight: 500;
    line-height: 1.1;
    max-width: 480px;
    text-wrap: nowrap;
}

@media (min-width: 768px) {
    .fc__footer-header-text {
        font-size: 1.1em;
    }
}

.fc__footer-text {
    color: #fff;
    font-size: 0.8em;
    font-weight: 500;
    line-height: 1.2;
    max-width: 480px;
    text-wrap: nowrap;
}

.fc__footer-text a:hover {
    color: var(--main-orange-hover-color);
}

.fc__footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8em;
}


/* ==================
    Layout
===================== */
.fc__footer {
    background: #000;
    padding: 4em 1em 2.5em 1em;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.fc__footer-container-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
}

@media (min-width: 768px) {
    .fc__footer-container-main {
        max-width: 720px;
        margin: 0 auto;
    }
}

@media (min-width: 1280px) {
    .fc__footer-container-main {
        max-width: 1200px;
    }
}

.fc__footer-container-secondary {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

@media (min-width: 768px) {
    .fc__footer-container-secondary {
        flex-direction: row;
        margin: 0 auto;
    }
}

@media (min-width: 1280px) {
    .fc__footer-container-secondary {
        gap: 200px;
    }
}

.footer__logo {
    display: flex;
    max-width: 200px;
}

@media (min-width: 768px) {
    .footer__logo {
        max-width: 350px;
    }
}

.footer__logo img {
    width: 100%;
}

.fc__footer-contact-container {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

@media (min-width: 1280px) {
    .fc__footer-contact-container {
        flex-direction: row;
    }
}

.fc__footer-text-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fc__google-reviews a {
    display: flex;
    gap: 10px;
}

.fc__google-reviews img {
    width: 25px;
}

.fc__google-reviews span {
    display: flex;
}

/* #endregion Footer */

/* #region Front Page */
/* ==================
    Typography
===================== */
.fc__home__col1 h1 {
    font-size: 1em;
    font-weight: 700;
}

.fc__home__col1 h2 {
    font-size: 0.9em;
}

.fc__home__col1 h3 {
    font-size: 0.8em;
}

@media (min-width: 768px) {
    .fc__home__col1 h1 {
        font-size: 2em;
    }

    .fc__home__col1 h2 {
        font-size: 1.5em;
    }

    .fc__home__col1 h3 {
        font-size: 1.2em;
    }
}

/* ==================
    Layout
===================== */
.fc__home__container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

@media (min-width: 1280px) {
    .fc__home__container {
        flex-direction: row;
    }
}

.fc__home__col1 {
    width: 100%;
}

@media (min-width: 1280px) {
    .fc__home__col1 {
        max-width: 50%;
    }
}

.fc__home__col1 ul {
    font-size: 0.9em;
    list-style-type: disc;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 1em;
}

@media (min-width: 768px) {
    .fc__home__col1 ul {
        font-size: 1em;
        gap: 15px;
    }
}

.fc__home__col1 ul li {
    line-height: 1.2;
    font-size: 1.1em;
}

.fc__home__col2 {
    width: 100%;
}

@media (min-width: 1280px) {
    .fc__home__col2 {
        width: 100%;
    }
}

.fc__features h1 {
    margin: 2em 0 0.5em 0;
}

.fc__features ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
}

.fc__benefits h1 {
    margin: 2em 0 0.5em 0;
}

.fc__benefits ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
}

@media (min-width: 1280px) {

    .fc__benefits ul,
    .fc__features ul {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* #endregion Front Page */

/* #region Pro Customers */
/* ==================
    Layout
===================== */
.fc__pro__home-container {
    display: flex;
    flex-direction: column;
    gap: 4em;
}

.fc__bulleted-list-with-title ul {
    list-style-type: disc;
    padding-left: 1.2em;
}

.fc__bulleted-list-with-title ul li {
    line-height: 1.2;
    font-size: 1.1em;
}

.fc__bulleted-list-with-title button {
    display: flex;
    padding: 0;
}

.fc__bulleted-list-with-title button a {
    padding: 1em 1.5em;
}

/* #endregion Pro Customers */

/* #region signups */
.fc__bulleted-list-two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
}

/* #endregion signups */

/* #region COLUMN-DIVIDERS */
.column-divider-secondary-blue {
    background-color: var(--secondary-blue);
    display: flex;
    align-items: end;
    height: 64px;
}

.column-divider-white {
    background-color: #fff;
    display: flex;
    align-items: end;
    height: 64px;
}

.column-divider-black {
    background-color: #000;
    display: flex;
    align-items: end;
    height: 64px;
}

.column-divider-main-blue {
    background-color: var(--main-blue);
    display: flex;
    align-items: end;
    height: 64px;
}

.column-white-empty,
.column-white-half,
.column-white-small {
    flex-grow: 1;
    background-color: #fff;
}

.column-black-empty,
.column-black-half,
.column-black-small {
    flex-grow: 1;
    background-color: #000;
}

.column-main-blue-empty,
.column-main-blue-half,
.column-main-blue-small {
    flex-grow: 1;
    background-color: var(--main-blue);
}

.column-white-empty,
.column-black-empty,
.column-main-blue-empty {
    height: 0px;
}

.column-white-half,
.column-black-half,
.column-main-blue-half {
    height: 21px;
}

.column-white-small,
.column-black-small,
.column-main-blue-small {
    height: 42px;
}

@media (min-width: 768px) {
    .column-white-full {
        flex-grow: 1;
        background-color: #fff;
    }

    .column-black-full {
        flex-grow: 1;
        background-color: #000;
    }

    .column-main-blue-full {
        flex-grow: 1;
        background-color: var(--main-blue);
    }

    .column-white-full,
    .column-black-full,
    .column-main-blue-full {
        height: 64px;
    }
}

/* #endregion COLUMN-DIVIDERS */