/*===========================
    01.COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800");

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Poppins", sans-serif;
	font-weight: normal;
	font-style: normal;
	color: #2b2a3d;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

img {
	max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
	text-decoration: none;
	outline: none;
}

a:focus,
a:hover {
	text-decoration: none;
}

.in-link {
	color: #2B2A3D;
	text-decoration: underline;
	transition: color 0.3s ease, text-decoration 0.3s ease;
}

.in-link:hover,
.in-link:focus {
	color: #0f6ce7;
	text-decoration: underline;
}

i,
span,
a {
	display: inline-block;
	text-decoration: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
	vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	color: #2B2A3D;
	margin: 0px;
}

h1 {
	font-size: 48px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 28px;
}

h4 {
	font-size: 22px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

ul,
ol {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

p {
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: #2b2a3d;
	margin: 0px;
}

.bg_cover {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
}

/*===== All Button Style =====*/
.main-btn {
	display: inline-block;
	font-weight: 500;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 0;
	padding: 0 25px;
	font-size: 16px;
	height: 55px;
	line-height: 55px;
	border-radius: 15px;
	color: #fff;
	cursor: pointer;
	z-index: 5;
	-webkit-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
	background-color: #fc3f1d;
}

@media (max-width: 767px) {
	.main-btn {
		padding: 0 15px;
		height: 45px;
		line-height: 45px;
		font-size: 16px;
	}
}

