/*  green - 015a40  blue - 0063a2  */

body, html {
	margin: 0;
	height: 100%;
}

* {
	box-sizing: border-box;
    color: white;
    text-decoration: none;
}

.unselectable {
	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
    pointer-events: none;
    user-select: none;
}

/* background-color: #0082d2;
border-top: 20px solid #0063a2; */
.topBar {
    box-sizing: content-box;
    height: 48px;
    /* background-color: #015a40; */
    /* background-color: #0063a2; */
    background-color: rgb(0, 44, 31);
    text-align: center;
    line-height: 48px;
    font-size: 16pt;
    font-family: Garamond;
    text-align: right;
    padding-right: 10%;
}

nav {
    /* background-color: #0082d2; */
    /* background-color: #003b2a; */
    background-color: #003b2a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    text-align: center;
}

.navItem {
    height: 120px;
    width: 130px;
    line-height: 120px;
    font-family: Verdana;
    font-size: 18pt;
    margin: 0 30px;
}

.navUnderline {
    position: relative;
    bottom: 30px;
    background-color: #21ffb5;
    height: 4px;
    border-radius: 2px;
    width: 0px;

    left: 50%;
    transform: translateX(-50%);

    transition: width .1s ease-out, color .1s ease-out;
}

.navItem:hover {
    cursor: pointer;
    color: #21ffb5;
}

.navItem:hover .navUnderline {
    width: 80%;
}

#mainImage {
    display: block;
    width: 320px;
    margin-left: 20px;
    z-index: 2;
}


main {
    display: inline-block;
    width: 100%;
}

.mainContainer {
    position: relative;
    width: 100%;
    padding: 30px 10%;
    min-width: 800px;
    overflow: hidden;
}

.checkmark {
    color: #21ffb5;
    font-weight: bold;
    font-size: 24pt;
    line-height: 20px;
}

.emphasis {
    color: #21ffb5;
}

.greenBackground {
    background-image: url("images/GreenBackground.svg");
    background-size: cover;
    background-color:#00412e;
}

.greenBackgroundAlternate {
    background-color: #015a40;
    border-top: 20px solid #00412e;
    border-bottom: 20px solid #00412e;
}

.greenBackgroundFlipped {
    background-color: #015a40;
    background-image: url("images/GreenBackgroundFlipped.svg");
    background-size: cover;
}

.spliceBackground {
    background-color: #015a40;
    background-image: url("images/Splice.svg");
    background-repeat: repeat-x;
}

.blueBackground {
    background-color: #0082d2;
    border-top: 20px solid #0063a2;
    border-bottom: 20px solid #0063a2;
}

.conveyorImage {
    background-image: url("images/curvedconvey.png");
    background-repeat: no-repeat;
    background-size: auto 80%;
    background-position: 95%;
}

.conveyorImageGreen {
    background-image: url("images/greenconvey.png");
    background-repeat: no-repeat;
    background-size: auto 90%;
    background-position: 90%;
}

.processImage {
    background-image: url("images/convey.png");
    background-repeat: no-repeat;
    background-size: auto 80%;
    background-position: 5%;
}

.blueSpliceBackground {
    background-color: #2077b6;
    background-image: url("images/BlueSplice.svg");
    background-repeat: repeat-x;
}

.formHeading {
    width: 100%;
    
    background-image: url("images/chunker.png");
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: 100%;
}

h2 {
    font-family: Verdana;
    font-size: 28pt;
    font-weight: 100;
    margin: 0;
    margin-bottom: 20px;
}

h3 {
    font-family: Verdana;
    font-size: 20pt;
    margin: 0;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 400;
}

p {
 /*   font-family: Cambria; */
    font-family: Garamond;
    font-size: 16pt;
    padding: 10px 0px;
    width: 90%;
    margin: 20px 0;
}

u {
    color:#009dff;

}

.greenUnderline {
    width: 540px;
    height: 4px;
    border-radius: 2px;
    background-color: #21ffb5;
}

.blueUnderline {
    width: 540px;
    height: 4px;
    border-radius: 2px;
    background-color: #009dff;
}

.flexColContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
}

.flexTextCol {
    width: 50%;
    min-width: 500px;
}

.flexImgCol {
    width: 40%;
    min-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.colImg {
    width: 100%;
    max-width: 800px;
}

.checkImg {
    width: 20px;
    height: 20px;

}

.centerItems {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

li {
    font-size: 16pt;
    padding: 5px 0;
}

.barUl li{
    border-left: 6px solid #21ffb5;
    padding-left: 10px;
    margin: 5px 0px;
    margin-left: 20px;
}

.barUlRight li{
    border-right: 6px solid #21ffb5;
    padding-right: 10px;
    margin: 5px 0px;
    margin-right: 20px;
}

form {
    width: 110%;
    padding: 0 30%;
    margin: auto;
    margin-left: -5%;
    text-align: left;
    
    background-image: url("images/boxconvey.png");
    background-repeat: no-repeat;
    background-size: auto 50%;
    background-position: 0%;
}

label {
    font-family: Verdana;
    font-size: 16pt;
}

input[type="text"] {
    box-sizing: border-box;
    background-color: white;
    border: 4px solid white;
    outline: none;
    padding: 4px 8px;
    font-size: 14pt;
    margin: 4px 0 8px 0;
    border-radius: 5px;
    width: 100%;
    font-family: Garamond;
}

input[type="text"]:focus {
    border: 4px solid #0063a2;
    outline: none;
}

textarea {
    box-sizing: border-box;
    background-color: white;
    border: 4px solid white;
    outline: none;
    padding: 10px;
    font-size: 14pt;
    margin: 4px 0 8px 0;
    border-radius: 5px;
    width: 100%;
    font-family: Garamond;
    resize: none;
}

textarea:focus {
    border: 4px solid #0063a2;
    outline: none;
}

input[type="submit"]{
    border: none;
    font-size: 18pt;
	height: 50px;
	width: 200px;
	border-radius: 5px;
    text-align: center;
	background-color: #009dff;
    font-family: Verdana;
}
input[type="submit"]:hover{
	background-color: #0082d2;
	cursor: pointer;
}
input[type="submit"]:active{
	background-color: #0069aa;
}

.cardHolder {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 20px;
    margin-top: 20px;
}

.card {
    position: static;
    flex-grow: 1;
    width: 30%;
    max-height: 440px;
    min-width: 300px;
    max-width: 440px;
}

.cardTitleBox {
    position: relative;
    width: 95%;
    height: 52px;
    
    background-color: rgba(0, 157, 255, .8);

    -webkit-clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);

    bottom: 82px;
}

.cardTitle {
    font-size: 16pt;
    font-family: Verdana;
    font-weight: bold;
}

.cardImg {
    position: relative;
    max-height: 100%;
    max-width: 100%;
}
.contactImg {
    max-height: 35%;
    max-width: 80%;
}

.vendorContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    row-gap: 10px;
    margin: 20px 0;
}

.vendorImg {
    width: 10%;
    min-width: 200px;
}




footer {
    width: 80%;
    padding: 60px 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;

}

.footerCol {
    width: 25%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    flex-grow: 1;
}

.footerLogo {
    max-width: 300px;
    margin: auto;
    margin-top: 50px;
}

ol {
    list-style-type: none;
    font-size: 14pt;
    font-family: Garamond;
    padding: 0;
    margin: 0;
}

ol li {
    padding: 5px 0px;
}

.jumpA:hover {
    color: #21ffb5;
}

.iconImg {
    width: 32px;
    height: 32px;
    position: relative;
    left: -8px;
    top: 8px;
}

@media screen and (max-width: 1281px) {
    .mainContainer {
        padding: 80px 2.5%;
    }
    form {
        padding: 0 20%;
    }
}

@media screen and (max-width: 800px) {
    form {
        padding: 0 10%;
    }
}


@media screen and (max-width: 964px) {

    .flexTextCol {
        flex-grow: 1;
    }
    
    .flexImgCol {
        flex-grow: 1;
    }
}

