body {
    font-family: "IBM Plex Mono", monospace;
}

.hero {
    width: 100vw;
    height: 100vh;
    background-color: #071c47;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero img {
    max-width: 60vw;
    max-height: 60vh;
}

.hero a {
    text-decoration: none;
    font-size: 13px;
    position: absolute;
    bottom: 50px;
    padding: 5px 10px 5px 10px;
    background-color: #fff;
    border-radius: 15px;
    transition: 0.2s;
}
.hero a:hover {
    background-color: rgb(243, 243, 243);
}
.hero a span {
    color: #071c47;
    padding: 0 0 0 0;
}

.btn-demo {
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    padding: 3px 20px 5px 20px;
    background-color: #2596be;
    border-radius: 25px;
    color: #fff !important;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    transition: 0.2s;
}
.btn-demo:hover {
    background-color: #277c9b;
}

.splide__slide img {
    max-width: 100%;
    height: auto;
}

.heading {}

.heading h1 {
    font-size: 45px;
    letter-spacing: 5px;
    color: #2596be;
}

.heading h4 {
    font-size: 20px;
    letter-spacing: 10px;
    color: #2596be;
}

.project-trailer {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.project-trailer iframe, .project-trailer object, .project-trailer embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



.project-details {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 25px;
    padding-right: 25px;
}

.project-details h4 {
    margin-bottom: 0;
}

.project-details hr {
    margin-top: 5px;
    margin-bottom: 40px;
}

.project-details .detail-items p {
    margin-bottom: 0;
    font-size: 15px;
}

.project-details .detail-items p span a {
    color: #2596be;
    text-decoration: none;
    transition: 0.3s;
}
.project-details .detail-items p span a:hover {
    color: #1f5669;
}

.project-details .detail-software {
    margin-top: 15px;
}

.project-details .detail-software img {
    max-height: 30px;
    width: auto;
    filter: saturate(50%);
}
.project-details .detail-software img:hover {
    filter: saturate(120%);
}
#tooltip {
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 13px;
  }