@font-face {
    font-family: 'Proxima Nova Rg';
    src: url('../fonts/proxima_nova_regular-webfont.woff2') format('woff2'),
         url('../fonts/proxima_nova_regular-webfont.woff') format('woff');
    src: local('Proxima Nova Rg'), url('../fonts/Proxima Nova Regular.otf'); 
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Proxima Nova ExBld';
    src: local('Proxima Nova ExBld'), url('../fonts/ProximaNova-Extrabld.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Impact';
    src: local('Impact'), url('../fonts/Impact.ttf');
    font-weight: normal;
    font-style: normal;
}
@media print{@page {size: landscape}}
body {
  margin: 0;
  font-family: 'Proxima Nova Rg';
}
.mainSiteLink {
    font-size: 1.1rem;
    text-align: right;
    padding-top: .3rem;
}
.mainSiteLink a {
    color: #015495;
}
.head_img {
    margin:0 auto;
    background: url("../image/fon-min-2.jpg") center;
	background-size: cover;
	min-height: 89vh;
}
.img_title_top, .img_title_bottom {
	font-family: Impact;
    line-height: 0.96;  
    color: #ffffff;
	text-shadow: #000 2px 2px 3px;
	-webkit-text-stroke: 1px black;
}
.img_title_top {
    font-size: 52px;
	text-transform: uppercase;
    line-height: 1.3; 
}
.img_title_bottom {
    font-size: 42px;
}
.head {
    max-width: 71%;
	margin-top: 1em;
	margin-bottom: 1em;
}
.row.header {
    justify-content: space-between;
}
.email {
    max-width: 33%;
    width: 33%;
    flex: 33%;
}

@media (max-width: 1356px) {
	.head {
		max-width: 80%;
	}
}
@media (max-width: 1188px) {
	.head {
		max-width: 100%;
	}
}
.using {
    max-width: 80%;
}
.description {
    margin: -1.2rem -15px 1.5rem;
}
.description-text {
    font-size: 0.7em;
    color: #666;
    line-height: 1.4;
    padding-top: 20px;    
    border-top: none;
}
.application-list {
	display: grid;
	justify-content: center;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.application-item {
    position: relative;
    background: rgba(1,84,149,0.3);
    border-radius: 100px 10px 10px 100px;
    min-height: 100px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    padding-left: 110px;
}
.application-item:hover {
    transform: translateY(-5px);
}
.application-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 110px;
    height: 100%;
    border-radius: 100px 0 0 100px;
    overflow: auto;
}
.application-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.application-content {
    padding: 20px 25px;
}
.application-content p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}
@media (max-width: 1199px) {
	.application-list {
		gap: 10px;
	}
	.application-content {
		padding: 10px 15px;
	}
	.application-content p {
		font-size: 0.8em;
	}
}
@media (max-width: 991px) {
	.application-list {
		grid-template-columns: repeat(2, 1fr);
	}
	.application-content p {
		font-size: 1em;
	}
}
@media (max-width: 767px) {
	.application-content p {
		font-size: 0.8em;
	}
}
@media (max-width: 575px) {
	.application-list {
		grid-template-columns: repeat(1, 1fr);
	}
}
.dedicated-block {
	background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgb(27 25 25 / 10%);
}
.info-block {
    color: #2a2a2a;
    font-weight: 600;
    font-size: 1.1rem;
}
.recomendations-row {
    gap: 20px 0;
}
.problems-list {
	display: grid;
	justify-content: center;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.recomendation-item {
    position: relative;
    border-radius: 10px;
    min-height: 100px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex;
    transition: transform 0.3s ease;
    align-items: center;
    padding-left: 110px;
}
.recomendation-item:hover {
	transform: translateY(-5px);
}
.recomendation-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 110px;
    height: 100%;
    overflow: auto;
	border-radius: 10px 0 0 10px;
}
.recomendation-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recomendation-content {
    padding: 20px 25px;
}
.recomendation-title {
    color: #2a2a2a;
    font-weight: 600;
    font-size: 1em;
    margin: 0;
}
.recomendation-text {
    color: #666;
    font-size: 0.8em;
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 1399px) {
	.recomendation-content {
		padding: 20px;
	}
}
@media (max-width: 1199px) {
	.problems-list {
		gap: 10px;
	}
	.recomendation-content {
		padding: 15px;
	}
	.recomendation-title {
		font-size: 1em;
	}
	.recomendation-text {
		font-size: 0.8em;
	}
}
@media (max-width: 991px) {
	.problems-list {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 767px) {
	.problems-list {
		grid-template-columns: repeat(1, 1fr);
	}
}
.custom-table {
    background: rgba(1,84,149,0.03);
	border-radius: 10px;
	box-shadow: 0 5px 15px rgb(27 25 25 / 5%);
    padding: 5px;
}
.table-header th {
    color: #015495;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid rgba(26,107,59,0.15);
    padding: 15px 20px;
}
table thead .table-header th {
    border-bottom: 2px solid #f0f0f0;
	vertical-align: top;
}
.table-header th:first-child {
    padding-left: 0;
}
.table-header th:last-child {
    padding-right: 0;
}
.custom-table tbody td {
    color: #666;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.custom-table tbody td:first-child {
    padding-left: 0;
}
.custom-table tbody td:last-child {
    padding-right: 0;
}
.custom-table tbody tr:last-child td {
    border-bottom: none;
}
.pre-table-text .info-text {
    color: #2a2a2a;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}
.promo-block {
    background: #f8f9fa;
	border: 1px solid #eee;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgb(27 25 25 / 10%);    
}
.work-title {
	font-weight: 600;
	text-align: center;
}
.keywords {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    display: inline-block;
    word-break: break-word;
}
.keywords-list {
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}
.offer-text p {
    font-size: 1.1rem;
    color: #2a2a2a;
    font-weight: 500;
    padding-top: 1.5rem;
    margin-bottom: 0;
}
.button {
    margin:0 auto; 
    width: 310px;
    height: 66px;
    border-radius: 4px;
    background-color: #00b5e7;
    box-shadow: inset 0 -3px 0 0 #0082a7;
    cursor:pointer;
	font-family: Proxima Nova ExBld;
    font-size: 22px;
    text-align: center;
    color: #ffffff;
	padding: 15px 0 0 0;
	text-shadow: #000 1px 1px 3px;
	transition: 0.2s;
}
.quest_text {
	font-family: Proxima Nova ExBld;
    font-size: 22px;
    text-align: center;
}
.button:hover
{    
    background-color: #015495;
    box-shadow: inset 0 -3px 0 0 #002b4c;
}
.table_c{
    font-family: Proxima Nova ExBld;
    font-size: 20px;
    color: #000000;
}
/* .product-name {
	padding: 0.5em;
} */
.product-name img {
	max-width: 100%;
}
.product-image {
	text-align: center;
	padding: 0.5em;
}
.girl{
    margin:0 auto;
    background-color: rgba(1,84,149,0.3);
}
.footer{
    background-color: rgba(0,0,0,0.1);
    margin:0 auto;
}
#request {
   position: fixed;
    width: 395px;
    height: 564px;
    top: 0px;
    left: 0px;
    top: 50%;
    left: 50%;
    margin: -234px 0 0 -164px;
    text-align: center;
    z-index: 10;
    background-size: 395px;
}
#shadow_div {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.8);
    z-index:5;
}
.fix-top{
	display: block;
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 10px;
	box-shadow: 1px 1px 5px 0 #cccccc;
	text-align: center!important;
	margin-top: 1em;
	margin-right: 1em;
	padding: 0.5em;
}
.order {
	background: #015495;
    display: block;
    font-family: Proxima Nova ExBld;
    text-align: center;
    padding: 10px 25px 8px 25px;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
	text-transform: uppercase;
	cursor: pointer;
	transition: 0.2s;
	border-color: #b2c6d6;
	text-shadow: #383d41 2px 2px 1px;
}
.order:hover {
	background: #00b5e7;
}
.order-modal {
	margin: 0;
	cursor: pointer;
}
.p-content p {
	font-size: 11px!important;
	text-align: left!important;
	line-height:100%!important;
}
.p-content li {
	font-size: 11px!important;
	text-align: left!important;
	line-height:100%!important;
}
.polytic {
	display: inline!important;
	text-align: left!important;
	font-size: 10px;
	width: 100%;
}
.polytic  a {
	display: inline!important;
	font-size: 10px;
	text-decoration: underline!important;
	color: #000!important;
}
.polytic  a:hover {
	text-decoration: none!important;
}
.polytic-c  a {
	font-size: 10px;
	text-decoration: underline!important;
	color: #000!important;
}
.polytic-c a:hover {
	text-decoration: none!important;
}
.form-control {
	font-size: 13px!important;
}
.modal-header p {
	font-size: 20px;
	font-weight: bold;
}
.contact-email {
	font-family: Proxima Nova ExBld;
	font-size: 24px;
	color: #015495;
}
.contact-email a {
	color: #000000;
}
@media (max-width: 1575px) {
	.contact-email {
		font-size: 20px;
	}
	.head span {
		font-size: 14px;
	}
}
@media (max-width: 998px) {
	.contact-email {
		font-size: 16px;
	}
	.head span {
		font-size: 12px;
	}
}
@media (max-width: 790px) and (min-width: 768px) {
	.contact-email {
		font-size: 15px;
	}
	.head span {
		font-size: 11px;
	}
}
@media (max-width: 592px) and (min-width: 576px) {
	.contact-email {
		font-size: 15px;
	}
	.head span {
		font-size: 11px;
	}
}
@media (max-width: 575px){
	.contact-email {
		font-size: 18px;
	}
}
/* Start - Скрытая шапка для мобильных устройств */
.hidden-header {
	display: none;
}
@media (max-width: 575px) {
	.container.head {
		padding-inline: 7px;
	}
	.head {
		margin-top: 0.2em;
		margin-bottom: 0.2em;
	}
	.hidden-header {
		display: flex;
		background-color: #fff;
		justify-content: space-between;
		align-items: center;
	}
	.hidden-logo.logo-fluid {
		width: 160px;
	}
	.hidden-contact {
		display: flex;
	}
	.hidden-list {
		display: none;
		padding: 1em;
	}
	button:active {
		border: none;
	}
	.hidden-arrow {
		display: block;
		margin: 0;
		padding: 0;
		border: none;
		background-color: #fff;
	}
	.hidden-arrow>svg {
		fill: #6d6d6d;
		width: 30px;
		height: 30px;
	}
	.drop:hover .hidden-list {
		display: block;
		position: absolute;
		right: 0;
		background-color: #fff;
		z-index: 1;
        text-align: center;
        border-radius: 10px;
		box-shadow: 1px 1px 5px 0 #cccccc;
	}
	.contact-link {
		font-family: Proxima Nova ExBld;
		font-size: 18px;
		color: #015495;
		line-height: 1.1;
	}
	.contact-link a {
		color: #000;
	}
	.hidden-header span {
		font-family: Proxima Nova Rg;
		color: #000;
	}
}
@media (max-width: 420px){
	.contact-link {
		font-size: 15px;
	}
	.head span {
		font-size: 10px;
	}
}
/* End - Скрытая шапка для мобильных устройств */
.quality {
	margin:0 auto;
	font-family: Impact;
	font-size: 24px;
	font-weight: normal;
	text-align: center;
	color: #ffffff;
	text-shadow: #000 2px 2px 3px;
	margin-bottom: 1rem;
	margin-top: 1rem;
}
.bottom-top {
	margin-bottom: 2rem;
}
.cost {
	font-family: Proxima Nova ExBld;
	font-size: 46px;
	line-height: 1.15;
}
.cost p {
	font-family: Proxima Nova Rg;
    font-size: 22px;
	margin-top: 30px;
}
.cost>span {
	text-transform: uppercase;
}
.price-btn {
	padding: 13px 30px;
	border-radius: 4px;
	background-color: #015495;
	color: #fff;
    font-weight: bold;
	font-size: 14px;
    text-transform: uppercase;
	font-family: Proxima Nova ExBld;
	text-decoration:none;
	padding: 10px 25px 8px 25px;
    border: 1px solid #000;
	transition: 0.2s;
    text-shadow: #000 1px 1px 3px;
}
.price-btn:hover {
	background-color: #00b5e7;
    color: #fff;
}
.polygon {
	background: #015495;
    color: #fff;
    text-shadow: #000 1px 1px 1px;
    padding: 10px;
    margin-bottom: 10px;
	font-weight: bold;
}
.t-polygon {
	background-color: rgba(1,84,149,0.1);
}
.quest {
	font-family: Proxima Nova Rg;
	font-size: 42px;
	font-weight: 300;
	line-height: 1;
	color: #000000;
}
.quest p {
	font-family: Proxima Nova Rg;
	font-size: 120%;
	font-weight: 600;
	line-height: 0.88;
	color: #000000;
	margin: 25px 0;
}
.quest a {
	color: #000000;
}
@media (min-width: 992px) and (max-width: 1199px) {
	.quest {
		font-size: 30px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.quest {
		font-size: 20px;
	}
}
@media (max-width: 767px) {
	.quest {
		font-size: 30px;
	}
}
.person {
	font-size: 13px;
}
.person input {
	margin-left: 20px;
}
.mng-background {
	background:url(../image/background-b.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center top;
	background-attachment:fixed;
}
.contact-mng {
	background-color:rgba(255,255,255,0.9);
	border-radius:20px;
	margin:30px;
}
.logo-fluid {
	max-width: 100%;
}
.img-title {
	width: 70%;
	border-radius: 10px;
	padding: 0px 0;
	margin-bottom: 1rem;
	margin-top: 1rem;
}
.img-title svg {
	max-height:400px;
	max-width:400px;
	fill:#00b5e7;
}
.product-img {
	max-width: 100%;
	padding: 5px;
} 
.row .polygon {
	display: flex;
    align-items: center;
}
.klient-text {
	text-align: center;
	font-size: 1.1rem;
	font-weight: 600;
}
.klient-block {
    display: grid;
	grid-template-columns: repeat(9, 1fr);
}
.klient-item {
	border-radius: 10px;
    background: #fff;
    margin: 5px;
}
.klient {
	max-width: 100%;
	padding: 10px;
}
.about-product {
	font-size: 14px;
	font-weight: 700;
}
/* .advantage {
	max-width: 60px;
}
.advantage-title {
	font-size: 36px;
	font-weight: 700;
} */
.advantages-text {
	max-width: 340px;
	vertical-align: middle;
	margin-top: 0.5rem;
	padding-top: 10px;
}
.advantages {
	max-width: 60%;
	border-radius: 50%;
}
.delivery-image {
    max-width: 720px;
    margin-left: -80px;
	transition: margin-left 1s;
}
@media (max-width: 1700px) {
	.delivery-image {
		margin-left: -140px;
	}
}
@media (max-width: 1600px) {
	.delivery-image {
		margin-left: -180px;
	}
	.img-title svg {
		max-height:250px;
		max-width:250px;
	}
}
@media (max-width: 1500px) {
	.delivery-image {
		margin-left: -220px;
	}
}
@media (max-width: 1400px) {
	.delivery-image {
		margin-left: -260px;
	}
}
@media (max-width: 1300px) {
	.delivery-image {
		margin-left: -300px;
	}
	.pdf-ankets {
		font-size: 0.9rem;
	}
}
@media (max-width: 1200px) {
	.delivery-image {
		margin-left: -330px;
	}
}
@media (max-width: 1050px) {
	.delivery-image {
		margin-left: -360px;
	}
}
.checkbox-list {
	list-style: none;
    margin: 0;
    padding: 0;
    padding-left: 3em;
}
.checkbox-list__item {
    position: relative;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}
.checkbox-list__item::before {
	position: absolute;
    content: url(../image/check.svg);
    left: -38px;
}
.partners {
    display: grid;
	grid-template-columns: repeat(4, 1fr);
	justify-content: space-around;
    align-items: center;
	justify-items: center;
}
.partners-image {
	max-width: 100%;
}
.doc-block {
	width: 100%;
}
.pdf-documents {
	display: flex;
	justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid #eee;
}
.pdf-icon {
    width: 24px;
    filter: grayscale(60%);
    transition: all 0.3s ease;
} 
.small {
    color: #666;
	transform: scale(1.05);
}
.pdf-documents .d-flex:hover .pdf-icon {
    filter: none;
    transform: scale(1.05);
}
.pdf-documents a:hover .small {
    color: #000;
    text-decoration: none;	
}
.pdf-documents a {
    color: inherit;
    text-decoration: none;
}
.pdf-ankets {
	display: flex;
	justify-content: space-around;
    padding: 10px 0;
	font-size: 1rem;
}
.anketa-item {
	margin-right: 1rem;
}
.pdf-ankets .pdf-icon {
	width: 70px;
	margin-bottom: 1rem;
}
.anketa {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.pdf-ankets .anketa {
	color: #666;
	transform: scale(1.05);
}
.pdf-ankets .d-flex:hover .pdf-icon {
    filter: none;    
}
.pdf-ankets .anketa:hover {
    color: #000;
    text-decoration: none;
	transform: scale(1.05);
}
.pdf-ankets a {
    text-decoration: none;
}
.photo-6 {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
}
.photo-9 {
	display: grid;
	grid-template-columns: repeat(9, 1fr);
}
@media (max-width: 767px) {
	.photo-6 {
		grid-template-columns: repeat(3, 1fr);
	}
	.photo-9 {
		grid-template-columns: repeat(3, 1fr);	
	}
}
.img-fluid {
	margin-top: 20px;
}
.btn-light {
	border-color: #00b5e7!important;
}
.btn-light:hover {
	background-color: #00b5e7!important;
	color:#fff;
	text-shadow: #000 0.5px 0.5px 2px;
}
.row {
	align-items: center;
}
.black-bgr {
	background-color: rgba(0, 0, 0, 0.3);
    max-width: 100%;
    min-height: 89vh;
}
@media (max-width: 1300px) {
	.pdf-ankets {
		font-size: 0.9rem;
	}
}
@media (max-width: 1199px) {
	.advantages {
		max-width: 40%;
	}
	.table_c {
	   font-size: 17px;
	}
	.order {
		padding: 10px 0 8px;
	}
	.pdf-ankets {
		font-size: 0.8rem;
	}
}
@media (max-width: 992px) {
	.table_c {
		font-size: 13px;
	}
	.order {
		padding: 8px 10px 5px;
		font-size: 9px;
	}
	.mainSiteLink {
		font-size: .8rem;
	}
}
@media (max-width: 991px) {
	.fix-top{
		display: none;	
	}
	.cost {
		font-size: 32px;
	}
	.img_title_top {
		font-size: 40px;
	}
	.img_title_bottom {
		font-size: 30px;
	}
	.img-title{
		margin-top: 1rem;
		margin-bottom: 1rem;
	}
	.quality {
		margin-bottom: 1rem;
	}
	.logo-im {
		max-width: 50%;
	}
	.head_img {
		min-height: auto;
	}
	.button {
		width: auto;
		height: auto;
		padding: 15px;
	}
	.f {
		font-size: 14px;
	}
	.polygon {
		font-size: 12px;
		display: flex;
		align-items: center;
	}
	.schedule {
		font-size: 14px;
	}
	.klient-block {
		grid-template-columns: repeat(6, 1fr);
	}
	.pdf-icon {
		right: 71px;
	}
	.about-product {
		font-size: 12px;
	}
	.black-bgr {
		min-height: min-content;
	}
	.product-image {
		padding: 1em;
	}
	/* .product-name {
		text-align: left;
	} */
    .description-text {
	  text-align: left;
    }
	.advantages-item {
		padding-inline: 5px;
	}
	.advantages {
		max-width: 50%;
	}
	.pdf-ankets {
		font-size: 0.6rem;
	}
}
@media (max-width: 767px) {
	.logo-fluid {
		padding-top: 0;
	}
	.logo-im {
		padding-top: 0;
	}
	.name {
		text-align: center;
	}
	.table_c {
	   text-align: center;
	}
	.advantages {
		max-width: 90%;
	}
	.advantages-text {
		font-size: 10px;
	}
	.description-text {
		font-size: 0.9em;
		font-family: 'Proxima Nova Rg';
		font-weight: 600;
		padding-top: 0;
	}
    .col-6.col-md-2 {
        margin-bottom: 30px;
    }
    .custom-table {
        padding: 15px;
    }    
    .table-header th,
    .custom-table td {
        padding: 10px 15px;
        font-size: 0.9rem;
    } 
    .pre-table-text .info-text {
        font-size: 0.9rem;
    }    
    .post-table-text .info-note {
        font-size: 0.8rem;
        padding-left: 10px;
    }
	.klient-block {
		grid-template-columns: repeat(4, 1fr);
	}	
	.description {
      /* max-height: 110px; */
	  margin-bottom: 0.5em;
	}
    .pdf-documents {
      padding: 0;
      margin: 0.8em 0;
      border-top: none;
	  flex-wrap: wrap;
	  justify-content: center;
    } 
    .pdf-documents .d-flex {
      padding: 5px;
    }    
    .pdf-icon {
      width: 20px;
    }    
    .pdf-documents .small {
      font-size: 0.7rem;
      line-height: 1.2;
    }
	.pdf-ankets {
		font-size: 0.8rem;
		padding: 0;
		margin: 0.8em 0;
		border-top: none;
		flex-wrap: wrap;
		justify-content: flex-start;
    }	
	.anketa-item {
		margin-right: 0;
		margin-bottom: 1rem;
	}	
	.anketa {
		flex-wrap: nowrap;
		/* align-items: center;
		justify-content: center; */
	}
    .pdf-ankets .pdf-icon {
      width: 40px;
	  height: 40px;
	  margin-bottom: 0;
	  margin-right: 0.3rem;
    }    
    .pdf-ankets .anketa {
      line-height: 1.2;
	  padding: 5px;
    }
	.about-product .row {
		align-items: center;
	}
	.mng-background {
		background-attachment: local;
	}
	.product-name {
		text-align: center;
	}
	.product-name img {
		max-width: 60%;
	}
	.f {
		font-size: 24px;
	}
	.schedule {
		font-size: 18px;
	}
    .application-item {
        padding-left: 100px;
        min-height: 100px;
    }    
    .application-img {
        width: 100px;
    }
	.mainSiteLink {
		font-size: .7rem;
	}
}

@media (max-width: 575px) {
	.img_title_top {
		font-size: 34px;
		margin-bottom: 1rem;
	}
	.img_title_bottom {
		font-size: 28px;
	}
	.name {
		text-align: center;
	}
	.using {
		max-width: 100%;
	}
	.klient {
		max-width: 100%;
	}
	.advantage {
		max-width: 70px;
	}
	.advantage-text {
		max-width: 170px;
	}
	.advantages {
		padding: 0;
		margin: 10px 0 5px;
	}
	.advantages-text {
		font-size: 12px;
	}
	.pdf {
		font-size: 10px;
	}
	.pdf-doc {
		max-width: 70px;
	}
	.pdf-icon {
		height: 20px;
		bottom: 77px;
		right: 24px;
	}
	.img-fluid {
		padding-top: 0;
	}
	.text-left-xs {
		text-align: left;
	}
	.about-product {
		font-size: 14px;
	}
	.logo-fluid {
		width: 160px;
	}
}
@media (min-width: 361px) and (max-width: 490px){
	.pdf {
		font-size: 12px;
	}
	.pdf-icon {
		bottom: 77px;
		right: 35px;
	}
}