/*
Theme Name: ThinkHuge WP
Theme URI: http://weales.com
Author: Jeff Weales
Author URI: http://www.weales.com
Description: ThinkHuge CSS Grid theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: thinkhuge
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

ThinkHuge WP is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/ */


/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */

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 {
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
}

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: none;
}

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


/* =======================================================================
## ++ Globals
========================================================================== */

html {
    width: 100%;
    font-size: 100%;
    min-height: 100%;
    position: relative;
}

body {
    -webkit-font-smoothing: antialiased;
    background: #fff;
    grid-template-areas: "nav" "main" "footer";
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #1788ea;
}

strong {
    font-weight: 500;
}

em {
    font-style: italic;
}


/* =======================================================================
## ++ Cleafix
========================================================================== */


/* float clearing for IE6 */

* html .clearfix {
    height: 1%;
    overflow: visible;
}


/* float clearing for IE7 */

*+html .clearfix {
    min-height: 1%;
}


/* float clearing for everyone else */

.clearfix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
    font-size: 0;
}

.clr {
    clear: both;
}

.hide-on-desktop {
    display: none;
}


/* =======================================================================
## ++ Typeography
========================================================================== */

html {
    font-size: 14px;
}

body,
input,
textarea {
    font-family: 'Roboto', sans-serif;
    font-size: calc(14px + (20 - 14) * ((100vw - 360px) / (1600 - 360)));
    line-height: 1.2;
    font-weight: 400;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: calc(25px + (30 - 25) * ((100vw - 360px) / (1600 - 360)));
    font-weight: 400;
    font-style: normal;
    color: black;
    margin: 0 0 2vh 0;
}

p {
    font-weight: 300;
    font-style: normal;
    line-height: 30px;
    margin: 2vh 0;
}

#serving-the-gta p,
#serving-the-gta h2 {
    font-weight: 700;
}

.entry-content {
    color: #575757;
}

footer h2 {
    font-weight: 300;
    font-style: normal;
    letter-spacing: 1px;
}

.copyright {
    font-weight: 300;
    font-style: normal;
    letter-spacing: 1px;
}


/* =======================================================================
## ++ Menu Markup
========================================================================== */

#wpadminbar {
    z-index: 9998 !important;
}

nav#site-navigation {
    z-index: 9999;
}

nav#site-navigation ul li a {
    color: #10437c;
    transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
}

nav#site-navigation ul li a:hover {
    color: #4da4e0;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -ms-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
}

nav#site-navigation ul li.current-menu-item a {
    color: #4da4e0;
}

nav#site-navigation li {
    display: inline;
    position: relative;
}

nav a {
    padding: 10px;
    text-transform: uppercase;
    color: #10437c;
}

nav a:hover {
    color: #4da4e0;
}



/* Second Level */

nav#site-navigation ul li ul {
    background: #003f98;
    border: 1px solid white;
    visibility: hidden;
    opacity: 0;
    min-width: 200px;
    position: absolute;
    transition: all 0.5s ease;
    margin-top: -2px;
    left: 0;
    top: 100%;
    display: none;
    z-index: 999;
}

nav#site-navigation ul li:hover>ul,
nav#site-navigation ul li:focus-within>ul,
nav#site-navigation ul li ul:hover {
    visibility: visible;
    opacity: 1;
    display: block;
}

nav#site-navigation ul li ul li {
    clear: both;
    display: block !important;
    padding: 5px;
}

nav#site-navigation ul li ul li a {
    color: white;
    font-size: 16px;
}
nav#site-navigation ul li ul li.current-menu-item a {
    color: white;
}

nav#site-navigation ul li ul li.current-menu-item a:hover {
    color: #4da4e0;
}

/* =======================================================================
## ++ Breadcrumbs Markup
========================================================================== */

.breadcrumb {
    color: #10437c;
    background-color: #f6f5f6;
    min-height: 10vh;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: #10437c;
}

.breadcrumb span {
    margin-left: 6vw;
    margin-right: 6vw;
}


/* =======================================================================
## ++ Grid Markup
========================================================================== */

body {
    margin: 0px;
}

.container {
    display: grid;
    grid-gap: 0;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "header  header  header header " "main main main main" "footer  footer  footer footer";
}

.container header {
    grid-area: header;
    grid-column: 1 / 5;
}

