@charset "utf-8";
/*
    Михаил Бабидов
    skype: compo_life
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');
:root {
    --font-body: 'Roboto', sans-serif;
    --font-title: 'Prata', serif;
}
html {
    font-size: 18px;
    overflow-x: hidden;
}
body {
    max-width: 1920px;
    margin: 0 auto;
    text-align: center;
    overflow-x: hidden;
}

.font-body,
body {
    font-family: var(--font-body);
}

.font-title,
.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
}

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;}

.flip-x {
    transform: scaleX(-1);
}
.flip-y {
    transform: scaleY(-1);
}


/*BUTTONS*/
:root {
    --form-element-width: 16.111rem;
    --form-element-height: 4rem;
}
.btn {
    --btn-gradient-rgb: 255,255,255;
    position: relative;
    z-index: 5;
}
.btn-pill {
    --bs-btn-font-weight: 700;
    --bs-btn-border-radius: 25rem;
    --bs-btn-border-width: 0;
    --btn-shadow-height: 1rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: var(--form-element-height);
    width: var(--form-element-width);
    max-width: 100%;
    line-height: 1;
}
.btn-3d {
    background-image: linear-gradient(to bottom, 
        rgba(var(--btn-gradient-rgb), .35),
        rgba(var(--btn-gradient-rgb), 0),
        rgba(var(--btn-gradient-rgb), 0),
        rgba(var(--btn-gradient-rgb), .15)
    );
    box-shadow:
        inset 0 -5px rgba(0,0,0,.05);
}
.btn-3d:after {
    content: '';
    position: absolute;
    width: 70%;
    bottom: calc(var(--btn-shadow-height) * -1);
    transform: translateX(-50%);
    left: 50%;
    height: 0;
    background: #000;
    box-shadow: 0 0 var(--btn-shadow-height) calc(var(--btn-shadow-height) * .5) var(--bs-btn-bg);
    opacity: .35;
    transition: .3s;
}
.btn-3d:hover:after {
    opacity: .5;
}
.btn-icon {
   position: absolute;
}

/* LISTS */
.list-icon {
    --icon-size: 1.25em;
    list-style: none;
    padding: 0;
}
.list-icon > li {
    position: relative;
    padding-left: calc(var(--icon-size) + .75rem);
}
.list-icon > li:before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(var(--bs-body-line-height) * .5em);
    margin-top: calc(var(--icon-size) * -0.5);
    width: var(--icon-size);
    height: var(--icon-size);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.list-icon-check {
    --icon-size: 2.25em;
}
.list-icon-check > li {
    padding-left: var(--icon-size);
}
.list-icon-check > li:before {
    margin-top: calc(var(--icon-size) * -0.35);
}
.list-icon-check-light > li:before {
    background-image: url("../img/scr3-icon-check.png")
}
.list-icon-check-pink > li:before {
    background-image: url("../img/scr6-check.png")
}


/* SCREENS */

#scr1 {
    background-image: url("../img/scr1.png");
}
#scr1 .icon-calendar-wrap {
    --icon-size: 4rem;
    position: relative;
    width: var(--icon-size);
}
#scr1 .icon-calendar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
#scr1 .btn .btn-icon-arrow {
    opacity: .25;
    bottom: 100%;
    left: 100%;
    margin-left: -1rem;
    margin-bottom: .5rem;
    width: 4.611rem;
}
#scr1 .text {
    position: relative;
    z-index: 2;
}
#scr1 .photo-wrap {
    position: relative;
}
#scr1 .description {
    --transform-skew: -15deg;
    text-align: left;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
#scr1 .description-name {
    color: var(--bs-white);
    z-index: 1;
}
#scr1 .description-name,
#scr1 .description-text {
    max-width: 15rem;
    border-radius: var(--bs-border-radius);
    transform: skewX(var(--transform-skew));
}
#scr1 .description-name > *,
#scr1 .description-text > * {
    display: block;
    transform: skewX(calc(var(--transform-skew) * -1));
}


