body{
    overflow-x: hidden;
}

.aboutus {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    /* height: 80vh; */
    overflow-x: hidden;
}

.title{
    font-size: 33px;
    text-align: center;
    width: 100vw;
}

.subtitle{
    font-size: 26px;
    text-align: center;
    width: 100vw;
    color:var(--secondary-text-color);
    margin-top: -10px;
    padding-left: 22px;
    padding-right: 22px;
}

.panorama {
    margin: 0 auto;
    cursor: all-scroll;
    width: 100%;
    padding-bottom: 30%;
    background-image: url(/resources/images/panorama-bg.png);
    background-size: cover;
    background-position: 50% 0;
    transition: background-position 1s linear;
  }

.webpict {
    display: none;
}

.layout {
    display: flex;
    padding: 25px 10vw 20vw 10vw;
}

  @media (min-width: 1024px) {
    .webpict {
        display: block;
        margin-top: 10px;
    }

    .webpict img{
        width: 21vw;
    }

    .layout {
        display: flex;
        padding: 25px 15vw 20vw 15vw;
    }
  }