@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

:root{
    --main-color:#C0C0C0;
    --black:#13131a;
    --bg:#010103;
    --border:.1rem solid rgba(255,255,255,.3);
}

*{
    font-family: 'Roboto', sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none;
    /* text-transform: capitalize; */
    transition: .2s linear;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: .8rem;
}

html::-webkit-scrollbar-track{
    background: transparent;
}

html::-webkit-scrollbar{
    background: #fff;
    border-radius: 5rem;
}

body{
    background: var(--bg);
}

section{
    padding: 2rem 7%;
}

.heading{
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    font-size: 4rem;
}

.heading span{
    color:var(--main-color);
    text-transform: uppercase;
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: .9rem 3rem;
    font-size: 1.7rem;
    color: #fff;
    background: var(--main-color);
    cursor: pointer;
    text-align: center;
}

.btn:hover{
    letter-spacing: .2rem;
}

.header{
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:1.5rem 7%;
    border-bottom: var(--border);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
}

.header .logo img{
    height: 6rem;
    width: 2rem;  /* this line keeps the navbar centered due to the unused icon box */
    pointer-events: none;
    user-select: none;
}

.header .navbar a{
    margin:0 1rem;
    font-size:  1.6rem;
    color: #fff;
}

.header .navbar a:hover{
    color: var(--main-color);
    border-bottom: .1rem solid var(--main-color);
    padding-bottom: .5rem;
}

.header .icons div{
    color: #fff;
    cursor: pointer;
    font-size: 2.5rem;
    margin-left:  2rem;
}

.header .icons div:hover{
    color: var(--main-color);
}

#menu-btn{
    display: none;
}

.home{
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 0 auto;
    background: var(--bg);
    flex-wrap: wrap;
}

.home .content{
    max-width: 60rem;
    padding-bottom: 5rem;
}

.home .content img{
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .content p{
    font-size: 2rem;
    font-weight: lighter;
    font-style: italic;
    line-height: 1.8;
    padding: 1rem 0;
    color: #eee;
    display: flex;
    justify-content: center;
}

.home .content .wrapper{
    text-align: center;
    padding-right: 25rem;
    padding-top: 4rem;
}

.home .content .wrapper .btn{
    position: absolute;
    width: 25rem;
}

.thankYou .content{
    text-align: center;
    padding-top: 15rem;
    padding-bottom: 19.2rem;
}

.thankYou .content h3{
    font-size: 3.5rem;
    color: #fff;
    padding-top: 10rem;
    padding-bottom: 3rem;
}

.thankYou .content p{
    font-size: 2rem;
    font-weight: lighter;
    font-style: italic;
    line-height: 1.8;
    padding: 1rem 0;
    color: #eee;
    display: flex;
    justify-content: center;
}

.thankYou .content .wrapper{
    text-align: center;
    padding-right: 25rem;
    padding-top: 4rem;
    padding-bottom: 10rem;
}

.thankYou .content .wrapper .btn{
    position: absolute;
    width: 25rem;
}

.about .row{
    display: flex;
    align-items: center;
    background: var(--black);
    flex-wrap: wrap;
}

.about .row .image{
    flex:1 1 45rem;
}

.about .row .image img{
    width: 100%;
}

.about .row .content{
    flex: 1 1 45rem;
    padding: 2rem;
}

.about .row .content h3{
    font-size: 3.5rem;
    color: #fff;
    padding-bottom: 3rem;
}

.about .row .content p{
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
    padding-bottom: 3rem;
}

.services .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.services .box-container .box{
    border: var(--border);
}

.services .box-container .box .image{
    height: 25rem;
    overflow: hidden;
    width: 100%;
}

.services .box-container .box .image img{
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.services .box-container .box:hover .image img{
    transform: scale(1.2);
}

.services .box-container .box h3{
    color: #fff;
    font-size: 2rem;
    padding: 1rem 0;
}
.services .box-container .box .content{
    padding: 2rem;
}


.managers .row{
    display: flex;
    align-items: center;
    background: var(--black);
    flex-wrap: wrap;
}

.managers .row .image{
    flex:1 1 45rem;
}

.managers .row .image img{
    width: 100%;
}

.managers .row .content{
    flex: 1 1 45rem;
    padding: 2rem;
}

.managers .row .content h3{
    font-size: 3.5rem;
    color: #fff;
    padding-bottom: 5rem;
}

.managers .row .content p{
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
    padding-bottom: 5rem;
}

.testimonials .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
    padding-bottom: 5rem;
}

.testimonials .box-container .box{
    border: var(--border);
    text-align: center;
    padding: 3rem 2rem;
    display: inline-block;
    padding-bottom: 30px;
    min-height: 200px;

}

.testimonials .box-container .box p{
    font-size: 1.6rem;
    line-height: 1.8;
    color: #ccc;
    padding: 2rem 0;
}

.testimonials .box-container .box .wrapper{
    vertical-align: text-bottom;
}

.testimonials .box-container .box .wrapper h3{
    text-align: center;
    font-size: 2rem;
    color: #fff;
    padding: 1rem 0;
    padding-bottom: 3rem;
}

.testimonials .content{
    text-align: center;
    padding-right: 25rem;
    padding-top: 4rem;
    padding-bottom: 10rem;
}

.testimonials .content .btn{
    position: absolute;
    width: 25rem;
}

.contact .row{
    display: flex;
    background: var(--black);
    flex-wrap: wrap;
    gap: 1rem;
}

.contact .row form{
    flex:1 1 45rem;
    padding: 5rem 2rem;
    text-align: center;
}

.contact .row form h3{
    text-transform: uppercase;
    font-size: 3.5rem;
    color: #fff;
}

.contact .row form .inputBox{
    display: flex;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background: var(--black);
    border: var(--border);
}

.contact .row form .inputBox span{
    color: #fff;
    font-size: 2rem;
    padding-left: 2rem;
}

.contact .row form .inputBox input{
    width: 100%;
    padding: 2rem;
    font-size: 1.7rem;
    color: #fff;
    text-transform: none;
    background: none;
}

#messageBox{
    height: 150px;
}

