/* ==================== 
1. resets & defaults
2. base styles
3. layout
4. components
5. content by pages
==================== */


/* ==================== 1. resets & defaults ==================== */
html,body,
h1,h2,h3,h4,h5,h6,
ul,ol,p,figure,
form,fieldset,input,textarea{
	margin: 0;
	padding: 0;
}

header,nav,main,article,section,aside,footer,figure{
	display: block;
}

*{box-sizing: border-box; -webkit-tap-highlight-color: transparent;}

.cl:before,
.cl:after {
  display: table;
  content: " ";
}
.cl:after{
	clear:both;
}

/* ----- */

html,body{
	width: 100%;
	height: 100%;
}

nav ul,.nav ul{list-style: none;}
a img,fieldset{border:0;}

.logo img{display: block;}
.img-container img,
.thumb img,
figure img{
	display: block;
	max-width: 100%;
}

button,
input[type=button],
input[type=submit]{
	cursor: pointer;
	outline: none !important;
}

a,a:hover,a:focus{text-decoration: none;}
a.is-active{cursor: default;}

.disabled{opacity: 0.5; pointer-events: none;}
.disabled-click{pointer-events: none;}

/* ----- */

.no-scroll,
.no-scroll body{
	height: 100% !important;
	overflow: hidden;
}

.hidden{display: none !important;}
.item-fade{opacity: 0; visibility: hidden; -webkit-transition: opacity 0.3s linear; transition: opacity 0.3s linear; z-index: -1;}
.item-fade.fade-in{opacity: 1; visibility: visible; z-index: 1;}

.no-padding{padding: 0 !important;}
.no-margin{margin: 0 !important;}

/* ----- */

.float-left{float: left !important;}
.float-right{float: right !important;}

.block-center{margin-left: auto !important; margin-right: auto !important;}

.text-l{text-align: left !important;}
.text-r{text-align: right !important;}
.text-c{text-align: center !important;}

.lowercase{text-transform: lowercase !important;}
.uppercase{text-transform: uppercase !important;}
.nocase{text-transform: none !important;}

.italic{font-style: italic;}

.underline{text-decoration: underline;}
.line-through{text-decoration: line-through;}

