html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
} article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;500;700&display=swap"); :root {
--blue: #1f76af;
--blue-dark: #104671;
--black: #333;
--bg-blue-light: #8ebad7;
--orange: #ffa500;
--red: #ff0000;
--white: #fff;
}
body {
font-family: 'Roboto', sans-serif;
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 100vh;
}
.container {
width: 1200px;
margin: 0 auto;
}
.row {
display: flex;
justify-content: space-between;
align-items: center;
}
.h2 {
margin-top: 45px;
margin-bottom: 45px;
font-size: 39px;
font-weight: 500;
text-align: center;
}
a {
color: var(--black);
text-decoration: none;
transition: 0.3s ease;
}
a:hover {
color: var(--blue);
} .button-to-top {
opacity: 0;
position: fixed;
bottom: 10px;
right: 10px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
width: 40px;
height: 40px;
background: var(--white);
border: 2px solid var(--blue);
border-radius: 50%;
font-size: 32px;
color: var(--blue);
transition: all 0.3s ease-in;
z-index: 999;
}
.button-to-top::before {
content: '↑';
position: absolute;
top: 0;
left: 12px;
} .header__row {
display: flex;
justify-content: space-between;
align-items: center;
}
.header__logo img {
width: 265px;
height: 100%;
cursor: pointer;
animation: grow 0.5s ease-in;
transition: all 0.3s ease-in;
}
.header__logo:hover {
transform: scale(1.1);
}
@keyframes grow {
0% {
transform: scale(0.5);
}
100% {
transform: scale(1);
}
}
.header__phone {
font-size: 19px;
color: var(--black);
font-weight: 500;
line-height: 1.9em;
}
.header__phone::before {
content: '\260E';
color: var(--blue);
font-weight: bold;
margin-right: 5px;
}
.header__address {
display: flex;
justify-content: center;
align-items: center;
}
.header__address p {
font-size: 15px;
}
.header__address-img {
margin-right: 15px;
} .section-main {
min-height: 500px;
padding: 5px 0 30px;
background: url(//septik-ptz.ru/wp-content/themes/septic-ptz/assets//img/01_section-main/bg.webp) no-repeat center;
background-size: cover;
}
.section-main__title {
width: 461px;
background: rgba(0, 0, 0, 0.5);
margin-top: 100px;
padding: 18px;
border: 2px solid var(--blue);
border-radius: 10px;
text-align: center;
color: var(--white);
font-size: 39px;
font-weight: 500;
text-transform: uppercase;
line-height: 1.7em;
transition: background 0.3s ease-in;
}
.section-main__title:hover {
background: rgba(0, 0, 0, 0.7);
}
.nav { margin: 20px auto;
padding: 15px;
border: 2px solid var(--blue);
border-radius: 10px;
}
.nav-mobile__show {
display: none;
}
.nav-mobile {
display: none;
}
.row-main__nav { display: flex;
justify-content: center;
align-items: center;
gap: 5px;
}
.nav a {
display: block;
padding: 7px 30px;
font-size: 22px;
color: var(--white);
background: rgba(0, 0, 0, 0.41);
border-radius: 10px;
transition: background 0.3s ease-in, color 0.3s ease-in;
}
.nav a:hover {
background: rgba(0, 0, 0, 0.8);
}
nav ul li {
position: relative;
float: left;
}
nav ul li ul {
position: absolute;
left: 0;
width: 100%;
padding: 5px;
background: var(--bg-blue-light);
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 10px;
box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
display: none; z-index: 355;
}
nav ul li ul li {
width: 100%;
margin-top: 2px;
}
nav ul li ul li ul {
left: 100%;
top: 0;
box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
}
nav ul li:hover > ul {
display: block; transition: 0.3s ease-in;
}
.menu-item-has-children:after {
content: '\25BE';
position: absolute;
top: 12px;
right: 0;
width: 10px;
height: 10px;
margin-right: 15px;
color: var(--blue);
} .section-main__img1 {
width: 332px;
margin-left: 79px;
transition: transform 0.3s ease-in;
}
.section-main__img2 {
width: 525px;
margin-right: 100px;
transition: transform 0.3s ease-in;
}
.section-main__img1:hover,
.section-main__img2:hover {
transform: scale(1.1);
} .section-dirt {
position: relative;
margin-top: -29px;
}
.section-dirt img {
width: 100%;
} .accordion {
display: flex;
flex-direction: column;
margin-bottom: 34px;
width: 100%;
}
.accordion__title {
display: flex;
justify-content: space-between;
align-items: center;
height: 84px;
font-size: 25px;
padding: 0px 20px;
color: var(--white);
border-radius: 10px;
border-top: 1px solid #f4f4f4;
border-bottom: 1px solid #d3d3d3;
background: var(--blue);
}
.accordion__title.active {
border-radius: 10px 10px 0px 0px;
}
.accordion__img {
display: flex;
position: relative;
justify-content: center;
width: auto;
z-index: 5;
}
.accordion__img img {
width: 100px;
height: 100px;
border-radius: 100px;
border: 2px solid var(--blue);
}
.title__div {
width: 30%;
}
.accordion__content {
margin: 0 auto;
background-color: var(--bg-blue-light);
overflow: hidden;
color: var(--black);
font-size: 14px;
font-style: normal;
line-height: 2em;
border-radius: 0 0 10px 10px;
max-height: 0;
opacity: 0;
transition: 0.3s ease;
}
.accordion__content:hover {
height: 100%;
}
.accordion__content.active {
overflow: visible;
opacity: 1;
padding: 20px;
transition: 0.3s ease;
}
.accordion__text {
text-align: justify;
}
.accordion__models {
width: 100%;
display: flex;
justify-content: space-around;
padding: 20px 10px 50px 10px;
align-items: center;
flex-wrap: wrap;
}
.accordion__cell {
display: inline-block;
width: 160px;
height: 52px;
margin: 10px 15px;
}
.accordion__cell a {
position: relative;
display: block;
border: 1px solid var(--white);
border-radius: 7px;
padding: 5px;
padding-bottom: 2px;
text-decoration: none !important;
font-weight: 700;
text-align: center;
line-height: 52px;
box-sizing: border-box;
color: var(--blue);
} .what-choose {
margin-top: 50px;
}
.what-choose__img {
display: block;
margin: 0 auto;
max-width: 1200px;
}
.what-choose__btn {
position: relative;
margin: -50px auto 60px auto;
width: 165px;
height: 40px;
display: flex;
justify-content: center;
align-items: center;
border: 2px solid var(--blue);
border-radius: 7px;
padding: 4px 10px;
font-size: 25px;
color: var(--red);
font-weight: bold;
text-transform: uppercase;
cursor: pointer;
transition: all 0.3s ease-in;
}
.what-choose__btn:hover {
background: var(--blue);
box-shadow: 0 0 10px var(--white);
color: var(--white);
} .header-sp {
width: 90%;
display: block;
margin: 0 auto;
cursor: pointer;
}
.show {
width: 165px;
height: 40px;
position: relative;
display: block;
margin: -50px auto 60px auto;
text-align: center;
line-height: 33px;
border: 2px solid var(--blue);
padding: 2px 4px 8px 4px;
font-size: 25px;
text-transform: uppercase;
color: var(--red);
font-weight: bold;
cursor: pointer;
border-radius: 7px;
}
.show:hover {
background: var(--blue);
box-shadow: 0 0 10px var(--white);
color: var(--white);
}
.show:active {
color: var(--orange);
}
.table-wrapper {
width: 100%;
overflow-x: auto;
margin: 0px auto;
}
#section-table.active {
display: block;
}
.section-table {
display: none;
width: 90%;
margin: 0 auto;
font-family: 'Roboto', sans-serif;
}
.rounded {
border: 1px solid var(--blue);
border-radius: 12px;
}
.h2-table {
text-align: center;
color: var(--black);
font-size: 39px;
line-height: 39px;
margin-top: 80px;
}
.title-table {
text-align: center;
color: var(--black);
font-size: 1.375rem;
line-height: 18px;
margin-bottom: 22px;
margin-top: 15px;
}
.table {
width: 100%;
margin: 0 auto;
border-collapse: separate;
border-spacing: 0;
box-sizing: border-box;
}
.th:first-child {
border-top-left-radius: 10px;
border-left: var(--blue) !important;
}
.th:last-child {
border-top-right-radius: 10px;
border-right: var(--blue);
}
.head-row {
height: 63px;
background: var(--blue);
color: var(--white);
font-size: 18px;
font-weight: 200;
text-align: center;
}
.th {
border-left: 1px solid var(--white);
border-bottom: 1px solid var(--blue);
text-align: center;
vertical-align: middle;
font-weight: 500;
line-height: 1.5;
padding: 5px;
}
.row-1 {
background: #59ace3;
}
.td:first-child {
font-size: 18px;
font-weight: 400;
border-left: 1px solid var(--blue);
border-bottom: 1px solid var(--blue);
border-top: none;
text-align: center;
vertical-align: middle;
height: 63px;
}
.td img {
width: 100px;
height: 100px !important;
border-radius: 50% !important;
}
.tr:last-child {
height: 63px;
color: var(--black);
font-size: 16px;
}
.tr:last-child .td:first-child {
border-bottom-left-radius: 10px;
}
.tr:last-child .td:last-child {
border-bottom-right-radius: 10px;
}
.td {
padding: 5px;
border-left: 1px solid var(--blue);
border-bottom: 1px solid var(--blue);
border-top: none;
text-align: center;
vertical-align: middle;
font-weight: 400;
}
.td span {
display: block;
font-size: 13px;
}
.legend {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.legend__cell {
margin: 12px;
position: relative;
float: left;
padding: 3px;
border: 1px solid var(--blue);
border-radius: 3px;
width: 143px;
font-size: 14px;
text-align: center;
font-weight: 600;
color: var(--black);
}
.legend-cell {
margin: 12px 0;
position: relative;
float: left;
padding: 3px;
border-radius: 3px;
width: 143px;
text-align: center;
}
.image-table {
width: 100px;
height: 100px !important;
border-radius: 50% !important;
}
.img-fon {
padding: 5px;
background: #59ace3;
}
.what-choose__btn2 {
margin: 70px auto;
padding: 15px 20px;
width: 400px;
display: flex;
justify-content: center;
align-items: center;
background-color: var(--white);
font-size: 25px;
font-weight: 700;
text-transform: uppercase;
color: var(--blue);
border: 2px solid var(--blue);
border-radius: 6px 6px 6px 6px;
cursor: pointer;
transition: background 0.3s ease-in, color 0.3s ease-in;
}
.what-choose__btn2:hover {
color: var(--white);
background-color: var(--blue);
} .montage {
width: 100%;
margin: 20px auto;
padding: 20px 0 0 0;
font-family: 'Roboto', Sans-serif;
color: var(--black);
border: 2px solid var(--blue);
border-radius: 15px;
background: var(--blue);
}
.montage__h2 {
font-size: 39px;
text-align: center;
font-weight: 700;
color: var(--black);
}
.montage__title {
color: var(--black);
font-size: 25px;
text-align: center;
margin-bottom: 40px;
}
.montage__title span {
color: var(--white);
font-style: italic;
font-size: 28px;
padding: 10px;
text-decoration: underline;
}
.montage__content {
display: grid;
grid-template-columns: repeat(13, [col] 1fr);
grid-template-rows: repeat(7, [row] 1fr);
row-gap: 10px;
}
.montage__content--mobile {
display: none;
}
.montage__content,
.montage__content--mobile {
position: relative;
background: var(--white);
box-sizing: border-box;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
padding: 20px;
}
.stage-text-g {
font-size: 23px;
text-align: left;
color: var(--white);
background: var(--blue);
line-height: 36px;
padding: 10px 20px;
}
.color-blue {
color: #104671;
}
.text-1st,
.text-3rd {
text-align: right;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}
.text-2nd {
padding-left: 20px;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
.stage {
display: block;
text-align: center;
}
.stage-img {
box-sizing: border-box;
border-radius: 5px;
border: 2px solid var(--blue);
}
.best-pr {
position: absolute;
bottom: 142px;
right: 143px;
width: 300px;
transform: rotate(-8deg);
}
.left {
float: left;
} .grid-item-1 {
grid-column: col 1 / col 7;
grid-row: row 1 / row 4;
background: url(//septik-ptz.ru/wp-content/themes/septic-ptz/assets//img/04_montage/1.webp) no-repeat center;
background-size: cover;
border-top-right-radius: 0px;
}
.grid-item-2 {
grid-column: col 7 / col 14;
grid-row: row 1;
}
.grid-item-3 {
grid-column: col 1 / col 9;
grid-row: row 4;
}
.grid-item-4 {
grid-column: col 8 / col 14;
grid-row: row 3 / row 6;
background: url(//septik-ptz.ru/wp-content/themes/septic-ptz/assets//img/04_montage/2.webp) no-repeat center;
background-size: cover;
}
.grid-item-5 {
grid-column: col 1 / col 7;
grid-row: row 5 / row 8;
background: url(//septik-ptz.ru/wp-content/themes/septic-ptz/assets//img/04_montage/3.webp) no-repeat center;
background-size: cover;
border-bottom-right-radius: 0px;
}
.grid-item-6 {
grid-column: col 7 / col 14;
grid-row: row 7 / row 8;
}  .service {
width: 100%;
margin: 40px auto;
padding: 10px 0 0 0;
font-family: 'Roboto', Sans-serif;
color: var(--black);
border: 2px solid var(--blue);
border-radius: 15px;
background: var(--blue);
}
.service__h2 {
text-align: center;
font-size: 39px;
font-weight: 700;
line-height: 2.2;
color: var(--black);
}
.service__content {
width: 100%;
margin: 0 auto;
padding: 20px;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
background: var(--white);
box-sizing: border-box;
font-family: 'Roboto', Sans-serif;
color: var(--black);
}
.service__attention {
display: block;
width: 90%;
color: var(--black);
font-size: 13px;
text-align: center;
margin: 0 auto;
font-weight: 400;
font-style: italic;
line-height: 20px;
}
.service__attention span {
margin-right: 10px;
color: var(--red);
}
.service__line {
width: 70%;
border-bottom: 1px solid var(--black);
margin: 20px auto 23px auto;
}
.service__block {
display: grid;
grid-template-columns: repeat(12, [col] 1fr);
grid-template-rows: repeat(11, [row] 1fr);
}
.check-mark {
margin-right: 10px;
font-weight: bold;
color: var(--red);
}
.service-item {
display: flex;
align-items: center;
box-sizing: border-box;
height: 50px;
padding: 5px 15px;
font-size: 20px;
text-align: left;
background: var(--blue);
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
color: var(--white);
}
.service-item-1 {
grid-column: col 1 / col 8;
grid-row: row 1;
}
.service-item-empty-1 {
grid-column: col 1 / col 8;
grid-row: row 2;
height: 25px;
}
.service-item-2 {
grid-column: col 1 / col 8;
grid-row: row 3;
}
.service-item-empty-2 {
grid-column: col 1 / col 8;
grid-row: row 4;
height: 25px;
}
.service-item-3 {
grid-column: col 1 / col 8;
grid-row: row 5;
}
.service-item-empty-3 {
grid-column: col 1 / col 8;
grid-row: row 6;
height: 25px;
}
.service-item-4 {
grid-column: col 1 / col 8;
grid-row: row 7;
}
.service-item-empty-4 {
grid-column: col 1 / col 8;
grid-row: row 8;
height: 25px;
}
.service-item-5 {
grid-column: col 1 / col 8;
grid-row: row 9;
}
.service-item-empty-5 {
grid-column: col 1 / col 8;
grid-row: row 10;
height: 25px;
}
.service-item-6 {
grid-column: col 1 / col 8;
grid-row: row 11;
}
.service-item-7 {
grid-column: col 8 / col 13;
grid-row: row 1 / row 12;
background: url(//septik-ptz.ru/wp-content/themes/septic-ptz/assets//img/05_service/service-man.webp) no-repeat top left;
background-size: cover;
border: 2px solid var(--blue);
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
} .about {
width: 100%;
margin: 40px auto;
padding: 10px 0 0 0;
font-family: 'Roboto', Sans-serif;
color: var(--black);
border: 2px solid var(--blue);
border-radius: 15px;
background: var(--blue);
}
.about__h2 {
font-size: 39px;
text-align: center;
font-weight: 800;
line-height: 2.2;
color: var(--black);
}
.about__content {
display: flex;
box-sizing: border-box;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
width: 100%;
margin: 0 auto;
padding: 20px;
font-family: 'Roboto', Sans-serif;
color: var(--black);
background: var(--white);
}
.about__block-1 {
width: 50%;
padding-right: 20px;
text-align: center;
}
.about__block-1 img {
margin: 0 auto;
width: 80%;
}
.about__text {
background: var(--blue);
font-size: 17px;
line-height: 33px;
text-align: justify;
padding: 20px;
color: var(--white);
border-radius: 10px;
}
.about__text p {
padding-bottom: 20px;
}
.about__block-2 {
text-align: center;
float: right;
width: 50%;
padding-left: 30px;
}
.about__head {
margin: 32px auto;
font-weight: bold;
font-size: 20px;
color: var(--blue);
}
.about__ul {
margin-top: 20px;
text-align: left;
font-size: 14px;
font-weight: bold;
}
.about__li {
padding: 5px;
line-height: 1.4;
}
.about__b {
color: var(--red);
}
.about__link {
display: block;
margin: 20px auto;
padding: 5px;
width: 250px;
color: var(--white);
text-align: center;
border-radius: 5px;
border: 1px solid var(--white);
}
.about__link:hover {
background: var(--white);
color: var(--blue);
text-decoration: underline;
cursor: pointer;
}
.about__link-also {
color: grey;
text-decoration: none;
}
.about__link-also:hover {
color: var(--blue);
text-decoration: underline;
text-decoration-skip: ink;
cursor: pointer;
}  .section-service,
.section-montage,
.choose-septic,
.section-about,
.section-contacts {
margin: 50px auto 100px;
}
.contacts {
width: 100%;
margin: 40px auto;
padding: 10px 0 0 0;
font-family: 'Roboto', Sans-serif;
color: var(--black);
border: 2px solid var(--blue);
border-radius: 15px;
background: var(--blue);
}
.contacts__h2 {
font-size: 39px;
text-align: center;
font-weight: 800;
line-height: 2.2;
color: var(--black);
}
.contacts__content {
display: flex;
justify-content: space-around;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
margin: 0 auto;
padding: 20px;
color: var(--black);
background: var(--white);
}
.contacts__block-1 {
box-sizing: border-box;
width: 39.5%;
padding-top: 10px;
}
.contacts__item {
margin-bottom: 20px;
}
.item-header {
font-size: 20px;
line-height: 2;
font-weight: bold;
color: var(--blue);
}
.item-text {
font-size: 17px;
font-weight: bold;
padding-left: 15px;
line-height: 1.5;
}
.contacts__block-2 {
border-radius: 10px;
border: 2px solid var(--blue);
text-align: center;
float: right;
width: 59.5%;
}
.text-map {
text-align: center;
padding-top: 10px;
padding-left: 30px;
}
.text-map svg {
margin-right: 10px;
}
.contacts__block-2 iframe {
width: 90%;
height: 85%;
box-sizing: border-box;
border-top: 2px solid var(--blue);
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
}
.footer {
background: var(--black);
box-sizing: border-box;
}
.footer__block {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
width: 100%;
padding: 15px;
font-size: 12px;
text-align: center;
color: var(--blue);
line-height: 1.5;
}
.footer__block img {
width: 150px;
height: 100%;
}
.footer__block a {
color: var(--blue);
line-height: 2;
}
.footer__block a:hover {
color: var(--white);
}
.footer__block-line {
margin: 20px 0;
width: 1px;
height: 40px;
border-right: 1px solid var(--blue);
}
.page__content {
width: auto;
} .modal {
display: none;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(31, 118, 175, 0.9);
transition: display 3s;
}
.modal.active {
display: flex;
justify-content: center;
align-items: center;
transition: display 3s;
}
.modal__window {
background: var(--white);
padding: 15px;
border-radius: 10px;
width: 450px;
animation-name: animate-modal;
animation-duration: 1s;
}
@keyframes animate-modal {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.modal__content {
position: relative;
border: 1px solid var(--blue);
border-radius: 10px;
padding: 20px;
}
.modal__close {
position: absolute;
top: 5px;
right: 5px;
font-size: 23px;
padding: 3px 10px;
border: 2px solid var(--blue);
border-radius: 5px;
cursor: pointer;
}
.modal__label {
display: block;
margin-bottom: -10px;
width: 100%;
font-size: 21px;
font-weight: 700;
color: var(--blue);
}
.modal__input {
width: 100%;
color: var(--black);
padding: 10px;
box-sizing: border-box;
border-radius: 5px;
font-size: 16px;
margin-bottom: 20px;
}
.modal__btn {
background: var(--blue);
padding: 14px 30px;
border: none;
border-radius: 14px;
display: block;
margin: 0 auto;
color: var(--white);
font-size: 21px;
transition: opacity 0.3s ease-in;
}
.modal__btn:hover {
opacity: 0.85;
}