.content.about {
	padding-top: 0;
}

.about-top {
	height: 100vh;
	/*background: linear-gradient(100.38deg, #FF0038 3.85%, #E8007D 97.86%);*/
	background: linear-gradient(15deg, rgba(80,68,122,1) 0%, rgba(210,46,120,1) 50%, rgba(244,86,64,1) 100%);
}
.about-cont {
	background: #fff;
	z-index: 2;
	position: relative;
}

.about-top .container {
	height: 100%;
}

.about-top__inner {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.about-top__title {
	padding-top: 100px;
	text-align: center;
	color: #fff;
	opacity: 0;
}
.chars-title--load.about-top__title {
	opacity: 1;
}

.about-top__title .line {
	transform: rotateX(-70deg) skewX(30deg);
	opacity: 0;
	transition: 0.6s;
}
.body--loaded .about-top__title .line {
	transform: rotateX(0deg) skewX(0deg);
	opacity: 1;
}
.body--loaded .about-top__title .line:nth-child(2) {
	transition-delay: 0.45s;
}
.body--loaded .about-top__title .line:nth-child(3) {
	transition-delay: 0.9s;
}
.body--loaded .about-top__title .line:nth-child(4) {
	transition-delay: 1.35s;
}
.body--loaded .about-top__title .line:nth-child(5) {
	transition-delay: 1.8s;
}
@media(max-width: 767px) {
	.about-top {
		transform: none !important
	}
}
@media(max-width: 500px) {
	.about-top__title {
		padding-top: 50px;
	}
}

.about-top__actions {
	color: #fff;
    display: -ms-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transform: translateY(90px);
    transition: transform 0.6s 1s, opacity 0.6s 1s;
}

.body--loaded .about-top__actions {
	transform: translateY(0px);
	opacity: 1;
}

.about-top-actions__item {
	margin-bottom: 1.1em;
    margin-right: 0.45em;
    margin-left: 0.45em;
}

.about-top__actions a {
	text-decoration: none;
}

.about-top__actions a:hover {
	color: #FD0140;
	text-decoration: none;
}

.about-top__actions a:focus {
    color: #FD0140;
}

.about-top__actions a {
	color: #fff;
	border-color: #fff;
}

.about-top .border-btn:after {
	background: #fff;
}

@media (max-width: 550px) {
    .about-top {
        height: calc(100vh - 60px);
    }
}




/*about main*/

.about__main_color.section__block {
	margin-bottom: 0;
}


.about-main__item {
    display: -ms-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /*overflow: hidden;*/
    margin-bottom: 143px;
    opacity: 0;
    transform: translateX(150px) skewX(15deg);
    transition: 0.5s ease-out;
}
.about-main__item--even {
	transform: translateX(-150px) skewX(-15deg)
}

.about__main--v-center .about-main__item {
	align-items: center;
	-ms-align-items: center;
}

.about-main__item:last-child {
	margin-bottom: 0;
}

.about-main__img {
    width: 45%;
    position: relative;
    align-self: self-start;
}

.about-main__img:before {
    content: "";
    display: block;
    padding-top: 65%;
}

.about-main__img-in {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    background: no-repeat center;
    background-size: contain;
    object-fit: cover;

    width: 80%;
   height: 120%;
   left: 0;
   top: -20%;
}

.about-main__img-in img {
	position: absolute;
	width: 100%; height: 100%;
	left: 0; top: 0;
	object-fit: contain;
	display: none;
}
.anim-block.anim-block--active .about-main__img-in img {
	display: block;
}

.about-main__right {
    width: 55%;
    padding-left: 5%;
}

.about-main__item--even .about-main__right {
	padding-right: 5%;
	padding-left: 0;
}

.about-main__item--even .about-main__img {
	order: 2;
}

.about-main__item--even .about-main__img-in {
    right: 0;
    left: auto;
}




/*about main color*/
.about__main--color {
    padding: 104px 0;
    position: relative;
    display: -ms-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.about__main--color:before {
    content: "";
    position: absolute;
    left: -200%;
    bottom: 0;
    top: 0;
    width: 400%;
    height: 100%;
    z-index: 1;
    /*background: linear-gradient(101.45deg, #693882 3.94%, #5A44F2 98.83%), #F10061;*/
    background: #613fc3;
}

.about__main--color .about-main__item {
	position: relative;
	z-index: 1;
	color: #fff;
}

.about__main--color .about-main__item:first-child {
	padding-right: 0;
}

.about__main--color .about-main__title {
	color: #fff;
}

.about__main--color>* {
	position: relative;
	z-index: 1;
	color: #fff;
}

.is-up.about-main__item {
	opacity: 1;
	transform: translateX(0) skewX(0deg)
}
.is-up.is-in.about-main__item {
	transform: none;
}

@media (max-width: 2199px) {
	.about__main--color {
    	padding: 90px 0;
    }
}
@media (max-width: 1500px) {
	.about-main__item {
		margin-bottom: 110px;
	}
	.about__main--color {
    	padding: 80px 0;
    }
}
@media (max-width: 1230px) {
	.about-main__item {
		margin-bottom: 80px;
	}
}
@media (max-width: 991px) {
	.about-main__item {
		margin-bottom: 60px;
	}
	.about__main--color {
    	padding: 60px 0;
    }

    .about-main__right .char {
        opacity: 1 !important;
        transform: translate(0px, 0px) !important;
    }

    .about-main__right {
        opacity: 0;
        transform: translate(0px, 50px);
        transition: 1.4s;
    }
    .is-up .about-main__right {
        transform: translate(0px, -50px);
    }
    .is-down .about-main__right {
        transform: translate(0px, 50px);
    }
    .is-in .about-main__right {
        opacity: 1;
        transform: translate(0px, 0px);
    }
    .about-main__img-in {
        width: 100%;
        height: 100%;
        top: 0;
    }
}
@media (max-width: 600px) {
	.about-main__img {
		max-width: 400px;
		width: 100%;
		margin: auto;
	}
	.about-main__right {
		width: 100%;
		padding-left: 0;
		padding-top: 5%;
	}
	.about-main__item {
		display: block;
	}

    .about-main__right {
        opacity: 1;
        transform: translate(0px, 0px);
    }
    .is-up .about-main__right {
        transform: translate(0px, 0px);
    }
    .is-down .about-main__right {
        transform: translate(0px, 0px);
    }
    .is-in .about-main__right {
        transform: translate(0px, 0px);
    }
    .about-main__text .about-main__text-in {
        opacity: 1 !important;
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
    }
}




/*clients*/
.about__clients {
	padding-top: 160px;
}
@media(max-width: 2199px) {
	.about__clients {
		padding-top: 135px;
	}
}
@media(max-width: 1500px) {
	.about__clients {
		padding-top: 120px;
	}
}
@media(max-width: 1229px) {
	.about__clients {
		padding-top: 110px;
	}
}
@media(max-width: 991px) {
	.about__clients {
		padding-top: 80px;
	}
}
@media(max-width: 767px) {
	.about__clients {
		padding-top: 60px;
	}
}




/*events*/
.about-events__wrap {
	display: flex;
	flex-wrap: wrap;
}

.about-events__item {
	width: 33.33%;
	display: block;
	padding: 35px 30px 0px;
	border-right: 1px solid #a7a7a7;
}


.about-events__item.anim-block {
	opacity: 0;
	transform: translateY(100px);
	transition: 0.5s ease;
}
@media(max-width: 767px) {
	.about-events__item.anim-block {
		transform: translateY(30px);
	}
}
.about-events__item.anim-block--down {
	opacity: 1;
	transform: translateY(0px);
	transition: none;
}
.about-events__item.anim-block--active {
	opacity: 1;
	transform: translateY(0px)
}


.about-events__item:nth-child(n+2):nth-child(3n+1) {
    border-right: 0;
}

.about-events__img {
	margin-top: 30px;
}

.about-events__img img {
	max-width: 100%;
    width: 100%;
}

.about-events__top {
	font-weight: bold;
	font-size: 0.7rem;
	line-height: 2;
	color: #A7A7A7;
	margin-bottom: 0.5rem;
}

.about-events__title {
	margin-top: 0;
	margin-bottom: 1rem;
}

.about-events__descr {
	font-weight: normal;
	font-size: 0.9rem;
}

a.about-events__item:hover {
	text-decoration: none;
}

.about-events__btn {
	margin-top: 40px;
    text-align: center;
}

.about-events__item--main {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding-bottom: 40px;
	border-right: none;
	padding-left: 0;
	padding-right: 0;
	border-bottom: 1px solid #a7a7a7;
}

.about-events__item--main .about-events__top {
	font-size: 0.9rem;
	font-weight: 600;
	
}

.about-events__item--main .about-events__info {
	width: 50%;
	padding-right: 2%;
}

.about-events__item--main .about-events__img {
	width: 50%;
    padding-left: 2%;
}

.about-events__item--main .about-events__btn {
    text-align: left;
}

.about-events__item--main .about-events__btn--adap {
    display: none;
}

@media (max-width: 991px) {
	.about-events__item--main {
		width: 50%;
		padding: 35px 30px 35px;
		border-right: 1px solid #a7a7a7;
	}
	.about-events__item {
        width: 50%;
        padding: 35px 30px 35px;
    }
    .about-events__item--main .about-events__info {
	    width: 100%;
	    padding-right: 0;
    }
    .about-events__item--main .about-events__img {
	    width: 100%;
	    padding-left: 0;
    }
    .about-events__item:nth-child(2n) {
	    border-right: 0;
	    border-bottom: 1px solid #a7a7a7;
    }
    .about-events__item:nth-child(2n):last-child {
	    border-bottom: 0;
    }
    .about-events__item--main .about-events__btn {
        display: none;
    }

    .about-events__item--main .about-events__btn--adap {
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .about-events__item {
        width: 100%;
        padding: 20px 0;
        border-right: none;
        border-bottom: 1px solid #a7a7a7;
    }
    .about-events__item:last-child {
	    border-bottom: 0;
    }

    .about-events__btn {
        margin-top: 20px;
    }

    .about-events__item--main {
        padding-top: 0;
    }

    .about-events__item--main .about-events__info,
    .about-events__item--main .about-events__img {
        width: 100%;
    }

    .about-events__item--main .about-events__img {
        padding-left: 0;
    }

    .about-events__item--main .about-events__top {
        font-weight: bold;
        font-size: 0.7rem;
    }

    .about-events__item--main .about-events__title {
        font-size: 20px;
        line-height: 1.4;
    }
}

@media (max-width: 500px) {
    .about-events__item--main .about-events__title {
        font-size: 18px;
    }
}


.about-company__wrap {
    position: relative;
    width: calc(100% + 310px);
    margin-left: -155px;
    margin-right: -155px;
}
.about-company__wrap:before, .about-company__wrap:after {
 	content: "";
 	display: block;
  position: absolute;
  top: -10px;
  width: 122px;
  height: calc(100% + 20px);
  background: #fff;
  transition: 0.75s ease;
}
.about-company__wrap:before {
  right: -5px;
}
.about-company__wrap:after {
  left: -5px;
}
.about-company__wrap.anim-block--down:before, .about-company__wrap.anim-block--down:after {
	transition: none;
}
.about-company__wrap.anim-block--active:before, .about-company__wrap.anim-block--active:after,
.about-company__wrap.anim-block--down:before, .about-company__wrap.anim-block--down:after {
	width: 0;
}


.about-company__wrap video,
.about-company__wrap img {
    width: 100%;
    height: auto;
}

.about-company-in__wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 50px; 
}

.about-company-in__left {
    width: 50%;
}

.about-company-in__right {
    width: 50%;
    position: relative;
    padding-top: 45%;
}

.about-company-in__text {
    font-weight: 700;
    
    max-width: 64%;     
}

.about-company-in-img {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.about-company-in-img img {
	position: absolute;
	width: 100%; height: 100%;
	left: 0; top: 0;
	display: none;
}
.about__company.anim-block--active .about-company-in-img img {
	display: block;
}
.about-company-in-img:before {
    content: "";
    display: block;
}

.about-company-in-left__img{ 
    width: 596px;
    margin-top: 120px;
}

.about-company-in-left__img:before {
    padding-top: 119%
}

.about-company-in-right__img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.about-company-in-right__img:before {
    content: "";
    display: block;
    padding-top: 90%;
}

.about-company-in-right__img .about-company-in-img {
    position: absolute;
    
    width: 489px;
    
}

.about-company-in-right__img-1 {
    left: 0;
    top: 0;
}

.about-company-in-right__img-1:before {
    padding-top: 72%
}

.about-company-in-right__img-2 {
    right: 0;
    bottom: 0;
    z-index: 1;
}

.about-company-in-right__img-2:before {
    padding-top: 72%
}

.about-company-in-right__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    max-width: 82%;
    margin-top: 60px;
}

@media(max-width: 2200px) {
    .about-company-in {
        padding-top: 120px;
        padding-bottom: 147px;
    }
}

@media(max-width: 1800px) {
    .about-company-in-left__img {
        width: 506px;
        margin-top: 96px;
    }

    .about-company-in-right__img .about-company-in-img {
        width: 400px;
    }
    .about-company__wrap {
	    width: calc(100% + 200px);
	    margin-left: -100px;
	    margin-right: -100px;
	}
	.about-company__wrap:before, .about-company__wrap:after {
		width: 100px;
	}
}

@media(max-width: 1500px) {
    .about-company-in {
        padding-top: 120px;
        padding-bottom: 147px;
    }
    
    .about-company-in-left__img {
        width: 450px;
        margin-top: 78px;
    }
    
    .about-company-in-right__img .about-company-in-img {
        width: 382px;
    }
    
    .about-company__wrap {
	    width: calc(100% + 80px);
	    margin-left: -40px;
	    margin-right: -40px;
	}
	.about-company__wrap:before, .about-company__wrap:after {
		width: 40px;
	}
    
}

@media(max-width: 1229px) {
    .about-company-in-right__img .about-company-in-img {
        width: 328px;
    }
    
    .about-company-in-left__img {
        width: 400px;
    }

    .about-company-in {
        padding-top: 100px;
        padding-bottom: 120px;
    }
    
    .about-company-in__wrap {
        padding-top: 30px;
    }
    .about-company__wrap {
	    width: calc(100% + 40px);
	    margin-left: -20px;
	    margin-right: -20px;
	}
	.about-company__wrap:before, .about-company__wrap:after {
		width: 20px;
	}
}

@media(max-width: 991px) {
    .about-company-in-right__img .about-company-in-img {
        width: 258px;
        transform: none !important;
    }

    .about-company-in-left__img {
        width: 350px;
        margin-top: 40px;
        margin-left: -75px;
        transform: none !important;
    }

    .about-company-in-right__text {
        margin-top: 40px;
        max-width: 100%;
    
        font-size: 16px;
    }

    .about-company-in-right__img {
        left: 75px;
    }

    .about-company-in {
        padding-top: 80px;
        padding-bottom: 100px;
    }
    
}

@media(max-width: 767px) {
    .about-company-in-left__img {
        width: 350px;
        margin-top: 62px;
    }
    
    .about-company-in-right__img .about-company-in-img {
        width: 219px;
    }
    
    .about-company-in-right__text {
        margin-top: 45px;
    }

    .about-company-in-right__img {
        left: 0;
    }
    .about-company__wrap {
	    width: 100%;
	    margin-left: 0px;
	    margin-right: 0px;
	}
	.about-company__wrap:before, .about-company__wrap:after {
		width: 0px;
	}
}

@media(max-width: 620px) {
    .about-company-in {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .about-company-in-right__text {
        margin-top: 30px;
        margin-bottom: 30px;
        max-width: none;
    }

    .about-company-in-left__img {
        width: 76.5%;
        margin-top: 0px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-company-in__right {
        padding-top: 0px;
    }

    .about-company-in__left,
    .about-company-in__right {
        width: 100%;
    }

    .about-company-in-right__img {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
    }

    .about-company-in__text {
        max-width: 80%;
    }
    
    .about-company-in-right__img .about-company-in-img {
        width: 85%;
    }

    .about-company-in-right__img:before {
        padding-top: 110%;
    }

    .about-company-in-right__img-1 {
        left: -15px;
    }

    .about-company-in-right__img-2 {
        right: -15px;
    }

}

@media(max-width: 420px) {
    .about-company-in-left__img {
        margin-left: 0;
    }

    .about-company-in__text {
        max-width: 100%;
    }

    .about-company-in-right__img {
        width: 100%;
    }
}


/**/


/*news*/
.about-news__wrap {
	position: relative;
}

.section__block a.main-news__item:hover {
	text-decoration: none;
}


.about-head__title {
	position: relative;
	overflow: hidden;
}
.about-head__title:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 200%;
	transform: translateY(-50%);
	background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100% );
	transition: 1s ease;
	
}
.anim-block--down.about-head__title:before {
	transition: none;
}
.anim-block--active.about-head__title:before,
.anim-block--down.about-head__title:before {
	transform: translateY(50%);
}

.about__main--color .h1 {
	position: relative;
	overflow: hidden;
}
.about__main--color .h1:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 200%;
	transform: translateY(-50%);
	background: linear-gradient(to top, rgba(97,63,195,1) 0%, rgba(97,63,195,1) 50%, rgba(97,63,195,0) 100% );
	transition: 1s ease;
}
.about__main--color .anim-block--down.h1:before {
	transition: none;
}
.about__main--color .anim-block--active.h1:before,
.about__main--color .anim-block--down.h1:before {
	transform: translateY(50%);
}