@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap');

/* Common */
html, body {
	font-family: "Manrope", sans-serif;
	font-weight: 400;
	fill-size: 16px;
	line-height: 1.25;
	color: #22323F;
}

.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: "Tenor Sans", sans-serif;
	font-weight: 400;
	margin-bottom: 0;
	color: #22323F;
}

/* Header */
.header {
	background-color: #22323F;
}

.header__logo {
	max-width: 101px;
	max-height: 50px;
}

.header .nav-link {
	color: #FFFFFF;
}

.header .nav-link:hover {
	color: #B6BBBF;
}

.header .navbar-toggler {
	box-shadow: none;
}

.header__phone {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__phone-icon {
	max-width: 20px;
	max-height: 16px;
	margin-right: 5px;
}

/* Banner */
.banner {
	background-image: url("../assets/images/banner_background.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding-top: 150px;
	padding-bottom: 150px;
	overflow: hidden;
}

.banner .h1 {
	margin-bottom: 50px;
	z-index: 1;
}

.banner .h4 {
	margin-bottom: 50px;
	z-index: 1;
}

.banner .btn {
	background-color: #22323F;
	padding: 20px 50px;
	border-radius: 30px;
	border: none;
	color: #FFFFFF;
	max-width: max-content;
	z-index: 1;
}

.banner .btn:hover, .banner .btn:active, .banner .btn:focus {
	background-color: #576570;
	color: #FFFFFF;
}

/* Statistics */
.statistics {
	padding-top: 55px;
	padding-bottom: 55px;
}

.statistics__title {
	margin-bottom: 55px;
}

.statistics__item {
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: start;
	font-family: "Tenor Sans", sans-serif;
}

.statistics__item-num {
	font-size: 100px;
	height: 125px;
	display: flex;
	justify-content: center;
	align-items: start;
}

.statistics__item-num {
	font-size: 100px;
}

.statistics__item-num_sm {
	font-size: 44px;
}

.statistics__item-desc {
	font-size: 22px;
}

/* Services */
.services {
	background-color: #F2F3F5;
	padding-top: 55px;
	padding-bottom: 55px;
}

.services__title {
	margin-bottom: 50px;
}

.services__item-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 50px;
}

.services__item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	border: 2px solid #22323FCC;
	border-radius: 20px;
	box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.25);
	padding-top: 40px;
	padding-bottom: 40px;
	height: 450px;
	transition: box-shadow 200ms ease-in-out;
}

.services__item:hover {
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
}

.services__item:nth-child(1) {
	background-image: url("../assets/images/services/service_1.png");
}

.services__item:nth-child(2) {
	background-image: url("../assets/images/services/service_2.png");
}

.services__item:nth-child(3) {
	background-image: url("../assets/images/services/service_3.png");
}

.services__item:nth-child(4) {
	background-image: url("../assets/images/services/service_4.png");
}

.services__item:nth-child(5) {
	background-image: url("../assets/images/services/service_5.png");
}

.services__item:nth-child(6) {
	background-image: url("../assets/images/services/service_6.png");
}

.services__item:nth-child(7) {
	background-image: url("../assets/images/services/service_7.png");
}

.services__item:nth-child(8) {
	background-image: url("../assets/images/services/service_8.png");
}

.services__item:nth-child(9) {
	background-image: url("../assets/images/services/service_9.png");
}

.services__item-title {
	font-size: 22px;
	font-weight: 700;
	text-align: center;
}

.services__item .btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #22323F;
	color: #FFFFFF;
	border-radius: 30px;
	padding: 10px 75px;
	position: relative;
	border: none;
	margin: 0;
}

.services__item .btn:hover, .services__item .btn:active, .services__item .btn:focus {
	background-color: #576570;
	color: #FFFFFF;
}

.services__item .btn-icon {
	position: absolute;
	width: 34px;
	height: 34px;
	right: 5px;
}

.service__item-modal .modal-header {
	padding-top: 0;
	padding-bottom: 20px;
}

.service__item-modal .modal-body {
	padding-top: 0;
	padding-bottom: 0;
}

.service__item-modal .modal-footer {
	padding-top: 20px;
	padding-bottom: 0;
}

