@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,700,800&display=swap&subset=cyrillic');

html{
	
	 scroll-behavior: smooth;
}
body {
    font-family: 'Montserrat', sans-serif;
    color: #65676b;
    font-size: 16px;

    display: flex;
    flex-direction: column;
    min-height: 100vh;

}


.blackc {
    color: #050505
}

.greyc {
    color: #65676b
}

.whitec {
    color: #fff
}

.purplec {
    color: #5e56eb
}

.greenc {
    color: #34de47
}

.redc {
    color: #eb5656
}

.bluec {
    color: #56b7eb
}

.purplebg {
    background: #5e56eb;
}

.greybg {
    background: #F0F2F5;
}

.whitebg {
    background: #fff;
}

.bdrs {
    border-radius: 8px;
}

.shad {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2)
}



.content {
    color: #65676b;
    font-size: 15px;
}

.content b {
    color: #050505;
}

.content img {
    margin-bottom: 1rem;
    max-width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15)
}


.center {
    text-align: center;
}


.content h2,
main .title {
    color: #5e56eb;
    font-weight: 700;
    font-size: 1.5em;

}


.content h3 {
    color: #050505;
    font-weight: 700;
    font-size: 1.3em
}

.content h4 {
    color: #050505;
    font-weight: 700;
    font-size: 1em
}

.content ul > li {
    position: relative;
    margin-bottom: 0.5em;
    padding-left: 1em;
}

.content p {
    margin-bottom: 0.5rem;
}

.content ul > li:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 0.4em;
    height: 0.4em;
    background: #5e56eb;
    border-radius: 50%;
}


.content a:not(.fr-file) {
    text-decoration: underline;
    color: #5e56eb;
    font-weight: 500;
    transition: 0.5s all
}

.content a:not(.fr-file):hover {
    text-decoration-color: transparent
}

.fr-file {
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    color: #5e56eb;
    font-weight: 500;
}

.fr-file:before {
    font-size: 1.5em;
    content: "description";
    font-family: 'Material Icons';
    margin-right: 0.5em;
}





main {
    flex-grow: 1
}
.breadcrumbs{
	font-size: 0.8em;
	display: inline-flex;
}

.breadcrumbs li:not(:first-child):before{
	content: "/";
	padding: 0 10px;
}
.breadcrumbs a{
	color:#5e56eb;
	font-weight: 500;
}


.header {
    position: relative;
    top: 0;
    position: sticky;
    background: #050505;
    z-index: 2;
}

.header1 {
    background: #FFFFFF;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2)
}

.nav {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    display: inline-flex;
    font-size: 36px;
    line-height: 1;
    font-weight: 900;
    color: #fff;
}

.menu {
    display: inline-flex;
}

.menu li:not(:first-child) {
    margin-left: 3em;
}

.menu a {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    transition: color 0.5s
}

.menu a:hover {
    color: #5e56eb;
}

.auth {
    display: inline-flex;

}

.btn {
    user-select: none;

    font-size: 14px;
    align-items: center;
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 500;
    background: #5e56eb;
    color: #fff;
    transition: background 0.5s
}
button[type=reset]{
	padding: 8px;
	font-size: 16px;
}
.btn1{
	padding: 8px;
	font-size: 10px;
}

.btn1 i{
	font-size: 1em;
}

.btn i {

    font-size: 1.5em;
}

.btn:hover {
    background: #8456eb;
}

.btn:active {
    transform: scale(0.95)
}


.sec0 {
    min-height: 650px;
    display: flex;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/bg0.jpg) 50% 0 no-repeat;
    background-size: cover;
    align-items: center
}


.sec0 .title {
    font-size: 2.5rem;
    color: #5e56eb
}

.sec0 .text {
    font-weight: 400;
    font-size: 1.2rem;
    color: #fff
}


/*sec2*/

/*sec3*/

.sec3 {
    background: #050505;
}

.title {

    color: #5e56eb;
    font-size: 2em;
}


.faq {
    text-align: left;
}

.faq .item {
    color: #fff;

    padding-bottom: 01em;
    padding-top: 01em;

}


