@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@300;500;600;700&family=Playfair+Display:wght@500;700&display=swap');
    
 :root {
  --burgundy: #5D2A42;
  --sand: #FDF9EC;
  --tan: #FFF3CC;
  --mukta: 'Mukta', sans-serif;
  --playfair: 'Playfair Display', serif;
  --shadow:  4px 4px #88888825
}

/*Universal Styles*/

body {
	background-color: var(--sand); 

}

h1, h2 {
	color: var(--burgundy);
	font-family: var(--playfair);
    font-weight: 700;
}

h3, h4, h5, h6, p, a {
    color: var(--burgundy);
	font-family: var(--mukta);
}

h3, h4, h5 {
    font-weight: 500;
} 

p, a {
    font-weight: 700;
}
p {
    font-size: 0.9rem;
}
a {
    font-size: 1.4rem;
}
bg-white {
    background: white;
}

/*Swups*/
.transition-fade {
  transition: 0.1s;
  opacity: 1;
}

html.is-animating .transition-fade {
  opacity: 0;
}

.navbar {
    padding: 0;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--sand);
    width: calc(100%+20px);
}

.navbar {
    background-color:white;
    box-shadow: var(--shadow);
}

.navbar .navbar-brand img {
    height: 100%;
    max-height: 35px;
    max-width: 35px;
}

.navbar-brand {
    margin: 1rem 0 1rem 1rem;
    height: 50px;
    width: 50px;
}

.navbar-nav .navbar-toggler:focus,
.navbar-nav .navbar-toggler:active,
.navbar-nav  .navbar-toggler {
    border-color: transparent!important;
}

.navbar-light .navbar-toggler:focus,
.navbar-light .navbar-toggler:active,
.navbar-light .navbar-toggler{
    outline: none!important;
    box-shadow: none!important;
    color: transparent!important;
    border-color: transparent!important;
}

.navbar-nav .nav-item {
    border-bottom: 1px solid var(--sand);
    border-top: 1px solid var(--sand);
    opacity: 0.8;
}


.navbar-nav .nav-item a {
	padding-right: 1em;
    font-size: calc(100% + .75);
}

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link:link {
	color: var(--burgundy)!important;
}

.navbar-nav .nav-item a:visited {
}

.navbar-light .navbar-nav .nav-link:hover {
    background-color: var(--tan);
    color: var(--burgundy);
    transition: 0.5s;
}

.navbar-light .navbar-nav .nav-link:active {
    color: var(--sand);
    background-color: var(--burgundy)!important;
    box-shadow: var(--shadow);
    transition: 0.5s;
}
.navbar .contact:link {
    font-size: calc(100% + 2%);
    color: var(--burgundy);
    padding: 0;
    text-decoration: none;
}
.navbar .contact:active {
    font-size: calc(100% + 2%);
    color: var(--burgundy);
    text-decoration: none;
}
.navbar .contact:hover {
    font-size: calc(100% + 2%);
    color: var(--burgundy);
    opacity: 1;
    transition: 0.2s;
}
.navbar-toggler .navbar-toggler-icon {
    background-color: var(--tan);
    border-radius: 8px;
    padding: 1rem 1.5rem;
}
.navbar-toggler .navbar-toggler-icon:active {
    background-color: var(--burgundy);
}
.navbar-toggler .navbar-toggler-icon:hover {
    background-color: var(--burgundy);
}


/* Button*/
.btn-primary {
    color: var(--sand);
    background-color: var(--burgundy);
    border: 3px solid var(--sand);
    border-radius: 8px;
    box-shadow: var(--shadow);
    font-size: 24px;
    font-weight: 800;
}
.btn-secondary {
    color: var(--burgundy);
    background-color: var(--tan);
    border: 3px solid var(--burgundy);
    border-radius: 8px;
    box-shadow: var(--shadow);
    font-size: 24px;
    font-weight: 800;
}



/*Selected*/
.btn-primary:active, .btn-primary:focus, .btn-primary:hover  {
    color: var(--burgundy)!important;
    background-color: var(--sand)!important;
    border: 3px solid var(--burgundy)!important;
    border-radius: 8px!important;
    box-shadow: var(--shadow)!important;
    transition: 0.2s!important;
}
.btn-secondary:active, .btn-secondary:focus,  .btn-secondary:hover {
    color: var(--tan)!important;
    background-color: var(--burgundy)!important;
    border: 3px solid var(--tan)!important;
    border-radius: 8px!important;
    box-shadow: var(--shadow)!important;
    transition: 0.2s!important;
}



