@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:ital,wght@0,400;0,500;0,600;1,400&family=Roboto+Slab:wght@400;700&display=swap');
:root{
    --blue: #009ADC;
    --lightblue: #E0ECFF;
    --grey: #D9D9D9;
    --darkgrey: #323232;
    --accent: #FF8970;
}
/* PAGE ASSETS */
*{
    font-family: "Montserrat", Helvetica;
}
body{
    padding-bottom: 0;
}
.mnav-bottom, .mnav-top, .mnav-service-head, .mservice-image, .msmenu-intro, .msmenu{
    display: none;
}
.blue-filter{
    filter: invert(43%) sepia(79%) saturate(3190%) hue-rotate(171deg) brightness(98%) contrast(101%) drop-shadow(1px 3px 1px white);
}
.orange-filter{
    filter: invert(56%) sepia(68%) saturate(615%) hue-rotate(317deg) brightness(113%) contrast(103%) drop-shadow(1px 1px 1px var(--darkgrey));
}
.bluetext{
    color: var(--blue);
}
.slab-bold{
    font-weight: 700;
}
.social-icon > img{
    max-height: 35px;
}
.btn-primary{
    background-color: var(--blue);
}
#main{
    flex-direction: column;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open>.dropdown-toggle.btn-primary {
    color: var(--blue);
    background-color: white !important;
    border-color: var(--blue); /*set the color you want here*/
    font-weight: bold;
}
.big-white-text{
    font-size: 26pt;
    font-family: "Roboto Slab", sans-serif;
    font-style: normal;
    color: white;
    border-bottom: 3px solid var(--accent);
}
.sm-black{
    font-size: 13pt;
    font-family: "Roboto Slab", sans-serif;
    font-style: normal;
}

/* NAV */
.top-bar{
    background-color: #323232;
    height: 65px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#tb-logo{
    display: flex;
    flex-direction: row;
    margin-left: 5rem;
}
.company-name{
    font-size: 2.25rem;
    color: white;
    display: flex;
    margin: auto;
    padding-left: 1rem;
    line-height: normal;
    align-self: center;
}
.nav-logo{
    height: 50px;
    width: 50px;
    overflow: hidden;
    display: flex;
    margin: auto;
}
.tb-contact-wrap{
    display: flex;
    align-items: center;
    margin-right: 5rem;
}
#tb-contact{
    border-radius: 15px;
    height: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}
.nav-link{
    font-family: "Roboto Slab", sans-serif;
    font-weight: 500;
    text-decoration: none;
    color:#000000;
}

.bottom-bar{
    background-color: var(--grey);
    height: 50px;
    width: 100%;
}
.bb-wrapper{
    display: flex;
    flex-direction: row;
    margin-left: 5rem;
}
.bb-button{
    border-left: 1px solid #323232;
    border-right: 1px solid #323232;
    height: 50px;
    width: 13rem;
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: var(--grey);
    color: black;
    padding: 1rem auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    z-index: 1;
}
.bb-button:hover{
    background-color: #323232;
    cursor: pointer;
}
.bb-button:hover > a{
    color: white;
}
.bb-button > p{
    font-weight: 500;
    margin: auto;
}
.bb-menu{
    width: 550px;
    height: 300px;
    display: none;
    position: absolute;
    padding-left: 25px;
    padding-right: 25px;
    z-index: 2;
    background-color: #323232;
    margin-top: 350px;
    left: 0;
    /* border: 2px dashed white; */
}
.bb-submenu{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 250px;
    justify-content: space-evenly;
}
.bb-button:hover .bb-menu{
    display: flex;
    flex-direction: row;
}

.bb-link{
    text-decoration: none;
    color: white;
    font-family: "Lato", sans-serif;
    font-size: 14pt;
    text-align: center;
}
.bb-link:hover{
    text-decoration: underline;
    text-decoration-color: var(--blue);
    text-decoration-thickness: 3px;
}

