
/* pull roboto bold from goodle */

@import url(http://fonts.googleapis.com/css?family=Roboto:700);

/* pull roboto font from google */

@import url(http://fonts.googleapis.com/css?family=Roboto:400);

/* global font as roboto */

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    text-align: left;
    width: 100%;
}

/* set global colors with a navy, cyan and grey */

:root {
    --navy: #1b224f;
    --cyan: #42c4f1;
    --grey: #dddee2;
    --light-navy: #2c3e50;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* give the cards a white background and a box shadow */

.card {
    background-color: #ffffff;
    /* box-shadow: 0 5px 8px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); */
    margin: 0;
    max-width: 450px;
    position: relative;
    /* text-align: center; */
    /* border-radius: 5px; */
    /* margin:30px; */
    /* transition: all 1s; */
}



/* give 2nd card 40px horizontal margin */

.card:nth-child(2) {
    margin: 0 75px;
}

.card img {
    border-radius: 5px 5px 0 0;
    width: 100%;
}

.card .card-content {
    /* padding: 20px; */
    text-align: left;
}

/* add a hover effect to card that makes the box shadow bigger and darker */

.card:hover {
    /* box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22); */
}

/* style the h1 to be a large header */

h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.5;
    padding: 0;
}

/* style the h2 to be a smaller header */

h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5;
    padding: 0;
    color: var(--navy);
}

h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    padding: 0;
    margin: 0;
    color: var(--navy);
}

/* style the p to be a paragraph */

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

/* style the a to be a link */

a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    text-decoration: none;
}


/* black nav bar */
nav {
    background-color: #000000;
    border-bottom: 1px solid #000000;
    border-top: 1px solid #000000;
    color: #ffffff;
    font-size: 14px;
    height: 75px;
    line-height: 50px;
    margin: 0;
    padding: 0;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}

nav image {
    float: left;
    height: 50px;
    margin: 0;
    padding: 0;
    width: 50px;
    left: 20px;
}

/* set hr to be light navy */

hr {
    border: 0;
    border-bottom: 1px solid var(--light-navy);
    margin: 0;
    padding: 20px 0px 20px 0px;
}

/* style ul to be a horizontal menu */

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}

/* style li to be a horizontal menu item */

nav ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

/* style a to be a horizontal menu link */

nav ul li a {
    color: #ffffff;
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 50px;
    margin: 0;
    padding: 0 20px;
    text-decoration: none;
    text-transform: uppercase;
}


/* header-banner as banner image */

.header-banner {
    height: 600px;
    margin: 0;
    margin-top: 75px;
    padding: 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* center banner-text with absolute */

.header-banner .banner-text {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
}

.header-banner > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* icon-section is a horzontal flexbox */

.icon-section {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: var(--grey);
}

.icon-section-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    max-width: 1500px;
}

/* icon-container is a flexbox item */

.icon-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 40px 40px;
    width: 100%;
    text-align: center;
}

.icon-container img {
    height: 80px;
    max-width: 80px;
    margin: 0 auto;
    padding: 20px;
}

/* icon container h3 no margin top */

.icon-container h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 0;
    padding: 0;
    color: var(--navy);
}

/* spilt-section horizontal flexbox no wrap */

.split-section {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* split-left vertical flexbox no wrapping */

.split-left {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0;
    padding: 0;
    padding-right: 100px;
    padding-left: 20px;
    width: 50%;
    max-width: 600px;
}

.split-right {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 50%;
    max-width: 800px;
}

/* card-container horizontal flexbox no wrapping */

.card-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0;
    padding: 0;
    padding-bottom: 80px;
    width: 100%;
}

/*  cards should take up even space in their container */

.card {
    flex: 1;
    position: relative;
}

.watermark {
    position: absolute;
    top: 0;
    right: 10px;
    opacity: 0.3;
    z-index: 1;
}

.watermark-text{
    color: #ffffff;
    opacity: 1;
    font-size: 12px;
}

.tri-col-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

.tri-col {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0;
    width: 100%;
}

.tri-col:nth-child(2) {
    margin: 0 75px;
}

/* make cards p  tags align left */

.card p {
    text-align: left;
}

/* faq-container has a grey background flex centered*/    