.service__item-modal .modal-title {
	font-family: "Tenor Sans", sans-serif;
	font-size: 25px;
	max-width: 90%;
}

.service__item-modal .btn-close {
	position: absolute;
	top: 25px;
	right: 25px;
}

.service__item-modal .modal-content {
	font-size: 22px;
	font-weight: 300;
	padding: 50px 10px;
}

.service__item-modal .btn {
	padding: 10px 50px
}

/* Consultation */
.consultation {
	background-image: url("../assets/images/consultation_background.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding-top: 55px;
	padding-bottom: 55px;
}

.consultation_2 {
	background-image: url("../assets/images/consultation_background_2.png");
}

.consultation__title {
	margin-bottom: 25px;
}

.consultation__subtitle {
	margin-bottom: 10px;
}

.consultation__form .form-control {
	outline: none;
	box-shadow: none;
	background: none;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #22323F;
}

.consultation__form .form-label {
	color: #333333;
}

.consultation__form .form-check-input {
	outline: none;
	box-shadow: none;
	border-radius: 0;
	border-color: #22323F;
}

.consultation__form .form-check-input:checked {
	background-color: #22323F;
}

.consultation__form .btn {
	background-color: #22323F;
	color: #FFFFFF;
	border-radius: 30px;
	padding: 15px 100px;
	font-size: 18px;
	font-weight: 700;
	border: none;
}

.consultation__form .btn:hover, .consultation__form .btn:active, .consultation__form .btn:focus {
	background-color: #576570;
	color: #FFFFFF;
}

.consultation__photo {
	max-width: 100%;
	max-height: 100%;
}

/* Clients */
.clients {
	background-color: #E1E0DF;
	padding-top: 55px;
	padding-bottom: 55px;
}

.clients__title {
	margin-bottom: 50px;
}

.clients .card {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
	border-radius: 20px;
	border: none;
	overflow: hidden;
	height: 100%;
	transition: box-shadow 200ms ease-in-out;
}

.clients .card:hover {
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
}

.clients .card-body {
	padding: 50px 25px;
	text-align: center;
}

.clients .card-title {
	margin-bottom: 15px;
	font-size: 22px;
	color: #22323F;
}

.clients .card-text {
	color: #22323F;
}

/* Experts */
.experts {
	padding-top: 55px;
	padding-bottom: 55px;
}

.experts__title {
	margin-bottom: 20px;
}

.experts__subtitle {
	margin-bottom: 50px;
}

.experts .carousel-inner {
	padding-bottom: 10px;
}

.experts .card {
	box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	border: none;
	width: 100%;
	height: 890px;
}

.experts .card-body {
	display: flex;
	flex-direction: column;
}

.experts .card-title {
	font-size: 30px;
	color: #22323F;
	margin-bottom: 10px;
}

.experts .card-subtitle {
	font-size: 22px;
	color: #22323F;
	margin-bottom: 20px;
}

.experts .card-text {
	font-size: 16px;
	color: #22323F;
	margin-bottom: 30px;
	flex: auto;
}

.experts .card .btn {
	background-color: #22323F;
	color: #FFFFFF;
	border-radius: 30px;
	border: 0;
	width: 100%;
	padding: 15px;
	margin-bottom: 15px;
}

.experts .card .btn:hover, .experts .card .btn:active, .experts .card .btn:focus {
	background-color: #576570;
	color: #FFFFFF;
}

.experts .carousel-control-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #22323F;
	border-radius: 50%;
	width: 40px;
	height: 40px;
}

.experts .carousel-control-prev, .experts .carousel-control-next {
	width: 60px;
	height: 890px;
}

.experts .carousel-control-prev-icon, .experts .carousel-control-next-icon {
	width: 20px;
	height: 20px;
}

/* Conditions */
.conditions {
	background-color: #F2F3F5;
	padding-top: 55px;
	padding-bottom: 55px;
}

.conditions__title {
	margin-bottom: 50px;
}

.conditions__photo {
	max-width: 100%;
	max-height: 100%;
}

.conditions__list {
	display: flex;
	flex-direction: column;
	gap: 25px;
	height: 100%;
}

