/* Employee information */
.box-employee-info {
	background: #fff;
	border-radius: 25px;
	padding: 40px;
}

.box-employee-info_avatar {
	width: 160px;
    height: 180px;
    border-radius: 25px;
}

.box-employee-info_name {
	font-size: 32px;
    font-weight: 400;
	margin-bottom: 30px;
	width: 200px;
}

.box-employee-info_job-title {
	font-size: 16px;
    font-weight: 400;
	line-height: 150%;
	margin-top: 20px;
}

.box-employee-info_phone {
	font-size: 32px;
    font-weight: 400;
	line-height: 150%;
	margin-top: 20px;
}

.box-employee-info_email {
	font-size: 22px;
    font-weight: 400;
	line-height: 150%;
	margin-top: 20px;
}

.box-employee-info_btn {
	width: 100%;
	margin-top: 30px;
}

/* Characteristics */
.box-characteristics_table {
	padding: 40px;
    background: transparent;
    gap: 40px;
	margin-top: 40px;
}
.box-characteristics_table-item {
	height: 60px;
    background-color: #fff;
}

.box-characteristics_table-item:nth-child(even) {
    background-color: #EFEDED;
}

/* Other services */
.box-other-services {
	display:flex;
	flex-direction: column;
	margin-top: 80px;
}
.box-other-services_item {
	padding: 20px;
    border-radius: 25px;
	display: flex;
    gap: 60px;
	gap: 20px;
	margin-top:20px;
}

.box-other-services_item.brown {
    background-color: var(--brown)
}

.box-other-services_item.salad {
    background-color: var(--salad)
}

.box-other-services_item.gray {
    background-color: var(--gray)
}

.box-other-services_item.purple {
    background-color: var(--purple)
}

.box-other-services_item-img {
	min-width: 160px;
    width: 160px;
    height: 160px;
    border-radius: 22px;
    overflow: hidden;
}
.box-other-services_item-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
}

.box-other-services_item-text {
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
}


/* Know more */
.box-know-more {
	background: #DADCE1;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
	margin-top: 50px;
}
.box-know-more_img {
	position: absolute;
	top: 0;
	right: 0;
	max-width: 100%;
	height: 100%;
}
.box-know-more_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top right;
}
.box-know-more_inner {
	/*max-width: 69%; */
	padding: 50px;
	position: relative;
	z-index: 2;
	display: flex;
	gap: 20px;
}
.box-know-more_inner > div:first-child {
	max-width: 550px;
}
.box-know-more_inner h2 {
	font-size: 30px;
	line-height: 120%;
	font-weight: 600;
	margin: 0;
}
.box-know-more_btn {
	margin-top: 30px;
}
.box-know-more_inner p {
	font-size: 20px;
	line-height: 120%;
	font-weight: 400;
	margin: 15px 0 0!important;
}

.box-know-more.small .box-know-more_inner {
	padding: 15px 30px;
	align-items: center;
}

.box-know-more.small .box-know-more_inner h3 {
	font-size: 24px;
	line-height: 120%;
	font-weight: 600;
	margin: 0;
}

.box-know-more.small .box-know-more_inner {
	gap: 50px;
}

.box-know-more.small .box-know-more_bt {
	margin: 0;
}
.box-know-more.small .box-know-more_inner-center {
	display:flex;
	gap: 100px;
	align-items: center;
}

.box-know-more.small .box-know-more_inner-right {
	text-align: center;
    flex: auto;
	font-size: 16px;
	color: #fff;
}

[dir=rtl] .box-know-more_img {
	transform: scale(-1, 1);
	right: auto;
	left: 0;
}

@media screen and (max-width: 1400px) {
	.box-know-more {
		margin-top: 25px;
	}
	.box-know-more_inner {
		max-width: 100%; 
	}
	
	.box-know-more_img {
		opacity: 0.5;
	}
	
	
}
@media screen and (max-width: 992px) {
	.box-know-more.small .box-know-more_inner {
		gap: 15px;
		flex-direction: column;
	}
}


/* Article dates */
.box-article-dates {
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
  font-size: 14px;
  color: #444;
  display: flex;
  gap: 10px 30px;
  flex-wrap: wrap;
  margin-bottom: 25px;
  font-family: sans-serif;
}

.box-article-dates span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.box-article-dates div {
	width: 100%;
}
.box-article-dates a {
	color: #0D99FF;
}


/* Tabs */
.box-tabs {
    position: relative;
}

.box-tabs-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    outline: 1px solid var(--darkgray);
    border-radius: 15px;
    overflow: hidden;
	margin: 0 115px;
}

.box-tabs_btn {
    padding: 23px 29px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    color: var(--black);
    background-color: transparent;
    border-right: 1px solid var(--darkgray);
    cursor: pointer;
}

.box-tabs_btn.active {
    background-color: var(--gray);
}
.box-tabs_btn:last-child {
    border-right: 0;
}

.box-tab_container {
    margin-top: 30px;
}

/* Name area */
.box-name-area {
    margin-top: 20px;
    font-weight: 700;
    font-size: 12px;
    line-height: 120%;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #9fa8b0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: .5em;
}

/* Detail info */
.box-detail-info {
	display: flex;
	flex-direction: column;
	gap: 30px;
	font-size: 18px;
	line-height: 120%;
	margin-top: 40px;
}