.container main {
    grid-area: main;
}

.contact-header {
    background-color: #10437c;
    text-align: right;
    color: white;
    padding-top: 1vh;
    padding-bottom: 1vh;
}

.contact-header p {
    margin-top: 0;
    margin-right: 6vw;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.container footer {
    grid-area: footer;
}

.free-consult {
    color: #fbf054;
    font-weight: 400;
    font-style: normal;
}

.site-branding {
    display: grid;
    grid-column: col 4 / span 2;
    grid-row: row 1;
    grid-gap: 0px;
    grid-template-columns: 1fr 1fr;
    margin-left: 6vw;
    margin-right: 6vw;
    margin-top: 3vh;
    margin-bottom: 2vh;
}

.huge-logo {
    grid-column: 1/3;
    grid-row: 1;
}

.huge-logo img {
    max-width: 100% !important;
    height: auto;
}

.huge-nav {
    grid-column: 3/4;
    grid-row: 1;
    align-self: end;
    justify-items: end;
    justify-content: end;
}

#home-hero-img {
    min-height: 600px;
    background: url('https://dayneconstruction.com/wp-content/themes/thinkhugewp/images/home-heroimg.jpg') no-repeat center center;
    background-size: cover;
    padding-top: 5vh;
    padding-left: 60vw;
    overflow: auto;
}
#error-404-not-found {
  margin-left: 6vw;
  margin-right: 6vw;
  margin-top: 3vh;
  margin-bottom: 2vh;
  overflow: auto;
}
#index-container {
  margin-left: 6vw;
  margin-right: 6vw;
  margin-top: 3vh;
  margin-bottom: 2vh;
  overflow: auto;
}
.home-hero-img-content-border {
    border: solid white 2px;
    padding: 0.3em;
    width: 30vw;
}

.home-hero-img-content-container {
    background-color: rgba(255, 255, 255, 0.856);
    padding: 1.5em;
    width: auto;
}

.home-hero-img-content-container h2 {
    color: #0d54a3;
    text-align: center;
}

.home-hero-img-content-container p {
    color: #404040;
}

.home-hero-img-content-container span {
    color: #0d54a3;
}

.home-hero-img-content-container a {
    background-color: #fbf054;
    color: white;
    padding: 0.5em;
    transition: background-color 0.5s;
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    -ms-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    text-align: center;
    display: block;
}

.home-hero-img-content-container a:hover {
    background-color: #f2ee96;
    color: white;
}

.img-header {
    margin-left: 6vw;
    margin-right: 6vw;
}

#guaranteed-container {
    background-color: #10437c;
}

#guaranteed-container h2 {
    text-align: center;
    color: #fbf054;
    padding-top: 3vh;
    padding-bottom: 3vh;
    margin-bottom: 0;
}

#benefits {
    background-color: #f3f3f3;
    padding-left: 6vw;
    padding-right: 6vw;
}

#benefits p {
    color: #666666;
}

#benefits h1:before {
    content: '\25B6';
    color: #fbf054;
    margin-right: 1vw;
}

#benefits h1 {
    color: #0f4c87;
    text-align: center;
    padding-top: 10vh;
    padding-bottom: 10vh;
}

#benefits ul {
    padding-top: 10vh;
    padding-bottom: 10vh;
    text-align: center;
}

#benefits ul li {
    display: inline;
}

#benefits li {
    color: white;
    background-color: #10437c;
    padding: 0.5em;
    margin-right: 0.5em;
    font-weight: 300;
    font-style: normal;
}

#specialize {
    display: grid;
    grid-template-columns: repeat (4, 1fr);
    grid-gap: 2vw;
    background-color: white;
    padding-left: 6vw;
    padding-right: 6vw;
}

#specialize h1:before {
    content: '\25B6';
    color: #fbf054;
    margin-right: 1vw;
}

#specialize h1 {
    color: #0f4c87;
    text-align: center;
    padding-top: 10vh;
    padding-bottom: 10vh;
}

#specialize h2 {
    color: #0f4c87;
}

#specialize p {
    color: #666666;
    padding-bottom: 10vh;
}

#specialize .special-title {
    grid-column: 1/5;
}

#specialize .col1-img {
    grid-column: 1/2;
}

#specialize .col1-content {
    grid-column: 1/2;
    text-align: center;
}

#specialize .col2-content {
    grid-column: 2/3;
    text-align: center;
}