.highlight {background-color: #ffff00;}

b{font-weight: 500}
strong{font-weight: 700}

/* ----- */

body{
	background: #fff;
	text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
	
	color: #0d0c24;
	font-size: 14px;
}

.flatpickr-day.prevMonthDay:not(.flatpickr-disabled),
.flatpickr-day.nextMonthDay:not(.flatpickr-disabled) {
  color: rgb(57, 57, 57);
}

.flatpickr-day:not(.flatpickr-disabled):not(.nextMonthDay):not(.prevMonthDay),
.flatpickr-day.today:not(.flatpickr-disabled){
	font-weight: bold;
}

.flatpickr-day.today:not(.flatpickr-disabled){
	border: 1px solid gray;
}

/* ==================== 2. base styles ==================== */


/* ----------- fonts ----------- */
body,input,textarea,button{
	font-family: 'Roboto', sans-serif;
}
/* ----------- /fonts ----------- */

html {
	scroll-behavior: smooth;
}


/* ----------- container ----------- */
.container{
	width: 100%;
	max-width: 1246px;
    margin: 0 auto;
}
/* ----------- /container ----------- */


/* ----------- row ----------- */
.row-px-xs{
	margin-left: -5px;
	margin-right: -5px;
}
.row-px-xs > div{
	padding-left: 5px;
	padding-right: 5px;
}

.row-px-sm{
	margin-left: -10px;
	margin-right: -10px;
}
.row-px-sm > div{
	padding-left: 10px;
	padding-right: 10px;
}

@media (min-width: 1200px) {
	.row-px-lg{
		margin-left: -20px;
		margin-right: -20px;
	}
	.row-px-lg > div{
		padding-left: 20px;
		padding-right: 20px;
	}
}
/* ----------- /row ----------- */


/* ----------- colors ----------- */
.text-white{
	color: #fff !important;
}
.text-success{
	color: #26c367 !important;
}
/* ----------- /colors ----------- */



/* ==================== 3. layout ==================== */


.app{
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100%;
	padding-top: 60px;
}

@media (min-width: 768px) {
	.app{
		padding-top: 109px;
	}
}


/* ---------- header ---------- */
.app-header{
	width: 100%;
	background-color: #fff;
	padding: 10px 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 300;

	color: #707183;
	font-size: 18px;
}

.app-header a:not(.btn){
	color: inherit;
}

.app-header .logo{
	margin-right: auto;
}
.app-header .logo img{
	height: 40px;
}

.app-header nav ul{
	list-style: none;
}

@media (min-width: 768px) {
	.app-header{
		padding: 20px 0;
		position: absolute;
	}
	.app-header .btn{
		min-width: 118px;
	}

	.app-header .app-nav-container{
		display: block !important;
		width: 100%;
		overflow: hidden;
	}

	.app-header nav{
		margin-top: 20px;
	}
	.app-header nav ul{
		display: flex;
		margin-left: -27px;
		margin-right: -27px;
	}
	.app-header nav li{
		padding: 0 27px;
	}
}

@media (max-width: 767px) {
	.app-header{
		border-bottom: 1px solid #f5f6fa;
	}
	.app-header .app-nav-container{
		display: none;
		width: 100%;
		background-color: rgba(255,255,255,0.75);
		padding: 0 4px;
		position: fixed;
		top: 59px;
		bottom: 0;
		left: 0;
	}
	.app-header nav{
		display: none;
		background-color: #868696;
		border-radius: 16px;
		padding: 20px 15px;
	}
	.app-header nav li{
		margin-bottom: 12px;
	}
	.app-header nav li:last-child{
		margin-bottom: 0;
	}
	.app-header nav a{
		color: #fff !important;
	}
	.app-header .row{
		margin-left: -8px;
		margin-right: -8px;
	}
	.app-header .row > div{
		padding-left: 8px;
		padding-right: 8px;
	}
	.app-header .btn{
		padding: 3px 20px;
		font-size: 18px;
	}
}
/* ---------- /header ---------- */


/* ---------- page ---------- */
.app-page{
	flex-grow: 1;
    width: 100%;
	position: relative;
	padding-top: 20px;
}
/* ---------- /page ---------- */


/* ---------- footer ---------- */
.app-footer{
	flex-shrink: 0;
	border-top: 1px solid #e9eaee;
	padding: 25px 0;
	position: relative;
	z-index: 250;

	color: #717184;
	font-size: 12px;
}
.app-footer a{
	color: inherit;
}
.app-footer a:hover{
	color: #00aa60;
}

.app-footer .logo img {
	height: 40px;
}

.app-footer .social-media-row img{
	flex-shrink: 0;
	display: block;
	width: 24px;
}
/* ---------- /footer ---------- */



/* ==================== 4. components ==================== */


/* ----------- hamburger ----------- */
.hamburger,
.hamburger span,
.hamburger span::before,
.hamburger span::after{
	width: 18px;
}

.hamburger{
	flex-shrink: 0;
	display: block;
	height: 14px;
	background-color: transparent;
	border: 0;
	padding: 0;
	overflow: visible;
	position: relative;
	z-index: 50;
}
.hamburger:before{
	content: "";
	position: absolute;
	top: -12px;
	bottom: -12px;
	left: -12px;
	right: -12px;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
	display: block;
	height: 1px;
	background-color: #000;
	position: absolute;
	transition: transform 0.15s ease;
}
.hamburger span{
	top: 0;
}
.hamburger span::before,
.hamburger span::after {
	content: "";
	display: block;
}
.hamburger span::before {
	width: 100%;
	top: 6px;
	transition-property: transform, opacity;
}
.hamburger span::after {
	top: 12px;
}

.hamburger.is-active span,
.nav-is-open .hamburger span{
	transform: translate3d(-1px, 7px, 0) rotate(45deg);
}
.hamburger.is-active span::before,
.nav-is-open .hamburger span::before {
	transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
	opacity: 0;
}
.hamburger.is-active span::after,
.nav-is-open .hamburger span::after {
	transform: translate3d(0, -12px, 0) rotate(-90deg);
}
.hamburger.is-active span,
.hamburger.is-active span::before,
.hamburger.is-active span::after,
.nav-is-open .hamburger span,
.nav-is-open .hamburger span::before,
.nav-is-open .hamburger span::after{
	width: 21px;
}
/* ----------- /hamburger ----------- */


/* ---------- title,text ---------- */
h1,h2,h3,h4,h5,h6,
.title {
	display: block;
	color: #000;
	font-weight: bold;
	line-height: 1.25;
}
h2,h3,h4,h5,h6,
.title:not(h1){
	font-family: 'Roboto', sans-serif;
}

.title *{
	font-weight: inherit;
	line-height: inherit;
}

.title:not(.slide-title):not(.full-featured) * {
    font-size: inherit;
}

.title a{
	color: inherit;
}

.t63-section .title{
	font-size: 28px;
}

h1,
.title-xl{
	font-family: 'HK Grotesk Wide', sans-serif;
	font-size: 34px;
}
h2,
.title-lg{
	font-size: 30px;
}
h3,
.title-md{
	font-size: 26px;
}
h4,
.title-sm{
	font-size: 22px;
}
h5,
.title-xs{
	font-size: 18px;
}
h6,
.title-xxs{
	font-size: 14px;
}

.text,
.text-wrap{
	color: #0d0c24;
	font-size: 16px;
}
.text-lg{
	font-size: 18px;
}
.text-xl{
	font-size: 20px;
}

.text-wrap:before,
.text-wrap:after {
  display: table;
  content: " ";
}
.text-wrap:after{
	clear:both;
}

.text-wrap > *{margin-bottom:20px;}
.text-wrap > *:last-child{margin-bottom:0;}
.text-wrap ul,.text-wrap ol{padding-left:40px;}
.text-wrap li + li,.text-wrap li ul,.text-wrap li ol{margin-top:10px;}

.text-wrap img{
    max-width: 100%;
    height: auto;
    border-radius: 15px;
	margin-bottom: 5px;
}
.text-wrap img[style*="float: left"]{
    margin-right: 15px;
}
.text-wrap img[style*="float: right"]{
    margin-left: 15px;
}

.text-wrap hr{
    margin: 35px 0;
}
.text-wrap hr + img,
.text-wrap hr + * img{
    margin-top: 8px;
}

.link,
.link:hover,
.text-wrap a:not(.btn),
.text-wrap a:not(.btn):hover{
	color: #0d6efd;
}
.link,
.text-wrap a:not(.btn){
	text-decoration:underline;
}
.link:hover,
.text-wrap a:not(.btn):hover{
	text-decoration:none;
}

button.link{
    background: none;
    border: 0;
    padding: 0;
}

.text-wrap audio,
.text-wrap video{
    display: block;
    width: 100%;
    outline: none;
}
.text-wrap video{
    height: auto;
}

.text-wrap iframe{
    display: block;
    max-width: 100%;
}

.text-wrap table {
    width: 100%;
    border: 1px solid #dee2e6;
    color: inherit;
}
.text-wrap table th,
.text-wrap table td {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    vertical-align: top;
}
.text-wrap table thead th {
    border-bottom: 2px solid #dee2e6;
    vertical-align: bottom;
}
.text-wrap table tbody + tbody {
    border-top: 2px solid #dee2e6;
}

.text-wrap .table-plain {
    border: 0;
}
.text-wrap .table-plain th,
.text-wrap .table-plain td {
    border: 0;
    border-top: 1px solid #dee2e6;
}
/* ---------- /title,text ---------- */


/* ---------- buttons ---------- */
.btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: auto;
	border: 1px solid transparent;
	border-radius: 10px;
	box-shadow: none !important;
	outline: none;
	padding: 6px 24px;
	
	font-size: 20px;
	font-weight: bold;
	line-height: 28px;
}
.btn,
.btn:focus,
.btn:hover{
    color: #282828;
}
.btn-sm{
	min-width: 32px;
	border-radius: 6px;
	padding: 6px 14px;
	font-size: 14px;
	line-height: 18px;
}
.btn-lg{
	min-width: 54px;
	padding: 12px 28px;
}

