@media only screen and (min-width: 1200px){
	/* КАРУСЕЛЬ */
	.carousel {
	  height: 900px;
	  background: black;
	}
	/* КАРУСЕЛЬ СЛАЙДЫ */
	.carousel .item {
	  height: 900px;
	  background-color: #777;
	  background-position: center;
	  background-repeat: no-repeat;
	  background-size: cover;
	}
	.carousel-fade .carousel-inner .item {
	  opacity: 0;
	  transition-property: opacity;
	  transition: 0.9s;
	}
	/*.carousel-fade .carousel-inner > .item:before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color:rgba(0, 0, 0, 1);
		transition: 0.1s;
	}		*/
	.carousel-fade .carousel-inner .active {
	  opacity: 1;
	  transition: 0.9s;
	}
	/*.carousel-fade .carousel-inner > .item.active:before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color:rgba(0, 0, 0, .0);
		transition: 0.1s;
	}		*/
	.carousel-fade .carousel-inner .active.left,
	.carousel-fade .carousel-inner .active.right {
	  left: 0;
	  opacity: 0;
	  z-index: 1;
	}
	.carousel-fade .carousel-inner .next.left,
	.carousel-fade .carousel-inner .prev.right {
	  opacity: 1;
	}
	.carousel-fade .carousel-control {
	  z-index: 2;
	} 
	@media all and (transform-3d), (-webkit-transform-3d) {
		.carousel-fade .carousel-inner > .item.next,
		.carousel-fade .carousel-inner > .item.active.right {
		  opacity: 0;
		  -webkit-transform: translate3d(0, 0, 0);
				  transform: translate3d(0, 0, 0);
				  
		}
		.carousel-fade .carousel-inner > .item.prev,
		.carousel-fade .carousel-inner > .item.active.left {
		  opacity: 0;
		  -webkit-transform: translate3d(0, 0, 0);
				  transform: translate3d(0, 0, 0);
		}	
		.carousel-fade .carousel-inner > .item.next.left,
		.carousel-fade .carousel-inner > .item.prev.right,
		.carousel-fade .carousel-inner > .item.active {
		  opacity: 1;
		  -webkit-transform: translate3d(0, 0, 0);
				  transform: translate3d(0, 0, 0);
		}
	} 	
	.carousel-inner > .item > img {
	  position: absolute;
	  top: 0;
	  left: 0;
	  min-width: 100%;
	  height: 500px;
	}
	.carousel .item .carousel-overlay {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: #000000;
		background: linear-gradient(90deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.40) 40%, rgba(0, 0, 0, 0) 100%);
		/*opacity: 1;*/
	}
	/* КАРУСЕЛЬ ИНФОРМАЦИОННАЯ ОБЛАСТЬ */
	.carousel-caption {
	  z-index: 10; /* Since positioning the image, we need to help out the caption */
	}
	.carousel-caption p {
		margin-bottom: 20px;
		font-size: 21px;
		line-height: 1.4;
	}
	.carousel-caption {
		position: absolute;
		right: 15%;
		top: 19%;
		left: 15%;
		z-index: 10;
		padding-top: 20px;
		padding-bottom: 20px;
		color: #fff;
		text-align: left;
		text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
	}
	.carousel-caption .h1 {
		font-size: 5.2em;
		font-weight: 700;
		line-height: 1.21;
		margin-top: 0px;
		margin-bottom: 0px;
	}
	.carousel-caption .h3 {
		font-size: 2.16em;
		font-weight: 600;
		line-height: 1.21;
		margin-top: 0px;
		margin-bottom: 1em;
		text-transform: uppercase;
	}
	.carousel-caption .p {
		font-size: 1.5em;
		font-weight: 400;
		line-height: 1.32
	}
	.carousel-caption .logo {
		margin-top: 2.5em;
		margin-bottom: 2.5em;
	}
	.carousel .item .buttons {
		margin-top: 12em;
	}
	.carousel .item .buttons ul {
		list-style: none;
		padding: 0;
	}
	.carousel .item .buttons ul li {
		display: inline-block;
		padding-right: 10px;
		
	}		
	.carousel .item .buttons .btn-primary,
	.carousel .item .buttons .btn-primary.focus,
	.carousel .item .buttons .btn-primary:active {
		color: #fff;
		padding: 16px 16px;
		font-size: 1em;
		font-weight: 500;	
		background-color: rgb(0 0 0 / 44%);
		border-radius: 7.5px;
		border: 1.27px solid #ffffff;
		transition: 0.5s;
	}
	.carousel .item .buttons .btn-primary:hover {
		color: #000000;
		background-color: rgb(255 255 255 / 90%);
		transition: 0.5s;
	}
	.carousel .item .subtitle {
		display: block;
		float: right;
		text-align:right;
	}
	.carousel .item .subtitle .h1 {
		font-size: 1.55em;
		font-weight: 700;
		line-height: 1.21;
		margin-top: 0px;
		margin-bottom: 0px;
		text-transform: uppercase;
	}
	.carousel .item .subtitle .h3 {
		font-size: 0.6em;
		font-weight: 500;
		line-height: 1.21;
		margin-top: 0px;
		margin-bottom: 1em;
		text-transform: uppercase;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1199.5px) {
	/* КАРУСЕЛЬ */
	.carousel {
	  height: 800px;
	  background: black;
	}
	/* КАРУСЕЛЬ СЛАЙДЫ */
	.carousel .item {
	  height: 800px;
	  background-color: #777;
	  background-position: center;
	  background-repeat: no-repeat;
	  background-size: cover;
	}
	.carousel-fade .carousel-inner .item {
	  opacity: 0;
	  transition-property: opacity;
	  transition: 0.9s;
	}
	.carousel-fade .carousel-inner .active {
	  opacity: 1;
	  transition: 0.9s;
	}
	.carousel-fade .carousel-inner .active.left,
	.carousel-fade .carousel-inner .active.right {
	  left: 0;
	  opacity: 0;
	  z-index: 1;
	}
	.carousel-fade .carousel-inner .next.left,
	.carousel-fade .carousel-inner .prev.right {
	  opacity: 1;
	}
	.carousel-fade .carousel-control {
	  z-index: 2;
	} 
	@media all and (transform-3d), (-webkit-transform-3d) {
		.carousel-fade .carousel-inner > .item.next,
		.carousel-fade .carousel-inner > .item.active.right {
		  opacity: 0;
		  -webkit-transform: translate3d(0, 0, 0);
				  transform: translate3d(0, 0, 0);
		}
		.carousel-fade .carousel-inner > .item.prev,
		.carousel-fade .carousel-inner > .item.active.left {
		  opacity: 0;
		  -webkit-transform: translate3d(0, 0, 0);
				  transform: translate3d(0, 0, 0);
		}
		.carousel-fade .carousel-inner > .item.next.left,
		.carousel-fade .carousel-inner > .item.prev.right,
		.carousel-fade .carousel-inner > .item.active {
		  opacity: 1;
		  -webkit-transform: translate3d(0, 0, 0);
				  transform: translate3d(0, 0, 0);
		}
	} 		
	.carousel-inner > .item > img {
	  position: absolute;
	  top: 0;
	  left: 0;
	  min-width: 100%;
	  height: 500px;
	}
	.carousel .item .carousel-overlay {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: #000000;
		background: linear-gradient(90deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.40) 40%, rgba(0, 0, 0, 0) 100%);
		/*opacity: 1;*/
	}
	/* КАРУСЕЛЬ ИНФОРМАЦИОННАЯ ОБЛАСТЬ */
	.carousel-caption {
	  z-index: 10; /* Since positioning the image, we need to help out the caption */
	}
	.carousel-caption p {
		margin-bottom: 20px;
		font-size: 21px;
		line-height: 1.4;
	}
	.carousel-caption {
		position: absolute;
        right: 5%;
        top: 17%;
        left: 5%;
		z-index: 10;
		padding-top: 20px;
		padding-bottom: 20px;
		color: #fff;
		text-align: left;
		text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
	}
	.carousel-caption .h1 {
		font-size: 5.2em;
		font-weight: 700;
		line-height: 1.21;
		margin-top: 0px;
		margin-bottom: 0px;
	}
	.carousel-caption .h3 {
		font-size: 2.16em;
		font-weight: 600;
		line-height: 1.21;
		margin-top: 0px;
		margin-bottom: 1em;
		text-transform: uppercase;
	}
	.carousel-caption .p {
		font-size: 1.5em;
		font-weight: 400;
		line-height: 1.32
	}
	.carousel-caption .logo {
		margin-top: 2.5em;
		margin-bottom: 2.5em;
	}
	.carousel .item .buttons {
		margin-top: 12em;
	}
	.carousel .item .buttons ul {
		list-style: none;
		padding: 0;
	}
	.carousel .item .buttons ul li {
		display: inline-block;
		padding-right: 10px;
		
	}	
	.carousel .item .buttons .btn-primary,
	.carousel .item .buttons .btn-primary.focus,
	.carousel .item .buttons .btn-primary:active {
		color: #fff;
		padding: 16px 16px;
		font-size: 1em;
		font-weight: 500;	
		background-color: rgb(0 0 0 / 44%);
		border-radius: 7.5px;
		border: 1.27px solid #ffffff;
		transition: 0.5s;
	}
	.carousel .item .buttons .btn-primary:hover {
		color: #000000;
		background-color: rgb(255 255 255 / 90%);
		transition: 0.5s;
	}
	.carousel .item .subtitle {
		display: block;
		float: right;
		text-align:right;
	}
	.carousel .item .subtitle .h1 {
		font-size: 1.55em;
		font-weight: 700;
		line-height: 1.21;
		margin-top: 0px;
		margin-bottom: 0px;
		text-transform: uppercase;
	}
	.carousel .item .subtitle .h3 {
		font-size: 0.6em;
		font-weight: 500;
		line-height: 1.21;
		margin-top: 0px;
		margin-bottom: 1em;
		text-transform: uppercase;
	}	
}
@media only screen and (min-width: 768px) and (max-width: 991.5px) {
	/* КАРУСЕЛЬ */
	.carousel {
	  height: 800px;
	  background: black;
	}
	/* КАРУСЕЛЬ СЛАЙДЫ */
	.carousel .item {
	  height: 800px;
	  background-color: #777;
	  background-position: center;
	  background-repeat: no-repeat;
	  background-size: cover;
	}
	.carousel-fade .carousel-inner .item {
	  opacity: 0;
	  transition-property: opacity;
	  transition: 0.9s;
	}
	.carousel-fade .carousel-inner .active {
	  opacity: 1;
	  transition: 0.9s;
	}
	.carousel-fade .carousel-inner .active.left,
	.carousel-fade .carousel-inner .active.right {
	  left: 0;
	  opacity: 0;
	  z-index: 1;
	}
	.carousel-fade .carousel-inner .next.left,
	.carousel-fade .carousel-inner .prev.right {
	  opacity: 1;
	}
	.carousel-fade .carousel-control {
	  z-index: 2;
	} 
	@media all and (transform-3d), (-webkit-transform-3d) {
		.carousel-fade .carousel-inner > .item.next,
		.carousel-fade .carousel-inner > .item.active.right {
		  opacity: 0;
		  -webkit-transform: translate3d(0, 0, 0);
				  transform: translate3d(0, 0, 0);
		}
		.carousel-fade .carousel-inner > .item.prev,
		.carousel-fade .carousel-inner > .item.active.left {
		  opacity: 0;
		  -webkit-transform: translate3d(0, 0, 0);
				  transform: translate3d(0, 0, 0);
		}
		.carousel-fade .carousel-inner > .item.next.left,
		.carousel-fade .carousel-inner > .item.prev.right,
		.carousel-fade .carousel-inner > .item.active {
		  opacity: 1;
		  -webkit-transform: translate3d(0, 0, 0);
				  transform: translate3d(0, 0, 0);
		}
	} 		
	.carousel-inner > .item > img {
	  position: absolute;
	  top: 0;
	  left: 0;
	  min-width: 100%;
	  height: 500px;
	}
	.carousel .item .carousel-overlay {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: #000000;
		background: linear-gradient(90deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.40) 40%, rgba(0, 0, 0, 0) 100%);
		/*opacity: 1;*/
	}
	/* КАРУСЕЛЬ ИНФОРМАЦИОННАЯ ОБЛАСТЬ */
	.carousel-caption {
	  z-index: 10; /* Since positioning the image, we need to help out the caption */
	}
	.carousel-caption p {
		margin-bottom: 20px;
		font-size: 21px;
		line-height: 1.4;
	}
	.carousel-caption {
		position: absolute;
        right: 5%;
        top: 17%;
        left: 5%;
		z-index: 10;
		padding-top: 20px;
		padding-bottom: 20px;
		color: #fff;
		text-align: left;
		text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
	}
	.carousel-caption .h1 {
		font-size: 4.2em;
		font-weight: 700;
		line-height: 1.21;
		margin-top: 0px;
		margin-bottom: 0px;
	}
	.carousel-caption .h3 {
		font-size: 1.73em;
		font-weight: 600;
		line-height: 1.21;
		margin-top: 0px;
		margin-bottom: 2em;
		text-transform: uppercase;
	}
	.carousel-caption .p {
		font-size: 1.4em;
		font-weight: 400;
		line-height: 1.52;
	}
	.carousel-caption .logo {
		margin-top: 0;
        margin-bottom: 0;
        position: absolute;
        bottom: 40px;
        width: 100%;
        height: 40px;
        text-align: center;
		left: 0;
        right: 0;
	}
	.carousel .item .buttons {
		margin-top: 3em;
	}
	.carousel .item .buttons ul {
		list-style: none;
		padding: 0;
	}
	.carousel .item .buttons ul li {
		display: block;
		padding-bottom: 16px;
	}	
	.carousel .item .buttons .btn-primary,
	.carousel .item .buttons .btn-primary.focus,
	.carousel .item .buttons .btn-primary:active {
		color: #fff;
		padding: 16px 16px;
		font-size: 1em;
		font-weight: 500;	
		background-color: rgb(0 0 0 / 44%);
		border-radius: 7.5px;
		border: 1.27px solid #ffffff;
		transition: 0.5s;
	}
	.carousel .item .buttons .btn-primary:hover {
		color: #000000;
		background-color: rgb(255 255 255 / 90%);
		transition: 0.5s;
	}
	.carousel .item .subtitle {
		display: none;
		float: right;
		text-align:right;
	}
	.carousel .item .subtitle .h1 {
		font-size: 1.55em;
		font-weight: 700;
		line-height: 1.21;
		margin-top: 0px;
		margin-bottom: 0px;
		text-transform: uppercase;
	}
	.carousel .item .subtitle .h3 {
		font-size: 0.6em;
		font-weight: 500;
		line-height: 1.21;
		margin-top: 0px;
		margin-bottom: 1em;
		text-transform: uppercase;
	}		
}
@media only screen and (max-width: 767.5px){
	/* КАРУСЕЛЬ */
	.carousel {
	  height: 800px;
	  background: black;
	}
	/* КАРУСЕЛЬ СЛАЙДЫ */
	.carousel .item {
	  height: 800px;
	  background-color: #777;
	  background-position: center;
	  background-repeat: no-repeat;
	  background-size: cover;
	}
	.carousel-fade .carousel-inner .item {
	  opacity: 0;
	  transition-property: opacity;
	  transition: 0.9s;
	}
	.carousel-fade .carousel-inner .active {
	  opacity: 1;
	  transition: 0.9s;
	}
	.carousel-fade .carousel-inner .active.left,
	.carousel-fade .carousel-inner .active.right {
	  left: 0;
	  opacity: 0;
	  z-index: 1;
	}
	.carousel-fade .carousel-inner .next.left,
	.carousel-fade .carousel-inner .prev.right {
	  opacity: 1;
	}
	.carousel-fade .carousel-control {
	  z-index: 2;
	} 
	@media all and (transform-3d), (-webkit-transform-3d) {
		.carousel-fade .carousel-inner > .item.next,
		.carousel-fade .carousel-inner > .item.active.right {
		  opacity: 0;
		  -webkit-transform: translate3d(0, 0, 0);
				  transform: translate3d(0, 0, 0);
		}
		.carousel-fade .carousel-inner > .item.prev,
		.carousel-fade .carousel-inner > .item.active.left {
		  opacity: 0;
		  -webkit-transform: translate3d(0, 0, 0);
				  transform: translate3d(0, 0, 0);
		}
		.carousel-fade .carousel-inner > .item.next.left,
		.carousel-fade .carousel-inner > .item.prev.right,
		.carousel-fade .carousel-inner > .item.active {
		  opacity: 1;
		  -webkit-transform: translate3d(0, 0, 0);
				  transform: translate3d(0, 0, 0);
		}
	} 		
	.carousel-inner > .item > img {
	  position: absolute;
	  top: 0;
	  left: 0;
	  min-width: 100%;
	  height: 500px;
	}
	.carousel .item .carousel-overlay {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: #000000;
		background: linear-gradient(90deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.40) 40%, rgba(0, 0, 0, 0) 100%);
		/*opacity: 1;*/
	}
	/* КАРУСЕЛЬ ИНФОРМАЦИОННАЯ ОБЛАСТЬ */
	.carousel-caption {
	  z-index: 10; /* Since positioning the image, we need to help out the caption */
	}
	.carousel-caption p {
		margin-bottom: 20px;
		font-size: 21px;
		line-height: 1.4;
	}
	.carousel-caption {
        position: absolute;
        right: 0;
        top: 17%;
        left: 0;
        z-index: 10;
        padding-top: 20px;
        padding-bottom: 20px;
        color: #fff;
        text-align: left;
        text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
        padding-left: 5%;
        padding-right: 5%;
	}
	.carousel-caption .h1 {
		font-size: 2.2em;
		font-weight: 700;
		line-height: 1.21;
		margin-top: 0px;
		margin-bottom: 0px;
	}
	.carousel-caption .h3 {
        font-size: 0.9em;
        font-weight: 600;
        line-height: 1.21;
        margin-top: 0px;
        margin-bottom: 8em;
        text-transform: uppercase;
	}
	.carousel-caption .p {
        font-size: 0.9em;
        font-weight: 400;
        line-height: 1.52;
	}
	.carousel-caption .logo {
		margin-top: 0;
        margin-bottom: 0;
        position: absolute;
        bottom: 40px;
        width: 100%;
        height: 40px;
        text-align: center;
		left: 0;
        right: 0;
		
	}
	.carousel-caption .logo img {
		width: 70%;
	}	
	.carousel .item .buttons {
		margin-top: 7em;
	}
	.carousel .item .buttons ul {
		list-style: none;
		padding: 0;
	}
	.carousel .item .buttons ul li {
		display: block;
		padding-bottom: 10px;
	}	
	.carousel .item .buttons .btn-primary,
	.carousel .item .buttons .btn-primary.focus,
	.carousel .item .buttons .btn-primary:active {
		color: #fff;
		padding: 16px 16px;
		font-size: 0.7em;
		font-weight: 500;	
		background-color: rgb(0 0 0 / 44%);
		border-radius: 7.5px;
		border: 1.27px solid #ffffff;
		transition: 0.5s;
	}
	.carousel .item .buttons .btn-primary:hover {
		color: #000000;
		background-color: rgb(255 255 255 / 90%);
		transition: 0.5s;
	}
	.carousel .item .subtitle {
		display: none!important;
		float: right;
		text-align:right;
	}
	.carousel .item .subtitle .h1 {
		font-size: 1.55em;
		font-weight: 700;
		line-height: 1.21;
		margin-top: 0px;
		margin-bottom: 0px;
		text-transform: uppercase;
	}
	.carousel .item .subtitle .h3 {
		font-size: 0.6em;
		font-weight: 500;
		line-height: 1.21;
		margin-top: 0px;
		margin-bottom: 1em;
		text-transform: uppercase;
	}		
}
@media only screen and (max-width: 380px){
	.carousel-caption .logo img {
		width: 70%;
	}	
}
