/* ~~~~~~ Main CSS File ~~~~~~ */
@font-face {
    src: url(fonts/audiowide.ttf);
    font-family: "audiowide";
}
@font-face {
    src: url(fonts/comfortaa.ttf);
    font-family: "comfortaa";
}
@font-face {
    src: url(fonts/mosk.ttf);
    font-family: "mosk";
}
@font-face {
	src: url(fonts/Americana.ttf);
	font-family: "Americana";
}
@font-face {
	src: url(fonts/Ballpark.TTF);
	font-family: "Ballpark";
}
@font-face {
  font-family: 'Bangkok';
  src: url('fonts/Bangkok.eot');
  src: url('fonts/Bangkok.eot?#iefix') format('embedded-opentype'),
      url('fonts/Bangkok.woff2') format('woff2'),
      url('fonts/Bangkok.woff') format('woff'),
      url('fonts/Bangkok.ttf') format('truetype'),
      url('fonts/Bangkok.svg#Bangkok') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
	src: url(fonts/Garamond.TTF);
	font-family: "Garamond";
}
@font-face {
	src: url(fonts/Latienne.otf);
	font-family: "Latienne";
}
@font-face {
	src: url(fonts/Lobster.otf);
	font-family: "Lobster";
}
@font-face {
	src: url(fonts/Souvenir.otf);
	font-family: "Souvenir";
}
@font-face {
	src: url(fonts/TimesNewRoman.ttf);
	font-family: "TimesNewRoman";
}
@font-face {
	src: url(fonts/TrajanPro.otf);
	font-family: "TrajanPro";
}
@font-face {
	src: url(fonts/Magic.ttf);
	font-family: "Magic";
}
@font-face {
	src: url(fonts/Shelley.ttf);
	font-family: "Shelley";
}
@font-face {
	src: url(fonts/Commercial.ttf);
	font-family: "Commerial";
}
@font-face {
	src: url(fonts/AvantGrade.TTF);
	font-family: "AvantGrade";
}
@font-face {
	src: url(fonts/Belwe.ttf);
	font-family: "Belwe";
}
@font-face {
	src: url(fonts/Blacklight.ttf);
	font-family: "Blacklight";
}
@font-face {
	src: url(fonts/Brush.otf);
	font-family: "Brush";
}
@font-face {
  font-family: 'Clarendon';
      src: url('fonts/Clarendon.eot');
      src: url('fonts/Clarendon.eot?#iefix') format('embedded-opentype'),
          url('fonts/Clarendon.woff2') format('woff2'),
          url('fonts/Clarendon.woff') format('woff'),
          url('fonts/Clarendon.ttf') format('truetype'),
          url('fonts/Clarendon.svg#Clarendon') format('svg');
      font-weight: 100;
      font-style: normal;
  }
@font-face {
	src: url(fonts/Cotillion.ttf);
	font-family: "Cotillion";
}
@font-face {
	src: url(fonts/RedSabal.otf);
	font-family: "RedSabal";
}
@font-face {
	src: url(fonts/Script.TTF);
	font-family: "Script";
}
@font-face {
	src: url(fonts/Swiss.ttf);
	font-family: "Swiss";
}

/* ~~~ Universal Styles ~~~ */
* {
    margin: 0;
    padding: 0;
}
html,
body {
    width: 100%;
    height: 100%;
}


/* Navbar Styles */
nav {
    width: 100%;
    height: 70px;
    display: flex;
    background-color: #FB0F44;
}
nav img {
    width: 130px;
    margin-right: 10px;
}
.nav-left {
    flex: 2;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 15px;
    display: flex;
}
.nav-float-right {
    padding-right: 20px;
}
.nav-float-left {
    flex: 1;
}
nav .top-level {
    display: inline-block;
    margin-right: 15px;
    padding: 5px 0px;
}
nav .arrow {
    font-size: 11px;
}
nav .top-level a {
    text-decoration: none;
    color: white;
    font-family: comfortaa;
    height: 60px;
}
nav .top-level:hover a {
    color: #FFD34E;
}
nav .sub-menu {
    display: none;
    position: absolute;
    background-color: white;
    box-sizing: border-box;
    padding: 5px;
    color: black;
    border-radius: 3px;
    box-shadow: -1px 1px 1px rgba(0,0,0,0.5);
    border: solid 1px black;
    z-index: 100;
		margin-top: 5px;
}
nav .sub-menu li:nth-last-child(1) {
    margin-bottom: 0px;
}
nav .sub-menu li {
    list-style: none;
    margin-bottom: 6px;
    box-sizing: border-box;
    padding: 4px;
    border-radius: 4px;
}
nav .sub-menu li:hover {
    background-color: #eee;
}
nav .sub-menu a {
    color: black;

}
nav li:hover .sub-menu {
    display: block;
}
nav .sub-menu:hover {
    display: block;
}
nav li:hover .sub-menu a {
    color: black;
}