#scr2 {
    background-image: url("../img/scr2.png");
}
#scr2 .panel-info .item-wrap {
    display: flex;
}
#scr2 .panel-info .item {
    padding: .5rem;
    display: flex;
    width: 100%;
    height: 100%;
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175);
    border-radius: var(--bs-border-radius-lg);
    background-color: var(--bs-body-bg);
    background-image: linear-gradient(-45deg, 
        rgba(var(--bs-primary-rgb), .35), 
        rgba(var(--bs-primary-rgb), 0), 
        rgba(var(--bs-primary-rgb), .35)
    );
}
#scr2 .panel-info .item-inner {
    width: 100%;
    height: 100%;
    padding: 1.5rem .5rem;
    border-radius: var(--bs-border-radius);
    background-color: var(--bs-body-bg);
    background-image: linear-gradient(-45deg, 
        rgba(var(--bs-primary-rgb), .1), 
        rgba(var(--bs-primary-rgb), 0), 
        rgba(var(--bs-primary-rgb), .1)
    );
}
#scr2 .panel-info .item-inner > *:last-child {
    margin-bottom: 0;
}
#scr2 .panel-info .item-title {
    position: relative;
}
#scr2 .panel-info .item-title:after {
    content: '';
    display: block;
    width: 25%;
    border-top: 1px solid;
    margin: 0 auto;
    margin-top: .5rem;
}
#scr2 .panel-check .item-wrap {
    display: flex;
}
#scr2 .panel-check .item {
    width: 100%;
    border-radius: var(--bs-border-radius);
    padding: 1rem;
    border: 1px solid var(--bs-border-color);
}
#scr2 .panel-check .icon-wrap {
    margin-top: calc(-20px - 1rem);
    margin-left: -20px;
    margin-bottom: 0;
}
#scr2 .photo-wrap {
    position: relative;
}
#scr2 .photo-wrap .description {
    --text-max-width: 80%;
    position: absolute;
    width: 55%;
    bottom: 35%;
    left: 50%;
    margin-left: -20%;
    transform: translateX(-50%);
}
#scr2 .photo-wrap .description-title,
#scr2 .photo-wrap .description-arrow-wrap {
    max-width: var(--text-max-width);
    font-size: .888rem;
}
#scr2 .photo-wrap .description-arrow {
    width: 5.9rem;
    opacity: .25;
    transform: rotate(20deg);
}
#scr2 .link-video {
    --btn-size: 7rem;
    --bs-btn-border-radius: 50%;
    display: inline-flex;
    height: var(--btn-size);
    width: var(--btn-size);
    justify-content: center;
    align-items: center;
    position: relative;
}
#scr2 .btn-icon-cursor {
    width: calc(var(--btn-size) * .35);
    top: 70%;
    left: 70%;
}

#scr3 .scr-inner-top {
    background-image: url("../img/scr3-top.png");
}
#scr3 .scr-inner-bottom {
    position: relative;
}
#scr3 .scr-inner-bottom:after {
    content: '';
    display: block;
    position: absolute;
    width: 1920px;
    padding-bottom: 67%;
    background: url("../img/scr3-bottom.png") center top no-repeat;
    background-size: cover;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
#scr3 .scr-inner-bottom .container,
#scr4 .container {
    position: relative;
    z-index: 2;
}
#scr3 .arrow-list {
    font-size: .5rem;
}
#scr3 .arrow-list > img {
    width: auto;
    height: .65rem;
    margin-bottom: .5rem;
}
#scr3 .panel .item-wrap {
    display: flex;
}
#scr3 .panel .item {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    padding: 1.5rem;
    background-position: left center;
    background-size: cover;
    min-height: 15rem;
}
#scr3 .panel .item-1 {
    background-image: url("../img/scr3-item-1.jpg");
}
#scr3 .panel .item-2 {
    background-image: url("../img/scr3-item-2.jpg");
}
#scr3 .panel .item-3 {
    background-image: url("../img/scr3-item-3.jpg");
}
#scr3 .panel .item-4 {
    background-image: url("../img/scr3-item-4.jpg");
    background-position: right center;
}
#scr3 .panel .item-5 {
    background-image: url("../img/scr3-item-5.jpg");
}
#scr3 .panel .item-6 {
    background-image: url("../img/scr3-item-6.jpg");
}
#scr3 .panel .item-inner > *:last-child {
    margin-bottom: 0;
}

