.bd-placeholder-img {
	font-size: 1.125rem;
	text-anchor: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
  }

  @media (min-width: 768px) {
	.bd-placeholder-img-lg {
	  font-size: 3.5rem;
	}
 }

  .b-example-divider {
	height: 3rem;
	background-color: rgba(0, 0, 0, .1);
	border: solid rgba(0, 0, 0, .15);
	border-width: 1px 0;
	box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
  }

  .b-example-vr {
	flex-shrink: 0;
	width: 1.5rem;
	height: 100vh;
  }

  .bi {
	vertical-align: -.125em;
	fill: currentColor;
  }

  .nav-scroller {
	position: relative;
	z-index: 2;
	height: 2.75rem;
	overflow-y: hidden;
  }

  .nav-scroller .nav {
	display: flex;
	flex-wrap: nowrap;
	padding-bottom: 1rem;
	margin-top: -1px;
	overflow-x: auto;
	text-align: center;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
  }

  .responsive {
    width: 100%;
    max-width: 600px;
    height: auto;
}  
.alert{
	color:red;
}

.form-group{
	margin: 10px 0;
}

.form-group input{
	width:250px;height: 25px;border-radius:3px;
}

a.phone {
	color: #000000;
	text-decoration: none;
}
a:hover.phone {
	color: #028fb2;
}

a.up {
	color: #000000;
	text-decoration: none;
}	
a:hover.up {
	color: #028fb2;
}

/* стили для кнопок "подробнее" и "свернуть" */
.limited {
	max-height: 400px;
	overflow: hidden;
	position: relative;
}
.limited.l-200 {
	max-height: 200px;
}
.limited.l-100 {
	max-height: 100px;
}

.limited.l-300 {
	max-height: 300px;
}
.limited .bottom {
	position: absolute;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1) 80%);
	width: 100%;
	height: 60px;
	opacity: 1;
	transition: .3s;
}
.read-more-checker {
	opacity: 0;
	position: absolute;
}
.read-more-checker:checked ~ .limited {
	max-height: none;
}
.read-more-checker:checked ~ .limited .bottom {
	opacity: 0;
	transition: .3s;
}
.read-more-checker ~ .read-more-button:before {
	content: 'Подробнее »';
	color: #fff;
	font-size: 1.25rem;
	font-weight: 350;
}
.read-more-checker:checked ~ .read-more-button:before {
	content: 'Свернуть «';
	font-size: 1.25rem;
	font-weight: 300;
}
.read-more-button {
	cursor: pointer;
	display: inline-block;
	padding: 10px;
	border: 2px solid #ddd;
	border-radius: 4px;
	background-color: #038aa3;
}

.text-home{
	color: #5a5a5a;
}

a:hover.text-home{
	color: #5a5a5a;
	text-decoration: underline;
	text-decoration-style: solid;
  	text-decoration-color: #038aa3;
	text-decoration-thickness: 1.0px;
}
/* настройка стилей для слайдов карусели в home.html */
.home .carousel-item {
	min-height: 80vh;
	background-position: center;
	background-size: cover;
	position: relative;
}	