/* white */
.btn-white{
	background-color: rgba(255,255,255,0.5);
	border-color: rgba(255,255,255,0.5);
}
.btn-white:hover{
	background-color: rgba(255,255,255,0.7);
}
.btn.btn-outline-white{
	border-color: #fff;
	color: #fff !important;
}
.btn.btn-outline-white:hover{
	background-color: #fff;
	border-color: #fff;
}

/* primary */
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active{
	background-color: #0099ff;
	border-color: #0099ff;
	color: #fff;
}
.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled):active:hover{
	background-color: #007aff;
	border-color: #007aff;
}

.btn-outline-primary,
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active{
	border-color: #0099ff;
	color: #0099ff;
}
.btn-outline-primary:hover,
.btn-outline-primary:not(:disabled):not(.disabled):active:hover{
	background-color: #0099ff;
	color: #fff;
}

/* secondary */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:not(:disabled):not(.disabled):active{
	background-color: #C9C9C9;
    border-color: #C9C9C9;
	color: #424242;
}
.btn-secondary:hover,
.btn-secondary:not(:disabled):not(.disabled):active:hover{
	background-color: #b8b8b8;
	border-color: #b8b8b8;
}

.btn-outline-secondary,
.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active{
	border-color: #b8b8b8;
    color: #b8b8b8;
}
.btn-outline-secondary:hover,
.btn-outline-secondary:not(:disabled):not(.disabled):active:hover{
	background-color: #b8b8b8;
	color: #424242;
}

/* success */
.btn-success,
.btn-success:hover,
.btn-success:focus,
.btn-success:not(:disabled):not(.disabled):active {
		background-color: #2fc25d;
		border-color: #2fc25d;
	
/*	background: rgb(95,49,200);
	background: linear-gradient(90deg, rgba(95,49,200,1) 0%, rgba(96,126,255,1) 50%, rgba(29,177,172,1) 100%);*/
	color: #fff;
}
.btn-success:hover,
.btn-success:not(:disabled):not(.disabled):active:hover{
	background-color: #00aa60;
	border-color: #00aa60;
}

