
@font-face {
	font-family: Manrope;
	src: url('../fonts/Manrope-Regular.ttf');
}
@font-face {
	font-family: Manrope Light;
	src: url('../fonts/Manrope-Light.ttf');
}
@font-face {
	font-family: Manrope ExtraLight;
	src: url('../fonts/Manrope-ExtraLight.ttf');
}
@font-face {
	font-family: Manrope Medium;
	src: url('../fonts/Manrope-Medium.ttf');
}
@font-face {
	font-family: Manrope SemiBold;
	src: url('../fonts/Manrope-SemiBold.ttf');
}
@font-face {
	font-family: Manrope Bold;
	src: url('../fonts/Manrope-Bold.ttf');
}
@font-face {
	font-family: Manrope ExtraBold;
	src: url('../fonts/Manrope-ExtraBold.ttf');
}

* {
	font-family: Manrope;
	box-sizing: border-box;
	color: #211F1F;
}
h1,h2,h3,h4,h5,h6 {
	margin: 0;
}
p,ul li{
	line-height: 1.4;
}

img{
	max-width: 100%;
	height: auto;
}
.wrapper {
	width: 100%;
	max-width: 100%;
	position: relative;
	min-height: 100vh;
	overflow: hidden;
}
.wrapper_container {
	display: flex;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	flex-direction: column;
	padding: 0 20px;
}
.header {
	width: 100%;
	height: 87px;
	background: rgba(255, 255, 255, 0.2);
	position: fixed;
	z-index: 100;
	display: flex;
	align-items: center;
	left: 0;
	transition: .3s;
	backdrop-filter: blur(5px);
	top: 0;
}
.header_container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	flex-direction: row;
}
.header_logotype > .header_logotype-img {
	height: 55px;
	width: 128px;
}
.header_menu {
	display: flex;
	align-items: center;
	list-style-type: none;
}
.header_menu-el {
	font-size: 18px;
	color: #211F1F;
	transition: .3s;
	font-family: Manrope SemiBold;
	text-decoration: none;
	margin-right: 48px;
}
.header_menu-el:hover {
	color: #6B5BC8;
}
.header_menu-el.btn {
	font-size: 18px;
	color: white;
	transition: 0.3s;
	margin-right: 0;
	height: 53px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	width: 233px;
	background: linear-gradient(0deg, rgba(47,39,99,1) 0%, rgba(93,82,138,1) 100%);
}
.header_menu-el.button:hover {}


.index-banner {
	width: 100%;
	position: relative;
	height: 100vh;
	background: url('../assets/ib-studio.jpg');
	display: flex;
	background-position: right;
	background-size: cover;
	padding-top: 200px;
}
.index-banner_content {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 800px;
}
.index-banner_headline {
	width: 100%;
	display: flex;
	flex-direction: column;
}
.index-banner_headline > .title, .index-banner_headline > .title span  {
	font-size: 102px;
	color: #211F1F;
	text-transform: uppercase;
	font-family: Manrope Bold;
	line-height: 130%;
}
.accent {
	color: #5239A1 !important;
}
.index-banner_headline > .description {
	font-size: 26px;
	line-height: 160%;
}
.index-banner-accent {
	margin-top: 24px;
	display: flex;
	align-items: center;
	width: 100%;
}
.index-banner-accent::before {
	content: '';
	position: static;
	width: 43px;
	height: 1px;
	background: #211F1F;
	margin-right: 13px;
}
.text-accent {
	font-size: 18px;
	line-height: 160%;
	font-family: Manrope SemiBold;
}

.button {
	width: 413px;
	height: 79px;
	transition: .3s;
	border-radius: 100px;
	position: relative;
	display: flex;
	align-items: center;
	text-decoration: none;
	border: 2px solid white;
	background: linear-gradient(0deg, rgba(47,39,99,1) 0%, rgba(93,82,138,1) 100%);
}
.index-banner_content .button {
	margin-top: 64px;
}
.button_arrow {
	box-sizing: border-box;
	border-radius: 50%;
	transition: .3s;
	border: 2px solid white;
	height: 79px;
	width: 79px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
}
.button > p {
	font-size: 20px;
	margin: 0;
	margin-left: 27px;
	color: white;
}


.button:hover {
	height: 88px;
}
.button:hover .button_arrow {
	height: 88px;
	width: 88px;
	transform: rotate(45deg);
}



