@charset "utf-8";
/* One Bay Stair Unit Main CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    overflow-x: hidden;
}

.top-bar {
	background-color: #ffde02;
	padding: 12px 0;
}

@media (max-width: 991.98px) {
.top-bar {
	padding: 6px 0;
}
}

h1, h2, h3 {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
}

h2 {
font-size: 3.2em;
margin-bottom: 0.5em;
}

@media (max-width: 1199.98px) {
h2 {
	font-size: 2.2em;
}
}

@media (max-width: 991.98px) {
h2 {
	font-size: 1.5em;
}
}

p, li {
	font-family: "Poppins", sans-serif;
	color: #000;
	font-size: 1em;
	font-weight: 400;
	line-height: 1.9em;
}

@media (max-width: 991.98px) {
p, li {
	font-size: 0.9em;
}
}

p a {
	text-decoration: none;
	font-weight: 700;
	color: #000;
}

p a:hover {
	color: #2752a0;
}

.sm-heading {
	font-family: "Poppins", sans-serif;
	color: #1d5cab;
	font-size: 1.1em;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0.3em;
}

.fluid-container-grey {
	background-color: #f7f7f7;
}

.page-title {
	color: #ffffff;
	
}

.page-title h1 {
	color: #ffffff;
	font-size: 3.5em;
	font-weight: 500;
	padding: 0.7em 0;
	margin-bottom: 0;
}

@media (max-width: 1199.98px) {
.page-title h1 {
	font-size: 3em;
}
}

@media (max-width: 991.98px) {
.page-title h1 {
	font-size: 2.5em;
}
}

@media (max-width: 767.98px) {
.page-title h1 {
	text-align: center;
	font-size: 2em;
}
}

/* Home */

/* Hero Sectiom */

.hero-section, .fluid-container-page-title {
    background: rgb(5,54,114);
    background: linear-gradient(145deg, rgba(5,54,114,1) 0%, rgba(53,117,197,1) 25%, rgba(53,117,197,1) 60%, rgba(5,54,114,1) 100%);
}

.hero-section-img-col {
	text-align: center;
	padding-top: 57px;
	padding-bottom: 44px;
}

@media (max-width: 991.98px) {
.hero-section-img-col {
	text-align: right;
}
}

@media (max-width: 767.98px) {
.hero-section-img-col {
	text-align: center;
}
}

@media (max-width: 1199.98px) {
.hero-section-img-col img {
	max-height: 580px;
}
}

@media (max-width: 991.98px) {
.hero-section-img-col img {
	max-height: 510px;
}
}

@media (max-width: 767.98px) {
.hero-section-img-col img {
	max-height: 420px;
}
}

.hero-section-intro-col {
	padding-left: 62px;
	padding-right: 50px;
}

@media (max-width: 991.98px) {
.hero-section-intro-col {
	padding-left: 20px;
	padding-right: 0px;
}
}

@media (max-width: 767.98px) {
.hero-section-intro-col {
	text-align: center;
	padding: 60px 20px 20px;
}
}

.hero-section-intro-col h1 {
	color: #ffffff;
	font-size: 5.5em;
	font-weight: 600;
	line-height: 1.1;
}

@media (max-width: 1199.98px) {
.hero-section-intro-col h1 {
	font-size: 4.5em;
}
}

@media (max-width: 991.98px) {
.hero-section-intro-col h1 {
	font-size: 3.5em;
}
}

.hero-section-intro-col p {
	color: #ffffff;
	font-size: 1.3em;
	line-height: 1.6;
}

@media (max-width: 1199.98px) {
.hero-section-intro-col p {
	font-size: 1.1em;
}
}

@media (max-width: 991.98px) {
.hero-section-intro-col p {
	font-size: 1em;
}
}


/* Features Bar */

.feature-bar {
	margin-top: 60px;
	margin-bottom: 50px;
}

.feature-div {
    background-color: #f7f7f7;
    padding: 16px;
    margin-bottom: 15px;
	transform: skew(-20deg);
}

.feature-div p {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-size: 1.2em;
	line-height: 1.5;
	margin-bottom: 0;
	transform: skew(20deg);
}

.icon-text-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligns items to the left */
}

.icon-wrapper img {
    width: 68px;
    height: 68px;
	transform: skew(20deg);
}

@media (max-width: 1199.98px) {
.feature-div, .feature-div p, .icon-wrapper img  {
	transform: none;
}
}

.text-wrapper {
    margin-left: 21px;
}