.nav-right {
    width: auto;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
    padding-right: 10px;
}

/* ~~~ Slider Styles ~~~ */
.alert-bar {
  width: 100%;
  height: 60px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: comfortaa;
}
.alert-bar a {
  color: #fb0f44;
  text-decoration: none;
}


/* ~~~ Slider Styles ~~~ */
.slider-container {
    width: 100%;
    height: 65%;
    overflow: hidden;
}
.slider {
    overflow: hidden;
    width: 100%;
}
.slider-buttons {
    width: 100%;
    height: auto;
    background-color: #eee;
    display: flex;
    justify-content: center;
}
.prev,
.next {
    width: auto;
    height: auto;
    outline: none;
    border: none;
    padding: 5px 15px;
    border-radius: 2px;
    margin: 10px 0px;
    color: white;
    font-family: comfortaa;
    background-color: #FB0F44;
    cursor: pointer;
}
.prev {
    margin-right: 10px;
}
.next {
    margin-left: 10px;
}
.dot {
    width: 20px;
    height: 20px;
    outline: none;
    border: none;
    border-radius: 2px;
    font-family: comfortaa;
    color: rgba(0,0,0,0);
    background-color: #FB0F44;
    cursor: pointer;
}
.prev:hover,
.next:hover {
    background-color: #A80A2E;
}
.dot:hover {
    background-color: #A80A2E;
}
.mySlides {
    display: none;
}

/* ~~~ Boat Lettering Section Styles ~~~ */
.item {
    width: 100%;
    height: 50%;
    background-color: #eee;
    display: flex;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px 80px;
}
.item .text {
    width: 55%;
    height: auto;
}
.item h1 {
    font-family: "mosk";
    color: #FB0F44;
    font-size: 4.5em;
    text-align: center;
    line-height: 55px;
    margin-bottom: 20px;
}
.item p {
    font-family: "comfortaa";
    color: black;
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 15px;
}
.button-container button {
    left: 0;
    right: 0;
    width: auto;
    height: auto;
    border: none;
    outline: none;
    background-color: #FB0F44;
    border: solid 2px #FB0F44;
    padding: 10px 15px;
    color: white;
    font-family: "comfortaa";
    font-size: 1.3em;
    border-radius: 3px;
    cursor: pointer;

    -webkit-transition: 0.15s ease-in-out;
}
.button-container button:hover {
    background-color: white;
    border: solid 2px #FB0F44;
    color: #FB0F44;
}