.ib-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  border-bottom: ;
  max-width: 100%;
  height: 56px;
  overflow: hidden;
  border-bottom: 1px solid #211F1F;
  background: rgba(255, 255, 255, 0.4);
}

.ib-track {
  align-items: center;
  will-change: transform;
  animation: marquee 10s linear infinite;
}
.ib-track .ib-content {
	display: flex;
	align-items: center;
	white-space: nowrap;
}
.ib-track .ib-content .point {
	height: 10px;
	width: 10px;
	border-radius: 50%;
	background: #211F1F;
	margin: 0 32px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}





.section-block {
	padding: 115px 0;
	display: flex;
}
.gray {
	background: #E9E9E9 !important;
}
.section-title_h2 {
	font-size: 40px;
	line-height: 130%;
}
.section-title_h3 {
	font-size: 26px;
	line-height: 160%;
}
.section-text {
	display: flex;
	flex-direction: column;
	max-width: 700px;
}
.section-text * {
	margin-bottom: 16px;
}
.section-text > .text {
	margin-top: 0;
	font-size: 18px;
	font-family: Manrope SemiBold;
}
.pad-top-0 {
	padding-top: 0;
}


.work-stages {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 12px;
}
.work-stage {
	background: #F8F8F8;
	width: 49%;
	margin-bottom: 20px;
	padding: 24px 28px;
	display: flex;
	flex-direction: column;
}
.work-stage .step {
	margin-bottom: 28px;
	font-size: 18px;
	color: #CCCCCC;
}
.work-stage > p {
	margin-top: auto;
	display: flex;
	line-height: 160%;
}
.work-stages_target {
	margin-top: 12px;
	display: flex;
	align-items: center;
}
.work-stages_target > .divider {
	background: #5239A1;
	height: 1px;
	width: 76px;
	position: relative;
	margin-right: 18px;
}
.work-stages_target > .divider::before {
	content: '';
	height: 6px;
	width: 6px;
	position: absolute;
	right: 0;
	top: -3px;
	border-radius: 50%;
	background: #5239A1;
}