#specialize .col3-content {
    grid-column: 3/4;
    text-align: center;
}

#specialize .col1-content img,
#specialize .col2-content img,
#specialize .col3-content img {
    margin-bottom: 4vh;
}

#serving-the-gta {
    background: url(https://dayneconstruction.com/wp-content/themes/thinkhugewp/images/serving-bg.jpg) no-repeat center center;
    background-size: cover;
    overflow: auto;
    min-height: 60vh;
    padding-top: 10vh;
}

#serving-the-gta h2 {
    padding-top: 10vh;
    color: #275e93;
    text-align: center;
    font-weight: bold;
}

#serving-the-gta p {
    padding-bottom: 5vh;
    color: #fbf054;
    text-align: center;
    font-weight: bold;
}

#serving-the-gta a {
    color: #fbf054;
    background-color: #10437c;
    border: 0;
    text-align: center;
    padding: 0.5em;
    font-weight: 300;
    transition: background-color 0.2s ease-in;
    -webkit-transition: background-color 0.2s ease-in;
    -moz-transition: background-color 0.2s ease-in;
    -ms-transition: background-color 0.2s ease-in;
    -o-transition: background-color 0.2s ease-in;
}

#serving-the-gta a:hover {
    color: white;
    background-color: #265d9c;
    border: 0;
    text-align: center;
    padding: 0.5em;
    font-weight: 300;
}

#aboutus {
    display: grid;
    grid-template-columns: repeat (4, 1fr);
    column-gap: 1vw;
    background-color: white;
    color: #666666;
    padding-left: 6vw;
    padding-right: 6vw;
}

#aboutus h1:before {
    content: '\25B6';
    color: #fbf054;
    margin-right: 1vw;
}

#aboutus h1 {
    color: #0f4c87;
    text-align: center;
    padding-top: 5vh;
    padding-bottom: 5vh;
    margin: 0;
    text-transform: uppercase;
}

#aboutus .special-title {
    grid-column: 1/5;
}

#aboutus .col1-content {
    grid-column: 2/3;
}

#aboutus .col2-content {
    grid-column: 4/5;
}

#cornerstone {
    background-color: #10437c;
    margin-top: 10vh;
}

#corevalues .col1-content h2:before,
#corevalues .col2-content h2:before,
#corevalues-content h2:before {
    content: '\25B6';
    color: #fbf054;
    margin-right: 1vw;
}

#cornerstone h2 {
    text-align: center;
    color: #fbf054;
    padding-top: 3vh;
    padding-bottom: 3vh;
    margin-bottom: 0;
}

#corevalues {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 1vw;
    background-color: #f6f5f6;
    padding-top: 10vh;
    padding-bottom: 10vh;
    padding-left: 6vw;
    padding-right: 6vw;
}

#corevalues .col1-content {
    grid-column: 1/3;
    padding: 1em;
    background-color: white;
}

#corevalues .col2-content {
    grid-column: 3/5;
    padding: 1em;
    background-color: white;
}

#corevalues .col23-content {
    grid-column: 1/5;
}

#corevalues .col1-content h2,
#corevalues .col2-content h2 {
    color: #10437c;
    text-align: center;
}

#corevalues .col1-content p,
#corevalues .col2-content p {
    color: #666666;
}

#corevalues .col3-content {
    grid-column: 1/5;
}

#corevalues-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 1vw;
    padding-left: 6vw;
    padding-right: 6vw;
    padding-bottom: 10vh;
    background-color: #f6f5f6;
}

#corevalues-content h2 {
    color: #10437c;
    text-align: center;
    margin-top: 4vh;
}

#corevalues-content .title {
    grid-column: 1/5;
}

.corecontainer {
    grid-column: 1/5;
}

.coregrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 1vw;
    row-gap: 1vh;
    background-color: white;
}

.coregrid p {
    padding: 0 1em;
    color: #666666;
}

.coregrid .col1-content {
    grid-column: 1/3;
}

.coregrid .col2-content {
    grid-column: 3/5;
}

#contactus {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

#contactus .title {
    grid-column: 1/5;
    background-color: white;
}

#contactus h1:before {
    content: '\25B6';
    color: #fbf054;
    margin-right: 1vw;
}