#scr4 .panel-reviews .item-wrap {
    display: flex;
}
#scr4 .panel-reviews .item {
    width: 100%;
    position: relative;
    border-radius: var(--bs-border-radius);
    background-color: var(--bs-body-bg);
    padding: 2rem;
}
#scr4 .panel-reviews .item:after {
    content: '';
    display: block;
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    height: .5rem;
    border-radius: 0 0 25rem 25rem;
    background-color: var(--bs-body-bg);
    background-image: linear-gradient(to right, 
        rgba(var(--bs-primary-rgb), .75), 
        rgba(var(--bs-primary-rgb), .25), 
        rgba(var(--bs-primary-rgb), .75)
    );
}
#scr4 .panel-reviews .item-name {
    position: relative;
}
#scr4 .panel-reviews .item-name:after {
    content: '';
    display: block;
    width: 20%;
    border-bottom: 2px solid;
    margin-top: 1rem;
}
#scr4 .reviews .owl-stage {
    display: flex;
    align-items: center;
}
#scr4 .reviews .owl-item {
    padding: .5rem;
    display: flex;
    width: 100%;
    height: 100%;
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175);
    border-radius: var(--bs-border-radius-lg);
    background-color: var(--bs-body-bg);
    background-image: linear-gradient(-45deg, 
        rgba(var(--bs-primary-rgb), .35), 
        rgba(var(--bs-primary-rgb), .1), 
        rgba(var(--bs-primary-rgb), .35)
    );
    position: relative;
    margin-bottom: 3rem;
    transition: .3s;
    text-align: left;
    transform-origin: right center;
    transform: scale(.5);
}
#scr4 .reviews .owl-item.center ~ .owl-item {
    transform-origin: left center;
}
#scr4 .reviews .owl-item.center {
    z-index: 2;
    transform: scale(1);
}
#scr4 .reviews .item {
    width: 100%;
    height: 100%;
    padding: 3rem 2rem;
    border-radius: var(--bs-border-radius);
    background-color: var(--bs-body-bg);
    border: 1px solid var(--bs-white);
    background-image: linear-gradient(-45deg, 
        rgba(var(--bs-primary-rgb), .1), 
        rgba(var(--bs-primary-rgb), 0), 
        rgba(var(--bs-primary-rgb), .1)
    );
}
#scr4 .reviews .photo {
    width: 6.444rem;
    height: 6.444rem;
    border-radius: 50%;
}
#scr4 .reviews .owl-dots {
    text-align: center;
}
#scr4 .reviews .owl-dot {
    display: inline-block;
    height: 10px;
    width: 10px;
    border: 2px solid var(--bs-primary);
    border-radius: 50%;
    margin: 0 5px 5px;
    transition: .3s;
}
#scr4 .reviews .owl-dot.active {
    background-color: var(--bs-primary);
}
#scr4 .reviews .owl-prev,
#scr4 .reviews .owl-next {
    --icon-size: 3rem;
    border: 1px solid var(--bs-primary);
    border-radius: 50%;
    margin: 0 1rem;
    display: inline-flex;
    width: var(--icon-size);
    height: var(--icon-size);
    justify-content: center;
    align-items: center;
    font-size: 0;
}
#scr4 .reviews .owl-prev {
    color: var(--bs-primary);
}
#scr4 .reviews .owl-next {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}
#scr4 .reviews .owl-nav {
    text-align: center;
    margin-bottom: 1rem;
}
#scr4 .reviews .owl-prev:before,
#scr4 .reviews .owl-next:before {
    content: '';
    display: block;
    width: calc(var(--icon-size) * .35);
    height: calc(var(--icon-size) * .35);
    border-top: 1px solid;
    border-left: 1px solid;
}
#scr4 .reviews .owl-prev:before {
    transform: rotate(-45deg) translate(20%, 20%);
}
#scr4 .reviews .owl-next:before {
    transform: rotate(135deg) translate(20%, 20%);
}


#scr5 {
    background-image: url("../img/scr5.png");
}
#scr5 .item-wrap {
    display: flex;
}
#scr5 .item {
    --icon-size: 2rem;
    --offset: 4rem;
    --padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    text-align: left;
    padding: var(--padding);
    padding-left: calc(var(--padding) + var(--offset));
    background: url("../img/scr5-item.png") left center no-repeat var(--bs-body-bg);
    background-size: var(--offset) 100%;
    color: var(--bs-body-color);
    border-radius: var(--bs-border-radius);
    position: relative;
}
#scr5 .item .number-wrap {
    position: absolute;
    top: 50%;
    left: var(--offset);
    transform: translate(-50%, -50%);
    margin: 0;
    padding: .25rem;
    background-color: var(--bs-body-bg);
    border-radius: 50%;
}
#scr5 .item .number {
    display: flex;
    width: var(--icon-size);
    height: var(--icon-size);
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    font-family: var(--font-title);
    font-size: calc(var(--icon-size) * .45);
    line-height: 0;
    background-image: linear-gradient(to bottom,
        rgba(var(--bs-white-rgb), .25),
        rgba(var(--bs-white-rgb), 0)
    );
}
#scr5 .item-inner > *:last-child {
    margin-bottom: 0;
}

