:root {
    --nor-blue-color: #0d294d;
    /* rgba(36, 81, 100, 1) */
}

body,
html {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
}

h6 {
    font-size: 40px;
    margin: 0;
    font-family: 'Poppins';
}

h1,
.nor-h1-heading {
    font-size: 50px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    margin: 20px 0;
    font-weight: 700;
}

h2,
.nor-h2-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 35px;
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
}

a {
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
}

p {
    font-size: 1em;
}

a.btn.btn-primary {
    padding: 16px 28px;
    border-radius: 5;
    background: #093d87;
    border: none;
    box-shadow: 0 4px 5px -3px #333;
    transition: 0.5s;
    font-weight: bold;
    transition: ease-out 0.4s;
}

a.btn.btn-primary:hover {
    box-shadow: inset 0 0 0 50px #3a639f;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    border-radius: 5px;
    max-width: 350px;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

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

.card p {
    max-width: 300px;
}

.card-content {
    padding: 2px 16px;
}


a.btn.btn-primary {
    padding: 16px 28px;
    border-radius: 5;
    background: #093d87;
    border: none;
    box-shadow: 0 4px 5px -3px #333;
    transition: 0.5s;
    font-weight: bold;
    transition: ease-out 0.4s;
}

a.btn.btn-primary:hover {
    box-shadow: inset 0 0 0 50px #3a639f;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

th {
    background-color: #0073BF;
    color: white;
}

td,
th {
    border: 1px solid black;
    text-align: right;
    padding: 2px 8px;
}

td:first-child {
    background-color: #dddddd;
}

.center {
    text-align: center;
}


/* Global Styles */
.nor-content-wrapper {
    max-width: 1800px;
    width: 98%;
    margin-inline: auto;
}

.nor-section-padding {
    padding: 60px 20px;
}

.nor-main-wrapper {
	display: flex;
	flex-flow: row wrap;
	padding: 35px 10px;
}

.nor-main-wrapper-reverse {
    flex-wrap: wrap-reverse;
}

.nor-main-left,
.nor-main-right {
    width: 50%;
    margin-inline: auto;
}

.nor-third-1 {
    width: 31.333%;
}


.nor-third-2 {
    width: 65.333%;
}

.nor-text {
    text-align: center;
}


.underline-sm {
    width: 75px;
    height: 3px;
    background-color: var(--nor-blue-color);
    border: none;
    margin: 10px auto 15px;
}

.white-underline {
    background-color: #fff;
}

.nor-h1-heading,
.nor-h2-heading,
.nor-h3-heading {
    line-height: 1.3em;
    letter-spacing: .075em;
}

.nor-h1-heading {
    font-size: 2.4em;
    font-weight: 700;
}


.nor-h1-underline {
    width: 70%;
}

.nor-h2-heading {
    font-size: 2.15em;
    font-weight: 600;
    position: relative;
    text-align: center;
}


.nor-h2-heading.nor-h2-alt {
    color: #fff;
}

.nor-h2-subtitle {
    text-align: center;
    color: #000;
    margin: 15px auto;
    position: relative;
    width: fit-content;
}


.nor-h3-heading {
    font-size: 1.3em;
    font-weight: 500;
    text-align: center;
}

.nor-h-alt {
    display: block;
    color: #fff;
    font-size: .6em;
    font-weight: 400;
    line-height: 1.3em;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.nor-h-highlight {
    font-style: italic;
    font-weight: 700;
}

.nor-sub-para {
    max-width: 125ch;
    margin: 15px 0 20px;
    font-weight: 600;
    font-style: italic;
    width: fit-content;
    font-size: 1em;

}

.nor-site-button {
    position: relative;
    display: block;
    font-size: .85em;
    font-weight: 500;
    letter-spacing: .05em;
    max-width: fit-content;
    width: 100%;
    text-align: center;
    margin-block: 25px auto;
    padding: 8px 12px;
    text-decoration: none;
    background-color: var(--nor-blue-color);
    color: #ffffff;
    border: none;
    border-radius: 3px;
    z-index: 0;
    overflow: hidden;
    transition: all .3s;
    height: fit-content;
}

.nor-alt-button {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid var(--nor-blue-color);
}

.nor-site-button a {
    color: #fff;
}

.nor-centered-button {
    margin-inline: auto;
}

/* .site-button-white {
color: var(--primary-color);
background: #fff;
} */

.nor-site-button:hover,
.nor-site-button:focus,
.nor-site-button:active {
    color: #fff;
    opacity: .8;
    text-decoration: none;

}

/* Global Animation */
.fade-in {
    opacity: 0;
    /* Initially hide the element */
    transition: opacity 2s ease;
    /* Smooth transition for opacity change */
    transition-delay: 3s;
}

/********* Keyframes *********/

@keyframes fadeInLeft {
    0% {
        left: -60px;
        opacity: 0;
    }

    100% {
        left: 0;
        opacity: 1;
    }
}

@keyframes fadeInRight {
    0% {
        left: 60px;
        opacity: 0;
    }

    100% {
        left: 0;
        opacity: 1;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}



.nor-page-wrapper {
    max-width: 2200px;
    width: 100%;
    margin-inline: auto;
}

/* Hero Section */
.nor-hero-wrapper {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .55) 25%, rgba(0, 0, 0, .65) 100%), url(/imageserver/UserMedia/briantest6/norandex/norandex-gutter-hero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 150px 0;

}

.nor-hero-wrapper-content {
    -webkit-animation: fadeInRight 1.25s both;
    animation: fadeInRight 1.25s both;
    animation-delay: 1s;
}

.nor-h1-heading.nor-hero-title {
    font-size: 65px;
    font-family: "Varela Round", sans-serif;
    color: #fff;
    max-width: 30ch;
    text-shadow: 2px 2px #0000008f;
    font-weight: 600;
    -webkit-animation: fadeInEft .8s both;
    animation: fadeInLeft .8s both;
    animation-delay: 1s;
}

.nor-hero-subtitle.nor-subtitle {
    font-size: 24px;
    color: #fff;
    max-width: 50ch;
    font-style: italic;
}

.logo-div {
    background: var(--nor-blue-color);
    padding: 1%;
}

.logo-div svg {
    max-width: 350px;
    width: 100%;
}

.nor-underline {
	text-align: center;
	position: relative;
	width: fit-content;
	margin: auto;
}

.nor-underline svg {
	max-width: 200px;
	width: 100%;
	margin-inline: auto;
}

.nor-underline::before,
.nor-underline::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 2px;
    background: var(--nor-blue-color);
    top: 15px;
}

.nor-underline::before {
    left: 0px;
}

.nor-underline::after {
    right: 0px;
}

/* Intro section */
.h2-heading {
    text-align: center;
}

.nor-intro-section {
	background: #d4bb9b87;
}

.nor-intro-wrapper {
    max-width: 1400px;
    margin-inline: auto;
}


.nor-intro-image {
    text-align: center;
}


.nor-intro-image img {
/*	height: 100%;*/
	border-radius: 12px;
	position: relative;
/*	max-width: 560px;*/
	width: 93%;
	object-fit: cover;
}

.intro-list-wrapper {
	margin-block: 35px;
	display: flex;
	flex-flow: column;
	gap: 15px;
}

.centered-text {
    text-align: center;
}

.nor-intro-text h3 {
	color: var(--nor-blue-color);
	margin-top: -30px;
	/* text-align: center; */
}


.nor-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 35px;
}

.nor-info-list-item {
    display: flex;
    gap: 10px;
}

.nor-info-list-item i {
    vertical-align: middle;
}

.intro-list-item {
	display: flex;
	flex-direction: row;
	gap: 10px;
	justify-content: flex-start;
	background: #fff;
	padding: 10px;
	border-radius: 8px;
	border: 2px solid #e3e3e3;
}

.intro-list-item span {
	font-size: 42px;
	color: #bd9969;
	background: var(--nor-blue-color);
	border-radius: 50%;
	padding: 5px;
	border: 2px solid;
}

.intro-list-text h3 {
    font-size: 18px;
    margin-block: 0;
}

.intro-list-text p {
    font-size: 16px;
}

.nor-info-list-item i svg {
    fill: var(--nor-blue-color);
    height: 24px;
    width: 24px;
}

.nor-info-list-item span {
    color: #000000;
    font-weight: 600;
}

.nor-products-section {
	background-image: linear-gradient(180deg,rgba(255, 255, 255, 0.98) 25%,rgba(255, 255, 255, 0.88) 100%) , url(/imageserver/UserMedia/briantest6/norandex/gutter-bg001.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
}

.products-title {
	text-align: center;
	margin-bottom: 40px;
}

.nor-products-wrapper {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

.nor-products-item {
    width: 23.333%;
}

.nor-products-item p {
	border: 2px solid var(--nor-blue-color);
	border-radius: 50%;
	padding: 15px 30px;
	text-align: center;
	width: 200px;
	height: 200px;
	margin-inline: auto;
	display: flex;
	justify-content: center;
	align-items: center;
    position: relative;
     transition:         0.08s ease-in;
  -o-transition:      0.08s ease-in;
  -ms-transition:     0.08s ease-in;
  -moz-transition:    0.08s ease-in;
  -webkit-transition: 0.08s ease-in;
    text-transform: uppercase;
  outline: 0;
  overflow:hidden;
  background: none;
  z-index: 1;
  font-weight: 600;
}



.fill:hover {
  color: whitesmoke;
}

.fill:before {
  content: "";
  position: absolute;
  background: #bb9868;
  bottom: 0;
  left: 0;
  right: 0;
  top: 100%;
  z-index: -1;
  transition: top 0.09s ease-in;
}

.fill:hover:before {
  top: 0;
}


.color-terms.metal-product.nor-section-padding {
	background: #0d294d;
	color: #fff;
}
.color-swatch {
	width: 200px;
	height: 35px;
}

.color-terms .nor-underline::before, .color-terms .nor-underline::after {
	background: #fff;
}

.nor-colors-list {
	display: flex;
	flex-flow: row wrap;
	gap: 12px;
	justify-content: space-between;
}

.nor-color-item {
	text-align: center;
}

.color-wrapper {
	display: flex;
	gap: 20px;
	justify-content: space-around;
}

.color-container {
	padding-inline: 15px;
}

.color-box {
	width: 80px;
	height: 80px;
	box-shadow: 0px 2px 4px -1px #0000006e;
}
.color-item {
	padding: 6px;
}

.color-box.white-color {
    background-color: #fff;
}

.color-box.tan-color {
    background-color: #dac79f;
}

.color-box.clay-color {
    background-color: #a5997f;
}

.color-box.bronze-color {
    background-color: #433f36;
}

.color-box.black-color {
    background-color: #000;
}



.footer_wrapper {
    position: relative;
    background: #090909;
    border-top: none;
    min-height: 300px;

}

.maincontent {
    display: block !important;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    border: none;
}



/***** Media Queries / Breakpoints *****/


@media (max-width: 981px) {

.nor-products-item {
	width: 47.333%;
	min-width: fit-content;
}

}


@media (max-width: 800px) {

    .nor-main-left,
    .nor-main-right {
        width: 100%;
        margin-inline: auto;
    }
    


    .nor-benefits-text .nor-site-button {
        margin-inline: auto;
    }

    .nor-shield-images img {
        max-width: 425px;
        width: 100%;
        margin-inline: auto;
    }


    .nor-h1-heading,
    .nor-h1-heading.nor-hero-title {
        font-size: 55px;
    }

    .nor-h2-heading {
        font-size: 2em;
    }

    .nor-hero-subtitle.nor-subtitle {
        font-size: 22px;
    }

    .mobile_logo img {
        max-width: 215px;

    }

    .nor-product-card {
        flex: unset;
        max-width: 520px;
        padding: 20px 20px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
        transition: all .3s ease;
        background: #fff;
    }

    .nor-cards-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .nor-card {
        padding: 60px 40px;
    }

    .nor-hero-wrapper {
        padding: 75px 0 50px;
    }

    .logo-div {
	top: 20px;
}

    .logo-div svg {
	max-width: 300px;
	width: 100%;
}


.color-wrapper {
	display: flex;
	flex-wrap: wrap;
}
}

@media (max-width: 560px) {



    .nor-h1-heading.nor-hero-title {
        font-size: 44px;
    }

    .nor-h2-heading {
        font-size: 1.85em;
    }

}


@media (max-width: 500px) {

}


@media (max-width: 450px) {

}

@media (max-width: 400px) {

}