.btn-outline-success,
.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-outline-success:not(:disabled):not(.disabled):active{
	border-color: #00aa60;
    color: #00aa60;
}
.btn-outline-success:hover,
.btn-outline-success:not(:disabled):not(.disabled):active:hover{
	background-color: #00aa60;
	color: #fff;
}

/* danger */
.btn-danger,
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:not(:disabled):not(.disabled):active{
	background-color: #b61f3f;
    border-color: #b61f3f;
    color: #fff;
}
.btn-danger:hover,
.btn-danger:not(:disabled):not(.disabled):active:hover{
	background-color: #9c0c22;
	border-color: #9c0c22;
}

.btn-outline-danger,
.btn-outline-danger:hover,
.btn-outline-danger:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active{
	border-color: #b61f3f;
    color: #b61f3f;
}
.btn-outline-danger:hover,
.btn-outline-danger:not(:disabled):not(.disabled):active:hover{
	background-color: #b61f3f;
	color: #fff;
}


/* btn-row */
.app-page .btn-row{
	margin: 20px 0;
}
.app-page .btn-row:last-child{
	margin-bottom: 0;
}
.app-page .btn-row > div{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	padding-left: -6px;
	padding-right: -6px;
}
.app-page .btn-row > div .btn{
	margin: 6px;
}
/* ---------- /buttons ---------- */


/* ---------- form ---------- */

.form-group{
	margin-bottom: 20px;
}

.form-label{
	color: #414042;
	font-size: 16px;
	font-weight: normal;
}

.form-control,
.form-control:focus{
	color: rgba(0,0,0,0.7);
}
.form-control,
.form-control:focus,
.date-input[readonly]{
	background-color: #f5f5f5;
	border-color: #f5f5f5;
}
.form-control{
	height: 46px;
	border-radius: 7px;
	padding: .375rem 1rem;

	color: #414042;
	font-size: 16px;
}

select.form-control{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("/images/icons/chevron_gray.svg");
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 10px auto;
    padding-right: 24px;
}

.date-input:not(.flatpickr-mobile){
    background-image: url(/images/icons/calendar_month.svg);
    background-position: right 4px center;
    background-repeat: no-repeat;
	background-size: 22px auto;
    padding-right: 30px;
}

/* floating label */
.floating-label{
	display: block;
	position: relative;
	margin: 0;
}
.floating-label .form-control{
	padding-top: 20px;
}
.floating-label > span{
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 1rem;

	position: absolute;
	top: 0;
	left: 0;

	transition: all 0.3s ease;

	color: #414042;
	font-size: 16px;
	font-weight: normal;
}
.floating-label .form-control:focus ~ span,
.floating-label .form-control:not(:placeholder-shown) ~ span,
.floating-label .form-control:-webkit-autofill ~ span,
.floating-label .virtual-select ~ span{
	height: 50%;
	color: #6F7182;
	font-size: 13px;
}

.floating-label .virtual-select .vscomp-value{
	position: relative;
	top: 7px;
}

/* checkbox, radio */
.form-check{
	display: inline-flex;
	align-items: flex-start;
	min-height: 20px;
	padding: 0;
	margin: 4px 0;

	color: #000;
	font-size: 12px;
	line-height: 18px;
}
.form-check input{
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-position: -50px center;
	background-size: 10px auto;
	border: 1px solid #C9C9C9;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	print-color-adjust: exact;
}

.form-check input[type="checkbox"]{
	background-image: url(/images/icons/tick_white.svg);
	border-radius: 5px;
}
.form-check input[type="radio"]{
	background-image: url(/images/icons/radio_white.svg);
	border-radius: 50%;
}

.form-check > span{
	padding-top: 1px;
}

.form-check input + span,
.form-check span + input{
	margin-left: 9px;
}
.form-check a{
	color: inherit;
	font-weight: bold;
	text-decoration: underline;
}
.form-check a:hover{
	text-decoration: none;
}

.form-check input:checked{
	background-color: #18C46F;
	border-color: #18C46F;
	background-position: center !important;
}

.form-label + .form-check{
	margin-top: 0;
}

/* toggler */
.form-toggler{
	display: inline-flex;
	position: relative;
	overflow: hidden;
	margin: 0;
}
.form-toggler input{
	opacity: 0;
	position: absolute;
	left: -100%;
}
.form-toggler > i{
	flex-shrink: 0;
	display: flex;
	width: 40px;
	height: 26px;
	background-color: #bcbec0;
	border-radius: 20px;
	position: relative;
	padding: 2px;
}
.form-toggler > i::before{
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	background-color: #fff;
	border-radius: 50%;
	position: relative;
}
.form-toggler > i,
.form-toggler > i::before{
	transition: all 0.3s ease;
}
.form-toggler input:checked + i{
	background-color: #26c367;
}
.form-toggler input:checked + i::before{
	transform: translateX(14px);
}

