@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* custom properties */

:root {
    --mainFont:"Raleway", sans-serif;
    --mainFont1: "Open Sans", sans-serif;
    --white: #ffffff;
    --primary: #6c833a;
    --primary-light: #909454;
    --secondary: #808e5a;
    --mauve-brown: #926f58;
    --light-mauve-brown: #8e7062;
    --light-mauve-brown2: #9b7964;
    --light-mauve-brown3: #b29683;
    --gray: #cbc3c0;
    --light-gray1: #faf9f9;
    --light-gray2: #f4f4f4;
    --light-gray3: #7a757e;
    --med-gray1: #71626b;
    --med-gray2: #737775;
    --med-gray3d: #565759;
    --med-gray3: #4e5051;
    --dark-gray: #272727;
    --shadow-dark: 0 2rem 6rem rgba(0, 0, 0, 0.3);
    --shadow-med: 0 2rem 4rem rgba(0, 0, 0, 0.4);
    --line: 1px solid #f4f4f4;
    --text-shadow: 2px 1px #161616;
    --text-shadow1: 1px 1px #4e5051;
    --box-shadow: 2px 2px 2px #4a4744;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    font-family: var(--mainFont);
}

#navbarNav {
background-color: var(--med-gray3d);
    text-transform: capitalize;
    font-size: 1.5rem;
    font-weight: 100;
}

.navbar.scrolled {

    background-color: var(--med-gray3d);
}

a.nav-link:hover {
    background-color: var(--light-mauve-brown);
}

a:hover {
    color: #fff;
}

.btn-brand{
    background-color:#8c6651;
    color:#ffffff!important;
}
.btn:hover {
    background-color: var(--light-mauve-brown);
    color: #fff;
}

button.navbar-toggler:focus {
    outline: none !important;
}

a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}

span.navbar-toggler-icon {
    background-color: var(--dark-gray);
}

.nav-link {
    color: #fff;
    letter-spacing: 0.2rem;
}

.nav-link:active,
.nav-link:hover {
    color: #fff;
}

.accent:hover {
    color: #c2de87;
}

h2.display-4 {
    margin-bottom:30px;
}
/* nav scrolling offset*/

.offset:before {
    height: 4rem;
    margin-top: -4rem;
    content: "";
    display: block;
}

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.9rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.2rem;
}

h6 {
    font-size: 0.7rem;
}

p {
    font-family: var(--mainFont);
    font-size: 1.1rem;
    line-height: 1.7rem;
}

.lead {
    font-size: 1.3rem;
    line-height: 2rem;
    font-weight: 200;
}


/**/

.max-viewport {
    min-height: 100vh;
}

#banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)), url("../images/port-monitor.jpg");
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
}

h1,
h2,
h3,
h4 {
    font-family: var(--mainFont1);
    font-weight: 500;
}

@media(max-width:576px) {
    h1.display-4.banner-heading {
        font-size: 2.5rem;
    }
}

.banner-heading {
    animation: anim 2s;
}

.banner-heading2 {
    animation: anim 1.5s 0.5s backwards;
}

.banner-text {
    animation: anim 1.5s 1.1s backwards;
}

.banner-button {
    animation: anim 1.6s 1.3s backwards;
    width: 120px;
    padding: 1rem 2rem;
    margin: 10px 0;
    background: linear-gradient( to left, var(--mauve-brown), var(--primary), var(--med-gray3));
    border-radius: 0;
    border: none;
    outline: none;
    font-family: var(--mainFont);
    color: #eee;
    text-shadow: var(--text-shadow);
    box-shadow: var(--box-shadow);
}

@keyframes anim {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.title-header {
    font-family: var(--mainFont1);
    font-size: 2.3rem;
    color: var(--mauve-brown);
    font-weight: 400;
}

a.read-more {
    color: var(--primary);
}

a.read-more:hover {
    text-decoration: none;
}

.read-more {
    border-bottom: 1px solid var(--primary);
}

.image-small {
    width: 100%;
    border: none;
}

li.shadow {
    box-shadow: var(--box-shadow);
}

.image-small-prototype {
    width: 100%;
}

.caption,
.card-footer {
    background-color: #c2de87;
    padding: 10px;
}

/* Make all portfolio items equal height and align the button at the bottom */
.portfolio-card{
  display:flex;
  flex-direction:column;
  width:100%;
  height:100%;
}

.text-content{
  display:flex;
  flex-direction:column;
  flex:1;                /* fill remaining space */
}


.btn-portfolio {
  margin-top: auto;       /* keeps it at bottom */
  align-self: center;     /* centers it horizontally */
}
/* Optional: normalize image heights for a tidier grid */
.portfolio-card > img{
  width:100%;
  height:200px;          /* adjust to taste */
  object-fit:cover;      /* crop to fit evenly */
}







.button {
    width: 120px;
    padding: 0.5rem 3rem;
    margin: 10px 0;
    background: linear-gradient( to left, var(--mauve-brown), var(--primary), var(--med-gray3));
    border-radius: 0;
    border: none;
    outline: none;
    font-family: var(--mainFont);
    color: #eee;
    text-shadow: var(--text-shadow);
    box-shadow: var(--box-shadow);
}

.list-group {
    display: inline-block;
    align-items: center;
}

li.list-group {
    margin-right: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    border-radius: 0;
    padding: 0.4rem;
}

.prototyping-section {
    background-color: var(--med-gray3d);
    padding: 3rem;
    color: #fff;
}

.prototyping-section .title-header {
    color: #fff;
}

.footer .title-header {
    color: white;
}

.footer a {
    color: white;
}

.footer {
    color: white;
    font-family: var(--mainFont1);
    font-weight: 100;
}

.footer {
    background-color: var(--med-gray3);
}

.underline {
    width: 55px;
    border: 2px solid var(--primary);
    margin: auto;
}

.text-content {
    background-color: var(--light-mauve-brown3);
    padding: 1rem;
    margin-bottom: 3rem;
    color: var(--white);
}

#lower-footer {
    background-color: var(--med-gray3d);
}

.img-small {
    max-width: 18%;
}

.copyright {
    font-size: .9rem;
}


#logo, #mobile,.bg-deep{
    background-color: var(--med-gray3d);
   
}

.mt-8{
    margin-top:60px;

}

.mb-8{
    margin-bottom:60px;
}

.pb-8{
    padding-bottom:60px;
}
.pt-8{
    padding-top:60px;
}


#logo .card-img-top {
  margin-top: 15px;
  margin-bottom: 15px;
}

.center-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}