/* цвет ошибки для контактной формы */
.form-error {
    list-style: none;
    padding: 0;
    color: #CC0000;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	height: 72px;
	transition: all 0.5s;
	z-index: 997;
	transition: all 0.5s;
	background:rgba(21, 34, 43, 0.85);
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  
  #header .logo h1 {
	font-size: 30px;
	margin: 0;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 2px;
  }
  
  #header .logo h1 a,
  #header .logo h1 a:hover {
	color: #7a6960;
	text-decoration: none;
  }
  
  #header .logo img {
	padding: 0;
	margin: 0;
	max-width:160px
  }
  
  #main {
	margin-top: 72px;
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  .navbar {
	padding: 0;
  }
  
  .navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
  }
  
  .navbar li {
	position: relative;
  }
  
  .navbar a,
  .navbar a:focus {
	display: flex-start;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 10px 30px;
	font-size: 15px;
	color:#fff;
	white-space: nowrap;
	transition: 0.3s;
  }
  
  .contactos a{
	color:#06b5d4;
  }

  /* .navbar.contactos a:hover{
	color:rgb(1, 246, 75);
  } */

  .navbar a i,
  .navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
  }
  
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
	color: #06abd4;
  }
  
    
  .navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: rgba(21, 34, 43, 0.85);
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
  }
  
  .navbar .dropdown ul li {
	min-width: 200px;
  }
  
  .navbar .dropdown ul a {
	padding: 10px 20px;
	font-size: 15px;
	text-transform: none;
  }
  
  .navbar .dropdown ul a i {
	font-size: 12px;
  }
  
  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
	color: #06abd4;
  }
  
  .navbar .dropdown:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
  }
  
  .navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
  }
  
  .navbar .dropdown .dropdown:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
  }
  
  @media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
	  left: -90%;
	}
  
	.navbar .dropdown .dropdown:hover>ul {
	  left: -100%;
	}
  }
  
  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
	color:#fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
  }
  
  .mobile-nav-toggle.bi-x {
	color: #fff;
  }
  
  @media (max-width: 991px) {
	.mobile-nav-toggle {
	  display: block;
	}
  
	.navbar ul {
	  display: none;
	}
  }
  
  .navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(101, 105, 109, 0.85);
	transition: 0.3s;
  }
  
  .navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
  }
  
  .navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
  }
  
  .navbar-mobile a,
  .navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #000000;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
	color: #07abb4;
  }
  
  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
	margin: 15px;
  }
  
  .navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(161, 140, 127, 0.25);
  }
  
  .navbar-mobile .dropdown ul li {
	min-width: 200px;
  }
  
  .navbar-mobile .dropdown ul a {
	padding: 10px 20px;
  }
  
  .navbar-mobile .dropdown ul a i {
	font-size: 12px;
  }
  
  .navbar-mobile .dropdown ul a:hover,
  .navbar-mobile .dropdown ul .active:hover,
  .navbar-mobile .dropdown ul li:hover>a {
	color: #07abb4;
  }
  
  .navbar-mobile .dropdown>.dropdown-active {
	display: block;
  }
  
  /*--------------------------------------------------------------/


/* шрифты для products*/
.text-blue {color: #04b699;}

.text-white1{color: #fff !important;}

.thin {
    font-weight: 400;
    text-transform: uppercase;
	color: #000;
}

.text-grey {color: #aab1b3;}

.lead-product{
	font-size: 1.25rem;
	font-weight: 350;
  }
/* grey block forming*/
.light-grey {
    background-color: #eaeaeb !important;
} 
.container-fluid1 {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;}

	.dce_trenner_extra_klein
	{
	  height: 3.25rem;
	}

.icon {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	width:145px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
	  transition-delay: 0 !important;
	}
  }

/*--------------------------------------------------------------
# partners
--------------------------------------------------------------*/
.partners {
	padding: 15px 0;
	text-align: center;
  }
  
  .partners img {
	max-width: 85%;
	transition: all 0.4s ease-in-out;
	display: inline-block;
	padding: 15px 0;
  }
  
  .partners img:hover {
	transform: scale(1.4);
  }
  
  @media (max-width: 768px) {
	.partners img {
	  max-width: 85%;
	}
  }

/*--------------------------------------------------------------
# надпись большая
--------------------------------------------------------------*/

.text-light-grey{
	color:#d2d3d5;
}
 @media (min-width: 768px) {
	h2.huge{
		hyphens:auto;
	}
}

@media (min-width: 576px) {
h2.huge{
	font-size: 4rem;
		 line-height: 3.12rem;
	}
}

.text-grey-light {
	color: #aab1b3;
}
@media (min-width: 768px){
	h2.huge{
		hyphens:auto;
	}
}
@media (min-width: 576px){
	h2.huge{
		font-size: 4rem;
			 line-height: 3.12rem;
		}
}
/*-------------------------------------------------------------- */

/*--------------------------------------------------------------
# Confirmation letters
--------------------------------------------------------------*/
  
  .section-bg {
	background-color: #f5f5ff;
  }
  
  .section-title {
	padding-bottom: 40px;
  }
  
  .section-title h2 {
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	line-height: 1px;
	margin: 0 0 5px 0;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #010483;
	font-family: "Poppins", sans-serif;
  }
  
  .section-title h2::after {
	content: "";
	width: 140px;
	height: 1px;
	display: inline-block;
	background: #00e9c6;
	margin: 4px 10px;
  }
  
  .title-letters {
	margin: 0;
	margin: 0;
	font-weight: 700;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
	
  } 
.letters{
color:aliceblue;
}
/*--------------------------------------------------------------
#  Section Confirmation letters
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
	padding: 0 0 20px 0;
	margin: 0 auto;
	list-style: none;
	text-align: center;
  }
  
  .portfolio .portfolio-flters li {
	cursor: pointer;
	display: inline-block;
	padding: 0;
	font-size: 18px;
	font-weight: 500;
	margin: 0 10px;
	line-height: 1;
	transition: all 0.3s ease-in-out;
  }
  
  .portfolio .portfolio-flters li:hover,
  .portfolio .portfolio-flters li.filter-active {
	color: var(--color-primary);
  }
  
  .portfolio .portfolio-flters li:first-child {
	margin-left: 0;
  }
  
  .portfolio .portfolio-flters li:last-child {
	margin-right: 0;
  }
  
  @media (max-width: 575px) {
	.portfolio .portfolio-flters li {
	  font-size: 14px;
	  margin: 0 5px;
	}
  }
  
  .portfolio .portfolio-wrap {
	box-shadow: 0 0 25px rgb(87 107 110 / 32%);
	border-radius: 10px;
	height: 100%;
	overflow: hidden;
  }
  
  .portfolio .portfolio-wrap img {
	transition: 0.3s;
	position: relative;
	z-index: 1;
  }
  
  .portfolio .portfolio-wrap .portfolio-info {
	padding: 25px 20px;
	background-color: #1e7686;
	position: relative;
	border-top: 1px solid #f3f3f3;
	z-index: 2;
  }
  
  .portfolio .portfolio-wrap .portfolio-info h4 {
	font-size: 18px;
	font-weight: 600;
	padding-right: 50px;
  }
  
  .portfolio .portfolio-wrap .portfolio-info h4 a {
	color: var(--color-default);
	transition: 0.3s;
  }
  
  .portfolio .portfolio-wrap .portfolio-info h4 a:hover {
	color: var(--color-primary);
  }
  
  .portfolio .portfolio-wrap .portfolio-info p {
	color: #fff;
	font-size: 14px;
	margin-bottom: 0;
	padding-right: 50px;
  }
  
  .portfolio .portfolio-wrap:hover img {
	transform: scale(1.3);
  }
  
  /*--------------------------------------------------------------
  # Portfolio Details Section
  --------------------------------------------------------------*/
  .portfolio-details .portfolio-details-slider img {
	width: 100%;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: rgba(255, 255, 255, 0.7);
	opacity: 1;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--color-primary);
  }
  
  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
	width: 48px;
	height: 48px;
  }
  
  .portfolio-details .swiper-button-prev:after,
  .portfolio-details .swiper-button-next:after {
	color: rgba(255, 255, 255, 0.8);
	background-color: rgba(0, 0, 0, 0.2);
	font-size: 24px;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
  }
  
  .portfolio-details .swiper-button-prev:hover:after,
  .portfolio-details .swiper-button-next:hover:after {
	background-color: rgba(0, 0, 0, 0.6);
  }
  
  @media (max-width: 575px) {
  
	.portfolio-details .swiper-button-prev,
	.portfolio-details .swiper-button-next {
	  display: none;
	}
  }
  
  .portfolio-details .portfolio-info h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
  }
  
  .portfolio-details .portfolio-info h3:after {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: var(--color-primary);
	left: 0;
	bottom: 0;
  }
  
  .portfolio-details .portfolio-info ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
  }
  
  .portfolio-details .portfolio-info ul li {
	display: flex;
	flex-direction: column;
	padding-bottom: 15px;
	font-size: 16px;
  }
  
  .portfolio-details .portfolio-info ul strong {
	text-transform: uppercase;
	font-weight: 400;
	color: #9c9c9c;
	font-size: 12px;
  }
  
  .portfolio-details .portfolio-info .btn-visit {
	padding: 8px 40px;
	background: var(--color-primary);
	color: #fff;
	border-radius: 50px;
	transition: 0.3s;
  }
  
  .portfolio-details .portfolio-info .btn-visit:hover {
	background: #009d8b;
  }
  
  .portfolio-details .portfolio-description h2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
  }
  
  .portfolio-details .portfolio-description p {
	padding: 0;
  }
  
  .portfolio-details .portfolio-description .testimonial-item {
	padding: 30px 30px 0 30px;
	position: relative;
	background: white;
	height: 100%;
	margin-bottom: 50px;
  }
  
  .portfolio-details .portfolio-description .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 50px;
	border: 6px solid #fff;
	float: left;
	margin: 0 10px 0 0;
  }
  
  .portfolio-details .portfolio-description .testimonial-item h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 15px 0 5px 0;
	padding-top: 20px;
  }
  
  .portfolio-details .portfolio-description .testimonial-item h4 {
	font-size: 14px;
	color: #6c757d;
	margin: 0;
  }
  
  .portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
  .portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
	color: #009d8b;
	font-size: 26px;
	line-height: 0;
  }
  
  .portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
  }
  
  .portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
	transform: scale(-1, -1);
  }
  
  .portfolio-details .portfolio-description .testimonial-item p {
	font-style: italic;
	margin: 0 0 15px 0 0 0;
	padding: 0;
  }
  
  
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
	padding: 140px 0 60px 0;
	min-height: 50vh;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
 } 
  .breadcrumbs:before {
	content: "";
	background-color: rgba(0, 0, 0, 0.6);
	position: absolute;
	inset: 0;
 }
  
  .breadcrumbs h2 {
	font-size: 46px;
	font-weight: 400;
	color: #fff;
	font-family: var(--font-secondary);
  }
  
  .breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0 0 10px 0;
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--color-primary);
  }
  
  .breadcrumbs ol a {
	color: rgba(255, 255, 255, 0.8);
	transition: 0.3s;
  }
  
  .breadcrumbs ol a:hover {
	text-decoration: underline;
  }
  
  .breadcrumbs ol li+li {
	padding-left: 10px;
  }
  
  .breadcrumbs ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: #fff;
	content: "/";
  }

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
	box-shadow: 0 0 25px rgb(87 107 110 / 32%);
	padding: 20px 0 30px 0;
  }
  
  .contact .info-item i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	font-size: 24px;
	line-height: 0;
	color: var(--color-primary);
	border-radius: 50%;
	border: 2px dotted #28b6be;
  }
  
  .contact .info-item h3 {
	font-size: 20px;
	color: #6c757d;
	font-weight: 700;
	margin: 10px 0;
  }
  
  .contact .info-item p {
	padding: 0;
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
  }
  
   
  @keyframes animate-loading {
	0% {
	  transform: rotate(0deg);
	}
  
	100% {
	  transform: rotate(360deg);
	}
  }

 