/* Service Landing Page */
.acc-intro{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 400px;
    width: 80vw;
    padding: 50px;
    margin: 20px auto;
}
.acc-intro-wrapper{
    width: 45vw;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.acc-header{
    font-family: "Roboto Slab", sans-serif;
    font-size: 60px;
    text-decoration: underline;
    text-decoration-color: var(--accent);
}
.acc-subheader{
    font-family: "Lato", sans-serif;
    font-size: 14pt;
    height: fit-content;
}
.acc-intro > figure > img {
    height: 300px;
    width: 300px;
}
/* accordion */
    .accordion{
        width: 70vw;
        margin: 40px auto;
    }
    /* .accordion-item{
        border: none;
        border:none !important;
        border-color: none !important;
    }
    .accordion-header{
        border:none;
    }
    .accordion-collapse{
        border:none !important;
        border-color: none !important;
    }
    .accordion-button{
        height: 70px;
        border-top-right-radius: 5px !important;
        border-top-left-radius: 5px !important;
    }
    .accordion-button:focus{
        border:none;
        color: white;
        box-shadow: none;
    }
    .accordion-button:not(:focus-visible){
        background-color: white;
        color: black;
    } 
    .accordion-button:not(.collapsed){
        color: white;
        background-color: var(--blue);
    }
    .accordion-body{
        color:white;
        background-color: var(--blue);
        height: 300px;
        border-bottom-left-radius: 5px !important;
        border-bottom-right-radius: 5px !important;
        border:none !important;
    } */
   

/* SERVICES */
.service{
    height: 650px;
    width: 100%;
    display: flex;
    flex-direction: row;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 100px;
    padding-right: 100px;
    align-items: center;
    justify-content: space-evenly;
}

.s-wrap{
    height: 550px;
    width: 750px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.s-header{
    font-family: "Roboto Slab", sans-serif;
    font-size: 48px;
    text-decoration: underline;
}
.s-text{
    font-family: "Lato", sans-serif;
    font-size: 14pt;
}
.s-link{
    text-decoration: none;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: bold;
}
.s-link:hover{
    text-decoration: underline;
    cursor: pointer;
}
.scontact-link{
    color: black;
    text-decoration-color: black;
    text-decoration: underline;
}
.sd > .s-wrap > .scontact-link{
    color: white;
    text-decoration-color: white;
    text-decoration: underline;
}
.s-img{
    height: 400px;
}
.sl{
    background-color: var(--grey);
    color: black;
    text-decoration-color: var(--accent);
}
.sd{
    background-color: var(--darkgrey);
    color: white;
}
.sl > .s-wrap > h2{
    text-decoration-color: var(--accent);
}
.sl > .s-wrap > a{
    color: black;
}
.sd > .s-wrap > h2{
    text-decoration-color: var(--blue);
}
.sd > .s-wrap > a{
    color: white;
    
}

/* HERO */
.hero{
    background-image: url("images/desk-tinted.jpeg"); 
    height: 600px;
    background-position: center;
    background-size: cover;
    align-items: center;
    justify-content: space-evenly;
}

.social-icon{
    width: 30px;
}
.hero-wrapper{
    width: 900px;
    padding-top: 100px;
    margin-left: 250px;
}
.hero-header{
    font-family: "Montserrat", sans-serif;
    color: white;
    font-size: 72px;
}
.hero-subheader{
    font-family: "Lato" sans-serif;
    font-size: 20px;
    color: white;
    margin-top: 70px;
    padding-left: 120px;
    text-align: right;
}

/* services */
.s-intro{
    width: auto;
    margin: 10px 5rem;  
}
.breadcrumb{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.breadcrumb > i {
    color: var(--darkgrey)
}
.bc-inactive{
    color: black;
}
.breadcrumb > a:hover{
    color: var(--blue)
}
.s-title{
    text-align: center;
    font-family: "Roboto Slab", sans-serif;
    font-size: 52px;
    margin-top: 30px;
    padding: 20px 0px;
}
.sl-grad{
    background: linear-gradient(#fff, var(--grey));
    color: black;
    text-decoration-color: var(--accent);
}
.s-subheader{
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    text-decoration: underline;
}
.sl-grad > .s-wrap > .s-subheader{
    text-decoration-color: var(--accent);
}

/* service related */
.related{
    display: flex;
    justify-content: space-between;
    width: 60vw;
    margin: 30px auto;
}
.card{
    padding: 0;
    border-radius: 20px;
}
.card-body{
    border-bottom: 2px dashed var(--accent);
    border-left: 2px dashed var(--accent);
    border-right: 2px dashed var(--accent);
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;;
}
.card > img {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    width: 260px;
    height: 260px;
}
.card-body > p, h5{
    text-align: center;
    font-size: 11pt;

}
.card-body > h5{
    font-weight: bold;
}

/* contact page */
.mailgroup{
    height: fit-content;
    padding: 20px 150px;
}
.form-head{
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    text-align: center;
    margin: 40px auto;
}
.form-subtext{
    width: 700px;
    text-align: center;
    margin: 20px auto;
    font-size: 18px;
}

form{
    width: 900px;
    margin: 30px auto;
    padding: 20px 50px;
    border-radius: 20px;
    background-color: var(--grey);
}
form > .row{
    background-color: white;
    padding: 10px 5px;
    border-radius: 10px;
}
input, .form-control{
    border: 1px dashed var(--blue)
}

#submission{
    margin-top: 20px;
}




/* foursquare */
.foursquare{
    display: flex;
    flex-direction: column;
    width: 900px;
    margin: 60px auto;
}
.fs-title{
    display: flex;
    justify-content: center;
}
.fs-tiles{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: 650px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.fs-tile{
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 325px;
    width: 445px;
    padding: 25px 15px;
}
.tile-b{
    background-color: var(--blue);
    color: white;
}
.tile-title{
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 22px;
}
.tile-vector{
    height: 3px;
    background-color: var(--blue);
    width: 80%;
    margin: 5px auto;
}
.tile-b > .tile-vector{
    background-color: var(--accent);
}
.tile-text{
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    margin-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
}

.circles{
    margin: 40px auto;
    width: 90vw;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.q-bubble{
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 2px dashed var(--blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.q-head{
    width: 230px;
    padding: 5px;
    font-size: 22px;
    font-family: "Roboto Slab", sans-serif;
    text-align: center;
    margin-top: 20px;
}
.q-line{
    height: 1px;
    width: 240px;
    margin: 0 auto;
    background-color: var(--blue);
}
.q-answer{
    width: 250px;
    padding: 5px 3px;
    margin-top: 7px;
    text-align: center;
    font-family: "Lato", sans-serif;
}

/* bignum */
.landing-stats{
    display: flex;
    height: 400px;
    width: 100%;
    background-color: white;
    padding: 50px 150px;
    justify-content: space-evenly;
}
.bignum-stat{
    width: 200px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 15px;
}
.bignum-number{
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: #009ADC;
    text-align: center;
}
.bignum-text{
    font-family: "Lato", sans-serif;
    font-size: 18px;
    text-align: center;
}
.bignum-img > i {
    color: var(--blue)
}

/* THREEBOX */
.threebox{
    width: 60vw;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: 30px auto;
}
.tb-child{
    width: 20vw;
    height: 375px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.threebox-vector{
    text-align: center;
    color: var(--blue)
}
.threebox-text{
    font-family: "Lato", sans-serif;
    text-align: center;
    font-size: 16px;
}
.boxone{
    border-right: 3px dashed var(--accent);
}
.boxthree{
    border-left: 3px dashed var(--accent);
}

/* FOOTER */
.footer{
    background-color: #000000;
    height: 50px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
}
.footer-icons{
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    width: 300px;
    justify-content: space-evenly;
    align-items: center;
}
.contact-icons{
    display: flex;
    flex-direction: row;
    margin: 10px auto;
    width: 350px;
    justify-content: space-evenly;
    align-items: center;
}
.contact-icon{
    height: 30px;
}
.contact-icon > img{
    height: 30px;
    width: fit-content;
}
.contact-highlight{
    color: var(--blue);
}
.social-icon > img{
    max-height: 35px;
}
.footer-text{
    color: white;
    text-decoration: none;
    font-family: "Roboto Slab";
    line-height: 50px;
    text-align: center;
    margin-left: 25px
}
.footer-text > a {
    color: var(--accent);
    text-decoration: none;
}
.footer-text > a:hover{
    color: white;
}
.footer-filter{
    filter: invert(43%) sepia(79%) saturate(3190%) hue-rotate(171deg) brightness(98%) contrast(101%);
}
@media only screen AND (max-width: 750px){
    .top-bar, .bottom-bar, .acc-intro, #accordionExample{
        display: none;
    }
    .mnav-top{
        display: flex;
        flex-direction: row;
        height: 70px;
        background-color: var(--darkgrey);
        justify-content: space-evenly;
        align-items: center;
        width: 100%;
    }
    .mnav-top > a {
        text-decoration: none;
    }
    .mnav-logo{
        margin: auto 10px;
        display: flex;
    }
    .mnav-logo > img{
        height: 50px;
    }
    .mnav-cname{
        color: white;
        display: flex;
        margin-bottom: 0;;
    }
    .mnav-bottom{
        display: flex;
        flex-direction: row;
        background-color: var(--darkgrey);
        color: white;
        height: 75px;
        width: 100vw;
        justify-content: space-evenly;
    }
    .mnav-link{
        display: flex;
        align-items: center;
        height: 100%;
        color: white;
        font-size: 13pt;
        font-family: "Roboto Slab", sans-serif !important; 
        text-decoration: none;
    }
    .mnav-vector{
        width: 1px;
        background-color: var(--grey);
        height: 50px;
        margin-top: 12.5px;
    }
    .mnav-active{
        text-decoration: underline;
        text-decoration-color: var(--blue);
        text-decoration-thickness: 2px;
    }
    .hero{
        height: 600px;
        background-image: url("images/mhero-blue.jpeg");
        display: flex;
    }
    .hero-wrapper{
        width: auto;
        margin-left: 0;
        margin: 0 auto;
        padding: 10px;
        height: 90%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-self: center;
    }
    .hero-header{
        color: var(--darkgrey);
        font-size: 42pt;
        margin-left: 30px;
    }
    .hero-subheader{
        margin-top: auto;
        margin-right: 30px;
        color: var(--darkgrey);
    }
    .footer-text{
        display: none;
    }
    .footer{
        justify-content: space-around;
        height: 75px;
    }
    .footer-icons{
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .footer-icons > a{
        max-height: 35px;
    }
    .service {
        flex-direction: column;
        height: fit-content;
        padding: 40px 10px;
    }
    .s-wrap{
        width: fit-content;
        height: fit-content;
    }
    .s-header{
        font-size: 26pt;
        text-align: center;
        width: 80%;
        margin: auto;
    }
    .s-title{
        font-size: 30pt;
        width: fit-content;
    }
    .s-subheader{
        text-align: center;
        font-size: 22pt;
    }
    .s-text{
        font-size: 12pt !important;
        height: fit-content;
        text-align: center;
        display: flex;
        width: 85%;
        margin: 20px auto;
    }
    .s-link{
        font-size: 12pt;
        text-align: center;
    }
    .s-img{
        display: none;
    }
    .mservice-image{
        display: flex;
        align-self: center;
        margin: 20px auto;
    }
    .mservice-image > img{
        width: 260px;
        height: 260px;
    }
    .mnav-service-head{
        height: fit-content;
        padding: 10px 20px;
        width: 100%;
        background-color: var(--blue);
        display: flex;
        align-items: center;
        color: white;
    }
    .mnav-service-head > p {
        font-size: 18px;
        margin: 10px auto;
        text-align: center;
    }
    .s-intro{
        display: none;
    }
    .scontact-link{
        text-align: center;
    }
    .sl-grad{
        margin-top: 30px;
    }
    /* service landing */
    .msmenu-intro{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 15px;
    }
    .msmenu-desc{
        text-align: center;
        padding: 0 20px;
        margin-bottom: 0;
    }
    .msmenu{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
        padding: 10px 0;
    }
    .msmenu-wrap{
        text-decoration: none;
    }
    .msmenu-item{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        height: fit-content;
        padding: 20px 10px;
        border-radius: 15px;
        margin: 15px auto;
    }
    .msmenu-head{
        font-family: "Roboto Slab", sans-serif;
        font-size: 20pt;
        text-align: center;
    }
    .msmenu-img > img {
        width: 260px;
        height: 260px;
    }
    .msm-blue > .msmenu-head{
        text-decoration: underline;
        text-decoration-thickness: 3px;
        text-decoration-color: var(--accent);
    }
    .msm-dark > .msmenu-head{
        text-decoration: underline;
        text-decoration-thickness: 3px;
        text-decoration-color: var(--blue);
    }
    .msmenu-summary{
        text-align: center;
        margin-top: 5px;
        margin-bottom: 15px;
        font-size: 14pt;
        padding: 0 10px;
    }
    .msm-blue{
        background-color: var(--blue);
        color: white;
    }
    .msm-dark{
        background-color: var(--darkgrey);
        color: white;
    }
    .msmenu-link{
        font-size: 15pt;
        font-family: "Lato", sans-serif;
    }

    /* sections for stats/info */
    .landing-stats{
        flex-direction: column;
        flex-wrap: wrap;
        height: fit-content !important;
        align-items: center;
        padding: 30px 5px;
    }
    /* circles */
    .circles{
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
    }
    .q-bubble{
        margin: 10px auto;
    }
    /* threebox */
    .threebox{
        flex-direction: column;
        width: 80%;
    }
    .tb-child{
        width: fit-content;
    }
    .boxone{
        border-right: none;
        border-bottom: 3px dashed var(--accent);
    }
    .boxthree{
        border-left: none;
        border-top: 3px dashed var(--accent);
    }
    /* foursquare */
    .foursquare{
        width: fit-content !important;
        height: fit-content;
        margin: 20px 0;
    }
    .fs-tiles{
        flex-direction: column;
        height: fit-content !important;
        flex-wrap: nowrap;
        margin-top: 0;
    }
    .fs-tile{
        width: 90% !important;
        margin: 15px auto;
        height: fit-content !important;
        border-radius: 10px !important;
    }
    .tile-title{
        text-align: center;
    }
    #tile-mblue{
        background-color: var(--blue);
        color: white;
    }
    #tile-mblue > .tile-vector{
        background-color: var(--accent);
    }
    #tile-mwhite{
        background-color: white;
        color: black;
    }
    #tile-mwhite > .tile-vector{
        background-color: var(--blue);
    }

    /* related links */
    .related{
        width: 80%;
    }
    .card{
        margin: 10px auto;
        width: 100% !important;
    }
    .card-img-top{
        display: none;
    }
    .card-body{
        border-radius: 20px;
        border: 2px dashed var(--accent)
    }
    .card-title{
        font-size: 14pt;
    }
    .card-text{
        font-size: 11pt;
    }

    /* contact */
    .form-head{
        display: none;
    }
    .mailgroup{
        padding: 0;
    }
    .mail-wrapper{
        width: fit-content;
    }
    .form-subtext{
        width: 90%;
    }
    .contact-icons{
        margin-top: 30px;
    }
    form{
        width: 90%;
        padding: 0 20px;
        margin-top: 0;
        background-color: white;;
    }
    label{
        text-align: center;
    }
    .col-form-label{
        font-size: 14pt;
    }
    input, .form-control{
        border: 1px dashed var(--blue);
        width: 90%;
        text-align: center;
        margin: auto;
    }
    .contact-highlight{
        color: var(--accent);
        font-weight: 600;
    }


    .social-icon > img {
        max-height: 30px !important;
    }
    .footer-icons{
        width: 85%;
    }
    .footer{
        border-bottom: 1px solid black;;
    }
    #submit-text{
        text-align: center;
    }
}