#messageIcon{
    padding-bottom: 9rem;
}

.contact .row form .inputBox textarea{
    width: 100%;
    padding: 2rem;
    font-size: 1.7rem;
    color: #fff;
    text-transform: none;
    background: none;
    height: 150px;
    line-height: 150%;
    resize:none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
  font-size: 1.7rem;
}

.contact .row .content{
    flex: 1 1 45rem;
    padding: 2rem;
}

.contact .row .content h3{
    padding-top: 2rem;
    font-size: 3rem;
    color: #fff;
    text-align: center;
}

.contact .row .content h4{
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 3rem;
    color: #fff;
    text-align: center;
}

.contact .row .content p{
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
}

.contact .row .content ul li{
    font-size: 1.7rem;
    color: #ccc;
    padding: 1rem 0;
    list-style: none;
    line-height: 1.1;
}

.contact .row .content ul li span:first-child{
    float: left;
    padding: 0 10px 0 0;
}

.contact .row .content ul li span:first-child + span{
    float: right;
    padding: 0 0 0 10px;
}

.footer{
    background: var(--black);
    text-align: center;
}

.footer .links{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
    gap: 1rem;
}

.footer .links a{
    padding: .7rem 2rem;
    color: #fff;
    border: var(--border);
    font-size: 2rem;
}

.footer .links a:hover{
    background: var(--main-color);
}

.footer .credit{
    font-size: 2rem;
    color: #fff;
    font-weight: lighter;
    padding: 1.5rem;
}

.footer .credit a{
    color: var(--main-color);
}

.aboutUs{
    background: var(--bg);
    justify-content: center;
}

.aboutJo{
    background: var(--bg);
    justify-content: center;
}

.page-img{
    display: flex;
    justify-content: center;
    padding-bottom: 2rem;
}

.page-heading{
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    padding-top: 12rem;
    padding-bottom: 3.5rem;
    font-size: 4rem;
    align-items: center;
}

.page-heading span{
    color:var(--main-color);
    text-transform: uppercase;
}

.page-row{
    display: flex;
    justify-content: center;
}

.page-row .page-content{
    max-width: 60rem;
    justify-content: center;
}

.page-row .page-content pre{
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
    display: flex;
    justify-content: center;
}

.page-row .page-content h3{
    font-size: 2.5rem;
    color: #ccc;
    padding: 1rem 0;
    padding-top: 3rem;
    line-height: 1.8;
    display: flex;
    justify-content: center;
}

.page-row .page-content-acc{
    max-width: 60rem;
    justify-content: center;
}

.page-row .page-content-acc pre{
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
    display: flex;
    justify-content: center;
    padding-right: 5rem;
}

.page-row .page-content-acc h3{
    font-size: 2.5rem;
    color: #ccc;
    padding: 1rem 0;
    padding-top: 3rem;
    line-height: 1.8;
    display: flex;
    justify-content: center;
}

.page-row .page-content-val{
    max-width: 60rem;
    justify-content: center;
}

