@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,600,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Livvic:wght@400;500;600;700&display=swap");

/** {
 outline:1px solid red;
}
*/

:root {
	--color-primary: #1d1d1b;
	--color-secondary: #029fe2;
	--color-secondary-rgb: 2, 159, 226;
	--header-mob-height: 64px;
}

.row > * {
	position: relative;
}

h1,
.h1 {
	font-size: 42px !important;
}

h2,
.h2 {
	/*font-size: 36px !important;*/
	font-size: calc(30px + 6 * ((100vw - 320px) / (1920 - 320)));
}

h3,
.h3 {
	/*font-size: 30px !important;*/
	font-size: calc(25px + 5 * ((100vw - 320px) / (1920 - 320)));
	line-height: 1;
}

h4,
.h4 {
	font-size: 24px !important;
}

h5,
.h5 {
	font-size: 20px !important;
}

h6,
.h6 {
	font-size: 16px !important;
}

.display-1 {
	font-size: 80px !important;
}

.display-2 {
	font-size: 72px !important;
}

.display-3 {
	font-size: 64px !important;
}

.display-4 {
	font-size: 56px !important;
}

.bg-primary {
	background-color: var(--color-secondary, #029fe2) !important;
}

.bg-soft-primary {
	background-color: rgba(
		var(--color-secondary-rgb, 2, 159, 226),
		0.1
	) !important;
	border: 1px solid rgba(var(--color-secondary-rgb, 2, 159, 226), 0.1) !important;
	color: var(--color-secondary, #029fe2) !important;
}

.text-primary {
	color: var(--color-secondary, #029fe2) !important;
}

a {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a.text-primary:hover,
a.text-primary:focus {
	color: #284bc1 !important;
}

.bg-secondary {
	background-color: #5a6d90 !important;
}

.bg-soft-secondary {
	background-color: rgba(90, 109, 144, 0.1) !important;
	border: 1px solid rgba(90, 109, 144, 0.1) !important;
	color: #5a6d90 !important;
}

.text-secondary {
	color: #5a6d90 !important;
}

a {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a.text-secondary:hover,
a.text-secondary:focus {
	color: #506180 !important;
}

.bg-success {
	background-color: #2eca8b !important;
}

.bg-soft-success {
	background-color: rgba(46, 202, 139, 0.1) !important;
	border: 1px solid rgba(46, 202, 139, 0.1) !important;
	color: #2eca8b !important;
}

.text-success {
	color: #2eca8b !important;
}

a {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a.text-success:hover,
a.text-success:focus {
	color: #29b57d !important;
}

.bg-warning {
	background-color: #f17425 !important;
}

.bg-soft-warning {
	background-color: rgba(241, 116, 37, 0.1) !important;
	border: 1px solid rgba(241, 116, 37, 0.1) !important;
	color: #f17425 !important;
}

.text-warning {
	color: #f17425 !important;
}

a {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a.text-warning:hover,
a.text-warning:focus {
	color: #ed650f !important;
}

.bg-info {
	background-color: #17a2b8 !important;
}

.bg-soft-info {
	background-color: rgba(23, 162, 184, 0.1) !important;
	border: 1px solid rgba(23, 162, 184, 0.1) !important;
	color: #17a2b8 !important;
}

.text-info {
	color: #17a2b8 !important;
}

a {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a.text-info:hover,
a.text-info:focus {
	color: #148ea1 !important;
}

.bg-danger {
	background-color: #e43f52 !important;
}

.bg-soft-danger {
	background-color: rgba(228, 63, 82, 0.1) !important;
	border: 1px solid rgba(228, 63, 82, 0.1) !important;
	color: #e43f52 !important;
}

.text-danger {
	color: #e43f52 !important;
}

a {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a.text-danger:hover,
a.text-danger:focus {
	color: #e1293e !important;
}

.bg-dark {
	background-color: var(--color-primary, #1d1d1b) !important;
}

.bg-soft-dark {
	background-color: rgba(60, 72, 88, 0.1) !important;
	border: 1px solid rgba(60, 72, 88, 0.1) !important;
	color: var(--color-primary, #1d1d1b) !important;
}

.text-dark {
	color: var(--color-primary, #1d1d1b) !important;
}

a {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a.text-dark:hover,
a.text-dark:focus {
	color: #323c49 !important;
}

.bg-muted {
	background-color: #8492a6 !important;
}

.bg-soft-muted {
	background-color: rgba(132, 146, 166, 0.1) !important;
	border: 1px solid rgba(132, 146, 166, 0.1) !important;
	color: #8492a6 !important;
}

.text-muted {
	color: #000 !important;
}
.para-desc.text-muted {
	color: #000;
}

a {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a.text-muted:hover,
a.text-muted:focus {
	color: #75859b !important;
}

.bg-light {
	background-color: #f8f9fc !important;
}

.bg-soft-light {
	background-color: rgba(248, 249, 252, 0.1) !important;
	border: 1px solid rgba(248, 249, 252, 0.1) !important;
	color: #f8f9fc !important;
}

.text-light {
	color: #f8f9fc !important;
}

a {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a.text-light:hover,
a.text-light:focus {
	color: #e6eaf4 !important;
}

.bg-blue {
	background-color: var(--color-secondary, #029fe2) !important;
}

.bg-soft-blue {
	background-color: rgba(
		var(--color-secondary-rgb, 2, 159, 226),
		0.1
	) !important;
	border: 1px solid rgba(var(--color-secondary-rgb, 2, 159, 226), 0.1) !important;
	color: var(--color-secondary, #029fe2) !important;
}

.text-blue {
	color: var(--color-secondary, #029fe2) !important;
}

a {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a.text-blue:hover,
a.text-blue:focus {
	color: #284bc1 !important;
}

.bg-footer {
	background-color: #202942 !important;
}

.bg-soft-footer {
	background-color: rgba(32, 41, 66, 0.1) !important;
	border: 1px solid rgba(32, 41, 66, 0.1) !important;
	color: #202942 !important;
}

.text-footer {
	color: #202942 !important;
}

a {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a.text-footer:hover,
a.text-footer:focus {
	color: #181e30 !important;
}

.d-flex .flex-1 {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.bg-black {
	background: #161c2d !important;
}

video:focus {
	outline: none;
}

.list-inline-item:not(:last-child) {
	margin-right: 0px;
	margin-bottom: 5px;
}

.rounded {
	border-radius: 6px !important;
}

.rounded-top {
	border-top-left-radius: 6px !important;
	border-top-right-radius: 6px !important;
}

.rounded-left {
	border-top-left-radius: 6px !important;
	border-bottom-left-radius: 6px !important;
}

.rounded-bottom {
	border-bottom-left-radius: 6px !important;
	border-bottom-right-radius: 6px !important;
}

.rounded-right {
	border-top-right-radius: 6px !important;
	border-bottom-right-radius: 6px !important;
}

.rounded-md {
	border-radius: 10px !important;
}

.rounded-lg {
	border-radius: 30px !important;
}

.border {
	border: 1px solid #e9ecef !important;
}

.border-top {
	border-top: 1px solid #e9ecef !important;
}

.border-bottom {
	border-bottom: 1px solid #e9ecef !important;
}

.border-left {
	border-left: 1px solid #e9ecef !important;
}

.border-right {
	border-right: 1px solid #e9ecef !important;
}

.small,
small {
	font-size: 90%;
}

.card .card-body {
	padding: 1.5rem;
}

.component-wrapper .title {
	font-size: 20px;
}

.component-wrapper.sticky-bar li {
	margin-bottom: 6px;
}

.component-wrapper.sticky-bar li:last-child {
	margin-bottom: 0px !important;
}

.component-wrapper.sticky-bar li a {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.component-wrapper.sticky-bar li a:hover,
.component-wrapper.sticky-bar li a:focus {
	color: var(--color-secondary, #029fe2) !important;
}

.btn-primary {
	/* background-color: var(--color-secondary, #029fe2) !important;
  border: 1px solid var(--color-secondary, #029fe2) !important;*/
	/*   color: #ffffff !important; */
	-webkit-box-shadow: 0 3px 5px 0
		rgba(var(--color-secondary-rgb, 2, 159, 226), 0.3);
	box-shadow: 0 3px 5px 0 rgba(var(--color-secondary-rgb, 2, 159, 226), 0.3);
}

.btn-primary2 {
	background-color: #ffcd01 !important;
	border: 1px solid #ffcd01 !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.24);
	box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.24);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.focus {
	background-color: #2443ac !important;
	border-color: #2443ac !important;
	color: #ffffff !important;
}

.btn-primary2:hover {
	box-shadow: 0 6px 10px 0 rgb(0 0 0 / 24%);
}

.btn-soft-primary {
	background-color: rgba(
		var(--color-secondary-rgb, 2, 159, 226),
		0.1
	) !important;
	border: 1px solid rgba(var(--color-secondary-rgb, 2, 159, 226), 0.1) !important;
	color: var(--color-secondary, #029fe2) !important;
	-webkit-box-shadow: 0 3px 5px 0
		rgba(var(--color-secondary-rgb, 2, 159, 226), 0.3);
	box-shadow: 0 3px 5px 0 rgba(var(--color-secondary-rgb, 2, 159, 226), 0.3);
}

.btn-soft-primary:hover,
.btn-soft-primary:focus,
.btn-soft-primary:active,
.btn-soft-primary.active,
.btn-soft-primary.focus {
	background-color: var(--color-secondary, #029fe2) !important;
	border-color: var(--color-secondary, #029fe2) !important;
	color: #ffffff !important;
}

.btn-outline-primary {
	border: 1px solid var(--color-secondary, #029fe2);
	color: var(--color-secondary, #029fe2);
	background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active,
.btn-outline-primary.focus,
.btn-outline-primary:not(:disabled):not(.disabled):active {
	background-color: var(--color-secondary, #029fe2);
	border-color: var(--color-secondary, #029fe2);
	color: #ffffff !important;
	-webkit-box-shadow: 0 3px 5px 0
		rgba(var(--color-secondary-rgb, 2, 159, 226), 0.3);
	box-shadow: 0 3px 5px 0 rgba(var(--color-secondary-rgb, 2, 159, 226), 0.3);
}

.btn-secondary {
	background-color: #5a6d90 !important;
	border: 1px solid #5a6d90 !important;
	color: #ffffff !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(90, 109, 144, 0.3);
	box-shadow: 0 3px 5px 0 rgba(90, 109, 144, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active,
.btn-secondary.focus {
	background-color: #465571 !important;
	border-color: #465571 !important;
	color: #ffffff !important;
}

.btn-soft-secondary {
	background-color: rgba(90, 109, 144, 0.1) !important;
	border: 1px solid rgba(90, 109, 144, 0.1) !important;
	color: #5a6d90 !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(90, 109, 144, 0.3);
	box-shadow: 0 3px 5px 0 rgba(90, 109, 144, 0.3);
}

.btn-soft-secondary:hover,
.btn-soft-secondary:focus,
.btn-soft-secondary:active,
.btn-soft-secondary.active,
.btn-soft-secondary.focus {
	background-color: #5a6d90 !important;
	border-color: #5a6d90 !important;
	color: #ffffff !important;
}

.btn-outline-secondary {
	border: 1px solid #5a6d90;
	color: #5a6d90;
	background-color: transparent;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active,
.btn-outline-secondary.active,
.btn-outline-secondary.focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active {
	background-color: #5a6d90;
	border-color: #5a6d90;
	color: #ffffff !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(90, 109, 144, 0.3);
	box-shadow: 0 3px 5px 0 rgba(90, 109, 144, 0.3);
}

.btn-success {
	background-color: #2eca8b !important;
	border: 1px solid #2eca8b !important;
	color: #ffffff !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(46, 202, 139, 0.3);
	box-shadow: 0 3px 5px 0 rgba(46, 202, 139, 0.3);
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success.focus {
	background-color: #25a06e !important;
	border-color: #25a06e !important;
	color: #ffffff !important;
}

.btn-soft-success {
	background-color: rgba(46, 202, 139, 0.1) !important;
	border: 1px solid rgba(46, 202, 139, 0.1) !important;
	color: #2eca8b !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(46, 202, 139, 0.3);
	box-shadow: 0 3px 5px 0 rgba(46, 202, 139, 0.3);
}

.btn-soft-success:hover,
.btn-soft-success:focus,
.btn-soft-success:active,
.btn-soft-success.active,
.btn-soft-success.focus {
	background-color: #2eca8b !important;
	border-color: #2eca8b !important;
	color: #ffffff !important;
}

.btn-outline-success {
	border: 1px solid #2eca8b;
	color: #2eca8b;
	background-color: transparent;
}

.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-outline-success:active,
.btn-outline-success.active,
.btn-outline-success.focus,
.btn-outline-success:not(:disabled):not(.disabled):active {
	background-color: #2eca8b;
	border-color: #2eca8b;
	color: #ffffff !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(46, 202, 139, 0.3);
	box-shadow: 0 3px 5px 0 rgba(46, 202, 139, 0.3);
}

.btn-warning {
	background-color: #f17425 !important;
	border: 1px solid #f17425 !important;
	color: #ffffff !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(241, 116, 37, 0.3);
	box-shadow: 0 3px 5px 0 rgba(241, 116, 37, 0.3);
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.btn-warning.focus {
	background-color: #d55b0e !important;
	border-color: #d55b0e !important;
	color: #ffffff !important;
}

.btn-soft-warning {
	background-color: rgba(241, 116, 37, 0.1) !important;
	border: 1px solid rgba(241, 116, 37, 0.1) !important;
	color: #f17425 !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(241, 116, 37, 0.3);
	box-shadow: 0 3px 5px 0 rgba(241, 116, 37, 0.3);
}

.btn-soft-warning:hover,
.btn-soft-warning:focus,
.btn-soft-warning:active,
.btn-soft-warning.active,
.btn-soft-warning.focus {
	background-color: #f17425 !important;
	border-color: #f17425 !important;
	color: #ffffff !important;
}

.btn-outline-warning {
	border: 1px solid #f17425;
	color: #f17425;
	background-color: transparent;
}

.btn-outline-warning:hover,
.btn-outline-warning:focus,
.btn-outline-warning:active,
.btn-outline-warning.active,
.btn-outline-warning.focus,
.btn-outline-warning:not(:disabled):not(.disabled):active {
	background-color: #f17425;
	border-color: #f17425;
	color: #ffffff !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(241, 116, 37, 0.3);
	box-shadow: 0 3px 5px 0 rgba(241, 116, 37, 0.3);
}

.btn-info {
	background-color: #17a2b8 !important;
	border: 1px solid #17a2b8 !important;
	color: #ffffff !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(23, 162, 184, 0.3);
	box-shadow: 0 3px 5px 0 rgba(23, 162, 184, 0.3);
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info.focus {
	background-color: #117a8b !important;
	border-color: #117a8b !important;
	color: #ffffff !important;
}

.btn-soft-info {
	background-color: rgba(23, 162, 184, 0.1) !important;
	border: 1px solid rgba(23, 162, 184, 0.1) !important;
	color: #17a2b8 !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(23, 162, 184, 0.3);
	box-shadow: 0 3px 5px 0 rgba(23, 162, 184, 0.3);
}

.btn-soft-info:hover,
.btn-soft-info:focus,
.btn-soft-info:active,
.btn-soft-info.active,
.btn-soft-info.focus {
	background-color: #17a2b8 !important;
	border-color: #17a2b8 !important;
	color: #ffffff !important;
}

.btn-outline-info {
	border: 1px solid #17a2b8;
	color: #17a2b8;
	background-color: transparent;
}

.btn-outline-info:hover,
.btn-outline-info:focus,
.btn-outline-info:active,
.btn-outline-info.active,
.btn-outline-info.focus,
.btn-outline-info:not(:disabled):not(.disabled):active {
	background-color: #17a2b8;
	border-color: #17a2b8;
	color: #ffffff !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(23, 162, 184, 0.3);
	box-shadow: 0 3px 5px 0 rgba(23, 162, 184, 0.3);
}

.btn-danger {
	background-color: #e43f52 !important;
	border: 1px solid #e43f52 !important;
	color: #ffffff !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(228, 63, 82, 0.3);
	box-shadow: 0 3px 5px 0 rgba(228, 63, 82, 0.3);
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.btn-danger.focus {
	background-color: #d21e32 !important;
	border-color: #d21e32 !important;
	color: #ffffff !important;
}

.btn-soft-danger {
	background-color: rgba(228, 63, 82, 0.1) !important;
	border: 1px solid rgba(228, 63, 82, 0.1) !important;
	color: #e43f52 !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(228, 63, 82, 0.3);
	box-shadow: 0 3px 5px 0 rgba(228, 63, 82, 0.3);
}

.btn-soft-danger:hover,
.btn-soft-danger:focus,
.btn-soft-danger:active,
.btn-soft-danger.active,
.btn-soft-danger.focus {
	background-color: #e43f52 !important;
	border-color: #e43f52 !important;
	color: #ffffff !important;
}

.btn-outline-danger {
	border: 1px solid #e43f52;
	color: #e43f52;
	background-color: transparent;
}

.btn-outline-danger:hover,
.btn-outline-danger:focus,
.btn-outline-danger:active,
.btn-outline-danger.active,
.btn-outline-danger.focus,
.btn-outline-danger:not(:disabled):not(.disabled):active {
	background-color: #e43f52;
	border-color: #e43f52;
	color: #ffffff !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(228, 63, 82, 0.3);
	box-shadow: 0 3px 5px 0 rgba(228, 63, 82, 0.3);
}

.btn-dark {
	background-color: var(--color-primary, #1d1d1b) !important;
	border: 1px solid var(--color-primary, #1d1d1b) !important;
	color: #ffffff !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(60, 72, 88, 0.3);
	box-shadow: 0 3px 5px 0 rgba(60, 72, 88, 0.3);
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active,
.btn-dark.active,
.btn-dark.focus {
	background-color: #272f3a !important;
	border-color: #272f3a !important;
	color: #ffffff !important;
}

.btn-soft-dark {
	background-color: rgba(60, 72, 88, 0.1) !important;
	border: 1px solid rgba(60, 72, 88, 0.1) !important;
	color: var(--color-primary, #1d1d1b) !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(60, 72, 88, 0.3);
	box-shadow: 0 3px 5px 0 rgba(60, 72, 88, 0.3);
}

.btn-soft-dark:hover,
.btn-soft-dark:focus,
.btn-soft-dark:active,
.btn-soft-dark.active,
.btn-soft-dark.focus {
	background-color: var(--color-primary, #1d1d1b) !important;
	border-color: var(--color-primary, #1d1d1b) !important;
	color: #ffffff !important;
}

.btn-outline-dark {
	border: 1px solid var(--color-primary, #1d1d1b);
	color: var(--color-primary, #1d1d1b);
	background-color: transparent;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:active,
.btn-outline-dark.active,
.btn-outline-dark.focus,
.btn-outline-dark:not(:disabled):not(.disabled):active {
	background-color: var(--color-primary, #1d1d1b);
	border-color: var(--color-primary, #1d1d1b);
	color: #ffffff !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(60, 72, 88, 0.3);
	box-shadow: 0 3px 5px 0 rgba(60, 72, 88, 0.3);
}

.btn-muted {
	background-color: #8492a6 !important;
	border: 1px solid #8492a6 !important;
	color: #ffffff !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(132, 146, 166, 0.3);
	box-shadow: 0 3px 5px 0 rgba(132, 146, 166, 0.3);
}

.btn-muted:hover,
.btn-muted:focus,
.btn-muted:active,
.btn-muted.active,
.btn-muted.focus {
	background-color: #68788f !important;
	border-color: #68788f !important;
	color: #ffffff !important;
}

.btn-soft-muted {
	background-color: rgba(132, 146, 166, 0.1) !important;
	border: 1px solid rgba(132, 146, 166, 0.1) !important;
	color: #8492a6 !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(132, 146, 166, 0.3);
	box-shadow: 0 3px 5px 0 rgba(132, 146, 166, 0.3);
}

.btn-soft-muted:hover,
.btn-soft-muted:focus,
.btn-soft-muted:active,
.btn-soft-muted.active,
.btn-soft-muted.focus {
	background-color: #8492a6 !important;
	border-color: #8492a6 !important;
	color: #ffffff !important;
}

.btn-outline-muted {
	border: 1px solid #8492a6;
	color: #8492a6;
	background-color: transparent;
}

.btn-outline-muted:hover,
.btn-outline-muted:focus,
.btn-outline-muted:active,
.btn-outline-muted.active,
.btn-outline-muted.focus,
.btn-outline-muted:not(:disabled):not(.disabled):active {
	background-color: #8492a6;
	border-color: #8492a6;
	color: #ffffff !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(132, 146, 166, 0.3);
	box-shadow: 0 3px 5px 0 rgba(132, 146, 166, 0.3);
}

.btn-light {
	background-color: #f8f9fc !important;
	border: 1px solid #f8f9fc !important;
	color: #ffffff !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(248, 249, 252, 0.3);
	box-shadow: 0 3px 5px 0 rgba(248, 249, 252, 0.3);
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active,
.btn-light.active,
.btn-light.focus {
	background-color: #d4daed !important;
	border-color: #d4daed !important;
	color: #ffffff !important;
}

.btn-soft-light {
	background-color: rgba(248, 249, 252, 0.1) !important;
	border: 1px solid rgba(248, 249, 252, 0.1) !important;
	color: #f8f9fc !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(248, 249, 252, 0.3);
	box-shadow: 0 3px 5px 0 rgba(248, 249, 252, 0.3);
}

.btn-soft-light:hover,
.btn-soft-light:focus,
.btn-soft-light:active,
.btn-soft-light.active,
.btn-soft-light.focus {
	background-color: #f8f9fc !important;
	border-color: #f8f9fc !important;
	color: #ffffff !important;
}

.btn-outline-light {
	border: 1px solid #f8f9fc;
	color: #f8f9fc;
	background-color: transparent;
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active,
.btn-outline-light.active,
.btn-outline-light.focus,
.btn-outline-light:not(:disabled):not(.disabled):active {
	background-color: #f8f9fc;
	border-color: #f8f9fc;
	color: #ffffff !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(248, 249, 252, 0.3);
	box-shadow: 0 3px 5px 0 rgba(248, 249, 252, 0.3);
}

.btn-blue {
	background-color: var(--color-secondary, #029fe2) !important;
	border: 1px solid var(--color-secondary, #029fe2) !important;
	color: #ffffff !important;
	-webkit-box-shadow: 0 3px 5px 0
		rgba(var(--color-secondary-rgb, 2, 159, 226), 0.3);
	box-shadow: 0 3px 5px 0 rgba(var(--color-secondary-rgb, 2, 159, 226), 0.3);
}

.btn-blue:hover,
.btn-blue:focus,
.btn-blue:active,
.btn-blue.active,
.btn-blue.focus {
	background-color: #2443ac !important;
	border-color: #2443ac !important;
	color: #ffffff !important;
}

.btn-soft-blue {
	background-color: rgba(
		var(--color-secondary-rgb, 2, 159, 226),
		0.1
	) !important;
	border: 1px solid rgba(var(--color-secondary-rgb, 2, 159, 226), 0.1) !important;
	color: var(--color-secondary, #029fe2) !important;
	-webkit-box-shadow: 0 3px 5px 0
		rgba(var(--color-secondary-rgb, 2, 159, 226), 0.3);
	box-shadow: 0 3px 5px 0 rgba(var(--color-secondary-rgb, 2, 159, 226), 0.3);
}

.btn-soft-blue:hover,
.btn-soft-blue:focus,
.btn-soft-blue:active,
.btn-soft-blue.active,
.btn-soft-blue.focus {
	background-color: var(--color-secondary, #029fe2) !important;
	border-color: var(--color-secondary, #029fe2) !important;
	color: #ffffff !important;
}

.btn-outline-blue {
	border: 1px solid var(--color-secondary, #029fe2);
	color: var(--color-secondary, #029fe2);
	background-color: transparent;
}

.btn-outline-blue:hover,
.btn-outline-blue:focus,
.btn-outline-blue:active,
.btn-outline-blue.active,
.btn-outline-blue.focus,
.btn-outline-blue:not(:disabled):not(.disabled):active {
	background-color: var(--color-secondary, #029fe2);
	border-color: var(--color-secondary, #029fe2);
	color: #ffffff !important;
	-webkit-box-shadow: 0 3px 5px 0
		rgba(var(--color-secondary-rgb, 2, 159, 226), 0.3);
	box-shadow: 0 3px 5px 0 rgba(var(--color-secondary-rgb, 2, 159, 226), 0.3);
}

.btn-footer {
	background-color: #202942 !important;
	border: 1px solid #202942 !important;
	color: #ffffff !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(32, 41, 66, 0.3);
	box-shadow: 0 3px 5px 0 rgba(32, 41, 66, 0.3);
}

.btn-footer:hover,
.btn-footer:focus,
.btn-footer:active,
.btn-footer.active,
.btn-footer.focus {
	background-color: #0f131f !important;
	border-color: #0f131f !important;
	color: #ffffff !important;
}

.btn-soft-footer {
	background-color: rgba(32, 41, 66, 0.1) !important;
	border: 1px solid rgba(32, 41, 66, 0.1) !important;
	color: #202942 !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(32, 41, 66, 0.3);
	box-shadow: 0 3px 5px 0 rgba(32, 41, 66, 0.3);
}

.btn-soft-footer:hover,
.btn-soft-footer:focus,
.btn-soft-footer:active,
.btn-soft-footer.active,
.btn-soft-footer.focus {
	background-color: #202942 !important;
	border-color: #202942 !important;
	color: #ffffff !important;
}

.btn-outline-footer {
	border: 1px solid #202942;
	color: #202942;
	background-color: transparent;
}

.btn-outline-footer:hover,
.btn-outline-footer:focus,
.btn-outline-footer:active,
.btn-outline-footer.active,
.btn-outline-footer.focus,
.btn-outline-footer:not(:disabled):not(.disabled):active {
	background-color: #202942;
	border-color: #202942;
	color: #ffffff !important;
	-webkit-box-shadow: 0 3px 5px 0 rgba(32, 41, 66, 0.3);
	box-shadow: 0 3px 5px 0 rgba(32, 41, 66, 0.3);
}

.btn {
	padding: 8px 20px;
	outline: none;
	text-decoration: none;
	font-size: 15px;
	letter-spacing: 0.5px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	font-weight: 500;
	border-radius: 6px;
}

.btn:focus {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

.btn.btn-sm {
	padding: 7px 16px;
	font-size: 10px;
}

.btn.btn-lg {
	padding: 14px 30px;
	font-size: 16px;
}

.btn.searchbtn {
	padding: 6px 20px;
}

.btn.btn-pills {
	border-radius: 30px;
}

.btn.btn-light {
	color: var(--color-primary, #1d1d1b) !important;
	border: 1px solid #dee2e6 !important;
}

.btn.btn-light:hover,
.btn.btn-light:focus,
.btn.btn-light:active,
.btn.btn-light.active,
.btn.btn-light.focus {
	background-color: #d4daed !important;
	color: var(--color-primary, #1d1d1b) !important;
}

.btn.btn-soft-light {
	color: rgba(60, 72, 88, 0.5) !important;
	border: 1px solid #dee2e6 !important;
}

.btn.btn-soft-light:hover,
.btn.btn-soft-light:focus,
.btn.btn-soft-light:active,
.btn.btn-soft-light.active,
.btn.btn-soft-light.focus {
	color: var(--color-primary, #1d1d1b) !important;
}

.btn.btn-outline-light {
	border: 1px solid #dee2e6 !important;
	color: var(--color-primary, #1d1d1b) !important;
	background-color: transparent;
}

.btn.btn-outline-light:hover,
.btn.btn-outline-light:focus,
.btn.btn-outline-light:active,
.btn.btn-outline-light.active,
.btn.btn-outline-light.focus {
	background-color: #f8f9fc !important;
}

.btn.btn-icon {
	height: 46px;
	width: 46px;
	line-height: 44px;
	padding: 0;
}

.btn.btn-icon .icons {
	height: 16px;
	width: 16px;
	font-size: 16px;
}

.btn.btn-icon.btn-lg {
	height: 48px;
	width: 48px;
	line-height: 46px;
}

.btn.btn-icon.btn-lg .icons {
	height: 20px;
	width: 20px;
	font-size: 20px;
}

.btn.btn-icon.btn-sm {
	height: 30px;
	width: 30px;
	line-height: 28px;
}

button:not(:disabled) {
	outline: none;
}

.shadow {
	-webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15) !important;
	box-shadow: 0 0 3px rgba(60, 72, 88, 0.15) !important;
}

.shadow-lg {
	-webkit-box-shadow: 0 10px 25px rgba(60, 72, 88, 0.15) !important;
	box-shadow: 0 10px 25px rgba(60, 72, 88, 0.15) !important;
}

.shadow-md {
	-webkit-box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
	box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
}

.badge {
	letter-spacing: 0.5px;
	padding: 4px 8px;
	font-weight: 600;
	line-height: 11px;
}

.badge.badge-link:hover {
	color: #ffffff !important;
}

.dropdown-primary .dropdown-menu .dropdown-item:hover,
.dropdown-primary .dropdown-menu .dropdown-item.active,
.dropdown-primary .dropdown-menu .dropdown-item:active,
.dropdown-primary .dropdown-menu .dropdown-item.focus,
.dropdown-primary .dropdown-menu .dropdown-item:focus {
	background-color: transparent;
	color: var(--color-secondary, #029fe2) !important;
}

.dropdown-secondary .dropdown-menu .dropdown-item:hover,
.dropdown-secondary .dropdown-menu .dropdown-item.active,
.dropdown-secondary .dropdown-menu .dropdown-item:active,
.dropdown-secondary .dropdown-menu .dropdown-item.focus,
.dropdown-secondary .dropdown-menu .dropdown-item:focus {
	background-color: transparent;
	color: #5a6d90 !important;
}

.dropdown-success .dropdown-menu .dropdown-item:hover,
.dropdown-success .dropdown-menu .dropdown-item.active,
.dropdown-success .dropdown-menu .dropdown-item:active,
.dropdown-success .dropdown-menu .dropdown-item.focus,
.dropdown-success .dropdown-menu .dropdown-item:focus {
	background-color: transparent;
	color: #2eca8b !important;
}

.dropdown-warning .dropdown-menu .dropdown-item:hover,
.dropdown-warning .dropdown-menu .dropdown-item.active,
.dropdown-warning .dropdown-menu .dropdown-item:active,
.dropdown-warning .dropdown-menu .dropdown-item.focus,
.dropdown-warning .dropdown-menu .dropdown-item:focus {
	background-color: transparent;
	color: #f17425 !important;
}

.dropdown-info .dropdown-menu .dropdown-item:hover,
.dropdown-info .dropdown-menu .dropdown-item.active,
.dropdown-info .dropdown-menu .dropdown-item:active,
.dropdown-info .dropdown-menu .dropdown-item.focus,
.dropdown-info .dropdown-menu .dropdown-item:focus {
	background-color: transparent;
	color: #17a2b8 !important;
}

.dropdown-danger .dropdown-menu .dropdown-item:hover,
.dropdown-danger .dropdown-menu .dropdown-item.active,
.dropdown-danger .dropdown-menu .dropdown-item:active,
.dropdown-danger .dropdown-menu .dropdown-item.focus,
.dropdown-danger .dropdown-menu .dropdown-item:focus {
	background-color: transparent;
	color: #e43f52 !important;
}

.dropdown-dark .dropdown-menu .dropdown-item:hover,
.dropdown-dark .dropdown-menu .dropdown-item.active,
.dropdown-dark .dropdown-menu .dropdown-item:active,
.dropdown-dark .dropdown-menu .dropdown-item.focus,
.dropdown-dark .dropdown-menu .dropdown-item:focus {
	background-color: transparent;
	color: var(--color-primary, #1d1d1b) !important;
}

.dropdown-muted .dropdown-menu .dropdown-item:hover,
.dropdown-muted .dropdown-menu .dropdown-item.active,
.dropdown-muted .dropdown-menu .dropdown-item:active,
.dropdown-muted .dropdown-menu .dropdown-item.focus,
.dropdown-muted .dropdown-menu .dropdown-item:focus {
	background-color: transparent;
	color: #8492a6 !important;
}

.dropdown-light .dropdown-menu .dropdown-item:hover,
.dropdown-light .dropdown-menu .dropdown-item.active,
.dropdown-light .dropdown-menu .dropdown-item:active,
.dropdown-light .dropdown-menu .dropdown-item.focus,
.dropdown-light .dropdown-menu .dropdown-item:focus {
	background-color: transparent;
	color: #f8f9fc !important;
}

.dropdown-blue .dropdown-menu .dropdown-item:hover,
.dropdown-blue .dropdown-menu .dropdown-item.active,
.dropdown-blue .dropdown-menu .dropdown-item:active,
.dropdown-blue .dropdown-menu .dropdown-item.focus,
.dropdown-blue .dropdown-menu .dropdown-item:focus {
	background-color: transparent;
	color: var(--color-secondary, #029fe2) !important;
}

.dropdown-footer .dropdown-menu .dropdown-item:hover,
.dropdown-footer .dropdown-menu .dropdown-item.active,
.dropdown-footer .dropdown-menu .dropdown-item:active,
.dropdown-footer .dropdown-menu .dropdown-item.focus,
.dropdown-footer .dropdown-menu .dropdown-item:focus {
	background-color: transparent;
	color: #202942 !important;
}

.btn-group .dropdown-toggle:after {
	content: "";
	position: relative;
	right: -4px;
	top: -2px;
	border: solid #ffffff;
	border-radius: 0.5px;
	border-width: 0 2px 2px 0;
	padding: 3px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	margin-left: 0;
	vertical-align: 0;
}

.btn-group .dropdown-menu {
	margin-top: 10px;
	border: 0;
	border-radius: 5px;
	-webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
	box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
}

.btn-group .dropdown-menu:before {
	content: "";
	position: absolute;
	top: 2px;
	left: 45px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 7px solid #495057;
	border-radius: 0.5px;
	border-color: transparent transparent #ffffff #ffffff;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	-webkit-box-shadow: -2px 2px 2px -1px rgba(22, 28, 45, 0.15);
	box-shadow: -2px 2px 2px -1px rgba(22, 28, 45, 0.15);
}

.alert-primary {
	background-color: rgba(var(--color-secondary-rgb, 2, 159, 226), 0.9);
	color: #ffffff;
	border-color: var(--color-secondary, #029fe2);
}

.alert-primary .alert-link {
	color: #122258;
}

.alert-outline-primary {
	background-color: #ffffff;
	color: var(--color-secondary, #029fe2);
	border-color: var(--color-secondary, #029fe2);
}

.alert-secondary {
	background-color: rgba(90, 109, 144, 0.9);
	color: #ffffff;
	border-color: #5a6d90;
}

.alert-secondary .alert-link {
	color: #1f2632;
}

.alert-outline-secondary {
	background-color: #ffffff;
	color: #5a6d90;
	border-color: #5a6d90;
}

.alert-success {
	background-color: rgba(46, 202, 139, 0.9);
	color: #ffffff;
	border-color: #2eca8b;
}

.alert-success .alert-link {
	color: #124d35;
}

.alert-outline-success {
	background-color: #ffffff;
	color: #2eca8b;
	border-color: #2eca8b;
}

.alert-warning {
	background-color: rgba(241, 116, 37, 0.9);
	color: #ffffff;
	border-color: #f17425;
}

.alert-warning .alert-link {
	color: #753208;
}

.alert-outline-warning {
	background-color: #ffffff;
	color: #f17425;
	border-color: #f17425;
}

.alert-info {
	background-color: rgba(23, 162, 184, 0.9);
	color: #ffffff;
	border-color: #17a2b8;
}

.alert-info .alert-link {
	color: #062a30;
}

.alert-outline-info {
	background-color: #ffffff;
	color: #17a2b8;
	border-color: #17a2b8;
}

.alert-danger {
	background-color: rgba(228, 63, 82, 0.9);
	color: #ffffff;
	border-color: #e43f52;
}

.alert-danger .alert-link {
	color: #79111d;
}

.alert-outline-danger {
	background-color: #ffffff;
	color: #e43f52;
	border-color: #e43f52;
}

.alert-dark {
	background-color: rgba(60, 72, 88, 0.9);
	color: #ffffff;
	border-color: var(--color-primary, #1d1d1b);
}

.alert-dark .alert-link {
	color: var(--color-primary, #1d1d1b);
}

.alert-outline-dark {
	background-color: #ffffff;
	color: var(--color-primary, #1d1d1b);
	border-color: var(--color-primary, #1d1d1b);
}

.alert-muted {
	background-color: rgba(132, 146, 166, 0.9);
	color: #ffffff;
	border-color: #8492a6;
}

.alert-muted .alert-link {
	color: #3d4654;
}

.alert-outline-muted {
	background-color: #ffffff;
	color: #8492a6;
	border-color: #8492a6;
}

.alert-light {
	background-color: rgba(248, 249, 252, 0.9);
	color: #ffffff;
	border-color: #f8f9fc;
}

.alert-light .alert-link {
	color: #8d9dce;
}

.alert-outline-light {
	background-color: #ffffff;
	color: #f8f9fc;
	border-color: #f8f9fc;
}

.alert-blue {
	background-color: rgba(var(--color-secondary-rgb, 2, 159, 226), 0.9);
	color: #ffffff;
	border-color: var(--color-secondary, #029fe2);
}

.alert-blue .alert-link {
	color: #122258;
}

.alert-outline-blue {
	background-color: #ffffff;
	color: var(--color-secondary, #029fe2);
	border-color: var(--color-secondary, #029fe2);
}

.alert-footer {
	background-color: rgba(32, 41, 66, 0.9);
	color: #ffffff;
	border-color: #202942;
}

.alert-footer .alert-link {
	color: var(--color-primary, #1d1d1b);
}

.alert-outline-footer {
	background-color: #ffffff;
	color: #202942;
	border-color: #202942;
}

.alert {
	padding: 8px 15px;
	border-radius: 5px;
	font-size: 14px;
}

.alert.alert-light {
	background-color: white;
	color: var(--color-primary, #1d1d1b);
	border-color: #e9ecef;
}

.alert.alert-dismissible {
	padding-right: 30px;
}

.alert.alert-dismissible .btn-close {
	top: 10px;
	right: 10px;
	padding: 0px;
}

.alert.alert-pills {
	border-radius: 30px;
	display: inline-block;
}

.alert.alert-pills .content {
	font-weight: 600;
}

.page-next-level .title {
	font-size: 28px;
	letter-spacing: 1px;
}

.page-next-level .page-next {
	position: relative;
	top: 110px;
	z-index: 99;
}

#topnav .navigation-menu > li.town_list {
	display: none;
}

.breadcrumb {
	letter-spacing: 0.5px;
	padding: 8px 24px;
	display: block;
}

.breadcrumb .breadcrumb-item {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	padding-left: 0;
	display: inline-block;
}

.breadcrumb .breadcrumb-item a {
	color: var(--color-primary, #1d1d1b);
}

.breadcrumb .breadcrumb-item a:hover {
	color: var(--color-secondary, #029fe2);
}

.breadcrumb .breadcrumb-item.active {
	color: var(--color-secondary, #029fe2);
}

.breadcrumb .breadcrumb-item:before {
	content: "";
}

.breadcrumb .breadcrumb-item:after {
	content: "\F0142" !important;
	font-size: 14px;
	color: var(--color-primary, #1d1d1b);
	font-family: "Material Design Icons";
	padding-left: 5px;
}

.breadcrumb .breadcrumb-item:last-child:after {
	display: none;
}

.pagination .page-item:first-child .page-link {
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
}

.pagination .page-item:last-child .page-link {
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
}

.pagination .page-item .page-link {
	color: var(--color-primary, #1d1d1b);
	border: 1px solid #dee2e6;
	padding: 8px 16px;
	font-size: 14px;
}

.pagination .page-item .page-link:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.pagination .page-item .page-link:hover {
	color: #ffffff;
	background: rgba(var(--color-secondary-rgb, 2, 159, 226), 0.9);
	border-color: rgba(var(--color-secondary-rgb, 2, 159, 226), 0.9);
}

.pagination .page-item.active .page-link {
	color: #ffffff;
	background: var(--color-secondary, #029fe2) !important;
	border-color: var(--color-secondary, #029fe2);
	cursor: not-allowed;
}

.avatar.avatar-ex-sm {
	max-height: 25px;
}

.avatar.avatar-md-sm {
	height: 45px;
	width: 45px;
}

.avatar.avatar-small {
	height: 65px;
	width: 65px;
}

.avatar.avatar-md-md {
	height: 80px;
	width: 80px;
}

.avatar.avatar-medium {
	height: 110px;
	width: 110px;
}

.avatar.avatar-large {
	height: 140px;
	width: 140px;
}

.avatar.avatar-ex-large {
	height: 180px;
	width: 180px;
}

.accordion .accordion-item {
	overflow: hidden;
}

.accordion .accordion-item .accordion-button {
	font-weight: 600;
	text-align: left;
}

.accordion .accordion-item .accordion-button:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.accordion .accordion-item .accordion-button:before {
	content: "\F0143";
	display: block;
	font-family: "Material Design Icons";
	font-size: 16px;
	color: var(--color-secondary, #029fe2);
	position: absolute;
	right: 20px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.accordion .accordion-item .accordion-button.collapsed {
	background-color: #ffffff;
	color: var(--color-primary, #1d1d1b) !important;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.accordion .accordion-item .accordion-button.collapsed:before {
	top: 15px;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	color: var(--color-primary, #1d1d1b) !important;
}

.accordion .accordion-item .accordion-button:after {
	display: none;
}

.nav-pills {
	margin-bottom: 15px;
	background: #f4f6fa;
}

.nav-pills .nav-link {
	color: #495057 !important;
	padding: 5px;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.nav-pills .nav-link.nav-link-alt {
	color: #ffffff !important;
}

.nav-pills .nav-link.nav-link-alt.active {
	background: var(--color-primary, #1d1d1b) !important;
}

.nav-pills .nav-link.active {
	background: var(--color-secondary, #029fe2);
	color: #ffffff !important;
}

.nav-pills .nav-link.active .tab-para {
	color: rgba(255, 255, 255, 0.65) !important;
}

.progress-box .title {
	font-size: 15px;
}

.progress-box .progress {
	height: 8px;
	overflow: visible;
}

.progress-box .progress .progress-bar {
	border-radius: 6px;
	-webkit-animation: animate-positive 3s;
	animation: animate-positive 3s;
	overflow: visible !important;
}

.progress-box .progress .progress-value {
	position: absolute;
	top: -32px;
	right: -15px;
	font-size: 13px;
}

@-webkit-keyframes animate-positive {
	0% {
		width: 0;
	}
}

@keyframes animate-positive {
	0% {
		width: 0;
	}
}

.blockquote {
	border-left: 3px solid #dee2e6;
	border-radius: 6px;
	font-size: 16px;
}

.form-label,
.form-check-label {
	font-weight: 700;
	font-size: 14px;
}

.form-control {
	border: 1px solid #dee2e6;
	font-size: 14px;
	line-height: 26px;
	background-color: #ffffff;
	border-radius: 6px;
}

.form-control:focus {
	border-color: var(--color-secondary, #029fe2);
	-webkit-box-shadow: none;
	box-shadow: none;
}

.form-control[readonly] {
	background-color: #ffffff;
}

.form-control:disabled {
	background-color: #dee2e6;
}

.form-check-input:focus {
	border-color: var(--color-secondary, #029fe2);
	-webkit-box-shadow: none;
	box-shadow: none;
}

.form-check-input.form-check-input:checked {
	background-color: var(--color-secondary, #029fe2);
	border-color: var(--color-secondary, #029fe2);
}

.subcribe-form .btn {
	padding: 10px 20px;
}

.subcribe-form input {
	padding: 12px 20px;
	width: 100%;
	color: var(--color-primary, #1d1d1b) !important;
	border: none;
	outline: none !important;
	padding-right: 160px;
	padding-left: 30px;
	background-color: rgba(255, 255, 255, 0.8);
}

.subcribe-form button {
	position: absolute;
	top: 1.5px;
	right: 2px;
	outline: none !important;
}

.subcribe-form form {
	position: relative;
	max-width: 600px;
	margin: 0px auto;
}

.table-responsive {
	display: block;
	width: 100%;
	overflow-x: auto;
}

.table-responsive .table td,
.table-responsive .table th {
	vertical-align: middle;
}

.table-responsive .table.table-nowrap th,
.table-responsive .table.table-nowrap td {
	white-space: nowrap;
}

.table-responsive .table-center th {
	vertical-align: middle !important;
}

.table-responsive .table-center tbody tr:hover {
	color: var(--color-primary, #1d1d1b);
	background-color: #f8f9fa;
}

.table-responsive .table-center.invoice-tb th,
.table-responsive .table-center.invoice-tb td {
	text-align: end;
}

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: linear-gradient(45deg, #ffffff, #ffffff);
	z-index: 9999999;
}

#preloader #status {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

#preloader #status .spinner {
	width: 40px;
	height: 40px;
	position: relative;
	margin: 100px auto;
}

#preloader #status .spinner .double-bounce1,
#preloader #status .spinner .double-bounce2 {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: var(--color-secondary, #029fe2);
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-animation: sk-bounce 2s infinite ease-in-out;
	animation: sk-bounce 2s infinite ease-in-out;
}

#preloader #status .spinner .double-bounce2 {
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}

@-webkit-keyframes sk-bounce {
	0%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes sk-bounce {
	0%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.social-icon li a {
	color: var(--color-primary, #1d1d1b);
	border: 1px solid var(--color-primary, #1d1d1b);
	display: inline-block;
	height: 40px;
	width: 40px;
	line-height: 38px;
	text-align: center;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	overflow: hidden;
	position: relative;
}

.social-icon li a .fea-social {
	stroke-width: 2;
}

.social-icon li a {
	background-color: var(--color-secondary, #029fe2);
	border-color: var(--color-secondary, #029fe2) !important;
	color: #ffffff !important;
}

.social-icon li a:hover {
	color: var(--color-primary, #1d1d1b) !important;
}

.social-icon li a:hover .fea-social {
	fill: var(--color-secondary, #029fe2);
}

.social-icon.social li a {
	color: #adb5bd;
	border-color: #adb5bd;
}

.social-icon.foot-social-icon li a {
	color: #adb5bd;
	border-color: #283353;
}

.back-to-top {
	z-index: 99;
	position: fixed;
	bottom: 30px;
	right: 30px;
	display: none;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.back-to-top .icons {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.back-to-top:hover {
	/*! -webkit-transform: rotate(45deg); */
	/*! transform: rotate(45deg); */
}

.back-to-top:hover .icons {
	/*   -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); */
}

.back-to-home {
	position: fixed;
	top: 4%;
	right: 2%;
	z-index: 1;
}

.sticky-bar {
	position: -webkit-sticky;
	position: sticky;
	top: 80px;
}

.fea {
	stroke-width: 1.8;
}

.fea.icon-sm {
	height: 16px;
	width: 16px;
}

.fea.icon-ex-md {
	height: 18px;
	width: 18px;
}

.fea.icon-m-md {
	height: 28px;
	width: 28px;
}

.fea.icon-md {
	height: 35px;
	width: 35px;
}

.fea.icon-lg {
	height: 42px;
	width: 42px;
}

.fea.icon-ex-lg {
	height: 52px;
	width: 52px;
}

[class^="uil-"]:before,
[class*=" uil-"]:before {
	margin: 0;
}

.uim-svg {
	vertical-align: 0 !important;
}

body {
	font-family: "Montserrat", sans-serif;
	overflow-x: hidden !important;
	font-size: 16px;
	color: var(--color-primary, #1d1d1b);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: "Montserrat", sans-serif;
	line-height: 1.2;
	font-weight: 600;
}

::-moz-selection {
	background: rgba(var(--color-secondary-rgb, 2, 159, 226), 0.9);
	color: #ffffff;
}

::selection {
	background: rgba(var(--color-secondary-rgb, 2, 159, 226), 0.9);
	color: #ffffff;
}

a {
	text-decoration: none !important;
}

p {
	line-height: 1.6;
}

.section {
	padding: 100px 0;
	position: relative;
}

.section-car.section {
	/*! border-top:1px solid red; */
	/*position: relative;*/
	overflow: initial;
}

section#appId {
	overflow: hidden;
}

.section-two {
	padding: 60px 0;
	position: relative;
}

.bg-overlay {
	background-color: rgba(60, 72, 88, 0.7);
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.bg-overlay-white {
	background-color: rgba(255, 255, 255, 0.5);
}

.title-heading {
	line-height: 26px;
	/*! text-align: center; */
}

.title-heading .heading {
	font-size: 35px !important;
	letter-spacing: 1px;
}

.title-heading .heading span {
	font-weight: 600;
	font-size: 51px;
}

.title-heading .para-desc {
	font-size: 18px;
	margin-bottom: 0;
}

.section-title .title {
	letter-spacing: 0.5px;
	font-size: 30px !important;
}

.text-shadow-title {
	text-shadow: 2px 0 0 #ffffff, -2px 0 0 #ffffff,
		0 4px 0 rgba(255, 255, 255, 0.4), 0 -2px 0 #ffffff, 1px 1px #ffffff,
		-1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff;
}

.para-desc {
	max-width: 600px;
}
.para-desc:has(+ .app-block) {
	/*! text-align: center; */
}

.mt-100 {
	margin-top: 100px;
}

.shape {
	position: absolute;
	pointer-events: none;
	right: 0;
	bottom: -2px;
	left: 0;
}

.shape > svg {
	-webkit-transform: scale(2);
	transform: scale(2);
	width: 100%;
	height: auto;
	-webkit-transform-origin: top center;
	transform-origin: top center;
}

.shape.integration-hero {
	-webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	height: 250px;
	background: #ffffff;
}

.text-slider {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.text-slider > ul {
	white-space: nowrap;
}

.text-slider .move-text {
	-webkit-animation: moveSlideshow 12s linear infinite;
	animation: moveSlideshow 12s linear infinite;
}

@-webkit-keyframes moveSlideshow {
	100% {
		-webkit-transform: translateX(-45%);
		transform: translateX(-45%);
	}
}

@keyframes moveSlideshow {
	100% {
		-webkit-transform: translateX(-45%);
		transform: translateX(-45%);
	}
}

.mover {
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(5px);
		transform: translateY(5px);
	}
}

@keyframes mover {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(5px);
		transform: translateY(5px);
	}
}

.feature-posts-placeholder {
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
	height: 66.6%;
}

.spin-anything {
	-webkit-animation: spinner-animation 5s linear infinite;
	animation: spinner-animation 5s linear infinite;
}

@-webkit-keyframes spinner-animation {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spinner-animation {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.seo-hero-widget {
	position: relative;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.seo-hero-widget:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
	z-index: 9;
}

.home-wrapper:before {
	content: "";
	position: absolute;
	bottom: 40rem;
	right: 0rem;
	width: 90rem;
	height: 35rem;
	-webkit-transform: rotate(78.75deg);
	transform: rotate(78.75deg);
	background: -webkit-gradient(
		linear,
		left top,
		right top,
		from(rgba(var(--color-secondary-rgb, 2, 159, 226), 0.3)),
		to(transparent)
	);
	background: linear-gradient(
		90deg,
		rgba(var(--color-secondary-rgb, 2, 159, 226), 0.3),
		transparent
	);
	z-index: 1;
}

.remodal-close {
	z-index: 99;
	color: var(--color-primary, #1d1d1b) !important;
}

#topnav {
	position: fixed;
	right: 0;
	left: 0;
	top: 0;
	z-index: 999;
	background-color: transparent;
	border: 0;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	padding-left: 20px;
	padding-right: 20px;
	box-shadow: 0px 1px 4px #f8f9fc;
	max-width: 100vw;
}

#topnav .logo {
	float: left;
	color: var(--color-primary, #1d1d1b) !important;
}

#topnav .logo .l-dark,
#topnav .logo .logo-dark-mode {
	display: none;
}

#topnav .logo .l-light,
#topnav .logo .logo-light-mode {
	display: inline-block;
}

#topnav .logo:focus {
	outline: none;
}

#topnav .has-submenu.active a {
	color: #ffffff;
}

#topnav .has-submenu.active .submenu li.active > a {
	color: var(--color-secondary, #029fe2) !important;
}

#topnav .has-submenu.active.active .menu-arrow {
	border-color: var(--color-secondary, #029fe2);
}

#topnav .has-submenu {
	position: relative;
}

#topnav .has-submenu .submenu .submenu-arrow {
	border: solid var(--color-primary, #1d1d1b);
	border-radius: 0.5px;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	right: 20px;
	top: 14px;
}

#topnav .has-submenu .submenu .has-submenu:hover .submenu-arrow {
	border-color: var(--color-secondary, #029fe2);
}

#topnav .navbar-toggle {
	border: 0;
	position: relative;
	width: 60px;
	padding: 0;
	margin: 0;
	cursor: pointer;
}

#topnav .navbar-toggle .lines {
	width: 25px;
	display: block;
	position: relative;
	margin: 28px 20px;
	height: 18px;
}

#topnav .navbar-toggle span {
	height: 2px;
	width: 100%;
	background-color: var(--color-primary, #1d1d1b);
	display: block;
	margin-bottom: 5px;
	-webkit-transition: -webkit-transform 0.5s ease;
	transition: -webkit-transform 0.5s ease;
	transition: transform 0.5s ease;
	transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

#topnav .navbar-toggle span:last-child {
	margin-bottom: 0;
}

#topnav .buy-button {
	float: right;
	line-height: 68px;
}

#topnav .buy-button > li {
	line-height: initial;
}

#topnav .buy-button .login-btn-primary {
	display: none;
}

#topnav .buy-button .login-btn-light {
	display: inline-block;
}

#topnav .buy-button .dropdown .dropdown-toggle:after,
#topnav .buy-menu-btn .dropdown .dropdown-toggle:after {
	display: none;
}

#topnav .navbar-toggle.open span {
	position: absolute;
}

#topnav .navbar-toggle.open span:first-child {
	top: 6px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#topnav .navbar-toggle.open span:nth-child(2) {
	visibility: hidden;
}

#topnav .navbar-toggle.open span:last-child {
	width: 100%;
	top: 6px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#topnav .navbar-toggle.open span:hover {
	background-color: var(--color-secondary, #029fe2);
}

#topnav .navbar-toggle:hover,
#topnav .navbar-toggle:focus,
#topnav .navbar-toggle .navigation-menu > li > a:hover,
#topnav .navbar-toggle:focus {
	background-color: transparent;
}

#topnav .navigation-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

#topnav .navigation-menu > li {
	float: left;
	display: block;
	position: relative;
	margin: 0 0px;
}

#topnav .navigation-menu > li.drop-down {
	display: none;
}

#topnav .navigation-menu > li:hover > a,
#topnav .navigation-menu > li.active > a {
	color: var(--color-secondary, #029fe2) !important;
}

#topnav .navigation-menu > li > a,
.sp_click {
	display: block;
	color: var(--color-primary, #1d1d1b);
	font-size: 12px;
	background-color: transparent !important;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 24px;
	text-transform: uppercase;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	font-family: "Montserrat", sans-serif;
	padding-left: 15px;
	padding-right: 15px;
}

#topnav .navigation-menu > li > a:hover,
#topnav .navigation-menu > li > a:active {
	color: var(--color-secondary, #029fe2);
}

#topnav .navigation-menu .has-submenu .menu-arrow {
	border: solid var(--color-primary, #1d1d1b);
	border-radius: 0.5px;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	right: -1px;
	top: 30px;
}

#topnav .navigation-menu .has-submenu:hover .menu-arrow {
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
}

#topnav .menu-extras {
	float: right;
}

#topnav.scroll {
	background-color: #ffffff;
	border: none;
	-webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
	box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
}

#topnav.scroll .navigation-menu > li > a {
	color: var(--color-primary, #1d1d1b);
}

#topnav.scroll .navigation-menu > li > .menu-arrow {
	border-color: var(--color-primary, #1d1d1b);
}

#topnav.scroll .navigation-menu > li:hover > a,
#topnav.scroll .navigation-menu > li.active > a {
	color: var(--color-secondary, #029fe2);
}

#topnav.scroll .navigation-menu > li:hover > .menu-arrow,
#topnav.scroll .navigation-menu > li.active > .menu-arrow {
	border-color: var(--color-secondary, #029fe2);
}

#topnav.defaultscroll.dark-menubar .logo {
	line-height: 70px;
}

#topnav.defaultscroll.scroll .logo {
	line-height: 62px;
}

#topnav.defaultscroll.scroll.dark-menubar .logo {
	line-height: 62px;
}

#topnav.nav-sticky {
	background: #ffffff;
	-webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
	box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
}

#topnav.nav-sticky .navigation-menu.nav-light > li > a {
	color: var(--color-primary, #1d1d1b);
}

#topnav.nav-sticky .navigation-menu.nav-light > li.active > a {
	color: var(--color-secondary, #029fe2) !important;
}

#topnav.nav-sticky .navigation-menu.nav-light > li:hover > .menu-arrow,
#topnav.nav-sticky .navigation-menu.nav-light > li.active > .menu-arrow {
	border-color: var(--color-secondary, #029fe2) !important;
}

#topnav.nav-sticky .navigation-menu.nav-light > li:hover > a,
#topnav.nav-sticky .navigation-menu.nav-light > li.active > a {
	color: var(--color-secondary, #029fe2) !important;
}

#topnav.nav-sticky .navigation-menu.nav-light .has-submenu .menu-arrow {
	border-color: var(--color-primary, #1d1d1b);
}

#topnav.nav-sticky.tagline-height {
	top: 0 !important;
}

#topnav.nav-sticky .buy-button .login-btn-primary {
	display: inline-block;
}

#topnav.nav-sticky .buy-button .login-btn-light {
	display: none;
}

#topnav.nav-sticky .logo .l-dark {
	display: inline-block;
}

#topnav.nav-sticky .logo .l-light {
	display: none;
}

.logo {
	font-weight: 700;
	font-size: 24px;
	padding: 0 0 6px;
	letter-spacing: 1px;
	line-height: 68px;
}

#topnav .logo {
	padding-bottom: 0px;
}

.tagline {
	position: absolute;
	width: 100%;
	z-index: 99;
	font-size: 14px;
	padding: 13px 0;
}

.sidebar-nav {
	padding: 15px 0;
}

.sidebar-nav > .navbar-item {
	padding: 3px 15px;
}

.sidebar-nav > .navbar-item .navbar-link {
	color: var(--color-primary, #1d1d1b) !important;
	font-size: 15px;
	font-weight: 600;
}

.sidebar-nav > .navbar-item .navbar-link .navbar-icon {
	font-size: 18px;
	margin-right: 6px;
}

#navmenu-nav li.active a {
	color: var(--color-secondary, #029fe2);
}

#navmenu-nav li.account-menu.active .navbar-link,
#navmenu-nav li.account-menu:hover .navbar-link {
	color: #ffffff !important;
	background-color: var(--color-secondary, #029fe2) !important;
}

.bg-home {
	height: 100svh;
	background-size: cover;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	position: relative;
	background-position: center center;
}

.bg-half-260 {
	padding: 260px 0;
	background-size: cover;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	position: relative;
	background-position: center center;
}

.bg-half-170 {
	padding: 170px 0;
	background-size: cover;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	position: relative;
	background-position: center center;
}

.bg-half {
	padding: 184px 0 90px;
	background-size: cover;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	position: relative;
	background-position: center center;
}

.bg-auth-home {
	padding: 142px 0;
	background-size: cover;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	position: relative;
	background-position: center center;
}

.bg-circle-gradiant {
	background: radial-gradient(
		circle at 50% 50%,
		rgba(var(--color-secondary-rgb, 2, 159, 226), 0.1) 0%,
		rgba(var(--color-secondary-rgb, 2, 159, 226), 0.1) 33.333%,
		rgba(var(--color-secondary-rgb, 2, 159, 226), 0.3) 33.333%,
		rgba(var(--color-secondary-rgb, 2, 159, 226), 0.3) 66.666%,
		rgba(var(--color-secondary-rgb, 2, 159, 226), 0.5) 66.666%,
		rgba(var(--color-secondary-rgb, 2, 159, 226), 0.5) 99.999%
	);
}

.it-home {
	-webkit-animation: animate-left-to-right 60s linear infinite;
	animation: animate-left-to-right 60s linear infinite;
}

@-webkit-keyframes animate-left-to-right {
	from {
		background-position: 0 0;
	}

	to {
		background-position: 100% 0;
	}
}

@keyframes animate-left-to-right {
	from {
		background-position: 0 0;
	}

	to {
		background-position: 100% 0;
	}
}

.home-dashboard img {
	position: relative;
	top: 60px;
	z-index: 1;
}

.classic-saas-image .bg-saas-shape:after {
	bottom: 3rem;
	left: 0;
	width: 75rem;
	height: 55rem;
	border-radius: 20rem;
}

.classic-saas-image .bg-saas-shape:after,
.freelance-hero .bg-shape:after {
	opacity: 0.9;
	-webkit-transform: rotate(130deg);
	transform: rotate(130deg);
}

.freelance-hero .bg-shape:after {
	bottom: 0rem;
	left: 7rem;
	width: 100rem;
	height: 70rem;
	border-radius: 6rem;
}

.freelance-hero .bg-shape:after {
	-webkit-box-shadow: 0 0 40px
		rgba(var(--color-secondary-rgb, 2, 159, 226), 0.5);
	box-shadow: 0 0 40px rgba(var(--color-secondary-rgb, 2, 159, 226), 0.5);
	background-color: #99abea;
}

.studio-home {
	padding: 7%;
}

.agency-wrapper:before {
	content: "";
	position: absolute;
	bottom: 22rem;
	/*   right: 54rem; */
	right: 42vw;
	width: 90rem;
	height: 35rem;
	border-radius: 17rem;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	background-color: #f8f9fc;
	z-index: -1;
}

.bg-marketing {
	padding: 76px 0 120px;
	background-size: cover;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	position: relative;
	background-position: center center;
}

.home-slider .carousel-control-next,
.home-slider .carousel-control-prev {
	width: 30px;
	height: 30px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	border-radius: 30px;
	border: 1px solid #ced4da;
}

.home-slider .carousel-control-next-icon,
.home-slider .carousel-control-prev-icon {
	width: 30%;
}

.bg-animation-left:after {
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	width: 70%;
	height: 100%;
	background: rgba(255, 255, 255, 0.85);
	-webkit-clip-path: polygon(0 0, 90% 0, 70% 100%, 0% 100%);
	clip-path: polygon(0 0, 90% 0, 70% 100%, 0% 100%);
}

.bg-animation-left.dark-left:after {
	background: rgba(60, 72, 88, 0.6);
}

.bg-animation-left.crypto-home:after {
	background: var(--color-secondary, #029fe2);
	width: 80%;
	-webkit-clip-path: polygon(0 0, 100% 0, 50% 100%, 0% 100%);
	clip-path: polygon(0 0, 100% 0, 50% 100%, 0% 100%);
}

.bg-animation-left.task-management-home:after {
	background: url("../images/task/bg.png") var(--color-secondary, #029fe2);
	width: 100%;
	-webkit-clip-path: circle(65% at 40% 25%);
	clip-path: circle(65% at 40% 25%);
}

.bg-invoice {
	padding: 100px 0;
	background-size: cover;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	position: relative;
	background-position: center center;
}

.classic-app-image .bg-app-shape:after {
	bottom: 3rem;
	left: -8rem;
	width: 55rem;
	height: 35rem;
	border-radius: 20rem;
	-webkit-transform: rotate(120deg);
	transform: rotate(120deg);
	opacity: 0.9;
}

.classic-app-image .app-images {
	position: absolute;
	bottom: 60px;
	right: -20px;
}

.classic-app-image .bg-app-shape:after,
.classic-saas-image .bg-saas-shape:after,
.freelance-hero .bg-shape:after {
	content: " ";
	position: absolute;
	z-index: -1;
}

.classic-app-image .bg-app-shape:after,
.classic-saas-image .bg-saas-shape:after {
	-webkit-box-shadow: 0 0 40px
		rgba(var(--color-secondary-rgb, 2, 159, 226), 0.5);
	box-shadow: 0 0 40px rgba(var(--color-secondary-rgb, 2, 159, 226), 0.5);
	background-color: var(--color-secondary, #029fe2);
}

.shape-before .shape-img {
	position: absolute;
	top: -50px;
	left: -35px;
	z-index: -1;
	height: auto;
	overflow: hidden;
}

.swiper-slider-hero .swiper-container,
.swiper-slider-hero .swiper-slide .slide-inner {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.swiper-slider-hero .swiper-container .swiper-button-prev,
.swiper-slider-hero .swiper-container .swiper-button-next {
	background: transparent;
	width: 35px;
	height: 35px;
	line-height: 35px;
	margin-top: -30px;
}

.swiper-slider-hero .swiper-container .swiper-button-prev:before,
.swiper-slider-hero .swiper-container .swiper-button-next:before {
	font-family: "Material Design Icons";
	font-weight: 900;
	color: #ffffff;
}

.swiper-slider-hero .swiper-container .swiper-button-prev:hover,
.swiper-slider-hero .swiper-container .swiper-button-next:hover {
	background: var(--color-secondary, #029fe2);
	border-color: var(--color-secondary, #029fe2) !important;
}

.swiper-slider-hero .swiper-container .swiper-button-prev {
	left: 10px;
}

.swiper-slider-hero .swiper-container .swiper-button-prev:before {
	content: "\f0141";
}

.swiper-slider-hero .swiper-container .swiper-button-next {
	right: 10px;
}

.swiper-slider-hero .swiper-container .swiper-button-next:before {
	content: "\f0142";
}

.swiper-slider-hero .swiper-pagination-bullet {
	color: #f8f9fa;
	background: transparent;
}

.swiper-slider-hero .swiper-pagination-bullet-active {
	color: #ffffff;
}

.swiper-slider-hero .swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-slider-hero .swiper-pagination-custom,
.swiper-slider-hero .swiper-pagination-fraction {
	bottom: 45px;
}

.swiper-slider-hero
	.swiper-container-horizontal
	> .swiper-pagination-bullets
	.swiper-pagination-bullet {
	margin: 0 13px;
}

.features .icon {
	background: rgba(var(--color-secondary-rgb, 2, 159, 226), 0.1);
}

.features .image:before {
	content: "";
	position: absolute;
	bottom: 5px;
	left: 5px;
	width: 64px;
	height: 64px;
	border-radius: 6px;
	-webkit-transform: rotate(33.75deg);
	transform: rotate(33.75deg);
	background: linear-gradient(
		45deg,
		transparent,
		rgba(var(--color-secondary-rgb, 2, 159, 226), 0.1)
	);
}

.features.feature-clean .icons i {
	height: 65px;
	width: 65px;
	line-height: 65px;
	background-color: rgba(var(--color-secondary-rgb, 2, 159, 226), 0.1);
}

.features.feature-clean .title:hover {
	color: var(--color-secondary, #029fe2) !important;
}

.features .ride-image {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.features .ride-image img {
	border-radius: 100% 100% 100% 0;
}

.features:hover .image:before {
	background: rgba(var(--color-secondary-rgb, 2, 159, 226), 0.1);
	-webkit-animation: spinner-border 5s linear infinite !important;
	animation: spinner-border 5s linear infinite !important;
}

.features.fea-primary {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.features.fea-primary .content .title {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.features.fea-primary .content .title:hover {
	color: var(--color-secondary, #029fe2) !important;
}

.features.fea-primary .big-icon {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	right: 0;
	opacity: 0.015;
	font-size: 180px;
}

.features.fea-primary:hover {
	-webkit-box-shadow: 0 10px 25px rgba(60, 72, 88, 0.15);
	box-shadow: 0 10px 25px rgba(60, 72, 88, 0.15);
	background-color: var(--color-secondary, #029fe2) !important;
	color: #ffffff !important;
}

.features.fea-primary:hover .icon2,
.features.fea-primary:hover .para {
	color: rgba(255, 255, 255, 0.5) !important;
}

.features.fea-primary:hover .content,
.features.fea-primary:hover .icon2 {
	z-index: 2;
}

.features.fea-primary:hover .big-icon {
	opacity: 0.05;
}

.features .title,
.key-feature .title {
	font-size: 15px !important;
	font-weight: 500;
	cursor: pointer;
}

.features .icon,
.key-feature .icon {
	height: 32px;
	width: 32px;
	line-height: 32px;
	font-size: 14px;
}

.key-feature {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.key-feature .icon {
	background: linear-gradient(
		45deg,
		transparent,
		rgba(var(--color-secondary-rgb, 2, 159, 226), 0.15)
	);
}

.key-feature:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
	-webkit-box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
	box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
}

.work-process {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.work-process .step,
.work-process .step-icon {
	opacity: 0.06;
}

.work-process a {
	font-size: 15px;
}

.work-process.process-arrow:after {
	content: "";
	position: absolute;
	width: 60%;
	height: 40px;
	top: 80px;
	left: 80%;
	background: url("../images/process.png") center center no-repeat;
	z-index: 1;
}

.work-process.process-arrow:hover {
	-webkit-transform: none !important;
	transform: none !important;
}

.work-process:hover {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}

.work-process.d-none-arrow:hover {
	-webkit-transform: none !important;
	transform: none !important;
}

.course-feature {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.course-feature .full-img {
	position: absolute;
	bottom: 50%;
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
	left: 0;
	right: 0;
	opacity: 0;
	margin: 0 auto;
	z-index: -2;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	font-size: 250px;
}

.course-feature:hover {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}

.course-feature:hover .full-img {
	opacity: 0.05;
}

.features-absolute {
	position: relative;
	z-index: 2;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.features-absolute {
	margin: -200px 0 0px;
}

.features-absolute.blog-search {
	margin: -120px 0 0px;
}

.categories {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.categories:hover {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
	-webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
	box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
}

.categories a:hover {
	color: var(--color-secondary, #029fe2) !important;
}

.app-feature-shape-right:after,
.app-feature-shape-left:after {
	bottom: 0rem;
	width: 30rem;
	height: 30rem;
	border-radius: 10rem;
	margin-left: -50px;
}

.app-feature-shape-right:after {
	left: 10rem;
	-webkit-transform: rotate(150deg);
	transform: rotate(150deg);
}

.app-feature-shape-left:after {
	right: 10rem;
	-webkit-transform: rotate(210deg);
	transform: rotate(210deg);
}

.app-subscribe {
	position: absolute;
	top: -200px;
}

.saas-feature-shape-left:after,
.saas-feature-shape-right:after {
	bottom: -3rem;
	width: 35rem;
	height: 35rem;
	border-radius: 15rem;
	-webkit-transform: rotate(145deg);
	transform: rotate(145deg);
}

.saas-feature-shape-left:after {
	left: -10rem;
}

.saas-feature-shape-right:after {
	right: -10rem;
}

.app-feature-shape-right:after,
.app-feature-shape-left:after,
.saas-feature-shape-left:after,
.saas-feature-shape-right:after,
.social-feature-left:after,
.social-feature-right:after {
	background: rgba(var(--color-secondary-rgb, 2, 159, 226), 0.1);
	-webkit-box-shadow: 0 0 40px
		rgba(var(--color-secondary-rgb, 2, 159, 226), 0.1);
	box-shadow: 0 0 40px rgba(var(--color-secondary-rgb, 2, 159, 226), 0.1);
}

.app-feature-shape-right:after,
.app-feature-shape-left:after,
.saas-feature-shape-left:after,
.saas-feature-shape-right:after,
.social-feature-left:after,
.social-feature-right:after {
	content: "";
	position: absolute;
	z-index: -1;
}

.social-feature-left:after,
.social-feature-right:after {
	width: 450px;
	height: 520px;
	border-radius: 30px;
	bottom: -75px;
}

.social-feature-left:after {
	right: -200px;
}

.social-feature-right:after {
	left: 0px;
}

.explore-feature {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.explore-feature .icon {
	height: 80px;
	width: 80px;
	line-height: 80px;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.explore-feature:hover {
	-webkit-box-shadow: 0 10px 25px rgba(60, 72, 88, 0.15) !important;
	box-shadow: 0 10px 25px rgba(60, 72, 88, 0.15) !important;
}

.explore-feature:hover .icon,
.explore-feature:hover .title {
	color: var(--color-secondary, #029fe2) !important;
}

.construction-img {
	position: absolute;
	bottom: 0;
	right: 20px;
}

.client-testi {
	cursor: e-resize;
}

.client-testi .client-image {
	margin-right: 16px;
}

.client-testi .content:before {
	content: "";
	position: absolute;
	top: 30px;
	left: 0;
	margin-left: 13px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 8px solid var(--color-primary, #1d1d1b);
	border-color: transparent #ffffff #ffffff transparent;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	-webkit-box-shadow: 2px 2px 2px -1px rgba(60, 72, 88, 0.15);
	box-shadow: 2px 2px 2px -1px rgba(60, 72, 88, 0.15);
}

.tns-nav {
	text-align: center;
	margin-top: 10px;
}

.tns-nav button {
	border-radius: 3px;
	background: rgba(var(--color-secondary-rgb, 2, 159, 226), 0.5) !important;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	border: none;
	margin: 0 5px;
	padding: 5px;
}

.tns-nav button.tns-nav-active {
	background: var(--color-secondary, #029fe2) !important;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.slick-slider {
	overflow-x: hidden !important;
	cursor: pointer;
}

.pricing-rates {
	position: relative;
	z-index: 1;
	border-bottom: 3px solid #adb5bd !important;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.pricing-rates .price {
	font-weight: 400;
}

.pricing-rates.business-rate:hover {
	-webkit-transform: scale(1.03);
	transform: scale(1.03);
	z-index: 2;
	border-color: var(--color-secondary, #029fe2) !important;
	-webkit-box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
	box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
	background-color: #ffffff !important;
}

.pricing-rates.business-rate:hover .title {
	color: var(--color-secondary, #029fe2);
}

.pricing-rates.starter-plan {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
	z-index: 2;
	border-color: var(--color-secondary, #029fe2) !important;
}

.pricing-rates.best-plan:hover {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}

.ribbon.ribbon-primary span {
	background-color: var(--color-secondary, #029fe2) !important;
}

.ribbon.ribbon-primary span:before {
	border-left-color: #2443ac;
	border-top-color: #2443ac;
}

.ribbon.ribbon-primary span:after {
	border-right-color: #2443ac;
	border-top-color: #2443ac;
}

.ribbon.ribbon-secondary span {
	background-color: #5a6d90 !important;
}

.ribbon.ribbon-secondary span:before {
	border-left-color: #465571;
	border-top-color: #465571;
}

.ribbon.ribbon-secondary span:after {
	border-right-color: #465571;
	border-top-color: #465571;
}

.ribbon.ribbon-success span {
	background-color: #2eca8b !important;
}

.ribbon.ribbon-success span:before {
	border-left-color: #25a06e;
	border-top-color: #25a06e;
}

.ribbon.ribbon-success span:after {
	border-right-color: #25a06e;
	border-top-color: #25a06e;
}

.ribbon.ribbon-warning span {
	background-color: #f17425 !important;
}

.ribbon.ribbon-warning span:before {
	border-left-color: #d55b0e;
	border-top-color: #d55b0e;
}

.ribbon.ribbon-warning span:after {
	border-right-color: #d55b0e;
	border-top-color: #d55b0e;
}

.ribbon.ribbon-info span {
	background-color: #17a2b8 !important;
}

.ribbon.ribbon-info span:before {
	border-left-color: #117a8b;
	border-top-color: #117a8b;
}

.ribbon.ribbon-info span:after {
	border-right-color: #117a8b;
	border-top-color: #117a8b;
}

.ribbon.ribbon-danger span {
	background-color: #e43f52 !important;
}

.ribbon.ribbon-danger span:before {
	border-left-color: #d21e32;
	border-top-color: #d21e32;
}

.ribbon.ribbon-danger span:after {
	border-right-color: #d21e32;
	border-top-color: #d21e32;
}

.ribbon.ribbon-dark span {
	background-color: var(--color-primary, #1d1d1b) !important;
}

.ribbon.ribbon-dark span:before {
	border-left-color: #272f3a;
	border-top-color: #272f3a;
}

.ribbon.ribbon-dark span:after {
	border-right-color: #272f3a;
	border-top-color: #272f3a;
}

.ribbon.ribbon-muted span {
	background-color: #8492a6 !important;
}

.ribbon.ribbon-muted span:before {
	border-left-color: #68788f;
	border-top-color: #68788f;
}

.ribbon.ribbon-muted span:after {
	border-right-color: #68788f;
	border-top-color: #68788f;
}

.ribbon.ribbon-light span {
	background-color: #f8f9fc !important;
}

.ribbon.ribbon-light span:before {
	border-left-color: #d4daed;
	border-top-color: #d4daed;
}

.ribbon.ribbon-light span:after {
	border-right-color: #d4daed;
	border-top-color: #d4daed;
}

.ribbon.ribbon-blue span {
	background-color: var(--color-secondary, #029fe2) !important;
}

.ribbon.ribbon-blue span:before {
	border-left-color: #2443ac;
	border-top-color: #2443ac;
}

.ribbon.ribbon-blue span:after {
	border-right-color: #2443ac;
	border-top-color: #2443ac;
}

.ribbon.ribbon-footer span {
	background-color: #202942 !important;
}

.ribbon.ribbon-footer span:before {
	border-left-color: #0f131f;
	border-top-color: #0f131f;
}

.ribbon.ribbon-footer span:after {
	border-right-color: #0f131f;
	border-top-color: #0f131f;
}

.ribbon {
	position: absolute;
	top: -5px;
	width: 75px;
	height: 75px;
	z-index: 2;
}

.ribbon.ribbon-right {
	right: -5px;
}

.ribbon.ribbon-right span {
	right: -23px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.ribbon.ribbon-left {
	left: -5px;
}

.ribbon.ribbon-left span {
	left: -23px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.ribbon span {
	position: absolute;
	top: 15px;
	width: 100px;
	color: #ffffff;
}

.ribbon span:before,
.ribbon span:after {
	content: "";
	position: absolute;
	top: 100%;
	z-index: -1;
	border: 3px solid transparent;
}

.ribbon span:before {
	left: 0;
}

.ribbon span:after {
	right: 0;
}

.invoice-top .logo-invoice {
	font-weight: 700;
	font-size: 27px;
	letter-spacing: 1px;
}

.bg-cta {
	padding: 150px 0;
}

.play-btn {
	height: 78px;
	width: 78px;
	font-size: 30px;
	line-height: 76px;
	border-radius: 50%;
	display: inline-block;
	color: #ffffff;
}

.play-icon {
	position: absolute;
	bottom: 50%;
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
	right: 0;
	left: 0;
	text-align: center;
}

.play-icon i {
	height: 75px;
	-webkit-text-stroke: 2px var(--color-secondary, #029fe2);
	-webkit-text-fill-color: transparent;
	width: 75px;
	font-size: 25px;
	line-height: 75px;
	display: inline-block;
}

.play-icon i:hover {
	-webkit-text-stroke: 2px var(--color-secondary, #029fe2);
	-webkit-text-fill-color: var(--color-secondary, #029fe2);
}

.blog {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.blog .content h4 {
	line-height: 1.2;
}

.blog .content .title {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.blog .content .title:hover {
	color: var(--color-secondary, #029fe2) !important;
}

.blog .content .post-meta .like,
.blog .content .post-meta .comments,
.blog .content .post-meta .readmore {
	font-size: 15px;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.blog .content .post-meta .like:hover {
	color: #e43f52 !important;
}

.blog .content .post-meta .comments:hover {
	color: #2eca8b !important;
}

.blog .content .post-meta .readmore:hover {
	color: var(--color-secondary, #029fe2) !important;
}

.blog .author,
.blog .teacher,
.blog .course-fee {
	position: absolute;
	z-index: 1;
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.blog .author {
	top: 5%;
	left: 5%;
}

.blog .teacher {
	bottom: 6%;
	left: 5%;
}

.blog .course-fee {
	bottom: -5%;
	right: 5%;
	width: 50px;
	height: 50px;
}

.blog .course-fee .fee {
	line-height: 50px;
}

.blog.blog-detail:hover {
	-webkit-transform: translateY(0px) !important;
	transform: translateY(0px) !important;
}

.blog:hover {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}

.blog:hover .overlay {
	opacity: 0.4;
}

.blog:hover .author,
.blog:hover .teacher,
.blog:hover .course-fee {
	opacity: 1;
}

.blog .blog-list-meta {
	position: absolute;
	bottom: 24px;
}

.sidebar .widget .blog-categories li {
	padding-bottom: 10px;
}

.sidebar .widget .blog-categories li:last-child {
	padding-bottom: 0;
}

.sidebar .widget .blog-categories li a,
.sidebar .widget .blog-categories li span {
	font-size: 15px;
}

.sidebar .widget .blog-categories li a {
	color: var(--color-primary, #1d1d1b);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.sidebar .widget .blog-categories li a:hover {
	color: var(--color-secondary, #029fe2);
}

.sidebar .widget .post-recent {
	padding-bottom: 15px;
}

.sidebar .widget .post-recent:last-child {
	padding-bottom: 0;
}

.sidebar .widget .post-recent .post-recent-thumb {
	width: 25%;
}

.sidebar .widget .post-recent .post-recent-content {
	width: 75%;
	padding-left: 10px;
}

.sidebar .widget .post-recent .post-recent-content a {
	display: block;
	color: var(--color-primary, #1d1d1b);
	font-size: 15px;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.sidebar .widget .post-recent .post-recent-content a:hover {
	color: var(--color-secondary, #029fe2);
}

.sidebar .widget .post-recent .post-recent-content span {
	font-size: 13px;
}

.sidebar .widget .tagcloud > a {
	background: #e9ecef;
	color: var(--color-primary, #1d1d1b);
	display: inline-block;
	font-size: 9px;
	letter-spacing: 1px;
	margin: 5px 10px 5px 0;
	padding: 8px 12px 7px;
	text-transform: uppercase;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	font-weight: 600;
}

.sidebar .widget .tagcloud > a:hover {
	background: var(--color-secondary, #029fe2);
	color: #ffffff;
}

.media-list .media .media-heading:hover {
	color: var(--color-secondary, #029fe2) !important;
}

.media-list .sub-comment {
	border-left: 2px dashed #dee2e6;
}

.blog .overlay,
.job-box .job-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.job-box {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.job-box .job-overlay {
	opacity: 0.6;
}

.job-box .head {
	position: absolute;
	top: 15px;
	right: 15px;
}

.job-box .position {
	position: absolute;
	top: 15px;
	left: 15px;
}

.job-box .position a {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.job-box .position a:hover {
	color: var(--color-secondary, #029fe2) !important;
}

.job-box .firm-logo {
	position: absolute;
	left: 0;
	right: 0;
	height: 60px;
	width: 60px;
	line-height: 60px;
	margin: 0 auto;
	top: -30px;
}

.job-box .company-name {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.job-box .company-name:hover {
	color: var(--color-secondary, #029fe2) !important;
}

.job-box:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}

.candidate-list .like {
	-webkit-text-stroke: 1px #8492a6;
	-webkit-text-fill-color: transparent;
}

.candidate-list .like:hover,
.candidate-list .like:focus {
	-webkit-text-stroke: #e43f52;
	-webkit-text-fill-color: #e43f52;
}

.candidate-list,
.company-list {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.candidate-list .name:hover,
.company-list .name:hover {
	color: var(--color-secondary, #029fe2) !important;
}

.candidate-list:hover,
.company-list:hover {
	-webkit-box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
	box-shadow: 0 5px 13px rgba(60, 72, 88, 0.2) !important;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}

.filter-box {
	display: none;
}

.filter-box.show {
	display: block;
}

.tobii-zoom {
	display: block !important;
}

.tobii-zoom__icon {
	display: none;
}

.work-container.work-classic .work-image {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.work-container.work-classic .work-image:hover {
	-webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
	box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
}

.work-container.work-classic .content .title,
.work-container.work-grid .content .title,
.work-container.work-modern .content .title {
	font-size: 18px;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.work-container.work-classic .content .title:hover,
.work-container.work-grid .content .title:hover,
.work-container.work-modern .content .title:hover {
	color: var(--color-secondary, #029fe2) !important;
}

.work-container.work-classic .content .tag,
.work-container.work-grid .content .tag,
.work-container.work-modern .content .tag {
	font-size: 15px !important;
}

.work-container.work-modern img,
.work-container.work-modern .overlay-work,
.work-container.work-modern .content,
.work-container.work-modern .client,
.work-container.work-modern .read_more,
.work-container.work-modern .icons,
.work-container.work-modern .icons .work-icon {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.work-container.work-modern .overlay-work,
.work-container.work-modern .content,
.work-container.work-modern .client,
.work-container.work-modern .read_more,
.work-container.work-modern .icons {
	position: absolute;
}

.work-container.work-modern .overlay-work {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	z-index: 1;
}

.work-container.work-modern .content {
	z-index: 1;
	bottom: 5%;
	left: 5%;
}

.work-container.work-modern .content,
.work-container.work-modern .client {
	opacity: 0;
}

.work-container.work-modern .client,
.work-container.work-modern .read_more {
	z-index: 1;
	right: 5%;
	top: 5%;
}

.work-container.work-modern .read_more {
	height: 30px;
	width: 30px;
	line-height: 30px;
}

.work-container.work-modern .icons {
	right: 0;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 2;
	opacity: 0;
}

.work-container.work-modern .icons .work-icon {
	height: 45px;
	width: 45px;
	line-height: 45px;
}

.work-container.work-modern .icons .work-icon:hover {
	background: var(--color-secondary, #029fe2) !important;
	color: #ffffff !important;
}

.work-container.work-modern:hover img {
	-webkit-transform: scale(1.1) rotate(3deg);
	transform: scale(1.1) rotate(3deg);
}

.work-container.work-modern:hover .overlay-work {
	opacity: 0.65;
}

.work-container.work-modern:hover .icons {
	opacity: 1;
}

.work-container.work-modern:hover .personal-port,
.work-container.work-modern:hover .content,
.work-container.work-modern:hover .client {
	opacity: 1;
}

.work-container.work-grid {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.work-container.work-grid img,
.work-container.work-grid .content,
.work-container.work-grid .content .title {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.work-container.work-grid .content {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	-webkit-transform: translateY(150px);
	transform: translateY(150px);
	overflow: hidden;
}

.work-container.work-grid:hover {
	-webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
	box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
}

.work-container.work-grid:hover img {
	-webkit-transform: translateY(-40px);
	transform: translateY(-40px);
}

.work-container.work-grid:hover .content {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.work-details ul li b {
	max-width: 90px;
	width: 100%;
	display: inline-block;
}

.courses-desc img {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.courses-desc:hover img {
	-webkit-transform: scale(1.1) rotate(3deg);
	transform: scale(1.1) rotate(3deg);
}

.courses-desc .overlay-work,
.popular-tour .overlay-work {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.courses-desc:hover .overlay-work,
.popular-tour:hover .overlay-work {
	opacity: 0.6;
}

.event-schedule {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.event-schedule .date .day {
	font-size: 18px;
	width: 50px;
	height: 50px;
	border-radius: 50px;
	background: rgba(var(--color-secondary-rgb, 2, 159, 226), 0.1);
	line-height: 48px;
	border: 2px solid #ffffff;
	-webkit-box-shadow: 0px 0px 2px 0.25px
		rgba(var(--color-secondary-rgb, 2, 159, 226), 0.5);
	box-shadow: 0px 0px 2px 0.25px
		rgba(var(--color-secondary-rgb, 2, 159, 226), 0.5);
}

.event-schedule .date .month {
	font-size: 13px;
}

.event-schedule .content .title {
	font-size: 20px;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.event-schedule .content .title:hover {
	color: var(--color-secondary, #029fe2) !important;
}

.event-schedule .content .location-time {
	font-size: 14px;
}

.event-schedule:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	-webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
	box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
	border-color: var(--color-secondary, #029fe2) !important;
	background: #f8f9fc !important;
}

.courses-desc {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.courses-desc .content .title {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.courses-desc .content .title:hover {
	color: var(--color-secondary, #029fe2) !important;
}

.courses-desc .collection,
.courses-desc .preview {
	position: absolute;
	opacity: 0;
	z-index: 1;
}

.courses-desc .collection {
	top: 15px;
	left: 15px;
}

.courses-desc .collection i {
	-webkit-text-stroke: 2px #e43f52;
	-webkit-text-fill-color: transparent;
}

.courses-desc .collection i:active {
	-webkit-text-stroke: 0px #e43f52;
	-webkit-text-fill-color: #e43f52;
}

.courses-desc .preview {
	bottom: 15px;
	right: 15px;
}

.courses-desc:hover {
	-webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
	box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}

.courses-desc:hover .collection,
.courses-desc:hover .preview {
	opacity: 1;
}

.personal-port {
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.container-filter li {
	font-size: 13px;
	padding: 0px 15px;
	margin: 5px 3px;
	font-weight: 700;
	letter-spacing: 0.8px;
	cursor: pointer;
	line-height: 34px;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.container-filter li.active,
.container-filter li:hover {
	color: var(--color-secondary, #029fe2) !important;
	border-color: var(--color-secondary, #029fe2) !important;
}

.spacing {
	padding: 7px;
}

.shop-features .category-title {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 20px;
	z-index: 1;
}

.shop-list .shop-image .overlay-work,
.shop-list .shop-image .shop-icons {
	position: absolute;
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.shop-list .shop-image .overlay-work {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}

.shop-list .shop-image .overlay-work .out-stock {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

.shop-list .shop-image .shop-icons {
	top: 15px;
	right: 15px;
	z-index: 2;
}

.shop-list .shop-image:hover .overlay-work,
.shop-list .shop-image:hover .shop-icons {
	opacity: 1;
}

.shop-list .content .product-name {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.shop-list .content .product-name:hover {
	color: var(--color-secondary, #029fe2) !important;
}

.shop-list .label {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 2;
}

.shop-list .qty-btn {
	pointer-events: none;
	width: 65px;
	padding-left: 12px;
}

.popular-tour .content {
	position: absolute;
	bottom: 3%;
	left: 5%;
}

.main-icon {
	border: 2px solid #e9ecef;
	height: 40px;
	width: 40px;
	line-height: 0;
	text-align: center;
}

.main-icon .fea {
	height: 20px;
}

.timeline-page:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 95%;
	margin: auto;
	width: 2px;
	background-color: #e9ecef !important;
}

.timeline-page .timeline-item .date-label-left,
.timeline-page .timeline-item .duration-right {
	margin-right: 15px;
}

.timeline-page .timeline-item .date-label-left:after,
.timeline-page .timeline-item .duration-right:after {
	content: "";
	position: absolute;
	top: 12px;
	width: 12px;
	height: 12px;
	z-index: 1;
	background-color: var(--color-secondary, #029fe2);
	border-radius: 4px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.timeline-page .timeline-item .date-label-left {
	float: right;
	margin-right: 15px;
}

.timeline-page .timeline-item .date-label-left:after {
	right: -34px;
}

.timeline-page .timeline-item .duration-right {
	float: left;
	margin-left: 15px;
}

.timeline-page .timeline-item .duration-right:after {
	left: -34px;
}

.timeline-page .timeline-item .event {
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.timeline-page .timeline-item .event.event-description-right {
	margin-left: 15px;
}

.timeline-page .timeline-item .event.event-description-left {
	margin-right: 15px;
	text-align: right;
}

.team img {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.team .name:hover {
	color: var(--color-secondary, #029fe2) !important;
}

.team .team-icon {
	position: absolute;
	bottom: 50%;
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
	right: 0;
	opacity: 0;
	left: 0;
	text-align: center;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.team:hover img {
	-webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
	box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
	opacity: 0.2;
}

.team:hover .overlay-team {
	opacity: 0.6;
}

.team:hover .team-icon {
	opacity: 1;
}

.login-page {
	font-size: 15px;
}

.login-page .forgot-pass {
	z-index: 99;
	position: relative;
	font-size: 13px;
}

.cover-user .container-fluid {
	max-width: 100%;
}

.cover-user .container-fluid .padding-less.img {
	background: scroll center no-repeat;
	background-size: cover;
	position: absolute;
	height: 100%;
}

.cover-user .cover-user-img {
	height: 100vh;
}

.bg-profile {
	padding: 100px 0;
	background-size: cover;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	position: relative;
	background-position: center center;
}

.bg-profile .public-profile {
	top: 175px;
}

.coming-soon,
.maintenance,
.error-page {
	font-size: 40px;
	letter-spacing: 1px;
}

#countdown .count-down,
#eventdown .count-down {
	display: inline-block;
	margin: 30px 10px 10px;
	color: #ffffff;
	text-align: center;
}

#countdown .count-down .count-number,
#eventdown .count-down .count-number {
	font-size: 40px;
	line-height: 95px;
}

#countdown .count-down .count-head,
#eventdown .count-down .count-head {
	display: block;
	position: relative;
	-webkit-transform: translateY(-20px);
	transform: translateY(-20px);
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
}

#countdown .count-down .count-number {
	font-size: 40px;
	line-height: 95px;
	border: 4px solid #dee2e6;
	height: 130px;
	width: 130px;
	border-radius: 50%;
}

#eventdown .count-down {
	margin: 10px !important;
	border: 0;
}

#eventdown .count-down .count-number {
	line-height: 80px;
}

#eventdown .count-down .count-head {
	-webkit-transform: translateY(-15px);
	transform: translateY(-15px);
}

#maintenance {
	color: #ffffff;
	font-size: 56px;
	letter-spacing: 1px;
}

#maintenance .indicator {
	font-size: 18px;
}

.form-icon .icons {
	position: absolute;
	top: 13px;
	left: 18px;
}

.map {
	line-height: 0;
}

.map iframe {
	width: 100%;
	height: 400px;
}

.error {
	margin: 8px 0px;
	display: none;
	color: #e43f52;
}

#ajaxsuccess {
	font-size: 16px;
	width: 100%;
	display: none;
	clear: both;
	margin: 8px 0px;
}

.error_message,
#success_page {
	padding: 10px;
	margin-bottom: 20px;
	text-align: center;
	border-radius: 5px;
}

.error_message {
	background-color: rgba(240, 115, 90, 0.1) !important;
	border: 2px solid rgba(240, 115, 90, 0.1) !important;
	color: #f0735a !important;
	font-size: 14px;
}

.contact-loader {
	display: none;
}

#success_page {
	background-color: rgba(83, 199, 151, 0.1) !important;
	border: 2px solid rgba(83, 199, 151, 0.1) !important;
	color: #53c797 !important;
}

#success_page p {
	margin-bottom: 0 !important;
}

.qs-datepicker-container {
	background-color: #ffffff;
	border-color: #dee2e6;
}

.qs-datepicker-container .qs-controls {
	background-color: #e9ecef;
}

.qs-datepicker-container .qs-controls .qs-month-year {
	font-weight: 600;
	font-size: 15px;
}

.qs-datepicker-container .qs-controls .qs-month-year:hover {
	border-bottom: 1px solid #e9ecef;
}

.qs-datepicker-container .qs-squares .qs-square {
	font-size: 15px;
	height: 34px;
	width: 34px;
}

.qs-datepicker-container
	.qs-squares
	.qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(
		.qs-active
	):hover,
.qs-datepicker-container .qs-squares .qs-square.qs-current {
	background: var(--color-secondary, #029fe2);
	color: #ffffff;
	border-radius: 30px;
	font-weight: 500;
	text-decoration: none;
	border-radius: 30px;
}

.qs-datepicker-container .qs-squares .qs-day {
	font-weight: 500;
	color: #8492a6;
}

.footer {
	background: #202942;
	padding: 60px 0 20px;
	position: relative;
	color: #adb5bd;
	font-size: 14px;
}

.footer .logo-footer {
	font-size: 22px;
}

.footer .logo-footer:focus {
	outline: none;
}

.footer .footer-head {
	letter-spacing: 1px;
	font-weight: 500;
}

.footer .foot-subscribe .form-control {
	background-color: #27314f;
	border: 1px solid #27314f;
	color: #f8f9fc;
}

.footer .foot-subscribe .form-control:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.footer .foot-subscribe.foot-white .form-control {
	color: #adb5bd;
}

.footer .foot-subscribe input::-webkit-input-placeholder {
	color: #adb5bd;
}

.footer .foot-subscribe input:-ms-input-placeholder {
	color: #adb5bd;
}

.footer .foot-subscribe input::-ms-input-placeholder {
	color: #adb5bd;
}

.footer .foot-subscribe input::placeholder {
	color: #adb5bd;
}

.footer .text-foot {
	color: #adb5bd;
}

.footer .footer-list {
	margin-bottom: 0;
}

.footer .footer-list li {
	margin-bottom: 10px;
}

.footer .footer-list li a {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.footer .footer-list li a:hover {
	color: #e6e8ea;
}

.footer .footer-list li:last-child {
	margin-bottom: 0;
}

.footer.footer-border,
.footer.footer-bar {
	border-top: 1px solid #283353;
}

.footer.footer-bar {
	padding: 30px 0;
}

.tel-line-footer {
	display: grid;
	justify-content: center;
	margin-top: 5px;
}

.tel-line-footer .tel-item.mod a {
	color: #fff;
	font-size: 18px;
	line-height: 0.9;
}
.tel-line-footer .tel-item img {
	width: 20px;
	height: 18px;
}

.tel-line-footer .tel-item.mod:nth-of-type(2),
.tel-line-footer .tel-item.mod:nth-of-type(4) {
	margin-bottom: 5px;
}

.digit_footer_wrap {
	display: flex;
	flex-direction: column;
	/*! justify-content: flex-start; */
}

.digit_footer_wrap .callback_head {
	font-size: 20px;
	color: #fff;
	font-weight: 700;
	/*! display: flex; */
	align-items: center;
	line-height: 0;
}
.callback_head span {
	font-weight: normal;
	margin-left: 5px;
}
.digit_footer_wrap .callback_head svg {
	max-width: 18px;
	margin-right: 4px;
}

.bottom_text_footer {
	font-size: 9px;
	line-height: 1;
	margin-top: 2px;
	margin-left: 33px;
	color: var(--color-secondary);
	letter-spacing: 0.11em;
}

.buy-button a {
	padding: 5px 9px;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 0;
}

.buy-button a:not(.btn-primary):hover {
	background-color: var(--color-secondary, #029fe2) !important;
	border-color: var(--color-secondary, #029fe2) !important;
	color: #fff;
}

#navigation2 {
	position: absolute;
	left: 200px;
}

#home a {
	color: var(--color-primary, #1d1d1b);
}

i.uil.h1.text-primary {
	z-index: 9;
	position: relative;
}

.app-block {
	display: flex;
	/*! justify-content: center; */
}
.footer .app-block {
	justify-content: center;
}

.app-btn {
	width: 178px;
	display: block;
	margin-right: 5px;
}

.footer .app-btn {
	width: auto;
	height: 40px;
	display: inline-block;
}

.footer .app-block .app-btn img {
	max-width: 130px;
}

.footer .app-block {
	/*! display: block; */
	/* display:flex;
  height: 100%;
  align-items: center;
  justify-content: center;*/
}

.footer .footer_btn {
	display: flex;
	flex-direction: column;
	/*! max-width: 100%; */
	align-items: center;
}

.footer .footer_btn > a {
	margin-bottom: auto !important;
}

.footer .row > div:nth-of-type(2) {
	display: flex;
	flex-direction: column;
}

.footer .row > div:nth-of-type(2) .app-block {
	margin-bottom: auto !important;
	margin-top: 0 !important;
}

.app-btn img {
	max-width: 100%;
	max-height: 100%;
	display: block;
}
.footer .row > div:nth-of-type(2) > p,
.footer .row > div:nth-of-type(3) > p {
	margin-top: auto;
}

.footer .row > div:nth-of-type(3) {
}

.section {
	/*! overflow: hidden; */
}

.sub-menu-item.active {
	color: var(--color-secondary, #029fe2) !important;
}

.sectionwork .container {
	width: 1000px;
	max-width: 90%;
}

.sectionwork a {
	color: var(--color-primary, #1d1d1b);
}

.sectionwork .key-feature .title {
	font-size: 18px !important;
}

.sectionwork .key-feature .icon {
	margin-right: 20px !important;
}

.title-heading .col-lg-4 {
}

.MultiFile-title {
	max-width: 100px;
	display: inline-block;
	overflow: hidden;
	white-space: nowrap;
	font-size: 12px;
	line-height: 28px;
}

.MultiFile-label {
	display: block;
	line-height: 0;
}

.MultiFile-applied::-webkit-file-upload-button {
	visibility: hidden;
	display: none;
}

.MultiFile-applied::file-upload-button {
	visibility: hidden;
	display: none;
}

.MultiFile-applied::file-selector-button {
	visibility: hidden;
	display: none;
}

.MultiFile-applied::after {
	content: "Завантажити фото авто";
	display: inline-block;
	padding: 0px;
	outline: none;
	white-space: nowrap;
	-webkit-user-select: none;
	cursor: pointer;
	font-size: 10pt;
	color: #444 !important;
	line-height: 28px;
	font-size: 16px;
	width: max-content;
	float: left;
}

.MultiFile-applied::before {
	content: "\F01DA";
	display: inline-block;
	font: normal normal normal 24px/1 "Material Design Icons";
	font-size: inherit;
	text-rendering: auto;
	line-height: inherit;
	-webkit-font-smoothing: antialiased;
	color: #444 !important;
	width: max-content;
	float: left;
	margin-right: 6px;
	vertical-align: super;
	line-height: 28px;
}

input[type="file"] {
	color: #fff;
}

.file-upload {
	width: 100%;
	padding: 0 0px;
	height: auto;

	margin-bottom: 5px;

	border: none;
	outline: none;
	font-size: 16px;
	line-height: 48px;
	text-align: left;
	font-family: "Montserrat", sans-serif;
	font-weight: normal;
	position: relative;
}

.file-upload > label {
	display: block;
	width: 100%;
	height: 100%;
	cursor: pointer;
	font-size: 14px;
	line-height: 41px;
	text-align: left;
	font-family: "Montserrat", sans-serif;
	font-weight: normal;
	margin: 0;
}

/* стиль текста на кнопке*/
.file-upload label > span {
	font-weight: bold;
	font-size: 16px;
	line-height: 48px;
	text-align: left;
	font-family: "Montserrat", sans-serif;
	font-weight: normal;
	padding-left: 15px;
	background: #fff;
	display: block;
	border-radius: 3px;
}

.remodal-wrapper .remodal.driver {
	/*   border-radius: 20px; */
	box-shadow: 1px 1px 12px 2px rgba(0, 0, 0, 0.4);
}

.info-modal p.modal-tit {
	font-size: 28px;
	color: #ffe03b;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.info-modal p {
	font-size: 18px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.info-modal span {
	font-size: 14px;
	color: #fff;
	font-weight: 400;
	letter-spacing: 0px;
	margin-bottom: 0px;
	display: block;
	margin-bottom: 10px;
}

.info-modal ul {
	padding: 0;
	list-style-type: none;
}

.info-modal li {
	font-size: 17px;
	color: #fff;
	font-weight: 400;
	display: flex;
	align-items: center;
	margin-bottom: 7px;
	letter-spacing: 0.005em;
	text-align: left;
}

.info-modal li .icon {
	color: #ffe03b;
	margin-right: 10px;
	height: 18px;
	width: 18px;
	stroke-width: 3;
}

.submit-rights {
	color: #fff;
	margin: 0;
	line-height: 48px;
}

.remodal {
	width: 1400px;
	max-width: 100%;
	background: -webkit-linear-gradient(
		135deg,
		rgb(85, 85, 85) 50%,
		rgb(96, 94, 94) 50%
	);
	background: -moz-linear-gradient(
		135deg,
		rgb(85, 85, 85) 50%,
		rgb(96, 94, 94) 50%
	);
	background: linear-gradient(
		135deg,
		rgb(85, 85, 85) 50%,
		rgb(96, 94, 94) 50%
	);
}

/* #submitFF {
  padding: 16px 50px;
  font-size: 16px;
  width: auto;
} */
.contact-form .btn {
	/*! color: #fff; */
	margin-top: 30px;
	padding: 20px 30px;
	background-color: var(--color-secondary, #029fe2);
}

select option[disabled] {
	display: none;
}

.title-heading h4 span {
	display: block;
}

.title-heading h4 span a {
	color: #222 !important;
}

.title-heading h4 span a:hover {
	color: #ffe03b !important;
}

.putName::-webkit-input-placeholder {
	color: #333;
}

.putName::-moz-placeholder {
	color: #333;
}

.putName:-moz-placeholder {
	color: #333;
}

.putName:-ms-input-placeholder {
	color: #333;
}

#submitFF {
	font-weight: 600;
}

.modal2 {
	width: 700px;
	max-width: 100%;
}

.modal2 p {
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 20px;
}

.modal2 a {
	background-color: #ffcd01 !important;
	padding: 14px 10px;
	font-size: 20px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	display: block;
	margin: 7px 0;
	border-radius: 7px;
	color: #222 !important;
}

.MultiFile-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

div.MultiFile-label {
	margin-right: 7px;
	line-height: 1.2;
	display: flex;
	align-items: center;
	padding: 5px;
	border-radius: 4px;
	margin-top: 0px;
	background-color: #fff;
}

.MultiFile-remove {
	color: red;
	margin-right: 8px;
	font-size: 16px;
	font-family: "Roboto", sans-serif;
	display: flex;
	line-height: 1;
	padding: 5px 10px;
	background: #ff4747;
	border-radius: 2px;
	color: #fff;
}

.submit-bl-mob {
	display: none;
}

.operator {
	width: 19px;
	border: none !important;
	display: inline-block;
	height: auto !important;
	margin-top: -5px;
	margin-right: 5px;
}

.tel-line .operator {
	width: 24px;
}

.tel-line a {
	margin-right: 15px;
	display: inline-block;
	font-size: 21px;
	transition: all 0.1s;
	margin-top: 5px;
	margin-bottom: 5px;
}

.tel-line a:hover {
	text-decoration: underline !important;
}

.telegram-line a {
	padding: 14px 20px;
	font-size: 15px;
}

.title-heading .heading.heading3 {
	font-size: 40px !important;
}

.img-city {
	border-radius: 80px 80px 80px 80px;
	/*! width: 500px; */
	max-width: calc(100% - 20px);
	/*! box-shadow: 1px 1px 10px #8492a6ab; */
}

.andro-line {
	display: none;
}

.mobpnone {
	/*! display: none; */
}

.img-city-mob {
	display: none;
}

.list-mobi li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 7px !important;
}
#appId .list-mobi li {
	color: #000;
}

.list-mobi li span {
	display: block;
	position: absolute;
	left: 0;
	top: 2px;
	margin: 0 !important;
	line-height: 0;
}

.modalBgImage {
	background-size: cover;
	background-position: center;
	background-image: url(../images/27.jpg);
	line-height: 0;
}

.remodalNew .remodalBorder {
	padding: 0;
}

.remodalNew .info-modal {
	padding: 40px 40px 20px;
}

.remodalNew .submit-rights {
	font-size: 14px;
	text-transform: none;
	text-align: left;
	font-weight: 400;
}

/*кнопка*/

.trubka_wrap {
	/* width: 48px;
    height: 48px;*/
	/* text-indent: -9999px;*/
	position: fixed;
	z-index: 5;
	right: 20px;
	bottom: 100px;
	background-size: cover;
	border-radius: 30px;
	display: none;
}

.header-phone-icon-big {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	border-radius: 40px;
	background-color: var(--color-secondary, #029fe2);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: radial-pulse 1.8s infinite;
}

a.back-to-top.btn_up {
	/*display: none;*/
	width: 48px !important;
	height: 48px !important;
	text-indent: -9999px;
	position: fixed;
	z-index: 1031;
	right: 20px;
	bottom: 100px;
	background: var(--color-secondary, #029fe2) url("/images/st-w.svg")
		no-repeat center center !important;
	/* background-size: auto !important;*/
	background-size: 25px !important;
	border-radius: 30px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
	border: 0 !important;
}

@keyframes radial-pulse {
	0% {
		box-shadow: 0 0 0 0px rgba(var(--color-secondary-rgb, 2, 159, 226), 0.7);
	}

	100% {
		box-shadow: 0 0 0 20px rgba(var(--color-secondary-rgb, 2, 159, 226), 0);
	}
}

/*modal*/
.phone_list {
	list-style: none;
}

.modal_title {
	font-size: 24px;
	line-height: 30px;
	letter-spacing: 0em;
	text-align: left;
	margin-bottom: 15px;
	font-weight: 600;
}

.modal-phone p {
	color: var(--color-secondary, #029fe2);
	text-align: left;
	margin-bottom: 10px;
	font-size: 19px;
	line-height: 19px;
	letter-spacing: 0em;
	text-align: left;
	padding-bottom: 0;
}

.tel-item.mod {
	justify-content: flex-start;
	flex-wrap: nowrap;
	align-items: center;
	display: flex;
	text-align: left;
	line-height: 1;
}

.modal_big .tel-item img {
	height: auto;
	width: 18px;
}

.modal-phone:not(:last-child) {
	margin-bottom: 10px;
}

.contact .modal-phone {
	margin: 10px 0;
}

.modal_big .tel-item.mod a {
	line-height: 18px;
}

.tel-item.mod a {
	color: var(--color-primary, #1d1d1b);

	margin: 0;
	width: auto;
	padding: 5px 10px;

	font-size: 21px;
	line-height: 24px;
	letter-spacing: 0em;
	text-align: left;
	font-weight: 600;
}

.modal-phone a:hover {
	background: none !important;
}

.modal-phone .callback_head {
	font-size: 24px;
	line-height: 1;
	letter-spacing: 0em;
	text-align: left;
	display: flex;
	align-items: baseline;
	/*! margin-bottom: 10px; */
	position: relative;
	padding-left: 0;
	padding-right: 0;
	/*! font-weight: 700; */
	color: var(--color-primary, #1d1d1b);
	font-weight: 600;
}

.modal-phone .callback_head svg {
	margin-right: 10px;
}

.modal-phone .callback_head img {
	margin-right: 10px;
	align-self: center;
}

.price_free {
	position: absolute;
	font-size: 10px;
	top: 18px;
	left: 38px;
	font-weight: normal;
}

.modal-phone .call_digit {
	font-size: 32px;
	font-weight: 500;
	margin-right: 7px;
	color: var(--color-primary, #1d1d1b);
}

.modal-phone .callback {
	font-size: 22px;
	font-weight: normal;
}

.tel-item img {
	display: block;
	width: 26px;
	height: 26px;
}

.wrap_digit_mob {
	display: flex;
	flex-direction: column;
}

.remodal .wrap_digit_mob {
	margin: 20px 0;
}

.mobile_phone .tel-line-mod > div:nth-child(2),
.mobile_phone .tel-line-mod > div:nth-child(4) {
	margin-bottom: 5px;
}

.bottom_text_mob {
	font-size: 11px;
	text-align: left;
	margin-left: 33px;
	color: var(--color-secondary);
}

.remodal-wrapper .remodal {
	/* max-width: 1000px; */
	box-sizing: border-box;
	max-width: 93vw;
	width: 600px;
	height: auto;
	border-radius: 20px 20px 0 0;
	background-color: #fff;
	background-size: cover;
	box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2);
	background-image: none;
	padding: 10px;
	margin: 0 auto -7px auto;
}

/*окно работа*/

/* форма */
.dispetcher .form_driver_wrap {
	height: auto;
	/* background-color: #fff;
  border-radius: 12px;
  padding: 15px 30px 30px 30px;
  position: absolute;
  right: 0;
  top: -485px; */
}

.form_driver_wrap {
	width: 470px;
	/* height: 634px;*/
	height: auto;
	background-color: #fff;
	border-radius: 12px;
	padding: 15px 30px 30px 30px;
	position: absolute;
	right: 0;
	top: -495px;
}

.form_driver {
	display: flex;
	flex-direction: column;
}

.form_driver_wrap h4 {
	font-size: 24px;
	font-weight: 700;
	line-height: 30px;
	text-align: left;
	margin-bottom: 8px;
}

.form_subtitle {
	font-size: 19px;
	font-weight: 600;
	line-height: 20px;
	text-align: left;
	margin-bottom: 30px;
	padding-right: 15px;
}

.form_driver label {
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	letter-spacing: 0em;
	text-align: left;
	margin-bottom: 10px;
}

.form_driver input:not([type="submit"]) {
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0em;
	text-align: left;
	color: #282828;
	background-color: #edf1fb;
	border: none;
	padding: 14px 16px;
	border-radius: 10px;
	margin-bottom: 20px;
	/* height: 100%; */
}

.form_driver .chek_wrap label {
	font-size: 12px;
	line-height: 1.5;
	text-align: left;
}

.form_driver .btn {
	width: 100%;
	margin: 20px auto 0 auto;
	max-width: 80%;
}

.form_driver .btn {
	width: 100%;
	margin: 20px auto 0 auto;
	max-width: 80%;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
	cursor: pointer;
}

.btn.inp {
	/*padding: 8px 20px;*/
	outline: none;
	text-decoration: none;
	font-size: 15px;
	letter-spacing: 0.5px;
	transition: all 0.3s;
	font-weight: 500;
	border-radius: 6px;
	background: var(--color-secondary, #029fe2);
	color: #222;
	font-weight: 600;
	padding: 0px 44px;
	font-size: 14px;
	height: 50px;
	line-height: 50px;
	text-transform: uppercase;
}

/* услуги */
.com-inside {
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	text-align: center;
	border-radius: 4px;
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}

.com-inside .img-sec {
	position: relative;
	overflow: hidden;
}

.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
}

.com-inside .txt-sec h5 {
	font-weight: 600;
	font-size: 16px;
	margin: 0px;
	letter-spacing: -0.4px;
}

.com-inside .txt-sec h5 a {
	color: var(--color-primary, #1d1d1b);
	padding: 20px 5px;
	display: inline-block;
	width: 100%;
	font-size: 16px;
}

.heading-block h2 {
	margin: 9px 0;
}
.contact .heading-block h2 {
	margin: 0 0 25px;
}

.contact-form li {
	list-style: none;
}

.contact-form label input {
	height: 44px;
	border: none;
	outline: none !important;
	font-weight: 500;
	font-size: 14px;
	padding: 0px 20px;
	color: var(--color-primary, #1d1d1b);
	margin-top: 5px;
	background: #f6f6f6 !important;
}

.contact-form label {
	width: 100%;
	margin-bottom: 10px;
}

.contact-form label {
	color: #333;
	font-size: 14px;
	padding: 10px 10px;
	font-weight: 500;
	background: rgba(0, 0, 0, 0);
	border: 0px solid #e5edf2;
	border-radius: 4px;
	line-height: 24px;
}

.contact-form ul {
	margin-bottom: 0px;
}

.contact-form {
	background: #fff;
	max-width: 770px;
	margin: 0 auto;
}

.contact-form ul {
	padding-left: 0;
}

.contact-form label textarea {
	border: none !important;
	padding: 10px 20px;
	background: #f6f6f6 !important;
	resize: none;
	margin-top: 4px;
}

.contact-form label textarea {
	min-height: 150px;
}

.contact-form label textarea {
	border: 1px solid #efeff1;
	font-weight: normal;
	font-size: 14px;
	padding: 10px 20px;
}

.why-choose {
	padding: 50px 0;
}
.contact .why-choose {
	padding-block: 30px;
}

section.bg-white {
	padding: 50px 0;
}

/*для мобилок*/

.mob_callback {
	display: grid;
	grid-template-columns: minmax(180px, auto) auto;
	column-gap: 18px;
	align-items: center;
	/*! justify-content: center; */
	align-content: center;
	line-height: 1;
	/* height: 100%; */
	background-color: #fff;
	border-radius: 100px;
	padding: 5px 20px;
	border: 1px solid var(--color-secondary);
	max-width: 420px;
	margin-top: 20px;
	/*! width: clamp(290px, 100%, 320px); */
	/*! margin-inline: auto; */
}

.mob_callback .dig_575 .callback_head {
	color: var(--primary-dark, #282828);
	/*     font-size: 56px; */
	font-size: calc(27px + 4 * ((100vw - 360px) / (1920 - 360)));
	font-style: normal;
	font-weight: 900;
	/*! padding-left: 24px; */
	align-items: center;
	/*! font-family:serif; */
}

.mob_callback .dig_575 .callback_head span {
	font-weight: normal;
}

/*.callback_text .top_text {
   /* color: var(--accent, #000);
    color: #F4BB21 ;
    font-size: 12px;
    font-size: calc(12px + 5 * ((100vw - 360px) / (1920 - 360)));
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 1.44px;
    text-transform: uppercase;
  }*/

.mob_callback .bottom_text {
	/*! color: var(--primary-dark, #282828); */
	font-size: 10px;
	font-size: calc(10px + 4 * ((100vw - 360px) / (1920 - 360)));
	line-height: calc(1.5 + 0.2 * ((100vw - 360) / (1920 - 360)));
	font-style: normal;
	font-weight: 500;
	line-height: 1;
	display: flex;
	flex-wrap: wrap;
	flex: 1 0 100%;
	justify-content: center;
	color: var(--color-secondary);
	/*! letter-spacing: 0.1em; */
	margin-left: 1em;
}

.mob_callback_wrap {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}

.mob_callback .header-phone-icon-big {
	width: 40px;
	height: 40px;
	animation: none;
}

.bottom_text_first {
	margin-bottom: 2px;
}

.top_section_wrap {
	/*! gap:0 20px; */
}

.tel-line {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

@media (max-width: 1200px) {
	.tel-line {
		grid-template-columns: 1fr;
		justify-items: center;
	}

	.tel-line > a:nth-of-type(2),
	.tel-line > a:nth-of-type(4) {
		margin-bottom: 10px;
	}

	.app-feature-shape-right::after,
	.app-feature-shape-left::after {
		bottom: 0;
		top: 0;
		left: 0;
		right: 0;
		width: auto;
		height: auto;
		border-radius: 150px;
	}

	.social-feature-left::after,
	.social-feature-right::after {
		bottom: 0;
		top: 0;
		left: 0;
		right: 0;
		width: auto;
		height: auto;
		border-radius: 150px;
	}

	.title-heading .features .title,
	.title-heading .key-feature .title {
		font-size: 13px !important;
	}

	.title-heading .features .icon,
	.title-heading .key-feature .icon {
		height: auto;
		width: auto;
		line-height: 28px;
		font-size: 12px;
		background: transparent;
		margin-right: 10px !important;
	}

	.title-heading .heading {
		font-size: 28px !important;
		letter-spacing: 1px;
	}

	.title-heading .heading span {
		font-weight: 600;
		font-size: 40px;
	}

	.title-heading .key-feature {
		padding-left: 25px !important;
	}

	.section-title .title {
		letter-spacing: 0.5px;
		font-size: 25px !important;
	}

	#navigation .navigation-menu {
		padding-left: 100px;
	}
}

@media screen and (max-width: 1024px) and (min-width: 992px) {
	#topnav .navigation-menu > li .submenu.megamenu {
		width: 936px !important;
	}

	#topnav .navigation-menu > li .submenu.megamenu > li {
		min-width: 180px;
	}
}

@media screen and (max-width: 991px) and (min-width: 768px) {
	#home > .container > div.row {
		/*! gap: 50px; */
	}

	.top_section_wrap {
		justify-content: space-between;
	}

	.title-heading .heading.heading3 {
		font-size: 33px !important;
		line-height: 1.1;
		letter-spacing: 0;
	}
}

@media (max-width: 991px) {
	/*sub-menu*/
	/*.sub-menu
{
   display: none;
}
.main-item:focus ~ .sub-menu,
.main-item:active ~ .sub-menu,
.sub-menu:hover
{
   display: block;
}*/

	.footer .footer_btn {
		margin-inline: auto;
	}
	.agency-wrapper:before {
		right: 0;
	}

	.town:not(.job) .agency-wrapper:before {
		display: none;
	}

	#navigation2 {
		display: none;
	}

	#topnav .navigation-menu {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	#navigation .navigation-menu {
		padding-left: 0;
	}

	#topnav .navigation-menu > li.drop-down {
		display: block;
	}

	.sub-menu li a {
		font-size: 14px;
		color: var(--color-primary, #1d1d1b);
		text-transform: uppercase;

		/*! margin-bottom: 22px; */
	}

	.sub-menu li a:hover {
		color: var(--color-secondary, #029fe2);
	}

	/*скрываем наше меню и checkbox*/
	.sub-menu {
		display: none;
		/*! opacity: 0; */

		/*! transition: .5s; */
		list-style: none;
	}

	.sub-menu > li {
		margin-bottom: 5px;
	}

	/*стилизуем кнопочку*/
	.sp_click {
		position: relative;
		display: inline-block;
	}

	.sp_click:after {
		content: "";
		width: 7px;
		height: 7px;
		border-bottom: 1px solid var(--color-primary, #1d1d1b);
		border-right: 1px solid var(--color-primary, #1d1d1b);
		background-color: #fff;
		right: 5px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%) rotate(45deg);
		background-color: #f4f5fb;
	}

	.sp_click.open:after {
		border-bottom: none;
		border-right: none;

		border-top: 1px solid var(--color-primary, #1d1d1b);
		border-left: 1px solid var(--color-primary, #1d1d1b);
	}

	/*а вот собственно и само действие*/
	#go:checked ~ .sub-menu {
		/*display:block;*/
		opacity: 1;
	}

	#topnav {
		background-color: #ffffff;
		/* -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
    */
		/*! box-shadow: 0 0 3px rgba(60, 72, 88, 0.15); */
		/*
    min-height: 74px;*/
	}

	/*.bg-city .app-block {
  display: none;
}
.andro-line {
  display: block;
}
  #appId .app-feature-shape-left > div {
    position: relative;

  }

  #appId .app-feature-shape-left .andro-line {
   position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .section-title .app-block  {
    display: none;

  }
  .footer .app-block {
  display: none;
}

 .footer .andro-line a {
  margin-left:auto !important;
   margin-right:auto !important;
 }*/

	.img-city {
		border-radius: 5px;
		max-width: calc(100% + 24px);
		width: calc(100% + 24px);
		margin-left: -12px;
		margin-top: 0px;
		/*  display: none; */
	}

	#topnav .logo .l-dark {
		display: inline-block !important;
	}

	#topnav .logo .l-light {
		display: none !important;
	}

	#topnav .container {
		width: auto;
	}

	#topnav #navigation {
		max-height: 400px;
	}

	#topnav .navigation-menu {
		float: none;
	}

	#topnav .navigation-menu > li {
		float: none;
	}

	#topnav .navigation-menu > li .submenu {
		display: none;
		list-style: none;
		padding-left: 20px;
		margin: 0;
	}

	#topnav .navigation-menu > li .submenu li a {
		display: block;
		position: relative;
		padding: 7px 15px;
		text-transform: uppercase;
		font-size: 11px;
		letter-spacing: 0.04em;
		font-weight: 700;
		color: var(--color-primary, #1d1d1b) !important;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

	#topnav .navigation-menu > li .submenu.open {
		display: block;
	}

	#topnav .navigation-menu > li .submenu .submenu {
		display: none;
		list-style: none;
	}

	#topnav .navigation-menu > li .submenu .submenu.open {
		display: block;
	}

	#topnav .navigation-menu > li .submenu.megamenu > li > ul {
		list-style: none;
		padding-left: 0;
	}

	#topnav .navigation-menu > li .submenu.megamenu > li > ul > li > span {
		display: block;
		position: relative;
		padding: 10px 15px;
		text-transform: uppercase;
		font-size: 12px;
		letter-spacing: 2px;
		color: #8492a6;
	}

	#topnav .navigation-menu > li > a,
	.sp_click {
		color: var(--color-primary, #1d1d1b);
		padding: 5px 20px;
		cursor: pointer;
		font-size: 14px;
	}

	#topnav .navigation-menu > li > a:after {
		position: absolute;
		right: 15px;
	}

	#topnav .navigation-menu > li > a:hover,
	#topnav .navigation-menu > li .submenu li a:hover,
	#topnav .navigation-menu > li.has-submenu.open > a {
		color: var(--color-secondary, #029fe2);
	}

	#topnav .menu-extras .menu-item {
		border-color: #8492a6;
	}

	#topnav .navbar-header {
		float: left;
	}

	#topnav .buy-button .login-btn-primary {
		display: inline-block !important;
	}

	#topnav .buy-button .login-btn-light {
		display: none;
	}

	#topnav .has-submenu .submenu .submenu-arrow {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		position: absolute;
		right: 20px;
		top: 12px;
	}

	#topnav .has-submenu.active a {
		color: var(--color-secondary, #029fe2);
	}

	#navigation {
		position: absolute;
		top: 74px;
		left: 0;
		width: 100%;
		display: none;
		height: auto;
		padding-bottom: 0;
		overflow: auto;
		border-top: 1px solid #f1f3f9;
		border-bottom: 1px solid #f1f3f9;
		background-color: #ffffff;
	}

	#navigation.open {
		display: block;
		overflow-y: auto;
	}

	#topnav .navigation-menu > li.town_list {
		display: block;
	}

	header .buy-button {
		position: absolute;
		left: 210px;
	}

	.bg-half-170 {
		padding: 100px 0;
	}

	.img-main.img-city-mob {
		/*! width: 500px; */
		max-width: 100%;
		margin: 40px auto 0;

		/*  display: block; */
	}

	body {
		font-size: 14px;
	}

	.title-heading .key-feature {
		background-color: #fff;
	}
}

@media (max-width: 768px) {
	/*.img-city {

    display: none;
  }

  .img-main.img-city-mob {

    display: block;
  }*/

	/* .bg-city .app-block {
    display: none;
  }

  .andro-line {
    display: block;
  }*/
	.footer .row > div:nth-of-type(2) {
		margin-block: 20px !important;
	}

	.footer .row > div:nth-of-type(2) > p {
		margin-bottom: 0;
	}

	.mob_callback {
		width: clamp(310px, 100%, 330px);
	}

	.town .andro-line {
		margin-top: 10px !important;
		margin-bottom: auto;
	}

	#appId .app-feature-shape-left > div {
		position: relative;
		/*! display: flex; */
		/*! z-index: -9; */
	}

	#appId .app-feature-shape-left .andro-line {
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.section-title .app-block:not(.app-block4) {
		display: none;
	}

	.footer .app-block {
		display: none;
	}

	.footer .andro-line a {
		margin-left: auto !important;
		margin-right: auto !important;
	}

	.footer_btn > a {
		width: 400px;
		max-width: 90vw;
		padding-top: 14px;
		padding-bottom: 14px;
	}

	.footer_btn p {
		margin-bottom: 5px;
		margin-top: 15px;
	}

	.page-next-level .page-next {
		top: 70px;
	}

	.agency-wrapper::before {
		/* display: none;*/
		bottom: 15rem;
	}

	.title-heading .features .title,
	.title-heading .key-feature .title {
		font-size: 15px !important;
	}

	.display-1 {
		font-size: 56px !important;
	}

	.display-2 {
		font-size: 50px !important;
	}

	.display-3 {
		font-size: 42px !important;
	}

	.display-4 {
		font-size: 36px !important;
	}

	.section {
		padding: 60px 0;
	}

	.title-heading .heading {
		font-size: 35px !important;
	}

	.section-title .title {
		font-size: 24px !important;
		/*! margin-bottom: 0!important; */
	}

	.section-title {
		padding-bottom: 0 !important;
	}

	.shape.integration-hero {
		height: 140px;
	}

	.mt-60 {
		margin-top: 60px;
	}

	#topnav .navigation-menu .has-submenu .menu-arrow {
		right: 16px;
		top: 16px;
	}

	#topnav .buy-button {
		padding: 3px 0;
	}

	.classic-saas-image .bg-saas-shape img,
	.freelance-hero .bg-shape img {
		max-width: 550px;
	}

	.freelance-hero .bg-shape:after {
		bottom: -10rem;
	}

	.agency-wrapper:before {
		/*! right: 12rem; */
	}

	.bg-half {
		padding: 169px 0 50px;
	}

	.features-absolute {
		margin: -140px 0 0;
	}

	.features-absolute.blog-search {
		margin: -90px 0 0px;
	}

	.app-feature-shape-right:after {
		left: 0;
	}

	.app-feature-shape-left:after {
		right: 0;
	}

	.social-feature-left:after,
	.social-feature-right:after {
		width: 300px;
		height: 400px;
		bottom: -65px;
	}

	.cover-user .container-fluid .padding-less {
		position: relative !important;
		height: 400px !important;
	}

	.cover-user .cover-user-img {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: start !important;
		height: auto !important;
		padding: 30px;
	}

	.cover-user .cover-user-content {
		text-align: left !important;
	}

	.cover-user .cover-my-30 {
		margin: 30px 0;
	}
}

@media (max-width: 767px) {
	.classic-saas-image .bg-saas-shape:after {
		left: 10rem;
		width: 30rem;
		height: 30rem;
		border-radius: 10rem;
	}

	.img-city {
		display: none;
	}

	.img-main.img-city-mob {
		display: block;
	}

	.bg-city .app-block {
		display: none;
	}

	.andro-line {
		display: block;
	}

	.mob_callback {
		margin-bottom: 10px;
	}

	section.agency-wrapper.bg-city {
		padding-top: 0px;
		border-bottom: none;
	}

	#home > .container > div.row {
		position: relative;
		margin-left: 0;
		margin-right: 0;
		/*! width: 100%; */
	}

	body:not(.front) #home > .container {
		/*! display: contents; */
		width: 100%;
		max-width: 100vw;
		padding: 0;
	}

	body.town #home > .container > div.row > div:last-child {
		/*  display: none; */
		/*! background-color: red; */
		/*! background-color: rgb(0,0,0); */
		/*! background-image: radial-gradient(circle, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.9) 100%); */
		/*! margin-bottom:60px !important; */
		/*! height: calc(80svh - 100px); */
		padding: 0;
		margin-top: 0 !important;
	}

	body:not(.town) #home > .container > div.row > div:last-child {
		margin-top: 0 !important;
		padding-bottom: 10px !important;
	}

	body #home > .container > div.row > div:last-child img {
		height: 100%;
		object-fit: cover;
		/*! margin-top: 30px; */
		/*! aspect-ratio: 3 / 4; */

		min-height: calc(100vh - 60px);
	}

	body:not(.front) #home > .container > div.row > div:first-child {
		/*  margin-top: 60px; */
		position: absolute;
		z-index: 2;
		/*! display: flex; */
		/*! align-items: center; */
		top: 0;
		bottom: 0;
		padding: 0;
		left: 0;
		right: 0;
		/*! max-width: 100vw; */
	}

	#home .tel-line > a {
		font-size: 27px;
		margin-left: 0;
		font-weight: 700;
		letter-spacing: 2px;
		color: #fff;
		margin-right: 0;
	}

	.tel-line a:hover {
		text-decoration: none !important;
	}

	.classic-saas-image .bg-saas-shape img,
	.freelance-hero .bg-shape img {
		max-width: 100%;
		height: auto;
	}

	.classic-saas-image .bg-saas-shape:after,
	.freelance-hero .bg-shape:after {
		bottom: -5rem !important;
		height: 30rem;
	}

	.freelance-hero .bg-shape:after {
		left: 15rem;
		width: 40rem;
		height: 30rem;
	}

	.agency-wrapper:before {
		right: 0;
	}

	.bg-animation-left:after {
		width: 100%;
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	}

	.bg-home,
	.bg-half-170,
	.bg-half-260,
	.bg-marketing,
	.swiper-slider-hero .swiper-container .swiper-slide {
		padding: 150px 0;
		height: auto;
	}

	.work-process.process-arrow:after {
		display: none;
	}

	.app-subscribe {
		position: relative;
		top: 0;
	}

	.saas-feature-shape-left:after,
	.saas-feature-shape-right:after {
		bottom: -1rem;
		width: 25rem;
		height: 25rem;
		border-radius: 10rem;
	}

	.pricing-rates.starter-plan {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	.company-logo {
		float: none !important;
		text-align: left !important;
	}

	.timeline-page {
		margin-left: 18px;
	}

	.timeline-page:after {
		margin: 0;
	}

	.timeline-page .timeline-item .duration {
		float: left !important;
		margin: 0 0 30px 15px !important;
		text-align: left !important;
	}

	.timeline-page .timeline-item .duration:after {
		left: -21px !important;
	}

	.timeline-page .timeline-item .duration .event {
		text-align: left !important;
		margin-left: 15px;
	}

	.timeline-page .timeline-item .event-description-left {
		text-align: left !important;
		margin: 0 0 0 15px;
	}

	.coming-soon,
	.maintenance,
	.error-page {
		font-size: 32px;
	}

	#eventdown .count-down {
		width: 60px;
	}

	#eventdown .count-down .count-number {
		font-size: 30px;
	}

	#eventdown .count-down .count-head {
		font-size: 10px;
	}

	#submitFF {
		font-size: 15px;
	}

	.submit-rights {
		display: none;
	}

	.info-modal p.modal-tit {
		font-size: 20px;
		color: #ffe03b;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 1px;
		margin-bottom: 10px;
	}

	.remodalNew .info-modal {
		padding: 50px 20px 50px;
	}

	#topnav {
		min-height: 60px;
	}

	#topnav .navbar-toggle .lines {
		margin: 23px 20px;
	}

	.logo {
		line-height: 60px;
	}

	#topnav .logo .l-light,
	#topnav .logo .logo-light-mode {
		height: 40px;
	}

	#navigation {
		top: 64px;
		transition: all 0.6s;
		background-color: #f4f5fb;
	}

	#topnav .buy-button {
		float: right;
		line-height: 60px;
	}

	header .buy-button {
		position: absolute;
		left: 170px;
	}

	.buy-button a {
		padding: 5px 7px;
		font-size: 13px;
		font-weight: 400;
		margin-bottom: 0;
	}

	#topnav > .container-fluid {
		padding-left: 0;
		padding-right: 0;
	}

	#topnav .navbar-toggle.open span {
		user-select: none;
		background-color: var(--color-primary, #1d1d1b) !important;
	}

	.town .title-heading {
		/*! margin-top: 0 !important; */
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		height: 100%;
		/*! margin-top:60px !important; */
		padding: 45px 15px 20px;
		width: 100%;
	}

	.town.job .title-heading {
		height: 100%;

		padding: 50px 15px;
		width: 100%;
	}

	.front .title-heading {
		margin-bottom: 30px;
	}

	.title-heading .heading {
		font-size: 20px !important;
		letter-spacing: 1px;
		/*! text-align: left; */
	}

	.title-heading .heading span {
		font-weight: 600;
		font-size: 36px;
	}

	body .title-heading .para-desc {
		margin-bottom: 0;
		/* color: #fff !important;*/
		/*! font-weight: 600; */
		font-size: calc(15px + 4 * (100vw - 360px) / (768 - 360));
		line-height: 1.3;

		/* text-align: center;*/
	}

	.town .title-heading .para-desc {
		color: #fff !important;

		text-align: center;
		margin-top: auto;
	}
	.town.job .title-heading .para-desc {
		margin-top: 0;
	}

	.img-main {
		width: 500px;
		/*! max-width: 100%; */
		margin: 0px auto 0;
		/*! display: block; */
	}

	.bg-half-170 {
		padding: 100px 0 0;
	}

	.features h5 {
		font-size: 17px !important;
	}

	.section-car {
	}

	.section-car img {
		/*! display: none; */
	}

	.app-feature-shape-left:after,
	.app-feature-shape-right:after,
	.social-feature-right:after {
		display: none;
	}

	#appId {
		background-color: #ededed;
	}

	#appId .text-muted {
		color: #161c2d !important;
	}

	#appId .text-md-start > img {
		width: 240px !important;
		margin-top: 20px;
		margin-bottom: -300px;
	}

	.sectionwork .key-feature .title {
		font-size: 17px !important;
	}

	.social-feature-right {
		padding-top: 30px;
	}

	.select2-container .select2-selection--single {
		height: 40px;
	}

	.select2-container--default
		.select2-selection--single
		.select2-selection__arrow {
		height: 40px;
	}

	.select2-container--default
		.select2-selection--single
		.select2-selection__rendered {
		color: #444;
		line-height: 40px;
		font-size: 14px;
		padding-left: 10px;
	}

	.MultiFile-applied::before {
		margin-right: 3px;
		line-height: 20px;
	}

	.MultiFile-applied::after {
		font-size: 14px;
		line-height: 20px;
	}

	.putName,
	.putPhone {
		padding: 10px 10px;
	}

	.remodalBorder {
		padding: 40px 10px;
	}

	.remodal#modal2 .remodalBorder {
		/*! padding: 30px 20px; */
	}

	.modal-tit {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.info-modal p {
		font-size: 14px;
		letter-spacing: 0px;
		margin-bottom: 10px;
	}

	.info-modal li {
		font-size: 14px;
		margin-bottom: 5px;
	}

	.info-modal .app-btn {
		text-align: left !important;
	}

	.info-modal span {
		font-size: 12px;
	}

	.putName,
	.putPhone {
		font-size: 14px;
		height: 40px;
	}

	.file-upload {
		font-size: 14px;
		line-height: 40px;
		margin-bottom: 8px;
	}

	.file-upload span {
		font-size: 14px;
		text-align: left;
		font-family: "Montserrat", sans-serif;
		font-weight: normal;
	}

	option {
		padding: 0px;
	}

	select {
		padding-left: 12px !important;
	}

	.modal-andro img {
		width: 140px;
	}

	.submit-bl-mob {
		display: block;
	}

	.title-heading .heading.heading3 {
		/* font-size: 25px !important; */
		font-size: calc(29px + 4 * (100vw - 360px) / (767 - 360)) !important;
		line-height: 1.1;
		text-align: center;
		order: -2;
		/*! margin-top: auto; */
		font-weight: 700;
		/*! color: #fff; */
	}

	body:not(.job) .title-heading .heading.heading3 {
		margin-top: auto;
		margin-bottom: auto !important;
	}

	.title-heading .heading.heading3 > span.text-primary {
		color: #fff !important;
	}

	.para-desc2 {
		margin-bottom: 35px;
	}

	.tel-line {
		/*! order: -1; */
		display: grid;
		/*! justify-content: center; */
		margin: 0 auto 40px;
		justify-items: center;
	}

	.job .tel-line {
		/*! margin: auto auto !important; */
		margin-block: 7vh !important;
	}

	.img-city-mob {
		display: block;
		border: none;
		border-radius: 0;
		margin: 60px auto 0;
	}

	.agency-wrapper.bg-city {
		padding-top: 110px;
	}

	.bg-city .app-block {
		/*! display: none; */
	}

	.telegram-line a {
		/*     width: 100%; */
		/*! padding: 14px 12px; */
		/*     font-size: 14px;
    margin-bottom: 0; */
	}

	/* .andro-line a {
    display: block;
    background-color: var( --color-primary, #1d1d1b) !important;
    box-shadow: 0 3px 5px 0 rgb(0 0 0 / 30%) !important;
    border-color: var( --color-primary, #1d1d1b) !important;
  }
 */
	.andro-line a {
		display: block !important;
		width: 400px;
		max-width: 90vw;
		font-size: 14px;
		font-weight: 600;
		margin-left: 0 !important;
		margin-right: 0 !important;
		/*! padding: 0; */
		border-radius: 6px;
		box-shadow: 1px 1px 4px 1px #606060;
		color: #222 !important;
		background-color: #fff !important;
		border: none;
		transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
			border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	}

	.mobpnone a {
		display: block;
		background-color: var(--color-secondary) !important;
		/*! box-shadow: 0 3px 5px 0 rgb(255 205 1 / 30%) !important; */
		border-color: var(--color-secondary) !important;
		/*! color: var( --color-primary, #1d1d1b) !important; */
	}

	.telegram-line a:hover {
		/*     width: 100%;
     padding: 14px 12px;
    font-size: 14px;
    margin-bottom: 0; */
	}

	.andro-line a:hover {
		/*     display: block;
    background-color: var( --color-primary, #1d1d1b) !important;
    box-shadow: 0 3px 5px 0 rgb(0 0 0 / 30%) !important;
    border-color: var( --color-primary, #1d1d1b) !important; */
		background-color: #222 !important;
		color: #f9df32;
		box-shadow: 1px 1px 4px 1px #222;
	}

	.mobpnone a:hover {
		/*! display: block; */
		/*! background-color: #ffcd01 !important; */
		/*! box-shadow: 0 3px 5px 0 rgb(255 205 1 / 30%) !important; */
		/*! border-color: #ffcd01 !important; */
		/*! color: var( --color-primary, #1d1d1b) !important; */
	}

	.andro-line {
		/*! display: block; */
	}

	.mobpnone {
		/*     display: block; */
	}

	.andro-line img {
		border: 0;
		width: 19px;
		display: inline-block;
		height: auto;
		margin-bottom: 3px;
	}

	.andro-line img:last-child {
		mix-blend-mode: difference;
	}

	.modal2 p {
		color: #fff;
		font-weight: 600;
		text-transform: uppercase;
		font-size: 15px;
	}

	.phone-inner {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		justify-content: center;
		height: 100vh;
	}

	.remodal-wrapper {
		padding: 0px;
	}

	.remodal-wrapper .remodal {
		/*! margin-bottom: 0; */
	}

	.remodal-wrapper .remodal {
		/*! border-radius: 0px; */
		/*! box-shadow: none; */
	}

	.modal2 {
		margin: 0;
		height: 100vh;
		top: 0;
	}

	.remodal {
		/*min-height: 100vh;*/
	}

	.remodal-close {
		z-index: 99;
	}

	.app-block3 {
	}

	.app-block3 .telegram-line a {
		min-width: 170px;
		padding: 11px 9px;
		font-size: 13px;
		width: max-content;
	}

	.button_wrap > a {
		font-size: 13px;
		min-width: 170px;
		padding: 11px 9px;
		width: max-content;
	}

	.section-teleg img {
		width: 250px !important;
		margin: 0 auto;
	}

	.section-teleg + section {
		background-color: #f8f9fa;
	}

	.app-block4 {
		display: block;
		line-height: 5px;
	}
}

@media (max-width: 600px) {
	.remodal-wrapper #modal2.remodal {
		/*! max-width: calc(100% - 20px); */
	}
}

@media (max-width: 579px) {
	#submitFF {
		padding: 10px 30px;
		font-size: 14px;
		width: auto;
	}

	.agency-wrapper::before {
		/* display: none;*/

		/*! right: -15vw; */
	}

	.MultiFile-applied {
		padding-right: 0;
	}

	.app-btn {
		width: 140px;
		display: block;
		margin-right: 5px;
	}

	.remodal:not(#modal2) .remodal-close {
		/*! color: #fff !important; */
	}
}

@media screen and (max-width: 575px) {
	.tagline {
		display: none;
	}

	.tagline-height {
		top: 0px !important;
	}

	.social-feature-left:after,
	.social-feature-right:after {
		bottom: -35px;
	}

	.social-feature-left:after {
		right: 60px;
	}

	.social-feature-right:after {
		left: 60px;
	}
	.town .mob_callback {
		margin-top: 0;
	}

	.town .title-heading {
		padding: 65px 15px 50px;
	}
}

@media screen and (max-width: 480px) {
	.job .title-heading .heading.heading3 {
		margin-top: clamp(
			var(--header-mob-height) + 30px,
			10vh,
			var(--header-mob-height) + 50px
		);
	}
}

@media (max-width: 425px) {
	.shape.integration-hero {
		height: 60px;
	}

	.shape {
		bottom: -4px;
	}

	.feature-posts-placeholder {
		height: 80%;
	}

	.home-wrapper:before {
		right: -25rem;
	}

	.job #home .tel-line > a {
		font-size: 25px;
	}

	.title-heading .heading.heading3 {
		margin-top: 40px;
	}

	.telegram-line:not(.andro-line) a {
		padding: 8px 20px;
		font-size: 13px;
	}

	.job .tel-line {
		/*! margin: 0 auto 20px; */
	}
}

@media (max-width: 375px) {
	#topnav .buy-menu-btn {
		display: block !important;
		margin: 0 10px;
		padding: 10px 20px;
	}

	#topnav .buy-menu-btn .dropdown .dropdown-menu.show {
		-webkit-transform: translate3d(0px, -54px, 0px) !important;
		transform: translate3d(0px, -54px, 0px) !important;
	}

	#topnav .navbar-toggle .lines {
		margin-right: 0 !important;
	}
}

@media (max-width: 359px) {
	.MultiFile-applied::after {
		font-size: 12px;
		line-height: 20px;
	}

	.putName,
	.putPhone {
		font-size: 12px;
	}

	.select2-container--default
		.select2-selection--single
		.select2-selection__rendered {
		font-size: 12px;
	}
}

@media (min-width: 426px) and (max-width: 768px) {
	.home-wrapper:before {
		right: -15rem;
		width: 70rem;
		height: 25rem;
	}
}

@media (min-width: 576px) {
	.tagline-height {
		top: 47px !important;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.job-profile {
		top: -338px;
	}
}

@media (min-width: 768px) {
	.margin-top-100 {
		margin-top: 100px;
	}

	.title-heading .para-desc {
		margin-top: 10px;
	}

	#topnav .navigation-menu > li.has-submenu:hover > .submenu {
		visibility: visible;
		opacity: 1;
		margin-top: 0;
	}

	#topnav
		.navigation-menu
		> li.has-submenu:hover
		> .submenu
		> li.has-submenu:hover
		> .submenu {
		visibility: visible;
		opacity: 1;
		margin-left: 0;
		margin-right: 0;
	}

	/* .navbar-toggle {
    display: block;
  } */

	.home-dashboard.onepage-hero {
		overflow: hidden;
	}

	.main-icon {
		margin: 0 auto;
	}

	.map.map-height-two iframe {
		height: 551px;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.home-wrapper:before {
		right: -20rem;
	}
}

@media (min-width: 769px) {
	.bg-studio:after {
		content: "";
		position: absolute;
		right: 0px;
		top: 0px;
		width: 50%;
		height: 100%;
		background: #ffffff none repeat scroll 0 0;
		z-index: 2;
	}

	section.section.border-bottom {
		border-bottom: none !important;
	}
}

@media (min-width: 992px) {
	.top_section_wrap > div:first-of-type {
		/*     justify-content: space-around; */
		padding-left: clamp(15px, 6vw, 100px);
	}

	#topnav .navigation-menu {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	#topnav .navigation-menu > .has-submenu:hover .menu-arrow {
		top: 33px !important;
	}

	#topnav .navigation-menu > .has-submenu.active .menu-arrow {
		top: 30px;
	}

	#topnav .navigation-menu > li .submenu {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 1000;
		padding: 15px 0;
		list-style: none;
		min-width: 180px;
		visibility: hidden;
		opacity: 0;
		margin-top: 10px;
		-webkit-transition: all 0.2s ease;
		transition: all 0.2s ease;
		border-radius: 6px;
		background-color: #ffffff;
		-webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
		box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
	}

	#topnav .navigation-menu > li .submenu li {
		position: relative;
	}

	#topnav .navigation-menu > li .submenu li a {
		display: block;
		padding: 10px 20px;
		clear: both;
		white-space: nowrap;
		font-size: 11px;
		text-transform: uppercase;
		letter-spacing: 0.04em;
		font-weight: 700;
		color: var(--color-primary, #1d1d1b) !important;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

	#topnav .navigation-menu > li .submenu li a:hover {
		color: var(--color-secondary, #029fe2) !important;
	}

	#topnav .navigation-menu > li .submenu li ul {
		list-style: none;
		padding-left: 0;
		margin: 0;
	}

	#topnav .navigation-menu > li .submenu.megamenu {
		white-space: nowrap;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		position: fixed;
		top: 74px;
	}

	#topnav .navigation-menu > li .submenu.megamenu > li {
		overflow: hidden;
		display: inline-block;
		vertical-align: top;
	}

	#topnav .navigation-menu > li .submenu.megamenu > li .submenu {
		left: 100%;
		top: 0;
		margin-left: 10px;
		margin-top: -1px;
	}

	#topnav .navigation-menu > li .submenu > li .submenu {
		left: 101%;
		top: 0;
		margin-left: 10px;
		margin-top: -1px;
	}

	#topnav .navigation-menu > li > a {
		padding-top: 25px;
		padding-bottom: 25px;
		min-height: 62px;
	}

	#topnav .navigation-menu > li:hover > .menu-arrow {
		border-color: var(--color-secondary, #029fe2);
	}

	#topnav .navigation-menu > li:hover > a,
	#topnav .navigation-menu > li.active > a {
		color: var(--color-secondary, #029fe2) !important;
	}

	#topnav .navigation-menu > li.last-elements .submenu {
		left: auto;
		right: 0;
	}

	#topnav .navigation-menu > li.last-elements .submenu:before {
		left: auto;
		right: 10px;
	}

	#topnav
		.navigation-menu
		> li.last-elements
		.submenu
		> li.has-submenu
		.submenu {
		left: auto;
		right: 100%;
		margin-left: 0;
		margin-right: 10px;
	}

	#topnav .navigation-menu.nav-light > li > a {
		color: rgba(255, 255, 255, 0.5);
	}

	#topnav .navigation-menu.nav-light > li.active > a {
		color: #ffffff !important;
	}

	#topnav .navigation-menu.nav-light > li:hover > .menu-arrow {
		border-color: #ffffff !important;
	}

	#topnav .navigation-menu.nav-light > li:hover > a {
		color: #ffffff !important;
	}

	#topnav .navigation-menu.nav-light .has-submenu .menu-arrow {
		border-color: rgba(255, 255, 255, 0.5);
	}

	#topnav .navigation-menu.nav-light .has-submenu.active .menu-arrow {
		border-color: #ffffff !important;
	}

	#topnav .navigation-menu.nav-right {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}

	#topnav .navigation-menu.nav-left {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
	}

	#topnav .navigation-menu.nav-left > li.last-elements .submenu {
		left: 0 !important;
		right: auto !important;
	}

	#topnav .navigation-menu.nav-left > li.last-elements .submenu:before {
		left: 45px !important;
		right: auto !important;
	}

	#topnav .buy-button {
		padding-left: 15px;
		margin-left: 15px;
	}

	#topnav .navbar-toggle {
		display: none;
	}

	#topnav #navigation {
		display: block !important;
	}

	#topnav.scroll {
		top: 0;
	}

	#topnav.scroll .navigation-menu > li > a {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	#topnav.scroll-active .navigation-menu > li > a {
		padding-top: 25px;
		padding-bottom: 25px;
	}

	.navbar-toggle {
		display: block;
	}
}

@media (min-width: 1024px) {
	.job-profile {
		top: -378px;
	}
}

@media (min-width: 1025px) {
	#topnav .navigation-menu > li .submenu.megamenu {
		width: 1116px !important;
	}

	#topnav .navigation-menu > li .submenu.megamenu > li {
		min-width: 223px !important;
	}

	.cover-user .cover-user-img {
		padding: 0px 20%;
	}
}

@media (min-width: 1400px) {
	.container {
		max-width: 1200px !important;
	}
}

/* =============================================
   CUSTOM STYLES FOR MODAL WINDOW AND ALIGNMENT
   ============================================= */

/* 1. Make the modal window more spacious */
.modal_big .modal-phone .tel-line-mod {
	margin-top: 20px; /* Adds space above the numbers list */
}

/* 2. Align phone numbers and icons perfectly to fix the "staircase" */
.modal_big .tel-item.mod {
	display: flex; /* Enable Flexbox layout */
	align-items: center; /* Vertically align icon and text */
}

.modal_big .tel-item.mod img {
	width: 24px; /* Увеличиваем ширину иконки */
	height: 24px; /* Увеличиваем высоту иконки */
	margin-right: 8px; /* Уменьшаем отступ справа от иконки */
}

/* 3. Increase spacing between rows and font size */
.modal_big .tel-item.mod:not(:last-child) {
	margin-bottom: 15px; /* Creates vertical space between numbers */
}

.modal_big .tel-item.mod a {
	font-size: 24px; /* Makes numbers bigger and more readable */
}

/* ==========================================================
   CUSTOM STYLES FOR RESPONSIVE PHONE NUMBER ALIGNMENT (FIX)
   ========================================================== */

/* This rule applies to all screen sizes below 1200px */
@media (max-width: 1199.98px) {
	.tel-line {
		justify-items: start;
		max-width: 280px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	/* 3. Reset unwanted margins from the original template */
	.tel-line > a:nth-of-type(2),
	.tel-line > a:nth-of-type(4) {
		margin-bottom: 5px !important; /* Resetting to the default gap */
	}

	/* 4. Add a larger visual gap after every 3rd phone number for grouping */
	.tel-line a:nth-child(3n) {
		margin-bottom: 10px !important; /* Use a slightly larger margin to stand out */
	}
}

/* This rule ensures the operator icon and phone number are always vertically aligned */
.tel-line a {
	display: inline-flex;
	align-items: center;
}

/* ==========================================================
   GLOBAL PHONE NUMBERS ALIGNMENT (TABULAR NUMS FIX)
   ========================================================== */

/* This rule applies tabular-nums to all phone numbers on the site
   (main block, footer, and modal window) for perfect alignment. */
.tel-line a,
.tel-line-footer .tel-item.mod a,
.modal_big .tel-item.mod a {
	font-variant-numeric: tabular-nums;
}

/* ==========================================================
   MOBILE PHONE NUMBER WRAPPING FIX
   ========================================================== */

/* Prevents the main page phone numbers from breaking onto a
   new line on small mobile screens. */
@media (max-width: 767px) {
	#home .tel-line a {
		white-space: nowrap;
	}
}

/* ==========================================================
   COMPREHENSIVE FOOTER APP BUTTONS FIX (FINAL v3)
   ========================================================== */

/* 1. On desktop/tablet, align the buttons using Flexbox */
@media (min-width: 768px) {
	.footer .app-block {
		display: flex;
		justify-content: center;
		gap: 10px;
	}
}

/* 2. Style the button links themselves (applies to all sizes) */
.footer .app-block .app-btn {
	width: 178px !important;
	height: auto !important;
	margin: 0;
}

/* 3. THE KEY FIX: Override the image width limitation (applies to all sizes) */
.footer .app-block .app-btn img {
	max-width: 100% !important; /* Allow image to fill the 178px container */
}

/* ==========================================================
   GLOBAL YELLOW BUTTON (.btn-primary) UNIFICATION
   ========================================================== */
.btn.btn-primary:not(.buy-button .btn) {
	padding-top: 14px !important;
	padding-bottom: 14px !important;
	height: auto !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	line-height: 1 !important;
}

/* ==========================================================
   JOB PAGE PHONE NUMBER ALIGNMENT FIX
   ========================================================== */

/* This rule specifically targets the phone number link on the /job/ page
   and uses Flexbox to perfectly align the operator icon and the text. */
.job #home .tel-line a {
	display: inline-flex;
	align-items: center;
}

/* ==========================================================
   GLOBAL OPERATOR ICON MARGIN FIX
   ========================================================== */

/* Resets the negative top margin from the original stylesheet
   to allow for perfect vertical alignment via Flexbox. */
.operator {
	margin-top: 0 !important;
}

/* ==========================================================
   MOBILE PAGE-TITLE COLOR FIX
   ========================================================== */

/* This rule makes all main page titles white on small screens
   for better readability against dark background images. */
@media (max-width: 767px) {
	.title-heading .heading {
		color: #ffffff !important;
	}
}

/* ==========================================================
   LOGO & MOBILE HEADER RESIZE
   ========================================================== */

/* 1. Increase logo size on all devices.
      This overrides the height="48" attribute in the HTML. */
#topnav .logo img {
	height: 56px !important;
}

/* 2. Increase mobile header height and vertically center its content.
      This rule applies only to mobile screens. */
@media (max-width: 767px) {
	#topnav {
		min-height: 70px;
	}

	#topnav .logo {
		line-height: 70px;
	}

	#topnav .buy-button {
		line-height: 70px;
	}

	#topnav .navbar-toggle .lines {
		margin-top: 27px; /* Recalculated margin to center the burger icon */
	}

	/* THE FIX: Adjust the dropdown menu's top position to match the new header height */
	#navigation {
		top: 70px !important;
	}
}

/* ==========================================================
   SERVICES PAGE H2 TITLE MARGINS
   ========================================================== */

/* This rule increases the vertical space around the main H2 title
   on the /service/ page for better layout breathing room. */
.service .heading-block h2 {
	margin-top: 40px !important;
	margin-bottom: 40px !important;
}

/* ==========================================================
   FOOTER PHONE NUMBERS VISUAL GROUPING (v2)
   ========================================================== */

/* 1. Ensure the footer phone list is always a single column. */
.tel-line-footer {
	grid-template-columns: 1fr !important;
	justify-items: center;
}

/* 2. Override unwanted margins from the original template stylesheet. */
.tel-line-footer .tel-item.mod:nth-of-type(2),
.tel-line-footer .tel-item.mod:nth-of-type(4) {
	margin-bottom: 0;
}

/* 3. Add a smaller bottom margin to every 3rd phone number for visual grouping. */
.tel-line-footer .tel-item.mod:nth-child(3n) {
	margin-bottom: 5px; /* Reduced from 10px to 5px */
}

/* ==========================================================
   JOB PAGE CONTACT NAME STYLING (v3 - FINAL)
   ========================================================== */

/* 1. Main link container: aligns the two main blocks (phone and name) */
.job #home .tel-line a {
	display: inline-flex;
	align-items: center; /* Vertical alignment */
	gap: 8px; /* Horizontal space between number and name */
	white-space: nowrap; /* Prevents the number from wrapping on desktop */
}

/* 2. Inner wrapper for the icon and number, also for alignment */
.job-phone-number-wrapper {
	display: inline-flex;
	align-items: center;
}

/* 3. The contact name style for desktop */
.job-contact-name {
	/* font-weight: 600; */
}

/* 4. Mobile-specific layout */
@media (max-width: 767px) {
	/* Stack the phone block and name block vertically */
	.job #home .tel-line a {
		flex-direction: column;
		gap: 5px; /* Vertical space */
	}

	/* Make the name non-bold on mobile */
	.job-contact-name {
		font-weight: normal;
		font-size: 18px; /* Reduced font size for better hierarchy */
	}
}

/* ==========================================================
   JOB PROMO LINK ALIGNMENT (THE FINAL, SIMPLE FIX)
   ========================================================== */

.job-promo-link {
	display: inline-flex;
	align-items: center;
	vertical-align: -3px; /* A small manual adjustment to perfectly align with the text baseline */
	color: #f5c600 !important;
	font-weight: inherit !important;
}

.job-promo-link:hover {
	text-decoration: underline !important;
	color: #f5c600 !important;
}

/* ==========================================================
   BORDER ARTIFACT FIX ON SERVICE/CONTACT PAGES
   ========================================================== */

/* This rule removes the unnecessary bottom border from the hero section
   on the Service and Contact pages to prevent a thin line from
   appearing between sections. */
.service #home.border-bottom,
.contact #home.border-bottom {
	border-bottom: none !important;
}

/* ==========================================================
   TELEGRAM ICON FIX USING CSS FILTERS (FINAL)
   ========================================================== */
.icon-telegram {
	filter: brightness(0) invert(1); /* This turns the black SVG into white */
	width: 20px; /* Adjust size to match others */
	height: 20px;
}

.footer .social-icon a:hover .icon-telegram {
	filter: none; /* On hover, remove the filter to show the original black color */
}

/* ==========================================================
   FOOTER SOCIAL ICON BLOCK CENTERING FIX
   ========================================================== */

/* This rule removes the default left padding from the social icon
   list to allow for perfect centering. */
.footer .social-icon {
	padding-left: 0 !important;
}

/* ==========================================================
   FOOTER COLUMN VERTICAL ALIGNMENT
   ========================================================== */

/* This rule uses Flexbox alignment to vertically center the content
   of all columns in the main footer row. */
.footer > .container > .row {
	align-items: center !important;
}

/* ==========================================================
   HEADER BACKGROUND FIX (FORCE SOLID)
   ========================================================== */

/* This rule makes the main navigation header (#topnav) have a solid
   white background from the start, preventing any pseudo-elements
   from showing through it when the page is scrolled to the top. */
#topnav {
	background-color: #ffffff !important;
}
