:root {
    --alside-main-color: #021e8d;
    /* 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,
.alside-h1-heading {
    font-size: 50px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    margin: 20px 0;
    font-weight: 700;
}

h2,
.alside-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 */
.alside-content-wrapper {
    max-width: 1800px;
    width: 98%;
    margin-inline: auto;
}

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

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

.alside-reverse-wrapper {
    flex-wrap: wrap-reverse;
}

.alside-main-left,
.alside-main-right {
    width: 48.5%;
    margin-inline: auto;
}

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


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

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


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

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

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

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


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

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


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

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


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

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

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

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

}

.alside-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(--alside-main-color);
    color: #ffffff;
    border: none;
    border-radius: 3px;
    z-index: 0;
    overflow: hidden;
    transition: all .3s;
    height: fit-content;
}

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

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

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

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

.alside-site-button:hover,
.alside-site-button:focus,
.alside-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;
    }
}



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

/* Hero Section */
.alside-hero-wrapper {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.71) 25%, rgba(0, 0, 0, 0.84) 100%), url(/imageserver/UserMedia/briantest6/alside-doors/alside-door-hero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 150px 0;
}

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

.alside-h1-heading.alside-hero-title {
    font-size: 55px;
    color: #fff;
    max-width: 25ch;
    text-shadow: 2px 2px #0000008f;
    font-weight: 600;
    -webkit-animation: fadeInEft .8s both;
    animation: fadeInLeft .8s both;
    animation-delay: 1s;
}

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

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

.alside-intro-image img {
    height: auto;
    border-radius: 12px;
    position: relative;
    max-width: 520px;
    width: 100%;
    border: 4px solid #fff;
}

.alside-product-title-image img {
    max-width: 400px;
    width: 100%;
}

.logo-div {
    position: absolute;
    padding: 5%;
}

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

.alside-page-content-wrapper {
    display: flex;
}

.alside-side-nav {
    background: #fafafa;
    padding: 0px;
    width: 75%;
    max-width: 225px;
}

.alside-side-nav-wrapper {
    display: flex;
    flex-direction: column;
}

.alside-side-nav-item {
    border-bottom: 1px solid #e3e3e3;
}

.alside-side-nav-item a {
    color: #000;
    font-size: 16px;
    width: 100%;
    height: 100%;
    display: block;
    padding: 15px 20px;
}

.alside-side-nav-item a:hover,
.alside-side-nav-item a.active-nav {
    color: #ffffff;
    background-color: var(--alside-main-color);
}

.alside-products-selector {
    position: relative;
    max-width: 1400px;
    margin: 0 auto 30px;
}

.selector-options {
    display: flex;
    position: relative;
    background: var(--alside-main-color);
    border-radius: 6px;
    overflow: hidden;
}

.selector-indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--alside-main-color);
    border-radius: 6px;
    transition: left 0.3s ease, width 0.3s ease;
    z-index: 1;
}

.option {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    padding: 12px 0;
    cursor: pointer;
    color: #fff;
    user-select: none;
    transition: color 0.3s ease;
}

.option.active {
    color: #fff;
    background: #002ad2;
}

.alside-products-widgets {
    max-width: 982px;
    width: 100%;
    margin-inline: auto;
}

.alside-details-images {
    display: flex;
    justify-content: flex-start;
    gap: 80px;
    text-align: center;
    align-items: end;
}

.alside-details-images img {
    max-width: 150px;
    width: 100%;
}

.alside-details-wrapper {
    display: flex;
    gap: 25px;
}

.alside-details-image img {
    max-width: 300px;
    width: 100%;
}

.alside-colors-wrapper {
    display: flex;
    gap: 30px;
    flex-flow: row wrap;
    justify-content: flex-start;
}

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

.alside-color {
    display: block;
    content: "";
    width: 150px;
    height: 150px;
    margin-inline: auto;
    border: 1px solid #00000029;
}

.alside-color-image img {
    max-width: 150px;
    width: 100%;
    height: auto;
}

.alside-color-item p {
    max-width: 14ch;
}


@media (max-width: 981px) {

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

    .alside-page-content-wrapper {
        display: flex;
        flex-flow: row wrap;
    }

    .alside-side-nav {
	background: #fafafa;
	padding: 0px;
	width: 100%;
	max-width: 100%;
}

.alside-side-nav-wrapper {
	display: flex;
	gap: 0px;
	flex-flow: row wrap;
}

.alside-side-nav-item {
	width: 50%;
	text-align: center;
	border-bottom: 1px solid #f3f3f3;
	border-left: 1px solid #f3f3f3;
}

.alside-side-nav-item a {
	color: #000;
	font-size: 16px;
	width: 100%;
	height: 100%;
	display: block;
	padding: 15px 20px;
}

.alside-intro-wrapper h2 {
    text-align: center;
}


}

@media (max-width: 600px) {
  .alside-side-nav-item {
    width: 100%;
  }
}