.faq-container {
    background-color: var(--grey);
    margin: 0;
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

/* faq-container-inner same as faq-container but with max-width 1500px */

.faq-container-inner {
    background-color: var(--grey);
    margin: 0;
    padding: 40px 0;
    width: 100%;
    max-width: 1500px;
}

.faq-container-inner h2 {
    margin-bottom: 0;
}

.accordion-title {
    padding: 10px 0px;
    border-bottom: 2px transparent solid;
    transition: 0.3s;
}

.accordion-title:before {
    float: right !important;
    content:"\002B";
    font-size: 24px;
    padding-right: 5px;
}
.accordion-title.active:before {
    float: right !important;
    content:"\2212";
}

.active, .accordion-title:hover {
    border-color: var(--navy); 
    cursor: pointer;
  }

/* hidden accordion-content */

.accordion-content {
    padding: 10px 20px;
    display: none;
    background-color: white;
    overflow: hidden;
}

/* form-container has the navy background with white text */

.form-container {
    background-color: var(--navy);
    margin: 0;
    padding: 0;
    width: 100%;
    color: #ffffff;
    text-align: center;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.form-container h2 {
    margin: 0;
    color: #ffffff;
}

.form-container-inner {
    margin: 40px 0;
    padding: 20px;
    width: 100%;
    max-width: 1500px;
}

/* form-col-container is a flexbox with 3 cols */

.wpcf7-form.init {
    display: flex;
    justify-content: center;
}

.form-col-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 1200px;
}

/* form col is a vertical flexbox */

.form-col {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: top;
    margin: 0;
    padding: 0;
    width: 100%;
    padding: 20px;
}

/* label should be on the left of the element in form-col */

.form-col label {
    flex: 1;
    text-align: left;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

/* input should be on the right of the element in form-col */

.form-col input {
    flex: 1;
}

/* all inputs should have a small amount of padding and pill shaped corners */

input {
    border-radius: 20px;
    padding: 10px;
    border: none;
    margin-bottom: 20px;

}

/* select should follow the same styling */

select {
    border-radius: 20px;
    padding: 10px;
    border: none;
    border-right: 10px solid transparent;
    margin-bottom: 20px;
    min-width: 250px;
}

/* make textboxs the small as well and not reziable*/

textarea {
    border-radius: 5px;
    padding: 3px;
    border: none;
    resize: none;
}

/* make the submit button a button with a navy background and white text */

.form-col input[type="submit"] {
    background-color: var(--cyan);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    text-transform: uppercase;
}

/* remove margins on form-element labels    */

.form-element label {
    margin: 0;
}

/* footer has a black background */

.footer {
    background-color: #000000;
    margin: 0;
    padding: 0;
    width: 100%;
    color: #ffffff;
    height: 75px;
    text-align: center;
    display: flex;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
}

.footer > div> p > a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.wpcf7-spinner {
    display: none;
}

@media screen and (max-width: 1524px) {
    .form-col-container {
        flex-wrap: wrap;
    }
    .form-col {
        flex-direction: column;
        padding: 0;
        width: 45%;
    }
    .form-col label {
        flex-direction: column;
    }
    .form-col input {
        flex-direction: column;
    }
    .form-col input[type="submit"] {
        margin: 0 auto;
    }

    .faq-container-inner {
        padding: 0 40px 40px;
    }
    
    .card {
        margin: 0 20px;
    }

    .card:nth-child(2) {

        margin: 0 20px;
    }
	
	.storage-text {
		max-width:300px;
	}
}

@media screen and (max-width: 1024px) {
	.storage-text {
		max-width:250px;
	}
}

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

    .header-banner {
        height: 500px;
    }

    .managed {
        display: none;
    }
    .banner-text
    {
        width: 80%;
    }

    h1 {
        font-size: 42px !important;
    }

    h2 {
        font-size: 26px !important;
    }

    h3 {
        font-size: 18px !important;
    }
    
    p {
        font-size: 12px !important;
    }

    .nav-left {
        width: 100%;
    }
    .nav-right {
        display: none;
    }
    .icon-section-inner {
        flex-direction: column;
        align-items: center;
    }
    .icon-container {
        padding: 20px 0;
        
    }
    .split-section {
        flex-direction: column;
        align-items: center;

    }
    .split-left {
        padding: 0;
        width: 80%;
        text-align: center;
    }
    .card-container {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    .card:nth-child(2) {
        margin: 0 20px 60px;
    }
    .card {
        margin: 0 20px 60px;
        text-align: center;
    }

    .tri-col-container {
        flex-direction: column;
    }
    .tri-col {
        flex-direction: column;
    }
    .tri-col:nth-child(2) {
        margin: 0;
    }
    .form-col-container {
        flex-direction: column;
    }
    .form-col {
        flex-direction: column;
        padding: 0;
        width: 100%;
    }
    .form-col label {
        flex-direction: column;
    }
    .form-col input {
        flex-direction: column;
    }
    .form-col input[type="submit"] {
        margin: 0 auto;
    }
    .footer > div {
        margin: 0;
        padding: 0;
    }

    /* make all form elements 100% width */

    .form-element > p > label > span, .form-element > p > label > span > input, .form-element > p > label > span > select, .form-element > p > label > span > textarea {
        width: 100%;
    }

    .form-col input[type="submit"] {
        margin: 20px auto;
    }
	
	.storage-text {
		max-width:100%;
	}
}

@media screen and (max-width: 520px) {

    .icon-container:nth-child(2), .icon-container:nth-child(3) {
        padding: 0;
    }

    .faq-container-inner {
        padding: 0 20px 40px;
    }

    .footer > div> p > a {
        color: #ffffff;
        text-decoration: none;
        font-size: 12px;
    }

    .footer  {
        font-size: 12px;
    }

}