@import url('https://fonts.googleapis.com/css?family=Noto+Serif|Bitter|EB+Garamond|Pacifico');

/* MAIN STYLING */

body {
    background-color: #000f1a;
    overflow-x: hidden;
    font-family: 'EB Garamond';
    text-align: center;
}

::-webkit-scrollbar {
    background-color: rgb(0, 25, 100);
    width: 5px;
    display: none;
}

a {
    text-decoration: none;
    color: #fff;
}

a:visited {
    color: #FFFFFF8C;
}

.navbar {
    background-color: #001964;
}

#nav-logo {
    text-align: center;
}

.navbar-nav {
    font-size: 20px;
}

#main {
    height: 100vh;
    background-image: url(../Images/razzo-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

#main .body {
    padding-top: 25vh;
    display: block;
    color: rgb(255, 255, 255);
    font-size: 60px;
    text-shadow: 1px 1px #000;
}

.services {
    min-height: 32vh;
}

.services .carousel-item {
    /* transition: opacity 0.3s linear; */
    transition: transform 2s;
    transition-timing-function: ease-in-out;
}

#pop-out {
    position: absolute;
    visibility: hidden;
}

#main hr {
    display: block;
    margin: auto;
    padding-bottom: 2vh;
    border-width: 2px;
    border-color: #ffffff;
    width: 400px;
}

.body p {
    padding-bottom: 1vh;
}

.btn-request {
    background-color: #001964;
    color: #fff;
    font-size: 25px;
    padding: 15px;
    width: 250px;
    border-radius: 50px;
}

.btn-request:hover {
    color: #fff;
    background-color: rgb(65, 128, 203, 0.9); /* rgb(28, 55, 74, 0.9) */
}

.btn-request:focus {
    background-color: #fe824e;
    color: #000;
}

.btn-request:hover:active {
    background-color: #fe824e;
}

.loader{
    position: fixed;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgb(255, 255, 255, 0.1); */
    transition: all 0.5s;
    z-index: 1;
  }

  .loader .ring{
    height: 45px;
    width: 45px;
    border: 5px solid #4180CB;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .loader .ring:after{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 5px solid #fe824e;
    border-top-color: transparent;
    animation: rotate 1.5s linear infinite;
  }
  
  @keyframes rotate {
    100%{
      transform: rotate(360deg);
    }
  }

/* SECONDARY PAGES */

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Bitter';
    font-size: 50px;
}

.breadcrumb a {
    text-shadow: 2px 2px #00000050; /* #fed54e81 */
}

.breadcrumb-item.active {
    color: #001964;
    text-shadow: 2px 2px #00000050; /* #fed54e81 */
}

.breadcrumb-item.active::before {
    text-shadow: none;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #001964;
    width: 25px;
}

#sub a {
    color: #001964;
}

#sub-header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh;
    background-image: url(../Images/mountaintop-cap.jpg);
    background-size: 100vw 275px;
    background-position: bottom;
    background-repeat: no-repeat;
    border-bottom: 1px ridge #000;
}

/* SERVICES PAGE */

#sub-services {
    min-height: 50vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #001964;
    font-family: 'Noto Serif';
    padding-bottom: 50px;
}

#sub-services .card-body {
    padding: 20px;
}

#sub-services .header {
    font-family: 'Pacifico';
    padding: 50px 0 50px 0;
}

#sub-services .header h1 {
    font-size: 35px;
    color: #fff;
}

#sub-services .header .bi-briefcase {
    font-size: 45px;
}

#sub-services .card {
    border-top: none;
    border-right: none;
    border-bottom: none; /* 1px solid #001964 */
    border-left: none;
    border-radius: 15px;
    background-color: rgb(245, 245, 245);
    font-size: 20px;
    min-height: 30vh;
    padding: 15px;
}

#sub-services .card:hover {
    background-color: rgb(245, 245, 245, 0.9);
    border-radius: 15px;
    cursor: crosshair;
}

#sub-services .bi-building {
    color: rgb(216, 24, 24);
}

#sub-services .bi-piggy-bank {
    color: rgb(39, 146, 39);
}

#sub-services .bi-easel2 {
    color: rgb(141, 22, 141);
}

#sub-services .bi-question-circle {
    color: rgb(60, 60, 216);
}

#sub-services .card-body {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -30px;
}