.container {
    max-width: 1440px;
}

.tan {
    color: var(--tan);
}


footer a:active {
    color: var(--burgundy);
    border-bottom: 2px solid var(--burgundy);
    transition: 0.2s;
}

footer {
    background-color: white;
    color: var(--burgundy);
    font-weight: 300px;
    padding: 1em;
}
footer span {
    font-size: calc(100% - 0.25em);
}
footer img {
    max-height: 50px;
    max-width: 50px;
}
footer ul {
    list-style-type: none;
    padding-left:0 ;
}
footer li a{
    font-size: calc(100% - 0.25em);
}
footer h6 {
    font-size: calc(100% + 0.125em);
    border-bottom: 1px solid var(--burgundy);
}

footer a{
    font-size: calc(100% + 0.25em);
}



/*Above The Fold*/

.hero {
    max-height: 900px;
    overflow:hidden;
}

.hero-btn {
    font-size: 1em;
}
.hero-card h2 {
    font-family: var(--mukta);
}
.hero-card {
    background-color: white ;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin: 0 2em 0 2em;
    padding: 2em;
}

.hero-header {
    margin: 2em 0 1em 0;
}

.hero img {
    height: auto;
    width: 80vw;
    border-radius:8px;

}
.hero .middle {
    margin: 25% 0 75% 0;
}

/*Section 2 Info*/
.section-2-header {
    margin: 0em 2em 0em 2em;
}


.section-2 {
    margin-top: 2em;
    margin-bottom: 5em;
}

.section-2 .container {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 560px;
    max-height: 460px;
    margin-top: 2em;
}

.section-2 > h2, p {
    max-width: 580px;
}
.section-2  h2 {
    margin-bottom: 3em;
    text-align: center;
}
.section-2 p {
    padding: 2rem 1rem;
}

.hero-btn {
    font-size: 2em;
}


/*Section 3 Stairlift */


.section-3 {
    margin-top:3em;
    margin-bottom:5em;
    
}

.section-3 p {
    max-width:unset;
    margin: 1rem 0;
}

.section-3 .card {
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin: 0.8em 0 0.8em 0;
}
.section-3 .card img {
    max-height: 200px;
    width: auto;
    border-radius:8px;
}

.section-3 .card-body .content {
    overflow-y: auto;
    max-height: 50%;

}

.section-3 .card-subtitle {
    background-color: var(--burgundy);
    border-radius: 8px;
    color: var(--sand);
    max-width: 240px;

}

.section-3 .card-footer {
    border: none;
    background-color: var(--tan);
}

.section-3 .card-title {
    padding: 1em 1.25em
}
.section-3 .card-body {
    padding: 0em 1.25em;
}

.section-3 h4 {
    background-color: var(--burgundy);
    border-radius: 8px;
    color: var(--sand);
    padding: 0 0.5em;
}


/*Section-4*/


.section-4 {
    margin-top: 3em;
    margin-bottom: 5em;
}

.section-4 .form-container {
    background-color:white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin:  0 2em 2em 2em;
    padding:2em 0 2em 0;
}

.section-4 .form-container form > .form-row {
    margin: 2em;
}

.section-4 .form-container .form-control {
    border-radius: 8px;
    border: 3px solid var(--burgundy);    
}

.section-4 p {
    max-width:none;
}

.section-4 .right-container {
    padding: 2em;
}

#main-burgundy-block{
    width: 100vw;
    height: calc(100vw - 40vw);
    aspect-ratio: 1/1;
    margin: -20% 0 -50% 0;
}


/*ABOUT-MOBILE-STYLES*/ /*ABOUT-MOBILE-STYLES*/ /*ABOUT-MOBILE-STYLES*/ /*ABOUT-MOBILE-STYLES*/ /*ABOUT-MOBILE-STYLES*/ 
/*Section*/
.about-1 {
    padding-top: 10%;
}
.about-1 img {
    color: var(--burgundy);
    width: 50px;
    height: auto;
    margin:1em 0 1em 0;
}
.about-fun-facts {
    background-color: white;
    box-shadow: var(--shadow);
    padding: 1em 0 1em 0;
    max-height:480px;
    max-width: 460px;
    margin-top: 5em;
    border-radius: 8px;
}
.about-fun-facts .about-fun-facts-info {
    padding: 0.25em 0.25em 0.25em 0;
    font-family: var(--mukta);
}