.dark {
    background-color: rgba(0,0,0,0.2);
}
.button-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}
.section-left {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-right {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.vehicle-image {
    width: 500px;
}

.vehicle-image {
    width: 500px;
}
/* ~~~ Login and Register Styles ~~~ */
.container {
    width: 100%;
    height: auto;
    box-sizing: border-box;
}
.form-container {
    width: 400px;
    height: auto;
    background-color: #eee;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.4);
    border-radius: 3px;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    position: absolute;
}

.error-bar {
    width: 100%;
    height: auto;
    background-color: #E74C3C;
    color: white;
    margin-bottom: 20px;
    box-sizing: border-box;
    padding: 10px;
    font-family: comfortaa;
}

.form-title {
    width: 100%;
    height: 100px;
    background-color: #2C3E50;
    border-radius: 3px 3px 0px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form-title p {
    text-align: center;
    color: white;
    font-family: comfortaa;
    font-size: 2.5em;
}
.input-container {
    box-sizing: border-box;
    padding: 30px;
}
.text-input {
    width: 100%;
    height: 40px;
    padding: 0px 5px;
    box-sizing: border-box;
    background-color: white;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-family: comfortaa;
    outline: none;
    border: none;
    border: solid 1px rgba(0,0,0,0.5);

    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
}
.text-input:focus,
.textarea:focus {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
    box-shadow: -2px 2px 5px rgba(0,0,0,0.4);
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 20px;
}
.button-container input {
    width: auto;
    height: auto;
    outline: none;
    border: none;
    padding: 10px 25px;
    background-color: #89C444;
    color: white;
    font-family: comfortaa;
    font-size: 0.9em;
    cursor: pointer;

    -webkit-transition: all 0.15s ease;
}
.button-container input:hover {
    -webkit-transform: translate(3px, -3px);
    transform: translate(3px, -3px);
    box-shadow: -2px 2px 3px rgba(0,0,0,0.4);
    background-color: #77AB3B;
}

.switch {
    width: 100%;
    height: auto;
    padding-top: 20px;
}
.switch a {
    text-decoration: none;
    color: black;
}
.switch-title-container {
    width: 100%;
    height: auto;
    position: relative;
}
.switch-title-container .separator {
    width: 100%;
    height: 1px;
    background-color: black;
    position: absolute;
}
.switch-title {
    text-align: center;
    font-family: comfortaa;
    color: black;
    margin-bottom: 10px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #eee;
    width: 170px;
    margin-top: -10px;
    z-index: 20;
}
.switch-title-1 {
    text-align: center;
    font-family: comfortaa;
    color: black;
    margin-bottom: 10px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #eee;
    width: 220px;
    margin-top: -10px;
    z-index: 20;
}
.reg,
.log {
    width: 100%;
    height: 35px;
    outline: none;
    border: none;
    font-family: comfortaa;
    margin-top: 30px;
    cursor: pointer;
    text-align: center;
    background-color: #CFCFCF;
    box-sizing: border-box;
    padding-top: 7px;

    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
}
.reg:hover,
.log:hover {
    background-color: #c2c2c2;
}


/* ~~~ Contact Form ~~~ */
.map-container {
    width: 100%;
    height: 450px;
}
.map-container .map {
    width: 100%;
    height: 100%;
    background-color: #34495E;
}
.map-container .map iframe {
    height: 450px;
}

.info-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding: 20px;
}
.contact-form {
    width: 500px;
    height: auto;
    background-color: #DEDEDE;
    box-shadow: -4px 4px 1px rgba(0,0,0,0.4);
}
.contact-form .title,
.contact-info .title {
    width: 100%;
    height: 90px;
    background-color: #3F5765;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-form h1,
.contact-info h1 {
    font-size: 2em;
    color: white;
    font-family: comfortaa;
    text-align: center;
}
.contact {
    box-sizing: border-box;
    padding: 20px;
}
.contact .text-input {
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    margin-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    font-family: comfortaa;

    -webkit-transition: all 0.1s ease;
}
.contact .text-input:focus,
.contact .textarea-input:focus {
    /*border: solid 1px #FB0F44;*/
    box-shadow: -2px 2px 1px rgba(0,0,0,0.4);

    -webkit-transform: translate(2px, -2px);
}
.contact .textarea-input {
    font-family: comfortaa;
    width: 100%;
    height: 200px;
    outline: none;
    border: none;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 1.2em;

    -webkit-transition: all 0.1s ease;
}
.contact .button-container .submit {
    width: auto;
    height: auto;
    background-color: #C70C36;
    outline: none;
    border: none;
    border: solid 1px rgba(0,0,0,0);
    color: rgba(0,0,0,1);
    cursor: pointer;
    font-family: comfortaa;
    color: white;

    -webkit-transition: all 0.1s ease;
}
.contact .button-container .submit:hover {
    -webkit-transform: translate(3px, -3px);
    box-shadow: -3px 3px 1px rgba(0,0,0,0.4);
    background-color: #89C444;
}

.contact-info {
    width: 535px;
    height: 455px;
    background-color: #eee;
    margin-top: 30px;
    box-shadow: -4px 4px 1px rgba(0,0,0,0.4);
    padding-bottom: 10px;
}
.contact-info .info {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin: 30px;
}
.contact-info .info li:nth-last-child(1) {
    margin-bottom: 0px;
}
.contact-info .info li {
    list-style: none;
    font-family: "mosk";
    color: rgb(130,130,130);
    margin-bottom: 10px;
    font-size: 1.2em;
    width: 100%;
    background-color: white;
    box-sizing: border-box;
    padding: 10px;
}
.contact-info .info li span {
    color: #FF3D2E;
    font-weight: bold;
    text-decoration: underline;
}


.center {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}



/* ~~~ Footer Styles ~~~ */
footer {
    width: 100%;
    height: auto;
    background-color: #105B63;
    display: flex;
    box-sizing: border-box;
    padding: 10px;
    border-top: solid 3px rgb(32,32,30);
}
footer h1 {
    font-family: mosk;
    color: white;
    border-bottom: solid 3px white;
    margin-bottom: 10px;
    padding-bottom: 3px;
    text-align: center;
}
footer li {
    list-style: none;
    margin-bottom: 10px;
}
footer li a:hover {
    color: #FB0F44;
    text-shadow: -1px 1px 1px black;
}
footer a {
    text-decoration: none;
    color: white;
    font-family: comfortaa;
}
footer .text {
    width: auto;
    height: auto;
}
.shop-links,
.howto-links,
.misc-links {
    flex: 1;
    height: 100%;
    box-sizing: border-box;
    padding: 10px;
    display: flex;
    justify-content: center;
}
.shop-links {
    border-right: solid 2px rgb(32,32,30);
}
.misc-links {
    border-left: solid 2px rgb(32,32,30);
}
.copyright {
    width: 100%;
    height: 50px;
    background-color: #FB0F44;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: comfortaa;
}


/* ~~~ Boat Lettering How To Page Styles ~~~ */
.howto-main-container {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    font-family: comfortaa;
}
.howto-header {
    width: 100%;
    height: auto;
    //background-color: rgba(0,0,0,0.1);
    padding: 10px 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.main-title {
    width: 100%;
    height: auto;
    padding: 5px 0px;
    font-size: 1.5em;
}
.secondary-title {
    width: 100%;
    height: auto;
    padding: 5px 0px;
    font-size: 1.5em;
}
.main-description {
    width: 100%;
    height: auto;
    padding: 5px 0px 5px 0px;
    font-size: 1.25em;
}
.howto-blocks {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 0px 20px 20px 20px;
}
.howto-block-container {
    width: 100%;
    height: auto;
    display: flex;
    margin-bottom: 20px;
}
.howto-block-container:last-child {
    margin-bottom: 0px;
}
.block-left {
    width: 400px;
    height: auto;
}
.block-image {
    width: auto;
    height: auto;
    box-sizing: border-box;
}
.block-image img {
  height: 300px;
  border: solid 2px black;
}
.block-right {
    flex: 1;
    height: 100%;
    padding: 10px 15px;
    box-sizing: border-box;
}
.block-title {
    font-size: 1.6em;
    padding-bottom: 10px;
}
.block-description {
    font-size: 1.5em;
}







/* ~~~ Projects Form Styles ~~~ */
.project-form {
    width: 400px;
    height: 500px;
    background-color: #eee;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: 30px;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.5);
}
.project-title {
    width: 100%;
    height: 100px;
    background-color: #2c3e50;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: comfortaa;
    font-size: 2.5em;
}
.cat-bar {
    width: 100%;
    height: auto;
    background-color: #eee;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    padding: 10px;
}
.cat-bar ul {
    display: flex;
    flex-wrap: wrap;
}
.cat-bar ul a {
    margin: 10px 2px;
    color: black;
    text-decoration: none;
}
.cat-bar ul li {
    display: inline;
    font-family: comfortaa;
    margin-right: 10px;
    background-color: white;
    padding: 5px 10px;
}
.cat-bar ul a li:hover {
    background-color: rgba(0,0,0,0.1);
}
.cat-bar ul li a {
    color: black;
    text-decoration: none;

    -webkit-transition: all 0.15s ease;
}
.cat-bar ul li a:hover {
    color: red;
}




/* ~~~ Projects Styles ~~~ */
.project-notice {
		width: 100%;
		height: auto;
		padding: 8px 0px;
		text-align: center;
		color: white;
		font-family: "Comfortaa";
		background-color: rgba(239,64,53,1);
}

.projects {
    width: 100%;
    height: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 0px 0px 10px;
}
.project {
    width: calc(25% - 12px);
    margin-bottom: 8px;
    margin-right: 8px;
    height: 500px;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
}
.project img {
    height: 100%;
    width: auto;
    z-index: 1;
    position: absolute;
}
.project .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(32,32,30,0.8);
    opacity: 0;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
		cursor: pointer;

    -webkit-transition: all 0.3s ease;
    z-index: 10;
    position: absolute;
}
.project .text {
    box-sizing: border-box;
    padding: 20px;
}
.project h1 {
    font-family: mosk;
    font-size: 1.5em;
    margin-bottom: 3px;
}
.project p {
    font-family: comfortaa;
    font-size: 1.2em;
    text-align: left;
}
.project a {
    color: white;
    text-decoration: none;
    padding-top: 10px;
}
.project .delete-button {
    background-color: red;
    padding: 5px 10px;
    font-family: comfortaa;
    width: auto;
    right: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
}
.project .delete-button:hover {
    background-color: #A8282B
}

.textarea {
    width: 100%;
    height: 150px;
    padding: 5px;
    box-sizing: border-box;
    font-family: comfortaa;
    font-size: 1.1em;

    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
    outline: none;
}
.file-upload {
    margin-bottom: 15px;
}
.select {
    margin-bottom: 15px;
    width: 100%;
    height: 40px;
    font-family: comfortaa;
    box-sizing: border-box;
    padding: 0px 5px;
    outline: none;
    color: rgb(135,135,135);
}
.option {
    font-size: 1.2em;
}

.project:hover .overlay {
    opacity: 1;
}



/* ~~~ Media Queries ~~~ */

@media screen and (max-width: 1680px) {
    .overlay-text h1 {
        font-size: 6.5em;
    }
        .overlay-text p {
        font-size: 3em;
    }
}

@media screen and (max-width: 1280px) and (max-height: 800px) {
    .section-left .text,
    .section-right .text {
        width: 80%;
    }
    .item h1 {
        font-size: 3.5em;
        margin-bottom: 5px;
    }
    .item p {
        font-size: 1.4em;
    }
}

/* ~~~ High Def Phone Query ~~~ */
@media screen and (max-width: 1080px) and (max-height: 1920px) {
    .slider-container {
        height: 25%;
    }
    .item {
        height: 350px;
    }
    .section-left .text,
    .section-right .text {
        width: 80%;
    }
    .item h1 {
        font-size: 2.7em;
        margin-bottom: 10px;
    }
    .item p {
        font-size: 1.5em;
    }

    .project {
        width: calc(25% - 11px);
        height: 150px;
    }
    .vehicle-image {
        width: 450px;
    }
}


/* ~~~ Modal Styles ~~~ */
.modal {
    width: 100%;
    height: 100%;
    background-color: white;
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: solid 2px black;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
}
.modal-header {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 10;
    position: absolute;
}
.close-modal {
    width: auto;
    height: auto;
    color: white;
    background-color: black;
    border: none;
    outline: none;
    border: solid 1px white;
    padding: 4px 7px 3px 7px;
    margin-left: 10px;
    z-index: 10;
		font-size: 20px;
		font-weight: thin;
		border-radius: 3px;
		-webkit-transition: all 0.1s ease;
}
.close-modal:hover {
    color: white;
    border: solid 1px white;
    cursor: pointer;
		background-color: red;
		box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}

.modal-content {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
		display: flex;
		justify-content: center;
		align-items: center;
}
.modal-pic {
    width: 100%;
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
}
.modal img {
    width: 800px;
	height: auto;
    position: relative;
}

.closed {
    display: none;
}
.open {
    display: inherit;
}
/* ~~~ iPad Pro Query ~~~ */
@media screen and (max-width: 1024px) and (max-height: 1366px) {
    .slider-container {
        height: 30%;
    }
    .item {
        height: 300px;
    }
    .section-left .text,
    .section-right .text {
        width: 70%;
    }
    .item h1 {
        font-size: 3em;
        margin-bottom: 5px;
    }
    .item p {
        font-size: 1.3em;
    }

    .container .form-container {
        width: 600px;
    }
    .container .form-container .form-title {
        font-size: 1.5em;
        height: 150px;
    }
    .container .form-container .input-container .text-input {
        height: 60px;
        padding: 0px 10px;
        font-size: 1.4em;
    }
    .container .form-container .input-container .button-container .submit {
        font-size: 1.6em;
    }
    .switch .reg,
    .switch .log {
        font-size: 1.6em;
        height: auto;
        box-sizing: border-box;
        padding: 10px 0px;
    }

    .project {
        width: calc(25% - 11px);
        height: 150px;
    }
    .vehicle-image {
        width: 400px;
    }

    .laser-products-main-container {
        display: grid;
        grid-template-columns: 33.3% 33.3% 33.3% !important;
    }
}

@media screen and (max-width: 1024px) and (max-height: 768px) {
    .item .text {
        width: 75%;
    }
    .item h1 {
        font-size: 3em;
        line-height: 45px;
        margin-bottom: 5px;
    }
    .item p {
        font-size: 1.3em;
    }
    .item .button-container button {
        font-size: 15px;
        padding: 5px 10px;
    }
    .overlay-text h1 {
        font-size: 5.2em;
    }
        .overlay-text p {
        font-size: 2em;
    }

    .project {
        width: calc(25% - 11px);
        height: 150px;
    }


    .video-container iframe {
        width: 800px;
        height: 450px;
    }
}

@media screen and (max-width: 768px) {
    .slider-container {
        height: 35%;
    }
    .item {
        height: 300px;
    }
    .overlay-text h1 {
        font-size: 3.8em;
    }
        .overlay-text p {
        font-size: 1.7em;
    }
    .project {
        width: calc(50% - 11px);
        height: 200px
    }
}

@media screen and (max-width: 640px) {
    .slider-container {
        height: 35%;
    }
    .item {
        height: 280px;
    }
    .item h1 {
        font-size: 2.3em;
        line-height: 30px;
        margin-bottom: 10px;
    }
    .item p {
        font-size: 1.1em;
    }
}


/* Boat Lettering Preview */
.preview-main {
	width: 100%;
	height: auto;
	// background-color: yellow;
	box-sizing: border-box;
}
.preview-main form {
	width: 100%;
	height: auto;
	// background-color: #ccc;
	display: flex;
	border-top: solid 1px rgba(0,0,0,0.4);
	border-bottom: solid 1px rgba(0,0,0,0.4);
}
.preview-main form .left {
	flex: 3;
	height: 100%;
	// background-color: blue;
	box-sizing: border-box;
	padding: 25px 20px;
}
.preview-main form .left h1 {
	margin-bottom: 15px;
	font-family: "Mosk";
	font-size: 2.4em;
}
.preview-main form .left input {
	width: 100%;
	height: 60px;
	box-sizing: border-box;
	padding: 0px 15px;
	font-size: 1.3em;
}
.preview-main form .right {
	border-left: solid 1px rgba(0,0,0,0.1);
	flex: 2;
	height: 100%;
	box-sizing: border-box;
	padding: 25px 20px;
}
.preview-main form .right .font-container {
	margin-bottom: 20px;
}
.preview-main form .right h1 {
	margin-bottom: 5px;
	font-family: "Comfortaa";
	font-size: 1.5em;
}
.preview-main form .right .font-select {
	width: 100%;
	height: 40px;
	font-size: 1.1em;
	box-sizing: border-box;
	padding: 0px 5px;
}
.preview-main form .right .color-select {
	width: 100%;
	height: 40px;
	font-size: 1.1em;
	box-sizing: border-box;
	padding: 0px 5px;
	margin-bottom: 20px;
}
.preview-main .preview {
	width: 100%;
	height: 150px;
	background-color: lightgray;
	box-sizing: border-box;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 5em;
	font-family: "Magic";
}
.preview-main #FLNumber, .preview-main #previewFL {
	text-transform: uppercase;
}
.preview-main #previewFL {
	font-family: "Swiss" !important;
	// font-weight: bold;
}


/*  Laser Products Page Styles  */
.laser-products-main-container {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    padding: 7px;
    box-sizing: border-box;
}

.laser-products-box {
    box-sizing: border-box;
    height: auto;
    margin: 7px;
    padding: 7px;
    border: solid 1px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

.laser-products-image {
    width: 100%;
    flex: 3;
}
.laser-products-image img {
    width: 100%;
}


.laser-products-description {
    width: 100%;
    height: 100%;
    padding: 10px;
    font-family: "Comfortaa";
    box-sizing: border-box;
    color: black;
    font-size: 20pt;
    text-align: center;
    background-color: rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

/*  Covid Products Page Styles  */
.covid-products-main-container {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    padding: 7px;
    box-sizing: border-box;
}

.covid-products-box {
    box-sizing: border-box;
    height: auto;
    margin: 7px;
    background-color: #F5F5F7;
    border: solid 1px rgba(0,0,0,0.2);
    padding: 7px;
}

.covid-products-image {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
}

.covid-products-image img {
    width: auto;
    height: 100%;
}

.covid-products-description {
    width: 100%;
    height: auto;
    padding: 10px;
    font-family: "Comfortaa";
    box-sizing: border-box;
    color: black;
    font-size: 20pt;
    text-align: center;
    background-color: rgba(0,0,0,0.1);
    margin-top: 5px;
}

/* --- ADA Signs Styles --- */

.ada-container {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20% ;
  padding: 7px;
  box-sizing: border-box;
}
.ada-product-box {
  box-sizing: border-box;
  height: auto;
  margin: 7px;
  padding: 7px;
  //background-color: rgba(0,0,0,0.03);
  border: solid 1px rgba(0,0,0,0.2);
}
.ada-product-image {
  width: 100%;
  height: auto;
  border-bottom: solid 1px rgba(0,0,0,0.2);
}
.ada-product-image img {
  width: 100%;
  height: auto;
}
.ada-product-title {
  width: 100%;
  height: auto;
  font-family: comfortaa;
  font-size: 1.4em;
  text-align: center;
  margin: 8px 0px;
}
.ada-product-description {
  width: 100%;
  height: auto;
  font-family: comfortaa;
  box-sizing: border-box;
  padding: 0px 5px 5px 5px;
  font-size: 0.85em;
}
.ada-description-list {
  width: 100%;
  height: auto;
  display: flex;
  margin-bottom: 3px;
}
.ada-description-list .bullet {
  width: auto;
  height: auto;
  padding-right: 10px;
}
.ada-description-list .list-info {
  flex: 1;
  height: auto;
}




@media screen and (max-width: 1450px) {
    .laser-products-main-container {
        grid-template-columns: 33.3% 33.3% 33.3%;
    }

    .covid-products-main-container {
        grid-template-columns: 33.3% 33.3% 33.3%;
    }
    .ada-container {
      grid-template-columns: 25% 25% 25% 25%;
    }
}

@media screen and (max-width: 1250px) {
    .laser-products-main-container {
        grid-template-columns: 50% 50%;
    }

    .covid-products-main-container {
        grid-template-columns: 50% 50%;
    }
    .ada-container {
      grid-template-columns: 33.3% 33.3% 33.3%;
    }
}

@media screen and (max-width: 1050px) {
    .laser-products-main-container {
        grid-template-columns: 50% 50%;
    }
    .laser-products-image {
        height: 300px;
    }

    .covid-products-main-container {
        grid-template-columns: 50% 50%;
    }
    .covid-products-image {
        height: 300px;
    }
    .ada-container {
      grid-template-columns: 50% 50%;
    }
}

@media screen and (max-width: 900px) {
    .laser-products-main-container {
        grid-template-columns: 100%;
    }
    .laser-products-image {
        height: 300px;
    }

    .covid-products-main-container {
        grid-template-columns: 100%;
    }
    .covid-products-image {
        height: 300px;
    }
    .ada-container {
      grid-template-columns: 100%;
    }
}



/* Fonts */

#Swiss {
	font-family: "Swiss";
}
#Magic {
	font-family: "Magic";
}
#Ballpark {
	font-family: "Ballpark";
}
#Brush {
	font-family: "Brush";
}
#Commerial {
	font-family: "Commerial";
}
#Cotillion {
	font-family: "Cotillion";
}
#Latienne {
	font-family: "Latienne";
}
#Lobster {
	font-family: "Lobster";
}
#RedSabal {
	font-family: "RedSabal";
}
#ScriptBold {
	font-family: "ScriptBold";
}
#Shelley {
	font-family: "Shelley";
}
#Garamond {
	font-family: "Garamond";
}
#Americana {
	font-family: "Americana";
}
#AvantGrade {
	font-family: "AvantGrade";
}
#Bangkok {
	font-family: "Bangkok";
}
#Belwe {
	font-family: "Belwe";
}
#Blacklight {
	font-family: "Blacklight";
}
#Clarendon {
	font-family: "Clarendon";
}
#Souvenir {
	font-family: "Souvenir";
}
#TimesNewRoman {
	font-family: "Times New Roman";
}
#TrajanPro {
	font-family: "TrajanPro";
}