.dv-list {
	margin-top: 32px;
	width: 100%;
	max-width: 724px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.dv-list_el {
	display: flex;
	flex-direction: column;
	max-width: 354px;
	width: 100%;
	margin-bottom: 16px;
	margin-right: 16px;
	padding: 24px 28px;
	background: #F8F8F8;
	border-radius: 8px;
}
.dv-list_el:nth-child(even) {
	margin-right: 0;
}
.dv-list_el > img {
	width: 48px;
	margin-bottom: 56px;
}
.dv-container {
	display: flex;
	justify-content: space-between;
	width: 100%;
	position: relative;
}
.dv-container > img {
	position: absolute;
	top: 32px;
	height: calc(100% - 48px);
	border-radius: 8px;
	left: 740px;
}
.position-center {
	display: flex;
	justify-content: center;
}


.services-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-top: 40px;
}
.services-el {
	display: flex;
	width: 100%;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.39);
	border: 2px solid white;
	margin-bottom: 32px;
	justify-content: space-between;
}
.services-el-btn {
	padding: 0 23px;
	display: flex;
	align-items: center;
	width: 460px;
	background: rgba(255, 255, 255, 0.39);
	border-left: 2px solid white;
	border-radius: 8px 0 0 8px;
	margin-left: auto;
}
.services-el-info {
	padding: 0 44px 28px;
	display: flex;
	flex-direction: column;
	width: 100%;
}
.services-el-info_btns {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.services-el-info_btns > .btn {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	font-family: Manrope SemiBold;
}
.services-el-info_btns > .btn.service-title {
	background: linear-gradient(0deg, rgba(47,39,99,1) 0%, rgba(93,82,138,1) 100%);
	color: white;
	border-radius: 0 0 0 8px;
}
.services-el-info_btns > .btn.service-adress {
	background: rgba(204, 204, 204, 1);
	border-radius: 0 0 8px 0;
}
.services-el-info_content {
	display: flex;
	flex-wrap: wrap;
	padding-top: 32px;
	width: 100%;
	justify-content: space-between;
}
.services-el-info_content .list {
	width: 48%;
	margin: 0;
	padding-left: 20px;
}
.services-el-info_content .list li {
	margin-bottom: 12px;
	font-size: 18px;
	line-height: 160%;
}
.services-el-info_content .list li::marker {
	color: rgba(82, 57, 161, 1);
}
.services-el-info_content .list li:last-child {
	margin-bottom: 0;
}
.services-el-info_content > p {
	margin: 0;
	margin-bottom: 4px;
	line-height: 160%;
	font-size: 18px;
}
.services-el.not-bottom {
	margin-bottom: 0;
}

.ad-block {
	width: 48%;
	margin-bottom: 32px;
}
.ad-block .title {
	font-size: 20px;
	color: #5239A1;
	line-height: 130%;
	margin: 0 0 8px;
}
.ad-block .description {
	color: #CCCCCC;
}
.ad-block .text {
	line-height: 160%;
}
.medium {
	font-family: Manrope Medium;
}
.services-el-info_content .list.long {
	width: 100%;
}
.service-adress.first {
	border-radius: 0 0 8px 8px !important;
}


.case-menu {
	display: flex;
	align-items: center;
	margin: 40px 0;
	list-style-type: none;
}
.case-menu > li {
	font-size: 18px;
	margin-right: 40px;
	cursor: pointer;
	font-family: Manrope SemiBold;
}
.case-menu > li.active {
	color: #5239A1;
}
.cases-list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.cases-list-el {
	display: flex;
	flex-direction: column;
	width: 48%;
	height: auto;
	text-decoration: none;
	margin-bottom: 48px;
	background: #F8F8F8;
	padding: 24px;
	border-radius: 8px;
}
.cases-list-el_img {
	width: 100%;
	background: #E9E9E9;
	border-radius: 8px;
	display: flex;
	padding: 39px 52px;
}
.cases-list-el_img img {
	border-radius: 8px;
	width: 100%;
}
.case-info_title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 16px;
	transition: .3s;
}
.case-info_title > p {
	font-size: 18px;
	color: #CCC;
}
.case-info {
	color: #CCC;
	font-size: 18px;
	margin-top: 0;
	line-height: 160%;
	min-height: 120px;
}
.case-tags {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	margin-top: auto;
}
.case-tag {
	padding: 8px 10px;
	border-radius: 50px;
	color: #5239A1;
	font-size: 16px;
	border: 1px solid #5239A1;
	margin-right: 8px;
	margin-bottom: 8px;
}
.case-info_title .section-title_h3 {
	transition: .3s;
}
.cases-list-el:hover .case-info_title .section-title_h3 {
	color: #5239A1;
}
.case-lnk{
	display: flex;
	justify-content: center;
	margin: 0 0 1rem;
}


.button-list {
	padding: 26px 40px;
	display: flex;
	justify-content: center;
	width: fit-content;
	border-radius: 100px;
	border: 2px solid white;
	color: white;
	margin: 0 auto;
	cursor: pointer;
	font-family: Manrope SemiBold;
	background: linear-gradient(0deg, rgba(47,39,99,1) 0%, rgba(93,82,138,1) 100%);
}

.button-list img {
	transition: .3s;
	margin-left: 8px;
}
.button-list.active img {
	transform: rotate(-180deg);
}

