.no-hover {
pointer-events: none;
}
.section-nav .nav a {
background: var(--white);
color: var(--blue);
}
.section-nav .nav a:hover {
background: rgba(0, 0, 0, 0.8);
color: var(--white);
}
.page__content {
width: auto;
margin: 40px auto;
padding: 20px;
border: 2px solid var(--blue);
border-radius: 15px;
} .breadcrumbs {
margin-top: 40px;
}
.breadcrumbs__ul {
margin: 5px;
font-size: 14px;
}
.breadcrumbs__ul li {
display: inline-block;
}
.section-content {
margin-bottom: 50px;
}
.content__h1 {
margin-left: 100px;
font-size: 39px;
font-weight: 700;
}
.content__h1 .sub__h1 {
font-size: 22px;
color: var(--blue);
font-style: italic;
font-weight: 400;
}
.content__row {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
align-items: start;
margin-top: 20px;
}
.content__block-img {
width: 30%;
}
.wrapper-img {
margin-bottom: 20px;
background: var(--white);
border: 2px solid var(--blue);
border-radius: 10px;
overflow: hidden;
}
.wrapper-img img {
width: 100%;
z-index: 100;
transition: transform 0.3s ease-in;
transform: scale(1.05);
}
.content__block-img img:hover {
transform: scale(1.2);
}
.content__block-info {
width: 66%;
}
.content__offer {
padding: 5px;
background: var(--bg-blue-light);
border: 2px solid var(--blue);
border-radius: 10px;
color: var(--blue);
}
.content__h2 {
display: block;
width: 50%;
margin: 10px auto;
font-size: 29px;
font-weight: 600;
color: var(--black);
text-align: center;
line-height: 1.1;
}
.content__h2-sub {
margin-bottom: 20px;
font-size: 19px;
font-weight: 600;
text-align: center;
} .table {
width: 95%;
margin: 30px auto 10px;
}
table {
width: 100%;
margin: 0 auto;
border-collapse: separate;
border-spacing: 0;
box-sizing: border-box;
}
.head-row {
height: 41px;
background: var(--blue);
color: var(--white);
font-size: 18px;
line-height: 2;
font-weight: 600;
}
th {
text-align: center;
}
.head-1 {
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom: 1px solid var(--white);
}
.head-2 {
min-width: 150px;
border-left: 1px solid var(--blue);
border-right: 1px solid var(--white);
}
.head-3 {
min-width: 150px;
}
.content-row {
height: 63px;
color: var(--black);
font-size: 16px;
}
.row-last .td-3 {
border-left: 1px solid var(--blue);
}
.td-1 {
width: 50%;
}
.td-2 {
width: 25%;
line-height: 4;
}
.td-3 {
width: 25%;
}
td:last-child {
border-left: none;
}
td:first-child {
border-right: none;
}
td {
border-right: 1px solid var(--blue);
border-left: 1px solid var(--blue);
border-bottom: 1px solid var(--blue);
border-top: none;
text-align: center;
}
.content__info {
padding: 5px;
width: 96%;
position: relative;
}
.content__info-specif {
margin-bottom: 30px;
}
.content__info-info-b {
margin-right: 5px;
font-weight: 700;
}
.content__info-info {
padding: 5px;
line-height: 1.5;
cursor: pointer;
}
.content__info-desc {
padding: 5px;
font-size: 16px;
font-weight: 400;
line-height: 1.5;
font-style: italic;
text-align: justify;
position: relative;
overflow: hidden;
max-height: 0;
transition: 0.3s;
}
.content__info-desc p {
margin-bottom: 15px;
}
.content__info-desc hr {
margin: 15px;
}
.content__info-h3 {
margin-left: 10px;
margin-bottom: 5px;
font-size: 18px;
font-weight: 600;
line-height: 1.5;
}
.content__info-li {
margin-left: 20px;
}
.content__info-li b {
font-weight: 700;
line-height: 1.5;
}
.page-error {
margin-top: 150px;
font-size: 72px;
font-weight: 700;
line-height: 2;
text-align: center;
}
.page-error__p {
margin-bottom: 160px;
font-size: 39px;
line-height: 1;
font-weight: 600;
color: var(--blue-dark);
text-align: center;
} .description {
width: 81%;
margin: 24px auto;
text-align: justify;
}
.description p {
line-height: 1.3;
}
.card {
display: flex;
flex-direction: column;
width: 30%;
height: 400px;
justify-content: center;
align-items: center;
margin: 20px;
padding: 10px;
text-align: center;
border: 2px solid var(--blue);
border-radius: 10px;
transition: box-shadow 0.3s ease-in;
overflow: hidden;
}
.card:hover {
box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.25);
}
.card:active {
box-shadow: none;
}
.card-img {
display: flex;
justify-content: center;
align-items: center;
width: 200px;
height: 300px;
}
.card img {
width: 200px;
transition: transform 0.3s ease-in;
}
.card img:hover {
transform: scale(1.5);
}
.card__title {
font-size: 25px;
color: var(--blue);
}