@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Commissioner:wght@100;200;300;400;500;600;700;800;900&display=swap');
/*
    Михаил Бабидов
    skype: compo_life
*/
:root {
	
}
html {
    font-size: 20px;
}
body {
    max-width: 1920px;
    margin: 0 auto;
	font-family: 'Commissioner', sans-serif;
}

* {
	outline: none;
}

img {max-width: 100%;}
b {font-weight: 700;}
.text-black {color: #000000;}
.no-margin-last-child > *:last-child {margin-bottom: 0;}
.rounded-xl  {border-radius: 0.5rem;}
.rounded-xxl {border-radius: 1rem;}

.border-reset {border-color: inherit !important;}
.border-2x {border-width: 2px !important;}
.border-3x {border-width: 3px !important;}
.border-4x {border-width: 4px !important;}
.border-5x {border-width: 5px !important;}

.fw-100 {font-weight: 100 !important;}
.fw-200 {font-weight: 200 !important;}
.fw-300 {font-weight: 300 !important;}
.fw-400 {font-weight: 400 !important;}
.fw-500 {font-weight: 500 !important;}
.fw-600 {font-weight: 600 !important;}
.fw-700 {font-weight: 700 !important;}
.fw-800 {font-weight: 800 !important;}
.fw-900 {font-weight: 900 !important;}

.bg-image {background-size: cover; background-position: center center;}
.bg-image-top {background-position: center top;}
.bg-image-bottom {background-position: center bottom;}
.bg-image-fixed {background-attachment: fixed;}

.btn {
	--bs-btn-padding-x: 2.5rem;
	--bs-btn-padding-y: 1rem;
	--bs-btn-font-size: .9rem;
	--line-height: 1.5rem;
	line-height: var(--line-height);
	transition: .3s;
}
.btn-sm {
	--bs-btn-font-size: .8rem;
	--bs-btn-padding-x: 1.5rem;
	--bs-btn-padding-y: .65rem;
}
.btn-pill,
.btn-circle {
	--bs-btn-border-radius: 25rem;
}
.btn-circle {
	--bs-btn-padding-x: var(--bs-btn-padding-y);
}
.btn-circle {
	--bs-btn-font-size: 1.5rem;
	width: var(--line-height);
	box-sizing: content-box;
}
.btn-circle.btn-sm {
	--bs-btn-font-size: 1.25rem;
}
.btn-shadow {
	box-shadow: 0 0 0 .5rem rgba(var(--bs-primary-rgb), .2);
}
.btn-pulse {
	box-shadow: 0 0 0 .5rem rgba(var(--bs-primary-rgb), .2);
	animation: btn-pulse 2s infinite;
}
.btn-pulse:hover {
	transform: scale(1.1);
	animation: none;
	box-shadow: none;
}
@keyframes btn-pulse {
	0% {
		box-shadow:
			0 0 0 .5rem rgba(var(--bs-primary-rgb), .2),
			0 0 0 0 rgba(var(--bs-primary-rgb), .35);
	}
	50% {
		box-shadow:
			0 0 0 .5rem rgba(var(--bs-primary-rgb), .2),
			0 0 0 1.5rem rgba(var(--bs-primary-rgb), .0);
	}
}

.form-control {
	font-size: .9rem;
	padding: 1rem 2rem;
}
.form-control-pill {
	border-radius: 25rem;
}

.bg-gradient-danger {
	background-image: linear-gradient(to right, rgba(var(--bs-danger-rgb), 1), rgba(var(--bs-danger-rgb), 0))
}
.bg-gradient-info {
	background-image: linear-gradient(to right, rgba(var(--bs-info-rgb), 1), rgba(var(--bs-info-rgb), 0))
}
.bg-gradient-dark {
	background-image: linear-gradient(to right, rgba(var(--bs-dark-rgb), 1), rgba(var(--bs-dark-rgb), 0))
}

.form label.btn {
	--bs-btn-padding-x: 1rem;
	--bs-btn-padding-y: .25rem;
}

.modal-header {
	--bs-modal-header-border-width: 0;
}
.modal-content {
	--bs-modal-border-radius: 1rem;
	--bs-modal-inner-border-radius: calc(var(--bs-modal-border-radius) - 1px);
}
.modal-footer {
	background-color: var(--bs-light);
}

a.logo {
	display: inline-block;
	max-width: 5rem;
}
.logo img {
	position: relative;
	animation: 3s translate infinite linear;
}
.logo img:hover {
	animation-play-state: paused;
}
@keyframes translate {
	0% {
		transform: translate(0,0);
	}
	25% {
		transform: translate(-.5rem,0);
	}
	50% {
		transform: translate(-.5rem,.5rem);
	}
	75% {
		transform: translate(0,.5rem);
	}
	100% {
		transform: translate(0,0);
	}
}
.logo-text {
	position: relative;
	display: inline-block;
}
.logo-text:after {
	--width: 100%;
	content: '';
	display: block;
	position: absolute;
	bottom: -2.5em;
	left: 60%;
	width: var(--width);
	padding-bottom: calc(var(--width) * .7);
	background: url("../img/scr1-color.png?v=1") center center no-repeat;
	background-size: cover;
}
.logo-text  span {
	position: relative;
    z-index: 1;
}

@media screen and (min-width: 992px) {
	.logo-text:after {
		--width: 125%;
		bottom: -3.5rem;
	}
}
/*
@media screen and (min-width: 1140px) {
	.logo-text:after {
		--width: 180%;
		bottom: -6.5rem;
	}
}
*/

.contact a {
	color: inherit;
	text-decoration: none;
}

#scr1 {
	background-image: url("../img/scr1.jpg");
	overflow: hidden;
	position: relative;
}
#scr1:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1920px;
	height: 2rem;
	background-color: var(--bs-body-bg);
	transform: skewX(-45deg);
}
#scr1 .contact {
    position: relative;
    z-index: 1;
}
#scr1 .title {
	--bg-color: rgba(var(--bs-primary-rgb), .5);
	--padding-y: 1.5rem;
	position: relative;
	display: inline-block;
	*background-color: var(--bg-color);
	color: var(--bs-white);
	padding-top: var(--padding-y);
	padding-bottom: var(--padding-y);
}
#scr1 .title:before,
#scr1 .title:after {
	content: '';
	display: block;
	position: absolute;
	width: 1920px;
	height: 100%;
	background-color: var(--bg-color);
	z-index: 0;
}
#scr1 .title:before {
	--bg-color: rgba(var(--bs-info-rgb), .75);
	top: calc(var(--padding-y) * -.25);
	right: 0;
	animation: 2s fadeInRightTop;
}
@keyframes fadeInRightTop {
	0% {
		opacity: 0;
		transform: translate(100%,-100%);
	}
	100% {
		opacity: 1;
		transform: translate(0,0);
	}
}
#scr1 .title:after {
	top: calc(var(--padding-y) * .25);
	right: calc(var(--padding-y) * .5);
	animation: 2s fadeInLeftBottom;
}
@keyframes fadeInLeftBottom {
	0% {
		opacity: 0;
		transform: translate(-100%,100%);
	}
	100% {
		opacity: 1;
		transform: translate(0,0);
	}
}
#scr1 .title-inner {
	position: relative;
	z-index: 1;
	animation: 4s fadeIn;
}
@keyframes fadeIn {
	0%, 50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
#scr1 .owl-item.active .item {
	*animation: bounce .75s;
	position: relative;
	display: inline-block;
	transform-origin: left center;
}
@keyframes bounce {
	0%, 100% {
		left: 0;
		transform: scaleX(1);
	}
	50% {
		left: -3rem;
		transform: scaleX(.5);
	}
}