.brifs-container {
	display: flex;
	align-items: center;
	width: 100%;
	margin-top: 16px;
	justify-content: space-between;
}
.infex-brif {
	display: flex;
	position: relative;
	flex-direction: column;
	width: 48%;
	align-items: center;
	padding: 40px 53px;
	background: rgba(255, 255, 255, 0.39);
	border: 2px solid white;
	text-decoration: none;
	height: 100%;
}
.infex-brif img {
	width: 100%;
}
.infex-brif .section-title_h3 {
	margin-top: 50px;
}
.brifs-list {
	width: 48%;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.brifs-list_el {
	padding: 40px 23px;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.39);
	border: 2px solid white;
	margin-bottom: 17px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.brifs-list_el .section-title_h3 {
	max-width: 80%;
	transition: 0.3s;
}
.brifs-list_el:last-child {
	margin-bottom: 0;
}
.adress-brif {
	min-width: 79px;
	min-height: 79px;
	opacity: 0;
	transition: 0.3s;
	max-width: 79px;
	max-height: 79px;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: rgba(82, 57, 161, 0.08);
	border: 1px solid #5239A1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.brifs-list_el:hover .section-title_h3 {
	color: #6B5BC8;
}
.brifs-list_el:hover .adress-brif {
	opacity: 1;
}
.infex-brif .adress-brif {
	position: absolute;
	right: 20px;
	bottom: 40px;
}
.infex-brif:hover .section-title_h3 {
	color: #6B5BC8;
}
.infex-brif:hover .adress-brif {
	opacity: 1;
}
.blog-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.blog-title_adress {
	font-size: 18px;
	transition: .3s;
	font-family: Manrope SemiBold;
}
.blog-title_adress:hover {
	color: #5239A1;
}



.blog-container {
	display: flex;
	width: 100%;
	justify-content: space-between;
	margin-right: 100px;
	margin-top: 32px;
}
.blog_el {
	display: flex;
	flex-direction: column;
	width: 48%;
	text-decoration: none;
}
.blog-info {
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	margin-top: 24px;
}
.blog-info__tags{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.blog-tag {
	display: flex;
	margin: 0 0.5rem 0.5rem 0;
	padding: 8px 10px;
	color: #5239A1;
	border-radius: 50px;
	border: 1px solid #5239A1;
}
.blog-date {
	color: #ccc;
	font-size: 18px;
	margin: 0 0 0.5rem 0;
}
.blog-el_title {
	font-size: 18px;
	font-family: Manrope SemiBold;
	line-height: 160%;
	transition: 0.3s;
	margin: 1rem 0;
}
.blog_el > img {
	border-radius: 8px;
	width: 100%;
} 
.blog_el:hover .blog-el_title {
	color: #5239A1;
}
.blog-page{
    margin: 1.5rem 0 0;
}
.blog-page__image{
    margin: 0 0 2.1rem;
}
.blog-page__image img{
	border-radius: 8px;
	margin-bottom: -5px;
}

.section-block.purple {
	background: linear-gradient(0deg, rgba(47,39,99,1) 0%, rgba(93,82,138,1) 100%);
}
.form-container {
	background: url('../assets/form-bg.png');
	padding-block: 40px;
	background-size: contain;
	min-height: 600px;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.form-info {
	display: flex;
	flex-direction: column;
	width: 45%;
	max-width: 410px;
	margin-left: 60px;
	margin-top: 100px;

}
.form-info * {
	color: white;
}
.form-info .text {
	font-family: Manrope SemiBold;
	line-height: 160%;
}
.form-application {
	height: 100%;
	padding: 34px 40px;
	display: flex;
	flex-direction: column;
	max-width: 560px;
	width: 48%;
	background: white;
	border-radius: 8px;
}


.form-application input {
	margin-bottom: 16px;
}
textarea {
	background: #FFFFFF;
	outline: none;
	border: 1px solid #CCCCCC;
	border-radius: 5px;
	padding: 18px 24px;
	font-size: 18px;
	resize: none;
	transition: .3s;
	min-height: 180px;
}
textarea::placeholder {
	color: #ccc;
	transition: .3s;
}
textarea:focus {
	border: 1px solid #211F1F;
}
textarea:focus::placeholder {
	color: #211F1F;
}
/* inputs */

input[type="text"] {
	background: #FFFFFF;
	outline: none;
	border: 1px solid #CCCCCC;
	border-radius: 5px;
	padding: 18px 24px;
	font-size: 18px;
	transition: .3s;
}
input[type="text"]::placeholder {
	color: #ccc;
	transition: .3s;
}
input[type="text"]:focus {
	border: 1px solid #211F1F;
}
input[type="text"]:focus::placeholder {
	color: #211F1F;
}
input[type="file"] {
	width: 0px;
	height: 0px;
	left: -99999px;
	top: -99999px;
	opacity: 0;
	z-index: -9999;
}


/* */

.agreement_form {
	display: flex;
	align-items: center;
	margin-top: 16px;
	width: 100%;
}
.agreement_form * {
	margin-top: 0;
	margin-bottom: 0;
	font-family: Manrope SemiBold;
}
input[type="checkbox"] {
	width: 0px;
	height: 0px;
	left: -99999px;
	top: -99999px;
	opacity: 0;
	z-index: -9999;
} 
.agreement_form_checkbox {
	height: 22px;
	border-radius: 3px;
	margin-right: 10px;
	width: 22px;
	border: 1.5px solid #ccc;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
input[type="checkbox"]:checked+label:before {
	content: '';
	width: 16px;
	display: flex;
	height: 16px;
	border-radius: 3px;
	background: #5239A1;
}
.form-application .button {
	margin-top: 24px;
	width: 100%;
	max-width: 410px;
	justify-content: center;
	color: white;
	cursor: pointer;
}
.form-application .button:hover {
	height: 79px;
}



.footer-container {
	display: flex;
	width: 100%;
	justify-content: space-between;
}
.footer-info {
	display: flex;
	flex-direction: column;
	width: 48%;
}
.footer-info_about {
	display: flex;
	width: 100%;
	align-items: flex-start;
	justify-content: space-between;
}
.footer-info_about .text-accent {
	margin: 0;
}
.footer-info_about .divider {
	height: 43px;
	width: 1px;
	background: #211F1F;
	margin: 0 24px;
}


.footer-info_contacts {
	display: flex;
	width: 100%;
	margin-top: 60px;
	justify-content: space-between;
}
.footer-info_contacts-list {
	display: flex;
	flex-direction: column;
	width: 48%;
}
.footer-contact_el {
	display: flex;
	align-items: flex-start;
	width: 100%;
	margin-bottom: 24px;
}
.footer-contact_el .text {
	margin: 0;
	font-family: Manrope SemiBold;
}
.footer-contact_el img {
	width: 24px;
	height: 24px;
	margin-right: 12px;
}
.footer {
	display: flex;
	flex-direction: column;
}
.footer-divider {
	margin-bottom: 70px;
	width: 100%;
	height: 1px;
	background: #ccc;
}
.footer-map {
	display: flex;
	width: 45%;
	height: 270px;
}

.mob {
	display: none;
}
.tablet {
	display: none;
}
.fixbar {
	display: none;
}



/* modal */

.modal-application {
	display: none;
	background: rgba(0, 0, 0, 0.3);
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 101;
	left: 0;
	top: 0;
	justify-content: center;
	align-items: center;
}
.modal-application.active {
	display: flex;
}
.modal-application_content {
	opacity: 1;
	transition: 0.3s;
	width: 540px;
	height: auto;
	background: white;
	padding: 72px 35px;
	position: relative;
	border-radius: 8px;
}
.modal-application_content .form-application {
	width: 100%;
	padding: 32px 0 0;
}
.modal-close {
	height: 48px;
	width: 48px;
	border: 1px solid #ccc;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 6px;
	right: 6px;
	cursor: pointer;
}


.crumbs {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	/* max-width: 600px; */
	color: #CCC;
	margin-bottom: 32px;
}
.crumb {
	color: #CCC;
	text-decoration: none;
}
.crumbs > img {
	margin: 0 12px;
}
.case_page {
	
	width: 100%;
	display: flex;
	flex-direction: column;
}
.case-page_task {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 32px;
}
.case-page_task_text {
	max-width: 660px;
	width: 100%;
}
.case-page_task_text > p {
	line-height: 160%;
}
.case-page_content {
	margin-top: 48px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.case-page_content img {
	margin-bottom: 48px;
}
.case-page_content img.long {
	width: 100%;
}
.case-page_content img.short {
	width: 48%;
}
.button.no-resize:hover {
	height: 79px;
} 
.button.no-resize:hover > .button_arrow {
	height: 79px;
	width: 79px;
}
.services-page {
	margin-top: 32px;
}
.services-page_el {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 64px 0;
	border-bottom: 1px solid #ccc;
}
.services-page_el:nth-child(even) {
	flex-direction: row-reverse;
}
.services-page_el:first-child {
	padding-top: 0;
}
.services-page_el:last-child {
	border-bottom: 0;
}
.services-page_el-text {
	width: 48%;
}
.services-page_el > img {
	width: 48%;
	border-radius: 8px;
}
.services-page_el-text > p {
	font-size: 18px;
	line-height: 140%;
	font-family: Manrope SemiBold;
}
.contacts-page {
	margin-top: 32px;
}
.contacts-map {
	width: 100%;
	margin-top: 40px;
	height: 450px;
}
.contacts-page_info {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.contacts-page_info_list {
	display: flex;
	flex-direction: column;
	width: 30%;
}
.contacts-list_el {
	display: flex;
	align-items: flex-start;
	width: 100%;
	margin-bottom: 8px;
}
.contacts-list_el:last-child {
	margin-bottom: 0;
}
.contacts-list_el img {
	width: 18px;
	height: 18px;
	margin-right: 8px;
}


.reviews-swiper {
	display: flex;
	margin-top: 48px;
	position: relative;
}
.reviews-swiper .swiper-slide {
	padding: 48px 40px;
	background: white;
}
.review-slide-img {
	height: 100px;
	width: 100%;
}
.review-slide-img img {
	width: auto;
	height: auto;
}
.review-slide-text {
	line-height: 160%;
	font-size: 18px;
}
.review-slide-name {
	font-size: 18px;
	color: #ccc;
	margin-top: 32px;
}
.swiper-button-prev:before,.swiper-button-prev:after,
.swiper-button-next:before,.swiper-button-next:after {
	display: none;
}
.swiper-button-prev, .swiper-button-next {
	background: white;
	border: 2px solid #5239A1;
	border-radius: 50%;
	width: 40px;
	transition: .3s;
	height: 40px;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
	background: #6B5BC8;
	border: 2px solid #6B5BC8;
}
.swiper-button-prev svg, .swiper-button-next svg, .swiper-button-prev svg path, .swiper-button-next svg path {
	width: 24px;
	transition: 0.3s;
}

.swiper-button-prev svg {
	transform: rotate(180deg);
}
.swiper-button-prev:hover svg path, .swiper-button-next:hover svg path{
	fill: white;
}
.swiper-button-prev {
	right: 60px;
	top: -72px;
	left: inherit !important;
}
.swiper-button-next {
	right: 0;
	top: -72px;
	left: inherit !important;
}


.brif-page {
	display: flex;
	width: 100%;
	justify-content: space-between;
	margin-top: 32px;
}
.brif-column {
	max-width: 480px;
	width: 48%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.brif-question {
	display: flex;
	width: 100%;
	margin-bottom: 48px;
	flex-direction: column;
}
.brif-question input {
	margin-top: 8px;
}
.brif-question .title {
	margin-top: 0;
	margin-bottom: 8px;
	color: #5239A1;
	font-size: 18px;
}
.brif-question .or {
	display: flex;
	margin: 8px 0;
	justify-content: space-between;
	width: 100%;
	align-items: center;
}
.brif-question .or > div {
	width: 100%;
	display: flex;
	height: 1px;
	background: #BAC2C6;
}
.brif-question .or > span {
	display: flex;
	margin: 0 8px;
	font-size: 16px;
	color: #BAC2C6;
}
.brif-question-check label {
	background: white;
}
.brif-question-check {
	display: flex;
	margin-top: 8px;
	align-items: center;
	margin-bottom: 8px;
}
.brif-question-check:last-child {
	margin-bottom: 0;
}
.brif-question-check > p {
	font-family: Manrope Medium;
	font-size: 16px;
	margin: 0;
}
.button-file {
	max-width: 419px;
	width: 100%;
	justify-content: center;
}
.button-file:hover {
	cursor: pointer;
	height: 79px;
}
.button-file:hover > .button_arrow {
	height: 79px;
	width: 79px;
	transform: none;
}
.button-file > .button_arrow {
	position: absolute;
	left: 0;
}
.button-file > p {
	margin: inherit;
	margin-left: 30px;
}

.text-uppercase{
	text-transform: uppercase !important;
}

@media screen and (max-width: 1024px) {
	.index-banner_headline > .title, .index-banner_headline > .title span {
		font-size: 64px;
	}
	.index-banner {
		background-position: 75%;
	}
	.index-banner_content {
		max-width: 550px;
	}
	.header_menu {
		display: none;
	}
	.header.active {
		background: white;
	}
	.burger.tablet {
		display: flex;
		width: 48px;
		height: 48px;
		background: white;
		border-radius: 3px;
		align-items: flex-end;
		padding: 0 12px;
		justify-content: center;
		flex-direction: column;
		cursor: pointer;
	}
	.burger.tablet > div:nth-child(even) {
		width: 16px;
		height: 2px;
		background: #211F1F;
		margin: 2px 0;
		transition: 0.3s;
	}
	.burger.tablet > div:nth-child(odd) {
		width: 24px;
		margin: 2px 0;
		transition: 0.3s;
		height: 2px;
		background: #211F1F;
	}
	.burger.active {
		border: 1px solid #CCCCCC;
	}
	.burger.active div {
		transition: .3s;
	}
	.burger.active div:nth-child(even) {
		width: 0px;
		height: 0px;
	}
	.burger.active div:nth-child(1) {
		transform: rotate(45deg) translate(5px, 4px);
	}
	.burger.active div:nth-child(3) {
		transform: rotate(-45deg) translate(3px, -1px);
	}


	.fixbar {
		position: fixed;
		top: -1000px;
		background: white;
		width: 100%;
		height: 400px;
		transition: .3s;
		display: flex;
		z-index: 99;
		padding: 32px 0;
	}
	.fixbar.active {
		top: 87px;
	}
	.fixbar .header_menu {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		height: 100%;
	}
	.fixbar .header_menu li {
		width: fit-content;
		font-size: 28px;
		margin-bottom: 16px;
	}
	.fixbar .header_menu li:last-child {
		margin-top: auto;
		display: flex;
	}
	.services-el {
		flex-direction: column;
	}
	.services-el-btn {
		background: none;
		border: none;
		margin: 16px 0;
	}
	.form-container {
		background: none;
		flex-direction: column;
	}
	.form-info {
		margin: 0;
		width: 100%;
		max-width: 100%;
	}
	.form-application {
		margin-top: 24px;
		width: 100%;
		max-width: 100%;
	}
	.footer-container {
		display: flex;
		flex-direction: column;
	}
	.footer-info {
		width: 100%;
	}
	.footer-map {
		width: 100%;
		height: 360px;
	}
	.dv-container > img {
		display: none;
	}
	.services-page_el {
		flex-direction: column !important;
	}
	.services-page_el-text {
		width: 100%;
		margin-bottom: 24px;
	}
	.services-page_el > img {
		width: 100%;
	}
	.brif-question textarea {
		height: 260px;
	}
}
@media screen and (max-width: 769px) {
	.dv-list {
		max-width: 100%;
	}
	.brifs-container {
		flex-wrap: wrap;
	}
	.infex-brif {
		width: 100%;
	}
	.brifs-list {
		width: 100%;
	}
	.infex-brif {
		height: auto;
		padding: 40px 23px;
		flex-direction: row;
		margin-bottom: 17px;
	}
	.infex-brif .section-title_h3 {
		margin-top: 0;
		max-width: 80%;
	}
	.infex-brif .adress-brif {
		position: static;
		opacity: 1;
		margin-left: auto;
	}
	.adress-brif {
		opacity: 1;
		height: 48px;
		width: 48px;
		min-height: 48px;
		min-width: 48px;
	}
	.infex-brif img {
		display: none;
	}
	.header_menu-el.btn {
		border-radius: 50px !important;
	} 
	.dv-list_el {
		width: 48%;
	}
	.cases-list-el {
		width: 100%;
	}
	.contacts-page_info {
		flex-wrap: wrap;
	}
	.contacts-page_info_list {
		margin-bottom: 24px;
		width: 48%;
	}
	.contacts-page_info_list:last-child {
		margin-bottom: 0;
	}
	.brif-page {
		flex-wrap: wrap;
	}
	.brif-column {
		width: 100%;
		max-width: 100%;
	}

}
@media screen and (max-width: 480px) {
	.header {
		background: rgba(255, 255, 255, 0.5);
	}
	.header_menu {
		display: none;
	}

	.index-banner {
		margin-top: 87px;
		height: 400px;
		padding-top: 0;
		align-items: center;
		background-position: 75%;
	}
	.index-banner .wrapper_container {
		align-items: center;
	}
	.index-banner_headline > .title, .index-banner_headline > .title span {
		font-size: 38px;
	}
	.ib-marquee {
		background: rgba(255, 255, 255, 0.5);
		border-bottom: 0;
	}
	.index-banner_content .button {
		width: 100%;
	}
	.index-banner_content .button:hover {
		height: 79px;
	}
	.index-banner_content .button:hover .button_arrow {
		height: 79px;
		width: 79px;
	}
	.index-banner_headline > .description {
		font-size: 20px;
		max-width: 270px;
		margin-bottom: 80px;
	}
	.desk {
		display: none;
	}
	.gray {
		background: #E9E9E9;
	} 
	.button {
		width: 100%;
	}
	.button:hover {
		height: 79px;
	}
	.button:hover .button_arrow {
		height: 79px;
		width: 79px;
	}

	.mob {
		display: flex;
	}
	.ib-mob-text .button {
		margin-top: 24px;
	}
	.section-block {
		padding: 80px 0 0;
	}
	.section-title_h2 {
		font-size: 28px;
	}
	.section-title_h3 {
		font-size: 20px;
	}
	.work-stage {
		width: 100%;
	}
	.work-stages_target > .divider {
		width: 125px;
	}
	.mob-gray {
		background: #E9E9E9;
	}
	.dv-container > img {
		display: none;
	}
	.dv-list_el {
		max-width: 100%;
		width: 100%;
		margin-right: 0;
	}
	.services-el {
		flex-direction: column;
	}
	.services-el-btn {
		padding: 0;
	}
	.services-el-info {
		padding: 0;
	}
	.services-el {
		background: none;
		border: none;
	}
	.services-el-btn {
		width: 100%;
		margin-top: 24px;
		border: none;
		background: none;
	}
	.services-el-info_btns {
		flex-direction: column;
		width: 100%;
	}
	.btn.service-title {
		width: 100%;
	}
	.btn.service-adress {
		width: 100%;
	}
	.btn {
		border-radius: 0 0 8px 8px !important;
	}
	.ad-block {
		width: 100%;
	}
	.services-el.not-bottom {
		padding-bottom: 24px;
	}
	.cases-list-el {
		width: 100%;
	}
	.m-hide {
		display: none;
	}
	.brifs-container {
		flex-wrap: wrap;
	}
	.infex-brif {
		width: 100%;
	}
	.brifs-list {
		width: 100%;
	}
	.infex-brif {
		height: auto;
		padding: 40px 23px;
		flex-direction: row;
		margin-bottom: 17px;
	}
	.infex-brif .section-title_h3 {
		margin-top: 0;
		max-width: 80%;
	}
	.infex-brif .adress-brif {
		position: static;
		opacity: 1;
		margin-left: auto;
	}
	.adress-brif {
		opacity: 1;
		height: 48px;
		width: 48px;
		min-height: 48px;
		min-width: 48px;
	}
	.infex-brif img {
		display: none;
	}
	.blog-title {
		flex-direction: column;
		align-items: flex-start;
	}
	.blog-title_adress {
		margin-top: 16px;
	}
	.blog_el {
		width: 100%;
		margin-bottom: 16px;
	}
	.blog-container {
		flex-direction: column;
		padding-bottom: 80px;
	}
	.form-container {
		background: none;
		display: flex;
		flex-direction: column;
	}
	.form-info {
		margin-left: 0;
		width: 100%;
		margin-top: 0;
	}
	.form-application {
		width: 100%;
		padding: 32px 15px;
	}
	.footer-container {
		flex-direction: column;
	}
	.footer-info_about .text-accent {
		font-size: 12px;
	}
	.footer-info {
		width: 100%;
		padding: 0 20px;
	}
	.footer-container {
		padding-bottom: 80px;
	}
	.footer-map {
		width: 100%;
		margin-top: 24px;
	}
	.footer .wrapper_container {
		padding: 0;
	}
	.footer-info_contacts  {
		padding: 0 20px;
		margin-top: 24px;
		flex-direction: column;
	}
	.section-block.purple {
		padding: 80px 0;
	}
	.footer-info_contacts-list {
		width: 100%;
	}
	.fixbar {
		height: calc(100vh - 87px);
	}
	.header_menu-el {
		font-size: 28px;
	}
	.fixbar .header_menu li:last-child {
		margin-top: 16px;
		width: 100%;
	}
	.header_menu-el.btn {
		width: 100%;
	}
	.crumbs {
		margin-top: 48px;
	}
	.contacts-page {
		margin-bottom: 80px;
	}
	.contacts-page_info_list {
		width: 100%;
	}
	.reviews-swiper .swiper-slide {
		padding: 32px 20px;
	}
	.review-slide-img {
		height: auto;
	}
	.review-slide-text {
		font-size: 16px;
	}
	.modal-application_content {
		height: 100%;
		border-radius: 0;
	}
	.swiper-button-next, .swiper-button-prev {
		top: -65px;
	}
}