/*---------------Розмітка 3-х колоночного сайту---------------*/
/*
#navigation {grid-area: navigation}
#header {grid-area: header}
#content {grid-area: main-content}
#sidebar-left {grid-area: sidebar-left}
#sidebar-right {grid-area: sidebar-right}
#footer {grid-area: footer}

body {
    display: grid;
    grid-template-rows: 55px auto auto auto;
    grid-template-columns: auto auto auto;
    grid-gap: 0px;
    align-items: center;
    grid-template-areas:
        "navigation navigation navigation"
        "header header header"
        "main-content main-content main-content"
        "footer footer footer"
}
*/
/*---------------Кінець розмітки 3-х колоночного сайту---------------*/

/*
.grid-item{
    background-color: yellowgreen;
    border: green solid 1px;
}
*/

body {
  font-family: 'Roboto', 'Open Sans', sans-serif;
  font-size: 16px;
  color: #2a2a2a;
  text-align: justify;
  line-height: 1.5;
  background: url(../img/background.jpg);
  background-attachment: fixed;
  background-color: #fff;
}

p {
    font-size: 1.1rem;
}

h1 {
    margin-bottom: 0.8rem;
	color: #2e59a3;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}

h2 {
	color: #2e59a3;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
}

a {
	outline: none;
}

table {
    border-collapse: collapse;
    font-size: 1.1rem;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 7%;
  padding-left: 7%;
  margin-right: auto;
  margin-left: auto;
}

.section-full, .section {
    margin-top: 30px;
	padding: 30px 15px;
	background: url(../img/bg-section.jpg);
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.section {
	border: 5px solid #2e59a3;
	border-radius: 10px;
}

.img-left {
    margin-top: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
	float: left;
}

.img-right {
	margin: 10px;
	float: right;
}

@media (max-width: 767px) {
	.img-right, .img-left {
		display: block;
		float: none;
		margin-left: auto;
    	margin-right: auto;
	}
}

.equipment {
    text-align: center;
}

.philips img {
    display: inline-block;
    margin: 15px;
    vertical-align: middle;
}

@media (max-width: 767px) {
	.philips img {
		width: 90%;
	}
}


.ps {
	font-size: 16px;
	font-style: italic;
}

.note-orange {
	border-left: solid 8px #ED6F02;
}

.note-orange p {
	margin-left: 2%;
}

.note-blue {
	margin-top: 15px;
    background-color: rgba(102,153,255,0.3);
	border-radius: 10px;
}

.note-blue p, .note-blue a:visited {
	padding: 15px 15px 15px 30px;
	color: #214468;
}

.note-blue a {
    text-decoration: none;
}

.note-blue a:hover {
    text-decoration: underline;
}

.section-title {
	margin-top: 30px;
	padding: 5px;
	background-color: #2e59a3;
	border-top-right-radius: 15px;
	border-top-left-radius: 15px;
	box-shadow: 0 -5px 10px -2px rgba(0,0,0,0.5);
}

.section-title h2 {
	color: white;
	font-weight: normal;
	text-align: left;
	margin-left: 5%;
	padding-top: 2px;
}

.section-content {
	margin-bottom: 30px;
	padding: 15px;
	border: 5px solid #2e59a3;
	border-top: 0;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	background: url(../img/bg-section.jpg);
	box-shadow: 0 5px 10px -2px rgba(0,0,0,0.5);
}

.section-title-red {
	margin: 0;
	padding: 5px;
	background-color: #ff0000;
	border-top-right-radius: 15px;
	border-top-left-radius: 15px;
	box-shadow: 0 -5px 10px -2px rgba(0,0,0,0.5);
}

.section-title-red h2 {
	color: white;
	font-weight: normal;
	text-align: left;
	margin-left: 5%;
	padding-top: 2px;
}

.section-content-red {
	margin-bottom: 30px;
	padding: 15px;
	border: 5px solid #ff0000;
	border-top: 0;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	background-color: #be413e;
	color: white;
	box-shadow: 0 5px 10px -2px rgba(0,0,0,0.5);
}

.fancybox-kinoplivki-8mm, .fancybox-photo {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 5px;
/*    align-content: center; */
    justify-content: center;
}

.fancybox-kinoplivki-8mm a, .fancybox-photo a {
    display: flex;
    margin: 0 10px 10px 0;
    border: solid #2e59a3;
    border-radius: 8px;
    padding: 5px;
}

.fancybox-photo img {
    margin: auto;
}

.fancybox-kinoplivki-8mm img, .fancybox-photo img {
    width: 200px;
}

.akcent-red {
    border: solid red;
    border-radius: 8px;
    font-size: 1.4rem;
    color: red;
    font-weight: bold;
    text-align: center;
}

.akcent-orange {
    font-size: 1.4rem;
    color: #ED6F02;
    font-weight: bold;
}

.akcent-blue {
    font-weight: bold;
    color: #2e59a3;
}

img .imax {
    vertical-align: inherit;
}

figure {
    margin: 10px;
    padding: 10px;
}

figcaption {
    font-style: italic;
}


.contact-area {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

@media (max-width: 991px) {
	.contact-area {
        display: block;
    }
}

.adress, .schedule {
    border: 5px solid #2e59a3;
	border-radius: 15px;
    margin-top: 30px;
    padding: 15px;
}

.adress {
    width: 55%;
}

.schedule {
    display: flex;
    width: 43%;
    justify-content: center;
}

.schedule-text {
    align-self: center;
}

.underline {
    text-decoration: underline;
}

@media (max-width: 991px) {
	.adress, .schedule {
        width: 95%;
    }
}

.np-area {
    display: flex;
}

@media (max-width: 991px) {
	.np-area {
        display: block;
    }
}

.np-map, .np-text-area {
    margin: auto;
}

.np-map {
    width: 39%;
}

.np-text-area {
    width: 59%;
}

@media (max-width: 991px) {
	.np-map, .np-text-area {
        width: 95%;
    }
}
@media (max-width: 991px) {
	.np-map {
        text-align: center;
    }
}

/*---------- Clear float for part "diametr"------------*/

.diametr-text::before,
.diametr-text::after {
  content: "";
  display: table;
}
.diametr-text::after {
  clear: both;
}
.diametr-text {
  clear: both;
  *zoom: 1;
}
/*---------// Clear float for part "diametr"------------*/


.diametr-table-8mm, .diametr-table-16mm, .diametr-table-35mm {
    display: inline-block;
    margin: 0 1.5%;
    width: 30%;
    vertical-align: top;
}

@media (max-width: 992px) {
  .diametr-table-8mm, .diametr-table-16mm, .diametr-table-35mm {
    width: 45%;
  }
}

@media (max-width: 992px) {
  .diametr-table-35mm {
    width: 97%;
  }
}

@media (max-width: 768px) {
  .diametr-table-8mm, .diametr-table-16mm, .diametr-table-35mm {
    width: 97%;
  }
}


/*-----------Оформлення нумерованих списків-------------*/
.list-counter-circle {
  list-style: none;
  counter-reset: list;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.list-counter-circle>li {
  position: relative;
  display: block;
  height: 2rem;
  line-height: 2rem;
  margin-left: 1.75rem;
  margin-bottom: .25rem;
  padding-left: 1rem;
  padding-right: .5rem;
  color: #fff;
  background: #2e59a3;
  white-space: nowrap;
  border-radius: .25rem;
}
.list-counter-circle>li:last-child {
  margin-bottom: 0;
}
.list-counter-circle>li::before {
  content: counter(list);
  counter-increment: list;
  position: absolute;
  left: -2rem;
  top: -.25rem;
  bottom: -.25rem;
  width: 2.5rem;
  line-height: 2rem;
  border-radius: 1.25rem;
  border: .25rem solid #f4f4ec;
  text-align: center;
  color: #fff;
  background: #2e59a3;
}


/*------------------Шапка--------------------------*/
.section-header {
    margin-top: 55px;
    height: auto;
	background: url(../img/bg-header.jpg);
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

#header-title {grid-area: header-title}
#header-image {grid-area: header-image}
#header-kontakt {grid-area: header-kontakt}

.grid-header {
    display: grid;
    grid-template-columns: 350px auto 250px;
    align-items: center;
	justify-items: center;
	grid-template-areas:
	    "header-title header-image header-kontakt"
}

@media (max-width: 991px) {
	.grid-header {
		grid-template-columns: 350px auto;
        grid-template-rows: 150px;
		grid-template-areas:
			    "header-title header-image"
			    "header-kontakt header-image"
	}
}

@media (max-width: 767px) {
	.grid-header {
		grid-template-columns: 350px;
		justify-content: center;
		grid-template-areas:
			    "header-title"
			    "header-image"
			    "header-kontakt"
	}
}

.header-digit {
	font-size: 44px;
	font-weight: bold;
    line-height: 1.2;
	color: #ED6F02;
	text-transform: uppercase;
	text-align: left;
}

@media (max-width: 767px) {
	.header-digit {
		text-align: center;
	}
}

.header-digit-items, .akcent-contacts {
	font-size: 32px;
	font-weight: bold;
	color: #2e59a3;
}

@media (max-width: 767px) {
	.header-digit-items {
		text-align: center;
	}
}

.header-image {
	text-align: center;
}

.header-tel {
	font-size: 33px;
	font-weight: bold;
	color: #ED6F02;
	text-align: right;
}

@media (max-width: 991px) {
	.header-tel {
		text-align: left;
	}
}

@media (max-width: 767px) {
	.header-tel {
		text-align: center;
	}
}

.header-adress {
	font-size: 20px;
	font-weight: bold;
	color: #2e59a3;
	text-align: right;
}

@media (max-width: 991px) {
	.header-adress {
		text-align: left;
        padding-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.header-adress {
		text-align: center;
	}
}
/*---------------//Шапка------------------------*/

/*-----------------Блок Якість------------------*/
.quality-title {grid-area: quality-title}
.quality-image {grid-area: quality-image}
.quality-text {grid-area: quality-text}

.quality {
	display: grid;
	grid-template-columns: 200px auto auto;
	grid-gap: 20px;
	align-items: center;
	grid-template-areas:
	    "quality-title quality-image quality-text"
	    "quality-title quality-image quality-text"
	    "quality-title quality-image quality-text"
}

@media (max-width: 991px) {
	.quality {
		grid-template-columns: 270px auto auto;
		grid-template-areas:
			    "quality-title quality-text quality-text"
			    "quality-image quality-text quality-text"
			    "quality-image quality-text quality-text"
	}
}

@media (max-width: 767px) {
	.quality {
		grid-template-columns: 200px auto auto;
		grid-template-areas:
			    "quality-title quality-title quality-title"
			    "quality-image quality-image quality-image"
			    "quality-text quality-text quality-text"
	}
}

.quality-title h2 {
	color: #2e59a3;
	text-align: right;
}

@media (max-width: 991px) {
	.quality-title h2 {
		text-align: center;
	}
}


.quality-image {
		justify-self: center;
}
/*-----------------//Блок Якість-------------------*/

/*--------------------Блок Опис--------------------*/
#dpi-items-photo {grid-area: photo}
#dpi-items-film {grid-area: film}
#dpi-items-doc {grid-area: doc}

.dpi-area {
    display: grid;
    grid-template-rows: auto auto auto;
    grid-template-columns: auto auto auto;
    grid-gap: 0px;
    align-items: center;
    grid-template-areas:
        "photo film doc"
        ". . ."
        ". . ."
}

@media (max-width: 576px) {
	.dpi-area {
		grid-template-areas:
			    ". photo ."
			    ". film ."
			    ". doc ."
	}
}

.dpi-title, .dpi-value {
	color: #ED6F02;
	font-weight: bold;
    text-align: center;
}

.dpi-value {
	font-size: 30px;
}
/*------------------//Блок Опис--------------------*/

/*------------------Блок Що цифруємо---------------*/



.what-digit-photo-block p {
	font-weight: bold;
	text-align: center;
}

.what-digit-photo-img img {
	display: block;
    margin: 0 auto;
}


/*-----------------// що цифруємо----------------*/

/*----------------------Ціни---------------------*/
.table-area {
    border: solid 5px #2e59a3;
	border-radius: 10px;
	margin-top: 30px;
	margin-bottom: 20px;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

.table th,
.table td {
  padding: 0.75rem;
/*  vertical-align: top;*/
  border-top: 1px solid #bdc7d1;
}

.col1 {
	width: 100%;
	vertical-align: middle;
}

.table-second-collumn {	
	text-align: center;
}

.col2 {
	text-align: center;
	vertical-align: middle;
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}
/*--------------------// Ціни---------------------*/

/*-----------------Підготовка фото---------------*/
.li-prepare {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.li-prepare::before {
    content: '\2714'; /* Добавляем маркер в шестнадцатеричном формате*/
    padding-right: 5px; /* Расстояние от маркеров до текста */
    font-weight: bold;
    color: #ED6F02; /* Маркеры красного цвета */
   }

/*--------------// Підготовка фото---------------*/

/*----------------Блок ІНФО ---------------------*/
.info {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 20px;
    margin-top: 30px;
}

@media (max-width: 991px) {
	.info {
		grid-template-columns: auto;
	}
}

.img-tel {
	margin: 10px;
	float: left;
}

.img-sejf {
	margin: 10px;
	float: right;
}

@media (max-width: 991px) {
	.img-sejf {
		float: left;
	}
}

@media (max-width: 575px) {
	.img-tel, .img-sejf {
		display: none;
	}
}

/*-----------------Футер------------------------*/

.section-footer {
	/*position: relative;*/
	margin-top: 30px;
	background: url(../img/bg-footer.jpg);
	height: auto;	
	/*border: solid red 1px;*/
}

.footer-content {
	display: grid;
	/*margin-top: 90px;*/
	grid-template-columns: 180px 280px;
	grid-column-gap: 50px;
	justify-content: center;
	/*border: solid red 1px;*/
}

@media (max-width: 767px){
	.footer-content {
		display: grid;
		grid-template-columns: 240px;
		/*grid-gap: 50px;*/
		justify-content: center;
	}
}

.footer-nav {
	/*display: block;*/
	width: 180px;
	margin: 80px auto;
	text-align: center;
	/*border: solid red 1px;*/
}

.footer-nav-list, .footer-info-list {
	list-style-type: none;
	padding: 0;
	/*border: solid red 1px;*/
}

.footer-nav-link, .footer-info-items {
	/*display: block;*/
	color: #707070;
	line-height: 30px;
	font-size: 16px;
	text-decoration: none;
}

.footer-nav-link:hover {
	font-weight: 600;
	color: #707070;
	text-decoration: none;
}

.footer-nav-link::after, .footer-info-items::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	transform: scaleX(1);
	background-color: #707070;
}

.footer-info {
	width: 240px;
	margin: 80px 0px 80px 100px;
	text-align: left;
	/*border: solid red 1px;*/
}

@media (max-width: 767px){
	.footer-info {
		margin: 0 0 80px 0;
		text-align: center;
	}
}

.footer-info-email:before {
 	content: "";
 	/*display: block;*/
 	background: url(../img/futer-fly.png) no-repeat;
 	width: 23px;
 	height: 17px;
 	float: left;
 	vertical-align: center;
 	margin: 7px 6px 0 0;
}

.footer-info-tel:before {
	content: "";
	/*display: block;*/
	background: url(../img/futer-phone.png) no-repeat;
	width: 23px;
	height: 17px;
	float: left;
	vertical-align: center;
	margin: 7px 6px 0 0;
}

.footer-info-adress:before {
	content: "";
	 /*display: block;*/
	 background: url(../img/futer-map.png) no-repeat;
	 width: 23px;
	 height: 17px;
	 float: left;
	 vertical-align: center;
	 margin: 7px 6px 0 0;
}

