@charset "UTF-8";

/* General Reset */
body, html {
    font-family: "Lato", sans-serif;
    background-color: #FFFFFF;
    margin: 0 auto;
    font-style: normal;
    font-weight: 200;
    font-size: 15px;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Banner Section */
.t-banner {
    position: relative;
    width: 100%;
    margin-top: 7vw;
}

.t-banner img {
    width: 100%;
}

.t-banner h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-size: 5vw;
    text-shadow: 2px 2px rgba(100, 100, 100, 0.5);
}

/* Intro Text Section */
.text-block {
    position: relative;
    margin: 5vw 5vw 0 5vw;
}

.text-block h3 {
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(98, 98, 98, 1.00);
}

/* Skewed Section Headings */
.text-block-a {
    position: relative;
    background-color: white;
    padding: 1vw;
    margin: 4vw auto 2vw auto;
    width: 35%;
    border-radius: 5px;
    box-shadow: 4px 8px 15px rgba(100, 100, 100, 0.3);
    transform: skewX(-25deg);
    z-index: 94;
}

.text-block-a h1 {
    margin: 0;
    color: rgba(45, 60, 85, 1.00);
    font-weight: 300;
    font-size: 1.6rem;
    transform: skewX(25deg);
}

.text-block-a img {
    float: left;
	margin-top: -15px;
    width: 15%;
    margin-right: 1vw;
    transform: skewX(25deg);
}

/* Filter Row */
.row-a {
    position: relative;
    width: 80%;
    margin: 5vw auto;
    padding: 2vw;
    border: 12px double rgba(255, 99, 72, 1.00);
    border-radius: 5px;
    text-align: center;
}

.row-a h4 {
	background-color: rgba(60, 85, 125, 1.0); /* same tone, but bold */
	color: white;
	font-size: 1.25rem;
	font-weight: 500;
	padding: 1.5rem;
	margin: 2rem auto;
	text-align: center;
	border-radius: 8px;
	max-width: 700px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.column-a {
    display: inline-block;
    width: 28%;
    margin: 1vw;
}

.column-a img {
    width: 50%;
    transition: transform 0.3s ease;
}

.column-a img:hover {
    transform: scale(1.1);
}

.column-a p, .column-a a {
    display: block;
    font-size: 18px;
    color: rgba(60, 85, 125, 1.00);
    text-decoration: none;
    font-weight: 300;
    margin-top: 0.5vw;
}

/* Section Products Layout */
.section-a {
    width: 90%;
    margin: 0 auto;
}

.box {
    background: white;
    width: 80%;
    margin: 5vw auto;
    padding: 2vw;
    box-shadow: 4px 8px 20px rgba(100, 100, 100, 0.5);
    border-radius: 5px;
    overflow: hidden;
}

.box img {
    width: 180px;
    float: right;
    margin-left: 2vw;
    border-radius: 5px;
}

.box h2 {
    color: rgba(60, 85, 125, 1.00);
    font-size: 2rem;
    margin-top: 0;
}

.box li {
    color: rgba(98, 98, 98, 1.00);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0.5vw;
    text-align: left;
}

.box ul {
    padding-left: 20px;
}

.box a {
    display: inline-block;
    margin-top: 1.5vw;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(60, 85, 125, 1.00);
    text-decoration: none;
    border: 1px solid rgba(60, 85, 125, 1.00);
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.box a:hover {
    background-color: rgba(60, 85, 125, 0.1);
}

/* Image Specific Sizes */
#CB, #IC, #CS, #FSMC {
    width: 125px;
}

/* Footer Section */
#info-placeholder {
    margin-top: 5vw;
}

/* Mobile Responsive Changes */
@media (max-width: 750px) {
    body, html {
        font-size: 14px;
    }

    .text-block {
        margin: 8vw 5vw;
    }

    .text-block-a {
        width: 70%;
        transform: skewX(-20deg);
    }

    .text-block-a h1, .text-block-a img {
        transform: skewX(20deg);
    }

    .row-a {
        width: 90%;
        padding: 4vw;
    }

    .column-a {
        width: 80%;
        margin: 3vw auto;
    }
	.column-a img {
		width: 25%;
	}

    .section-a {
        width: 95%;
    }

    .box {
        width: 90%;
        padding: 5vw;
    }

    .box img {
        width: 140px;
        float: none;
        display: block;
        margin: 2vw auto;
    }

    .t-banner h1 {
        font-size: 7vw;
    }
}