.form-toggler > i + span{
	margin: auto 0 auto 12px;
	font-size: 14px;
}
.form-group .form-toggler{
	margin: 9px 0;
}

.form-check-wrap{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6px;
}
.form-check-wrap > img{
	height: 34px;
}


/* input group */
.form-input-group{
	display: flex;
	background-color: #f5f5f5;
	border-radius: 7px;
}
.form-input-group .form-control{
	border: 0;
}
.form-input-group div.form-control{
	display: flex;
	align-items: center;
	max-width: 100%;
	overflow: hidden;
}
.form-input-group .btn-wrap{
	flex-grow: 1;
	width: auto;
	background-color: transparent !important;
	border-color: transparent !important;
	border-radius: 0 !important;
}
.form-input-group .btn-wrap{
	flex-shrink: 0;
	display: flex;
	padding: 6px 10px 6px 0;
}
.form-input-group .btn-wrap .btn,
.form-input-group .btn-wrap .icon-btn{
	height: 100%;
	min-height: auto;
}
.form-input-group .btn-wrap .btn{
	max-height: 28px;
	border-radius: 5px;
	padding: 0 12px;
	margin: auto 0;
	font-size: 12px;
}
/*.form-input-group .btn-wrap .icon-btn{
	min-width: var(--btn-size-sm);
}
.form-input-group .btn-wrap .icon-btn .fi{
	color: var(--color-secondary);
	font-size: 20px;
}
.form-input-group .btn-wrap .icon-btn:hover .fi{
	color: var(--color-base);
}*/