#contactus h1 {
    color: #0f4c87;
    text-align: center;
    padding-top: 5vh;
    padding-bottom: 5vh;
    margin: 0;
    text-transform: uppercase;
}

#contactus .col1 {
    grid-column: 1/3;
    background-color: #f6f8fa;
}

.thankyou-container {
    margin: 10vh 6vw;
}

.thankyou-container h2 {
    color: #10437c;
    margin-bottom: 4vh;
}

.thankyou-container p {
    color: #737373;
}

.thankyou-container form {
    margin-top: 4vh;
}

#callus-container {
    margin: 10vh 6vw;
    display: grid;
    grid-template-columns: 80px 1fr 1fr 1fr;
    grid-template-rows: repeat(4, auto);
}

#callus-container i {
    color: #0f4c87;
}

#callus-container .call-img {
    grid-column: 1/2;
    grid-row: 1;
    padding-bottom: 2vh;
}

#callus-container .call-content {
    grid-column: 2/5;
    grid-row: 1;
    padding-bottom: 2vh;
}

#callus-container .address-img {
    grid-column: 1/2;
    grid-row: 2;
    padding-bottom: 2vh;
}

#callus-container .address-content {
    grid-column: 2/5;
    grid-row: 2;
    padding-bottom: 2vh;
}

#callus-container .hours-img {
    grid-column: 1/2;
    grid-row: 3;
    padding-bottom: 2vh;
}

#callus-container .hours-content {
    grid-column: 2/5;
    grid-row: 3;
}

#contactus .col2 {
    grid-column: 3/5;
    background-color: #f6f5f6;
}

#services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

#services .title {
    grid-column: 1/5;
}

#services .title h1:before {
    content: '\25B6';
    color: #fbf054;
    margin-right: 1vw;
}

#services .title h1 {
    color: #0f4c87;
    text-align: center;
    padding-top: 5vh;
    padding-bottom: 5vh;
    margin: 0;
    text-transform: uppercase;
}

#services .browse-container {
    grid-column: 1/3;
    background-color: #f3f3f3;
}

#services .browse {
    margin: 6vh 6vw;
}

#services .browse p {
    width: 100%;
    color: white;
    background-color: #10437c;
    padding: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1vh;
}

#services .browse li {
    margin-bottom: 1vh;
}

#services .browse li a:hover:before {
    content: '\25B6';
    color: white;
    padding-right: 0.5em;
}

#services .browse li a {
    display: block;
    width: 100%;
    padding: 0.5em;
    color: #10437c;
    background-color: white;
    transition: background-color 0.5s;
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    -ms-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
}

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

#services .browse li a:hover {
    color: white;
    background-color: #4da4e0;
}

#services .creating-container {
    grid-column: 3/5;
    background-color: #f3f3f3;
}

#services .creating {
    margin-top: 6vh;
    margin-right: 6vw;
}

#services .creating h2 {
    color: #10437c;
    margin-bottom: 4vh;
}

#services .creating p {
    color: #666666;
    margin-bottom: 6vh;
}

#service-bottom-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2vw;
    margin: 2vh 6vw;
}

#service-bottom-container .img1 {
    grid-column: 1/3;
}

#service-bottom-container .img2 {
    grid-column: 3/5;
}

#service-bottom-container img {
    max-width: 100% !important;
    height: auto;
}

#portfolio {
    display: grid;
    grid-template-columns: repeat (4, 1fr);
    column-gap: 1vw;
    padding-left: 6vw;
    padding-right: 6vw;
    padding-bottom: 10vh
}

#portfolio .special-title {
    grid-column: 1/5;
}

#portfolio h1:before {
    content: '\25B6';
    color: #fbf054;
    margin-right: 1vw;
}

#portfolio h1 {
    color: #0f4c87;
    text-align: center;
    padding-top: 5vh;
    padding-bottom: 5vh;
    margin: 0;
    text-transform: uppercase;
}


/* header img markup*/

.img-header {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(1fr, 328px));
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #10437c;
    color: white;
    padding-left: 6vw;
    padding-right: 6vw;
    padding-bottom: 10vh;
}

.footer-content i {
    font-size: 1.2em;
}

.footer-content a {
    color: white;
}

.footer-content a:hover {
    text-decoration: underline;
}

.footer-content h2 {
    padding-top: 5vh;
}


