/* ----------------------------------------------------------------------*/
/* Imports
/* ----------------------------------------------------------------------*/

@import 'https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css';


/* ----------------------------------------------------------------------*/
/* Layout
/* ----------------------------------------------------------------------*/

html {
    box-sizing: border-box;
    position: relative;
    min-height: 100%;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background-color: black;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    background-image:url('/static/img/patents-header-1920.png');
    background-size:100% auto;
    background-repeat:no-repeat;
}
.heading-container {
    padding:60px 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.contentWrapper{
    max-width: 290px;
    width: 290px;
    padding:0 40px 60px;
    margin:0 auto;
    background-color:rgba(0,0,0,0.8);
}
main {
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;



}
a {
    color: #FBAC3D;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
a.job-title:hover {
    text-decoration: none;
}
hr {
    margin: 40px auto;
    border:0;
    max-width: 870px;
    height: 1px;
    text-align: center;
    background-color: rgba(255,255,255,0.2);
}
h1{
    position: absolute;
    top: 320px;
    left:0;
    right:0;
    font-size: 36px;
    margin: 30px 0;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    font-family: "HelveticaNeueBlack", "HelveticaNeue-Black", "Helvetica Neue Black", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosBold', "Arial Black", sans-serif;

}
main h2{
    line-height: 30px;
    font-size: 18px;
    color: #ffffff;
    padding-bottom: 0;
    margin:0;
    font-weight: 400;
}
main .patents,
main .patents p {
    font-size: 13px;
    line-height: 1.5;
}

main h4 {
    color: #ffffff;
    margin:40px 0 6px;
    font-size: 16px;
    line-height: 1.5;
}
main p {
    color: #808080;
    line-height: 1.8;
    font-size: 16px;
}
main p.small {
    margin:7px 0 0;
    color: rgba(255,255,255,0.5);
    margin-top: 0;
}
main section {
    padding:0 10px;
    box-sizing: border-box;
}
main .patents ul {
    margin:0;
    padding:0;
    line-height: 1.5;
    color: rgba(255,255,255,0.5);
}
main .patents ul li {
    margin: 0 25px;
}

.patentsList{
margin-top:60px;
}
.patent{
    margin:0 0 40px;
    display: grid;
    grid-template-columns:1fr;
    gap: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom:1px solid rgba(255,255,255,0.25);
}
.patent:last-child{
    border-bottom:none;
}
.patent a{
    text-decoration:none;
}
.patent h3{
  color:rgba(255,255,255,0.8);
  margin:0;
  padding:0;
}
.patent h4{
    color:rgba(255,255,255,0.8);
    margin:0;
    padding:0;
}
.patent p{
  padding:0; 
  margin:0;
  font-size: 14px;
  line-height: 1.5;
}



@media (min-width: 400px) {

}
@media (min-width: 615px) {
    .contentWrapper {
        max-width: 600px;
        width: 600px;
    }
    h1 {
        font-size: 84px;
        top: 280px;
    }
    main h2 {
        font-size: 28px;
    }
    main section {
        padding:0 40px;
    }
    main p {
        font-size: 18px;
    }
    main .patents,
    main .patents p {
        font-size: 16px;
        line-height: 1.5;
    }
    .patent{
        grid-template-columns:1fr 1fr;
    }

}
@media (min-width: 900px) {

    .contentWrapper {
        max-width: 740px;
        width: 740px;
    }
    h1 {
        top: 360px;
    }
}
@media (min-width: 1200px) {

}


footer {
    margin-top: 120px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}
.footer-links {
    padding-top: 22px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.footer-links a {
    margin:0 20px;
}

[id='contact-link'] {
    display: block;
    margin-top: 22px;
    color: white;
    font-size: 13px;
    line-height: 18px;
    text-decoration: none;
}

[id='legal'] {
    color: rgba(255,255,255,0.35);
    font-size: 13px;
    line-height: 18px;
}

@keyframes slideIn {
    0% {
        opacity:0;
       max-height: 0;
    }
    100% {
        opacity:1;
        max-height: auto;
    }
}
@keyframes slideOut {
    0% {
        opacity:1;
        max-height: auto;
    }
    100% {
        opacity:0;
        max-height: 0;
    }
}