/* file uploader */
.file-uploader div.form-control{
	padding-right: 0;
	font-size: 12px;
}
.file-uploader .btn-browse{
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.file-uploader .btn-browse input{
	opacity: 0;
	width: 0;
	position: absolute;
	top: 0;
	left: -100%;
}

.file-uploader .remove-btn{
	background: none;
	border: 0;
	padding: 6px;
}
.file-uploader .remove-btn > img{
	display: block;
	width: 20px;
}

/* error */
.error-text,
.global-error-text {
    padding: 2px 0 0 5px;
    color: #b61d22;
    font-size: 12px;
}

.error-text {
    /*display: none;*/
}
.global-error-text {
    display: block;
    margin-bottom: 20px;
    text-align: center;
}

.has-error .form-control {
    border-color: #b61d22;
}
.has-error .error-text {
    display: block;
}

@media (max-width: 374px){
	.file-uploader div.form-control{
		font-size: 11px;
	}
}
/* ---------- /form ---------- */


/* ---------- datepicker ---------- */
.datepicker-dropdown.dropdown-menu {

}

.datepicker{
	border: 0;
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
	border-radius: 6px;
	margin-top: 2px;
	z-index: 9999 !important;

	color: #666;
	font-size: 13px;
}
.datepicker::before{
	display: none !important;
}
.datepicker td,
.datepicker th{
	width: 33px !important;
	height: 33px !important;
}

.datepicker .next,
.datepicker .prev{
	background-color: transparent !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: 8px auto !important;
	overflow: hidden;
	color: #fff;
	text-indent: -100px;
}
.datepicker .prev{
	background-image: url(/images/icons/chevron_left_gray.svg) !important;
}
.datepicker .next{
	background-image: url(/images/icons/chevron_right_gray.svg) !important;
}
.datepicker .datepicker-switch{
	background: transparent !important;
	cursor: default !important;
}
.datepicker table tr td.today{
	background: #f5f5f5 !important;
}

.datepicker .day{
	border-radius: 50% !important;
}

.datepicker .day.active,
.datepicker .month.active,
.datepicker .year.active{
	background: #26c367 !important;
}

/*.form-group .datepicker,
.form-group .datepicker table{
	width: 100%;
}*/
/* ---------- /datepicker ---------- */


/* ---------- slick slider ---------- */
.slick-slide{
    outline: none;
}
.slick-arrow{
    display: block;
    width: 32px;
    height: 32px;
	background-color: transparent;
	background-position: center;
    background-repeat: no-repeat;
    background-size: 32px auto;
    border: 0;
    outline: 0;
    overflow: hidden;
    text-indent: -9999px;

	position: absolute;
    top: 50%;
    z-index: 10;

    transform: translateY(-50%);
}
.slick-prev{
	background-image: url(/images/icons/arrow_left_white.svg);
    left: 10px;
}
.slick-next{
	background-image: url(/images/icons/arrow_right_white.svg);
    right: 10px;
}

.slick-slider .slick-dots{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
	padding: 0;
    position: absolute;
    bottom: 20px;
    left: 0;
}
.slick-slider .slick-dots li{
    margin: 0 4px;
}
.slick-slider .slick-dots button{
    display: block;
	width: 8px;
	height: 8px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 50%;
    outline: none !important;
    padding:0;
    overflow:hidden;
    text-indent:-9999px;
}
.slick-slider .slick-dots button:hover,
.slick-slider .slick-dots .slick-active button{
	background-color: #b61f3f !important;
    border-color: #b61f3f !important;
}
/* ---------- /slick slider ---------- */


/* ---------- item with icon ---------- */
.item-with-icon{
	display: flex;
	align-items: center;

	color: #707183;
	font-size: 18px;
}
.item-with-icon > img{
	flex-shrink: 0;
	width: 28px;
}
.item-with-icon img + span,
.item-with-icon span + img{
	margin-left: 14px;
}
/* ---------- item with icon ---------- */


/* ---------- accordion ---------- */
.accordion-item{
	width: 100%;
	max-width: 906px;
	padding: 0 12px;
	transition: all .3s;

	color: #0d0c24;
}
.accordion-item:not(:last-child){
	margin-bottom: 32px;
}
.accordion-item-head,
.accordion-item-toggle-btn{
	display: flex;
	color: inherit;
	font-family: 'Roboto', sans-serif;
	font-size: 25px;
	font-weight: normal;
	position: relative;
}
.accordion-item-toggle-btn{
	cursor: pointer;
	transition: all .3s;
}
.accordion-item-toggle-btn::before{
	flex-shrink: 0;
	content: "";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='8' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 12 .59 10.59 5.17 6 .59 1.41 2 0l6 6-6 6Z' fill='%23C5C5CE'/%3E%3C/svg%3E");
	background-position: 50%;
	background-repeat: no-repeat;
	transition: all .3s;
}

.accordion-item-body{
	padding: 18px 0 24px;
	font-size: 16px;
}

/* is open */
.accordion-item.is-open{
	background-color: #f5f6fa;
	border-radius: 16px;
	padding-top: 24px;
}

.accordion-item-toggle-btn:hover,
.accordion-item.is-open .accordion-item-toggle-btn{
	color: #2fc25d;
}
.accordion-item-toggle-btn:hover::before,
.accordion-item.is-open .accordion-item-toggle-btn::before{
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='8' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 12 .59 10.59 5.17 6 .59 1.41 2 0l6 6-6 6Z' fill='%232FC25D'/%3E%3C/svg%3E");
}
.accordion-item.is-open .accordion-item-toggle-btn::before{
	transform: rotate(90deg);
}


.section-accordion > .title{
	padding-left: 15px;
}

@media (min-width: 768px) {
	.accordion-item{
		padding: 0 45px 0 81px;
	}
	.accordion-item-head,
	.accordion-item-toggle-btn{
		font-size: 30px;
	}
	.accordion-item-toggle-btn::before{
		left: -48px;
		position: absolute;
	}
	.section-accordion > .title{
		padding-left: 40px;
	}
	.accordion-item-body{
		padding: 28px 0 32px;
		font-size: 18px;
	}

	.accordion-item.is-open{
		padding-top: 32px;
	}
}

@media (max-width: 767px) {
	.accordion-item-toggle-btn::before{
		margin: auto 6px auto -4px;
	}
}
/* ---------- /accordion ---------- */


/* ---------- card ---------- */
.card {
	background: #f5f6fa;
    border: 0;
    border-radius: 16px;
}
.card-body {
    padding: 20px;
}
/* ---------- /card ---------- */


/* ---------- section ---------- */
.section{
	margin-bottom: 70px;
}
/* ---------- /section ---------- */


/* ---------- modal ---------- */
.modal-backdrop{
	background-color: #231f20;
}

.modal-dialog{
	max-width: 600px;
}
.modal-sm {
	max-width: 300px;
}
.modal-lg {
	max-width: 800px;
}

.modal-close-btn{
	display: flex;
	background-color: transparent;
	border: 0;
	border-radius: 50%;
	padding: 10px;
	position: absolute;
	top: 5px;
	right: 5px;
}
.modal-close-btn img{
	flex-shrink: 0;
	width: 14px;
	margin:  auto;
}

.modal-content > .modal-close-btn{
	margin: 0;
	position: absolute;
	top: 20px;
	right: 13px;
	z-index: 5;
}

.modal-content{
	border: 0;
	border-radius: 16px;
	padding: 0;
}

.modal-header,
.modal-body,
.modal-footer{
	border: 0;
	padding: 20px 15px;
}
.modal-header{
	justify-content: flex-start;
}

.modal-title{
	font-size: 40px;
	margin: auto 10px auto 0;
}

.modal-header + .modal-body{
	padding-top: 0;
}

.modal-body hr{
	border-top-color: #d1d3d4;
	margin: 28px 0;
}

@media (min-width: 992px) {
	.modal-dialog:not(.modal-sm) .modal-header,
	.modal-dialog:not(.modal-sm) .modal-body,
	.modal-dialog:not(.modal-sm) .modal-footer{
		padding-left: 48px;
		padding-right: 48px;
	}
}
/* ---------- /modal ---------- */


/* ---------- form modal ---------- */
.form-modal .form-container-sm{
	max-width: 350px;
	margin: 0 auto;
}
.form-modal .total-price-wrap{
	font-size: 26px;
}

.form-modal input::-webkit-outer-spin-button,
.form-modal input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.form-modal input[type=number] {
	-moz-appearance: textfield;
}
/* ---------- /form modal ---------- */


/* ---------- banner ---------- */
.banner{
	border-radius: 12px;
}
.banner img{
	object-fit: cover;
}
.banner::before{
	padding-top: 37.75%;
}
/* ---------- /banner ---------- */


/* ---------- products ---------- */
.products-grid-item {
	background-color: #ecedf3;
	border-radius: 12px;
	padding: 20px 16px;
	font-size: 18px;
}
.products-grid-item > figure{
	margin-bottom: 20px;
}
.products-grid-item > figure img{
	object-fit: contain;
}
.products-grid-item > figure::before{
	padding-top: 47%;
}

.desktop .products-grid-item{
	transition: box-shadow 0.2s ease;
}
.desktop .products-grid-item:hover{
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
/*.desktop  .products-grid-item .btn-col{
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease;
}
.desktop .products-grid-item:hover .btn-col{
	opacity: 1;
	visibility: visible;
}
.desktop .products-grid-item:hover .btn-col .btn{
	min-width: 128px;
}*/

.products-grid > div{
	margin-bottom: 20px;
}
.products-grid:last-child{
	margin-bottom: -20px;
}

.car-features-list-item{
	display: flex;
	align-items: center;
	background-color: #EFF1F2;
	border-radius: 6px;
	padding: 6px;
	margin-bottom: 10px;

	color: #000;
	font-size: 12px;
}
.car-features-list-item img{
	flex-shrink: 0;
	height: 24px;
	margin-right: 6px;
}

@media (min-width: 576px) {
	.products-grid-item{
		padding: 24px;
	}
}
/* ---------- /products ---------- */


/* ---------- services ---------- */
.services-card{
	min-height: 240px;
	overflow: hidden;
}
.services-card,
.services-card:hover{
	color: #0d0c24;
}

.services-card .card-body{
	padding: 31px 36px 24px;
}

.services-card .card-title{
	display: block;
	margin-bottom: 10px;
	color: inherit;
	font-size: 18px;
}
.services-card .text{
	color: inherit;
}

.services-card .icon-wrap{
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 165px;
	max-height: 140px;
	overflow: hidden;
	position: absolute;
	bottom: 0;
	right: 0;
}
.services-card .icon-wrap img{
	display: block;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;

	transition: transform 0.8s ease;
}
.services-card:hover .icon-wrap img{
	transform: scale(1.1);
}

@media (min-width: 768px) {
	.services-card .card-title{
		font-size: 20px;
	}
	.services-card .text{
		font-size: 18px;
	}
}
/* ---------- /services ---------- */


/* ---------- info items grid ---------- */
.info-items-grid > div{
	margin-bottom: 90px;
}

.info-grid-item{
	max-width: 370px;
}
.info-grid-item .icon-wrap{
	margin-bottom: 10px;
}
.info-grid-item .icon-wrap,
.info-grid-item .icon-wrap > img{
	display: block;
	height: 60px;
}
.info-grid-item .icon-wrap > img{
	transition: transform 0.8s ease;
}
.info-grid-item:hover .icon-wrap img{
	transform: scale(1.1);
}

.info-grid-item,
.info-grid-item:hover{
	color: #0d0c24;
}

.info-grid-item .item-title{
	display: block;
	margin-bottom: 10px;
	color: inherit;
	font-size: 18px;
}
.info-grid-item .text{
	color: inherit;
}

@media (min-width: 768px) {
	.info-grid-item .item-title{
		font-size: 20px;
	}
	.info-grid-item .text{
		font-size: 18px;
	}
}
/* ---------- /info items grid ---------- */


/* ---------- media items grid ---------- */
.media-items-grid > div{
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

.media-grid-item{
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	background-color: #f5f6fa;
	border-radius: 16px;
	padding: 16px 16px 32px;

	color: #0d0c24;
}
.media-grid-item:hover{
	color: inherit;
}

.media-grid-item figure{
	border-radius: 8px;
	margin-bottom: 40px;
}
.media-grid-item figure::before{
	padding-top: 100%;
}
.media-grid-item figure img{
	transition: transform .8s ease,-webkit-transform .8s ease;
}
.media-grid-item:hover figure img{
	transform: scale(1.05);
}

.media-grid-item .info-wrap{
	display: flex;
	flex-direction: column;
}
.media-grid-item .title{
	color: inherit;
	font-size: 24px;
	line-height: 31px;
	margin-bottom: 23px;
}
.media-grid-item .date{
	color: #717184;
	font-size: 12px;
}
/* ---------- /media items grid ---------- */


/* ---------- article ---------- */
.article{
	position: relative;
}
.article .date{
	color: #717184;
	font-size: 12px;
	line-height: 14px;
}
.article:not(.content-fluid) > figure{
	max-width: 805px;
	margin-left: auto;
	margin-right: auto;
}
.article > figure:not(.embed-responsive) img{
	display: block;
	width: 100%;
}
.article > figure.embed-responsive,
.article > figure:not(.embed-responsive) img{
	border-radius: 8px;
}
.article:not(.content-fluid) > .head,
.article:not(.content-fluid) > .text-wrap,
.article:not(.content-fluid) > .foo{
	max-width: 598px;
	margin-left: auto;
	margin-right: auto;
}

.article .text-wrap{
	font-size: 18px;
}
.article .text-wrap h1{
	font-size: 26px;
}
.article .text-wrap h2{
	font-size: 24px;
}
.article .text-wrap h3{
	font-size: 22px;
}
.article .text-wrap h4{
	font-size: 20px;
}
.article .text-wrap h5{
	font-size: 18px;
}
.article .text-wrap h6{
	font-size: 16px;
}

@media (min-width: 768px) {
	.article > figure img{
		border-radius: 32px;
	}
}
@media (min-width: 992px) {
	.article:not(.content-fluid) .date{
		position: absolute;
		top: 14px;
		left: 0;
	}
}
/* ---------- /article ---------- */



/* ---------- car rent modal ---------- */
.car-rent-modal-form .form-group{
	margin-bottom: 16px;
}
.car-rent-modal-form .row-px-sm{
	margin-left: -8px;
	margin-right: -8px;
}
.car-rent-modal-form .row-px-sm > div{
	padding-left: 8px;
	padding-right: 8px;
}
/* ---------- /car rent modal ---------- */



/* ==================== 5. content by pages ==================== */


/* ---------- intro ---------- */
.section-intro{
	position: relative;
	margin-bottom: 40px;
}
.section-intro .main-title{
	margin-bottom: 40px;
	font-size: 60px;
	line-height: 1;
	outline: none;
}
.section-intro .sub-title{
	max-width: 354px;
	margin-bottom: 45px;
	font-size: 30px;
}
.section-intro .btn{
	min-width: 195px;
}

.section-intro .cars-img{
	padding-bottom: 35%;
}
.section-intro .cars-img img{
	object-fit: contain;
}
.section-intro .cars-img::before{
}

@media (min-width: 768px) {
	.section-intro{
		background: url(/images/buildings.png) center right -80px no-repeat;
	}
	.section-intro .main-title{
		margin-bottom: 50px;
		font-size: 110px;
	}
	.section-intro .sub-title{
		margin-bottom: 90px;
	}
}
@media (min-width: 992px) {
	.section-intro{
		min-height: 630px;
	}
	.section-intro .cars-img{
		width: 78.5%;
		padding-bottom: 30%;
		position: absolute;
		bottom: 0;
		right: 0;
	}
}
@media (min-width: 1200px) {
	.section-intro{
		min-height: 686px;
	}
	.section-intro .main-title{
		font-size: 100px;
	}
}

@media (max-width: 767px) {
	.section-intro .cars-img{
		margin-top: 25px;
	}
}
/* ---------- /intro ---------- */


/* ---------- contact ---------- */

.section-contact a,
.section-contact .text-wrap a{
	color: #2fc25d;
	text-decoration: none;
}

@media (min-width: 992px) {
	.section-contact .card-title{
		max-width: 540px;
	}
	.section-contact .card-body{
		display: flex;
		padding: 0;
	}
	.section-contact .card-body .content-container{
		flex-grow: 1;
		padding: 36px 28px 40px 36px;
	}
	.section-contact .card-body > img{
		flex-shrink: 0;
		align-self: center;
		width: 400px;
		height: auto;
	}
}
@media (max-width: 991px) {
	.section-contact .card-body{
		padding: 24px 20px;
	}
	.section-contact .card-body > img{
		display: none;
	}
}
/* ---------- /contact ---------- */


/* ---------- section ---------- */

/* ---------- /section ---------- */