@media (max-width: 991.98px) {
    .icon-text-wrapper {
        flex-direction: column;
        text-align: center;
        justify-content: center; /* Center content for smaller screens */
    }
    .text-wrapper {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* Reviews */

.review-box {
    background-color: #ffffff;
    border: 1px solid #f1f1f1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.review-headline {
	font-family: "Poppins", sans-serif;
	color: #000;
	font-size: 1.4em;
	font-weight: 600;
}

.review-stars {
    display: flex;
    gap: 4px; /* Adds space between the stars */
}

.review-text {
	margin-top: 16px;
    font-family: "Poppins", sans-serif;
	color: #000;
	font-size: 0.95em;
	font-weight: 400;
    flex-grow: 1;
}

.review-author {
   font-family: "Poppins", sans-serif;
	color: #000;
	font-size: 1em;
	font-weight: 600;
	margin-bottom: 0px;
}

.row {
    display: flex;
}

.col-lg-4 {
    display: flex;
    flex-direction: column;
}

/* Video embed */

.youtube {
	margin: 0 auto;
	max-width: 1000px;
}

/* Components table */

.custom-table {
    border: 2px solid black;
    border-collapse: collapse;
}

.custom-table th, .custom-table td {
    border: 1px solid black;
    padding: 8px;
    text-align: center;
	vertical-align: middle;
}

.bg-yellow {
    background-color: #ffdd00;
}

.text-primary {
    color: #1f5caa;
}

.bg-blue {
    background-color: #1f5caa;
}

.text-white {
    color: white;
}

.font-weight-bold {
    font-weight: bold;
}

/* User guide */

#summary {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

/* Footer */

.fluid-container-footer {
	background-color: #1c5dab;
	padding: 15px;
}

.footer-heading {
	color: #ffffff;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 1.1em;
}

.footer-details{
	color: #5295e2;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 0.9em;
	text-decoration: none;
}

.footer-links a {
	color: #ffde00;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-size: 1em;
	text-decoration: none;
}

.footer-links a:hover {
	color: #ffffff;
	text-decoration: none;
}

.footer-copyright {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 0.9em;
	color: #5295e2;
}

@media (max-width: 991.98px) {
.footer-copyright {
	text-align: left;
	margin: 12px 0 0;
}
}

.footer-copyright a, .footer-copyright a:hover {
	color: #5295e2;
	font-weight: 400;
	text-decoration: none;
}

/* Buttons */

.btn-hero {
    position: relative;
    background-color: #ffde02;
    color: #346db6;
    font-family: "Poppins", sans-serif;
    font-size: 1.1em;
    font-weight: 500;
    padding: 16px 45px;
    border-radius: 0px;
    display: inline-block;
    margin-top: 40px;
}

.btn-hero:before {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
    border: 2px solid #ffde02;
    border-radius: 0px;
    pointer-events: none;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform: translate(0, 0);
}

.btn-hero:hover:before {
    transform: translate(-12px, -12px); 
}

.btn-hero:hover {
    color: #346db6; 
}

@media (max-width: 991.98px) {
.btn-hero {
	font-size: 1em;
	padding: 12px 38px 8px;
	margin-top: 10px;
}
}

.btn-blue {
    position: relative;
    background-color: #1d5cab;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 1.1em;
    font-weight: 500;
    padding: 16px 45px;
    border-radius: 0px;
    display: inline-block;
    margin-top: 20px;
}

.btn-blue:before {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
    border: 2px solid #1d5cab;
    border-radius: 0px;
    pointer-events: none;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform: translate(0, 0);
}

.btn-blue:hover:before {
    transform: translate(-12px, -12px); 
}

.btn-blue:hover {
    color: #ffffff; 
}

@media (max-width: 991.98px) {
.btn-blue {
	font-size: 1em;
	padding: 12px 38px 8px;
	margin-top: 10px;
}
}

.btn-submit {
    position: relative;
    background-color: #1d5cab;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 1em;
    font-weight: 500;
    padding: 10px 32px;
    border-radius: 0px;

}

.btn-submit:hover {
    color: #ffffff; 
}

.btn-check:focus+.btn, .btn:focus {
	box-shadow: none !important;
}


/* Google map*/

.google-maps {
	position: relative;
	padding-bottom: 35%; /* This is the aspect ratio */
	height: 0;
	overflow: hidden;
}

@media (max-width: 992px) {
.google-maps {
	padding-bottom: 55%; /* This is the aspect ratio */
 }
}

.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}