.about.statement {
    padding: 3em;
}

/*Dynamic Box Background*/
.about-svg-container {
    z-index: -1;
    position: absolute;
    top: -20%;
}


/*Section 2 Info*/
.about-2 {
    padding-top: 3em;
}

.about-2 .innovate{
    color: var(--sand);
    padding-top: 1em;
}

.about-2 .card {
    margin:0.75em 0 0 0;
    border: 3px solid var(--tan);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-2 .card-body {
    font-size: 1em;
    margin: 1rem 0.5rem;
    padding: 0;
}

/*Background Frame*/
#about-tan {
    z-index: -1;
    height: auto;
    width: 100vh;
    position:absolute;
    top:31%;
}

#about-purple {
    z-index: -1;
    height: auto;
    width: 100vh;
    position:absolute;
    top:50%;
}


/*Section 3 Stairlift */
.about-3 {
overflow: hidden;
padding: 5em 0 5em 0;
}

.about-3 h1{
padding: 0 0 2em 0;
}

#about-burgundy-block{
    background: var(--burgundy);
    width: 100vw;
    height:560px;
    aspect-ratio: 1/1;
    margin: -60% 0 -120% 0;
}

/*SERVICE MOBILE STYLES*/ /*SERVICE MOBILE STYLES*/ /*SERVICE MOBILE STYLES*/ /*SERVICE MOBILE STYLES*/ /*SERVICE MOBILE STYLES*/
/*Section-1*/
.service-1 {
    padding-top: 10%;
}
.service-1 img {
    color: var(--burgundy);
    width:80vw;
    border-radius: 8px;
    height:auto;
}
.service-fun-facts {
    background-color: white;
    box-shadow: var(--shadow);
    padding: 1em 0 1em 0;
    max-height:480px;
    max-width: 460px;
    margin-top: 5em;
}
.service-fun-facts .service-fun-facts-info {
    padding: 0.25em 0.25em 0.25em 0;
    font-family: var(--mukta);
}

.service-1 .service-statement {
    padding: 0.5em;
    color: var(--tan);
}




#service-burgundy-block{
    background: var(--burgundy);
    width: 100vw;
    height:480px;
    aspect-ratio: 1/1;
    margin: -108% 0 0 0;
}

/*Dynamic Box Background*/


/*Section 2 Aftercare*/
.service-2 {
    padding-top: 3em;
}

.service-2 .card {
    font-size: 0.8em;
    border:none;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 1.5rem 1em;
    margin: 1rem 0;
}

.service-2 .card-body {
    margin: 0.325em;
    padding: 0;
}
.service-2 h3 {
}




/*Section-3 Customer Reviews*/
.service-3 {
    padding-top: 2em;
}
.service-3 .card {
    border: unset;
}
.service-3 .carousel {
    box-shadow: var(--shadow);
    min-height: 300px;
    background-color: white;

}
.service-3 .card-footer{
    background-color: white;
    border: none;
    
}
.service-3 .carousel-prev{
    position: unset;
    color: var(--burgundy);
    background-color: var(--tan);
    border: none;
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 100%;
    font-size: 1.125em;
    padding: 0.5em;
}
.service-3 .carousel-next{
    position: unset;
    background-color: var(--tan);
    border: none;
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 100%;
    font-size: 1.125em;
    padding: 0.5em;
}
.service-reviews-control h1{
    padding:0 2em 0 1em;
    margin-top: 1em;
}


/*Section-4*/
.service-4 {
padding: 5em 1em 5em 1em;
}

.service-4 h2 {
padding: 2em 0 0 0;
}

/*Leaf SVG CSS*/
#leaf-main-container img {
    padding: 0!important;
    overflow: visible!important;
    background-color: transparent;
    margin-top: 8em!important;
    box-shadow: none!important;
    filter: drop-shadow(1px -2px 2px rgba(0,0,0,0.2));

}

#leaf1, #leaf2, #leaf3, #leaf4, #leaf5, #leaf6, #leaf7 {
    position: absolute;
}