/*.footer-col1 {
    grid-column: 1/2;
}

.footer-col2 {
    grid-column: 2/3;
}

.footer-col3 {
    grid-column: 3/4;
}*/

.footer-col1,
.footer-col2,
.footer-col3 {
    padding-left: 2em;
}

.footer-col1 h2,
.footer-col2 h2,
.footer-col3 h2 {
    color: white;
}

.footer-col1 li,
.footer-col2 li,
.footer-col3 li {
    list-style-type: none;
}

.copyright {
    color: #10437c;
    background-color: white;
    text-align: center;
    padding-top: 2vh;
    padding-bottom: 2vh;
}

.wpcf7 div {
    margin-bottom: 2vh;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"] {
    background: white;
    height: 40px;
    width: 100%;
    color: #9eb8cd;
    border: 1px solid #9bb6cb;
    padding: 0.8em;
}

.emailfloat {
    float: left;
}

.subjectfloat {
    float: right;
}

.wpcf7 textarea {
    background: white;
    height: auto;
    width: 100%;
    color: #9eb8cd;
    border: 1px solid #9bb6cb;
    padding: 0.8em;
}

.wpcf7 input[type="submit"],
.wpcf7 input[type="button"] {
    background-color: #fbf054;
    color: white;
    width: 100%;
    height: 40px;
    text-align: center;
    text-transform: uppercase;
    border: none;
}


/* --------------------------------
 *
 *Modal Window
 *
 *-------------------------------- */

.morph-modal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
}

.morph-modal p {
    color: #666666;
    font-weight: 300;
    font-style: normal;
    line-height: 30px;
    margin: 2vh 0;
}

.morph-modal h1,
.morph-modal h2,
.morph-modal h3,
.morph-modal h4,
.morph-modal h5,
.morph-modal h6 {
    color: #10437c;
    margin-bottom: 4vh;
}

.morph-modal li {
    color: #666666;
    font-weight: 300;
    font-style: normal;
    margin-left: 1em;
    list-style: inside;
}

.morph-modal.open-modal {
    opacity: 1;
    visibility: visible;
}

.modal-content,
.close-modal {
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 2;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -ms-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
}

.modal-visible .modal-content,
.modal-visible .close-modal {
    opacity: 1;
}

.modal-content {
    position: relative;
    height: 100%;
    overflow: auto;
    margin-top: 10vh;
    margin-left: 6vw;
    margin-right: 6vw;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    /*replacetextwithimage*/
    height: 56px;
    width: 56px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    border: none;
    text-indent: 100%;
    overflow: hidden;
    color: transparent;
    white-space: nowrap;
    transition: background 0.2s;
    -webkit-transition: background 0.2s;
    -moz-transition: background 0.2s;
    -ms-transition: background 0.2s;
    -o-transition: background 0.2s;
}

.close-modal::before,
.close-modal::after {
    /* this is the 'X' arrow */
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 2px;
    width: 24px;
    background: #FFF;
}

.close-modal::before {
    -webkit-transform: translate(-50%) rotate(45deg);
    transform: translate(-50%) rotate(45deg);
}

.close-modal::after {
    -webkit-transform: translate(-50%) rotate(-45deg);
    transform: translate(-50%) rotate(-45deg);
}

.close-modal:hover {
    background: rgba(0, 0, 0, 0.6);
}


/* --------------------------------
   *
   *Modal Trigger and morphing background
   *
   *-------------------------------- */

.morph-btn,
.morph-background {
    display: inline-block;
    background-color: white;
    height: 45px;
    line-height: 45px;
    width: 170px;
}

.morph-btn {
    color: #0f4c87;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 1;
}

.morph-background {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -webkit-transform 0.3s;
    -ms-transition: -webkit-transform 0.3s;
    -o-transition: -webkit-transform 0.3s;
}


/* =======================================================================
## ++ Break Points
========================================================================== */
@media only screen and (max-width: 360px) {
    nav#site-navigation ul li ul li a {
        font-size: 14px;
    }
}

