.hero-srm {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-blend-mode: darken;
    display: flex;
    align-items: center;
    text-align: left;
    padding-top: 14vh;
}

.hero-srm-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

@media (max-width: 768px) {

    .hero-srm{
        height: 75vh;
        padding-top: 15%;
    }
}

.srm-about{
    height: fit-content;
    padding: 2%;
}

.container-srm{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.container-srm img{
    width: 40%;
    height: 100%;
}

.srm-about-visible{
    width: 100%;
    height: auto;
    display: none;
    transition: all 3s ease-in-out;
}

.srm-about-wireframe{
    width: 100%;
    height: auto;
    display: block;
    transition: all 20s ease-in-out;
}

.srm-about-text{
    width: 50%;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 2%;
}

.srm-about-text h3{
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 1.5rem;
    font-weight: 200;
    color: #000000;
    margin-bottom: 2%;
}

.srm-about-text h2{
    font-family: 'From the Stars W01 Regular', sans-serif;
    font-size: 3rem;
    font-weight: 200;
    line-height: 1.5;
    color: #E18A07;
    margin-bottom: 3%;
}

.srm-about-text p{
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 1.2em;
    line-height: 1.6;
    font-weight: semi-bold;
    margin-bottom: 5%;
    margin-left: none;
    color: #000000;
}

@media (max-width: 768px){
    .container-srm{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2%;
    }

    .container-srm img{
        width: 100%;
        height: auto;
    }

    .srm-about-text{
        width: 100%;
        padding: 4%;
    }

    .srm-about-text h3{
        font-size: 1.5rem;
    }

    .srm-about-text h2{
        font-size: 2rem;
    }

    .srm-about-text p{
        font-size: 1.1rem;
    }
}

.launch-series-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    flex-direction: column;
}

.container-celsius {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
}

.fahrenheit-container-left {
    flex: 1;
    padding: 20px;
}

.srm-block-video{
    width: 100%;
    height: fit-content;
    object-fit: cover;
    padding: 2%;
}

.fahrenheit-container-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    line-height: 1.8;
    font-family: 'Atkinson Hyperlegible', Arial, sans-serif;
}

td {
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid #555;
}

.td2{
    text-align: right;
}

.span1{
    color: #808080;
    font-weight: 200;
}

.fahrenheit-container-left h3, .fahrenheit-container-left h4 {
    text-align: right;
    margin: 0%;
    font-family: "From the Stars W01 Regular"; 
    font-weight: 200;
}

.fahrenheit-container-left h3 {
    font-size: 1.8em;
    font-weight: 200;
    color: #E18A07;
}

.fahrenheit-container-left h4 {
    font-size: 1.5em;
    font-weight: 200;
    color:rgb(105, 105, 105)
}

.launch-fahrenheit {
    max-width: auto;
    height: 90vh;
}

@media (max-width: 768px) {

    .container-celsius{
        flex-direction: column;
    }

    .fahrenheit-container-left, .fahrenheit-container-right {
        flex: none;
        width: 100%;
    }

    table{
        font-size: 12px;
        line-height: 1;
    }

    .launch-fahrenheit {
        height: 70vh;
        width: auto;
    }
}