#scr6 .text {
    position: relative;
    z-index: 2;
}
#scr6 .list-icon-check > li:not(:last-child) {
    margin-bottom: .5rem;
}
#scr6 .quote {
    background: url("../img/icon-quote.svg") left top no-repeat;
    background-size: 5.777rem auto;
    padding-top: 1.5rem;
    padding-left: 1.5rem;
    margin-left: -1.5rem;
}
#scr6 .photo-wrap {
    position: relative;
}
#scr6 .photo-wrap .description {
    --transform-skew: -15deg;
    position: absolute;
    top: 50%;
    left: 0;
    text-align: left;
    transform: translateY(-50%);
    z-index: 5;
}
#scr6 .photo-wrap .description-text {
    --bs-border-width: 10px;
    max-width: 20rem;
    padding: 1rem 1.5rem;
    border-radius: var(--bs-border-radius);
    transform: skewX(var(--transform-skew));
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
}
#scr6 .photo-wrap .description-text > * {
    display: block;
    transform: skewX(calc(var(--transform-skew) * -1));
}


#scr7 .item {
    position: relative;
}
@media screen and (min-width: 992px) {
    #scr7 .item:nth-child(2n) {
        margin-top: calc(var(--bs-gutter-y) + 3rem);
    }
    #scr7 .item:not(:first-child) .number {
        position: relative;
    }
    #scr7 .item:not(:first-child) .number:before {
        content: '';
        width: 8.5rem;
        height: 2.555rem;
        background: url("../img/icon-arrow-right-1.svg") center center no-repeat;
        background-size: contain;
        position: absolute;
        right: 100%;
    }
    #scr7 .item:nth-child(2n) .number:before {
        bottom: 100%;
    }
    #scr7 .item:nth-child(2n+1) .number:before {
        top: 100%;
        transform: scaleY(-1);
    }
}
#scr7 .number-wrap {
    font-family: var(--font-title);
    line-height: 1.1;
}
#scr7 .number {
    --icon-size: 6rem;
    --shadow-size: 2rem;
    font-size: calc(var(--icon-size) / 6);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: var(--icon-size);
    height: var(--icon-size);
    margin-bottom: calc(var(--shadow-size) + 1rem);
    margin-top: var(--shadow-size);
    border-radius: 50%;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    animation: radial-pulse 5s infinite;
}
@keyframes radial-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb),.5);
    }
    25%, 100% {
        box-shadow: 0 0 0 var(--shadow-size) rgba(var(--bs-primary-rgb),.15);
    }
}
#scr7 .number-inner {
    font-size: 1.888em;
}

#scr8 {
    background: url("../img/scr8.png") center top no-repeat;
}
#scr8 .text {
    position: relative;
    z-index: 5;
}
#scr8 .list-icon-check > li:not(:last-child) {
    margin-bottom: 0.5rem;
}
.list-icon-check-pink > li:before {
    background-image: url("../img/scr2-icon-check.png");
}

#scr-doc {
    display: flex;
    min-height: 100vh;
}
#scr-doc > .container:first-child {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
#scr-doc .doc-wrap {
    flex: 1 1 auto;
    min-height: 20rem;
}
#scr-doc .doc-wrap > iframe {
    width: 100%;
    height: 100%;
    background-color: var(--bs-light);
}

@media screen and (max-width: 1200px) {
    html {
        font-size: 16px;
    }
}
@media screen and (max-width: 992px) {
    #scr1 {
        background-image: url("../img/scr1-mob.png");
    }
}
@media screen and (max-width: 767px) {
    html {
        font-size: 14px;
    }
    #scr2 .photo-wrap .description {
        --text-max-width: 60%;
    }
    #scr4 .reviews .owl-stage-outer {
        overflow: visible;
    }
}