.blue {
    color: var(--blue);
}

.title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    /* position: fixed; */
}

h1 {
    font-family: neue;
    font-weight: 700;
    font-size: 120px;
    margin-left: 1rem;
margin-top: 2rem;
}

#servicios {
    padding: 1.25rem;
    min-height: 70vh;
    justify-content: space-evenly;
}

h2.red {
    font-size: 40px;
    width: 30vw;
    align-self: flex-end;
}

.servicios {
    gap: 1rem;
    justify-content: space-between;
    height: max-content;
    flex-wrap: wrap;
}

.servicios p {
    border-radius: 0.5rem;
    background: rgba(80, 201, 204, 0.30);
    padding: 1rem;
    font-size: 24px;
    width: 29vw;
}

.web {
  gap: 2rem;
    align-items: flex-start;
    align-self: flex-start;
    display: flex;
    width: 64vw;
    font-size: 40px;
    gap: 1rem;

}

.web button {
    margin-left: 1rem;
    width: 30vw;
    color: #fff;
    background-color: #000;
    border-radius: 2rem;
    border: none;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-family: neue;
}

.web button:hover {
    background-color: var(--blue);
}

.media {
    padding: 2rem;
    gap: 2rem;
}

.d30 {
    width: 30vw;
    align-self: flex-start;
}

.imgQ {
    width: 30vw;
    overflow: hidden;
    border-radius: 1rem;
    height: 35vh;
}

.imgQ:last-child {
    align-self: flex-end;
}

@media screen and (orientation:portrait) {
    #bg {
        display: none !important;
    }
#servicios{
    height: max-content;
}
    h1 {
        margin: 0;
        line-height: 96%;
        font-size: 80px;
        text-align: center;
    }
    h2.red,.web, .d30{
        width: 90vw;
    }
    
    .servicios p {
      height: max-content;
        font-size: 20px;
        width: 85vw;
    }
    .media{
        margin-top: 10vh;
        padding: 1rem;
        gap: 1rem;
    }
    .imgQ{
        width: 100%;
    }
}