.services-hr {
    display: block;
    margin: auto;
    border: none;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #001964, rgba(0, 0, 0, 0));    
    /* width: 30vw; */
}

#sub-services .btn-request {
    background-color: #001964;
    color: #fff;
    font-size: 25px;
    padding: 15px;
    margin: 75px 0 75px 0;
    width: 250px;
    border-radius: 50px;
}

.btn-request {
    background-color: #001964;
    color: #fff;
    font-size: 25px;
    padding: 15px;
    width: 250px;
    border-radius: 50px;
}

#sub-services .btn-request:hover {
    color: #fff;
    background-color: rgb(65, 128, 203, 0.9); /* rgb(28, 55, 74, 0.9) */
}

#sub-services .btn-request:focus {
    background-color: #fe824e;
    color: #000;
}

#sub-services .btn-request:hover:active {
    background-color: #fe824e;
}

/* PORTFOLIO PAGE */

#sub-portfolio {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    /* background-image: url(Images/under-construction1.png); */
    background-size:contain;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Noto Serif';
}

#sub-portfolio .card {
    border: none;
    padding: 50px;
}

.port-hr {
    display: block;
    margin: auto;
    border: none;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #001964, rgba(0, 0, 0, 0));    
    /* width: 30vw; */
}

/* TESTIMONIALS PAGE */

#sub-testimonials {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    background-size: auto;
    background-repeat: no-repeat;
    font-family: 'Noto Serif';
    padding-bottom: 20px;
}

#sub-testimonials .header {
    font-family: 'Pacifico';
    padding: 50px 0 50px 0;
}

#sub-testimonials .header h1 {
    font-size: 35px;
}

#sub-testimonials .header .bi-chat-quote {
    font-size: 50px;
}

#sub-testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px;
    /* box-shadow: 0px 0 20px #1b2f451a; */
    background: #fff;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
}
  
#sub-testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}
  
#sub-testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
    font-size: x-large;
}

#sub-testimonials .testimonial-item p {
    font-style: italic;
    word-wrap: normal;
    line-height: 180%;
    margin: 0 auto 15px auto;
}
  
#sub-testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
}
  
#sub-testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}

#sub-testimonials .carousel {
    background-color: #fff;
    max-width: 1000px;
}

#sub-testimonials .blockquote {
    min-height: 300px;
}

.carousel-control-prev-icon {
    position: absolute;
    bottom: 175px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%231b2f451a' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}
 
.carousel-control-next-icon {
    position: absolute;
    bottom: 175px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%231b2f451a' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}
  
/* CONTACT PAGE */

#sub-contact {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    background-image: url(../Images/contact-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    font-family: 'Noto Serif';
    border-top: 1px solid black;
    padding: 50px 0px;
}

#sub-contact .card {
    background: none;
    border: none;
    display: block;
    margin: auto;
    padding: 15px 0 15px 0;
    min-width: 40vw;
}

#sub-contact #location-ul {
    list-style: none;
    text-align: left;
    color: #000;
}

#sub-contact #location-body li {
    padding: 0 0 40px 0;
    font-size: 20px;
}

/* #sub-contact #location-ul li i {
    text-align: center;
} */

#sub-contact #location-ul a {
    color: #000;
}

#sub-contact #location-ul a:hover {
    color: #4180CB;
}

#sub-contact #location-ul .bi {
    font-size: 30px;
}

input {
    margin: 0 0 10px 0;
}

textarea {
    margin: 0 0 10px 0;
    height: 200px;
}

#g-recaptcha-response {
    display: block !important;
    position: absolute;
    margin: -78px 0 0 0 !important;
    width: 302px !important;
    height: 76px !important;
    z-index: -999999;
    opacity: 0;
}

/* ABOUT PAGE */

#sub-about {
    min-height: 50vh;
    background-color: #fff;
    background-image: url(../Images/about-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#sub-about .img-fluid {
    width: 175px;
}

#sub-about .about {
    padding: 15px 0 0 0;
}

#about-employees {
    display: block;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

#sub-about .team-member {
    overflow: hidden;
}

#sub-about .team-member .member-img {
    position: relative;
    overflow: hidden;
}

#sub-about .team-member .member-info {
    padding: 25px 15px 0 15px;
    text-align: center;
}

#sub-about .team-member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 25px;
}

#sub-about .team-member .member-info span {
    display: block;
    font-size: 20px;
    font-weight: 400;
    padding: 0 0 50px 0;
}