.box-detail-info span {
	display: flex;
	gap: 15px;
}

.box-detail-info a {
	color: #0D99FF;
}

.box-detail-row {
	display: flex;
	gap: 30px;
	margin-top: 50px;
}

.box-detail_label {
    color: var(--black);
    font-size: 24px;
    font-weight: 500;
    z-index: 2;
    padding: 5px 40px 5px 25px;
    padding-right: 30px;
    position: relative;
    background-color: var(--salad);
    -webkit-clip-path: polygon(100% 0, calc(100% - 15px) 50%, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(100% 0, calc(100% - 15px) 50%, 100% 100%, 0 100%, 0 0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

/* Card paymen */
.box-card-payment {
    padding: 10px 30px;
    border-radius: 50px;
    border: 1px solid var(--darkgray);
    text-align: center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--darkgray);
	display: flex;
	gap: 14px;
}

/* Leave review */
.box-leave-review {
	display: flex;
	align-items: center;
	gap: 150px;
	margin-top: 100px;
}
.box-leave-review_image {
	border-radius: 25px;
	position: relative;
	width: 50%;
}
.box-leave-review_image img {
	width: 100%;
}
.box-qr-code {
	position: absolute;
	top: 50%;
	right: -75px;
	transform: translateY(-50%);
	max-width: 40%;
}
.box-leave-review_content {
	width: 50%;
}
.box-leave-review h2 {
	font-weight: 600;
	font-size: 48px;
	line-height: 120%;
}

.box-leave-review p {
	font-weight: 400;
	font-size: 24px;
	line-height: 150%;
	margin-top: 15px;
}

.box-leave-review_logos {
	display: flex;
	gap: 50px;
	margin: 40px 0;
}
.box-leave-review_btns {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-top: 27px;
}
.box-leave-review_btns .box-socials-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

[dir=rtl] .box-qr-code {
	right: auto;
	left: -75px;
}

@media screen and (max-width: 1200px) {
	.box-leave-review {
		flex-direction: column;
		gap: 50px;
	}
	.box-leave-review_content,
	.box-leave-review_image {
		width: 100%;
	}
	.box-leave-review_image  {
		padding-right: 75px;
	}
	.box-qr-code {
		right: 0;
	}
	
	[dir=rtl] .box-leave-review_image  {
		padding-right: 0;
		padding-left: 75px;
	}
	[dir=rtl] .box-qr-code {
		right: auto;
		left: 0;
	}
}

/* Box hero */
.box-hero-2 {
	margin-bottom: 100px;
}
.box-hero-2 .hero__bg {
	right: 0;
}
.box-hero-2 .hero__bg:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: #00000080;
	background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.box-hero-2 .hero-title {
    padding-top: 70px;
    font-weight: 600;
	font-size: 64px;
	line-height: 110%;
	text-align: center;
    max-width: 850px;
    color: #fff;
	margin: auto;
}

.box-hero-2 .hero-subtitle {
    margin: 30px auto 0;
    font-weight: 600;
    font-size: 24px;
    line-height: 110%;
    max-width: 850px;
    color: #fff;
	text-align: center;
}
.box-hero-2 .hero__block-btns {
	margin-top: 40px;
}
/* Filter */
.box-filter-search {
	margin: 0;
}
.box-filter-search .offers__filter-inner {
	padding: 40px;
}

.box-filter-search .offers__filter-item.select-item {
	flex-basis: 425px;
}
.box-filter-search .offers__filter-item.btn-item {
	flex: 137px;
}
.box-filter-search .select2-results__options[aria-multiselectable="true"] li {
    padding-left: 30px;
    position: relative
}

.box-filter-search .select2-results__options[aria-multiselectable="true"] li:before {
    position: absolute;
    left: 8px;
    opacity: .6;
    top: 6px;
    font-family: "FontAwesome";
    content: "\f0c8";
}

.box-filter-search .select2-results__options[aria-multiselectable="true"] li[aria-selected="true"]:before {
    content: "\f14a";
}


.box-questions {
	margin-top: 60px;
}
.box-questions h2 {
	font-weight: 600;
	font-size: 30px;
	line-height: 120%;
	text-align: center;
}
.box-questions p {
	font-weight: 400;
	font-size: 30px;
	line-height: 120%;
	text-align: center;
	margin-top: 30px;
}
.box-questions-wrapper {
	display: flex;
	gap: 70px;
	margin-top: 40px;
}
.box-questions_col {
	display: flex;
	gap: 30px;
	flex-direction: column;
	flex: 1;
}
.box-questions_item {
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    padding: 45px 30px;
    border-radius: 25px;
	font-weight: 400;
	font-size: 20px;
	line-height: 120%;
}

.box-questions_item.brown {
    background-color: var(--brown)
}

.box-questions_item.salad {
    background-color: var(--salad)
}

.box-questions_item.gray {
    background-color: var(--gray)
}

.box-questions_item.purple {
    background-color: var(--purple)
}

.box-questions_item-icon {
    border-radius: 50%;
    min-width: 64px;
    width: 64px;
    height: 64px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.box-questions .video {
	margin-top: 0;
	min-width: 750px;
}

.box-questions_col p {
	font-weight: 400;
	font-size: 16px;
	line-height: 120%;
	text-align: center;
	margin: 0;
}