.page-row .page-content-val pre{
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
    display: flex;
    justify-content: center;
    padding-right: 5rem;
}

.page-row .page-content-val h3{
    font-size: 2.5rem;
    color: #ccc;
    padding: 1rem 0;
    padding-top: 3rem;
    line-height: 1.8;
    display: flex;
    justify-content: center;
}

.page-row .page-content-insurance{
    max-width: 60rem;
    justify-content: center;
}

.page-row .page-content-insurance pre{
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
    display: flex;
    justify-content: center;
    padding-right: 5rem;
}

.page-row .page-content-insurance h3{
    font-size: 2.5rem;
    color: #ccc;
    padding: 1rem 0;
    padding-top: 3rem;
    line-height: 1.8;
    display: flex;
    justify-content: center;
}

.page-row .page-content-maintenance{
    max-width: 60rem;
    justify-content: center;
}

.page-row .page-content-maintenance pre{
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
    display: flex;
    justify-content: center;
    padding-right: 5rem;
}

.page-row .page-content-maintenance h3{
    font-size: 2.5rem;
    color: #ccc;
    padding: 1rem 0;
    padding-top: 3rem;
    line-height: 1.8;
    display: flex;
    justify-content: center;
}

.page-row .page-content-maintenance img{
    padding-left: 5rem;
}

.page-row .page-content-byLaws{
    max-width: 60rem;
    justify-content: center;
}

.page-row .page-content-byLaws pre{
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
    display: flex;
    justify-content: center;
    padding-right: 5rem;
}

.page-row .page-content-byLaws h3{
    font-size: 2.5rem;
    color: #ccc;
    padding: 1rem 0;
    padding-top: 3rem;
    line-height: 1.8;
    display: flex;
    justify-content: center;
}

.page-row .page-content-inspections{
    max-width: 60rem;
    justify-content: center;
}

.page-row .page-content-inspections pre{
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
    display: flex;
    justify-content: center;
    padding-right: 8rem;
}

.page-row .page-content-inspections h3{
    font-size: 2.5rem;
    color: #ccc;
    padding: 1rem 0;
    padding-top: 3rem;
    line-height: 1.8;
    display: flex;
    justify-content: center;
}

.page-row .page-content-security{
    max-width: 60rem;
    justify-content: center;
}

.page-row .page-content-security pre{
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
    display: flex;
    justify-content: center;
    padding-right: 8rem;
}

.page-row .page-content-security h3{
    font-size: 2.5rem;
    color: #ccc;
    padding: 1rem 0;
    padding-top: 3rem;
    line-height: 1.8;
    display: flex;
    justify-content: center;
}

.page-row .page-content-houseRules{
    max-width: 60rem;
    justify-content: center;
}

.page-row .page-content-houseRules pre{
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
    display: flex;
    justify-content: center;
    padding-right: 6rem;
}

.page-row .page-content-houseRules h3{
    font-size: 2.5rem;
    color: #ccc;
    padding: 1rem 0;
    padding-top: 3rem;
    line-height: 1.8;
    display: flex;
    justify-content: center;
}

.page-row .page-content-managers{
    max-width: 60rem;
    justify-content: center;
}

.page-row .page-content-managers p{
    font-size: 1.6rem;
    color: #ccc;
    line-height: 1.8;
    display: flex;
    justify-content: center;
    padding-bottom: 3rem;
}

.page-row .page-content-managers h3{
    font-size: 2.5rem;
    color: #ccc;
    padding: 1rem 0;
    padding-top: 3rem;
    line-height: 1.8;
    display: flex;
    justify-content: center; /* this one for alignment of headings */
}







/* Media Queries */
@media (max-width:991px){

    html{
        font-size: 55%;
    }

    .header{
        padding:1.5rem 2rem;
    }

    section{
        padding: 2rem;
    }
}

@media (max-width:768px){

    #menu-btn{
        display: inline-block;
    }

    .header .navbar{
        position: absolute;
        top: 100%; right: -100%;
        background: var(--bg);
        border-left: var(--border);
        border-top: var(--border);
        width: 30rem;
        height: calc(100vh - 9.5rem);
    }

    .header .navbar.active{
        right: 0;
    }

    .header .navbar a{
        color: #fff;
        display: block;
        margin: 1.5rem;
        padding: .5rem;
        font-size: 2rem;
    }

    .header .search-form{
        width: 90%;
        right: 2rem;
    }

    .home{
        background-position: center;
    }

    .home .content p{
        font-size: 1.5rem;
    }
}

@media (max-width:450px){

    html{
        font-size: 50%;
    }
}