.faq .item:not(:last-child) {

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq .question {
    cursor: pointer;
    position: relative;
    padding-left: 1.5em;
    font-weight: 700;
    font-size: 1.3em;
    color: #5e56eb;
    font-weight: 500;

}

.faq .question:after,
.faq .question:before {
    position: absolute;
    left: 0;
    top: 0.8em;
    width: 0.8em;
    height: 2px;
    background: #5e56eb;
    content: ""

}

.faq .question:before {
    transition: transform 0.5s;
    transform: rotate(90deg)
}

.faq .item.active .question:before {
    transform: rotate(0deg)
}

.faq .answer {
    margin-top: 0.8em;
    display: none;
}

.faq .item:first-child .answer {
    display: block;
}

.footer {
    background: #000;
    color: #fff;
    padding: 1em;

}

.pol {
    float: right;
    color: #fff;
    text-decoration: underline;
    color: var(--color)
}


/*cabinet*/
.login-form {
    margin: auto;
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.login-form img {
    width: 100%;
    max-width: 300px;
}

label.file {
    padding: 8px 0;
    align-items: center;
    display: inline-flex;
    width: 100%;
    font-size: 14px;
    cursor: pointer;
}

label.file i {
    font-size: 2.5em;
    color: #5e56eb
}

label.file span {
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
}

input[type=file] {
    display: none;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=password],
textarea {
    text-align: left;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    border: 1px solid #eee;
    background: #F0F2F5;
}

.formname {
    font-weight: 500;
    font-size: 1.5em;
    color: #5e56eb
}



.user {
    display: flex;
    align-items: center;
}

.user svg {
    width: 40px;
    height: 40px;
    background: #5e56eb;
    border-radius: 50%;
    fill: #fff;
    padding: 5px;
    margin-right: 10px;
}

.username {
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    color: #5e56eb
}

.tarif {
    font-weight: 500;
}


.about {}

.preview {
    width: 100%;
    position: relative;
    display: inline-flex;
    background: var(--color0);
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12)
}

.preview figure {

    width: 100%;
    position: relative;
    vertical-align: top;
}

.preview img {
    border-radius: 4px;
    height: 240px;
    width: 100%;
    object-fit: cover;
    vertical-align: top;
}

.preview.lock .lock, .preview .success {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #5e56eb;
    opacity: 0.9;
    content: "";
    position: absolute;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    font-weight: 500;
    color: #fff;
    font-size: 14px;


}
.preview .success {
	background: #34de47;
}

.preview.lock .lock span, .preview .success span {
    font-size: 2em;

}

.preview .name {
	z-index: 1;
	max-width:90%;
    display: inline-flex;
    position: absolute;
    font-size: 0.9em;
    left: 0;
    top: 10px;
    padding: 5px 10px;
    background: #ffffff;
    font-weight: 500;
    border-radius: 0 4px 4px 0;
    color: #222
}

.preview .name span {
    margin-right: 0.5em;
    color: #5e56eb
}


.preview .new {
    position: absolute;
    left: 10px;
    bottom: 10px;
    background: #fff;

    vertical-align: top;
    border-radius: 4px;
}

.preview .new span {
    color: var(--color7);
    vertical-align: top;

}



/*video page*/


.chat {
    top: 84px;
    position: sticky;
    height: 80vh;
    height: calc(100vh - 84px);
    box-sizing: border-box;
    display: flex;

    flex-direction: column;
    background: #fff;


}

.chat > .name {
    line-height: 1;
    background: #5e56eb;
    color: #fff;
    border-radius: 8px 8px 0 0;
}

.messages {
    color: #65676b;
    overflow-y: auto;
    flex-grow: 1;
    font-size: 13px;
}

.messages fieldset {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #050505
}
.messages fieldset .text{
	
	 word-break: break-word;
}
   

.messages legend {
    width: auto;
	
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    color: #050505
}

.admintext legend {
    text-align: right;
    color: #5e56eb
}
.messages a{
	display: inline-block;
	width: 100%;
}
.messages .admintext {
    border-color: rgba(94, 86, 235, 0.5)
}

fieldset date {
    font-size: 0.8em;
    font-weight: 400;
    margin-right: 0.5em;
    color: #65676b
}

.chat form {
    position: relative;
    border-top: 1px solid #e4e6eb;
    background: ;
    border-radius: 0 0 4px 4px;

}


.chat fieldset a {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    color: #5e56eb
}

@media (max-width:767px) {

    .footer {
        text-align: center;
    }

    .pol {
        display: block;
        float: none;
    }
}



button{
	
position: relative;
}

button svg{
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    right:0;
    background:#5e56eb;
    border-radius:50%;
    display: none;
}