@media only screen and (max-width: 768px) {
    #specialize .col1-content {
        grid-column: 1/5;
    }
    #specialize .col2-content {
        grid-column: 1/5;
    }
    #specialize .col3-content {
        grid-column: 1/5;
    }
    #aboutus .col1-content {
        grid-column: 1/5;
    }
    #aboutus .col2-content {
        grid-column: 1/5;
    }
    #aboutus .col3content {
        grid-column: 1/5;
    }
    #corevalues {
        row-gap: 5vh;
        padding-top: 5vh;
        padding-bottom: 5vh;
    }
    #corevalues .col1-content {
        grid-column: 1/5;
    }
    #corevalues .col2-content {
        grid-column: 1/5;
    }
    .coregrid .col1-content {
        grid-column: 1/5;
    }
    .coregrid .col2-content {
        grid-column: 1/5;
    }
    #contactus .col1 {
        grid-column: 1/5;
    }
    #contactus .col2 {
        grid-column: 1/5;
    }
    #services .title {
        grid-column: 1/5;
        grid-row: 1;
    }
    #services .browse-container {
        grid-column: 1/5;
        grid-row: 3;
    }
    #services .creating-container {
        grid-column: 1/5;
        grid-row: 2;
    }
    #services .creating {
        margin-left: 6vw;
    }
    #service-bottom-container .img1 {
        grid-column: 1/5;
    }
    #service-bottom-container .img2 {
        grid-column: 1/5;
    }
}

@media only screen and (max-width: 960px) {
    .footer-content {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-content: space-evenly;
    }
    .footer-col1,
    .footer-col2,
    .footer-col3 {
        padding: 0;
    }
}

@media only screen and (max-width: 1099px) {
    .huge-logo {
        grid-column: 1/5;
        grid-row: 1;
        align-self: stretch;
    }
    #site-navigation {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100%;
        left: -100%;
        transition: transform .3s ease-in-out;
        background-color: rgba(255, 255, 255, 0.89);
        -webkit-transition: transform .3s ease-in-out;
        -moz-transition: transform .3s ease-in-out;
        -ms-transition: transform .3s ease-in-out;
        -o-transition: transform .3s ease-in-out;
    }
    #site-navigation:target {
        transform: translateX(100%);
    }
    .menu-menu-1-container {
        display: flex;
        justify-content: left;
        align-items: left;
        margin-top: 10vh;
        margin-left: 5vw;
    }

    #site-navigation li {
        display: block !important;
        margin-bottom: 2vh;
    }
    nav#site-navigation ul li ul li {
        padding: 0;
        text-indent: 20px;
    }
    nav#site-navigation ul li ul.sub-menu {
        margin-top: 2vh;
        display: block !important;
        border: none !important;
        background-color: inherit !important;
        visibility: visible;
        opacity: 1;
        position: relative !important;
        left: 0;
        top: 0;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;   
    }
    #site-navigation li a {
        color: #666666 !important;
        transition: all ease-out .2s;
        padding: 5px !important;
    }
    #site-navigation li a:hover {
        background-color: #10437c;
        color: white !important;
        transition: all ease-in .2s;
        -webkit-transition: all ease-in .2s;
        -moz-transition: all ease-in .2s;
        -ms-transition: all ease-in .2s;
        -o-transition: all ease-in .2s;
    }
    #home-hero-img {
        padding-top: 10vh;
        padding-left: 10vw;
    }
    .home-hero-img-content-border {
        width: 80vw;
        margin-bottom: 10vh;
    }
    .contact-header {
        text-align: center;
    }
    .contact-header p {
        margin-right: 0
    }
    #benefits ul li {
        display: table;
        margin-top: 2vh;
        text-align: center;
    }
    .open {
        color: white;
        font-size: 30px;
        padding: 10px;
        border-radius: 5px;
        position: absolute;
        left: 2px;
        top: -5px;
    }
    /* .close {
        float: right;
        display: block;
        text-decoration: none;
        position: relative;
        top: 10px;
        right: 30px;
        height: 60px;
        width: 60px;
        color: black;
        border: 1px solid black;
    }*/
    .close {
        position: absolute;
        right: 32px;
        top: 10px;
        width: 32px;
        height: 32px;
        opacity: 0.5;
    }
    .close:hover {
        opacity: 1;
    }
    .close:before,
    .close:after {
        position: absolute;
        left: 15px;
        content: ' ';
        height: 33px;
        width: 2px;
        background-color: black;
    }
    .close:before {
        transform: rotate(45deg);
    }
    .close:after {
        transform: rotate(-45deg);
    }
    .admin-bar .sticky-header {
        top: 32px;
    }
}

@media only screen and (min-width: 1100px) {
    .toggle {
        display: none;
    }
}