.conditions__item {
	display: flex;
	justify-content: start;
	align-items: center;
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	padding: 15px 25px;
	transition: box-shadow 200ms ease-in-out;
	cursor: default;
	flex: auto;
	background-color: #FFFFFF;
}

.conditions__item:hover {
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.25);
}

.conditions__icon {
	width: 48px;
	height: 48px;
	margin-right: 25px;
}

.conditions__desc {
	font-size: 22px;
}

/* Answers */
.answers {
	background-image: url("../assets/images/answers_background.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding-top: 55px;
	padding-bottom: 55px;
}

.answers__img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 20px;
}

.answers__title {
	margin-bottom: 30px;
}

.answers .accordion-item {
	border-radius: 0;
	border: none;
	border-bottom: 1px solid #53555E;
	background: none;
}

.answers .accordion-button {
	cursor: pointer;
	background: none;
	border: none;
	box-shadow: none;
	font-size: 16px;
	color: #333333;
	padding: 15px 0;
}

.answers .accordion-collapse {
	border-radius: 0;
	border: none;
}

.answers .accordion-body {
	padding: 0;
}

.answers__accordion__btn__text {
	margin-right: 25px;
}

.answers__accordion__text {
	font-size: 14px;
	color: #333333;
	line-height: 1.5;
	margin-bottom: 15px;
}

/* Contacts */
.contacts {
	padding-top: 55px;
	padding-bottom: 55px;
	background-color: #F2F3F5;
}

.contacts__title {
	margin-bottom: 50px;
}

.contacts__list {
	display: flex;
	flex-direction: column;
}

.contacts__item {
	display: flex;
	justify-content: start;
	align-items: center;
	margin-bottom: 30px;
}

.contacts__item__icon {
	width: 30px;
	height: 30px;
	margin-right: 10px;
}

.contacts__item__desc {
	font-size: 26px;
	color: #333333;
}

/* Footer */
.footer {
	background-color: #22323F;
	color: #FFFFFF;
	padding-top: 25px;
	padding-bottom: 25px;
}

.footer__col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	height: 100%;
}

.footer__logo {
	max-width: 150px;
	max-height: 70px;
	margin-bottom: 10px;
}

.footer__link {
	display: flex;
	font-size: 18px;
	color: #FFFFFF;
	text-decoration: none;
	margin-bottom: 15px;
}

.footer__link:hover {
	color: #B6BBBF;
}

.footer__text {
	display: flex;
	font-size: 18px;
	margin-bottom: 15px;
}

.footer__copy_mob {
	display: none;
}

/* Policy */
.policy__title {
	margin-top: 50px;
	margin-bottom: 50px;
	text-align: center;
}

.policy__text {
	margin-bottom: 50px;
}

/* Consultation Modal */
.consultation-modal .modal-content {
	border-radius: 20px;
}

.consultation-modal .modal-header {
	padding: 30px;
}

.consultation-modal .modal-title {
	font-family: "Tenor Sans", sans-serif;
	font-size: 44px;
	max-width: 90%;
	line-height: 1;
}

.consultation-modal .modal-subtitle {
	font-family: "Tenor Sans", sans-serif;
	font-size: 18px;
	padding: 0 30px
}

.consultation-modal .btn-close {
	position: absolute;
	top: 25px;
	right: 25px;
}

.consultation-modal .modal-body {
	padding: 30px;
}

.consultation-modal .form-control {
	outline: none;
	box-shadow: none;
	background: none;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #22323F;
}

.consultation-modal .form-label {
	color: #333333;
}

.consultation-modal .form-check-input {
	outline: none;
	box-shadow: none;
	border-radius: 0;
	border-color: #22323F;
}

.consultation-modal .form-check-input:checked {
	background-color: #22323F;
}

.consultation-modal .btn {
	background-color: #22323F;
	color: #FFFFFF;
	border-radius: 30px;
	padding: 15px 100px;
	font-size: 18px;
	font-weight: 700;
	border: none;
}

.consultation-modal .btn:hover, .consultation-modal .btn:active, .consultation-modal .btn:focus {
	background-color: #576570;
	color: #FFFFFF;
}