#leaf-main-container #leaf1 {
    width: 3em;
    top: 1%;
    left: 77%;
    animation: clockwise2 5s infinite alternate-reverse ease-in-out;
}
#leaf-main-container #leaf2 {
    top: 3%;
    left: 71%;
    max-width: 10%;
 
}



@keyframes clockwise1 {
    from {
        transform: translateY(15px) rotate(0deg);
    }
    to {
        transform: translateY(5px) rotate(-15deg);
    }
}

@keyframes clockwise2 {
    from {
        transform: translateY(15px) rotate(0deg);
    }
    to {
        transform: translateY(5px) rotate(-15deg);
    }
}




/*STAIRLIFT INFO MOBILE*/ /*STAIRLIFT INFO MOBILE*/ /*STAIRLIFT INFO MOBILE*/ /*STAIRLIFT INFO MOBILE*/ /*STAIRLIFT INFO MOBILE*/ /*STAIRLIFT INFO MOBILE*/
/*Section-1*/
.stairlift-1 {
    padding-top: 10%;
}
.stairlift-1 img {
    color: var(--burgundy);
    width:80vw;
    height:auto;
}



/*Section 2 Stairlift Info*/
.stairlift-2 {
    padding-top: 3em;
    background-image: url(assets/svg/transparent-stairlift.svg);
    background-size: contain;
}

.stairlift-2 .card {
    font-size: 0.8em;
    border:none;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 1.2em 1rem;
}

.stairlift-2 .card-body {
    margin: 0.4rem 0;
    padding: 0;
}
.stairlift-2 h2 {
    background-color: var(--burgundy);
    color: var(--sand);
    padding: 0 0.25em 0 0.25em;
    border-radius: 8px;
}
.stairlift-2 .row {
    margin: 2.75em 0 2.75em 0;
}

.stairlift-2 img {
    width:60vw;
    height:auto;
}


/*Section 3 Stairlift */
.stairlift-3 {
    padding: 5em 0 5em 0;
}

.stairlift-3 .col-md-4 {
    background-image: url("assets/svg/transparent-stairlift.svg");
    background-repeat: repeat;
    background-size: contain;
}

.stairlift-3 h2 {
    margin:2rem;
    font-size: calc(100% + 0.75rem);
}

.stairlift-3 .card {
    padding: 1rem;
    border: 3px solid var(--tan);
    box-shadow: var(--shadow);
    border-radius: 8px;
    margin:2rem;
}

.stairlift-3 ul{
    list-style-type: none;
    color: var(--burgundy);
}



/*MOBILE-FORM*/ /*MOBILE-FORM*/ /*MOBILE-FORM*/ /*MOBILE-FORM*/ /*MOBILE-FORM*/
.mobile {
    max-height: 900px;
    overflow:hidden;
}
.mobile-card h2 {
    font-family: var(--mukta);
    padding: 0 1em 0 1em;
}
.mobile-card h4 {
    padding: 0 1.25em 0 1.25em;
}
.mobile-card {
    background-color: white ;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin: 0 1em 0 1em;
    padding: 1em;
}
.mobile-header {
    margin: 2em 4em 1em 4em;
}

.mobile img {
    height: auto;
    width: 80vw;

}
.mobile-text {
    font-size: 0.75em;
}
.mobile .middle {
    margin: 25% 0 75% 0;
}
.mobile-card label {
    margin: 0;
}

.mobile-card .form-control {
    border-radius: 8px;
    border: 3px solid var(--burgundy);
    margin: 0 0 1.25em 0;
}
.mobile-btn {
    margin:2em 0;            
}





.bg-burgundy {
    background-color: var(--burgundy);
    height: calc(100vh - 80vh);
}

.circle{
    width: calc(100vw - 50vw);
    height:calc(100vh - 90vh);
    border-radius:50px;
    background:white;
}

.generic-content h1 {
    font-family: unset;
    color: black;
    font-size: calc(100% + .5rem);
    margin: 0 auto;
}
.generic-content h3 {
    font-family: unset;
    color: black;
    font-size: unset;
}
.generic-content p {
    font-family: unset;
    color: black;
    font-size: unset;
}
.generic-content ol {
    font-family: unset;
    color: black;
    font-size: unset;
}
.generic-content ol li {
    font-family: unset;
    color: black;
    font-size: unset;
}