﻿


/* Roots */
:root {
    --text-color: #1E2F3B;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
  font-family: "NunitoSans Regular", sans-serif;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}

/* Screen heights for mobile consistency */
html {
    height: 100%;
}

body {
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


/* Fonts */
a, p, span{
    color: var(--text-color) !important;
}
h1 {
    font-family: "NunitoSans Bold", sans-serif;
    font-size: 42px;
    color: var(--text-color);
}
h2, h3, h4, h5 {
    font-family: "NunitoSans SemiBold", sans-serif;
    color: var(--text-color);
}
h2{
    font-size: 34px;
}
h3{
    font-size: 28px;
}
h4{
    font-size: 24px;
}
h5{
    font-size: 20px;
}
.font-s {
    font-size: 16px;
}
.font-xs {
    font-size: 14px;
    font-family: "NunitoSans Light", sans-serif;
}
.font-xxs {
    font-size: 12px;
    font-family: "NunitoSans Light", sans-serif;
}
.font-bold{
    font-family: "NunitoSans Bold", sans-serif;
}
.font-blue {
    color: #3885C7 !important;
}
.font-light-blue {
    color: #EAF1FB !important;
}


/* Bootstrap Edits */
@media (min-width: 1200px){
    .container {
        max-width: 1280px;
    }
}

/* Heading Info */
.heading-info {
    opacity: .5;
    margin: unset;
}
.info-tail::after {
    content: "";
    width: 45px;
    height: 1px;
    background: #1E2F3B;
    display: inline-block;
    margin-left: 10px;
    margin-bottom: 3px;
}

.text-middle-screen-wrap{
    width: 100%;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 45%;
}
.text-middle-screen{
    margin: 0 auto;
    max-width: 400px;
    transform: translate()
}

/* Landing Screen Homepage */
.landing-screen {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
.landing-bg {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}
    .landing-bg img {
        position: absolute;
        height: 100%;
        width: 100%;
        object-fit: cover;
        opacity: .1;
    }
.landing-bg-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
    .landing-bg-overlay img {
        position: absolute;
        height: 100%;
        width: 100%;
        opacity: .5;
        object-fit: cover;
    }

.landing-scroll-arrow{
    position: absolute;
    bottom: 10px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

/* Buttons */
.btn-main {
    width: 150px;
    height: 40px;
    cursor: pointer;
    margin: 0px 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .05s ease-in-out;
}
    .btn-main span{
        transition: .05s ease-in-out;
    }
    .btn-main:hover{
        text-decoration: none;
    }
.btn-primary {
    background: #3885C7;
    color: #EAF1FB !important;
}
    .btn-primary span {
        font-size: 14px;
        color: #EAF1FB !important;
    }
    .btn-primary:hover {
        background: #265A87;
    }
.btn-secondary {
    background: unset;
    border: 1px solid #1E2F3B;
}
    .btn-secondary span {
        font-size: 14px;
        color: #1E2F3B !important;
    }
    .btn-secondary:hover {
        background: #1E2F3B;
        border: #1E2F3B;
    }
        .btn-secondary:hover span {
            color: #EAF1FB !important;
        }
.btn-primary-light {
    background: #81CBFB;
}
    .btn-primary-light span {
        font-size: 14px;
        color: #142F47 !important;
    }
    .btn-primary-light:hover {
        background: #3173AD !important;
    }
        .btn-primary-light:hover span {
            color: #EAF1FB !important;
        }
.btn-secondary-light {
    background: unset;
    border: 1px solid #EAF1FB;
}
    .btn-secondary-light span {
        font-size: 14px;
        color: #EAF1FB !important;
    }
    .btn-secondary-light:hover {
        background: #EAF1FB !important;
    }
        .btn-secondary-light:hover span {
            color: #3885C7 !important;
        }

.btn-secondary:active,
.btn-primary:active,
.btn-primary-light:active{
    background: #142F47 !important;
}

.btn-secondary-light:active {
    background: #72B4E0 !important;
}

.full-hw{
    height: 100%;
    width: 100%;
}

.info-img-sm{
    height: 35px;
    width: 35px;
}
.info-img-lg{
    height: 120px;
}
.main-info-blocks{
    padding: 30px;
}
.mob-nav-wrapper {
    display: none;
}

/* Page Break */
.page-breaker{
    height: 50px;
    margin: 3rem 0;
}


.background-lines{
    height: 100%;
    width: 100%;
    top: 100px;
    left: 0;
    position: absolute;
}
    .background-lines img{
        position: absolute;
        object-fit: cover;
        height: 100%;
        width: 100%;
        z-index: -1;
    }

/* Footer */
.footer-wrap {
    background: #3885C7;
}
.footer-wrap .nav-links a:hover{
    cursor: pointer;
    text-decoration: none;
}

/* Project Info Boxes Homepage */
.project-box{
    width: 180px;
    height: 180px;
    border-radius: 3px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    box-sizing: border-box;
}
    .project-box img{
        width: 100%;
        padding: 30px;
    }
    .project-box:hover {
        border: 1px solid #3885C7;
        box-shadow: 0px 0px 10px rgba(56, 133, 199, 0.5);
    }
    /* Needed to prevent padding issue created by border-box */
    .project-box:hover img{
        padding: 29px;
    }
        /*.project-box:hover:after {
            content: "";
            background-image: url("../images/homepage/project-hover-bg.png");
            height: 100%;
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            opacity: .05;
            z-index: -1;
        }
    .project-box:before{
        content: "";
        background-image: url("../images/feathericons/arrow-right.svg");
        background-repeat: no-repeat;
        position: absolute;
        top: 80%;
        left: -30px;
        height: 100%;
        width: 100%;
        transition: .1s ease-in-out;
    }*/
        .project-box:hover:before{
            left: 80px;
        }

/*.call-img:after{
    content: "";
    background-image: url("../images/feathericons/phone.svg");
    height: 20px;
    width: 20px;
    position: relative;
    padding: 2px 12px;
}*/


/* Works Page Styling */
.dream-medical-bg-overlay {
    background: #FA6520;
    opacity: .08;
    width: 100%;
    height: 100%;
}

.p-sticky-top{
    position: sticky;
    top: 100px;
}