.about-info {
    padding: 25px;
}

.about-title {
    padding: 25px;
    font-family: 'Noto Serif';
}

.about-info .about-text {
    /* text-shadow: 1px 1px #fff;
    background-color: rgb(255, 255, 255, 0.7);
    border-radius: 15px; 
    padding: 15px; 
    line-height: 26px; */
    font-family: 'Noto Serif';
    font-size: 24px;
    font-weight: 500;
}

/* FOOTER STYLING */

.footer {
    background: #001964;
    color:white;
}

.links ul {
    list-style-type: none;
    font-size: 20px;
}

.links li a {
    text-decoration: none;
    color: white;
    transition: color .2s;
}

.links li a:hover {
    color:#4180CB;
}

.about-company {
    font-size: 25px;
}

.about-company a{
    color:white;
    transition: color .2s;
}

.about-company:hover {
    color:#4180CB
}

i:hover {
    color: rgb(65, 128, 203, 0.9); 
}
 
.location {
    font-size: 20px;
}

.copyright {
    padding-top: 25px;
    border-top:1px solid rgba(255,255,255,.1);
}

/* TABLET VIEW */

@media (min-width: 481px) and (max-width: 1440px) {
    
    .navbar-nav {
        text-align: right !important;
    }

    #main {
        background-position: center;
        height: 105vh;
    }
    
    #main .body {
        margin-top: -10vh;
    }

    .breadcrumb {
        padding-top: 15px;
    }

    .breadcrumb a {
        text-shadow: 2px 2px #00000050; /* #fed54e81 */
    }

    .breadcrumb-item.active::before {
        color: #fff;
        text-shadow: 2px 2px #00000050; /* #fed54e81 */
    } 
    
    .breadcrumb-item.active {
        color: #fff;
        text-shadow: 2px 2px #00000050; /* #fed54e81 */
    }

    .services {
        min-height: 45vh;
        font-size: 4vmax;
    }
    
    #sub-header {
        height: 20vh;
        background-size: 100vw 295px;
        background-position: bottom;
    }

    #sub-services {
        min-height: 100vh;
        overflow-y: scroll;
        overflow-x: hidden;        
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #sub-services .card {
        min-height: 40vh;
        max-height: 40vh;
        overflow-y: scroll;
    }

    .services-hr {
        margin: 25px 0 25px 0;
    }

    #sub-services .card:hover {
        cursor: all-scroll;
    }
    
    #sub-about {
        background-position: right;
    }

    #sub-portfolio .card {
        padding: 0px;
    }

}

/* MOBILE VIEW */

@media screen and (max-width: 480px) {

    #main {
        background-position: center;
    }

    #nav-logo {
        text-align: center;
        width: 75vw;
    }

    .navbar-toggler {
        display: block;
        margin: auto;
    }

    .navbar-nav {
        text-align: right !important;
    }

    #main {
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    #main .body {
        margin-top: -30vh;
        font-size: 40px;
    }

    .services {
        min-height: 50vh;
    }

    #main hr {
        width: 70vw;
    }

    #sub-header {
        background-position: bottom;
    }
    
    #sub {
        /* min-height: 170vh; */
        overflow: scroll;
        cursor: all-scroll;
    }

    #sub .card:hover {
        cursor: all-scroll;
    }

    #sub-testimonials .blockquote {
        min-height: 550px;
    }

    .breadcrumb {
        font-size: 32px;
    }

    .breadcrumb a {
        text-shadow: 2px 2px #00000050; /* #fed54e81 */
    }

    .breadcrumb-item.active::before {
        color: #fff;
        text-shadow: 2px 2px #00000050; /* #fed54e81 */
    } 
    
    .breadcrumb-item.active {
        color: #fff;
        text-shadow: 2px 2px #00000050; /* #fed54e81 */
    }

    #sub .card {
        min-height: 35vh;
        font-size: 25px;
    }

    #sub-portfolio .card {
        padding: 0px;
    }

    #sub-about {
        background-position: right;
    }
    
    .about-company {
        padding-bottom: 2vh;
    }

    .links {
        padding: 0 0 2vh 0;
    }

    .location {
        padding: 2vh 0 0 0;
    }

    .copyright {
        padding-top: auto;
    }

    .footer {
        padding: auto;
    }

}