/* Media */
@media (min-width: 1200px) {
	.h1 {
		font-size: 48px;
	}

	.h2 {
		font-size: 44px;
	}

	.h3 {
		font-size: 40px;
	}

	.h4 {
		font-size: 22px;
	}
}

@media (max-width: 991px) {
	/* Common */
	.h1 {
		font-size: 24px;
	}

	.h4 {
		font-size: 20px;
	}

	/* Header */
	.header__phone {
		justify-content: start;
	}

	/* Banner */
	.banner {
		position: relative;
		background-image: url("../assets/images/banner_background_mobile.png");
		padding-top: 35px;
		padding-bottom: 35px;
	}

	.banner::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.5);
		z-index: 0;
	}

	.banner .h1 {
		margin-bottom: 25px;
		text-align: center;
		color: #FFFFFF;
	}

	.banner .h4 {
		margin-bottom: 25px;
		text-align: center;
		color: #FFFFFF;
	}

	/* Statistics */
	.statistics {
		padding-top: 35px;
		padding-bottom: 35px;
	}

	.statistics__title {
		margin-bottom: 25px;
		text-align: center;
	}

	.statistics__item {
		justify-content: start;
		align-items: center;
		margin-bottom: 25px;
	}

	/* Services */
	.services {
		padding-top: 35px;
		padding-bottom: 35px;
	}

	.services__title {
		margin-bottom: 25px;
		text-align: center;
	}

	.services__item-list {
		grid-template-columns: 1fr;
		grid-gap: 20px;
	}

	/* Consultation */
	.consultation {
		padding-top: 35px;
		padding-bottom: 35px;
	}

	.consultation__photo {
		margin-bottom: 25px;
	}

	.consultation__title {
		margin-bottom: 10px;
	}

	.consultation__form .btn {
		width: 100%;
	}

	/* Clients */
	.clients {
		padding-top: 35px;
		padding-bottom: 35px;
	}

	.clients__title {
		margin-bottom: 25px;
	}

	.clients .card-body {
		padding: 20px 25px;
	}

	.clients .card-title {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.clients .card-text {
		font-size: 12px;
	}

	/* Experts */
	.experts .card {
		height: 765px;
	}

	.experts__title {
		margin-bottom: 20px;
	}

	.experts__subtitle {
		font-size: 14px;
		margin-bottom: 30px;
	}

	.experts .card-title {
		font-size: 20px;
	}

	.experts .card-subtitle {
		font-size: 16px;
	}

	.experts .card-text {
		font-size: 12px;
	}

	/* Conditions */
	.conditions {
		padding-top: 35px;
		padding-bottom: 35px;
	}

	.conditions__title {
		margin-bottom: 25px;
	}

	.conditions__photo {
		margin-bottom: 25px;
	}

	.conditions__desc {
		font-size: 12px;
	}

	/* Answers */
	.answers {
		padding-top: 35px;
		padding-bottom: 35px;
	}

	.answers__img {
		margin-bottom: 25px;
	}

	.answers__title {
		margin-bottom: 20px;
	}

	/* Contacts */
	.contacts {
		padding-top: 35px;
		padding-bottom: 35px;
	}

	.contacts__title {
		margin-bottom: 20px;
	}

	.contacts__item {
		margin-bottom: 20px;
		max-width: 80%;
	}

	.contacts__item__icon {
		width: 28px;
		height: 28px;
	}

	.contacts__item__desc {
		font-size: 16px;
	}

	/* Footer */
	.footer__logo {
		margin-bottom: 20px;
	}

	.footer__copy {
		display: none;
	}

	.footer__copy_mob {
		display: block;
		margin-top: 20px;
	}

	/* Policy */
	.policy__title {
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.policy__text {
		margin-bottom: 30px;
	}

	/* Consultation Modal */
	.consultation-modal .modal-header {
		padding: 15px;
	}

	.consultation-modal .modal-title {
		font-size: 22px;
	}

	.consultation-modal .modal-subtitle {
		font-size: 14px;
		padding: 0 15px
	}

	.consultation-modal .btn-close {
		top: 15px;
		right: 15px;
	}

	.consultation-modal .modal-body {
		padding: 15px;
	}

	.consultation-modal .btn {
		width: 100%;
	}

}
