@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@500&family=Roboto:ital,wght@0,300;0,400;0,500;1,300&display=swap");


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: 'Roboto', sans-serif;
}

#app {
    min-width: 1000px;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #F3F7FE;
}

header {
    display: flex;
    /*position: sticky;*/
    /*top: 0;*/
    height: 70px;
    background-color: white;
    box-shadow: 0px 5px 10px -8px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 5px 10px -8px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 5px 10px -8px rgba(0,0,0,0.2);
    z-index: 50;
}

.hero-section {
    background-image: url("https://files.scancity.ru/sewoo/img/heroimage.jpg");
    background-position: center bottom;
    height: 600px;
    display: flex;
    flex-direction: column;

}

.hero-container h1 {
    font-weight: 500;
    line-height: 1.5;
    font-size: 28px;
    color: #337BBD;
}

.hero-container p {
    font-weight: 300;
    font-size: 22px;
    line-height: 1.5;
    margin-top: 20px;
}
.button {
    height: 50px;
    /*background-color: #01A2D8;*/
    background-color: #337BBD;
    color: white!important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 30px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    color: white;
    letter-spacing: 0.05rem;
    font-size: 20px;
    border-radius: 999px;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    background-color: #01A2D8;
}

.hero-container {
    flex-direction: column;
    row-gap: 20px;
    padding: 50px 20px;
    justify-content: flex-start;
    align-items: flex-start;
}

.container {
    display: flex;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    flex: 1 1;
}

.nav-container {
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.content-container {
    padding: 80px 20px 100px 20px;
    flex-direction: column;
    row-gap: 45px;
}

.content-container-mini {
    padding: 0 20px 60px 20px;
    flex-direction: row;
    row-gap: 45px;
    column-gap: 50px;
    align-items: flex-start;
}

.content-container-mini:nth-last-child(1) {
    padding: 0 20px 40px 20px;
}

.content-container-mini h1, h2 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 30px;
}

.content-container-mini p {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 20px;

}

.label-row {
    margin-top: 30px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.label-row p {
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 999px;
    background-color: #DCE6FA;
    color: #337BBD;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    font-weight: 400;
    margin: 0;
}

.main-nav {
    max-width: 600px;
    flex: 1 1;
}
.menu {
    display: flex;
    width: 100%;
    justify-content: space-around;
}

.menu-link {
    color: #005EAD;
}

.contacts {
    text-align: right;
}

.tel {
    font-weight: 300;
    font-size: 22px;
    line-height: 1.5;
}
.mail {
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
}

.table-section {
    background-color: white;
}

.table-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 0;
    overflow: auto;
    position: relative;
    height: auto;
}

.mobile-printer-classified {
    width: 100%;
    /*border: 1px solid #ccc;*/
    border-collapse: collapse;
}
.mobile-printer-classified thead {
    position: relative;
    border-bottom: 1px solid #ddd;
}

.mobile-printer-classified thead th:nth-child(1) {
    position: sticky;
    left: 0;
    /*border-right: 1px solid #ddd;*/
    background-color: #fAfAfA;
    z-index: 10;
    min-width: 140px;
}

.mobile-printer-classified th {
    font-weight: 500!important;
    background-color: #fAfAfA;
}
.mobile-printer-classified th, .mobile-printer-classified td {
    text-align: center;
    padding: 10px;
    min-width: 180px;
    border-bottom: 1px solid #ddd;
}

.mobile-printer-classified tbody td:nth-child(1) {
    position: sticky;
    left: 0;
    /*border-right: 1px solid #ddd;*/
    background-color: #fCfCfC;
    min-width: 140px;
}
.mobile-printer-classified tbody td:nth-last-child(1) {
    /*background-color: darkred;*/
    /*text-align: right;*/
}
.mobile-printer-classified--cell {
    display: flex;
    justify-content: center;
}

.title {
    font-weight: 300;
    font-size: 36px;
}

.image-container {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    /*flex-wrap: wrap;*/
}

.image-container--img {
    display: flex;
    object-fit: cover;
    border: 10px solid #fff;
    max-width: 100%;
    width: 100%;
    max-height: 280px;
}

.printers-title {
    padding-top: 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 20px;
}

.printers-title--image-wrapper img {
    margin-left: 150px;
    align-self: flex-end;
    padding-bottom: 5px;
    display: flex;
    object-fit: contain;
}

.printers-title h1 {
    font-family: "Roboto Slab", serif;
    font-size: 48px;
    font-weight: 500;
    color: #115fad;
}

.printers-container {
    display: flex;
    justify-content: space-between;
    padding: 50px 20px;
    gap: 20px;
}

.printers-item {
    max-width: 100%;
    width: 220px;
    background-color: white;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.printers-item img {
    max-width: 100%;
}


.mobile-printer-tech {
    position: relative;
    width: 100%;
    /*border: 1px solid #ccc;*/
    border-collapse: collapse;
}
.mobile-printer-tech--head {
    position: sticky;
    top: 0;
    border-bottom: 1px solid #ddd;
    z-index: 10;
}

.mobile-printer-tech--head td {
    background-color: #fAfAfA;
    font-size: 22px!important;
    color: #005EAD;
}
.mobile-printer-tech td {
    text-align: left;
    padding: 8px 10px;
    /*min-width: 180px;*/
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-size: 13px;
    font-weight: 400;
}


.mobile-printer-tech tbody td:nth-child(1) {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01rem;
    text-transform: uppercase;
    /*background-color: #fCfCfC;*/
    border-bottom: 1px solid #ddd;
    width: 70px;
}
.mobile-printer-tech td:nth-last-child(1) {
    border-right: 1px solid transparent;
}
.mobile-printer-tech--cell {
    display: flex;
    justify-content: center;
}


