#web-responsive .device-box {
    height: 350px;
}

#web-responsive * {
    transition: all .6s ease;
}

#web-responsive .screen {
    height: 256px;
    background: #585858;
    margin: 0 auto;
    max-width: 128px;
    padding: 10px;
    border-radius: 25px;
}

#web-responsive .page {
    width: 100%;
    height: 100%;
    background: white;
    overflow: hidden;
    border-radius: 15px;
}

#web-responsive .page>div {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    max-width: 256px;
}

#web-responsive .page .image {
    position: absolute;
    background: #4c3c67;
    top: 10px;
    left: 0;
    height: 90px;
    width: 100%;
}

#web-responsive .page .text {
    position: absolute;
    background: #C9C9C9;
    top: 100px;
    left: 0;
    height: 100px;
    width: 100%;
}

#web-responsive .page .other {
    position: absolute;
    top: 210px;
    left: 5%;
    height: 100px;
    width: 90%;
}

#web-responsive .page hr {
    height: 5px;
    background: #ccc;
    border: none;
}

#web-responsive .keyboard {
    background: #585858;
    max-width: 128px;
    margin: 10px auto;
    height: 0px;
}

#web-responsive .tablet .screen {
    max-width: 168px;
    border-radius: 10px;
    padding: 15px;
}

#web-responsive .tablet .page {
    border-radius: 3px;
}

#web-responsive .tablet .page .image {
    top: 15px;
    left: 0;
    height: 100px;
    width: 100%;
}

#web-responsive .tablet .page .text {
    top: 90px;
    left: 15%;
    height: 80px;
    width: 70%;
}

#web-responsive .tablet .page .other {
    left: 15%;
    width: 70%;
    top: 180px;
}

#web-responsive .tablet .keyboard {
    max-width: 168px;
}

#web-responsive .laptop .screen {
    max-width: 300px;
    height: 192px;
    border-radius: 8px 8px 0 0;
    padding: 15px 8px;
}

#web-responsive .laptop .page {
    border-radius: 2px;
}

#web-responsive .laptop .page .image {
    top: 15px;
    left: 5%;
    height: 120px;
    width: 50%;
}

#web-responsive .laptop .page .text {
    top: 35px;
    left: 40%;
    height: 80px;
    width: 55%;
}

#web-responsive .laptop .page .other {
    top: 145px;
}

#web-responsive .laptop .keyboard {
    max-width: 300px;
    border-radius: 0 0 8px 8px;
    height: 128px;
}

#web-responsive .pc .screen {
    max-width: 320px;
    height: 226px;
    border-radius: 6px;
    padding: 15px;
    padding-bottom: 32px;
}

#web-responsive .pc .page {
    border-radius: 2px;
}

#web-responsive .pc .page>div {
    max-width: 180px;
}

#web-responsive .pc .page .image {
    top: 15px;
    left: 5%;
    height: 110px;
    width: 43%;
}

#web-responsive .pc .page .text {
    top: 35px;
    left: 52%;
    height: 70px;
    width: 43%;
}

#web-responsive .pc .page .other {
    top: 135px;
}

#web-responsive .pc .keyboard {
    max-width: 128px;
    height: 64px;
    border-radius: 6px;
}
.features .ico {
    width: 96px;
    background: var(--secondary-color);
    padding: 24px;
    border-radius: 48px;
    margin: 0 auto;
}
.features img {
    width: 100%;
}

.features h2,
.features p {
    margin: 5px 0;
}

.description .responsive {
    color: white;
    padding: 0 10px;
    text-decoration: underline;
    background: var(--secondary-color-l2);
}

.description h2 {
    color: var(--main-color);
}

.description .flex>div,
.description h1 {
    padding: 25px;
    text-align: center;
}


.projects-line {
    padding: 50px 15px;
    align-items: center;
}

.projects-line>div {
    padding: 10px;
}

.projects-line p {
    background: red;
    height: 30px;
}

.projects-line img {
    width: 100%;
    border-radius: 8px;
}

.projects-line .title {
    margin-top: 0;
    display: none;

}

.projects-line .title-mobile>h2 {
    margin: 0;
}

.projects-line .info {
    padding-top: 30px;
    padding-bottom: 30px;
}

.projects-line .info a {
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--main-color);
    color: black;
    text-decoration: none;
    font-weight: bold;
}

@media screen and (min-width:768px) {

    .projects-line {
        padding: 100px 15px;
        align-items: center;
    }

    .projects-line .title {
        display: block;
    }

    .projects-line .title-mobile {
        display: none;
    }
}