.main-btn:hover {
	background-color: #ff674c;
	color: #fff;
	-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.main-btn.main-btn-2 {
	background-color: transparent;
	color: #000;
	border: 2px solid #000;
	line-height: 53px;
}

@media (max-width: 767px) {
	.main-btn.main-btn-2 {
		line-height: 41px;
	}
}

.main-btn.main-btn-2:hover {
	-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.list-style {
	list-style-type: none;
	color: #fff;
}

.list-style-w {
	list-style-type: none;
	color: #000;
}

.section_title .title {
	font-size: 40px;
	font-weight: 800;
}

.section_title .title span {
	display: block;
	font-size: 24px;
	margin-top: 4px;
}

@media (max-width: 767px) {
	.section_title .title {
		font-size: 32px;
	}
}

.section_title p {
	margin-top: 25px;
}

/*===========================
     02.HEADER css 
===========================*/
.navbar-area {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background-color: #0f6ce7;
	transition: padding 0.3s ease-out, box-shadow 0.3s ease-out;
}

.navbar-area.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1100;
	background-color: #0f6ce7;
}

.navbar {
	padding: 0;
	position: relative;
}

.navbar-brand {
	padding: 10px 0 5px;
}

.navbar-brand img {
	height: auto;
	width: auto;
	max-height: none;
	vertical-align: baseline;
	max-height: 45px;
}

@media (max-width: 767.98px) {
	.navbar-brand img {
		max-height: 28px;
	}
}

.navbar-toggler {
	padding: 2px 6px;
	border: 0;
	background: transparent;
}

.navbar-toggler:focus {
	box-shadow: none;
}

.navbar-toggler .toggler-icon {
	width: 30px;
	height: 2px;
	margin: 5px 0;
	display: block;
	background-color: #32333c;
	position: relative;
	transition: all .3s ease-out;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
	transform: rotate(45deg);
	top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
	opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
	transform: rotate(135deg);
	top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
(max-width: 767.98px) {
	.navbar-collapse {
		position: absolute;
		top: 135%;
		left: 0;
		width: 100%;
		z-index: 99;
		background: #fff;
		box-shadow: 0 10px 15px rgba(134, 134, 134, 0.15);
		padding: 10px 12px;
		border-radius: 15px;
	}
}

.navbar-nav .nav-item {
	position: relative;
	margin-left: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
(max-width: 767.98px) {
	.navbar-nav .nav-item {
		margin: 4px;
	}
}

.navbar-nav .nav-item a {
	font-size: 16px;
	padding: 4px 10px;
	position: relative;
	color: #3A424E;
	transition: all .3s ease-out;
}

.navbar-nav .nav-item a::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background-color: rgba(252, 214, 0, 0.1);
	transform: skewX(13deg);
	transition: all .3s ease-out;
}

.navbar-nav .nav-item.active>a::before,
.navbar-nav .nav-item>a.active::before,
.navbar-nav .nav-item:hover>a::before {
	width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
(max-width: 767.98px) {
	.navbar-nav .nav-item a::before {
		display: none;
	}

	.navbar-nav .nav-item a {
		display: block;
		padding: 4px 0;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {

	.navbar-area .navbar .navbar-nav .nav-item.active>a,
	.navbar-area .navbar .navbar-nav .nav-item>a.active,
	.navbar-area .navbar .navbar-nav .nav-item:hover>a {
		color: #0f6ce7;
	}
}

@media (max-width: 767.98px) {

	.navbar-area .navbar .navbar-nav .nav-item.active>a,
	.navbar-area .navbar .navbar-nav .nav-item>a.active,
	.navbar-area .navbar .navbar-nav .nav-item:hover>a {
		color: #0f6ce7;
	}
}

.navbar-nav .nav-item .sub-menu {
	width: 200px;
	background: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	border-radius: 15px;
	padding: 10px 0;
	position: absolute;
	top: 110%;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease-out;
}

.navbar-nav .nav-item:hover .sub-menu {
	top: 100%;
	opacity: 1;
	visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
(max-width: 767.98px) {
	.navbar-nav .nav-item .sub-menu {
		position: relative;
		width: 100%;
		top: 0;
		overflow: hidden;
		max-height: 0;
		opacity: 1;
		visibility: visible;
		transition: max-height 0.4s ease, padding 0.3s ease;
		padding: 0;
		list-style: none;
		margin: 0;
		background: transparent !important;
		box-shadow: none !important;
	}

	.nav-item-has-children.active-submenu>.sub-menu {
		max-height: 500px;
		padding: 8px 0;
	}

	.nav-item-has-children>a {
		position: relative;
		display: block;
		padding-right: 18px;
	}

	.nav-item-has-children>a::after {
		content: "\ea58";
		font-family: "lineIcons";
		font-size: 12px;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		transition: transform 0.3s ease;
		color: #3a424e;
	}

	.nav-item-has-children.active-submenu>a::after {
		transform: translateY(-50%) rotate(180deg);
	}
}

.navbar-nav .nav-item .sub-menu li {
	display: block;
}

.navbar-nav .nav-item .sub-menu li a {
	display: block;
	padding: 8px 20px;
	color: #3a424e;
}

.navbar-nav .nav-item .sub-menu li a:hover,
.navbar-nav .nav-item .sub-menu li a.active {
	padding-left: 25px;
	color: #0f6ce7;
}

@media (max-width: 991.98px) {

	.navbar-nav .nav-item .sub-menu li a:hover,
	.navbar-nav .nav-item .sub-menu li a.active {
		padding-left: 20px;
		color: #0f6ce7;
	}
}

.navbar-nav .sub-nav-toggler {
	display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
(max-width: 767.98px) {
	.navbar-nav .sub-nav-toggler {
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		background: none;
		border: 0;
		color: #222;
		font-size: 18px;
		width: 30px;
		height: 30px;
	}
}

.navbar-nav .sub-nav-toggler span {
	width: 8px;
	height: 8px;
	border-left: 1px solid #222;
	border-bottom: 1px solid #222;
	transform: rotate(-45deg);
	position: relative;
	top: -5px;
}

.sticky .navbar-toggler .toggler-icon {
	background-color: #3A424E;
}

.sticky .navbar-nav .nav-item a {
	color: #3A424E;
}

.sticky .navbar-nav .nav-item a::before {
	background-color: rgba(252, 214, 0, 0.1);
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
(max-width: 767.98px) {

	.sticky .navbar .navbar-nav .nav-item.active>a,
	.sticky .navbar .navbar-nav .nav-item>a.active,
	.sticky .navbar .navbar-nav .nav-item:hover>a {
		color: #0f6ce7;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991.98px),
(max-width: 767.98px) {
	.navbar-btn {
		position: absolute;
		top: 50%;
		right: 50px;
		transform: translateY(-50%);
	}
}

.navbar-btn .main-btn {
	margin-left: 30px;
	height: 45px;
	line-height: 45px;
	padding: 0 20px;
	font-size: 16px;
}

@media (max-width: 991.98px) {
	.navbar-btn .main-btn {
		margin-right: 20px;
	}
}

@media (max-width: 767.98px) {
	.navbar-btn .main-btn {
		margin-right: 5px;
	}
}

/* ===== HERO БЛОК ===== */
.hero-bg {
	background: #0f6ce7;
	min-height: 600px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 0 0 60px 60px;
}

.hero-title {
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 48px;
	font-weight: bold;
	z-index: 10;
	text-align: center;
}

.hero-caption {
	background: #0f6ce7;
	color: #000;
	padding: 30px 0;
	position: relative;
	text-align: center;
	max-height: 150px;
	overflow: hidden;
	box-sizing: border-box;
	/* По умолчанию растягиваем фон на всю ширину экрана */
	left: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	width: 100vw;
	border-radius: 0 0 60px 60px;
}

.hero-caption>* {
	max-width: 1155px;
	/* текст ограничен по ширине */
	margin: 0 auto;
}

.hero-area .hero-caption .job-partner {
	font-size: 32px;
	font-weight: 800;
	margin-top: -10px;
	margin-bottom: 5px;
}

.hero-area .hero-caption h1 {
	font-size: 40px;
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 5px;
}

.hero-area .hero-caption .job-salary {
	font-size: 35px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 15px;
}

.hero-area .hero-caption p {
	font-size: 18px;
	line-height: 1.6;
	margin: 20px 0 25px;
	padding-right: 40px;
}

@media (min-width: 1200px) {
	.hero-area .container {
		max-width: 1140px;
		margin: 0 auto;
	}

	.hero-area .hero-title {
		font-size: 50px;
		margin-top: -30px;
	}
}

@media (max-width: 1200px) {
	.hero-bg {
		min-height: 700px;
	}

	.hero-caption {
		left: auto;
		/* убираем старый сдвиг */
		right: auto;
		width: calc(100% + 40px);
		/* ширина контейнера + 40px */
		margin-top: 80px;
		margin-left: -20px;
		/* сдвиг на половину extra ширины влево */
		margin-right: -20px;
		/* сдвиг на половину extra ширины вправо */
		border-radius: 0 0 40px 40px;
		/* слегка уменьшаем скругление */
		max-height: 200px;
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.hero-bg {
		min-height: 700px;
	}

	.hero-caption {
		left: auto;
		/* убираем старый сдвиг */
		right: auto;
		width: calc(100% + 40px);
		/* ширина контейнера + 40px */
		margin-top: 50px;
		margin-left: -20px;
		/* сдвиг на половину extra ширины влево */
		margin-right: -20px;
		/* сдвиг на половину extra ширины вправо */
		border-radius: 0 0 40px 40px;
		/* слегка уменьшаем скругление */
		max-height: 250px;
	}

	.hero-area .hero-title {
		font-size: 45px;
		margin-top: -40px;
	}
}

@media (min-width: 576px) and (max-width: 767.98px) {
	.hero-bg {
		min-height: 730px;
	}

	.hero-caption {
		left: auto;
		/* убираем старый сдвиг */
		right: auto;
		width: calc(100% + 40px);
		/* ширина контейнера + 40px */
		margin-top: 170px;
		margin-left: -20px;
		/* сдвиг на половину extra ширины влево */
		margin-right: -20px;
		/* сдвиг на половину extra ширины вправо */
		border-radius: 0 0 40px 40px;
		/* слегка уменьшаем скругление */
		max-height: 320px;
	}

	.hero-area .hero-title {
		font-size: 50px;
		margin-top: -40px;
	}
}

@media (max-width: 575.98px) {
	.hero-bg {
		min-height: 760px;
		border-radius: 0 0 20px 20px;
	}

	.hero-caption {
		left: auto;
		/* убираем старый сдвиг */
		right: auto;
		width: calc(100% + 20px);
		/* ширина контейнера + 40px */
		margin-top: 170px;
		margin-left: -10px;
		/* сдвиг на половину extra ширины влево */
		margin-right: -10px;
		/* сдвиг на половину extra ширины вправо */
		max-height: 330px;
		border-radius: 0;
	}

	.hero-area .hero-title {
		font-size: 50px;
		margin-top: -40px;
	}
}

.popular-destinations {
	position: relative;
	margin-top: -170px;
	/* заход сверху на предыдущую секцию */
	z-index: 5;
	padding-top: 100px;
	padding-bottom: 80px;
	width: 100%;
	max-width: 1200px;
	/* фиксируем макс ширину для ПК */
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

/* Фон и стили для блока карусели */
.destinations-carousel {
	background-color: #ffffff;
	padding: 30px 20px;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	width: 100%;
	/* растягиваем на всю ширину родителя */
	max-width: 1000px;
	/* ограничение максимальной ширины */
	margin-left: auto;
	/* центрирование */
	margin-right: auto;
	box-sizing: border-box;
	overflow: hidden;
}

/* Список слайдов */
.destinations-carousel .splide__list {
	display: flex;
	flex-wrap: nowrap;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
	box-sizing: border-box;
}

/* Каждый слайд */
.destinations-carousel .splide__slide {
	flex: 0 0 auto;
	/* фиксируем ширину по JS items */
	width: 100%;
	max-width: 100%;
	padding: 0 7.5px;
	max-height: 243px;
	box-sizing: border-box;
}

/* Карточки внутри слайда */
.destinations-carousel .card {
	width: 100%;
	max-width: 100%;
	min-height: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-weight: 600;
	font-size: 1rem;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	background-color: #ffffff;
	box-sizing: border-box;
}

/* Кнопки управления слайдером */
.popular-destinations .tns-controls {
	display: flex;
	gap: 10px;
	top: 15px;
	right: 15px;
	z-index: 10;
	margin-bottom: 25px;
}

.popular-destinations .tns-controls button {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #fff;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.3s ease;
	position: relative;
	font-size: 0;
	color: #0f6ce7;
}

.popular-destinations .tns-controls button:nth-child(1)::before {
	content: "\ea5a";
	font-family: "LineIcons";
	font-size: 18px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.popular-destinations .tns-controls button:nth-child(2)::before {
	content: "\ea5c";
	font-family: "LineIcons";
	font-size: 18px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.popular-destinations .tns-controls button:hover {
	transform: scale(1.1);
}

/* Мобильные до 768px */
@media (max-width: 768px) {
	.popular-destinations {
		margin-top: -120px;
		padding-top: 80px;
		padding-bottom: 60px;
		width: 95%;
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}

	.destinations-carousel {
		padding: 20px 10px;
		border-radius: 14px;
	}

	.destinations-carousel .splide__slide {
		padding: 0 5px;
		max-height: 250px;
	}

	.destinations-carousel .card {
		min-height: 130px;
		font-size: 0.9rem;
	}

	.popular-destinations .tns-controls button {
		width: 36px;
		height: 36px;
	}

	.popular-destinations .tns-controls button::before {
		font-size: 16px;
	}
}

/* Планшеты 769–992px */
@media (min-width: 769px) and (max-width: 992px) {
	.popular-destinations {
		margin-top: -140px;
		padding-top: 90px;
		padding-bottom: 70px;
		width: 95%;
		max-width: 900px;
		margin-left: auto;
		margin-right: auto;
	}

	.destinations-carousel {
		padding: 28px 18px;
		border-radius: 15px;
	}

	.destinations-carousel .splide__slide {
		padding: 0 6px;
		max-height: 230px;
	}

	.destinations-carousel .card {
		min-height: 145px;
		font-size: 0.97rem;
	}

	.popular-destinations .tns-controls button {
		width: 38px;
		height: 38px;
	}

	.popular-destinations .tns-controls button::before {
		font-size: 17px;
	}
}

/* ПК 992px+ */
@media (min-width: 992px) {
	.popular-destinations {
		margin-top: -170px;
		padding-top: 100px;
		padding-bottom: 80px;
		width: 100%;
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
	}

	.destinations-carousel {
		padding: 30px 20px;
	}

	.destinations-carousel .splide__slide {
		padding: 0 7.5px;
		max-height: 243px;
	}

	.destinations-carousel .card {
		min-height: 150px;
		font-size: 1rem;
	}
}

/*===========================
      03.FEATURES css 
===========================*/
.features_area {
	position: relative;
	z-index: 5;
}

.single_features {
	background-color: #fff;
	padding: 60px 25px;
	border-radius: 10px;
	-webkit-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	-webkit-box-shadow: 0px 3px 35px 0px rgba(158, 158, 158, 0.1);
	box-shadow: 0px 3px 35px 0px rgba(158, 158, 158, 0.1);
}

.single_features:hover {
	-webkit-box-shadow: 0px 3px 35px 0px rgba(158, 158, 158, 0.2);
	box-shadow: 0px 3px 35px 0px rgba(158, 158, 158, 0.2);
}

.single_features:hover .features_icon i {
	border-radius: 50%;
}

.single_features .features_icon i {
	width: 78px;
	height: 78px;
	line-height: 78px;
	text-align: center;
	color: #fff;
	font-size: 40px;
	border-radius: 10px;
	-webkit-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

.single_features .features_content {
	margin-top: 25px;
}

.single_features .features_content .features_title {
	font-size: 24px;
	font-weight: 600;
	color: #3A424E;
	-webkit-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

.single_features .features_content p {
	margin-top: 15px;
}

.single_features.features_1 .features_icon i {
	background-color: #F85146;
}

.single_features.features_2 .features_icon i {
	background-color: #3698EE;
}

.single_features.features_3 .features_icon i {
	background-color: #581CCB;
}

/*===========================
     04.COUNTER css 
===========================*/
.counter_area {
	background-color: #1E73E4;
	padding: 70px 0 120px;
	margin: 0 60px;
	border-radius: 70px;
}

.single_counter {
	display: flex;
	align-items: center;
	background: #fff;
	padding: 25px 20px;
	border-radius: 30px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: context-menu;
}

.single_counter:hover {
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.single_counter .counter_icon {
	flex-shrink: 0;
}

.single_counter .counter_icon i {
	font-size: 50px;
	color: #1E73E4;
	line-height: 1;
}

.single_counter .counter_content {
	padding-left: 20px;
}

.single_counter .counter_content .count {
	font-size: 34px;
	font-weight: 700;
	color: #293651;
	font-family: "Montserrat", sans-serif;
	display: inline-block;
}

.single_counter .counter_content p {
	font-size: 16px;
	font-weight: 500;
	margin: 0;
	color: #555;
}

.count.rub::after {
	content: "₽";
	margin-left: 3px;
}

.count.hours::after {
	content: "ч";
	margin-left: 3px;
}

@media (max-width: 991px) {
	.counter_area {
		margin: 0 10px;
		border-radius: 50px;
	}

	.single_counter {
		padding: 20px;
	}

	.single_counter .counter_icon i {
		font-size: 44px;
	}

	.single_counter .counter_content .count {
		font-size: 28px;
	}
}

@media (max-width: 767px) {
	.single_counter {
		flex-direction: column;
		text-align: center;
	}

	.single_counter .counter_content {
		padding-left: 0;
		margin-top: 10px;
	}
}

/*===========================
     05.PROGRESS BAR css 
===========================*/
.cta-progress.full-bg {
	background-color: #1E73E4;
	padding: 50px 40px 60px 40px;
	margin: 120px 60px;
	position: relative;
	overflow: hidden;
	border-radius: 70px;
}

.cta-progress .container>.align-items-stretch {
	background-color: #fff;
	padding: 40px;
	border-radius: 50px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	margin: 0;
}

.cta-progress .section_title p {
	font-size: 17px;
	line-height: 1.5;
}

.cta-progress .views {
	font-size: 18px;
	font-weight: 700;
	color: #313450;
}

.cta-progress .progress-meta {
	font-size: 16px;
	font-weight: 600;
	color: #313450;
	margin-top: 8px;
}

.cta-progress .timer-title {
	font-size: 18px;
	font-weight: 700;
	color: #313450;
	margin-bottom: 8px;
	line-height: 1.3;
}

.cta-progress .timer-col {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.cta-progress .timer-display {
	font-variant-numeric: tabular-nums;
	height: 60px;
	min-height: 60px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 54px;
	font-weight: 700;
	color: #fc3f1d;
	line-height: 1;
	margin: 0;
	padding: 0;
	letter-spacing: 2px;
}

.big-progress {
	height: 18px;
	margin-top: 6px;
	border-radius: 10px;
	overflow: hidden;
	background: #eee;
}

.cta-progress .progress-bar {
	height: 100%;
	background: #ffc107;
	width: 70%;
	transition: width 1.5s ease;
}

.cta-progress .blink {
	color: #d9534f !important;
	animation: blinkAnim 1s infinite;
	font-weight: 700;
}

@keyframes blinkAnim {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.3;
	}
}

@media (max-width: 991px) {
	.cta-progress.full-bg {
		margin: 120px 10px;
		border-radius: 50px;
	}
}

@media (max-width: 767px) {
	.cta-progress.full-bg {
		padding: 50px 10px 60px 10px;
	}

	.cta-progress .container>.align-items-stretch {
		padding: 20px;
	}

	.cta-progress .timer-col {
		align-items: center;
		text-align: center;
	}

	.cta-progress .timer-title {
		font-size: 20px;
	}

	.cta-progress .timer-display {
		font-size: 48px;
		justify-content: center;
	}

	.cta-progress .views {
		text-align: center;
		font-size: 20px;
	}

	.cta-progress .progress-meta {
		text-align: center;
		font-size: 18px;
	}
}

.big-progress {
	height: 18px;
	margin-top: 6px;
	border-radius: 10px;
	overflow: hidden;
	background: #eee;
	position: relative;
}

.cta-progress .progress-bar {
	height: 100%;
	background: linear-gradient(90deg, #ffc107, #ffb300);
	width: 70%;
	transition: width 1.5s ease;
	position: relative;
	overflow: hidden;
}

.cta-progress .progress-bar {
	position: relative;
	overflow: hidden;
}

.cta-progress .progress-bar::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,
			rgba(255, 0, 0, 0) 0%,
			rgba(255, 0, 0, 0.25) 40%,
			rgba(255, 0, 0, 0.25) 60%,
			rgba(255, 0, 0, 0) 100%);
	animation: pulseMove 3s linear infinite;
}

@keyframes pulseMove {
	0% {
		left: -100%;
	}

	100% {
		left: 100%;
	}
}

@media (max-width: 767px) {
	.cta-progress .timer-title {
		text-align: center;
		width: 100%;
	}
}

/*===========================
     05.about_area css 
===========================*/
.about_area .row.align-items-center {
	display: flex;
	align-items: stretch;
}

.about_area .col-lg-5,
.about_area .col-lg-7 {
	display: flex;
	flex-direction: column;
}

.about_area .about_image {
	flex: 1 1 auto;
	display: flex;
	align-items: stretch;
	height: 100%;
	overflow: hidden;
}

.about_area.image-left .about_image .image {
	border-radius: 3px 70px 70px 70px;
}

.about_area.image-right .about_image .image {
	border-radius: 70px 3px 70px 70px;
}

.about_area .about_image .image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.about_area .about_content {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
}

.about_area.image-left .about_content {
	padding-left: 40px;
}

.about_area.image-right .about_content {
	padding-right: 40px;
}

.about_area .about_content .section_title {
	width: 100%;
}

.about_area .about_content .section_title .title {
	font-size: 35px;
	font-weight: 800;
	margin-bottom: 20px;
}

.about_area .about_content .section_title p {
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

.about_area .row.align-items-center {
	display: flex;
	align-items: stretch;
}

@media (max-width: 991.98px) {

	.about_area .col-lg-5,
	.about_area .col-md-7,
	.about_area .col-lg-7 {
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 100% !important;
	}

	.about_area.image-left .col-lg-5,
	.about_area.image-right .col-lg-5,
	.about_area.image-left .col-md-7,
	.about_area.image-right .col-md-7 {
		order: 2;
	}

	.about_area.image-left .col-lg-7,
	.about_area.image-right .col-lg-7 {
		order: 1;
	}

	.about_area .about_image {
		width: 100%;
		height: 260px;
		margin: 25px auto 0;
		overflow: hidden;
	}

	.about_area .about_image .image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

	.about_area .about_content {
		width: 100%;
		padding: 0;
	}

	.about_area.image-left .about_content {
		padding-left: 0;
	}

	.about_area.image-right .about_content {
		padding-right: 0;
	}
}

/*===========================
     05.SERVICES css 
===========================*/
.time-line {
	position: relative;
}

.time-line .row {
	position: relative;
}

.time-line::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 100%;
	left: 50%;
	top: 0;
	background: #F4EEFB;
	z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.time-line::after {
		display: none;
	}
}

@media (max-width: 767px) {
	.time-line::after {
		display: none;
	}
}

.time-line .box-icon-style {
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	border: 1px solid #1E73E4;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;
	background-color: #fff;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.time-line .box-icon-style {
		position: static;
		-webkit-transform: translate(0);
		-moz-transform: translate(0);
		-ms-transform: translate(0);
		-o-transform: translate(0);
		transform: translate(0);
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.time-line .box-icon-style {
		position: static;
		-webkit-transform: translate(0);
		-moz-transform: translate(0);
		-ms-transform: translate(0);
		-o-transform: translate(0);
		transform: translate(0);
		margin-bottom: 30px;
	}
}

.time-line .box-icon-style i {
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	font-size: 20px;
	padding: 2px;
	color: #1E73E4;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.time-line .single-timeline {
		margin-bottom: 50px;
	}
}

@media (max-width: 767px) {
	.time-line .single-timeline {
		margin-bottom: 50px;
	}
}

.time-line .single-timeline:hover .box-icon-style {
	background: #1E73E4;
	color: #fff;
	border-color: transparent;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.time-line .single-timeline:hover .box-icon-style i {
	color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.time-line .single-timeline .timeline-img {
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.time-line .single-timeline .timeline-img {
		margin-bottom: 30px;
	}
}

.time-line .single-timeline .timeline-img img {
	width: 100%;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	border-radius: 30px;
}

.time-line .timeline-content.left-content {
	text-align: right;
}

.time-line .timeline-content.left-content h4,
.time-line .timeline-content.left-content p {
	text-align: right;
}

/*===========================
     06.REQUIREMENT css  
===========================*/
.requirement-item {
	box-shadow: 0px 0px 34px rgba(175, 175, 175, 0.16);
	margin-bottom: 15px;
	border: none;
	border-radius: 20px;
	overflow: hidden;
}

.requirement-item .accordion-header .accordion-button {
	background: #1E73E4;
	border: none;
	border-radius: 20px;
	padding: 15px 33px 15px 25px;
	white-space: normal;
	text-align: left;
	font-size: 19px;
	font-weight: 600;
	color: #3A424E;
	box-shadow: none;
	position: relative;
}

.accordion-button::after {
	display: none;
}

.accordion-item .accordion-button i {
	font-size: 13px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: relative;
	top: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 20px;
}

.accordion-button:not(.collapsed) i::before {
	content: "\eb2c";
	font-family: lineIcons;
}

.requirement-item .accordion-collapse .accordion-body {
	padding: 20px 25px 25px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #2b2a3d;
}

.requirement-item .accordion-collapse .accordion-body .faq-ul {
	margin-left: 20px;
}

.requirement-item .accordion-collapse .accordion-body .faq-ul li {
	padding-top: 10px;
	font-size: 15px;
	line-height: 24px;
	list-style-type: disc;
}

.requirement-item .faq-body p {
	margin-bottom: 1em;
}

.requirement-item .faq-body p:last-child {
	margin-bottom: 0;
}

.requirement-item .accordion-header .accordion-button span {
	font-size: 25px;
	font-weight: 700;
	color: #313450;
	display: block;
	padding-top: 10px;
}

.process-img {
	position: relative;
	width: 100%;
	height: calc(100% - 15px);
	border-radius: 3px 70px 70px 70px;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin-bottom: 0;
	box-sizing: border-box;
	box-shadow: 0px 0px 34px rgba(175, 175, 175, 0.16);
}

.process-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	border-radius: 50px;
}

@media (max-width: 991px) {
	.process-img {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.requirement-item .accordion-header .accordion-button {
		font-size: 18px;
		padding: 15px 20px;
	}

	.requirement-item .accordion-header .accordion-button span {
		font-size: 18px;
	}
}

.requirement_area .accordion-item {
	border: none !important;
	box-shadow: 0px 0px 34px rgba(175, 175, 175, 0.16);
	margin-bottom: 15px;
}

.requirement_area .accordion-button {
	border: none !important;
	box-shadow: none !important;
}

.requirement_area .accordion-button:focus {
	box-shadow: none !important;
}

.requirement_area .accordion-collapse {
	border: none !important;
}

.requirement_area .requirement-item {
	border-radius: 20px !important;
	overflow: hidden;
}

.requirement_area .requirement-item .accordion-button {
	border-radius: 20px !important;
}

.requirement_area .requirement-item .accordion-button:not(.collapsed) {
	border-bottom-left-radius: 20px !important;
	border-bottom-right-radius: 20px !important;
}

.requirement_area .requirement-item .accordion-collapse {
	border-radius: 0 0 20px 20px !important;
	overflow: hidden;
}

/*===========================
      07.FEATURED SECTION
===========================*/
.featured-box {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	padding: 25px 25px;
	transition: all 0.3s ease;
	width: 100%;
}

.featured-box.yellow {
	background: #1E73E4;
	color: #fff;
	/* общий цвет текста */
}

.featured-box.yellow h3,
.featured-box.yellow p,
.featured-box.yellow li,
.featured-box.yellow ul {
	color: #fff;
	/* явно белый цвет для заголовков, параграфов и списков */
}

/* Если есть иконки с текстом или ссылки */
.featured-box.yellow a {
	color: #fff;
	text-decoration: none;
	/* или underline, если нужно */
}

.featured-box.light {
	background: #fff;
	color: #000;
}

.featured-box .content {
	flex: 0 0 85%;
	max-width: 85%;
	z-index: 2;
	padding-right: 20px;
}

.featured-box .content h3 {
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 10px;
}

.featured-box .content p {
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
}

.featured-box .icon-bg {
	position: absolute;
	right: 20px;
	bottom: 20px;
	flex: 0 0 20%;
	max-width: 20%;
	font-size: 120px;
	z-index: 1;
	pointer-events: none;
	transition: transform 0.3s ease;
}

.featured-box .icon-bg i {
	display: block;
	text-shadow: -4px -4px 12px rgba(0, 0, 0, 0.1);
	transform: rotate(-15deg);
	transition: transform 0.3s ease;
}

.featured-box:hover .icon-bg i {
	transform: scale(1.05) rotate(-12deg);
}

.featured-box.yellow .icon-bg i {
	color: #fff;
}

.featured-box.light .icon-bg i {
	color: #1E73E4;
}

.featured-box.long-card .content {
	flex: 0 0 80%;
	max-width: 80%;
}

.featured-box.long-card .icon-bg {
	flex: 0 0 20%;
	max-width: 20%;
	font-size: 150px;
	right: 10%;
	bottom: 10%;
	position: absolute;
}

.featured-box.long-card.photo-right .icon-bg {
	right: 0;
	top: 0;
	bottom: 0;
}

@media (min-width: 768px) {
	.featured-grid>div.col-md-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.featured-grid>div.col-md-4 {
		flex: 0 0 33.3333%;
		max-width: 33.3333%;
	}

	.featured-area .featured-box.long-card {
		display: flex;
		align-items: stretch;
		justify-content: space-between;
		padding: 50px 40px;
		position: relative;
		overflow: hidden;
		border-radius: 20px;
		transition: border-radius 0.3s ease;
	}

	.featured-area .featured-box.long-card .content {
		flex: 0 0 66%;
		max-width: 66%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		z-index: 2;
	}

	.featured-area .featured-box.long-card .content h3 {
		font-weight: 800;
		margin-bottom: 15px;
	}

	.featured-area .featured-box.long-card .content p {
		line-height: 1.6;
		margin: 0;
	}

	.featured-area .featured-box.long-card.photo-right img {
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		width: 34%;
		height: 100%;
		object-fit: cover;
		z-index: 1;
		border-top-left-radius: 60px;
		border-bottom-left-radius: 60px;
	}

	.featured-area .featured-box.long-card.photo-left img {
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 34%;
		height: 100%;
		object-fit: cover;
		z-index: 1;
		border-top-right-radius: 60px;
		border-bottom-right-radius: 60px;
	}

	.featured-area .featured-box.long-card.photo-right .content {
		margin-right: 34%;
		padding-right: 30px;
	}

	.featured-area .featured-box.long-card.photo-left .content {
		margin-left: 34%;
		padding-left: 30px;
	}

	.featured-area .featured-box.no-top-right {
		border-top-right-radius: 0 !important;
	}

	.featured-area .featured-box.no-top-left {
		border-top-left-radius: 0 !important;
	}

	.featured-area .featured-box.long-card.photo-right {
		border-bottom-right-radius: 60px;
	}

	.featured-area .featured-box.long-card.photo-left {
		border-bottom-left-radius: 60px;
	}
}

@media (max-width: 768px) {
	.featured-grid>div {
		padding: 5px;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.featured-box {
		flex-direction: row;
		text-align: left;
		padding: 28px 20px;
	}

	.featured-box .content {
		flex: 0 0 75%;
		max-width: 75%;
		padding-right: 10px;
	}

	.featured-box .icon-bg {
		position: absolute;
		right: 20px;
		bottom: 20px;
		font-size: 100px;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.featured-area .featured-box.long-card {
		display: flex;
		flex-direction: column;
		border-radius: 20px 20px 60px 60px !important;
		overflow: hidden;
		padding: 0;
		position: relative;
		box-sizing: border-box;
	}

	.featured-area .featured-box.long-card .content {
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 auto !important;
		margin: 0 !important;
		padding: 20px !important;
		text-align: center;
		background: #fff;
	}

	.featured-area .featured-box.long-card.photo-right img,
	.featured-area .featured-box.long-card.photo-left img {
		position: static !important;
		width: 100%;
		height: 180px;
		display: block;
		object-fit: cover;
		object-position: top;
		margin: 0;
		border-radius: 0 0 60px 60px;
	}

	.featured-area .featured-box.long-card.photo-right .content,
	.featured-area .featured-box.long-card.photo-left .content {
		margin: 0 !important;
		padding: 20px !important;
		max-width: 100% !important;
		flex: 0 0 auto !important;
	}

	.featured-area .featured-box.long-card .icon-bg {
		position: absolute;
		right: 20px;
		top: 20px;
		font-size: 80px;
		flex: 0 0 auto;
		max-width: none;
	}
}

/*===========================
      08.TESTIMONIAL css 
===========================*/
.testimonial_area {
	margin: 130px 60px 80px 60px;
	padding: 80px 0;
	border-radius: 70px;
}

.testimonial_area .section_title .title {
	text-align: left;
	padding-bottom: 30px;
	font-size: 35px;
	font-weight: 800;
	margin-bottom: 20px;
	line-height: 1.4;
}

.testimonial_area .card {
	border-radius: 30px;
	background: #fff;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	transition: transform 0.2s ease;
	min-height: 290px;
}

.testimonial_area .card-footer i {
	margin-right: 2px;
	font-size: 18px;
}

.testimonial_area figcaption img {
	border: 2px solid #eee;
}

.testimonial_area .overall-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: #555;
	line-height: 1;
}

.testimonial_area .overall-rating .stars i {
	font-size: 13px;
	margin-top: 15px;
}

.testimonial_area .tns-nav {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	gap: 8px;
}

.testimonial_area .tns-nav button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ddd;
	border: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.testimonial_area .tns-nav button.tns-nav-active {
	background: #1E73E4;
	transform: scale(1.2);
}

.testimonial_area .my-slider,
.testimonial_area .my-slider * {
	user-select: none;
	cursor: default !important;
}

.testimonial_area .card .btn-icon.main-btn {
	background-color: #1E73E4 !important;
	border: none;
	color: #fff;
	top: 5px !important;
}

.testimonial_area .card .btn-icon.main-btn i {
	color: #fff !important;
	font-size: 20px;
}

.testimonial-actions {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	margin-top: 18px;
	padding-top: 8px;
	border-top: 1px solid #f0f0f0;
}

.testimonial-actions span {
	color: #666;
	font-size: 13px;
}

.testimonial-actions button {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 18px;
	color: #aaa;
	transition: color 0.3s ease;
}

.testimonial-actions .like-btn.like i {
	color: #1E73E4;
}

.testimonial-actions .dislike-btn.dislike i {
	color: #e63946;
}

.review-actions.review-card .btn-like-link {
	margin-left: 10px;
	display: inline-flex;
	align-items: center;
	color: #3a424e !important;
	font-size: 15px;
	text-decoration: none;
}

.review-actions.review-card .btn-like-link i {
	margin-right: 4px;
	font-size: 18px;
	color: #3a424e !important;
}

.review-actions {
	user-select: none;
}

.testimonial-actions button:hover i {
	color: #555;
}

.testimonial_area .testimonial-actions {
	position: absolute;
	bottom: 15px;
	left: 16px;
	right: 16px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
	padding: 8px 0 0;
	border-top: 1px solid #f0f0f0;
	background: #fff;
}

.overall-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 15px;
	color: #555;
}

.overall-rating .stars i {
	color: #1E73E4;
	font-size: 18px;
}

.overall-rating .rating {
	font-weight: 600;
}

.overall-rating .count {
	color: #777;
}

.testimonial_area .my-slider .tns-item {
	padding-right: 15px !important;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	.testimonial_area .card {
		min-height: 315px;
	}
}

@media (min-width: 768px) and (max-width: 992px) {
	.testimonial_area .card {
		min-height: 335px;
	}
}

@media (max-width: 992px) {
	.testimonial_area {
		margin: 130px 10px 80px 10px;
		border-radius: 50px;
	}
}

@media (max-width: 768px) {
	.testimonial_area .testimonial-slider {
		margin-bottom: 30px;
	}

	.testimonial_area .card {
		min-height: 250px;
	}

	.testimonial_area .my-slider .tns-item figure {
		padding-left: 0 !important;
		padding-right: 6px !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.testimonial_area .row {
		display: flex;
		flex-direction: column;
	}

	.testimonial_area .testimonial-left {
		order: 1;
	}

	.testimonial_area .testimonial-slider {
		order: 2;
	}

	.testimonial_area .testimonial-button {
		order: 3;
		margin-top: 20px;
	}

	.testimonial-button button {
		margin-bottom: 10px;
	}

	.call_to_action_btn .main-btn {
		padding: 0 15px;
		height: 60px;
		line-height: 60px;
		font-size: 16px;
	}
}

/*===========================
      09.ACCORDION FAQ
===========================*/
.faq_area .container {
	position: relative;
}

.faq_area .container .counter-shape-1 {
	left: -230px;
	top: -50px;
}

.faq_area .container .counter-shape-2 {
	right: -230px;
	bottom: -50px;
}

.faq_area .shape {
	position: absolute;
}

.faq_area .accordion-item {
	background: none;
	border: none;
	margin-bottom: 20px;
	box-shadow: none;
}

.faq_area .accordion-header {
	background: none;
	border: none;
	padding: 0px;
}

.faq_area .accordion-button {
	color: #3a424e;
	font-size: 18px;
	text-align: left;
	position: relative;
	font-weight: 500;
	padding: 8px 16px 8px 0;
	background: none;
	box-shadow: none !important;
}

.faq_area .accordion-button:not(.collapsed) {
	color: #3a424e;
	background: none;
	box-shadow: none;
}

.faq_area .accordion-button::after {
	display: none !important;
}

.faq_area .accordion-button::before {
	font-family: "LineIcons";
	content: "\ea58";
	color: #1E73E4;
	font-size: 18px;
	font-weight: 600;
	margin-right: 10px;
	transition: transform 0.3s ease;
	transform: rotate(-90deg);
}

.faq_area .accordion-button:not(.collapsed)::before {
	transform: rotate(180deg);
}

.faq_area .accordion-body {
	color: #324353;
	padding: 8px 56px;
	font-size: 16px;
	line-height: 24px;
}

/*===========================
   10.CALL TO ACTION css 
===========================*/
.call_to_action_wrapper {
	padding-top: 40px;
	padding-bottom: 100px;
	position: relative;
}

.call_to_action_box {
	background-color: #1E73E4;
	padding: 50px 60px;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
	z-index: 5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.call_to_action_box {
		padding: 30px 40px;
	}
}

@media (max-width: 767px) {
	.call_to_action_box {
		padding: 20px;
	}
}

.call_to_action_box .call_to_action_content {
	max-width: 520px;
	margin-top: 10px;
}

.call_to_action_box .call_to_action_content .action_title {
	color: #fff;
	font-size: 36px;
	font-weight: 700;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
	margin-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.call_to_action_box .call_to_action_content .action_title {
		font-size: 30px;
	}
}

@media (max-width: 767px) {
	.call_to_action_box .call_to_action_content .action_title {
		font-size: 22px;
	}

	.call_to_action_box .call_to_action_content {
		margin-bottom: 30px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.call_to_action_box .call_to_action_content .action_title {
		font-size: 26px;
	}
}

.call_to_action_box .call_to_action_content .line {
	padding-top: 10px;
}

.call_to_action_box .call_to_action_content .line li {
	display: inline-block;
	background-color: #fff;
	border-radius: 50px;
	height: 3px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.call_to_action_box .call_to_action_content .line li:nth-of-type(1) {
	width: 64px;
}

.call_to_action_box .call_to_action_content .line li:nth-of-type(2) {
	width: 10px;
}

.call_to_action_box .call_to_action_content .line li:nth-of-type(3) {
	width: 7px;
}

.call_to_action_box .call_to_action_content p {
	color: #fff;
	font-size: 18px;
	line-height: 1.5;
	margin-top: 15px;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* ===========================
        11.FOOTER CSS
=========================== */
.footer {
	position: relative;
}

/* ===== Верхняя линия над ссылками и подпиской ===== */
.footer-top-line {
	border-top: 1px solid rgba(100, 111, 135, 0.2);
	margin-bottom: 50px;
	/* от линии до контента */
	padding-top: 50px;
}

/* ===== Подписка ===== */
.footer_subscribe .subscribe_title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 12px;
}

@media (max-width: 767px) {
	.footer_subscribe .subscribe_title {
		font-size: 30px;
		text-align: center;
	}
}

.footer_subscribe p {
	color: #3a424e;
	margin-top: 15px;
}

.subscribe_form {
	position: relative;
	margin-top: 35px;
}

.subscribe_form input {
	width: 100%;
	border: 0;
	color: #2b2a3d;
	padding: 0 30px;
	height: 50px;
	border-radius: 20px;
}

.subscribe_form input::placeholder {
	opacity: 1;
	color: #2b2a3d;
}

.subscribe_form .main-btn {
	position: absolute;
	top: 5px;
	right: 5px;
	line-height: 40px;
	height: 40px;
}

/* ===== Сетка ссылок ===== */
.footer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.footer-grid .col h4 {
	font-size: 19px;
	font-weight: 600;
	margin-bottom: 25px;
}

.footer-grid ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-grid a,
.footer-grid .in-click {
	color: #3a424e;
	text-decoration: none;
	text-align: left;
	font-size: 16px;
	background: none;
	border: none;
	cursor: pointer;
	transition: color 0.3s ease-out;
}

.footer-grid a:hover,
.footer-grid .in-click:hover {
	color: #0f6ce7;
}

/* ===== Нижняя часть футера ===== */
.ud-footer-bottom {
	text-align: center;
	padding-top: 30px;
	/* совпадает с верхней линией */
	padding-bottom: 30px;
	/* отступ внутри нижней линии */
	border-top: 1px solid rgba(100, 111, 135, 0.2);
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 0;
	/* убираем лишний margin */
}

.ud-footer-bottom .ud-footer-bottom-right {
	margin-top: 0;
	/* убираем лишние отступы */
	font-size: 16px;
	color: #3a424e;
}

.ud-footer-bottom .ud-footer-bottom-right a {
	color: var(--primary-color);
}

.ud-footer-bottom .ud-footer-bottom-right a:hover {
	text-decoration: underline;
}

/* ===== Footer-bg ===== */
.footer .footer-bg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.footer .footer-bg {
		bottom: 150px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.footer .footer-bg {
		bottom: 550px;
	}
}

@media only screen and (max-width: 768px) {
	.footer .footer-bg {
		bottom: 950px;
	}
}

/* ===== Адаптив ===== */
@media (max-width: 991px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
		text-align: center;
	}

	.footer_subscribe {
		margin-top: 40px;
		text-align: center;
	}
}

@media (max-width: 767px) {
	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer_subscribe {
		margin-top: 50px;
	}
}

/* ===== Адаптив для футера ===== */
@media (max-width: 991px) {

	/* Сетка ссылок уменьшается до 2 колонок */
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
		text-align: center;
	}

	/* Подписка: отступ сверху и выравнивание по центру */
	.footer_subscribe {
		margin-top: 40px;
		text-align: center;
	}
}

@media (max-width: 767px) {

	/* Сетка ссылок в одну колонку */
	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	/* Подписка: больше отступ сверху */
	.footer_subscribe {
		margin-top: 50px;
	}

	/* Заголовок подписки крупнее */
	.footer_subscribe .subscribe_title {
		font-size: 30px;
		text-align: center;
	}

	/* Верхняя линия над футером: уменьшаем паддинги, чтобы не было слишком высокого блока */
	.footer-top-line {
		padding-top: 30px;
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	/* Нижняя часть футера: padding такой же, как у верхней линии для симметрии */
	.ud-footer-bottom {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

/*===========================
      BACK TO TOP 
===========================*/
.back-to-top {
	font-size: 20px;
	color: #3a424e;
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 15px;
	background-color: #fff;
	border: 2px solid #3a424e;
	text-align: center;
	z-index: 99;
	-webkit-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	display: none;
}

.back-to-top:hover {
	color: #3a424e;
	-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.my-link {
	cursor: pointer;
}

/*===========================
      12.404 PAGE css 
===========================*/
.error-section {
	background-color: #fff;
	text-align: center;
}

.error-code {
	font-size: 120px;
	font-weight: 800;
	color: #1E73E4;
	margin-bottom: 10px;
	line-height: 1;
}

.error-title {
	font-size: 36px;
	font-weight: 600;
	color: #3A424E;
	margin-bottom: 20px;
}

.error-text {
	font-size: 18px;
	color: #2b2a3d;
	line-height: 28px;
	margin-bottom: 30px;
}

@media (max-width: 767px) {
	.error-code {
		font-size: 80px;
	}

	.error-title {
		font-size: 28px;
	}

	.error-text {
		font-size: 16px;
	}
}

.no-underline {
	text-decoration: none;
}

/*===========================
        14.BLOG css 
===========================*/
.blog-section .section-title {
	margin-bottom: 50px;
}

@media (min-width: 768px) and (max-width: 991px) {
	.blog-section .section-title {
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.blog-section .section-title {
		margin-bottom: 20px;
	}
}

.blog-section .single-blog {
	margin: 30px 0;
	overflow: hidden !important;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.164);
	border-radius: 30px;
	background-color: #fff;
}

.blog-section .single-blog .blog-img {
	overflow: hidden;
}

.blog-section .single-blog .blog-img a {
	width: 100%;
}

.blog-section .single-blog .blog-img img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: all 0.3s ease;
}

.blog-section .single-blog:hover .blog-img img {
	transform: scale(1.1);
}

.blog-section .single-blog .blog-content {
	padding: 30px;
	display: flex;
	flex-direction: column;
}

.blog_meta .meta_like ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.blog_meta .meta_like ul li {
	display: inline-block;
	vertical-align: middle;
}

.blog_meta .meta_like ul li+li {
	margin-left: 15px;
}

.blog_meta .meta_like ul li a.like-btn {
	display: inline-block;
	line-height: 1;
	font-size: 16px;
	color: #2b2a3d;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
}

.blog_meta .meta_like ul li a.like-btn i {
	margin-left: 5px;
	font-size: 16px;
	vertical-align: middle;
	transition: color 0.3s ease;
}

.blog_meta .meta_like ul li a.like-btn .like-count {
	display: inline-block;
	min-width: 22px;
	text-align: left;
	font-size: 16px;
	color: #2b2a3d;
	vertical-align: middle;
	transition: color 0.3s ease;
}

.blog_meta .meta_like ul li a.like-btn:hover i,
.blog_meta .meta_like ul li a.like-btn:hover {
	color: #fc3f1d;
}

.blog_meta .meta_like ul li a.like-btn.comment-btn:hover i,
.blog_meta .meta_like ul li a.like-btn.comment-btn:hover {
	color: #1E73E4;
}

.blog_meta .meta_like ul li a.like-btn.liked i,
.blog_meta .meta_like ul li a.like-btn.liked {
	color: #fc3f1d;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	30% {
		transform: scale(1.3);
	}

	60% {
		transform: scale(0.9);
	}

	100% {
		transform: scale(1);
	}
}

.blog_meta .meta_like ul li a.like-btn.animate i {
	animation: pulse 0.4s ease;
}

.blog_meta {
	user-select: none;
}

.blog_meta-list .meta_like ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.blog_meta-list .meta_like ul li {
	display: inline-block;
	margin-left: 15px;
}

.blog_meta-list .meta_like ul li:first-child {
	margin-left: 0;
}

.blog_meta-list .meta_like ul li a {
	display: inline-flex;
	align-items: center;
	font-size: 15px;
	color: #3a424e;
	text-decoration: none;
	transition: color 0.3s ease;
}

.blog_meta-list .meta_like ul li a i {
	margin-right: 4px;
	font-size: 18px;
	color: #3a424e;
	position: relative;
	transition: color 0.3s ease;
}

.blog_meta-list .meta_like ul li a .count {
	margin-left: 4px;
	font-size: 15px;
	color: #3a424e;
}

.blog_meta-list .meta_like ul li a:hover i {
	color: #1E73E4;
}

.reply-link {
	user-select: none;
}

.widgets_meta .meta_like ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.widgets_meta .meta_like ul li {
	display: inline-block;
	vertical-align: middle;
	margin-left: 15px;
}

.widgets_meta .meta_like ul li:first-child {
	margin-left: 0;
}

.widgets_meta .meta_like ul li a {
	display: inline-flex;
	align-items: center;
	font-size: 16px;
	color: #3a424e;
	text-decoration: none;
}

.widgets_meta .meta_like ul li a i {
	font-size: 16px;
	margin-right: 5px;
	vertical-align: middle;
	color: #3a424e;
	transition: color 0.3s ease;
}

.widgets_meta .meta_like ul li a .count {
	font-size: 16px;
	vertical-align: middle;
	color: #3a424e;
}

.widgets_meta .meta_like ul li a:hover i {
	color: #1E73E4;
}

.blog-section .single-blog .blog-content h4 {
	margin-top: 5px;
}

.blog-section .single-blog .blog-content h4 a {
	font-size: 19px;
	color: #081828;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 25px;
	max-height: 50px;
	min-height: 50px;
	transition: color 0.3s ease;
}

.blog-section .single-blog .blog-content h4 a:hover {
	color: #1E73E4;
}

.blog-section .single-blog .blog-content p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 24px;
	max-height: 72px;
	min-height: 72px;
	margin: 20px 0;
}

.blog-section .single-blog .blog-content .main-btn {
	margin-top: 25px;
	height: 40px;
	line-height: 36px;
	border: 2px solid #3698EE;
	padding: 0 15px;
	color: #3698EE;
	background: #fff;
}

.blog-section .single-blog .blog-content .main-btn:hover {
	background-color: #3698EE;
	color: #fff;
}

.blog-section .single-blog .blog-content .blog_meta {
	margin-top: 10px;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.single_blog .blog_content .blog_meta {
		flex-direction: column;
	}
}

@media (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
	.blog-list .pagination {
		margin-top: 20px;
	}
}

.blog-list .single-blog {
	margin-top: 0;
	margin-bottom: 30px;
}

.blog-single .single-inner .main-content-head {
	-webkit-box-shadow: 0px 1px 20px 0px rgba(32, 32, 32, 0.11);
	box-shadow: 0px 1px 20px 0px rgba(32, 32, 32, 0.11);
	border-radius: 30px;
	overflow: hidden;
}

.blog-single .meta-information {
	background-color: #fff;
	padding: 40px;
}

@media (max-width: 767px) {
	.blog-single .meta-information {
		padding: 25px;
	}
}

.blog-single .post-thumbnils {
	position: relative;
	overflow: hidden;
	border-radius: 0;
}

.blog-single .post-thumbnils img {
	width: 100%;
}

.blog-single .detail-inner {
	background-color: #fff;
	padding: 40px;
	box-sizing: border-box;
}

.review-box .blog-single .detail-inner {
	padding: 0 13px;
}

.blog-single .detail-inner>*:not(.blog_meta) {
	margin-bottom: 20px;
}

.blog-single .detail-inner .blog_meta {
	margin-top: 20px;
	display: flex;
	justify-content: flex-end;
}

.blog-single .detail-inner .blog_meta .meta_like ul {
	display: flex;
	gap: 15px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.blog-single .detail-inner .blog_meta a {
	display: inline-flex;
	align-items: center;
	font-size: 15px;
	color: #3a424e;
	text-decoration: none;
	transition: color 0.3s ease;
}

.blog-single .detail-inner .blog_meta a i {
	margin-right: 4px;
	font-size: 18px;
	position: relative;
	top: -1px;
	transition: color 0.3s ease;
}

.blog-single .detail-inner .blog_meta a:hover i {
	color: #1E73E4;
}

.blog-single .detail-inner .blog_meta .like-btn.liked i {
	color: #fc3f1d;
}

.blog-single .detail-inner .blog_meta .like-count {
	margin-left: 4px;
	font-size: 15px;
}

@media (max-width: 767px) {
	.blog-single .detail-inner {
		padding: 25px;
	}
}

.blog-single .post-title {
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 32px;
	display: inline-block;
}

@media (max-width: 767px) {
	.blog-single .post-title {
		line-height: 26px;
	}
}

.blog-single .post-title a {
	font-size: 22px;
	font-weight: 600;
	display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog-single .post-title a {
		font-size: 20px;
	}
}

@media (max-width: 767px) {
	.blog-single .post-title a {
		font-size: 18px;
	}
}

.blog-single p {
	font-size: 14px;
	margin: 20px 0;
	line-height: 26px;
}

.blog-single p:first-child {
	margin-top: 0;
}

.blog-single h3 {
	font-size: 20px;
	margin-bottom: 20px;
	font-weight: 600;
	line-height: 28px;
}

.blog-single .list {
	margin: 30px 0;
}

.blog-single .list li {
	display: block;
	margin-bottom: 15px;
	position: relative;
	padding-left: 25px;
}

.blog-single .list li:last-child {
	margin-bottom: 0;
}

.blog-single .list li i {
	position: absolute;
	left: 0;
	top: 4px;
	color: #fff;
	font-size: 15px;
	color: #1E73E4;
}

blockquote {
	position: relative;
	color: #fff;
	font-weight: 400;
	clear: both;
	z-index: 1;
	margin: 40px 0;
	text-align: center;
	padding: 40px;
	background-color: #fff;
	border-radius: 0;
	overflow: hidden;
	border: 2px solid #eee;
	border-radius: 3px;
}

@media (max-width: 767px) {
	blockquote {
		padding: 20px;
	}
}

blockquote .icon i {
	font-size: 32px;
	color: #1E73E4;
	display: block;
	margin-bottom: 20px;
}

@media (max-width: 767px) {
	blockquote .icon i {
		margin-bottom: 15px;
	}
}

blockquote h4 {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #081828;
}

@media (max-width: 767px) {
	blockquote h4 {
		font-size: 14px;
	}
}

blockquote span {
	font-size: 13px;
	display: block;
	margin-top: 20px;
	color: #888;
}

.blog-min-height .single-blog {
	min-height: 480px;
	display: flex;
	flex-direction: column;
}

.blog-min-height .blog-img {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.blog-min-height .blog-img::before {
	content: "";
	display: block;
	padding-top: 56.25%;
}

.blog-min-height .blog-img img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.blog-min-height .blog-content {
	flex-grow: 1;
	padding: 15px 0 0;
}

.blog-min-height .blog_meta {
	min-height: 28px;
}

.post-comments {
	background-color: #fff;
	padding: 40px;
	margin-top: 40px;
	-webkit-box-shadow: 0px 1px 20px 0px rgba(32, 32, 32, 0.11);
	box-shadow: 0px 1px 20px 0px rgba(32, 32, 32, 0.11);
	border-radius: 30px;
	overflow: hidden;
	min-height: 180px;
}

.comment-pending {
	display: inline-block;
	min-width: 120px;
	height: 18px;
	line-height: 18px;
	font-size: 12px;
	padding: 2px 6px;
	border-radius: 30px;
	color: #000;
	background: #1E73E4;
	visibility: hidden;
	margin-left: 10px;
}

.comment-pending.visible {
	visibility: visible;
}

.comment-title {
	font-size: 20px !important;
	font-weight: 600 !important;
	margin-bottom: 40px !important;
	position: relative;
	z-index: 1;
	text-transform: capitalize;
}

.post-comments .comment-desc {
	padding: 30px;
	position: relative;
	font-size: 15px;
	background-color: #f9f9f9;
	border-radius: 30px;
	border: 1px solid #eee;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.post-comments .comment-desc p {
	flex-grow: 1;
	margin: 0 0 10px 0;
	line-height: 1.4;
}

.post-comments .comment-desc .like-btn {
	cursor: pointer;
	align-self: flex-end;
	margin-top: auto;
}

.post-comments .blog_meta .meta_like ul li a.like-btn .like-count {
	min-width: auto;
	text-align: inherit;
}

@media (max-width: 767px) {
	.post-comments .comment-desc {
		margin: 0px -30px;
	}

	.post-comments .comments-list li {
		padding-left: 0px;
	}
}

.post-comments .comments-list li .comment-desc .desc-top {
	margin-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
	min-height: 28px;
	position: relative;
}

.post-comments .comments-list li .comment-desc .desc-top h6 {
	font-size: 16px;
	font-weight: 500;
	margin: 0;
}

.post-comments .comments-list li .comment-desc .desc-top span.date {
	font-size: 14px;
	font-weight: 400;
}

.post-comments .comments-list li .comment-desc .desc-top .reply-link {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 13px;
	font-weight: 500;
	z-index: 2;
	background-color: transparent;
	border-radius: 30px;
	color: #888;
	cursor: pointer;
}

.post-comments .comments-list li .comment-desc .desc-top .reply-link i {
	margin-right: 5px;
}

.post-comments .comments-list li .comment-desc .desc-top .reply-link:hover {
	color: #1E73E4;
}

@media (max-width: 767px) {
	.post-comments .comments-list li .comment-desc .desc-top .reply-link {
		position: relative;
		display: block;
		margin-top: 15px;
	}
}

.post-comments .comments-list li li {
	display: flex;
	flex-direction: column;
	margin-top: 20px;
	margin-left: 40px;
	box-sizing: border-box;
	min-height: 40px;
}

@media (max-width: 767px) {
	.post-comments .comments-list li li {
		margin-left: 20px;
	}
}

.post-comments .comments-list li li .comment-desc {
	border-left: 2px solid #eee;
	padding-left: 20px;
}

.post-comments .comments-list li:not(:first-child) {
	padding-top: 30px;
	margin-top: 30px;
	border-top: 1px solid #eee;
}

.comment-anchor {
	position: relative;
	top: -150px;
	height: 1px;
}

.replying-to {
	margin-bottom: 15px;
	display: none;
}

.replying-to a.cancel-reply {
	color: #555;
	text-decoration: none;
	cursor: pointer;
}

.replying-to a.cancel-reply:hover {
	color: #000;
}

.post-comments .comments-list {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.post-comments .comments-list li {
	list-style: none;
}

.post-comments .comments-list ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.comment-form {
	background-color: #fff;
	padding: 40px;
	margin-top: 40px;
	-webkit-box-shadow: 0px 1px 20px 0px rgba(32, 32, 32, 0.11);
	box-shadow: 0px 1px 20px 0px rgba(32, 32, 32, 0.11);
	border-radius: 30px;
	overflow: hidden;
}

.comment-reply-title {
	font-size: 20px !important;
	font-weight: 600 !important;
	margin-bottom: 40px !important;
	position: relative;
	z-index: 1;
	text-transform: capitalize;
}

.comment-form form .form-box {
	position: relative;
}

.form-min-heigh {
	min-height: 300px;
}

.form-min-heigh .form-box.form-group {
	min-height: 60px;
}

.form-min-heigh .form-box.form-group textarea {
	min-height: 120px;
}

.form-min-heigh .button {
	min-height: 60px;
}

.comment-form form .form-box .icon {
	position: absolute;
	top: 17px;
	right: 25px;
	font-size: 16px;
}

.comment-form form .form-box .form-control-custom {
	border: none;
	background: #f9f9f9;
	font-size: 14px;
	color: #081828;
	padding: 0 25px;
	font-weight: 500;
	height: 50px;
	border: 1px solid #eee;
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: 400;
	border-radius: 15px;
}

.comment-form form .form-box textarea.form-control-custom {
	height: 200px;
	padding: 25px;
}

.comment-form form .form-box .form-control-custom::-webkit-input-placeholder {
	font-size: 14px;
	color: #888;
	font-weight: 400;
}

.comment-form form .form-box .form-control-custom:-ms-input-placeholder {
	font-size: 14px;
	color: #888;
	font-weight: 400;
}

.comment-form form .form-box .form-control-custom::-ms-input-placeholder {
	font-size: 14px;
	color: #888;
	font-weight: 400;
}

.comment-form form .form-box .form-control-custom::placeholder {
	font-size: 14px;
	color: #888;
	font-weight: 400;
}

.sidebar .widget {
	padding: 40px;
	background-color: #fff;
	margin-bottom: 30px;
	border-radius: 20px;
	overflow: hidden;
	-webkit-box-shadow: 0px 1px 20px 0px rgba(32, 32, 32, 0.11);
	box-shadow: 0px 1px 20px 0px rgba(32, 32, 32, 0.11);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
	.sidebar .widget:first-child {
		margin-top: 30px;
	}
}

.sidebar .widget:last-child {
	margin-bottom: 0;
}

.sidebar .widget .widget-title {
	font-size: 18px;
	margin-bottom: 30px;
	position: relative;
	font-weight: 600;
	line-height: 28px;
	z-index: 1;
}

.sidebar .widget.popular-feeds .single-popular-feed {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 25px;
	padding-bottom: 25px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: 1px solid #eee;
	min-height: 110px;
	align-items: flex-start;
}

.sidebar .widget.popular-feeds .single-popular-feed:last-child {
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc {
	position: relative;
	padding-left: 100px;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .cetagory {
	font-size: 13px;
	border-radius: 15px;
	display: inline-block;
	margin-bottom: 10px;
	font-weight: 500;
	color: #888;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .cetagory:hover {
	color: #1E73E4;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .feed-img {
	position: absolute;
	left: 0;
	top: 5px;
	overflow: hidden;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .feed-img img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 15px;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .post-title {
	margin-bottom: 12px;
	line-height: 1.5;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .post-title a {
	font-size: 14px;
	font-weight: 500;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .post-title a:hover {
	color: #1E73E4;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .time {
	font-weight: 400;
	font-size: 13px;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .time i {
	margin-right: 4px;
}

.widget-button .button .btn {
	text-transform: none;
}

.quote-widget {
	display: flex;
	flex-direction: column;
}

.widget.popular-feeds .post-title a {
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	color: #3a424e;
	text-decoration: none;
	line-height: 1.4;
	transition: color 0.3s ease;
}

.widget.popular-feeds .post-title a:hover {
	color: #1E73E4;
}

.widget.popular-feeds .blog_meta .meta_like ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.widget.popular-feeds .blog_meta .meta_like ul li {
	display: inline-block;
	margin-right: 12px;
}

.widget.popular-feeds .blog_meta .meta_like ul li:last-child {
	margin-right: 0;
}

.widget.popular-feeds .blog_meta .meta_like ul li a {
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	color: #3a424e;
	text-decoration: none;
}

.widget.popular-feeds .blog_meta .meta_like ul li a i {
	margin-right: 4px;
	font-size: 16px;
	color: #3a424e;
	position: relative;
	top: -1px;
	transition: color 0.3s ease;
}

.widget.popular-feeds .blog_meta .meta_like ul li a .count {
	margin-left: 4px;
	font-size: 14px;
	color: #3a424e;
}

.widget.popular-feeds .blog_meta .meta_like ul li a:hover i {
	color: #1E73E4;
}

.quote-widget blockquote {
	position: relative;
	margin: 0;
	padding: 40px 15px 20px;
	background-color: #f9f9f9;
	border-radius: 15px;
	text-align: center;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.quote-widget .icon {
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 24px;
	color: #1E73E4;
}

.quote-widget h4 {
	margin: 0;
	color: #3a424e;
	line-height: 1.4;
}

.quote-widget .text-muted {
	margin-top: 8px;
	text-align: right;
	color: #555;
	font-size: 14px;
}

.quote-widget blockquote,
.quote-widget .fade-quote {
	position: relative;
	overflow: hidden;
}

.quote-widget .quote-author--inside {
	position: absolute;
	right: 18px;
	bottom: 12px;
	width: calc(100% - 36px);
	box-sizing: border-box;
	text-align: right;
	margin: 0;
	padding: 0;
	display: inline-block;
	color: #555;
	font-size: 14px;
}

#quote-text,
#quote-author {
	display: inline-block;
	width: 100%;
	box-sizing: border-box;
	transition: transform 340ms cubic-bezier(.2, .8, .2, 1), opacity 300ms ease;
	will-change: transform, opacity;
	transform: translateX(0);
	opacity: 1;
}

.popular-reviews-widget .popular-review-item {
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid #eee;
}

.popular-reviews-widget .popular-review-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.popular-reviews-widget .review-stars .star {
	font-size: 14px;
	color: #1E73E4;
}

.popular-reviews-widget .popular-review-item .review-stars .star {
	margin: 10px 0 !important;
}

.popular-reviews-widget .review-snippet {
	display: inline-block;
	font-size: 15px;
	color: #3a424e;
	transition: color 0.3s ease;
	text-decoration: none;
}

.popular-reviews-widget .review-snippet:hover {
	color: #1E73E4;
	text-decoration: none;
}

.job-info-widget .utp-banner {
	background-color: #f2d949;
	border-radius: 15px;
	height: 340px;
	position: relative;
	overflow: hidden;
	padding: 20px;
}

.job-info-widget .utp-banner .utp-lines {
	position: absolute;
	top: 70%;
	left: 0;
	width: 100%;
	height: 156px;
	transform: rotate(-52deg) translateY(-50%);
	transform-origin: center;
	pointer-events: none;
	z-index: 0;
}

.job-info-widget .utp-banner .utp-lines .lines-left::before,
.job-info-widget .utp-banner .utp-lines .lines-left::after {
	content: "";
	position: absolute;
	left: 50%;
	width: 420px;
	height: 12px;
	background: #fc3f1d;
	transform: translateX(-100%);
	opacity: 0;
	animation: move-left 2s linear infinite;
}

.job-info-widget .utp-banner .utp-lines .lines-left::before {
	top: 0;
	box-shadow:
		0 0px 0 #fc3f1d,
		0 56px 0 #fc3f1d,
		0 112px 0 #fc3f1d;
	animation-delay: calc(2s + 0s);
}

.job-info-widget .utp-banner .utp-lines .lines-left::after {
	top: 28px;
	box-shadow:
		0 0px 0 #fc3f1d,
		0 56px 0 #fc3f1d,
		0 112px 0 #fc3f1d;
	animation-delay: calc(2s + 0.4s);
}

.job-info-widget .utp-banner .utp-lines .lines-right::before,
.job-info-widget .utp-banner .utp-lines .lines-right::after {
	content: "";
	position: absolute;
	left: 50%;
	width: 420px;
	height: 12px;
	background: #fc3f1d;
	transform: translateX(100%);
	opacity: 0;
	animation: move-right 2s linear infinite;
}

.job-info-widget .utp-banner .utp-lines .lines-right::before {
	top: 14px;
	box-shadow:
		0 0px 0 #fc3f1d,
		0 56px 0 #fc3f1d,
		0 112px 0 #fc3f1d;
	animation-delay: calc(2s + 0.2s);
}

.job-info-widget .utp-banner .utp-lines .lines-right::after {
	top: 42px;
	box-shadow:
		0 0px 0 #fc3f1d,
		0 56px 0 #fc3f1d;
	animation-delay: calc(2s + 0.6s);
}

.job-info-widget .utp-banner .utp-lines .lines-left::before,
.job-info-widget .utp-banner .utp-lines .lines-left::after,
.job-info-widget .utp-banner .utp-lines .lines-right::before,
.job-info-widget .utp-banner .utp-lines .lines-right::after {
	animation-duration: 6s;
}

@keyframes move-left {
	0% {
		transform: translateX(-100%);
		opacity: 0;
	}

	5% {
		opacity: 1;
	}

	33% {
		transform: translateX(100%);
		opacity: 0;
	}

	100% {
		transform: translateX(100%);
		opacity: 0;
	}

	/* Пауза 4 сек */
}

@keyframes move-right {
	0% {
		transform: translateX(100%);
		opacity: 0;
	}

	5% {
		opacity: 1;
	}

	33% {
		transform: translateX(-100%);
		opacity: 0;
	}

	100% {
		transform: translateX(-100%);
		opacity: 0;
	}

	/* Пауза 4 сек */
}

.job-info-widget .utp-content {
	position: relative;
	width: 100%;
	height: 100%;
}

.job-info-widget .utp-texts {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 50%;
	line-height: 1.4;
	white-space: normal;
	overflow-wrap: break-word;
}

.job-info-widget .utp-text {
	font-size: 20px;
	font-weight: 700;
	color: #3a424e;
	opacity: 0;
	transform: translateX(100%);
	transition: transform 0.5s ease, opacity 0.3s ease;
	position: absolute;
	white-space: normal;
}

.job-info-widget .utp-text.active {
	opacity: 1;
	transform: translateX(0);
}

.job-info-widget .utp-image {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 190px;
	height: auto;
	transform: translateX(100%);
}

.job-info-widget .animate-courier {
	animation: fly-in 0.4s ease-out forwards, shake 0.9s ease-in-out 2s infinite;
	animation-delay: 0s, 2s;
}

@keyframes fly-in {
	to {
		transform: translateX(0);
	}
}

@keyframes shake {

	0%,
	100% {
		transform: translateX(0) rotate(0);
	}

	20% {
		transform: translateX(2px) rotate(1deg);
	}

	40% {
		transform: translateX(-2px) rotate(-1deg);
	}

	60% {
		transform: translateX(2px) rotate(1deg);
	}

	80% {
		transform: translateX(-2px) rotate(-1deg);
	}
}

.job-info-widget .utp-text,
.job-info-widget .utp-content,
.job-info-widget .utp-texts {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.job-info-widget .utp-image {
	pointer-events: none;
	-webkit-user-drag: none;
	user-drag: none;
}

.counter-widget .counter-item {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid #eee;
}

.counter-widget .counter-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.counter-widget .counter-item .counter-icon {
	flex-shrink: 0;
	font-size: 32px;
	color: #1E73E4;
}

.counter-widget .counter-item .counter-content {
	padding-left: 15px;
	flex-grow: 1;
}

.counter-widget .counter-item .counter-content .count {
	font-size: 24px;
	font-weight: 700;
	color: #293651;
}

.counter-widget .counter-item p {
	font-size: 14px;
	font-weight: 500;
	color: #555;
}

@media (max-width: 991px) {
	.counter-widget .counter-item {
		padding: 15px;
		margin-bottom: 15px;
	}

	.counter-widget .counter-item .counter-icon {
		font-size: 28px;
	}

	.counter-widget .counter-item .counter-content .count {
		font-size: 22px;
	}
}

@media (max-width: 767px) {
	.counter-widget .counter-item {
		flex-direction: column;
		text-align: center;
		padding-left: 0;
		margin-top: 10px;
	}

	.counter-widget .counter-item .counter-content {
		margin-top: 10px;
	}

	.counter-widget .counter-item .counter-content .count {
		font-size: 20px;
	}

	.counter-widget .counter-item p {
		font-size: 12px;
	}
}

.faq-widget .widget-title {
	font-size: 20px;
	font-weight: 700;
	color: #3a424e;
	margin-bottom: 20px;
}

.faq-widget .accordion-item {
	border: none;
	margin-bottom: 0;
	box-shadow: none;
}

.faq-widget .accordion-button.faq-btn {
	font-size: 18px;
	font-weight: 500;
	color: #3a424e;
	text-align: left;
	padding: 0 33px 20px 0;
	background: none;
	box-shadow: none;
}

.faq-widget .accordion-button.faq-btn::after {
	margin-left: auto;
}

.faq-widget .accordion-button.faq-btn:focus {
	box-shadow: none;
}

.faq-widget .accordion-body.faq-body {
	font-size: 14px;
	line-height: 24px;
	color: #2b2a3d;
	padding-left: 0;
	padding-top: 0;
}

.faq-widget .accordion-button::after {
	display: none;
}

.faq-widget .accordion-button.faq-btn {
	position: relative;
	padding-right: 40px;
}

.faq-widget .accordion-button.faq-btn::before {
	content: "\25BC";
	font-size: 14px;
	color: #1E73E4;
	position: absolute;
	right: 10px;
	transition: transform 0.3s ease;
}

.faq-widget .accordion-button.faq-btn:not(.collapsed)::before {
	transform: rotate(180deg);
}

.faq-widget .accordion-item,
.faq-widget .requirement-item,
.faq-widget .accordion-button,
.faq-widget .accordion-collapse {
	border-radius: 0 !important;
}

/*===========================
    Bread Crumbs 
===========================*/
.breadcrumbs {
	position: relative;
	padding-bottom: 20px;
	padding-top: 110px;
	z-index: 2;
	text-align: left;
	background-color: #f7f8f9;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.breadcrumbs {
		padding-bottom: 60px;
		padding-top: 120px;
	}
}

@media (max-width: 767px) {
	.breadcrumbs {
		padding-bottom: 60px;
		padding-top: 120px;
	}
}

.breadcrumbs .breadcrumbs-content {
	position: relative;
	text-align: center;
}

.breadcrumbs .breadcrumbs-content .page-title {
	font-size: 32px;
	color: #3a424e;
	font-weight: 700;
	position: relative;
	line-height: 50px;
}

.breadcrumbs .breadcrumbs-content p {
	color: #3a424e;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.breadcrumbs .breadcrumbs-content .page-title {
		font-size: 28px;
		line-height: 42px;
	}
}

@media (max-width: 767px) {
	.breadcrumbs .breadcrumbs-content .page-title {
		font-size: 25px;
		line-height: 38px;
	}
}

.breadcrumbs .breadcrumbs-content .breadcrumb-nav {
	background: transparent;
	border-radius: 0;
	margin-bottom: 0;
	padding: 0;
	display: inline-block;
}

.breadcrumbs .breadcrumb-nav {
	text-align: center;
	margin-top: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.breadcrumbs .breadcrumb-nav {
		margin-top: 10px;
	}
}

@media (max-width: 767px) {
	.breadcrumbs .breadcrumb-nav {
		margin-top: 8px;
	}
}

.breadcrumbs .breadcrumb-nav li {
	display: inline-block;
	position: relative;
	padding-right: 15px;
	margin-right: 15px;
}

.breadcrumbs .breadcrumb-nav li:after {
	content: "\ea5c";
	font-family: lineIcons;
	font-size: 10px;
	position: absolute;
	top: 4px;
	right: -7px;
}

.breadcrumbs .breadcrumb-nav li:last-child {
	margin: 0;
	padding: 0;
}

.breadcrumbs .breadcrumb-nav li:last-child::after {
	display: none;
}

.breadcrumbs .breadcrumb-nav li,
.breadcrumbs .breadcrumb-nav li a {
	color: #3a424e;
	font-size: 15px;
	font-weight: 500;
}

.breadcrumbs .breadcrumb-nav li a {
	position: relative;
}

.breadcrumbs .breadcrumb-nav li a:hover {
	text-decoration: underline;
}

.breadcrumbs {
	min-height: 120px;
}

.breadcrumbs .breadcrumbs-content {
	min-height: 60px;
}

.section {
	padding-top: 50px;
	padding-bottom: 100px;
	position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.section {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

@media (max-width: 767px) {
	.section {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

/*===========================
    Pagination css 
===========================*/
.pagination {
	text-align: left;
	margin: 40px 0 0 0;
	display: block;
}

.pagination.center {
	text-align: center;
}

.pagination.right {
	text-align: right;
}

.pagination.left {
	text-align: left;
}

.pagination .pagination-list {
	display: inline-block;
	overflow: hidden;
}

.pagination .pagination-list li {
	margin-right: 5px;
	display: inline-block;
	margin-top: 10px;
}

.pagination .pagination-list li:last-child {
	margin-right: 0px;
}

.pagination .pagination-list li a {
	background: #fff;
	color: #081828;
	font-weight: 400;
	font-size: 14px;
	border-radius: 15px;
	padding: 8px 20px;
	text-align: center;
	border: 1px solid #eee;
}

.pagination .pagination-list li.active a,
.pagination .pagination-list li:hover a {
	background: #1E73E4;
	color: #fff;
	border-color: transparent;
}

.pagination .pagination-list li a i {
	font-size: 13px;
}

.blog-grids.pagination {
	margin-top: 50px;
	text-align: center;
}

.button .btn {
	display: inline-block;
	text-transform: capitalize;
	font-size: 15px;
	font-weight: 600;
	padding: 13px 30px;
	background-color: #1E73E4;
	color: #fff;
	border: none;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	border-radius: 15px;
	position: relative;
	z-index: 1;
	margin-right: 7px;
	overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.button .btn {
		padding: 12px 25px;
		font-size: 14px;
		font-weight: 500;
	}
}

@media (max-width: 767px) {
	.button .btn {
		padding: 12px 25px;
		font-size: 14px;
		font-weight: 500;
	}
}

.button .btn i {
	display: inline-block;
	margin-right: 5px;
}

.button .btn:last-child {
	margin: 0;
}

.button .btn:hover {
	color: #fff;
	background-color: #081828;
	-webkit-box-shadow: 0px 4px 4px #0000000f;
	box-shadow: 0px 4px 4px #0000000f;
}

.button .btn-alt {
	color: #fff !important;
	background: transparent !important;
	border: 2px solid #fff;
	padding: 11px 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.button .btn-alt {
		padding: 10px 30px;
	}
}

@media (max-width: 767px) {
	.button .btn-alt {
		padding: 10px 30px;
	}
}

.button .btn-alt:hover {
	background-color: #fff !important;
	color: #1E73E4 !important;
}

.align-left {
	text-align: left;
}

.align-right {
	text-align: right;
}

.align-center {
	text-align: center;
}

.mce-content-body {
	padding: 20px;
	box-sizing: border-box;
}

.review-hero {
	position: relative;
	background-color: #1E73E4;
	border-bottom-right-radius: 180px;
	border-bottom-left-radius: 50px;
	color: #fff;
	min-height: 450px;
	height: 450px;
	overflow: hidden;
	margin-top: 0;
}

.review-hero .review-hero-photo {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 40vw;
	border-top-left-radius: 120px;
	border-bottom-right-radius: 120px;
	border-bottom-left-radius: 120px;
	overflow: hidden;
	z-index: 1;
	transform: translateX(10%);
}

.review-hero .review-hero-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.review-hero .review-hero-text {
	padding: 50px 0;
	max-width: 600px;
	position: relative;
	z-index: 2;
}

.review-hero .review-title {
	font-size: 34px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 20px;
}

.review-hero .review-salary {
	display: block;
	font-size: 36px;
	font-weight: 800;
	color: #fff;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
	margin: 30px 0 0;
	text-align: left;
}

.review-hero .review-hero-text p {
	font-size: 17px;
	font-weight: 500;
	line-height: 1.5;
	margin: 20px 0;
}

@media (min-width: 992px) and (max-width: 1200px) {
	.review-hero .review-hero-text {
		padding: 25px 0;
		max-width: 800px;
	}
}

@media (max-width: 991.98px) {
	.review-hero {
		background-color: transparent;
		min-height: 500px;
		height: auto;
		margin: 0;
		padding: 0;
		border-radius: 0;
		text-align: center;
		position: relative;
	}

	.review-hero .review-hero-photo {
		position: relative;
		width: 100%;
		height: 500px;
		border-radius: 0 0 30px 30px;
		transform: none;
		z-index: 0;
	}

	.review-hero .review-hero-photo img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.review-hero .review-hero-text {
		position: absolute;
		top: 270px;
		left: 50%;
		transform: translate(-50%, -50%);
		padding: 20px;
		max-width: 90%;
		width: 90%;
		z-index: 1;
		background-color: rgba(255, 255, 255, 0.95);
		border-radius: 15px;
		box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
	}

	.review-hero .review-title {
		font-size: 22px;
		font-weight: 800;
		line-height: 1.2;
		margin-bottom: 15px;
	}

	.review-hero .review-salary {
		font-size: 24px;
		font-weight: 800;
		color: #1E73E4;
		margin: 10px 0;
	}

	.review-hero .review-hero-text p {
		font-size: 16px;
		font-weight: 500;
		line-height: 1.5;
		margin: 10px 0;
	}
}

.review-single p {
	font-size: 14px;
	margin: 20px 0;
	line-height: 26px;
}

.review-single p:first-child {
	margin-top: 0;
}

.review-single h3 {
	font-size: 20px;
	margin-bottom: 20px;
	font-weight: 600;
	line-height: 28px;
}

.review-box {
	overflow: hidden !important;
	-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.164);
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.164);
	padding: 30px;
	line-height: 22px;
	border-radius: 30px;
	background-color: #fff;
	position: relative;
}

.review-box .review-title {
	font-size: 25px;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 15px;
	color: #222;
	letter-spacing: 0.5px;
	text-transform: capitalize;
}

.review-box .review-title::after {
	content: '';
	display: block;
	width: 50px;
	height: 3px;
	background-color: #1E73E4;
	margin-top: 8px;
	border-radius: 2px;
}

@media (max-width: 768px) {
	.review-box .review-title {
		font-size: 1.5rem;
		text-align: center;
	}

	.review-box .review-title::after {
		width: 40px;
		margin-top: 5px;
	}
}

@media (max-width: 576px) {
	.review-box .review-title {
		font-size: 1.25rem;
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	30% {
		transform: scale(1.2);
	}

	60% {
		transform: scale(0.9);
	}

	100% {
		transform: scale(1);
	}
}

.review-actions button {
	border: none;
	background: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #3a424e;
	transition: color 0.3s ease;
}

.review-actions button i {
	position: relative;
	top: 2px;
	font-size: 18px;
	line-height: 1;
	transition: color 0.3s ease;
	min-height: 24px;
}

.review-actions .like-count {
	min-width: 20px;
	font-size: 15px;
	color: #3a424e;
	transition: color 0.3s ease;
}

.review-actions button:hover i,
.review-actions button:hover {
	color: #fc3f1d;
}

.review-actions button.active i,
.review-actions button.active {
	color: #fc3f1d;
}

.review-actions button.animate i {
	animation: pulse 0.4s ease;
}

.review-photo-wrapper {
	display: inline-block;
	text-align: center;
}

.review-avatar {
	max-width: 120px;
	display: block;
}

.popular-reviews-widget .popular-review-row {
	align-items: flex-start;
}

.popular-reviews-widget .popular-review-avatar-wrap {
	width: 50px;
	height: 50px;
	margin-right: 12px;
	border-radius: 50%;
	overflow: hidden;
	flex: 0 0 50px;
	display: block;
}

.popular-reviews-widget .popular-review-avatar {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.popular-reviews-widget .review-snippet {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.popular-reviews-widget .review-stars {
	justify-content: left;
}

.review-name {
	max-width: 100%;
	word-break: break-word;
	overflow-wrap: anywhere;
	text-align: center;
	display: block;
	margin-top: 5px;
	font-weight: bold;
	font-size: 18px;
}

.review-city {
	max-width: 100%;
	word-break: break-word;
	overflow-wrap: anywhere;
	text-align: center;
	display: block;
	margin-top: 5px;
	font-weight: bold;
	font-size: 14px;
}

.review-table-wrapper {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 0 12px #F4F4F4;
}

.review-table-head {
	font-weight: 600;
	font-size: 16px;
	color: #3a424e;
	padding: 12px;
	text-align: center;
}

.cell-inner {
	padding: 15px 20px;
	font-size: 15px;
	color: #3a424e;
	text-align: left;
}

.review-table-cell.border-split {
	position: relative;
}

.review-table-cell.border-split::after {
	content: "";
	position: absolute;
	top: 6px;
	bottom: 6px;
	right: -0.5px;
	width: 1px;
	background-color: #ccc;
}

.review-stars {
	cursor: default;
	user-select: none;
	display: flex;
	justify-content: center;
	margin: 10px 0 10px 0;
}

.review-stars .star {
	font-size: 21px;
	line-height: 1;
	color: #1E73E4;
	transition: transform 0.3s ease, filter 0.3s ease;
	margin-right: 4px;
}

.review-stars .star:last-child {
	margin-right: 0;
}

.review-stars .star:hover {
	transform: scale(1.2);
	filter: brightness(1.3);
}

.review-stars .inactive {
	color: #ccc;
}

.review-table-wrapper {
	min-width: 280px;
	max-width: 100%;
}

.review-table-head {
	font-weight: 600;
	font-size: 16px;
	color: #3a424e;
}

.no-gutters {
	box-shadow: 0 0 12px #F4F4F4;
}

.review-plus {
	background-color: #d2f8d2;
}

.review-minus {
	background-color: #f8d2d2;
}

.review-plus::after {
	content: "\EBC5";
	font-family: "LineIcons";
	margin-left: 6px;
	font-weight: normal;
	vertical-align: 1px;
}

.review-minus::after {
	content: "\EBC4";
	font-family: "LineIcons";
	margin-left: 6px;
	font-weight: normal;
	vertical-align: -3px;
}

.review-table-cell {
	color: #3a424e;
	font-size: 15px;
}

.review-text {
	color: #3a424e;
	font-size: 1rem;
	margin-top: 10px;
}

.review-actions button {
	margin-left: 5px;
}

.read-more-link {
	color: #3a424e;
	font-weight: 500;
	margin-left: 6px;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.read-more-link:hover {
	text-decoration: underline;
	color: #0f6ce7;
}

.review-actions button {
	font-size: 16px;
	color: #444;
	margin-right: 8px;
	border: none;
	background: none;
	cursor: pointer;
	transition: 0.2s;
}

.like-count {
	margin-left: 4px;
}

.review-actions-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 14px;
	color: #3a424e;
}

.review-actions-meta .review-like-link,
.review-actions-meta .review-comments-link {
	display: inline-flex;
	align-items: center;
	font-size: 15px;
	color: #3a424e;
	text-decoration: none;
	transition: color 0.3s ease;
}

.review-actions-meta .review-like-link i,
.review-actions-meta .review-comments-link i {
	margin-right: 4px;
	font-size: 18px;
	color: #3a424e;
	position: relative;
	top: -1px;
	transition: color 0.3s ease;
}

.review-actions-meta .review-like-link:hover i,
.review-actions-meta .review-comments-link:hover i {
	color: #1E73E4;
}

.review-actions-meta .count {
	font-size: 16px;
	color: #3a424e;
	margin-left: 4px;
}

/*===========================
        15.JOB PAGE css 
===========================*/
.job-hero {
	position: relative;
	background-color: #1E73E4;
	border-bottom-right-radius: 205px;
	border-bottom-left-radius: 60px;
	color: #fff;
	min-height: 600px;
	height: 700px;
	overflow: hidden;
	margin-top: 0;
}

.job-hero .job-hero-photo {
	position: absolute;
	top: var(--navbar-height, 98px);
	right: 0;
	bottom: 0;
	width: 45vw;
	border-top-left-radius: 200px;
	border-bottom-right-radius: 200px;
	border-bottom-left-radius: 200px;
	overflow: hidden;
	z-index: 1;
}

.job-hero .job-hero-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.job-hero .job-hero-text {
	padding: 150px 0 100px;
	max-width: 500px;
	position: relative;
	z-index: 3;
}

.job-hero .job-hero-text.long-text {
	padding: 200px 0 100px;
}

.job-hero .job-hero-text h1 {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 20px;
}

.job-hero .job-hero-text .job-partner {
	font-size: 32px;
	font-weight: 800;
	margin-top: -30px;
	margin-bottom: 20px;
}

.job-hero .job-hero-text.tiny-mini-span h1 {
	line-height: 0.5;
	margin-bottom: 10px;
}

.job-hero .job-hero-text.tiny-mini-span .mini-span {
	margin-top: 45px;
}

.job-hero .job-hero-text.tiny-mini-span .tiny-span {
	margin-top: 0;
}

.job-hero .job-hero-text.tiny-mini-span-2 h1 {
	line-height: 0.9;
	margin-bottom: 10px;
}

.job-hero .job-hero-text.tiny-mini-span-2 .mini-span {
	margin-top: 30px;
}

.job-hero .job-hero-text.tiny-mini-span-2 .tiny-span {
	margin-top: 0;
}

.job-hero .job-hero-text span {
	display: inline-block;
	font-size: 38px;
	font-weight: 600;
	color: #fff;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
	margin: 0;
}

.job-hero .job-hero-text.mini-span span {
	display: inline-block;
	font-size: 25px;
	font-weight: 600;
	color: #fff;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
	margin-top: 18px;
}

.job-hero .job-hero-text .tiny-span {
	display: inline-block;
	font-size: 23px;
	/* оставляем твой размер */
	font-weight: 500;
	color: #fff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.job-hero .job-hero-text p.job-salary {
	display: block;
	font-size: 36px;
	font-weight: 800;
	color: #fff;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
	margin: 30px 0 0;
	text-align: left;
}

.job-hero .job-hero-text p.job-dop {
	display: block;
	font-size: 27px;
	font-weight: 800;
	color: #fff;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
	margin-top: 20px;
	text-align: left;
}

.job-hero .job-hero-text p {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	margin: 20px 0;
}

@media (max-width: 991.98px) {
	.job-hero {
		border-radius: 0;
		min-height: auto;
		text-align: center;
	}

	.job-hero .job-hero-photo {
		position: relative;
		width: 100%;
		height: 320px;
		border-radius: 0;
		top: 0;
	}

	.job-hero .job-hero-text {
		padding: 60px 20px;
		margin: 0 auto;
	}

	.job-hero .job-hero-text h1 {
		font-size: 36px;
	}

	.job-hero .job-salary {
		font-size: 28px;
	}
}

@media (max-width: 767.98px) {
	.job-hero {
		background: none;
		border-radius: 0;
		height: auto;
		min-height: auto;
		text-align: center;
		position: relative;
		padding: 0 12px;
	}

	.job-hero .job-hero-photo {
		position: relative;
		height: 500px;
		margin: 0 auto;
		border-radius: 10px;
		overflow: hidden;
		z-index: 1;
	}

	.job-hero .job-hero-photo img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

	.job-hero .job-hero-text {
		position: absolute;
		margin-top: 280px;
		left: 50%;
		transform: translate(-50%, -50%);
		background: rgba(255, 255, 255, 0.65);
		color: #000;
		padding: 25px 20px;
		border-radius: 10px;
		width: 85%;
		z-index: 3;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
		backdrop-filter: blur(4px);
		-webkit-backdrop-filter: blur(4px);
	}

	.job-hero .job-hero-text h1 {
		font-size: 28px;
		font-weight: 800;
		line-height: 1.2;
		margin-bottom: 15px;
	}

	.job-hero .job-salary {
		font-size: 22px;
		font-weight: 800;
		margin: 5px 0 5px;
		text-align: center;
		background: rgba(100, 100, 100, 0.65);
		border-radius: 8px;
		padding: 8px 12px;
		display: inline-block;
		-webkit-backdrop-filter: blur(4px);
	}

	.job-hero .job-hero-text p {
		font-size: 18px;
		line-height: 1.5;
		font-weight: 600;
		margin: 10px 0;
	}

	.job-hero .job-hero-text .main-btn {
		margin-top: 10px;
	}
}

/* =========================================================
   СЕКЦИЯ О РАБОТЕ (about_job)
========================================================= */
/*===========================
     05.about_job css 
===========================*/
.about_job .row.align-items-center {
	align-items: stretch !important;
}

.about_job .col-lg-5,
.about_job .col-lg-7 {
	display: flex;
	flex-direction: column;
}

.about_job .about_image {
	position: relative;
	flex: 1 1 auto;
	display: flex;
	align-items: stretch;
	height: 100%;
	overflow: hidden;
	/* Скрываем излишки */
}

/* Обработка изображения */
.about_job .about_image .image {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translateY(-50%);
	/* Центрируем изображение по вертикали */
	display: block;
}

/* Для изображения с разными радиусами углов */
.about_job.image-left .about_image .image {
	border-radius: 3px 70px 70px 70px;
	/* Без верхнего левого угла */
}

.about_job.image-right .about_image .image {
	border-radius: 70px 3px 70px 70px;
	/* Без верхнего правого угла */
}

/* Контейнер с текстом */
.about_job .about_content {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
}

.about_job.image-left .about_content {
	padding-left: 40px;
}

.about_job.image-right .about_content {
	padding-right: 40px;
}

.about_job .about_content .section_title {
	width: 100%;
}

.about_job .about_content .section_title .title {
	font-size: 35px;
	font-weight: 800;
	margin-bottom: 20px;
}

.about_job .about_content .section_title p {
	font-size: 16px;
	line-height: 1.6;
	margin-top: 15px;
}

.about_job .about_content .section_title ul {
	list-style: disc;
	list-style-position: inside;
	padding-left: 20px;
}

.about_job .about_content .section_title li {
	margin-bottom: 5px;
	font-weight: bold;
}

/* Адаптивные стили */
@media (max-width: 991.98px) {

	.about_job .col-lg-5,
	.about_job .col-md-7,
	.about_job .col-lg-7 {
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 100% !important;
	}

	.about_job.image-left .col-lg-5,
	.about_job.image-right .col-lg-5,
	.about_job.image-left .col-md-7,
	.about_job.image-right .col-md-7 {
		order: 2;
	}

	.about_job.image-left .col-lg-7,
	.about_job.image-right .col-lg-7 {
		order: 1;
	}

	/* Стиль для блока с изображением */
	.about_job .about_image {
		width: 100%;
		height: 260px;
		margin: 25px auto 0;
		overflow: hidden;
	}

	.about_job .about_image .image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

	.about_job .about_content {
		width: 100%;
		padding: 0;
	}

	.about_job.image-left .about_content {
		padding-left: 0;
	}

	.about_job.image-right .about_content {
		padding-right: 0;
	}
}

@media (max-width: 991px) {
	.about_job .about_image {
		height: 200px;
		overflow: hidden;
	}

	.about_job .about_image .image {
		object-fit: cover;
		object-position: center 25%;
		/* Центрируем изображение по вертикали */
	}

	.about_job.image-right .about_image .image {
		border-radius: 70px 3px 70px 70px;
	}
}

/* =========================================================
   СЕКЦИЯ ПРЕИМУЩЕСТВ (.job-benefits)
========================================================= */
.job-benefits .benefit-card {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	padding: 36px 28px;
	border-radius: 20px;
	background: #1E73E4;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.job-benefits .benefit-card .content {
	flex: 0 0 66%;
	max-width: 66%;
	box-sizing: border-box;
	z-index: 3;
	padding-right: 20px;
}

.job-benefits .benefit-card .content h3 {
	margin: 0 0 10px;
	font-size: 22px;
	font-weight: 800;
}

.job-benefits .benefit-card .content p {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
}

.job-benefits .benefit-card .image {
	position: absolute;
	right: -6%;
	bottom: -30%;
	width: 42%;
	height: auto;
	z-index: 1;
	pointer-events: none;
	display: block;
}

.job-benefits .benefit-card .image img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	max-width: none;
}

.job-benefits .benefit-card.light {
	background: #fff;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	color: #000;
}

.job-benefits .benefit-card.yellow {
	background: #1E73E4;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	color: #000;
}

.job-benefits .benefit-card.long-card {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	padding: 50px 40px;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	transition: border-radius 0.3s ease;
}

.job-benefits .benefit-card.long-card .content {
	flex: 0 0 66%;
	max-width: 66%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	z-index: 2;
}

.job-benefits .benefit-card.long-card .content h3 {
	font-size: 26px;
	font-weight: 800;
	margin-bottom: 15px;
}

.job-benefits .benefit-card.long-card .content p {
	font-size: 18px;
	line-height: 1.6;
	margin: 0;
}

.job-benefits .benefit-card.long-card.photo-right {
	border-bottom-right-radius: 60px;
}

.job-benefits .benefit-card.long-card.photo-right .content {
	margin-right: 34%;
	padding-right: 30px;
}

.job-benefits .benefit-card.long-card.photo-right img {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 34%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	border-top-left-radius: 60px;
	border-bottom-left-radius: 60px;
}

.job-benefits .benefit-card.long-card.photo-left {
	border-bottom-left-radius: 60px;
}

.job-benefits .benefit-card.long-card.photo-left .content {
	margin-left: 34%;
	padding-left: 30px;
}

.job-benefits .benefit-card.long-card.photo-left img {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 34%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	border-top-right-radius: 60px;
	border-bottom-right-radius: 60px;
}

.job-benefits .benefit-card.no-top-right {
	border-top-right-radius: 0 !important;
}

.job-benefits .benefit-card.no-top-left {
	border-top-left-radius: 0 !important;
}

@media (max-width: 767px) {

	.job-benefits .benefit-card.long-card,
	.job-benefits .benefit-card.long-card.photo-right,
	.job-benefits .benefit-card.long-card.photo-left {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		height: 400px;
		overflow: hidden;
		border-radius: 20px 20px 60px 60px !important;
		padding: 0;
		position: relative;
		box-sizing: border-box;
	}

	.job-benefits .benefit-card.long-card.photo-right .content,
	.job-benefits .benefit-card.long-card.photo-left .content {
		margin: 0;
		padding: 20px;
		box-sizing: border-box;
	}

	.job-benefits .benefit-card.long-card.photo-right .content,
	.job-benefits .benefit-card.long-card.photo-left .content,
	.job-benefits .benefit-card.long-card>.content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		flex: 0 0 50%;
		height: 50%;
		min-height: 0;
		max-width: 100%;
		width: 100%;
		background: #fff;
	}

	.job-benefits .benefit-card.long-card.photo-right img {
		position: static;
		display: block;
		flex: 0 0 50%;
		height: 50%;
		width: 100%;
		max-width: 100%;
		object-fit: cover;
		border-radius: 60px 0 60px 60px;
		box-sizing: border-box;
	}

	.job-benefits .benefit-card.long-card.photo-left img {
		position: static;
		display: block;
		flex: 0 0 50%;
		height: 50%;
		width: 100%;
		max-width: 100%;
		object-fit: cover;
		border-radius: 0 60px 60px 60px;
		box-sizing: border-box;
	}

	.job-benefits .benefit-card.long-card.photo-right img,
	.job-benefits .benefit-card.long-card.photo-left img {
		top: auto;
		bottom: auto;
		left: auto;
		right: auto;
	}
}

@media (max-width: 991px) {
	.job-benefits .benefit-card {
		padding: 28px 24px;
	}

	.job-benefits .benefit-card .content h3 {
		font-size: 20px;
	}

	.job-benefits .benefit-card .content p {
		font-size: 15px;
	}

	.job-benefits .benefit-card.long-card {
		padding: 40px 30px;
	}

	.job-benefits .benefit-card.long-card .content h3 {
		font-size: 22px;
	}
}

@media (max-width: 767px) {

	.job-benefits .col-md-6,
	.job-benefits .col-lg-6 {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.job-benefits .benefit-card {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding: 28px 20px;
		border-radius: 20px;
	}

	.job-benefits .benefit-card .content {
		flex: 0 0 65%;
		max-width: 65%;
		padding-right: 15px;
	}

	.job-benefits .benefit-card .image {
		position: absolute;
		right: -8%;
		bottom: -35%;
		width: 45%;
	}

	.job-benefits .benefit-card .image img {
		width: 100%;
		height: auto;
	}
}

/* =========================================================
   СЕКЦИЯ ЭТАПОВ (.steps_section)
========================================================= */
.steps_section {
	background-color: #1E73E4;
	padding: 90px 0;
	margin: 30px 60px;
	border-radius: 60px;
}

.steps_section .section_title {
	text-align: left;
	padding-bottom: 30px;
	font-size: 35px;
	font-weight: 800;
	margin-bottom: 20px;
}

.steps_section .step_card {
	background: #fff;
	border-radius: 20px;
	padding: 30px 25px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	height: 100%;
	min-height: 240px;
}

.steps_section .step_card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.steps_section .step_card .step_number {
	display: inline-block;
	background: #f4f4f4;
	color: #000;
	font-weight: 700;
	font-size: 16px;
	padding: 6px 16px;
	border-radius: 8px;
	margin-bottom: 25px;
}

.steps_section .step_card h3 {
	font-size: 20px;
	font-weight: 700;
	color: #000;
	margin-bottom: 10px;
}

.steps_section .step_card p {
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	margin-bottom: 20px;
}

.steps_section .step_card .main-btn {
	display: inline-block;
	width: 100%;
	text-align: center;
	font-weight: 700;
	text-transform: uppercase;
}

.steps_section .final_step-card.long-card {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	padding: 50px 40px;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	transition: border-radius 0.3s ease;
}

/* Контент */
.steps_section .final_step-card.long-card .final_step-card__content {
	flex: 0 0 66%;
	max-width: 66%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	z-index: 2;
}

.steps_section .final_step-card.long-card .final_step-card__content h3 {
	font-size: 26px;
	font-weight: 800;
	margin-bottom: 15px;
}

.steps_section .final_step-card.long-card .final_step-card__content p {
	font-size: 18px;
	line-height: 1.6;
	margin: 0;
}

.steps_section .final_step-card.long-card.photo-right {
	border-bottom-right-radius: 60px;
}

.steps_section .final_step-card.long-card.photo-right .final_step-card__content {
	margin-right: 34%;
	padding-right: 30px;
}

.steps_section .final_step-card.long-card.photo-right img {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 34%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	border-top-left-radius: 60px;
	border-bottom-left-radius: 60px;
}

.steps_section .final_step-card.long-card.photo-left {
	border-bottom-left-radius: 60px;
}

.steps_section .final_step-card.long-card.photo-left .final_step-card__content {
	margin-left: 34%;
	padding-left: 30px;
}

.steps_section .final_step-card.long-card.photo-left img {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 34%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	border-top-right-radius: 60px;
	border-bottom-right-radius: 60px;
}

.steps_section .final_step-card.no-top-right {
	border-top-right-radius: 0 !important;
}

.steps_section .final_step-card.no-top-left {
	border-top-left-radius: 0 !important;
}

@media (max-width: 767px) {
	.steps_section {
		border-radius: 30px;
	}

	.steps_section .final_step {
		margin-top: 500px;
	}

	.steps_section .final_step-card.long-card,
	.steps_section .final_step-card.long-card.photo-right,
	.steps_section .final_step-card.long-card.photo-left {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		height: 400px;
		overflow: hidden;
		border-radius: 20px 20px 20px 60px !important;
		padding: 0;
		position: relative;
		box-sizing: border-box;
	}

	.steps_section .final_step-card.long-card.photo-right .final_step-card__content,
	.steps_section .final_step-card.long-card.photo-left .final_step-card__content {
		margin: 0;
		padding: 20px;
		box-sizing: border-box;
	}

	.steps_section .final_step-card.long-card.photo-right .final_step-card__content,
	.steps_section .final_step-card.long-card.photo-left .final_step-card__content,
	.steps_section .final_step-card.long-card>.final_step-card__content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		flex: 0 0 50%;
		height: 50%;
		width: 100%;
		max-width: 100%;
		background: #fff;
	}

	.steps_section .final_step-card.long-card.photo-right img,
	.steps_section .final_step-card.long-card.photo-left img {
		position: static;
		display: block;
		flex: 0 0 50%;
		height: 50%;
		width: 100%;
		object-fit: cover;
	}

	.steps_section .final_step-card.long-card.photo-right img {
		border-radius: 60px 60px 0 60px !important;
	}

	.steps_section .final_step-card.long-card.photo-left img {
		border-radius: 0 60px 60px 60px;
	}
}

@media (max-width: 991.98px) {
	.steps_section {
		margin: 30px 10px;
	}

	.steps_section .col-md-6,
	.steps_section .col-lg-4 {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.steps_section .step_card {
		text-align: left;
		align-items: flex-start;
		width: 100%;
	}

	.steps_section .final_step {
		margin-top: 100px;
	}

	.steps_section .final_step .final_step-card {
		flex-direction: column;
		text-align: center;
		border-radius: 20px;
	}

	.steps_section .final_step .final_step-card img {
		width: 100%;
		height: auto;
		border-radius: 0 0 20px 20px;
	}

	.steps_section .final_step .final_step-card__content {
		margin-right: 0;
		padding-right: 0;
		max-width: 100%;
		text-align: center;
	}
}

/*=============================
	Pricing Table CSS
===============================*/
.courier-card {
	display: flex;
	align-items: stretch;
	position: relative;
	background: #fff;
	border-radius: 20px 2px 60px 20px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	overflow: hidden;
	margin-bottom: 30px;
	transition: all 0.3s ease;
}

.courier-card:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.courier-card .main-btn {
	height: 40px;
	line-height: 40px;
}

.courier-card__content {
	flex: 0 0 66%;
	max-width: 66%;
	padding: 30px;
	z-index: 2;
}

.courier-card__content h2.title {
	font-size: 22px;
	font-weight: 600;
	color: #081828;
}

.courier-card__content .price {
	display: inline-block;
	background-color: #1E73E4;
	padding: 7px 15px;
	border-radius: 15px;
	margin: 10px -15px;
}

.courier-card__content .price .amount {
	font-size: 18px;
	font-weight: 700;
	color: #2b2a3d;
	margin: 0;
}

.courier-card img {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 30%;
	height: auto;
	object-fit: cover;
	z-index: 1;
	border-top-left-radius: 60px;
	border-bottom-left-radius: 60px;
}

@media (max-width: 767px) {
	.courier-card {
		flex-direction: column;
		border-radius: 20px 20px 60px 60px;
	}

	.courier-card__content {
		flex: 0 0 50%;
		max-width: 100%;
		text-align: center;
		padding: 20px;
	}

	.courier-card img {
		position: static;
		right: 0;
		width: 100%;
		height: 170px;
		border-radius: 0 60px 60px 60px;
	}
}

.magazine-box {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	padding: 35px 25px;
	transition: all 0.3s ease;
	width: 100%;
	text-align: left;
}

.magazine-nobox {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding-right: 35px;
	width: 100%;
	text-align: left;
}

.magazine-box.yellow {
	background: #1E73E4;
	color: #fff;
	/* общий цвет текста */
}

.magazine-box.yellow h3,
.magazine-box.yellow p,
.magazine-box.yellow li,
.magazine-box.yellow ul {
	color: #fff;
	/* явно задаем белый цвет для заголовков, параграфов и списков */
}

/* Если есть ссылки внутри */
.magazine-box.yellow a {
	color: #fff;
	text-decoration: underline;
	/* или none, если без подчеркивания */
}

.magazine-box.light {
	background: #fff;
	color: #000;
}

.magazine-box .content {
	width: 100%;
}

.magazine-box .content h3 {
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 10px;
}

.magazine-box .content p {
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
}

.magazine-box .content ul {
	list-style: disc;
	/* обычные точки */
	padding-left: 20px;
	/* отступ слева, чтобы точки были видны */
	margin: 10px 0;
}

.magazine-box .content ul li {
	margin-bottom: 8px;
	/* немного пространства между пунктами */
}

.magazine-nobox .content h3 {
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 10px;
}

.magazine-nobox .content p {
	font-size: 16px;
	line-height: 1.5;
	margin-top: 10px;
}

.magazine-nobox .content ul {
	list-style: disc;
	/* обычные точки */
	padding-left: 20px;
	/* отступ слева, чтобы точки были видны */
	margin: 10px 0;
}

.magazine-nobox .content ul li {
	margin-bottom: 8px;
	/* немного пространства между пунктами */
}

.magazine-box.long-card {
	display: flex;
	align-items: stretch;
	position: relative;
}

.magazine-box.long-card .content {
	width: 100%;
	padding: 20px;
}

/* Общая карточка фото */
.magazine-box.photo-only {
	position: relative;
	width: 100%;
	height: 100%;
	/* будет растягиваться под родителя */
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.magazine-box.photo-only img.image {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translateY(-50%);
	/* центрирование по вертикали, обрезка сверху/снизу */
}

/* Адаптив */
@media (max-width: 768px) {
	.magazine-box.long-card {
		flex-direction: column;
	}

	.magazine-box.long-card img {
		height: 200px;
		margin-top: 10px;
	}
}

/*=== Стиль для секции Page Title ===*/
.page-privacy {
	padding: 140px 0 40px;
	margin-bottom: 50px;
	background-color: #f9f9f9;
	color: #fff;
	text-align: center;
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.page-privacy h1 {
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.page-privacy p {
	font-size: 15px;
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto;
	padding-bottom: 10px;
}

/*=== Стиль для секции Privacy ===*/
.privacy {
	padding-top: 0;
	padding-bottom: 60px;
}

.privacy .container {
	max-width: 1140px;
	margin: 0 auto;
}

.privacy-nav {
	position: -webkit-sticky;
	/* Для Safari */
	position: sticky;
	top: 130px;
	/* Отступ от верхней части */
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	z-index: 10;
}

.privacy-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.privacy-nav ul li {
	margin-bottom: 15px;
}

.privacy-nav ul li a {
	font-size: 16px;
	font-weight: 600;
	color: #2b2a3d;
	text-decoration: none;
	display: block;
	transition: color 0.3s ease;
	padding: 8px 0;
}

.privacy-nav ul li a:hover {
	color: #0f6ce7;
}

/* Основной блок с контентом */
.block {
	background-color: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.policy-item {
	margin-bottom: 30px;
	padding-top: 90px;
	/* Это значение может быть чуть больше высоты навбара */
	margin-top: -90px;
	/* Сдвигаем элемент на 70px выше, чтобы компенсировать этот отступ */
}

.policy-item .title h3 {
	font-size: 24px;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.policy-item .policy-details p {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	text-align: justify;
}

.policy-item .policy-details a {
	color: #0066cc;
	text-decoration: none;
}

.policy-item .policy-details a:hover {
	text-decoration: underline;
}

/* Стили для адаптивности на мобильных устройствах */
@media (max-width: 992px) {
	.privacy-nav {
		position: relative;
		box-shadow: none;
	}

	.privacy-nav ul li {
		display: inline-block;
		margin-right: 20px;
	}

	.privacy-nav ul li a {
		font-size: 14px;
	}

	.block {
		padding: 20px;
	}

	.page-title {
		padding: 60px 0 40px;
	}

	.page-title h1 {
		font-size: 30px;
	}

	.page-title p {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.privacy-nav ul li {
		margin-bottom: 15px;
	}
}