@import url("https://fonts.googleapis.com/css?family=Raleway:200,700|Source+Sans+Pro:400,600,400italic,600italic");

body,
html {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    overflow-x: hidden;
    ul {
        padding: 0px 15px;
    }
    ul li {
        padding: 5px 0px;
    }
    a {
        color: rgb(255, 121, 32);
        font-weight: bold;
        text-decoration-line: none;
    }
}

.banner {
    background: #0a0c0e;
    position: relative;
    color: white;
    text-align: center;
    padding: 70px 0;
}

mark.subtitle-colored {
    color: rgb(255, 121, 32);
    background: none;
}

mark.subtitle-small {
    font-size: 0.8em;
    font-weight: lighter;
    color: white;
    background: none;
}

.banner:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -80px;
    left: -5%;
    width: 110%;
    height: 80px;
    background: #0a0c0e;
    transform: rotate(-2deg);
    transform-origin: bottom left;
}

.banner-content {
    position: relative;
    z-index: 1;
    left: 170px;
    text-align: left;
}

@keyframes slide-in-fade-in {
    from {
        margin-left: 72px;
        opacity: 0;
    }

    to {
        margin-left: 0;
        opacity: 1;
    }
}

.title {
    font-size: 3em;
    margin: 0;
    animation: slide-in-fade-in 0.7s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.title-no-anim {
    font-size: 3em;
    margin: 0;
    opacity: 1;
}

.line {
    border: 0;
    border-top: 1px solid white;
    width: 50%;
    text-align: left;
    left: 10%;
    margin: 10px 0;
    animation: slide-in-fade-in 0.7s ease-out forwards;
    animation-delay: 0.65s;
    opacity: 0;
}

.line-no-anim {
    border: 0;
    border-top: 1px solid white;
    width: 50%;
    text-align: left;
    left: 10%;
    margin: 10px 0;
    opacity: 1;
}

.subtitle {
    font-size: 1.5em;
    font-weight: lighter;
    animation: slide-in-fade-in 0.7s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.subtitle-no-anim {
    font-size: 1.5em;
    font-weight: lighter;
}

.top-menu {
    background: #0a0c0e;
    overflow: hidden;
}

.top-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.top-menu ul.right-align {
    text-align: right;
}

.top-menu ul li {
    display: inline;
}

.top-menu ul li a {
    font-weight: normal;
    text-decoration: none;
    color: white;
    padding: 14px 20px;
    display: inline-block;
}

.top-menu ul li a:hover {
    background: rgb(255, 121, 32);
    /*background: #262b31;*/
}

.tile-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
}

.content {
    margin: 0 auto;
    font-size: 1.1em;
}

.content::before {
    content: "";
    display: block;
    position: top;
    width: 110%;
    height: 140px;
    transform: rotate(-4deg);
    transform-origin: bottom left;
}

.content::after {
    content: "";
    display: block;
    position: top;
    width: 110%;
    height: 240px;
    transform-origin: bottom left;
}

.tile {
    background: #ffffff;
    padding: 20px;
    width: calc(35% - 40px);
    box-sizing: border-box;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: box-shadow 0.3s ease, background-color 0.3s ease, max-height 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    max-height: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.tile img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.tile hr {
    border: 0;
    border-top: 3px solid rgb(255, 121, 32);
    width: 33%;
    margin: 10px 0;
    border-radius: 2px;
    transition: width 0.2s ease;
}

.tile .tile-expand {
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-top: 10px;
}

.tile-expand .button {
    width: 50%;
    height: 40px;
    text-align: center;
    border-radius: 25px;
    background-color: #0a0c0e;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

.tile:hover .tile-expand {
    opacity: 1;
}

.tile:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    background-color: #f0f0f0;
    max-height: 440px;
}

.tile:hover img {
    transform: translateY(-10px);
}

.tile:hover hr {
    width: 85%;
}

.left-align
{
    text-align: left;
}

.right-align
{
    text-align: right;
}

.margin-left
{
    margin-left: 15%;
}

.footer {
    background: #0a0c0e;
    color: white;
    text-align: center;
    padding: 10px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Raleway, Helvetica, sans-serif;
    letter-spacing: 0.1em;
    margin: 0 0 1em 0;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
}

h1 {
    font-size: 2.8em;
    font-weight: bold;
}

h2 {
    font-size: 2.4em;
    font-weight: bold;
}

h3 {
    font-size: 2em;
    font-weight: normal;
}

h4 {
    font-size: 1.6em;
    font-weight: normal;
}

h5 {
    font-size: 1.2em;
    font-weight: bold;
}

h6 {
    font-size: 0.9em;
    font-weight: lighter;
}

.services-table {
    width: 70%;
    overflow-x: auto;
    margin: 20px 0;
}

.services-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    font-family: "Montserrat", Helvetica, sans-serif;
}

.services-table th,
.services-table td {
    padding: 12px 15px;
    text-align: center;
}

.services-table thead {
    background-color: #1a1a1a;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}

.services-table th {
    position: sticky;
    top: 0;
}

.services-table img {
    width: 28px;
}

.services-table tbody tr:nth-child(even) {
    background-color: #f4f4f4;
}

.services-table tbody tr:hover {
    background-color: #e0e0e0;
}

.services-table tbody td {
    border-bottom: 1px solid #ddd;
}

.services-table tbody tr:last-child td {
    border-bottom: none;
}

.services-description {
    width: 70%;
}

.color-black {
color: #0a0c0e;
}