.articles .images {
    display: grid;
    gap: 1rem;
    grid-template-columns: .7fr auto;
    grid-template-rows: .5fr .5fr;
    
}
.articles .image {
    position: relative;
    grid-column: 2 / 1 span;
}
.articles .image:nth-child(2) {
    grid-row: 1 / calc(2 / var(--row-length, 2)) span;
}
.articles .image:first-child {
    grid-column: 1 / calc(2 / var(--col-length, 2)) span;
    grid-row: 1 / 2 span;
}

.articles .owl-dots {
    text-align: center;
    margin-top: 1rem;
    font-size: 0;
}
.articles .owl-dot {
    display: inline-block;
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    border: 1px solid var(--bs-primary);
    margin: .15rem;
}
.articles .owl-dot.active {
    background-color: var(--bs-primary);
}
.articles .owl-nav {
    text-align: center;
    font-size: 2rem;
    margin-top: 1rem;
}
.articles .owl-nav > div {
    display: inline-block;
    margin: 0 .5rem;
}
.articles .owl-prev {
    opacity: .25;
}
.articles .owl-next {
    color: var(--bs-primary);
}

#scr4 .icon {
	font-size: 2rem;
	display: inline-block;
	width: 1.25em;
	text-align: center;
}

#scr5 .phone {
	--width: 50%;
	position: relative;
}
#scr5 .phone-inner {
	position: relative;
	mix-blend-mode: darken;
	z-index: 2;
}
#scr5 .phone-img {
	width: var(--width);
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
#scr5 .owl-stage {
	display: flex;
}
#scr5 .owl-item {
	position: relative;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	transition: .3s;
	opacity: .7;
	transform: scale(.9);
}
#scr5 .owl-item.center {
	opacity: 1;
	transform: scale(1);
}
#scr5 .item {
	position: relative;
	flex: 1 1 auto;
	padding: 12% 6% 0;
}
#scr5 .owl-dots {
	text-align: center;
	position: absolute;
	bottom: 0;
	width: 100%;
}
#scr5 .owl-dot {
	--dot-size: .75rem;
	display: inline-block;
	margin: 0 .125rem;
	width: var(--dot-size);
	height: var(--dot-size);
	border-radius: 25rem;
	background-color: var(--bs-primary);
	border: 1px solid var(--bs-primary);
	transition: .3s;
}
#scr5 .owl-dot.active {
	background-color: transparent;
}

#scr6 .panel {
	background-image: url("../img/scr6-panel.jpg");
	position: relative;
	margin-bottom: 1rem;
}
@media screen and (min-width: 767px) {
	#scr6 .panel {
		margin-bottom: -15rem;
	}
}
#scr6 .panel i {
    width: 1.25em;
    text-align: center;
}


@media screen and (max-width: 767px) {
    html {
        font-size: 16px;
    }
    a.logo {
        max-width: 3rem;
    }
    .logo-text {
        font-size: .85rem;
        *color: #fff !important;
    }
    .logo-text:after {
        left: 65%;
        bottom: -2em;
    }
}