html,
body {
	background: white;
	font-family: var(--font-family-1);
	font-weight: 300;
	letter-spacing: 0;
	padding: 0;
	margin: 0;
	color: var(--black);
	overflow-x: hidden;
}
html.lock,
body.lock {
	overflow: hidden;
}
.loader{
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
	z-index: 99999999999999;
}
.loading {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 150px;
    height: 150px;
    background: rgba(0, 0, 0, 0.5);
    border: 3px solid #3c3c3c;
    border-radius: 50%;
    text-align: center;
    line-height: 150px;
    font-family: var(--font-family-1);
    font-size: 1em;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 10px #ffffff;
    box-shadow: 0 0 20px rgb(0 0 0 / 50%);
}

.loading span {
  font-size: 13px;
}

.loading::after{
	content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid #a800be;
    border-right: 3px solid #a800be;
    border-radius: 50%;
    animation: load 2s linear infinite;
}

@keyframes load
{
  0%
  {
    transform:rotate(0deg);
  }
  100%
  {
    transform:rotate(360deg);
  }
}
@keyframes animate
{
  0%
  {
    transform:rotate(45deg);
  }
  100%
  {
    transform:rotate(405deg);
  }
}

header .menu > a .favorite.hidden {
	opacity: 0;
	pointer-events: none;
}

.swal-button, .swal-button:not([disabled]):hover, .swal-button:not([disabled]):focus {
	background-color: #04030e;
	border-radius: 23.5px;
	margin: 0 5px;
}
.swal-button:not([disabled]):hover {
	background-color: #a800be;
}
.swal-content p {
	font-family: var(--font-family-1);
	font-size: 16px;
	line-height: 1.5;
	color: #04030e;
}
.swal-content p b {
	font-weight: 600;
}
.swal-title {
	font-family: var(--font-family-1);
}
.swal-button:focus {
	box-shadow: initial;
}
@media(max-width: 767px){
	.swal-overlay--show-modal .swal-modal {
		width: 1005;
	}

	.hide_menu{
		display: block;
	}
}

@media(max-width: 768px){
	.search-voice .voice-mod .container{
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
	}
	.search-voice .voice-mod .container .template-module{
		order: 2;
		margin-top: 35px;
	}

	.search-voice .voice-mod .container .list-voices{
		order: 1;
	}

	.hide_menu{
		display: block;
	}


}

.pre-load * {
	transition: none !important;
}

body.bg-lightgrey {
	background-color: #f8f8f8;
}
a, a:hover, a:focus,
button, button:hover, button:focus {
	transition: all ease-in-out .2s;
	-moz-transition: all ease-in-out .2s;
	-webkit-transition: all ease-in-out .2s;
	text-decoration: none;
	cursor: pointer;
	color: currentColor;
	outline: none;
	box-shadow: none;
}
*:focus {
	outline: none;
	box-shadow: none;
}
*::placeholder, *::-webkit-placeholder {
	color: currentColor;
}
*:-ms-input-placeholder {
	color: currentColor;
}
section {
	position: relative;
}
.container,
.container-fluid {
	position: relative;
	width: 100%;
	padding: 0 20px;
}
.container.container-full {
	max-width: 1700px; /* Layouts' fullscreen */
}
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	padding: 15px 15px 15px 9px;
	z-index: 3;
	transition: all 0.2s ease;
	background: rgb(0,0,0,1);
}
/* header.filledcolor {
	background: rgb(0,0,0,1);
} */
header.open {
	z-index: 4;
}
header .logo a {
	position: relative;
	display: inline-block;
	height: 16px;
	width: 133px;
}
header .logo a img {
	width: 100%;
	vertical-align: unset;
	/* height: 100%; */
}
header .menu {
	margin-left: auto;
	position: relative;
	display: flex;
}

header .menu > a {
	position: relative;
	max-height: 16px;
	display: flex;
	align-items: center;
	transition: var(--transition);
}

header.open > .menu a.favorite-container span {
	display: inline-block;
	color: white;
	margin-left: 10px;
	transition: var(--transition);
	text-transform: uppercase;
}

header.open > .menu a.favorite-container span:hover, header.open > .menu a.login-container span:hover{
	color: var(--orange);
}

header > .menu .top_menu ul li a span:hover, header > .menu a.favorite-container span:hover, header > .menu a.login-container span:hover{
	color: var(--orange);
}

header.open > .menu a.favorite-container.active span {
	color: var(--orange);
}


header > .menu a:not(.favorite-container,.login-container), header > .menu a:not(.favorite-container, .login-container), header > .menu a span {
	display:none;
	transition: var(--transition);
}

header.open > .menu a.favorite-container, header.open > .menu a.login-container{
	display:flex;
}


header > .menu a.login-container{
	margin-right: 15px;
}

header > .menu .top_menu{
    width: inherit;
	display: inline-flex;
}

@media (max-width: 767px) {
	header > .menu .top_menu{
		display: none;
	}

	/* header.open .menu-toggle {
		margin-left: -50px;
	} */

}

header > .menu .top_menu ul{
	display: flex;
	align-items: flex-start;
	list-style: none;
	margin-top: 1px;
	padding-inline-start: 0px;
}

header > .menu .top_menu ul li{
	display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* header > .menu .top_menu:first-of-type > ul > li{
	max-width: 187px;
} */

header > .menu .top_menu ul li ul li a{
	font-size: 11px;
	font-weight: 500;
}

header > .menu .top_menu ul li.top_submenu ul{
    max-height: 0;
    overflow: hidden;
	flex-direction: column;
	background: rgb(0,0,0,1);
	/* width: max-content; */
	position: absolute;
	top: 27px;
}

header > .menu .top_menu ul li a span{
	text-transform: uppercase;
	font-family: var(--font-family-1);
	font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
	line-height: 1;
}


header > .menu .top_menu > ul:first-of-type > li.top_submenu:hover > a, header > .menu .top_menu > ul:first-of-type > li > a:hover{
	color: var(--orange);
}

header > .menu .top_menu ul li ul li a{
	text-transform: uppercase;
	font-family: var(--font-family-1);
	font-size: 11px;
    font-weight: 500;
    letter-spacing: 0;
	opacity: 0.5;
	transition: var(--transition);
}

header > .menu .top_menu > ul > li > ul > li > a:hover{
	opacity: 1;
	transition: var(--transition);
}


header > .menu .top_menu ul li ul li:first-child {
    /* margin-top: 40px; */
	padding: 40px 27px 5px 27px;
}

header > .menu .top_menu ul li ul li:last-child {
    margin-bottom: 15px;
}

header > .menu .top_menu ul li ul li{
    padding: 5px 27px 5px 27px;
}





/* header > .menu .top_menu li ul li{
	list-style: none;
} */

header .menu .language_container {
    display: none;
}

header .menu > a img {
	display: block;
	height: 100%;
	/* width: 12px;
	height: 11px; */
	width: 16px;
	height: 13px;
	filter: brightness(0) invert(1);
	transition: var(--transition);
}



header .menu .top_menu ul > li > a img {
	display: block;
	height: 100%;
	width: 16px;
	height: 13px;
	filter: brightness(0) invert(1);
	transition: var(--transition);
}

header .menu .language_container img {
	display: block;
	height: 100%;
	height: 11px;
	filter: brightness(0) invert(1);
	transition: var(--transition);
}

header .menu .top_menu ul > li > a:hover img {
	filter: none;
}

header .menu .top_submenu.opened > a > img{
	filter: none;
}

header .menu .language_container:hover img {
	filter: none;
}

header .menu > a:nth-child(1) span {
	transition: all 0.01s ease-in-out;
}
header .menu > a:nth-child(2) span {
	transition: all 0.01s ease-in-out;
}

header .menu > a.favorite-container {
	padding-right: 30px;
}

body.lock header header > .menu a:nth-child(2), body.lock header header > .menu a:nth-child(4) {
	opacity: 0;
    pointer-events: none;
}

header .menu > a .favorite {
	position: absolute;
	top: -9px;
    right: 0;
	color: white;
	width: 18px;
	height: 18px;
}
header .menu > a .favorite p {
	position: absolute;
	z-index: 1;
	font-size: 8.5px;
	left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
header .menu > a .favorite::before {
	position: absolute;
	top: 0;left: 0;right:0;bottom:0;
	width: 100%;
	height: 100%;
	border-radius: 26.5px;
	background: var(--blue);
	content: '';
}
header .menu > a:first-child {
	margin-right: 15px;
}
header .menu > a svg path {
	transition: var(--transition);
}
header .menu > a:first-child svg {
	width: 13px;
}
header .menu > a:nth-child(2) svg {
	width: 11px;
}
header .menu > a.favorite-container svg {
	width: 16px;
}
header .menu > a.favorite-container svg path {
	fill: #ffffff;
}
header .menu-toggle {
    /* margin: auto 0 auto 20px; */
    height: 17px;
    width: 23px;
    transform: translateY(0);
}

@media(max-width: 767px){
	header.open .menu-toggle {
		position: absolute;
		right: 15px;
	}
}

header .menu-toggle span {
    position: absolute;
    height: 1px;
    transition: var(--transition);
    background: white;
    will-change: transform;
    width: 100%;
    top: 0;
    bottom: 0;
	margin: auto;
	height: 2px;
}
header .menu-toggle span:nth-of-type(2) {
    top: 7px;
	bottom: unset;
	width: 60%;
}
header .menu-toggle span:first-child {
    transform: translateY(-8px);
}
header.open .menu-toggle span:first-child {
    transform: rotate(45deg);
}
header.open .menu-toggle span:last-child {
	transform: rotate(-45deg);
	width: 100%;
}
header .menu,
header .lang-container,
header .menu-toggle {
	z-index: 3;
}
header .bg + .text-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 35.5px;
	text-align: center;
	max-width: 290px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
header .side-menu .menu {
	padding: 0 20px;
}
header .side-menu .social + div > a {
	position: relative;
	height: 273px;
	overflow: hidden;
	display: block;
	transition: var(--transition);
}
header .side-menu .btn::before {
	background: transparent;
}
header .bg {
	height: 100%;
	transition: var(--transition);
}
header .side-menu {
	overflow-x: hidden;
	overflow: scroll;
    padding: 78.5px 0 0 0;
    top: 0;
    right: 0;
    width: 100vw;
    position: fixed;
    transform: translateX(100vw);
    transition: var(--transition);
    background-color: var(--black);
	height: 100vh;
	z-index: 2;
}
header.open .side-menu {
    transform: translateX(0);
}

header .side-menu .top_menu{
	z-index: 3;
	margin-left: auto;
    position: relative;
    display: flex;
    max-height: 16px;
    display: flex;
    transition: var(--transition);
	margin: 0 25px 20px 20px;
	justify-content: space-between;
}

@media(max-width: 767px){
	header.open > .menu{
		display: none;
	}

}	

@media(min-width: 768px){

	header.open .side-menu .top_menu{
		display: none;
	}

}
header .side-menu .top_menu a{
	opacity: 1;
	display: flex;
	align-items: center;
}

/* header .side-menu .top_menu a:first-of-type{
	padding-right: 15px;
}

header .side-menu .top_menu a:last-of-type{
	padding-left: 15px;
} */

header .side-menu .top_menu > a img{
	display: block;
	height: 100%;
	width: 16px;
	height: 13px;
	filter: brightness(0) invert(1);
	transition: var(--transition);
}

header .side-menu .top_menu > a.active img{
	filter: none;
}

header .side-menu .top_menu > a span{
	display: inline-block;
    color: white;
    margin-left: 10px;
    transition: var(--transition);
    text-transform: uppercase;
	font-size: 10px;
    font-weight: 600;
}

header .side-menu .top_menu > a.active span{
	color: var(--blue);
}

header .side-menu .top_menu > a > div.favorite{
	position: relative;
    top: -9px;
	margin-right: 2px;
    color: white;
    width: 18px;
    height: 18px;
}

header .side-menu .top_menu > a > div.favorite::before{
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 26.5px;
    background: var(--blue);
    content: '';
}

header .side-menu .top_menu > a > div.favorite.hidden{
	opacity: 0;
    pointer-events: none;
}

header .side-menu .top_menu > a > div.favorite p{
	position: absolute;
    z-index: 1;
    font-size: 8.5px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	color: white;
}




header .menu a:first-child {
	opacity: 1;
}
/* header.open > .menu a:first-child {
	opacity: 0;
	pointer-events: none;
} */

header.open > .menu a.favorite-container {
	opacity: 1;
}

header .menu span {
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 600;
	transition: var(--transition);
}
header .menu a:last-child > span {
	color: white;
	transition: var(--transition);
	opacity: 0;
	position: absolute;
	pointer-events: none;
	width: 87px;
    left: 29px;
}

header .menu > a.active img {
	filter: none
}
header .lang-container {
	margin: 0;
	padding: 0;
	position: absolute;
	top: 18px;
	left: 20px;
	display: flex;
	list-style: none;
	pointer-events: none;
	opacity: 0;
	transition: var(--transition);
}

header .menu .h3,
header .menu p {
	color: white;
}
header .side-menu .menu ul {
	padding: 0;
	width: 100%;
}

header.open .lang-container {
	opacity: 1;
	pointer-events: all;
}


@media(min-width: 1200px){

	

	header.open .lang-container {
		opacity: 0;
		pointer-events: none;
	}
}



header .lang-container li.selected {
	opacity: 1;
}

header .lang-container:first-child {
	margin-left: 0;
}

header .lang-container li {
	color: white;
	opacity: 0.5;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 600;
	margin: 0 5px;
}

header .menu > ul > li {
	margin: 10px 0;
	list-style: none;
}
header .menu .h2 { 
	position: relative;
	font-size: 22px;
	margin: 0;
	font-weight: bold;
	font-family: var(--font-family-2);
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
header .menu .h2 + ul {
	transition: var(--transition);
	padding-left: 30px;
	list-style: none;
}
header .menu .h3:first-child {
	margin-top: 25px;
}
header .menu .h3:last-child {
	margin-bottom: 40px;
}
header .menu .h3 {
	opacity: 0.5;
	font-size: 11px;
	font-weight: normal;
	margin: 7.5px;
	transition: var(--transition);
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
header .menu .h3:hover {
	opacity: 1;
}

header .menu .h3.active {
	opacity: 1;
}

header .menu .h2.active {
	color: var(--blue);
}

body:not(.index){
	margin-top: 48px;
}

@media(min-width: 992px){
	header {
		width: 100vw;
	}
}

@media(min-width: 1200px){
	header .menu .language_container {
		color: #ffffff;
		background-color: transparent;
		transition: all 0.2s ease-in-out;
		display: inline-flex;
		height: 100%;
		align-items: center;
		cursor: pointer;
		text-transform: uppercase;
		margin: 0 25px;
		padding-bottom: 12px;
	}

	header .menu .language_container span {
		color: #ffffff;
		font-size: 12px;
		font-family: var(--font-family-1);
		font-weight: 600;
		font-stretch: normal;
		font-style: normal;
		letter-spacing: #ffffff;
		display: block;
		position: relative;
		padding-right: 19px;
	}
	
	header .menu .language_container span::after {
		content: '';
		position: absolute;
		right: 0;
		top: 5px;
		background-image: url(/assets/img/arrow.svg);
		background-repeat: no-repeat;
		filter: brightness(0) invert(1);
		width: 10px;
		height: 10px;
		transform: rotate(90deg);
		transition: all 0.3s ease-in-out;
	}
	
	header .menu .language_container:hover span::after {
		filter: none;
	}
	
	header .menu .language_container ul {
		list-style: none;
		padding: 0;
		background-color: rgb(0, 0, 0);
		color: #ffffff;
		position: absolute;
		top: 36px;
		right: 36px;
		/* left: 38px; */
		width: 35px;
		text-align: center;
		opacity: 1;
		pointer-events: none;
		transition: all 0.3s ease-in-out;
		margin:0;
	}
	
	header .menu .language_container ul li {
		padding: 10px 0 0 0;
		text-transform: uppercase;
		transition: all 0.3s ease-in-out;
	}

	header .menu .language_container ul li:last-of-type {
		padding-bottom: 10px;
	}
	
	header .menu .language_container ul li a {
		font-family: var(--font-family-1);
		font-size: 12px;
		font-weight: 600;
		font-stretch: normal;
		font-style: normal;
		color: #ffffff;
		transition: all 0.3s ease-in-out;
		display: block;
	}
	
	header .menu .language_container ul li a:hover {
		color: var(--blue);
	}
}


@media(min-width: 1420px){
	header > .menu a:first-child, header > .menu a:nth-child(3), header > .menu a span {
		display:inline-flex;
		align-items: center;
		transition: var(--transition);
	}

	

	header .menu .h2.d-banco{
		display: none !important;
	}

	.hide_menu{
		display: none;
	}
}

.hp-banners .banners > * {
	height: 100vh;
	position: relative;
	overflow: hidden;
	width: 100vw;
}
.hp-banners .banners .bg {
	height: 100vh;
}
.bg {
	position: relative;
	overflow: hidden; 
}
.bg > * {
	top: 0;
	left: 0;
	width: 100%; 
	height: 100%;
}

.voices-list .bg::after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    content: '';
    mix-blend-mode: multiply;
    background: linear-gradient(
370deg, rgba(0,0,0,0.7), rgba(255,255,255,0));
}

.services:not(.new-services) .bg::after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    content: '';
    mix-blend-mode: multiply;
    background: linear-gradient(
370deg, rgba(0,0,0,0.7), rgba(255,255,255,0));
}

.services.new-services .slider .slide .bg{
	
}

.services.new-services .slider .slide .bg img{
	opacity: 1;
	transition: var(--transition);
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	
}

.services.new-services .slider .slide .bg:hover img{
	transform: scale(1.05);
}


.services.new-services .slider .slide .bg a{
	pointer-events: all;
	cursor: pointer;
	display: block;
}

.services.new-services .slider .slide .bg::before{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #180013;
    opacity: 0.50;
    z-index: 1;
	pointer-events: none;
}

.services.new-services .slider .slide .bg .inner{
	position: absolute;
    top: 15px;
    left: -2px;
    right: 0;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    margin-right: 15px;
    margin-left: 17px;
    z-index: 1;
	pointer-events: none;
}

.services.new-services .slider .slide .bg .inner .top{
	padding-right: 31px;
    padding-left: 34px;
    position: relative;
}

.services.new-services + .voices-list{
	margin-top: 80px;
}

@media(min-width:992px){
	.services.new-services + .voices-list{
		margin-top: 120px;
	}
}


.bg img {
	opacity: 1;
	transition: var(--transition);
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
}
.bg img.off {
	z-index: 1;
	opacity: 0;
}
/*.bg img:not([data-src]) { 
	z-index: 0;
	filter: blur(5px);
	position: absolute;
}*/

.hp-highlights .bg + .text-container {
	position: relative;
	bottom: auto;
}
.hp-banners .bg + .text-container {
	top: calc(0.39 * var(--wHeight));
}

.bg + .text-container {
	position: absolute;
	width: 100%;
    padding: 0 20px;
	color: white;
	font-family: var(--font-family-2);
}
.hp-banners .banners .right-side .text-container {
	bottom: 10vh;
}
.hp-banners .banners .right-side .slick-dots {
	bottom: calc(100% - 56vh);
	/* bottom: 63vh; */
	margin-left: 10px;
	display: flex;
}
.slick-dots li {
	width: 22px;
	height: 22px;
	margin: 0 8px;
	padding: 8px;
}
.slick-dots li button {
	width: 100%;
	height: 100%;
	position: relative;
	margin: 0;
	padding: 0;
}
.slick-dots li.slick-active button::before {
	transform: scale(1.5);
	opacity: 1;
}
.slick-dots li button::before {
	background: white;
	border-radius: 100%;
	height: 100%;
	width: 100%;
	transform: scale(1);
	transition: var(--transition);
	content: '';
	right: 0;
	bottom: 0;
	margin: auto;
}
.h2 {
	font-size: 40px;
	font-weight: bold;
	line-height: 1.17;
	margin-bottom: 31px;
	font-family: var(--font-family-2);
}

.hp-banners .banners .left-side .text-container h2{
	margin-top: 0;
}

.hp-banners .banners .right-side .text-container h2{
	margin-top: 0;
	font-size: 40px;
	font-weight: bold;
    line-height: 1.17;
    margin-bottom: 31px;
    font-family: var(--font-family-2);
}

@media (min-width: 1200px){
	.hp-banners .banners .right-side .text-container h2 {
		font-size: 58px;
	}
}

.more-info {
	height: 41px;
	width: 41px;
	display: inline-block;
	position: relative;
	transform: rotate(0deg);
	transition: all 0.4s ease;
}
.more-info:hover,
.bg + .text-container:hover .more-info {
    transform: rotate(180deg);
}
.more-info::after {
	height: 3px;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}
.more-info::before {
	left: 50%;
	transform: translateX(-50%);
	height: 100%;
	width: 3px;
}
.more-info::after,
.more-info::before {
    content: '';
	position: absolute;
	background: white;
}
.hp-banners {
	position: relative;
}
.search-form,
.btn-wrapper {
	transition: var(--transition);
	background: rgba(0,0,0,0.4);
}
.search-form {
	position: absolute;
	top: calc(var(--wHeight) - 146px);
	width: 100%;
}
.search-form .filter {
	width: 100%;
	padding: 22px 21px 0 21px;
}
.search-form .filter-container {
	display: flex;
	margin: 0 -5px;
}
.search-form .filter-container > * {
	flex: 1;
	padding: 0 5px;
}
.search-form .filter-container .select {
	position: relative;
	background: hsl(247, 11%, 16%);
	color: white;
	padding: 13px;
	font-weight: normal;
}
.select .selected {
	position: relative;
}
.search-form .filter-container .custom-select .placeholder,
.search-form .filter-container select.custom-select {
	background-color: #25242d;
	border: 0;
	padding: 17px 20px;
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: normal;
	letter-spacing: 0.66px;
	text-align: left;
	color: #ffffff;
	cursor: pointer;
}

.search-form .filter-container select.custom-select {
	-webkit-appearance: none;
    background-image: url(/images/icons/select-arrow.svg);
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: 90%;
}

.search-form .filter-container .custom-select .placeholder::before {
	width: 10px;
	height: 5px;
	background-image: url("/images/icons/select-arrow.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	right: 20px;
	transform: rotate(0);
	transition: var(--transition);
	border: 0;
}
.search-form .filter-container .custom-select .options-wrapper {
	bottom: 100%;
	border: 0;
	background-color: #25242d;
}
.search-form .filter-container .custom-select .options-wrapper .options div {
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: normal;
	letter-spacing: 0.66px;
	text-align: left;
	color: #ffffff;
	transition: var(--transition);
}
.search-form .filter-container .custom-select .options-wrapper .options div:hover {
	color: #a800be;
}
.search-form .filter-container .custom-select.open .placeholder::before {
	transform: rotate(180deg);
}

.sub ul {
	max-height: 0;
	overflow: hidden;
}
.select .selected::after {
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 5px;
	width: 15px;
	content: '';
	height: 15px;
	background: url('../images/icons/select-arrow.svg') 0%/contain no-repeat;
	transition: var(--transition);
	transform: rotate(0deg);
}
.index .voices-list .select .options {
	background: rgb(0, 0, 0);
}
.index .select .selected span {
	font-family: var(--font-family-1);
	font-size: 12px;
	letter-spacing: 0.66px;
} 
.index .select .options {
	bottom: 100%;
	top: auto;
	background: inherit;
}
.index .select .options > div {
	font-family: var(--font-family-1);
	font-size: 12px;
	letter-spacing: 0.66px;
}
.index .select .options > div:first-child {
	margin-top: 10px;
}
.index .select .options > div:last-child {
	margin-bottom: 10px;
}
.index .select .options::-webkit-scrollbar-track {
	background-color: hsl(247, 11%, 16%);
}
.index .select .options::-webkit-scrollbar {
	width: 5px;
}
.index .select .options::-webkit-scrollbar-thumb {
	background-color: #fff;
	border-radius: 10px;
}
/* .index .select .options > div {
	text-transform: uppercase;
} */
.select {
	position: relative;
	cursor: pointer;
}
.select .options > * {
	padding: 2px 10px;
	margin: 4px 0;
	opacity: 0.5;
}
.select .options > *.locked {
	opacity: 1;
}
.select .options {
	position: absolute;
	top: 0;
	left: 0;
	max-height: 0;
	width: 100%;
	overflow: hidden;
	transition: var(--transition);
	z-index: 1;
}
.select.opened .options {
	overflow-y: auto;
}
.btn-wrapper {
	z-index: 2;
	position: fixed;
	bottom: 0;
	width: 100%;
	padding: 16px 0;
}
.btn-wrapper .btn {
	position: relative;
	left:50%;
	transform: translateX(-50%);
	transition: var(--transition);
}
.btn-wrapper.fixed {
	background: var(--blue);
}
.btn-wrapper.fixed .lupe {
	opacity: 1;
}
.btn-wrapper.fixed .btn {
	padding: 0;
	transform: translateX(-50%);
}
.btn-wrapper.fixed .btn img {
	transition: all 0.4s ease 0.6s;
}
.btn-wrapper .btn img {
	position: absolute;
	pointer-events: none;
	opacity: 0;
	top: 0;
	bottom: 0;
	left: -10px;
	transition: all 0.4s ease 0s;
	max-width: 12px;
}
.btn-wrapper.fixed .btn img {
	opacity: 1;
}
.btn-wrapper.fixed .btn span {
	transform: translateX(20px);
}
.btn-wrapper.fixed .btn::before {
	border-top-color: transparent; 
	border-right-color: transparent;
	border-left-color: transparent;
	border-bottom-color: transparent;
	transition: border-top-color 0.1s linear,
		border-right-color 0.1s linear,
		border-bottom-color 0.1s linear,
		border-left-color 0.1s linear;
}
.btn::before {
	position: absolute;
	top: 0;left: 0;
	content: ''; 
	width: 100%;
	height: 100%;
	transition: var(--transition);
	transform: scale(1);
}
.btn::before {
	border: 2px solid white; 
	border-radius: 20px;
}
.btn-wrapper .btn::before {
	transition: border-left-color 0.05s linear 0.8s,
		border-bottom-color 0.05s linear 0.85s,
		border-right-color 0.05s linear 0.9s,
		border-top-color 0.05s linear 0.95s;
}
.btn {
	position: relative;
	color: white;
	padding: 14px 21px;
	display: inline-block;
}
.side-menu .btn span {
	transition: var(--transition);
}
.btn span {
	color: white;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: bold;
	transition: all 0.4s ease 0.3s;
	position: relative;
	width: 100%;
    text-align: center;
    display: block;
}
.hp-banners .slider {
	width: 100%;
}
.slide {
	position: relative;
}
.h3 {
	font-size: 20px;
	font-weight: normal;
	color: var(--black);
	font-weight: 600;
	font-family: var(--font-family-2);
}
.about-us .container {
	padding: 55px 20px;
	margin-left: 0;
}
.about-us .container .h3 {
	margin-bottom: 30px;
}
.btn:not(.white,.more)::before {
	background: var(--blue);
	border-radius: 30px;
}

/* .btn:not(.more)::before {
	background: var(--black);
	border-radius: 30px;
} */

.about-us .container p:not(.h3) {
	color: var(--grey);
	line-height: 1.71;
	font-size: 14px;
	font-weight: normal;
	margin: 0;
}
.about-us .container .h3 ~ a {
	margin-top: 30px;
}

.about-us .container p strong{
	color: black;
	font-weight: 500;
}
.voices-list > .bg {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	bottom: 0;
}

@media(max-width:767px){
	.voices-list > .bg {
		max-height: 450px;
		height: 100%;
	}
}
.voices-list > .container {
	z-index: 1;
	padding: 44% 0 0 0;
}
.voices-list > .container .top {
	color: white;
	padding: 0 20px;
}
.voices-list > .container .list {
	margin-top: 50px;
	background: #171719;
}
.voices-list > .container .list > * {
	opacity: 0;
}
.voices-list > .container .list > .item {
	padding: 20px 20px 20px 20px;
	transition: all 0.4s ease-in-out;
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.voices-list > .container .list.in > * {
	opacity: 1;
}
.voices-list > .container .list > .item:nth-of-type(2) {
	transition-delay: 0.1s;
}
.voices-list > .container .list > .item:nth-of-type(3) {
	transition-delay: 0.2s;
}
.voices-list > .container .list > hr {
	border: none;
	border-bottom: 1px solid #37363f;
	margin: 0;
}
.voices-list > .container .top .h2 {
	line-height: 1.17;
	font-size: 35px;
	margin-bottom: 31px;
}
.voices-list > .container .top .lang p {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.55px;
	margin-bottom: 14px;
	text-transform: uppercase;
}
.voices-list > .container .top .lang p + div {
	border: 2px solid white;
	font-weight: normal;
}
.voices-list > .container .top .lang p + div > div {
	padding: 13px 13px 13px 10px;
}
audio {
	display: none;
}
.voices-list .music-control {
	position: relative;
}
/* .voices-list .item {
	display: flex;
	flex-wrap: wrap;
} */
.voices-list .resources > * .control-btn.pause,
.voice-mod .resouces > * .control-btn.pause,
.getQuote .item .resources > * .control-btn.pause {
	background: url(/images/icons/pause.svg) 0%/contain no-repeat !important;
}

.voices-list .item ~ .playLine,
.voice-mod .item ~ .playLine,
.getQuote .item ~ .playLine {
	position: relative;
    transition: var(--transition);
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    min-width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 30px;
    margin: 0;
	background: rgba(24,0,19,0.71);
    z-index: 1;
}

.voice-mod .item ~ .playLine,
.getQuote .item ~ .playLine {
	background-color: #171719;
}

.voices-list .item ~ .playLine.active,
.voice-mod .item ~ .playLine.active ,
.getQuote .item ~ .playLine.active {
	max-height: 100%;
    padding-top: 25px;
	padding-bottom: 25px;
    height: 100%;
}

.voices-list .item ~ .playLine span,
.voice-mod .item ~ .playLine span,
.getQuote .item ~ .playLine span {
	display: block;
    position: relative;
    font-size: 10px;
    line-height: 1;
    color: #ffffff;
}

.voices-list .item ~ .playLine .bar,
.voice-mod .item ~ .playLine .bar,
.getQuote .item ~ .playLine .bar {
	position: relative;
    margin: 0 12px;
    flex: 1;
    max-width: 100%;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255,0.25);
    cursor: pointer;
}

.voices-list .item ~ .playLine .bar span,
.voice-mod .item ~ .playLine .bar span,
.getQuote .item ~ .playLine .bar span {
	position: absolute;
    top: 0;
    bottom: 0;
    background-color: #ffffff;
    width: 0;
    border-radius: inherit;
}

.voices-list .item ~ .playLine .bar span::before,
.voice-mod .item ~ .playLine .bar span::before,
.getQuote .item ~ .playLine .bar span::before {
	content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: inherit;
    pointer-events: none;
}

.voices-list .item .pic {
	border-radius: 100%;
	max-width: 43px;
	max-height: 43px;
	overflow: hidden;
	margin-left: 10px;
	width: 100%;
}
.voices-list .item .pic img {
	-webkit-user-drag: none; 
	-khtml-user-drag: none; 
	-moz-user-drag: none; 
	-o-user-drag: none; 
	user-drag: none; 
	object-fit: cover;
}
.voices-list .item .info {
	margin-left: 20px;
	padding-top: 17px;
	display: flex;
	flex-direction: column;
	max-width: 200px;
}
.voices-list .item .info .about {
	color: #777676;
}
.voices-list .item .info .about span,
.voices-list .item .info .about > div:first-child {
	color: white;
}
.voices-list .item .info .about > div:nth-child(2) > span:last-child {
	margin-left: 15px;
}
.voices-list .item .info .about {
	font-size: 11px;
	font-weight: 500;
}
.voices-list .item .info .about div span {
	margin-right: 3px;
}
.voices-list .item .info .about div:not(:first-child) {
	margin: 4px 0;
}
.voices-list .item .info .about div:first-child {
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 16px;
	text-transform: uppercase;
}
.voices-list .item .btns-container {
	margin-left: auto;
	display: flex;
	width: 100%;
	gap:10px
	/* flex-direction: column; */
}
/* .voices-list .item .btns-container > * {
	padding: 0 5px;
	flex: 1;
} */
.voices-list .item .btns-container > * > * {
	width: 100%;
}
.voices-list .item .btns-container .fav::before {
	background: white;
}
.voices-list .item .btns-container .fav div {
	color: black;
}
.voices-list .item .btns-container div {
	font-weight: 600;
	color: white;
	font-size: 12px;
	text-transform: uppercase;
	text-align: center;
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
}
/* .voices-list .item .btns-container .btn-parent:nth-child(1) {
	margin-bottom: 10px;
} */
/* .voices-list .item .btns-container .btn-parent:nth-child(2) {
	margin-left: 5px;
} */
.fav.in svg .st0,
.fav svg .inner {
	transition: var(--transition);
}
.fav.in svg .inner {
	fill: var(--blue);
}
.fav.in svg .st0 {
	fill: transparent;
}
.voices-list .item .btns-container > * > div div {
	display: flex;
	align-items: center;
	justify-content: center;
}
.voices-list .item .btns-container > * > div img,
.voices-list .item .btns-container > * > div svg {
	max-width: 16px;
	max-height: 14px;
	width: 100%;
	margin-right: 9px;
}
.resources {
	margin: 15px 0 25px 0;
}
.voices-list .item .resources {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}
.resources > * {
	padding: 5px 0;
	color: white;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	/* margin-right: 31px; */
}
.resources > * p {
	margin: 0;
	font-size: 12px;
  	font-weight: 600;
	cursor: pointer;
}

.resources > * .control-btn.download {
	background: url('/images/icons/download.svg') 0%/contain no-repeat;
	margin-right: 10px;
}

.resources > * .control-btn {
	cursor: pointer;
	width: 20px;
	height: 20px;
	background: url('/images/icons/play.svg') 0%/contain no-repeat;
	margin-right: 11px;
	transform: scale(1);
	transition: var(--transition);
}



.resources > * .control-btn.pause {
	background: url(/images/icons/pause.svg) 0%/contain no-repeat;
}


.resources > * .sep {
	margin-left: 15px;
	border-left: 1px solid #777676;
	height: 20px;
}

.content.host .template.info .host-files-container .bottom .item .lower .resources > * .sep {
	margin-left: 25px;
}

.resources > .audio:last-of-type > .sep, .resources > .video:last-of-type > .sep, 
.listing.voices .resources > .audio:nth-child(3) > .sep, .listing.voices .resources > .video:nth-child(2) > .sep,
.listing.voices .resources > .audio:nth-child(5) > .sep, .listing.voices .resources > .video:nth-child(5) > .sep,
.listing.voices .resources > .audio:nth-child(9) > .sep, .listing.voices .resources > .video:nth-child(9) > .sep{
	display: none;
}


.resources > * .control-btn:hover {
	transform: scale(1.1);
}
.resources > .video .control-btn:not(.download) {
	width: 27px;
	height: 28px;
	background: url('/images/icons/yt-play.svg') 0%/contain no-repeat;
}

.voices-list {
	display: flex;
	flex-wrap: wrap;
}
.voices-list > a {
	margin-top: 39px;
	left: 50%;
    transform: translateX(-50%);
	z-index: 1;
	margin-bottom: 30px;
}


.voices-list .resources > .video .control-btn {
	height: 20px;
}

@media(min-width: 768px){
	.voices-list > .btn:not(.white,.more)::before {
		background: transparent;
	}
	.voices-list > .container .list > .item {
		display: flex;
		align-items: flex-start;
		flex-wrap: nowrap;
	}

	.voices-list .item .info {
		max-width: 592px;
	}

	.voices-list .item .btns-container {
		display: flex;
		flex-direction: column;
		width: 209px;
		gap: 0;
	}

	.voices-list .item .resources {
		flex-direction: row;
		margin-bottom: 0;
	}

	.voices-list .item .btns-container div:nth-of-type(1) {
		order: 2;
		margin-right: 0;
	}

	.voices-list .item .btns-container .btn-parent:nth-child(2) {
		margin-left: 0;
	}

	.voices-list .item .btns-container div .btn.white.fav {
		margin-top: 0;
		margin-bottom: 10px;
	}

	.voices-list .item .info .about div:not(:first-child) {
		display: inline-block;
	}

}

@media(max-width:767px){
	.index .voices-list > .container .top .lang p + div > div {
		padding: 10px 13px 10px 10px;
	}
	.index .voices-list .selected {
		font-size: 10px;
	}

	.index .voices-list > .container .list > .item{
		padding-bottom: 30px;
	}
}
.how-it-works {
	margin-top: 65px;
	font-size: 14px;
}
.how-it-works .container {
	text-align: center;	
}
.how-it-works .container p:not(.h2) {
	margin: 0;
}
.how-it-works p:not(.h2) {
	font-size: 14px;
	font-weight: normal;
	line-height: 1.71;
	color: var(--grey);
}
.how-it-works .h2 {
	font-size: 35px;
	margin-bottom: 38px;
}
.how-it-works .img-container {
	margin-top: 58px;
}
.how-it-works .img-container .h2 {
	font-size: 30px;
	margin: 60px 0 14px 0;
}
.how-it-works .img-container .bg + div {
	padding: 0 20px;
}
.how-it-works .list-container {
	margin: 0;
	width: 76vw;
}
.how-it-works .list-container > * {
	margin: 30px 0;
} 
.how-it-works .list-container .list-item {
	display: flex;
}
.how-it-works .list-container .list-item .text > p:first-child {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5;
	font-family: var(--font-family-2);
	margin-bottom: 7px;
	color: var(--black);
}
.how-it-works .list-container .number {
	padding: 7px 16px;
	position: relative;
	margin-right: 26px;
	max-width: 40px;
	max-height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.how-it-works .list-container .number span {
	position: relative;
	z-index: 1;
	color: white;
	font-size: 28px;
	font-weight: 100;
}
.how-it-works .list-container .number::after {
	position: absolute;
	top: 0;left: 0;right: 0;bottom: 0;
	margin: auto;
	background: var(--orange);
	content: '';
	border-radius: 100%;
}
.how-it-works .img-container:nth-child(3) {
	margin-top: 80px;
}
.services {
	margin-top: 80px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 80px 0;
}

@media(max-width:767px){
	.how-it-works {
		margin-top: 25px;
	}
	.how-it-works .h2 {
		font-size: 35px;
		margin-bottom: 28px;
	}

	.how-it-works .img-container .h2{
		letter-spacing: -0.75px;
	}
	.how-it-works .list-container{
		width: 100%;
	}

	.how-it-works .list-container > *:last-of-type{
		margin-bottom: 10px;
	}

	.how-it-works .img-container:nth-child(3) {
		margin-top: 70px;
	}

	.services{
		margin-top: 59px;
	}

	.services.new-services{
		margin-top: 0;
		padding: 80px 0 15px;
	}
}
.slick-slider {
	overflow: hidden;
}
.services .slider .slick-track {
	margin: auto;
}
.services .bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.services .slider .slide {
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	/* padding: 60px 30px; */
	color: white;
	margin: 0 10px;
	min-height: 434px;
}

.services.new-services .slider .slide {
	min-height: 300px;
}


.services .slider .slide .inner {
	display: flex;
	flex-direction: column;
	margin-left: 1px;
	z-index: 1;
	height: 100%;
	padding-bottom: 60px;
}
.services:not(.new-services) .slider .slide .top {
	/* display: flex;
	width: 100%;
	border-bottom: 1px solid #33263e;
	padding-bottom: 50px; */
	position: relative;
	padding-right: 31px;
	padding-left: 34px;
	margin-top: auto;
}
.services:not(.new-services) .slider .slide .top .h2 {
	font-family: var(--font-family-2);
	font-size: 35px;
	font-weight: bold;
	line-height: 1.29;
	letter-spacing: 0.88px;
	text-align: left;
	color: #ffffff;
	margin-bottom: 0;
	margin-right: 50px;
}

.services.new-services .slider .slide .top .h2 {
	font-family: var(--font-family-2);
	font-size: 30px;
	font-weight: bold;
	line-height: 1.29;
	letter-spacing: 0.88px;
	text-align: left;
	color: #ffffff;
	margin-bottom: 0;
	margin-right: 36px;
}


.services .slider .slide .top .more-info {
    max-width: 32px;
    max-height: 32px;
    position: absolute;
    right: 34px;
    cursor: pointer;
    bottom: 0;
}

.services.new-services .slider .slide .top .more-info {
    position: relative;
    right: 34px;
    cursor: pointer;
    bottom: 0;
	top: 15px;
	left:0;
}


.services .slider .slide hr {
	margin: 30px 31px 17px;
    border-color: #ffffff;
    opacity: 0.14;
	border-top: 1px solid rgba(0,0,0,.1);
}
.services .slider .slide .resources {
	margin: 0;
}
.services .slider .slide .resources .audio::before {
	background-color: #04030e;
    opacity: 0.5;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
    height: 100%;
    max-height: 0;
}
.services .slider .slide .resources > *:first-child {
	margin-top: 0;
}
.services .slider .slide .resources > * {
	position: relative;
    transition: var(--transition);
    flex-direction: column;
    align-items: baseline;
    margin: 4px 0;
    padding: 17px 0 11px;
}
.services .slider .slide .bottom .audio > div {
	display: flex;
    align-items: center;
    margin-left: 31px;
    margin-right: auto;
    transition: var(--transition);
    z-index: 5;
}
.services .slider .slide .bottom .resources > * .inner-source {
	position: relative;
    transition: var(--transition);
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    min-width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    padding-left: 31px;
    padding-right: 31px;
    margin: 0;
    z-index: 1;
}
.services .slider .slide .bottom .resources > * .inner-source span {
	display: block;
    position: relative;
    font-size: 10px;
    line-height: 1;
    color: #ffffff;
}
.services .slider .slide .bottom .resources > * .inner-source .bar {
	position: relative;
    margin: 0 12px;
    flex: 1;
    max-width: 100%;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255,0.25);
    cursor: pointer;
}
.services .slider .slide .bottom .resources > * .inner-source .bar > span {
	position: absolute;
    top: 0;
    bottom: 0;
    background-color: #ffffff;
    width: 0;
    border-radius: inherit;
}
.services .slider .slide .bottom .resources > * .inner-source .bar > span::before {
	content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: inherit;
    pointer-events: none;
}
.services .slider .slide .bottom .resources > * .inner-source.active {
    max-height: 100%;
    padding-top: 25px;
    height: 100%;
}
.services .slider .slide .resources .audio.active::before {
    max-height: 100%;
}
.services .slider + .slider-arrows {
	justify-content: center;
	align-content: center;
	display: flex;
	position: relative;
	opacity: 0.4;
	max-width: 92px;
	margin: 31px auto 0 auto;
	padding-bottom: 39px;
}

.services.new-services .slider + .slider-arrows {
	margin: 0px;
	padding-bottom: 0px;
}

.services .slider + .slider-arrows > *:first-child {
	left: -37px;
	transform: rotate(180deg);
	transition: var(--transition);
}
.services .slider + .slider-arrows > *:last-child {
	right: -37px;
	transition: var(--transition);
}
.services:not(.new-services) .slider + .slider-arrows > * {
	cursor: pointer;
	width: 32px;
	height: 60px;
	top: 0;
	bottom: 0;
	margin: auto;
	position: absolute;
	background: url('../images/icons/arrow.svg') no-repeat;
}

.services.new-services .slider + .slider-arrows > * {
	cursor: pointer;
	width: 32px;
	height: 60px;
	top: 0;
	bottom: 0;
	margin: auto;
	position: absolute;
	mask-image: url('../images/icons/arrow.svg');
	-webkit-mask-image: url('../images/icons/arrow.svg');
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	background-color: var(--blue);;
}


.services .slider + .slider-arrows > *:first-child:hover {
	transform: rotate(180deg) translate(10px);
}
.services .slider + .slider-arrows > *:last-child:hover {
	transform: translate(10px);
}
.services .resources > * p {
	font-size: 11px;
	cursor: pointer;
}
.services > a {
	margin-top: 41px;
}

@media(max-width:767px){
	
	.services .slider .slide .top .h2{
		margin-right: 0;
		font-size: 25px;
		line-height: 1.4;
  		letter-spacing: -0.63px;
	}

	.services .slider .slide {
		min-height: 380px;
	}

	.services .slider .slide .inner{
		padding-bottom: 40px;
	}
	.services .slider .slide .bottom .audio > div{
		margin-left: 0;
	}
	.services .slider .slide .resources > *{
		padding-inline: 30px;
	}
	.services .slider .slide .bottom .audio > div{
		gap: 11px;
	}

	.services .resources > * p{
		flex: 1;
	}

	.services .slider .slide .resources > * .control-btn{
		margin-right: 0px;
	}

	.services .slider + .slider-arrows{
		margin-top: 0;
		max-width: 50px;
		opacity: 1;
	}

	.services.new-services .slider + .slider-arrows {
		margin: 31px auto 0 auto;
		padding-bottom: 39px;

	}

	

	.services .slider + .slider-arrows > *{
		width: 20px;
		height: 38px;
		opacity: .3;
	}
	.services .slider + .slider-arrows > *:first-child{
		left: -20px;
	}
	.services .slider + .slider-arrows > *:last-child{
		right: -20px;
	}

	.services:not(.new-services) .slider + .slider-arrows > *{
		width: 20px;
  		height: 38px;
	}

	
}
.hp-highlights {
	margin-top: 20px;
}
.hp-highlights .slider {
	background: var(--black);
	color: white;
}
.hp-highlights .slider .text-container {
	padding: 90px 20px 0 20px;
	text-align: center;
}
.hp-highlights .slider .text-container .h2 {
	font-size: 25px;
	margin-bottom: 32px;
	line-height: 1.4;
	letter-spacing: -0.63px;
	padding: 0 9px;
}
.hp-highlights .slider .text-container .h2 + p {
	line-height: 1.83;
	letter-spacing: normal;
	font-size: 12px;
	margin-bottom: 27px;
}
.hp-highlights .slider .slide {
	padding-bottom: 41px;
}
.hp-banners .bg picture::after,
.hp-highlights .slider .slide .bg::after {
	top: 0;left: 0;right: 0;bottom: 0;
	margin: auto;
	position: absolute;
	content: '';
	mix-blend-mode: multiply;
	background: linear-gradient(370deg, rgba(0,0,0,0.7), rgba(255,255,255,0));
}
.hp-highlights .slick-dots {
	bottom: auto;
	top: 185px;
}
.hp-clients {
	padding: 80px 0;
}
.hp-clients .h2 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 47px;
	text-align: center;
}

@media(max-width:767px){
	.hp-clients {
		padding: 80px 0 0;
	}
	.hp-clients .h2{
		margin-bottom: 24px;
	}
}
.hp-clients .container {
	width: 100%;
}
.hp-clients .container .logos-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.hp-clients .container .logo {
	position: relative;
	max-width: 33.333%;
	padding: 11px;
}
.hp-clients .container .logo img {
	width: 100%;
	height: 100%;
	opacity: 0.5;
	aspect-ratio: 280 / 280;
}
footer {
	background: var(--black);
	padding-bottom: 45px;
}
footer > div:first-child {
	background: #171719;
	padding: 50px 0;
}
footer > div:last-child {
	padding: 5px 0 15px 0;
}

footer > div > div .left > a {
	display: block;
	width: 86px;
	height: 86px;
	margin: auto;
	position: relative;
}
footer > div > div .left > a::before {
	content: "";
	position: absolute;
	top: 0;left: 0;right: 0;bottom: 0;
	width: 100%;
	height: 100%;
	background-image: url(/images/iso-9001.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transition: var(--transition);
}
footer > div > div .left > a:hover::before {
	background-image: url(/images/iso-9001-white.png);
}
footer > div > div .left {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
footer ul {
	list-style: none;
	padding: 0;
}
footer ul li {
	margin: 20px 0;
	color: white;
	text-align: center;
}
footer ul li a:hover {
	opacity: 1;
}
footer ul li a {
	transition: var(--transition);
	color: white;
	opacity: 0.5;
	font-size: 10px;
	text-align: center;
	display: inline-block;
}
footer ul li:first-child,
footer ul li a span {
	opacity: 1;
} 
footer ul:nth-child(3) {
	margin: 40px 0;
}
footer ul:nth-child(3) li a:first-child {
	opacity: 1;
}
footer ul:nth-child(3) li a span {
	font-size: 14px;
	font-weight: bold;
	color: white;
}
header .social {
	margin: 40px 0 60px 0;
}
.social {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	padding: 0;
}
.social a {
	opacity: 1;
}
.social li {
	margin: 0 13px;
}
.social li a {
	width: 16px;
    height: 15px;
    font-size: initial;
	transition: var(--transition);
}
.social li i::before {
	/* font-size: 17px; */
	color: white;
}
footer > div:nth-child(2) {
	opacity: 0.5;
	filter: grayscale(100);
}
footer > div:nth-child(2) > div:nth-child(1) > img {
	height: 100%;
	max-height: 20px;
}
footer .icon-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 45px 0;
}
footer .icon-container img {
	height: 100%;
	max-height: 27px;
	margin: 0 10px;
	display: block;
}
footer .icon-container:first-child img:nth-child(1) {
	height: 25px;
}
footer .icon-container:first-child img:nth-child(2) {
	height: 10px;
}
footer .icon-container:first-child img:nth-child(3) {
	height: 18px;
}
.video-fullscreen {
	position: fixed;
	top: 0;left: 0;right: 0;bottom: 0;
	margin: auto;
	background: rgba(0, 0, 0, 0.7);
	pointer-events: none;
	opacity: 0;
	transition: var(--transition);
	z-index: 3;
}
.video-fullscreen.in {
	opacity: 1;
	pointer-events: all;
}
.video-fullscreen > div:not(.close){
	width: 100vw;
    height: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    position: relative;
	padding-top: 60px;
}
.video-fullscreen video {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	height: calc(100vh - 60px);
	margin-top: 60px;
}
.video-fullscreen .close {
	position: absolute;
    top: 21px;
    right: 21px;
    height: 40px;
    width: 40px;
	z-index: 1;
	opacity: 1;
}
.video-fullscreen .close span {
	position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 40px;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition);
    -webkit-transition: var(--transition);
}
.video-fullscreen .close span:first-child {
	transform: rotate(45deg);
}
.video-fullscreen .close span:last-child {
	transform: rotate( -45deg);
}
header .social + div {
	position: relative;
}
footer .right ul li:first-child a {
	opacity: 1;
}
footer .right ul li a span {
	font-size: 14px;
	font-weight: bold;
}
@media not all and (min-resolution:.001dpcm) and (max-height: 700px){
    .hp-banners .bg + .text-container { 
        top: calc(0.5 * var(--wHeight));
    }

	.hp-banners .banners .right-side .slick-dots {
		bottom: calc(100% - 49vh);
	}
}
@media(min-width: 768px) {
	.container.container-sm {
		max-width: 890px; /* 850 + 40 padding */
	}

	header .menu > a:first-child img {
		width: 10px;
		height: 11px;
	}

	header .menu > a:nth-child(2) img {
		width: 11px;
		height: 11px;
	}

	header .menu > a:nth-child(3) img {
		width: 12px;
		height: 11px;
	}

	header .side-menu .social + div > a {
		height: 350px;
	}

	.about-us .container {
		max-width: 88vw;
		padding: 60px 20px 63px 20px;
	}
}

@media (min-width: 992px) {
	header .side-menu .social + div > a {
		height: 450px;
	}

	.hp-banners .banners .right-side .slick-dots {
		bottom: calc(100% - 27vh);
	}
}

@media(min-width: 1200px) {

	.hp-highlights .slide .bg,
	.services > .bg,
	.voices-list > .bg {
		z-index: 1;
	} 
	.hp-highlights .slide .bg img:first-child,
	.services > .bg img:first-child,
	.voices-list > .bg img:first-child {
		z-index: 2;
	}
	.btn-wrapper .btn::before {
		background: transparent;
	}
	.btn-wrapper .btn:hover::before {
		background: white;
	}
	.btn-wrapper .btn span,
	.btn-wrapper .btn::before {
		transition: var(--transition);
	}
	.btn-wrapper .btn:hover span {
		color: var(--orange);
	}
	header .menu > a {
		color: white;
	}
	header .menu a:last-child:hover > span,
	header .menu > a:hover,
	header .menu > a.favorite-container:hover,
	header.open .menu > a.favorite-container:hover {
		color: var(--orange);
	}

	header .menu > .language_container:hover span {
		color: var(--orange);
	}

	header .menu > a:hover img {
		filter: none;
	}

	header > .menu a:nth-child(2) {
		display:inline-flex;
	}

	header .menu > a:first-child,
	header .menu > a {
		margin: 0 25px;
		width: inherit;
	}
	header .menu > a:first-child {
		margin-left: 0;
		margin-right: 15px;
	}
	header .menu > a:last-child {
		margin-right: 0;
	}
	header .menu-toggle {
		cursor: pointer;
		margin: 18px 0 0 0;
	}
	header .menu-toggle:hover span {
		background: var(--orange);
	}
	header .menu {
		padding-top: 14px;
	}
	header .menu a:last-child > span {
		left: auto;
		width: auto;
	}

	header .menu > a.favorite-container {
		padding-right: 0px;
	}

	header .menu span {
		font-size: 12px;
	}
	header {
		padding: 21px 50px 21px 17px;
		max-height: 87px;
	}
	body:not(.index){
		margin-top: 80px;
	}
	header .menu {
		color: white;
	}
	header .menu a:last-child > span {
		position: relative;
		opacity: 1;
	}
	header .logo a {
		height: 31px;
		width: 255px;
	}
	header .menu {
		margin-left: auto;
		margin-right: 55px;
	}
	header .menu > a .favorite {
		padding: 3px 2px;
		top: -12px;
    	right: -20px;
		transition: var(--transition);
	} 
	header .menu > a .favorite p {
		padding: 2px 4px;
		margin: 0; 
		font-size: 10px;
	}
	header .menu > a .favorite.hidden {
		opacity: 0;
		pointer-events: none;
	}
	header .menu > a.active span {
		color: var(--blue);
	}
	header .menu > a.active .favorite p {
		color: #ffffff;
	}
	header .side-menu .social + div,
	header .side-menu .menu {
		width: 50%;
	}
	header .side-menu {
		display: flex;
		overflow-x: hidden;
		padding-top: 0;
	}
	header .side-menu .social {
		position: absolute;
		bottom: 40px;
		right: 51px;
		top: auto;
		margin: 0;
	}
	header .side-menu .social {
		opacity: 0;
		pointer-events: none;
		transition: var(--transition);
	}
	header.open .side-menu .social {
		z-index: 3;
		opacity: 1;
		pointer-events: all;
	}
	header.open .side-menu .social + div {
		transform: translateY(0);
	}
	header .side-menu .social + div {
		height: 100vh;
		display: flex;
		flex-direction: column;
		position: fixed;
		transform: translateY(100vh);
		transition: var(--transition);
	}
	header .side-menu .social + div > a {
		max-height: 50%;
		height: 100%; 
	}
	header .side-menu .menu {
		order: 1;
		margin: 0;
		display: flex;
		justify-content: center;
		padding-top: 143px;
		margin-left: auto;
	}
	header .menu > ul > li:first-child {
		margin-top: 0;
	}
	header .side-menu .menu ul {
		max-width: 510px;
		width: auto;
		margin: 0;
	}
	.container {
		max-width: 1064px; /* 1024 + 40 padding */
	}
	.hp-banners > .banners {
		display: flex;
	}
	.hp-banners .banners > * {
		width: 50vw;
	}
	.h2 {
		font-size: 58px;
	}
	.hp-banners .banners .right-side .slick-dots,
	.hp-banners .text-container {
		max-width: 540px;
		left: 0;right: 0;
		margin: auto;
		padding: 0 20px;
		margin-left: 10%;
	}
	.hp-banners .banners .right-side .slick-dots {
		bottom: auto;
		top: 46vh;
	}
	.hp-banners .text-container {
		cursor: pointer;
	}
	.hp-banners .bg + .text-container,
	.hp-banners .banners .right-side .text-container,
	.hp-banners .text-container {
		bottom: auto;
		top: 51vh;
	}
	header .lang-container {
		top: 35px;
		left: auto;
		right: 400px;
	}

	header .menu .h2 {
		display: inline-block;
		font-size: 30px;
	}
	
	header .menu .h2:hover {
		color: var(--blue);
	}
	header .menu .h3 {
		font-size: 13px;
	}
	.menu .sub .h2::after {
		right: -30px;
		top: 13px;
		bottom: auto;
	}
	header .lang-container li {
		font-size: 12px;
	}


	header .side-menu {
		transform: translateX(0);
		background: transparent;
		transition: all 0.1s ease 0.4s;
		pointer-events: none;
		overflow: hidden;
		opacity: 0;
	}
	header.open .side-menu {
		pointer-events: all;
		opacity: 1;
		transition: all 0.1s ease;
	}
	header .side-menu .menu {
		transform: translateY(-100vh);
		transition: var(--transition);
		background: var(--black);
	}
	header.close .side-menu .menu {
		transform: translateY(100vh);
	}
	header.close .side-menu .social + div {
		transform: translateY(-100vh);
	}
	header.open .side-menu .menu {
		transform: translateY(0);
	}

	/* header.open > .menu a:last-child {
		padding-right: 20px;
	} */

	header.open .menu > a:not(.favorite-container,.login-container){
		opacity: 0;
		pointer-events: none;
		display: none;
	}
	header.open .menu .top_menu{
		opacity: 0;
		pointer-events: none;
		display: none;
	}

	header .bg + .text-container {
		max-width: 100%;
		padding-bottom: 60px;
		justify-content: flex-end;
	}
	header .bg + .text-container .h2 {
		font-size: 45px;
	}
	.btn {
		padding: 22px 42px;
	}
	.btn span {
		font-size: 12px;
	}
	.btn-wrapper {
		position: relative;
		flex: 1;
		background: transparent;
	}
	.search-form {
		top: auto;
		bottom: 0;
		width: 100%;
		left: 0;right: 0;
		margin: auto;
		max-width: 740px
	}
	.btn::before {
		border-radius: 40px;
	}
	
	.search-form .filter {
		padding: 30px;
	}
	.search-form .select-wrapeper {
		flex: initial; 
		max-width: 221px;
		width: 100%;
	}
	.search-form .select-wrapeper .select .selected::after {
		width: 10px;
		height: 5px;
	}
	.search-form .btn-wrapper {
		flex: initial;
		width: 100%;
		padding: 0;
	}
	.search-form .btn-wrapper .btn {
		padding: 19px 46px;
		margin-left: auto;
		left: auto;
		transform: initial;
	}
	.select .options > * {
		cursor: pointer;
		transition: var(--transition);
	}
	.select .options > *:hover {
		opacity: 1;
	}
	.about-us .container {
		margin: 0 auto;
		max-width: 700px;
		padding: 120px 0;
	}
	.about-us .container .h3 {
		font-size: 24px;
		margin-bottom: 43px;
	}
	.about-us .container .h3 ~ div {
		margin-top: 40px;
	}
	.about-us .container p:not(.h3) {
		font-size: 16px;
	}
	.voices-list > .container {
		max-width: 920px;
		margin: 0 auto;
		padding: 0;
	}
	.voices-list > .container .top {
		display: flex;
		padding: 0;
	}
	.voices-list > .container .top .h2 {
		font-size: 58px;
		margin-right: 60px;
		margin-bottom: 0;
	}
	.voices-list > .container .top .lang {
		width: 100%;
		max-width: 220px;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}
	.select .selected {
		cursor: pointer;
	}
	.voices-list > .container .list > .item {
		padding: 22px;
		background: rgba(24,0,19,0.71);
	}
	.voices-list .item .pic {
		margin-bottom: 0;
	}
	.voices-list .item .info .about div:not(:first-child) {
		display: inline;
	}
	.voices-list > .container .list {
		background: transparent;
	}
	.voices-list > .container .list hr {
		border: 0;
		background: black;
		height: 1px;
		opacity: 0;
		transition: all 0.4s ease-in-out;
	}
	.voices-list .item .info .about div:not(:first-child) {
		margin: 0 5px;
	}
	.voices-list .resources {
		display: flex;
	}
	.voices-list .resources > *:first-child {
		margin-left: 0;
	}

	.voices-list .resources > * {
        margin-right: 15px;
    }

	.voices-list .item .btns-container {
		margin-left: auto;
	}
	.voices-list .item .btns-container > * {
		padding: 5px 0;
		max-height: 60px;
	}
	.voices-list .item .btns-container > *:first-child {
		order: -1;
	}
	.voices-list .item .btns-container > * > * {
		padding: 16px 37px;
		cursor: pointer;
	}
	.voices-list .item .btns-container div {
		height: auto;
	}
	.btn:hover::before {
		transform: scale(1.1);
	}
	.voices-list {
		display: block;
		padding: 120px 0;
	}
	.voices-list > .bg {
		height: 100%;
	}
	.voices-list > a {
		margin-top: 60px;
	}
	.how-it-works {
		padding-bottom: 123px;
	}
	.how-it-works .h2 {
		font-size: 58px;
	}
	.how-it-works .container {
		max-width: 580px;
	}
	.how-it-works .container p:not(.h2) {
		font-size: 16px;
	}
	.how-it-works .img-container {
		display: flex;
	}
	.how-it-works .img-container .bg + div {
		width: 50%; 
		/* padding-top: 140px; */
	}
	.how-it-works .img-container .bg + div > div {
		max-width: 450px;
		margin: 0 auto;
	}
	.how-it-works .img-container:nth-of-type(2) .bg + div > div{
		margin-left: auto;
		margin-right: 121px;
	}
	.how-it-works .img-container:nth-of-type(3) .bg + div > div {
		margin-right: 50px;
		margin-left: 121px;
	}
	.how-it-works .list-container + a {
		margin-top: 6px;
	}
	.how-it-works .list-container {
		width: auto;
	}
	.how-it-works .img-container:nth-of-type(2) .bg {
		margin-right: auto;
		order: 1;
		width: 100%;
		max-width: 650px;
	}
	.how-it-works .img-container:nth-of-type(3) .bg {
		margin-left: auto;
		order: 0;
		width: 100%;
		max-width: 650px;
	}
	.how-it-works .img-container:nth-of-type(2) {
		margin-top: 100px;
		align-items: center;
	}
	.how-it-works .img-container:nth-of-type(3) {
		margin-top: 120px;
	}
	.how-it-works .list-container .list-item .text > p:first-child {
		font-size: 24px;
	}
	.how-it-works .list-container .number {
		max-width: 51px;
		max-height: 51px;
		width: 100%;
		height: 100%;
	}
	.how-it-works p:not(.h2) {
		font-size: 16px;
	}
	.how-it-works .img-container .h2 {
		margin-top: 0;
		font-size: 42px;
		margin-bottom: 51px;
		max-width: 420px;
	}
	.services {
		margin-top: 0;
		display: block;
		padding: 120px 0;
	}
	.services.new-services {
		margin-top: 0;
		display: block;
		padding: 120px 0 0;
	}
	.services > .bg ~ * {
		position: relative;
		z-index: 1;
	}
	.services .container {
		max-width: 1202px;
	}
	.services > a {
		left: 50%;
		transform: translateX(-50%);
	}
	.services .slick-track {
		display: flex;
	}
	.services .slider .slide {
		margin: 0 15px;
		height: inherit !important;
	}
	.services .resources > * p {
		letter-spacing: 0.61px;
	}
	.services .slider + .slider-arrows {
		position: absolute;
		top: 0;left: 0;
		width: 100%;
		max-width: 100%;
		height: 100%;
		pointer-events: none;
		justify-content: space-between;
	}
	.services .slider + .slider-arrows > * {
		pointer-events: all;
	}
	header.open .side-menu .social + div a:hover .bg {
		transform: scale(1.2);
	}
	header.open .side-menu .social + div a:hover .btn::before {
		background: white;
	}
	header.open .side-menu .social + div a:hover .btn span {
		color: var(--orange);
	}
	.hp-highlights .container {
		max-width: 1340px;
	}
	.hp-highlights .slider {
		height: 100%;
		max-height: 600px;
	}
	.hp-highlights .slider .text-container {
		position: absolute;
		top: 222px;
		padding: 0;
		max-width: 600px;
		text-align: left;
		left: 123px;
		z-index: 2;
	}
	.hp-highlights .slider .slide {
		padding-bottom: 0;
	}
	.hp-highlights .slider .text-container .h2 {
		padding: 0;
		font-size: 45px;
		line-height: 1.22;
		letter-spacing: -1.13px;
	}
	.hp-highlights .slider .text-container .h2 + p {
		font-size: 14px;
		font-weight: normal;
		line-height: 1.71;
	}
	.hp-highlights .slick-dots {
		top: auto;
		bottom: 42px;
	}
	.hp-clients {
		padding: 120px 0;
	}
	.hp-clients .h2 {
		font-size: 24px;
		margin-bottom: 65px;
	}
	.hp-clients .container .logos-container {
		margin: -25px;
	}
	.hp-clients .container .logo {
		max-width: 14.28%;
		flex-basis: 14.27%;
		padding: 25px;
	}
	footer > div > div {
		max-width: 1060px;
		margin: 0 auto;
	}
	footer ul {
		margin: 0;
	}
	footer > div > div {
		display: flex;
		justify-content: space-between;
	}

	footer > div.bottom > div {
		align-items: end;
	}
	footer > div > div > .left {
		flex-direction: row;
	}
	footer .left ul li:not(:first-child):not(:last-child) {
		display: inline-block;
		margin-top: 16px;
		margin-bottom: 0;
		margin-left: 0;
	}
	footer .left ul li:first-child {
		margin-top: 0;
		margin-bottom: 0;
	}
	footer .left ul li:last-child {
		margin-top: 26px;
		margin-bottom: 0;
	}
	footer .left ul li {
		margin: 9px;
	}
	footer ul li {
		text-align: left;
	}
	footer ul li a,
	footer ul li {
		font-size: 12px;
		line-height: 1;
	}
	footer .social {
		justify-content: left;
		margin-top: 27px;
	}
	footer ul:nth-child(3) {
		margin: 30px 0;
	}
	.social li {
		transition: var(--transition);
	}
	.social li:hover a{
		transform: scale(1.1);
	}
	footer .social li:first-child {
		margin-left: 0;
	}
	footer .right ul li a span {
		font-size: 16px;
		line-height: 1;
	}
	footer .icon-container img {
		margin: 0;
	}
	footer .icon-container:first-child img:first-child {
		margin-right: 7px;
	}
	footer .icon-container:first-child img:nth-child(2), footer .icon-container:first-child img:nth-child(3), footer .icon-container:first-child img:nth-child(4) {
		margin-right: 20px;
	}
	footer .icon-container {
		margin: 0;
		justify-content: left;
		align-items: center;
	}
	footer > div:last-child {
		opacity: 0.3;
		padding-top: 50px;
		padding-bottom: 0;
	}
	footer .icon-container:last-child img {
		max-height: 38px;
	}
	.hp-clients .container {
		max-width: 1320px;
	}
	.hp-highlights {
		margin-top: 50px;
	}
	footer .right ul:first-child > li:first-child {
		margin-top: 0;
		margin-bottom: 0;
	}
	footer .right ul:first-child > li:last-child {
		margin-top: 14px;
	}
	footer > div:first-child {
		padding: 90px;
	}
	footer > div > div .left ul li:nth-child(2) a:first-child {
		margin-right: 9.5px;
	}
	footer > div > div .left ul li:nth-child(2) a:last-child {
		margin-left: 9.5px;
	}
	footer > div > div .left > a {
		margin-left: 0;
		margin-right: 24px;
	}
}

/* Modules */

.content .container.container-lg {
	max-width: 1240px;
}

.content .banner {
	padding: 80px 0;
}

.content .banner ul li {
	font-family: var(--font-family-2);
	font-size: 14px;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: -0.35px;
	text-align: center;
}

.content .banner ul li a,
.content .banner ul li span {
	opacity: 0.5;
	color: #ffffff;
}

.content .banner h1,
.content .banner .h1 {
	font-family: var(--font-family-2);
	font-size: 58px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.12;
	letter-spacing: -1.45px;
	text-align: center;
	color: #ffffff;
	margin-bottom: 0;
}

.content .banner.noimg ul li a,
.content .banner ul li::after,
.content .banner ul li span{
	color: rgba(255, 255, 255, 0.5)
}

.content .banner.noimg ul li a,
.content .banner.noimg ul li::after,
.content .banner.noimg ul li span{
	color: rgba(4, 3, 14, 0.5);
}

.content.blog .banner ul li:hover a,
.content.blog .banner ul li:focus a {
	opacity: 1;
	color: #ffffff;
}

.content.blog .banner ul li:hover a,
.content.blog .banner ul li:focus a,
.content.article .banner ul li:hover a,
.content.article .banner ul li:focus a {
	opacity: 1;
	color: #a800be;
}

.content .banner.noimg h1 {
	color: var(--black);
}

@media(max-width:767px){
	.content .banner.imgMob:not(.noimg){
		position: relative;
		padding: 0;
		margin-bottom: 40px;
	}

	.content .banner.imgMob:not(.noimg):has(+.template){
		margin-bottom: 0px;
	}

	.content .banner.imgMob:not(.noimg) .image{
		position: relative;
		margin-bottom: 30px;
	}

	.content .banner.imgMob:not(.noimg) .image::after{
		content: none;
		display: none;
	}

	.content .banner.imgMob:not(.noimg) .container ul li a,
	.content .banner.imgMob:not(.noimg) .container h1{
		color: currentColor;
	}

	.content .banner.imgMob:not(.noimg) .container h1{
		font-size: 48px;
	}
}

.content .template h2,
.content .template .h2 {
	font-family: var(--font-family-2);
	font-size: 2.461rem;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.24;
	letter-spacing: -1.05px;
	text-align: left;
	color: #04030e;
}

.content .template h3,
.content .template .h3 {
	font-family: var(--font-family-2);
	font-size: 1.846rem;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.24;
	letter-spacing: -1.05px;
	text-align: left;
	color: #04030e;
}

.content .template h4,
.content .template .h4 {
	font-family: var(--font-family-2);
	font-size: 1.538rem;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.24;
	letter-spacing: -1.05px;
	text-align: left;
	color: #04030e;
}

.content .template p, 
.content .template ul, 
.content .template ol {
	font-family: var(--font-family-1);
	font-size: 1.076rem;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	line-height: 1.88;
	letter-spacing: normal;
	text-align: left;
	color: #7c7c7d;
	margin: 1.692rem 0;
}

@media(max-width:767px) {
	.content .template h2 + p.empty{
		margin: 0;
	}
	.content .template h2:has(+ p.empty){
		margin-bottom: 0;
	}
}


.content .template ul li::before {
	background-image: url("/images/icons/arrow-sm-color.svg");
}

.content .template ol li::before {
	font-family: inherit;
	font-weight: bold;
	font-size: inherit;
	color: #04030e;
}



.content .template p strong,
.content .template p b,
.content .template ul strong,
.content .template ul b,
.content .template ol strong,
.content .template ol b,
.content .template p small strong,
.content .template p small b {
	font-weight: 500;
	color: #04030e;
}

.content .template p small {
	font-size: 0.923rem;
}

.content .template p a:not(.button) {
	font-weight: 500;
	color: #a800be;
	border-bottom: 0;
}

.content .template p a:not(.button):hover, 
.content .template li a:hover {
	border-bottom: 0;
}

.content .template p big {
	font-family: var(--font-family-1);
	font-size: 1.538rem;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.43;
	letter-spacing: normal;
	text-align: left;
	color: #04030e;
	position: relative;
	padding-left: 29px;
	margin-left: 71px;
}

.content .template p big::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 7px;
	height: 41px;
	background-color: #a800be;
}

.content .template blockquote {
	padding-left: 51px;
	margin-left: 49px;
}

.content .template blockquote p {
	font-family: var(--font-family-1);
	font-size: 1.538rem;
	font-weight: bold;
	font-stretch: normal;
	font-style: italic;
	line-height: 1.88;
	letter-spacing: normal;
	text-align: left;
	color: #04030e;
}

.content .template blockquote::before {
	background-image: url("/images/icons/quote.svg");
	left: 7px;
}

.template-module .slider-wrapper.no-bar .slider-arrows > div::before {
	background-image: url("/images/modules/arrow-white.svg");
}

.template-module .video a:before {
	background-image: url("/images/modules/play-white.svg");
}

.template-module.module4.module10 .header,
.template-module.module5.module11 .header {
	margin-bottom: 40px;
}

.template-module.module4.module10 a.button,
.template-module.module5.module11 a.button {
	padding: 18px 30px;
	font-size: 0.923rem;
}

.template-module.module4.module10 a.button::before, 
.template-module.module5.module11 a.button::before {
	background-color: #04030e;
	border-color: #04030e;
}

.template-module .button::before {
	border-radius: 26.5px;
}

.listing .accordion .toggle::before, .listing .accordion .toggle::after {
	background-color: var(--black);
}

.listing .file .link,
.listing .item .link {
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0.66px;
	color: #a800be;
	text-transform: uppercase;
	padding-right: 50px;
}

.link::after {
	background-image: url("/images/icons/arrow-link-color.svg");
	width: 28px;
	height: 13px;
}

.template .listing .accordion > div:first-of-type > h3, 
.template .listing .accordion > div:first-of-type > .h3, 
.template .listing .accordion > div:first-of-type > h2, 
.template .listing .accordion > div:first-of-type > .h2, 
.template .listing .file > h3, .template .listing .file > .h3, 
.template .listing .file > h2, .template .listing .file > .h2, 
.template .listing .item > h3, .template .listing .item > .h3, 
.template .listing .item > h2, .template .listing .item > .h2 {
	font-size: 1.846rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: normal;
}

.listing hr {
	border: 1px solid #f2efef;
}

.listing.listing-button .button {
	padding: 18px 30px;
}

.listing.listing-button .button span {
	font-weight: 600;
	letter-spacing: 0.66px;
}

.listing.listing-button .button::before {
	border-radius: 26.5px;
}

.template-module .cta {
	background-color: #04030e;
}

.template-module .cta .h2 {
	color: #ffffff;
	padding-right: 30px;
}

.template-module .cta::before {
	width: 79px;
	height: 37px;
	background-image: url("/images/icons/arrow-white.svg");
}

.template-module.module24 {
	padding: 90px 0 100px;
	background-color: var(--black);
}

/* .template-module.module24 .header {
	margin: 0 -30px;
} */

.template-module.module24:not(.bg-transparent) .header p {
	color: #ffffff;
}

.template-module.module24.bg-transparent{
	margin: 70px 0;
	padding: 0;
}

.content .listing:not(.voices) .audio {
	background-color: #171719;
	border-bottom: 1px solid #1e1d28;
}

.content .listing:not(.voices) .audio-black .audio{
	background-color: #171719;
}
.content .listing:not(.voices) .audio-purple .audio{
	background-color: var(--blue);
}
.content .listing:not(.voices) .audio-blue .audio{
	background-color: #0056c3;
}
.content .listing:not(.voices) .audio-green .audio{
	background-color: #3ca8b4;
}

.content .template-module.module24.bg-transparent .listing:not(.voices) .audio{
	border-bottom: 1px solid #fff ;
}


.listing:not(.voices) .audio .h4 {
	font-family: var(--font-family-1);
	font-size: 0.923rem;
	font-weight: 600;
	letter-spacing: 0.66px;
	color: #ffffff;
	text-transform: uppercase;
	padding-left: 20px;
	margin: .29em 0;
	cursor: pointer;
}

.listing:not(.voices) .audio .toggle {
	transition: var(--transition);
}

.listing:not(.voices) .audio .play,
.listing:not(.voices) .audio .pause {
	max-width: 20px;
	min-width: 20px;
}

.listing:not(.voices) .audio .play a::before {
    border-left: 8px solid #ffffff;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    left: 2px;
}

.content .listing:not(.voices) .audio {
	padding: 40px 50px;
}

.listing:not(.voices) .audio .audio-progress {
	max-height: 0;
	padding-left: 0;
	overflow: hidden;
	margin-top: 0;
	transition: var(--transition);
}

.listing:not(.voices) .audio .audio-progress.active {
	padding-top: 46px;
	max-height: 100%;
}

.listing:not(.voices) .audio + .audio {
	margin-top: 0;
}

.listing:not(.voices) .audio .pause a::before {
    width: 8px;
    height: 8px;
}

.listing:not(.voices) .audio .bar {
	background-color: rgba(255, 255, 255,0.25);
}

.listing:not(.voices) .audio .bar > span {
	background-color: #ffffff;
}

@media (min-width: 768px) {
	.content .banner:not(.noimg) {
		padding: 107px 0 97px;
	}

	.content .banner h1,
	.content .banner .h1 {
		font-size: 58px;
	}

	.content .template h2,
	.content .template .h2 {
		font-size: 2.285rem;
	}

	.content .template h3,
	.content .template .h3 {
		font-size: 1.714rem;
	}

	.content .template h4,
	.content .template .h4 {
		font-size: 1.428rem;
	}

	.content .template p, 
	.content .template ul, 
	.content .template ol {
		font-size: 1.142rem;
		margin: 1.571rem 0;
	}

	.content .template p small {
		font-size: 0.857rem;
	}

	.content .template p big,
	.content .template blockquote p {
		font-size: 1.428rem;
	}

	.template-module.module4.module10 a.button, .template-module.module5.module11 a.button {
		font-size: 0.857rem;
	}

	.template .listing .accordion > div:first-of-type > h3, 
	.template .listing .accordion > div:first-of-type > .h3, 
	.template .listing .accordion > div:first-of-type > h2, 
	.template .listing .accordion > div:first-of-type > .h2, 
	.template .listing .file > h3, .template .listing .file > .h3, 
	.template .listing .file > h2, .template .listing .file > .h2, 
	.template .listing .item > h3, .template .listing .item > .h3, 
	.template .listing .item > h2, .template .listing .item > .h2 {
		font-size: 1.714rem;
	}

	.listing:not(.voices) .audio .h4 {
		font-size: 0.857rem;
	}
}

@media (min-width: 992px){
	.content .banner:not(.noimg) {
		padding: 107px 0 133px;
	}

	.content .banner.noimg {
		padding: 156px 0 80px;
	}

	.content .template h2,
	.content .template .h2 {
		font-size: 2.625rem;
	}

	.content .template h3,
	.content .template .h3 {
		font-size: 1.5rem;
	}

	.content .template h4,
	.content .template .h4 {
		font-size: 1.25rem;
	}

	.content .template p, 
	.content .template ul, 
	.content .template ol {
		font-size: 1rem;
		margin: 1.375rem 0;
	}

	.content .template p small {
		font-size: 0.75rem;
	}

	.content .template p big {
		font-size: 1.25rem;
		padding-left: 27px;
		margin-left: 72px;
		line-height: 1.88;
	}

	.content .template blockquote p {
		font-size: 1.25rem;
	}

	.template-module.module4.module10 a.button, .template-module.module5.module11 a.button {
		font-size: 0.75rem;
	}

	.template .listing .accordion > div:first-of-type > h3, 
	.template .listing .accordion > div:first-of-type > .h3, 
	.template .listing .accordion > div:first-of-type > h2, 
	.template .listing .accordion > div:first-of-type > .h2, 
	.template .listing .file > h3, .template .listing .file > .h3, 
	.template .listing .file > h2, .template .listing .file > .h2, 
	.template .listing .item > h3, .template .listing .item > .h3, 
	.template .listing .item > h2, .template .listing .item > .h2 {
		font-size: 1.5rem;
	}

	.listing.listing-button .button {
		font-size: 12px;
	}

	.template-module .cta .h2 {
		padding-right: 130px;
	}

	.listing:not(.voices) .audio .h4 {
		font-size: 0.75rem;
	}
}

@media(min-width: 1200px) {

	.content .banner:not(.noimg) .image {
		position: relative;
		height: 100%;
	}

	.content .banner:not(.noimg) .container {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 1;
	}

	.content .banner .image img {
		height: auto;
		position: relative;
		object-position: center;
		left: auto;
		top: auto;
	}
}

@media (min-width: 1200px) {
	.content .banner:not(.noimg) {
		padding: 0;
		height: 455px;
	}

	.content.search-voice .banner:not(.noimg) {
		height: 561px;
	}
}

/*************************************/
/********** BUTTONS / LINKS **********/
/*************************************/

.content .button::before {
	background-color: currentColor;
}

.content .button > span {
	font-family: var(--font-family-1);
	font-weight: 600;
	color: #ffffff;
}

/***************************/
/********** Blog **********/
/*************************/

.content.blog .template.has-sidebar.has-sidebar-right {
	padding-top: 0;
}

.content.blog .template .sidebar .form .input-wrapper:first-child {
	padding-top: 0;
}

.content.blog .template .sidebar .form input {
	background-color: #25242d;
}

.content.blog .template .sidebar .form [submit]::before {
	background-image: url("/images/icons/lupe.svg");
}

.content.blog .template.has-sidebar .sidebar {
	background-color: #05030e;
}

.content.blog .template .sidebar .form {
	margin-bottom: 0;
}

.content.blog .template .sidebar .form input {
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: 0.66px;
	text-align: left;
	color: #ffffff;
	padding: 20px 16px;
}

.content.blog .template .sidebar .form .custom-select .placeholder {
	background: hsl(247, 11%, 16%);
	padding: 19px 16px;
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	letter-spacing: 0.66px;
	text-align: left;
	color: #ffffff;
	border-bottom: 0;
	cursor: pointer;
}

.content.blog .template .sidebar .form select.custom-select {
	background: hsl(247, 11%, 16%);
	padding-left: 16px;
	padding-right: 16px;
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: normal;
	letter-spacing: 0.66px;
	text-align: left;
	color: #ffffff;
}

.content.blog .template .sidebar .form .custom-select .placeholder::before {
	right: 16px;
	border: 0;
	background: url(../images/icons/select-arrow.svg) no-repeat center center;
	width: 10px;
    height: 5px;
	transform: rotate(0);
}

.content .template .form .select,
.content .template .listing .select {
	position: relative;
	background: hsl(247, 11%, 16%);
    color: white;
    padding: 22px 16px;
    font-weight: normal;
}

.content.blog .template .sidebar .form .custom-select.isSelected .placeholder {
	background-color: #a800be;
	font-weight: bold;
}

.content.blog .template .sidebar .form .custom-select.isSelected .placeholder::after {
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    width: 12px;
    content: '';
    height: 12px;
    background: url("/images/icons/cross.svg") 0%/contain no-repeat;
    transition: var(--transition);
	opacity: 0;
}

.content.blog .template .sidebar .form .custom-select.isSelected .placeholder::before {
	opacity: 0;
}

.content.blog .template .sidebar .form .custom-select.isSelected .placeholder::after {
	opacity: 1;
}

.content.blog .template .sidebar .form [submit] {
	width: 55px;
    height: 55px;
}

.content.blog .template .sidebar .form .custom-select .options-wrapper {
	bottom: 100%;
	top: auto;
	border: 0;
	background: hsl(247, 11%, 16%);
}

.content.blog .template .sidebar .form .custom-select .options-wrapper .options div {
	font-family: var(--font-family-1);
	font-size: 11px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: 0.61px;
	text-align: left;
	color: #ffffff;
	transition: var(--transition);
	padding: 5px 16px;
}

.content.blog .template .sidebar .form .custom-select .options-wrapper .options div:hover {
	color: #a800be;
}

.content.blog .template .sidebar .form .select .options > div:first-child,
.content .template .form .select .options > div:first-child {
	margin-top: 10px;
}

.content.blog .template .form .input-wrapper, 
.content.blog .template .form .select-wrapper {
	padding-top: 15px;
}


.content.blog .template .sidebar .form .select .selected::after {
	width: 10px;
	height: 5px;
}

.content .listing .pagination ul li::before {
	content: initial;
}

.content.blog .listing .article-thumb {
	display: block;
	overflow: hidden;
	margin: 35px auto;
}

.content.blog .listing .article-thumb img,
.related .bottom .related-article .article-thumb img {
	width: 100%;
	transition: all 0.5s ease-in-out;
	margin: 0;
}

.content.blog .listing h2 {
	font-size: 2.692rem;
	margin-top: 6px;
	margin-bottom: .71em 0;
}

.content.blog .listing .button::before {
	border-radius: 26.5px;
}

.article .article-thumb:hover img,
.related .bottom .related-article .article-thumb:hover img {
	transform: scale(1.1);
}

.article .lower span,
.related .bottom .related-article .lower span{
	font-family: var(--font-family-1);
	font-size: 11px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: 0.61px;
	text-align: left;
	color: rgba(5, 3, 14, 0.3);
	text-transform: uppercase;
}

.article .lower span.cat,
.related .bottom .related-article .lower span.cat {
	color: #a800be;
	margin-left: 20px;
}

.article .lower span.cat:hover,
.related .bottom .related-article .lower span.cat:hover {
	color: var(--black);
}

.article .lower span a,
.related .bottom .related-article .lower span a {
	color: inherit;
	border: 0;
}

.article .lower span a:hover, .article span a:focus,
.related .bottom .related-article .lower span a:hover,
.related .bottom .related-article .lower span a:focus{
	border: 0;
}

.listing .pagination ul li {
	font-family: var(--font-family-1);
	font-size: 14px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: 2.66px;
	text-align: center;
	color: #bababb;
}

.listing .pagination ul li.active a{
	color: #a800be;
}

.listing .pagination ul li a, .listing .pagination ul li.ellipsis {
	margin: 0 13px;
}

.listing .pagination ul li.prev a, .listing .pagination ul li.next a {
	background-image: url("/images/icons/arrow-link-color.svg");
}

.listing .pagination ul li.prev:hover a{
	transform: rotate(180deg) translateX(10px);
}

.listing .pagination ul li.next:hover a{
	transform: translateX(10px);
}

@media (min-width: 768px) {
	.content.blog .template.has-sidebar .sidebar {
		padding: 25px;
	}

	.content.blog .listing h2 {
		font-size: 2.5rem;
	}

	.content.blog .template.has-sidebar.has-sidebar-right .container > div:not(.sidebar) {
		padding-right: 66px;
	}
}

@media (min-width: 992px) {
	.listing .article .button {
		padding: 19px 39px;
	}

	.content.blog .listing h2 {
		font-size: 2.187rem;
	}

	.content.blog .container {
		max-width: 1180px;
	}

	.content.blog .template.has-sidebar.has-sidebar-right .container > div:not(.sidebar) {
		padding-right: 86px;
	}

	.content.blog .listing h2:hover a {
		color: #a800be;
	}
}


/******************************/
/********** Article **********/
/****************************/

.content.article .main-wrapper {
	display: flex;
	flex-wrap: wrap;
	padding-top: 50px;
}

.content.article .banner h1 {
	text-align: left;
}

.content.article .banner .main-wrapper div:nth-child(1) {
	max-width: 838px;
}

.content.article .banner .main-wrapper div:nth-child(2) {
	display: flex;
	margin-top: 15px;
}

.content.article .banner .main-wrapper div:nth-child(2) span {
	font-family: var(--font-family-1);
	font-size: 11px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: 0.61px;
	text-align: right;
	color: rgba(5, 3, 14, 0.3);
	text-transform: uppercase;
}

.content.article .banner .main-wrapper div:nth-child(2) span.cat {
	color: #a800be;
	margin-left: 20px;
}

.content .article-nav {
	border-top: 0;
}

.content .article-nav .row > div a {
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0.66px;
	text-transform: uppercase;
}

.content .article-nav .row > div.prev a::before, 
.content .article-nav .row > div.next a::before {
	transition: var(--transition);
	background-image: url("/images/icons/arrow-dark-color.svg");
}

.content .article-nav .row > div a:hover, 
.content .article-nav .row > div a:focus {
	opacity: 1;
}

.content .article-nav .row > div.prev:not(.disabled):hover a,
.content .article-nav .row > div.next:not(.disabled):hover a,
.content .article-nav .row > div:not(.disabled):hover a {
	color: #a800be;
}

.content .article-nav .row > div.prev:not(.disabled):hover a::before {
	transform: rotate(180deg) translateX(10px);
}

.content .article-nav .row > div.next:not(.disabled):hover a::before {
	transform: translateX(10px);
}

.related .top p.h2 {
	margin: 152px 0 71px;
}

.related .bottom .related-article .lower {
	display: flex;
}

.related .bottom .related-article h2 {
	font-family: var(--font-family-2);
	font-size: 2.692rem;
	font-weight: bold;
	line-height: 1.29;
	letter-spacing: -0.88px;
	text-align: left;
	color: #04030e;
}

.related .bottom .related-article .article-thumb {
	display: block;
	overflow: hidden;
	margin-bottom: 35px;
}

.content.article .template.contact-form {
	background-color: #eeeeee;
}

@media (min-width: 768px) {

	.content.article .main-wrapper{
		flex-direction: column;
	}
	.content.article .banner ul {
		text-align: left;
	}
	
	.content.article .banner .main-wrapper div:nth-child(2) {
		justify-content: flex-end;
	}
	
	.related .bottom .related-article h2 {
		font-size: 2.5rem;
	}

	.related .bottom {
		display: flex;
		align-items: center;
		flex-direction: column;
	}

	.related .bottom .related-article {
		max-width: 630px;
	}

}

@media (min-width: 1200px) {
	.content.article .banner .container {
		max-width: 1240px;
	}

	.content.article .main-wrapper {
		align-items: flex-end;
		justify-content: space-between;
		flex-direction: row;
	}

	.content.article .main-wrapper div:nth-child(2){
		flex-direction: column;
	}

	.content.article .banner .main-wrapper div:nth-child(2) span.cat {
		line-height: 1.12;
		margin-top: 24px;
		margin-bottom: 9px;
	}

	.content .article-nav {
		padding-top: 0;
		margin-top: 16px;
	}

	.related .bottom {
		flex-direction: row;
		justify-content: center;
		margin: 0 -30px;
	}
	
	.related .bottom .related-article {
		padding: 0 30px;
	}

	.related .bottom .related-article h2 {
		font-size: 2.187rem;
	}
}


/****************************/
/********** Forms **********/
/**************************/

.content .template .form input,
.content .template .form textarea {
	background-color: #25242d;
}

.content .template .select-wrapper.select-required .select {
	border: 1px solid var(--warning) !important;
}



.content .template .form .select-wrapper label {
	position: absolute;
	top: 0;
	transform: translateY(31px);
	pointer-events: none;
	transition: var(--transition);
}

.content .template .form .select-wrapper label,
.content .template .form .input-wrapper label,
.content .template .form input,
.content .template .form textarea {
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: 0.66px;
	text-align: left;
	color: #7c7c7d;
}

.content:not(.blog) .template .form .input-wrapper > label,
.content:not(.blog) .template .form .select-wrapper > label {
	transform: translateX(0);
	line-height: 1.5;
	margin-bottom: 15px;
	top: initial;
	position: relative;
}

.content .template .form .input-wrapper > label.large,
.content .template .form .select-wrapper > label.large {
	margin-top: 38px;
} 

.content:not(.shop,.blog,.getQuote) .template .form .select-wrapper,
.content:not(.shop,.blog,.getQuote) .template .form .input-wrapper {
	padding: 15px 0;
}

.content .template .form input,
.content .template .form textarea {
	padding: 19px 21px;
}

.content .template.contact-form .form input,
.content .template.contact-form .form textarea {
	color: #ffffff;
}

.content .template.contact-form .form .select {
	padding: 12px 21px 13px;
}

.content .template .form .button::before {
	border-radius: 26.5px;
}

.content .template .form .button span {
	color: #ffffff;
}

.content .template .form .checkbox-wrapper {
	margin: 11.5px 0;
}

.content .template .form .checkbox-wrapper:first-child {
	margin-top: 0;
}

.content .template .form input[type='checkbox'] + label {
	width: 24px;
	height: 24px;
	background-color: #25242d;
	border: 1px solid #25242d;
}

.content .template .form input[type='checkbox'] + label::before {
	border-right: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	width: 6px;
    height: 12px;
}

.content .template .form label a {
	font-weight: 500;
	color: #a800be;
	border-bottom: 1px solid #a800be;
}

.content .template .form input[type='checkbox'] + label + label,
.content .template.review .form .checkbox-wrapper input[type='checkbox'] + label + label {
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 2;
	letter-spacing: 0.66px;
	text-align: left;
	color: #7c7c7d;
}

.content .template.review .form .checkbox-wrapper input[type='checkbox'] + label + label{
	margin-left: 5px;
}

.content .template.review .form .checkbox-wrapper:first-child{
	align-items: center;
	margin-bottom: 21px;
}

.content .template .form div > span:not(.prefix) {
	font-family: var(--font-family-1);
	font-size: 10px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 2.4;
	letter-spacing: 0.55px;
	text-align: left;
	color: #7c7c7d;
}

.content:not(.blog) .template .form .input-wrapper > span.prefix {
	position: absolute;
	right: 10px;
	font-family: var(--font-family-1);
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.66px;
    text-align: left;
    color: #7c7c7d;
	margin-top: 18px;
}

.content:not(.blog) .template .form .input-wrapper.grow > span.prefix {
	margin-top: 0px;
}

.content:not(.blog) .template .form > div:not(.row) {
	margin-bottom: 73px;
}

.content .template .form .h2 {
	margin-bottom: 37px;
}

@media (min-width: 768px) {
	.content .template .form .row {
		margin: -15px -20px;
	}

	.content .template .form .row > div {
		padding: 15px 20px;
	}
}

@media (min-width: 992px) {
	.content .template .form .button {
		padding: 18px 31px;
	}
}

/*******************************/
/********** Glossary **********/
/*****************************/

.content .template > .listing .filter.glossary-filter {
	left: 0;
	flex-direction: column;
	background-color: #efeff0;
	padding: 42px 22px;
}

.content .template > .listing .filter.glossary-filter > div {
	border-bottom: 0;
	font-family: var(--font-family-2);
	font-size: 16px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: normal;
	color: #04030e;
}

.content .template > .listing .filter.glossary-filter > div.active {
	color: #a800be
}

.content .template .glossary .select-wrapper {
	max-width: 244px;
	width: 100%;
	margin-left: auto;
}

.content .template .glossary .select-wrapper .custom-select .placeholder {
	background-color: hsl(247, 11%, 16%);
	padding: 22px 16px;
	cursor: pointer;
	font-family: var(--font-family-1);
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: 0.66px;
    text-align: left;
    color: #ffffff;
}

.content .template .glossary .select-wrapper .custom-select .placeholder::before {
	right: 16px;
    background-image: url(/images/icons/select-arrow.svg);
    border: 0;
    width: 15px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    transform: rotate(0);
    transition: var(--transition);
}

.content .template .glossary .select-wrapper .custom-select .placeholder::after {
	margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    width: 12px;
    content: '';
    height: 12px;
    background: url(/images/icons/cross.svg) 0%/contain no-repeat;
    transition: var(--transition);
    opacity: 0;
}

.content .template .glossary .select-wrapper .custom-select.isSelected .placeholder {
	background-color: #a800be;
	font-weight: bold;
}

.content .template .glossary .select-wrapper .custom-select.isSelected .placeholder::after {
	opacity: 1;
}

.content .template .glossary .select-wrapper .custom-select.isSelected .placeholder::before {
	opacity: 0;
}

.content .template .glossary .select-wrapper .custom-select .options-wrapper {
	bottom: 100%;
    border: 0;
    background-color: #25242d;
}

.content .template .glossary .select-wrapper .custom-select .options-wrapper .options div {
	font-family: var(--font-family-1);
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: 0.66px;
    text-align: left;
    color: #ffffff;
	transition: var(--transition);
}

.content .template .glossary .select-wrapper .custom-select .options-wrapper .options div:hover {
	color: #a800be;
}

.content .template .glossary .description .template {
	padding: 0;
}

.content .template .glossary .description .template .container.container-sm {
	padding: 0;
}

.content .template .glossary hr {
	border-top: 1px solid #f2efef !important;
}

@media (max-width: 767px) {
	.content .template > .listing .filter.glossary-filter {
		padding: 20px 22px 10px;
		flex-direction: row;
	}

	footer .icon-container:first-child {
		flex-wrap: wrap;
		flex-direction: row;
	}

	footer .icon-container:first-child img{
		height: 16px;
		margin: 0 5px
	}

	footer .icon-container:first-child img:nth-child(1){
		height: 20px;
	}

	footer .icon-container:first-child img:nth-child(4){
		height: 20px;
	}

}

@media (min-width: 768px) {
	.content.glossary-list .template:nth-child(2) {
		display: flex;
	}

	.content .template > .listing .filter.glossary-filter {
		overflow-x: hidden;
	}
}

/*********************************/
/********** Contact-us **********/
/*******************************/

.content.contact-us .template.contact-form {
	background-color: #04030e;
}

.content.contact-us .template .form input,
.content.contact-us .template .form textarea {
	border-bottom: 1px solid #25242d;
}

.content.contact-us .template.contact-form .form .h2 {
	color: #ffffff;
}

.content.contact-us .template .form .button::before {
	background-color: #a800be;
}

.content .template.contact-form {
	background-color: #eeeeee;
}

.content .template.contact-form .form input[type='checkbox'] + label::before {
	border-color: #ffffff;
}

.content .template.contact-form .form .select .options > div {
	color: #ffffff;
	opacity: 1;
}

.content .template.contact-form .form .input-wrapper,
.content .template.contact-form .form .select-wrapper {
	padding: 0;
}

.content .template.contact-form .form .custom-select .placeholder {
	font-family: var(--font-family-1);
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.66px;
    text-align: left;
    color: #ffffff;
	border: 1px solid #25242d;
	background-color: #25242d;
	padding: 19px 21px;
	cursor: pointer;
}

.content .template.contact-form .form .custom-select .options-wrapper {
	bottom: 100%;
	border: 0;
	background-color: #25242d;
}

.content .template.contact-form .form .custom-select .options-wrapper .options div {
	font-family: var(--font-family-1);
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.66px;
    text-align: left;
    color: #ffffff;
    opacity: 0.5;
    transition: var(--transition);
}

.content .template.contact-form .form .custom-select .options-wrapper .options div:hover {
	opacity: 1;
}

.content .template.contact-form .form .custom-select .placeholder::before {
	right: 19px;
    background-image: url(/images/icons/select-arrow.svg);
    border: 0;
    width: 15px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    transform: rotate(0);
	transition: var(--transition);
}

.content .template.contact-form .form .custom-select.open .placeholder::before {
	transform: rotate(180deg);
}

/* .content .template.contact-form .form .custom-select.isSelected .placeholder {
	background-color: #a800be;
	border: 1px solid #a800be;
} */

.content.contact-us .map picture{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.content.contact-us picture img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/********************************/
/************ Login ************/
/******************************/

.content.shop h2,
.content.shop .h2,
.content.shop h3,
.content.shop .h3 {
	text-transform: initial;
}

.content.shop .template .button::before {
	border-radius: 26.5px;
}

.content.shop .template .button span {
	font-size: 12px;
	letter-spacing: 0.66px;
}

.content .template.login .container > .row > div > .button {
	margin-top: 3px;
}

.content.shop .template .form:not(:first-child) {
	margin-top: 49px;
}

.content.shop .template.login .form .row > div:first-child {
	margin-bottom: 10px;
}

.content.shop .template.login .form div > span:only-child {
	font-size: 12px;
}

.content.shop .template.login .form span a {
	color: #04030e;
}

.content.shop .template .form input,
.content.shop .template .form textarea {
	background-color: #f8f8f8;
	border-bottom: 1px solid #f8f8f8;
	color: #04030e;
}

.content .template .form .password-wrapper .peek {
	background-image: url("/images/icons/peek.svg");
	right: 21px;
	top: calc(11px + 14px);
}

.content .template .form .warning::before {
	content: initial;
}

.content .template .form .warning {
	padding-left: 0;
    font-size: 10px;
}

.content .template .form input.not-filled,
.content .template .form textarea.not-filled,
.content .template .form select.custom-multiselect.not-filled + .custom-multiselect-wrapper .custom-multiselect-header {
	border: 1px solid var(--warning) !important;
}

.content .template .form input[type='checkbox'].not-filled + label {
	border: 1px solid var(--warning) !important;
}

.content.shop .template.login .form .row > div:last-child span {
	font-size: 10px;
}

.content.shop .template.login .form .password-wrapper .peek {
	top: initial;
	bottom: 15px;
}

@media (min-width: 992px) {
	.content.shop .template .form .button {
		padding: 19px 38px;
	}

	.content .template.login .container > .row > div > .button {
		padding: 18px 41px;
	}
}

/***********************************/
/************ Register ************/
/*********************************/

.content.shop .template.register .form .input-wrapper, 
.content.shop .template.register .form .select-wrapper,
.content.shop .template.edit-account .form .input-wrapper,
.content.shop .template.edit-account .form .select-wrapper {
	padding-top: 0;
}

.content.shop .template.register .form .select,
.content.shop .template.edit-account .form .select {
	padding: 13px 16px;
	background-color: #f8f8f8;
}

.content.shop .template.register .form .password-wrapper .peek {
	top: calc(11px + 36px);
}

.content.shop .template.register .form .select span,
.content.shop .template.edit-account .form .select span {
	color: #7c7c7d;
}

.content.shop .template.register .form .select .selected::after,
.content.shop .template.edit-account .form .select .selected::after {
	background: url("/images/icons/select-arrow-color.svg") 0%/contain no-repeat;
}

.content.shop .template.register .form .custom-select .placeholder,
.content.shop .template.edit-account .form .custom-select .placeholder,
.content.shop .custom-select .placeholder,
.content.shop .template.register .form select.custom-select,
.content.shop .template.edit-account .form select.custom-select {
	background-color: #f8f8f8;
    border-bottom: 1px solid #f8f8f8;
	font-family: var(--font-family-1);
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.66px;
    text-align: left;
	color: #04030e;
	padding: 19px 20px 19px 20px;
	cursor: pointer;
}

.content.shop .template.register .form select.custom-select,
.content.shop .template.edit-account .form select.custom-select {
	-webkit-appearance: none;
	background-image: url(/images/icons/select-arrow-color.svg);
	background-size: 15px;
	background-repeat: no-repeat;
	background-position: 95%;
	border-radius: 0;
}

.content.shop .template.register .form select.custom-multiselect,
.content.shop .template.edit-account .form select.custom-multiselect {
	background-color: #f8f8f8;
	background-image: url(/images/icons/select-arrow-color.svg);
	background-size: 15px;
	background-repeat: no-repeat;
	background-position: 95%;
	border-radius: 0;
	border: 0;
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: 0.66px;
	text-align: left;
	color: #7c7c7d;
	padding-left: 21px;
}

.content.shop .template.register .form .custom-select .placeholder::before,
.content.shop .template.edit-account .form .custom-select .placeholder::before,
.content.shop .custom-select .placeholder::before {
    right: 20px;
    background-image: url(/images/icons/select-arrow-color.svg);
    border: 0;
    width: 15px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    transform: rotate(0);
    transition: var(--transition);
}

.content.shop .template.register .form .custom-select .options-wrapper,
.content.shop .template.edit-account .form .custom-select .options-wrapper,
.content.shop .custom-select .options-wrapper {
	bottom: 100%;
    border: 0;
    background-color: #f8f8f8;
}

.content.shop .template.register .form .custom-select .options-wrapper .options div,
.content.shop .template.edit-account .form .custom-select .options-wrapper .options div,
.content.shop .custom-select .options-wrapper .options div {
	font-family: var(--font-family-1);
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.66px;
    text-align: left;
    color: var(--darkblue);
	transition: var(--transition);
}

.content.shop .template.register .form .custom-select .options-wrapper .options div:hover,
.content.shop .template.edit-account .form .custom-select .options-wrapper .options div:hover,
.content.shop .custom-select .options-wrapper .options div:hover {
	/*color: #a800be;*/
	color: #04030e;
}

.custom-select.not-filled + .custom-select .placeholder {
	border: 1px solid var(--warning) !important;
}

.content.shop .template.register .form .custom-select.open .placeholder::before,
.content.shop .template.edit-account .form .custom-select.open .placeholder::before,
.content.shop .custom-select.open .placeholder::before {
    transform: rotate(180deg);
}

.content.shop .template.register .form .select .options > div,
.content.shop .template.register .form input,
.content.shop .template.register .form textarea,
.content.shop .template.edit-account .form .select .options > div,
.content.shop .template.edit-account .form input,
.content.shop .template.edit-account .form textarea {
	color: #04030e;
}

.form .custom-multiselect-wrapper .custom-multiselect-header.disabled {
	pointer-events: none;
	opacity: 0.5;
}

.banner .form .custom-select.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.form .custom-multiselect-wrapper.many .custom-multiselect-header {
	border: 1px solid var(--warning);
}

.form .custom-multiselect-wrapper.many .custom-multiselect-tags p.warning {
	padding-left: 17px;
}

.form .custom-multiselect-wrapper .custom-multiselect-header.disabled ~ .legend {
	color: #c4c3c3;
}

.form .custom-multiselect-wrapper .custom-multiselect-content-options > div > div label:last-child {
	flex: 1;
    font-size: 14px;
    color: var(--darkblue);
    line-height: 1.25;
    margin-top: 2px;
    position: relative;
    transform: initial;
    top: initial;
}

.form .custom-multiselect-wrapper .custom-multiselect-content-options > div > div label:nth-child(2) {
	display: inline-block;
    position: relative;
    margin: 0;
    width: 20px;
    height: 20px;
    top: initial;
    transform: initial;
	background-color: #ecebeb;
	border-color: #ecebeb;
	pointer-events: all;
}

.form .custom-multiselect-wrapper .custom-multiselect-content-options > div > div label:nth-child(2)::before {
	border-right: 2px solid #04030e;
    border-bottom: 2px solid #04030e;
}

.form .custom-multiselect-wrapper .custom-multiselect-content-footer .button.close,
.form .custom-multiselect-wrapper .custom-multiselect-content-footer .button.save {
	padding: 10px 13px;
	font-size: 11px;
}

.form .custom-multiselect-wrapper .custom-multiselect-content-footer .button.save::before {
	background-color: #04030e;
}

.form .custom-multiselect-wrapper .custom-multiselect-content-options input[type='checkbox']:checked + label::before {
	opacity: 1;
}

.form .custom-multiselect-wrapper .custom-multiselect-content > div {
	border: 0;
	background-color: #f8f8f8;
}

.form .custom-multiselect-wrapper .custom-multiselect-header {
	background-color: #f8f8f8;
}

.form .custom-multiselect-wrapper .custom-multiselect-header::before {
	background: url(/images/icons/select-arrow-color.svg) 0%/contain no-repeat;
	border: 0;
	top: 0;
    bottom: 0;
	right: 21px;
	width: 15px;
    height: 15px;
	transform: rotate(0deg);
	transition: var(--transition);
}

.form .custom-multiselect-wrapper.open .custom-multiselect-header::before {
	transform: rotate(180deg);
}

.form .custom-multiselect-wrapper .custom-multiselect-header {
	padding: 27px 0;
	margin-top: 0;
	border: 0;
}

.form .custom-multiselect-wrapper .custom-multiselect-content {
	top: auto;
	bottom: 100%;
}

.form .custom-multiselect-wrapper .custom-multiselect-tags {
	display: flex;
	flex-wrap: wrap;
}

.form .custom-multiselect-wrapper .custom-multiselect-tags > span {
	font-family: var(--font-family-1);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.55px;
	text-align: left;
	color: #a800be;
	text-transform: initial;
	padding-top: 1px;
	margin-bottom: 0;
}

.form .custom-multiselect-wrapper .custom-multiselect-tags > * > a.tag-close::before,
.form .custom-multiselect-wrapper .custom-multiselect-tags > * > a.tag-close::after {
 	background-color: #a800be;
}

.form .custom-multiselect-wrapper .custom-multiselect-tags > * > a.tag-close:hover::before, 
.form .custom-multiselect-wrapper .custom-multiselect-tags > * > a.tag-close:hover::after {
	background-color: #a800be;
}

.form .custom-multiselect-wrapper .custom-multiselect-tags > * > a.tag-close:hover,
.form .custom-multiselect-wrapper .custom-multiselect-tags > * > a.tag-close:focus {
	border: 0;
}

.content .template.register .form .select-wrapper .legend,
.content .template.register .form .input-wrapper .legend,
.content .template.edit-account .form .select-wrapper .legend,
.content .template.edit-account .form .input-wrapper .legend {
	position: absolute;
	font-size: 11px;
	font-style: italic;
	text-align: right;
	color: #c4c3c3;
	top: 90px;
    right: 0;
	line-height: 1.2;
}

.content .template.register .form .select-wrapper .legend.large,
.content .template.edit-account .form .select-wrapper .legend.large {
	margin-top: 20px;
}

.content .template.register .form span.info,
.content .template.edit-account .form span.info {
	font-size: 12px;
}

.content .template.register .form .row > div > label,
.content .template.edit-account .form .row > div > label {
	margin: 0;
}

.content .template.register .form input[type='checkbox'] + label,
.content .template.edit-account .form input[type='checkbox'] + label {
	background-color: #ecebeb;
	border-color: #ecebeb;
}

.content .template .form input[type='checkbox'] + label::before,
.content .template.review .form .checkbox-wrapper input[type='checkbox'] + label::before {
	border-color: #04030e;
}

.content .template.edit-account .form .input-wrapper.locked input {
	pointer-events: none;
	background-color: #f8f8f8;
	border-color: #f8f8f8;
	color: rgba(0, 0, 0, 0.5);
}

.content .template.edit-account .form .input-wrapper.locked .padlock {
	position: absolute;
	right: 20px;
	bottom: 21px;
	width: 12px;
	height: 16px;
	background-image: url("/images/icons/lock.svg");
}

@media (min-width: 768px) {
	.content .template.register .form .input-wrapper .legend,
	.content .template.edit-account .form .input-wrapper .legend {
		top: 110px;
	}
	
}

@media (max-width: 991px) {
	.content .template .form .input-wrapper.tabletgrow label {
		transform: translateY(-33px);
    	margin-bottom: 12px;
	}

	.content .template .form .input-wrapper.tabletgrow input {
		margin-top: -33px;
	}

	.content .template .form .input-wrapper.tabletgrow .legend {
		top: 95px;
	}

	.content .template .form .input-wrapper.movelabel label {
		margin-top: 18px;
	}

	.content .template .form .input-wrapper.tabletSmall label {
		transform: translateY(-15px);
		margin-bottom: 0;
	}

}

@media (min-width: 992px) {
	.content .template.register .form .input-wrapper.grow input,
	.content .template.edit-account .form .input-wrapper.grow input {
		margin-top: -18px;
	}

	.content .template.register .form .input-wrapper.grow label,
	.content .template.edit-account .form .input-wrapper.grow label {
		transform: translateY(-15px);
	}
	
	.content .template.register .form .input-wrapper.grow .legend,
	.content .template.register .form .input-wrapper.shrink .legend,
	.content .template.edit-account .form .input-wrapper.grow .legend,
	.content .template.edit-account .form .input-wrapper.shrink .legend {
		top: 93px;
	}
	
}

/***************************************/
/************ Private Area ************/
/*************************************/

.content .top-profile .container {
	max-width: 890px;
	padding-top: 50px;
	padding-bottom: 50px;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}

.content .top-profile .container .custom-select .options-wrapper .options div {
	padding: 5px 20px;
}

.content .top-profile .container .profile {
	padding-top: 20px;
}

.content .top-profile .container .profile-pic {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	transition: var(--transition);
	position: relative;
	margin: auto;
}

.content .top-profile .container .profile-pic a {
	display: block;
	transition: var(--transition);
	width: 100%;
	height: 100%;
	position: relative;
}

.content .top-profile .container .profile-pic img,
.content .top-profile .container .profile-pic picture {
	width: 100%;
	height: 100%;
	filter: grayscale(1);
	border-radius: 50%;
	transition: var(--transition);
	object-fit: cover;
	display: block;
}

.content .top-profile .container .profile-pic .change-profile {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	text-align: center;
	transition: var(--transition);
	background-color: #7c7c7d;
	opacity: 0;
	pointer-events: none;
	border-radius: 50%;
}

.content .top-profile .container .profile-pic .change-profile .form {
	width: 100%;
	height: 100%;
}

.content .top-profile .container .profile-pic .change-profile label {
	font-family: var(--font-family-1);
	color: #04030e;
	position: absolute;
	bottom: 15px;
	left: 0;
	right: 0;
	pointer-events: none;
	display: block;
	transition: var(--transition);
	cursor: pointer;
}

.content .top-profile .container .profile-pic .change-profile a span {
    position: relative;
    width: 100%;
    /* height: 110px; */
	height: 100%;
    display: inline-block;
    border-radius: 23.5px;
    /* margin: 10px 0; */
}

.content .top-profile .container .profile-pic .change-profile a span img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	-webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
	filter:none;
	/* padding-top: 1px; */
}

.content .top-profile .container .profile-pic .change-profile a span:nth-of-type(2) {
	position: absolute;
	left: 0;
	bottom: 10px;
	height: auto;
	margin: 0;
	color: #fff;
	font-weight: 400;
}

.content .top-profile .container .profile-pic .change-profile input[type='file'] {
	display: none;
}

.content .top-profile .container .profile-pic .change-profile.active,
.content .top-profile .container .profile-pic .change-profile.active label,
.content .top-profile .container .profile-pic .change-profile.nopic,
.content .top-profile .container .profile-pic .change-profile.nopic label {
	pointer-events:all;
	opacity: 1;
}

.content .top-profile .container .profile-pic {
	margin-top: 10px;
	order: 2;
}

.content .top-profile .container .profile-info {
	margin-top: 10px;
	order: 3;
}

.content .top-profile .container .custom-select {
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
	order: 1;
}

.content .top-profile .container .profile-info h2 {
	font-family: var(--font-family-2);
	font-size: 3.230rem;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1;
	letter-spacing: -1.05px;
	text-align: center;
	color: #04030e;
	margin-bottom: 30px;
}

.content .top-profile .container  .profile-info p {
	font-family: var(--font-family-1);
	font-size: 1.230rem;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.88;
	letter-spacing: normal;
	text-align: center;
	color: #7c7c7d;
	margin-bottom: -4px;
}

.content .top-profile .container .profile-info p strong,
.content .top-profile .container .profile-info p b {
	font-weight: 500;
	color: #04030e;
}

.content .button-container {
	padding: 49px 0;
	background-color: rgba(4, 3, 14, 0.05);
}

.content .button-container .container {
	max-width: 700px;
	display: flex;
	flex-direction: column;
}

.content .button-container .container .button {
	text-align: center;
	margin-bottom: 10px;
}

.content .button-container .container .button::before {
	border-radius: 26.5px;
}

.content .button-container .container .button.button-border::before {
	background-color: transparent;
}

.content .button-container .container .button.active::before {
	background-color: #a800be;
	border-color: #a800be;
}	

.content .button-container .container .button.button-border span {
	color: #04030e;
}

.content .button-container .container .button:last-child {
	margin-bottom: 0;
}

.content .my-files .top {
	margin-bottom: 75px;
} 

.content .my-files .bottom .container {
	max-width: 955px;
}

.content .my-files .top span {
	font-family: var(--font-family-1);
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.88;
	text-align: left;
	color: #7c7c7d;
}

.content .my-files .top span a {
	font-weight: 500;
	color: #a800be;
}

.content .my-files .bottom .language-files-wrapper {
	padding: 30px 20px;
	background-color: #171719;
	margin-bottom: 10px;
}

.content .my-files .bottom .language-files-wrapper:last-child {
	margin-bottom: 0;
}

.content .my-files .bottom .inner {
	background-color: #04030e;
	padding: 0 26px;
	margin-bottom: 10px;
}

.content .my-files .bottom .inner:last-child {
	margin-bottom: 0;
}

.content .my-files .bottom .head {
	margin-bottom: 24px;
}

.content .my-files .bottom .head span {
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: normal;
	font-stretch: normal;
	font-style: italic;
	line-height: 1.5;
	letter-spacing: normal;
	text-align: left;
	color: #7c7c7d;
}

.content .my-files .bottom .head p {
	margin-top: 12px;
	font-family: var(--font-family-2);
	font-size: 24px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.25;
	letter-spacing: normal;
	text-align: left;
	color: #ffffff;
}

.content .my-files .bottom .inner .title p{
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: normal;
	font-stretch: normal;
	font-style: italic;
	line-height: 1.5;
	letter-spacing: normal;
	text-align: left;
	color: #ffffff;
}

.content .my-files .bottom .inner .title p span {
	color: #7c7c7d;
}

.content .my-files .bottom .inner .title {
	padding: 21px 0 24px;
	border-bottom: 1px solid #1e1d28;
}

.content .my-files .bottom .inner .service-type {
	padding: 20px 0;
	border-bottom: 1px solid #1e1d28;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.content .my-files .bottom .inner .service-type:last-child {
	border-bottom: 0;
}

.content .my-files .bottom .inner .service-type > div:nth-child(1) {
	display: flex;
	margin-right: auto;
}

.content .my-files .bottom .inner .service-type > div:nth-child(2) {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	align-items: center;
}

.content .my-files .bottom .inner .service-type .play-button {
	cursor: pointer;
    width: 20px;
    height: 20px;
    background: url(/images/icons/play.svg) 0%/contain no-repeat;
    margin-right: 11px;
    transform: scale(1);
    transition: var(--transition);
}

.content .my-files .bottom .inner .service-type .play-button.pause {
	background: url(/images/icons/pause.svg) 0%/contain no-repeat;
}

.content .my-files .bottom .inner .service-type .play-button:hover {
	transform: scale(1.1);
}

.content .my-files .bottom .inner .service-type.video .play-button {
	width: 27px;
	background: url(/images/icons/yt-play.svg) 0%/contain no-repeat;
}

.content .my-files .bottom .inner .play-button + p {
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: 0.66px;
	text-align: left;
	color: #ffffff;
	text-transform: uppercase;
	margin: 0;
}

.content .my-files .bottom .inner .service-type .status {
	font-family: var(--font-family-1);
	font-size: 10px;
	font-weight: normal;
	font-stretch: normal;
	line-height: normal;
	color: #7c7c7d;
	padding-left: 17px;
	position: relative;
	width: 100%;
	margin-top: 10px;
	margin-bottom: 10px;
}

.content .my-files .bottom .inner .service-type .status::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	margin: auto;
}

.content .my-files .bottom .inner .service-type .status.pending::before {
	background-color: #eaf20c;
}

.content .my-files .bottom .inner .service-type .status.approved::before {
	background-color: #37f20c;
}

.content .my-files .bottom .inner .service-type .status.not-approved::before {
	background-color: #f20c3d;
}

.content .my-files .bottom .inner .service-type .button.mod,
.content .my-files .bottom .inner .service-type .button.del {
	padding: 10px 15px 8px;
	font-size: 10px;
	margin-top: 10px;
}

.content .my-files .bottom .inner .service-type .button.mod span,
.content .my-files .bottom .inner .service-type .button.del span{
	font-family: var(--font-family-1);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.55px;
	line-height: 1;
}

.content .my-files .bottom .inner .service-type .button.mod::before,
.content .my-files .bottom .inner .service-type .button.del::before {
	border: 1px solid #ffffff;
}

.content .my-files .bottom .inner .service-type.inactive > div:nth-child(1) {
	opacity: 0.35;
	pointer-events: none;
}
.content .my-files .bottom .inner .service-type:not(.inactive) > div:nth-child(1) {
	cursor: pointer;
}
.content .my-files .bottom .inner .service-type .button.upload {
	padding: 9px 14px 8px;
	font-size: 10px;
	margin-top: 20px;
}

.content .my-files .bottom .inner .service-type .button.upload::before {
	background-color: #ffffff;
}

.content .my-files .bottom .inner .service-type .button.upload span {
	font-family: var(--font-family-1);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.55px;
	line-height: 1.5;
	color: #04030e;
	position: relative;
	padding-left: 19px;
}

.content .my-files .bottom .inner .service-type .button.upload span::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background: url(/images/icons/upload.svg) 0%/contain no-repeat;
	width: 11px;
	height: 14px;
}

.content .my-files .bottom .inner .service-type .audio-progress {
	max-height: 0;
    padding-left: 0;
    overflow: hidden;
    margin-top: 0;
    transition: var(--transition);
}

.content .my-files .bottom .inner .service-type .audio-progress.active {
	padding-top: 46px;
    max-height: 100%;
}

.content .my-files .bottom .inner .service-type .audio-progress .bar {
	background-color: rgba(255, 255, 255,0.25);
}

.content .my-files .bottom .inner .service-type .audio-progress .bar > span {
	background-color: #ffffff;
}

.content .popUp-file {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999999999999;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	pointer-events: none;
	transition: var(--transition);
}

.content .popUp-file.active {
	pointer-events: all;
	opacity: 1;
}

.content .popUp-file .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 600px;
    width: 100%;
    background-color: #ffffff;
}

.content .popUp-file .inner > div {
	margin: 0 auto;
    background-color: rgba(4, 3, 14, 0.05);
    width: 100%;
    padding: 50px 50px 20px;
}

.content .popUp-file .inner label:first-of-type {
	color: #04030e;
	padding: 10px 25px;
	font-family: var(--font-family-1);
	cursor: pointer;
	margin-top: 1rem;
	transition: var(--transition);
	position: relative;
	z-index: 1;
	font-weight: 400;
}

.content .popUp-file .inner label:first-of-type::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ffffff;
	border-radius: 23.5px;
	transition: var(--transition);
	z-index: -1;
}

.content .popUp-file .inner label:first-of-type:hover::before {
	transform: scale(1.1);
}

.content .popUp-file .inner label:last-of-type {
	margin-left: 15px;
	font-family: var(--font-family-2);
}

.content .popUp-file .inner .close-btn {
	position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    cursor: pointer;
    padding: 20px;
}

.content .popUp-file .inner .close-btn::before,
.content .popUp-file .inner .close-btn::after {
	content: "";
	position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    margin: auto;
    width: 20px;
    height: 2px;
    background-color: #04030e;
    transition: var(--transition);
    -webkit-transition: var(--transition);
}

.content .popUp-file .inner .close-btn::before {
	transform: translateX(-50%) rotate(45deg);
}

.content .popUp-file .inner .close-btn::after {
	transform: translateX(-50%) rotate(-45deg);
}

.content .popUp-file .inner .close-btn:hover::before{
	transform: translateX(-50%) rotate(45deg) scale(1.2);
}

.content .popUp-file .inner .close-btn:hover::after {
	transform: translateX(-50%) rotate(-45deg) scale(1.2);
}

.content .popUp-file .inner .button {
	margin-top: 20px;
	padding: 10px 28px;
}

.content .popUp-file .inner .button span {
	margin-left: 0;
}

.content .popUp-file .inner .button::before {
	border-radius: 23.5px;
}

.content .popUp-file .inner .button.back {
	margin-right: 10px;
}

.content .popUp-file .inner .button.back span {
	color: #000000;
}

.content .popUp-file .inner .button.back::before {
	background-color: transparent;
}

@media(max-width: 767px) {
	.content .top-profile .container .select-wrapper {
		max-width: 250px;
		margin: 0 auto;
	}
}

@media (min-width: 768px) {
	.content .top-profile .container {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	
	.content .top-profile .container .profile-pic {
		margin-right: 82px;
		margin-left: 0;
		order: 1;
	}

	.content .top-profile .container .profile-info {
		margin-right: auto;
		margin-top: 0;
		order: 2;
	}

	.content .top-profile .container .spacer {
		order: 3;
		width: 30%;
	}

	.content .top-profile .container .select-wrapper {
		order: 4;
		margin-top: 20px;
		width: 100%;
		max-width: 250px;
	}

	.content .top-profile .container .profile-info h2 {
		font-size: 3rem;
		text-align: left;
	}

	.content .top-profile .container .profile-info p {
		font-size: 1.142rem;
		text-align: left;
	}

	.content .top-profile .container {
		display: flex;
		align-items: flex-start;
		flex-direction: row;
	}

	.content .button-container .container {
		max-width: 890px;
		flex-direction: row;
		justify-content: center;
	}

	.content .button-container .container .button {
		padding: 15px 41px;
		margin: 0 5px;
	}

	.content .my-files .bottom .language-files-wrapper {
		padding: 30px 49px;
	}

	.content .my-files .bottom .inner {
		padding: 0 36px;
	}

	/* .content .my-files .bottom .inner .service-type {
		flex-wrap: nowrap;
	} */

	.content .my-files .bottom .inner .service-type > div:nth-child(2) {
		flex-wrap: nowrap;
		justify-content: flex-end;
		width: auto;
	}

	.content .my-files .bottom .inner .service-type .status {
		margin-right: 21px;
		width: auto;
		margin-top: 0;
		margin-bottom: 0;
	}

	.content .my-files .bottom .inner .service-type .button.mod  {
		margin-right: 10px;
	}

	.content .my-files .bottom .inner .service-type .button.mod,
	.content .my-files .bottom .inner .service-type .button.del {
		margin-top: 0;
	}

	.content .my-files .bottom .inner .service-type .button.upload {
		margin-top: 0;
	}
}

@media (min-width: 992px) {
	.content .top-profile .container .profile-info h2 {
		font-size: 2.625rem;
		text-align: left;
	}

	.content .top-profile .container  .profile-info p {
		font-size: 1rem;
		text-align: left;
	}
}


/****************************************/
/************ Search Voices ************/
/**************************************/


.banner .voice-form.form {
	padding: 61px 0;
	position: relative;
	margin-top: 30px;
	margin-bottom: -80px;
	background: rgba(0,0,0,0.4);
}

.banner .voice-form.form .filter-container,
.startQuote .voice-form.form .filter-container {
	display: flex;
	flex-direction: column;
}

.banner .voice-form.form .filter-container > *,
.startQuote .voice-form.form .filter-container > * {
	padding: 10px 25px;
	width: 100%;
}

.banner .voice-form.form .filter-container .filter-results,
.startQuote .voice-form.form .filter-container .filter-results {
	position: absolute;
	bottom: 21px;
	display: none;
	align-items: center;
}

.banner .voice-form.form .filter-container .filter-results.active,
.startQuote .voice-form.form .filter-container .filter-results.active{
	display: flex;
}

.banner .voice-form.form .filter-container .filter-results .results,
.startQuote .voice-form.form .filter-container .filter-results .results {
	margin-right: 15px;
	display: flex;
}

.banner .voice-form.form .filter-container .filter-results .results .result,
.startQuote .voice-form.form .filter-container .filter-results .results .result {
	font-family: var(--font-family-1);
	font-size: 10.5px;
	font-weight: bold;
	letter-spacing: 0.85px;
	text-align: left;
	color: #ffffff;
	padding: 10px 30px 10px 10px;
	position: relative;
	background-color: #a800be;
	margin-right: 6px;
	cursor: pointer;
	text-transform: capitalize;
}

.banner .voice-form.form .filter-container .filter-results .results .result[data-id='dialects-0'],
.startQuote .voice-form.form .filter-container .filter-results .results .result[data-id='dialects-0'] {
    pointer-events: none;
}

.banner .voice-form.form .filter-container .filter-results .results .result:last-child,
.startQuote .voice-form.form .filter-container .filter-results .results .result:last-child {
	margin-right: 0;
}

.banner .voice-form.form .filter-container .filter-results .clear-filter-btn,
.startQuote .voice-form.form .filter-container .filter-results .clear-filter-btn {
	font-family: var(--font-family-1);
	font-size: 10.5px;
	font-weight: bold;
	letter-spacing: 0.58px;
	text-align: left;
	color: #ffffff;
	position: relative;
	padding-right: 20px;
	opacity: 0.5;
	transition: var(--transition);
	cursor: pointer;
}

.banner .voice-form.form .filter-container .filter-results .clear-filter-btn:hover,
.startQuote .voice-form.form .filter-container .filter-results .clear-filter-btn:hover {
	opacity: 1;
}

.banner .voice-form.form .filter-container .filter-results .clear-filter-btn::before,
.banner .voice-form.form .filter-container .filter-results .clear-filter-btn::after,
.banner .voice-form.form .filter-container .filter-results .results .result::before,
.banner .voice-form.form .filter-container .filter-results .results .result::after,
.startQuote .voice-form.form .filter-container .filter-results .clear-filter-btn::before,
.startQuote .voice-form.form .filter-container .filter-results .clear-filter-btn::after,
.startQuote .voice-form.form .filter-container .filter-results .results .result::before,
.startQuote .voice-form.form .filter-container .filter-results .results .result::after {
	content: "";
    position: absolute;
    top: 0;
	right: 0;
    bottom: 0;
    margin: auto;
    width: 12px;
    height: 1px;
    background-color: #ffffff;
    transition: var(--transition);
}

.banner .voice-form.form .filter-container .filter-results .results .result::before,
.banner .voice-form.form .filter-container .filter-results .results .result::after,
.startQuote .voice-form.form .filter-container .filter-results .results .result::before,
.startQuote .voice-form.form .filter-container .filter-results .results .result::after {
	right: 10px;
}

.banner .voice-form.form .filter-container .filter-results .clear-filter-btn::before,
.banner .voice-form.form .filter-container .filter-results .results .result::before,
.startQuote .voice-form.form .filter-container .filter-results .clear-filter-btn::before,
.startQuote .voice-form.form .filter-container .filter-results .results .result::before {
	transform: rotate(45deg);
}

.banner .voice-form.form .filter-container .filter-results .clear-filter-btn::after,
.banner .voice-form.form .filter-container .filter-results .results .result::after,
.startQuote .voice-form.form .filter-container .filter-results .clear-filter-btn::after,
.startQuote .voice-form.form .filter-container .filter-results .results .result::after {
	transform: rotate(-45deg);
}

.banner .voice-form.form .filter-container .select,
.startQuote .voice-form.form .filter-container .select {
	background-color: rgba(255, 255, 255, 0.85);
	position: relative;
	color: white;
	padding: 13px;
	font-weight: normal;
}

.banner .form .custom-multiselect-wrapper .custom-multiselect-header,
.startQuote .form .custom-multiselect-wrapper .custom-multiselect-header {
    padding: 13px 0 13px 20px;
    margin-top: 0;
    border: 0;
	background-color: rgba(255, 255, 255, 0.85);
}

.banner .form select.custom-multiselect,
.startQuote .form select.custom-multiselect {
	width: 100%;
    order: 0;
    background-color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-family-1);
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    letter-spacing: 0.66px;
    text-align: left;
    color: #04030e;
	height: 54px;
	cursor: pointer;
	-webkit-appearance: none;
	background-image: url(/images/icons/select-arrow-color.svg);
	background-size: 12px;
	background-repeat: no-repeat;
	background-position: 90%;
	border-radius: 0;
	padding-left: 16px;
}

.banner .form .custom-multiselect-wrapper .custom-multiselect-content > div,
.startQuote .form .custom-multiselect-wrapper .custom-multiselect-content > div {
	background-color: rgba(255, 255, 255, 0.85);
	padding: 30px 0 20px;
	transition: var(--transition);
}

.banner .form .custom-multiselect-wrapper.open .custom-multiselect-content > div,
.startQuote .form .custom-multiselect-wrapper.open .custom-multiselect-content > div {
	background-color: #ffffff;
	border-bottom: #ffffff;
}

.banner .form .custom-multiselect-wrapper .custom-multiselect-content,
.startQuote .form .custom-multiselect-wrapper .custom-multiselect-content {
	bottom: 99%;
}

.banner .form .custom-multiselect-wrapper.open .custom-multiselect-header,
.startQuote .form .custom-multiselect-wrapper.open .custom-multiselect-header {
	background-color: #ffffff;
}

.banner .form .custom-multiselect-wrapper .custom-multiselect-content,
.startQuote .form .custom-multiselect-wrapper .custom-multiselect-content {
	z-index: 2;
}

@media(max-width:768px){
	.banner .voice-form.form {
		padding: 31px 0;
		margin-bottom: 0;
	}
}

.quoteStep2.quoteStep3.form .custom-select .placeholder,
.quoteStep2.quoteStep3.form select.custom-select {
    background-color: #f8f8f8;
    border-bottom: 1px solid #f8f8f8;
}

.banner .form .custom-select .placeholder,
.banner .form select.custom-select,
.startQuote .form .custom-select .placeholder,
.startQuote .form select.custom-select {
    border: 0;
    background-color: rgba(255, 255, 255, 0.85);
	font-family: var(--font-family-1);
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    letter-spacing: 0.66px;
    text-align: left;
    color: #04030e;
	padding: 19px 0 19px 20px;
	cursor: pointer;
}

.quoteStep2.quoteStep3.form .custom-select.open .placeholder,
.quoteStep2.quoteStep3.form .custom-select.open .options-wrapper{
	background-color: #f8f8f8;
}

.startQuote .form .custom-select.open .placeholder,
.startQuote .form .custom-select.open .options-wrapper{
	background: white;
}



.banner .form select.custom-select,
.startQuote .form select.custom-select {
	-webkit-appearance: none;
	background-image: url(/images/icons/select-arrow-color.svg);
	background-size: 12px;
	background-repeat: no-repeat;
	background-position: 90%;
	border-radius: 0;
}

.banner .form select:disabled.custom-select,
.startQuote .form select:disabled.custom-select {
	pointer-events: none;
	opacity: 0.5;
}

.banner .form .custom-select .options-wrapper,
.startQuote .form .custom-select .options-wrapper {
    bottom: 100%;
    border: 0;
    background-color: rgba(255, 255, 255, 0.85);
}

.banner .form .custom-select .options-wrapper .options div,
.startQuote .form .custom-select .options-wrapper .options div {
	font-family: var(--font-family-1);
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    letter-spacing: 0.66px;
    text-align: left;
    color: var(--darkblue);
    transition: var(--transition);
}

.banner .form .custom-select .options-wrapper .options div:hover,
.startQuote .form .custom-select .options-wrapper .options div:hover {
	color: #a800be;
}

.banner .form .custom-select .placeholder::before,
.startQuote .form .custom-select .placeholder::before {
	right: 20px;
    background-image: url(/images/icons/select-arrow-color.svg);
    border: 0;
    width: 15px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    transform: rotate(0);
    transition: var(--transition);
}

.banner .form .custom-multiselect-wrapper .custom-multiselect-header label,
.banner .form .select .selected span,
.startQuote .form .custom-multiselect-wrapper .custom-multiselect-header label,
.startQuote .form .select .selected span {
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: normal;
	font-style: normal;
	letter-spacing: 0.66px;
	text-align: left;
	color: #04030e;

}
.banner .form .custom-multiselect-wrapper .custom-multiselect-header label,
.startQuote .form .custom-multiselect-wrapper .custom-multiselect-header label {
	margin-bottom: 0;
	opacity: 1;
}

.banner .form .custom-multiselect-wrapper .custom-multiselect-tags,
.startQuote .form .custom-multiselect-wrapper .custom-multiselect-tags {
	position: absolute;
	left: -241px;
}

.startQuote .form.quoteStep2 .custom-multiselect-wrapper .custom-multiselect-tags {
	position: relative;
}

.content:not(.shop,.blog,.getQuote) .template .form.quoteStep2 .select-wrapper{
	padding-bottom: 0;
}

.banner .form .custom-multiselect-wrapper .custom-multiselect-tags > span:not(.clear-filter-btn),
.startQuote .form .custom-multiselect-wrapper .custom-multiselect-tags > span:not(.clear-filter-btn) {
	padding: 12px 40px 12px 12px;
	background-color: #a800be;
	color: #ffffff;
	margin: 0;
	margin-right: 10px;
}

.banner .form .custom-multiselect-wrapper .custom-multiselect-tags > * > a.tag-close,
.startQuote .form .custom-multiselect-wrapper .custom-multiselect-tags > * > a.tag-close {
	left: initial;
	right: 10px;
}

.banner .form .custom-multiselect-wrapper .custom-multiselect-tags > * > a.tag-close::before,
.banner .form .custom-multiselect-wrapper .custom-multiselect-tags > * > a.tag-close::after,
.startQuote .form .custom-multiselect-wrapper .custom-multiselect-tags > * > a.tag-close::before,
.startQuote .form .custom-multiselect-wrapper .custom-multiselect-tags > * > a.tag-close::after {
	background-color: #ffffff;
}

.banner .form .select .selected::after,
.startQuote .form .select .selected::after {
	background-image: url("/images/icons/select-arrow-color.svg");
}

.banner .form .select .options > *,
.startQuote .form .select .options > * {
	color: #04030e;
}

.banner .form .custom-multiselect-wrapper .custom-multiselect-content-options > div > div label:nth-child(2),
.startQuote .form .custom-multiselect-wrapper .custom-multiselect-content-options > div > div label:nth-child(2) {
	border-color: #04030e;
	background-color: #04030e;
}

.banner .form .custom-multiselect-wrapper .custom-multiselect-content-options > div > div label:nth-child(2)::before {
	border-color: #ffffff;
}

.banner .form .custom-multiselect-wrapper .custom-multiselect-content-options > div > div,
.startQuote .form .custom-multiselect-wrapper .custom-multiselect-content-options > div > div {
	max-width: 100%;
	padding: 5px 10px;
}
.startQuote .form .custom-multiselect-wrapper .custom-multiselect-content-options > div > div{
	align-items: center;
}

.startQuote .form .custom-select .options-wrapper,
.startQuote .form .custom-multiselect-wrapper .custom-multiselect-content{
	bottom: auto;
	top: 100%;
}

/* .content .template .list-voices .listing div.language:first-child{
	padding: 0px 20px 20px 20px;
} */

.content .template .list-voices .listing div.language{
	padding: 20px 20px 20px 20px;
	background-color: #a800be;
	transition: var(--transition);
	align-items: center;
	font-family: var(--font-family-1);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
	text-align: center;
}

.content .template .list-voices .listing .item {
	background-color: #171719;
	padding: 20px 20px 30px 20px;
	transition: var(--transition);
	align-items: baseline;
}

.content .template .list-voices .listing .item .pic {
	border-radius: 100%;
	width: 43px;
	height: 43px;
	overflow: hidden;
	margin-left: 5px;
	/* pointer-events: none; */
}

/* .content .template .list-voices .listing .item .pic.no-profile {
	border: 1px solid #777676;
} */

/* .content.host .template.info .host-info .pic.no-profile {
	border: 1px solid #777676;
} */

.content .template .list-voices .listing .item .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.content .template .list-voices .listing .item .info {
	margin-left: 20px;
	padding-top: 17px;
	display: flex;
	flex-direction: column;
	/* max-width: 365px; */
	max-width: 405px;
}

.content .template .list-voices .listing .item .info .about {
	font-size: 11px;
	font-weight: 500;
	color: #777676;
}

.content .template .list-voices .listing .item .info .about > div:first-child {
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 16px;
	letter-spacing: 0.66px;
	text-transform: uppercase;
	color: #ffffff;
}

.content .template .list-voices .listing .item .info .about div:not(:first-child) {
	margin: 4px 0;
	font-family: var(--font-family-1);
    font-size: 11px;
	font-weight: 500;
	font-style: normal;
	letter-spacing: normal;
}

.content .template .list-voices .listing .item .info .about span {
	color: #ffffff;
}

.content .template .list-voices .listing .item .info .about div span {
	margin-right: 3px;
}

.content .template .list-voices .listing .item .info .about > div:nth-child(2) > span:last-child {
	margin-left: 15px;
}

.content .template .list-voices .listing .item .resources {
	display: flex;
	flex-wrap: wrap;
	margin: 15px 0 25px 0;
}

.content .template .list-voices .listing .item .resources > * {
	padding: 5px 0;
	color: #ffffff;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	margin-right: 31px;
}

.content .template .list-voices .listing .item .resources > *:last-child {
	margin-right: 0;
}

.content .template .list-voices .listing .item .resources > * .control-btn {
	cursor: pointer;
    height: 20px;
    margin-right: 5px;
    transform: scale(1);
    transition: var(--transition);
}

.content .template .list-voices .listing .item .resources > * p {
	margin: 0;
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: 600;
	color: #ffffff;
}

.content .template .list-voices .listing .item .btns-container {
	margin-left: auto;
}

.content .template .list-voices .listing .item .btns-container > * > * {
	width: 100%;
}

.content .template .list-voices .listing hr {
	border-color: #37363f;
}

.content .template .list-voices .listing .pagination {
	margin-top: 0;
	padding: 64px 0;
	background-color: #171719;
	border-radius: initial;
}

.content .template .list-voices .listing .pagination ul li.prev a, 
.content .template .list-voices .listing .pagination ul li.next a {
	background-image: url("/images/icons/arrow-link-white.svg");
}

.content .template .list-voices .listing .pagination ul li a {
	margin: 0;
}

.content .template .list-voices .listing .pagination ul {
	padding-left: 0;
}

.content .template .list-voices .listing .item .btns-container div {
	font-family: var(--font-family-1);
    font-weight: 600;
    color: #04030e;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    z-index: 1;
    height: 100%;
	width: 100%;
}

.content .template .list-voices .listing .item .btns-container div div,
.content .template .list-voices .listing .item .btns-container div a {
	padding: 5px 10px;
}

.content .template .list-voices .listing .item .btns-container div a {
	margin-top: 10px;
}

.content .template .list-voices .listing .item .btns-container .btn.more div {
	color: #ffffff;
}

.content .template .list-voices .listing .item .btns-container .fav::before {
	background-color: #ffffff;
}

.content .template .list-voices .listing .item .btns-container > * > div img,
.content .template .list-voices .listing .item .btns-container > * > div svg {
	max-width: 16px;
    max-height: 14px;
    width: 100%;
    margin-right: 9px;
}

.content .template .list-voices .listing .item .btns-container > * > div div {
	display: flex;
	align-items:center;
	justify-content: center;
}

.banner .form .custom-multiselect-wrapper .custom-multiselect-content-footer .button,
.startQuote .form .custom-multiselect-wrapper .custom-multiselect-content-footer .button {
	font-size: 10px;
}


.banner .voice-form.form .custom-multiselect-wrapper .custom-multiselect-content-options > div > div label:last-child,
.startQuote .voice-form.form .custom-multiselect-wrapper .custom-multiselect-content-options > div > div label:last-child {
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: normal;
}

.banner .form .custom-multiselect-wrapper .custom-multiselect-content-footer .button span,
.startQuote .form .custom-multiselect-wrapper .custom-multiselect-content-footer .button span {
	font-weight: normal;
}

.banner .form .custom-multiselect-wrapper .custom-multiselect-content-footer .button.save::before,
.banner .form .custom-multiselect-wrapper .custom-multiselect-content-footer .button.close::before,
.startQuote .form .custom-multiselect-wrapper .custom-multiselect-content-footer .button.save::before,
.startQuote .form .custom-multiselect-wrapper .custom-multiselect-content-footer .button.close::before  {
	border-radius: 26.5px;
}

.content .template.startQuote .form span:not(.prefix){
	font-size: inherit;
}


.content .template.startQuote .form:not(.quoteStep2) .select-wrapper .custom-multiselect-wrapper .custom-multiselect-tags span{
	display: none;
}

/* .content .template.startQuote .form .select-wrapper .custom-select.custom-select.isSelected{
	pointer-events: none;
}

.content .template.startQuote .form .select-wrapper .custom-select.custom-select.isSelected .placeholder{
	opacity: .5;
} */

.startQuote .form .custom-multiselect-wrapper .custom-multiselect-content > div{
	padding-top: 15px;
}

.startQuote .form .custom-select .options-wrapper .options div {
	font-size: 12px;
	color: var(--darkblue);
}
@media (max-width: 767px) {


	.content .template .list-voices .listing .item .resources {
		flex-direction: column;
	}

	header.open .menu > a.favorite-container{
		padding-right: 30px;
	}


	header .menu > a .favorite{
		left: 16px;
		right: 0;
	}

	header.open .menu > a .favorite{
		left: 120px;
		right: 0;
	}

	

	
	.resources > * .sep {
		display: none;
	}

	.banner .form .custom-multiselect-wrapper .custom-multiselect-header,
	.startQuote .form .custom-multiselect-wrapper .custom-multiselect-header {
		padding: 18px 0 17px 20px;
	}

	.banner .form .custom-multiselect-wrapper .custom-multiselect-content-footer,
	.startQuote .form .custom-multiselect-wrapper .custom-multiselect-content-footer {
		display: flex;
		justify-content: space-evenly;
	}

	.banner .form .custom-multiselect-wrapper .custom-multiselect-content-options,
	.startQuote .form .custom-multiselect-wrapper .custom-multiselect-content-options {
		margin-right: 0;
		padding-right: 0;
		padding: 0 12px;
	}

	.banner .form .custom-multiselect-wrapper .custom-multiselect-content-options > div {
		padding-left: 30px;
		margin: -10px 0;
	}

	.startQuote .form .custom-multiselect-wrapper .custom-multiselect-content-options > div {
		margin: -10px 0;
	}

	.content .top-profile .container .profile {
		padding-top: 0;
		padding-bottom: 15px
	}

	.banner .voice-form.form .filter-container .filter-results.active,
	.startQuote .voice-form.form .filter-container .filter-results.active {
		display: flex;
		position: relative;
		bottom: auto;
		flex-direction: column;
	}

	.banner .voice-form.form .filter-container .filter-results.active .clear-filter-btn,
	.startQuote .voice-form.form .filter-container .filter-results.active .clear-filter-btn {
		display: inline-block;
		align-self: flex-start;
		margin-top: 5px;
	}

	.banner .voice-form.form .filter-container .filter-results .results,
	.startQuote .voice-form.form .filter-container .filter-results .results {
		flex-wrap: wrap;
		width: 100%;
		margin-right: 0;
	}

	.banner .voice-form.form .filter-container .filter-results .results .result,
	.startQuote .voice-form.form .filter-container .filter-results .results .result {
		margin: 5px 6px 5px 0;
	}

	.banner .form .custom-multiselect-wrapper .custom-multiselect-content-options > div > div  {
		max-width: 50% !important;
	}

	
}

@media (max-width: 375px) {

	.hp-banners .bg + .text-container {
		top: calc(0.39 * var(--wHeight));
	}

	.hp-banners .banners .right-side .slick-dots {
		bottom: calc(100% - 32vh);
	}

}

@media (max-width: 320px) {

	header.open .menu > a.favorite-container{
		padding-right: 0px;
	}

	header.open .menu > a .favorite{
		left: 90px;
		right: 0;
	}

	.hp-banners .bg + .text-container {
		top: calc(0.28 * var(--wHeight));
	}

	.hp-banners .banners .right-side .slick-dots {
		bottom: calc(100% - 27vh);
	}

}

@media (min-width: 768px) {
	.content .template .list-voices .listing .pagination ul li a {
		margin: 0 13px;
	}

	.banner .voice-form.form {
		margin-bottom: -97px;
	}

	.banner .voice-form.form .custom-multiselect-wrapper .custom-multiselect-content-options,
	.startQuote .voice-form.form .custom-multiselect-wrapper .custom-multiselect-content-options {
		padding-left: 8px;
		padding-right: 8px;
		margin-right: 0;
	}

	.banner .voice-form.form .custom-multiselect-wrapper .custom-multiselect-content-options > div,
	.startQuote .voice-form.form .custom-multiselect-wrapper .custom-multiselect-content-options > div {
		margin: 0;
		justify-content: left;
	}

	.banner .form .custom-multiselect-wrapper .custom-multiselect-header,
	.startQuote .form .custom-multiselect-wrapper .custom-multiselect-header {
		padding: 15px 0 15px 20px;
	}

	.banner .form .custom-multiselect-wrapper .custom-multiselect-content-footer,
	.startQuote .form .custom-multiselect-wrapper .custom-multiselect-content-footer {
		margin-top: 20px;
	}

	.banner .form .custom-multiselect-wrapper .custom-multiselect-content-footer,
	.startQuote .form .custom-multiselect-wrapper .custom-multiselect-content-footer {
		display: flex;
		align-items: center;
		justify-content: space-evenly;
		padding: 0 8px;
	}

	.banner .form .custom-multiselect-wrapper .custom-multiselect-content-footer .button.close,
	.startQuote .form .custom-multiselect-wrapper .custom-multiselect-content-footer .button.close {
		margin-top: 0;
		margin-left: 0;
	}
}

@media (min-width: 992px) {
	.banner .voice-form.form {
		margin-bottom: -133px;
	}
}

@media (max-width: 1199px) {
	.banner .form .custom-multiselect-wrapper .custom-multiselect-content-options > div > div {
		max-width: 20%;
	}
}

@media (min-width: 1200px) {
	.content .banner:not(.noimg) .voice-form.form {
		position: absolute;
		bottom: 0;
		margin-bottom: 0;
		margin-top: 0;
		width: 100%;
	}

	.banner .voice-form.form .filter-container {
		max-width: 926px;
		margin: 0 auto;
	}

	.banner .voice-form.form .filter-container > *,
	.startQuote .voice-form.form .filter-container > * {
		padding: 0 5px;
	}

	.banner .voice-form.form .filter-container,
	.startQuote .voice-form.form .filter-container {
		flex-direction: row;
	}

	.banner .voice-form.form .filter-container .select,
	.startQuote .voice-form.form .filter-container .select {
		padding: 15px 20px;
	}

	.banner .form .custom-multiselect-wrapper .custom-multiselect-content-options > div > div,
	.startQuote .form .custom-multiselect-wrapper .custom-multiselect-content-options > div > div {
		padding: 5px;
	}

	.banner .form .custom-multiselect-wrapper .custom-multiselect-content-options > div > div:only-child,
	.startQuote .form .custom-multiselect-wrapper .custom-multiselect-content-options > div > div:only-child {
		flex: 1;
	}

	/* .banner .form .custom-multiselect-wrapper .custom-multiselect-content-options > div{
		flex-direction: column;
	} */

	.content .template.voice-mod .container.container-xl {
		max-width: 1300px;
		display: flex;
		justify-content: center;
	}
	
	.content .template.voice-mod .template-module .container.container-sm {
		max-width: 498px;
	}
	
	.content .template .list-voices {
		max-width: 717px;
		width: 100%;
	}

	.content.search-voice .template.voice-mod .container.container-xl .list-voices:only-child {
		max-width: 100%;
	}

	.content .template .list-voices .listing .item .info .about div:not(:first-child) {
		display: inline;
		margin: 0 5px;
	}

	.content .template .list-voices .listing .item .info .resources {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
	}

	.content .template .list-voices .listing .item .btn-container > * > * {
		padding: 16px 37px;
		cursor: pointer;
	}

	.content .template .list-voices .listing .item .btns-container div {
		height: auto;
	}

	.content .template .list-voices .listing .item .btns-container > * > * {
		padding: 16px 37px;
		cursor: pointer;
	}

	.content .template .list-voices .listing .item .btns-container > * {
		padding: 5px 0;
		max-height: 60px;
	}

	.content .template .list-voices .listing .item .resources > * {
		margin-right: 15px;
	}

	.content .template .list-voices .listing .item .btns-container {
		margin-left: auto;
	}

	.content .template.voice-mod .container.container-xl .template-module {
		padding-right: 125px;
    	margin: 0 -20px;
	}
}

/********************************/
/********** Host Page **********/
/******************************/

.content.host .template.info .container.container-sm {
	max-width: 955px;
}

.content.host .template.info .host-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 97px;
}

.content.host .template.info .host-info .pic {
    width: 200px;
    height: 200px;
	border-radius: 50%;
    transition: var(--transition);
    position: relative;
	overflow: hidden;
}

.content.host .template.info .host-info .pic img {
	width: 100%;
	height: 100%;
	-webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
	object-fit: cover;
}

.content.host .template.info .host-info > div:not(.profile-info) {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.content.host .template.info .host-info > div:not(.profile-info) .fav-btn,
.content.host .template.info .host-info > div:not(.profile-info) a:not(.fav-btn),
.content.host .template.info .host-files-container .fav-btn {
	padding: 15px 48px;
	position: relative;
	width: 100%;
	z-index: 1;
	text-align: center;
	margin-top: 13px;
	transition: var(--transition);
}

.content.host .template.info .host-info > div:not(.profile-info) a:not(.fav-btn) {
	margin-top: 10px;
}

.content.host .template.info .host-info > div:not(.profile-info) .fav-btn span,
.content.host .template.info .host-files-container .fav-btn span {
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.66px;
	color: #ffffff;
	z-index: 1;
	text-align: center;
	position: relative;
	padding-left: 24px;
}

.content.host .template.info .host-info > div:not(.profile-info) .fav-btn span {
	text-transform: uppercase;
}

.content.host .template.info .host-info > div:not(.profile-info) .fav-btn span::before,
.content.host .template.info .host-files-container .fav-btn span::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 16px;
	height: 14px;
	background-image: url("/images/icons/heart.svg");
	filter: invert(1);
	transition: var(--transition);
}

.content.host .template.info .host-info > div:not(.profile-info) .fav-btn.ing span::before,
.content.host .template.info .host-files-container .fav-btn.in span::before {
	background-image: url("/images/icons/heart-filled.svg");
}

.content.host .template.info .host-info > div:not(.profile-info) a:not(.fav-btn) span {
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.66px;
	color: #04030e;
	z-index: 1;
	text-align: center;
	text-transform: uppercase;
}

.content.host .template.info .host-info > div:not(.profile-info) .fav-btn::before,
.content.host .template.info .host-info > div:not(.profile-info) a:not(.fav-btn)::before,
.content.host .template.info .host-files-container .fav-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 26.5px;
	width: 100%;
	height: 100%;
	z-index: -1;
	transition: var(--transition);
}

.content.host .template.info .host-info > div:not(.profile-info) .fav-btn::before {
	background-color: #04030e;
}

.content.host .template.info .host-info > div:not(.profile-info) .fav-btn.in span::before {
	background-image: url("/images/icons/heart-filled.svg");
	filter: initial;
}

.content.host .template.info .host-info > div:not(.profile-info) .fav-btn:hover::before,
.content.host .template.info .host-info > div:not(.profile-info) a:not(.fav-btn):hover::before {
	transform: scale(1.1);
}

.content.host .template.info .host-info > div:not(.profile-info) a:not(.fav-btn)::before {
	border: 2px solid #04030e;
}

.content.host .template.info .host-info .profile-info p:not(.desc) strong {
	font-size: 24px;
}

.content.host .template.info .host-info .profile-info p:not(.desc) {
	line-height: 1.65;
}

.content.host .template.info .host-files-container {
	padding: 108px 0;
	background-color: #04030e;
}

.content.host .template.info .host-files-container .fav-btn {
	width: auto;
}

.content.host .template.info .host-files-container .fav-btn::before {
	background-color: #ffffff;
}

.content.host .template.info .host-files-container .fav-btn span {
	color: #04030e;
	text-transform: uppercase;
}

.content.host .template.info .host-files-container .fav-btn span::before {
	filter: initial;
}

.content.host .template.info .host-files-container .top {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.content.host .template.info .host-files-container .top p {
	font-family: var(--font-family-2);
	font-size: 42px;
	font-weight: bold;
	font-stretch: normal;
	line-height: 1.24;
	letter-spacing: -1.05px;
	text-align: left;
	color: #ffffff;
	margin: 0;
}

.content.host .template.info .host-files-container .bottom .item {
	padding: 30px 49px;
	background-color: rgba(23, 23, 25, 0.71);
}

.content.host .template.info .host-files-container .bottom .item:first-child {
	margin-top: 71px;
}

.content.host .template.info .host-files-container .bottom .item .upper span {
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: normal;
	font-style: italic;
	line-height: 1.25;
	letter-spacing: normal;
	text-align: left;
	color: #7c7c7d;
	margin-bottom: 12px;
}

.content.host .template.info .host-files-container .bottom .item .upper p {
	font-family: var(--font-family-2);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: normal;
	text-align: left;
	color: #ffffff;
	margin: 0;
}

.content.host .template.info .host-files-container .bottom .item .lower {
	padding: 21px 36px;
	background-color: #04030e;
	margin-top: 30px;
}

.content.host .template.info .host-files-container .bottom .item .lower + .lower {
	margin-top: 10px;
}

.content.host .template.info .host-files-container .bottom .item .lower .title p {
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: normal;
	font-style: italic;
	line-height: 1.25;
	letter-spacing: normal;
	text-align: left;
	color: #ffffff;
	margin: 0;
}

.content.host .template.info .host-files-container .bottom .item .lower .title p span {
	color: #7c7c7d;
}

.content.host .template.info .host-files-container .bottom .item .lower .resources .audio p,
.content.host .template.info .host-files-container .bottom .item .lower .resources .video p {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.66px;
	margin: 0;
	color: #ffffff;
}

.content.host .template.info .host-files-container .bottom .item .lower .resources {
	margin-bottom: 0;
}

.content.host .template.info {
	padding-bottom: 0;
}

.content.host .template.info .host-files-container .bottom hr {
	margin: 0;
	border-color: #1e1d28;
}

.content.host .template.info .host-files-container .audio-progress {
	max-height: 0;
    padding-left: 0;
    overflow: hidden;
    margin-top: 0;
    transition: var(--transition);
	min-width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
}

.content.host .template.info .host-files-container .audio-progress span {
	display: block;
    position: relative;
    font-size: 10px;
    line-height: 1;
    color: var(--grey);
}

.content.host .template.info .host-files-container  .resources ~ .audio-progress.active {
	padding-top: 46px;
    max-height: 100%;
}

.content.host .template.info .host-files-container  .audio-progress .bar {
	background-color: rgba(255, 255, 255,0.25);
	position: relative;
    margin: 0 12px;
    flex: 1;
    max-width: 100%;
    height: 4px;
    border-radius: 2px;
    cursor: pointer;
}

.content.host .template.info .host-files-container  .audio-progress .bar > span {
	background-color: #ffffff;
	position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    border-radius: inherit;
}

.content.host .template.info .host-files-container  .audio-progress .bar > span::before {
	content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: inherit;
    pointer-events: none;
}

@media (max-width: 767px) {
	.content.host .template.info .host-info .profile-info {
		margin-top: 30px;
	}
}

@media (min-width: 768px) {
	.content.host .template.info .host-info {
		flex-direction: row;
		align-items: flex-start;
	}

	.content.host .template.info .host-info > div:not(.profile-info) {
		margin-right: 82px;
	}

	.content.host .template.info .host-files-container .top {
		flex-direction: row;
		justify-content: space-between;
	}

	.content.host .template.info .host-files-container .top .fav-btn {
		margin-top: 0;
	}
}

@media (min-width: 992px) {
	.content.host .template.info .host-files-container .bottom .item .lower .resources > * {
		margin-right: 25px;
	}
	
	.content.host .template.info .host-files-container .bottom .item .lower .resources > *:last-child {
		margin-right: 0;
	}

	.content.host .template.info .host-files-container .bottom .item .lower .resources {
		display: flex;
	}

	.content .template * + .listing.voices{
		margin-top: 0;
	}
}

/********************************/
/********** Get Quote **********/
/******************************/


.content.getQuote .template .upper .container.container-sm{
	max-width: 859px;
}

.content.getQuote .template .upper p {
	font-size: 16px;
	text-align: center;
}

.content.getQuote .template .upper {
	margin-bottom: 50px;
}

.content.getQuote .template .lower .form p.h2 {
	margin-bottom: 0;
}

.content.getQuote .template .lower .form input,
.content.getQuote .template .lower .form textarea,
.content.getQuote .template .lower .form .select,
.content .template.review .form .input-wrapper input,
.content .template.review .form .input-wrapper textarea {
	background-color: #f8f8f8;
	border-bottom-color: #f8f8f8;
}

.content .template.review .form .input-wrapper textarea{
	height: 120px;
}

.content.getQuote .template .lower .form .select .selected::after {
	background-image: url("/images/icons/select-arrow-color.svg");
}

.content.getQuote .template .lower .form input[type='checkbox'] + label {
	background-color: #f8f8f8;
	border-color: #f8f8f8;
}

.content .template.review .form .checkbox-wrapper input[type='checkbox'] + label,
.content .template.review .form.quoteStep2 .checkbox-wrapper input[type='checkbox']:checked + label {
	background-color: #ecebeb;
	border-color: #ecebeb;
	margin-top: 0px;
}

.content.getQuote .template .lower .form label a {
	color: #04030e;
	border-bottom: 0;
}

.content.getQuote .template .lower .form .button span {
	font-size: 12px;
}

.content.getQuote .template .lower .form .select {
	padding: 13px 16px;
}

.content.getQuote .template .lower .form .custom-select .placeholder {
	background-color: #f8f8f8;
    border-bottom-color: #f8f8f8;
	padding: 19px 16px;
	cursor: pointer;
	font-family: var(--font-family-1);
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: 0.66px;
    text-align: left;
    color: #7c7c7d;
}

.content.getQuote .template .lower .form select.custom-select {
	background-image: url(/images/icons/select-arrow-color.svg);
	background-size: 15px;
	background-repeat: no-repeat;
	background-position: 96.5%;
	border-radius: 0;
	-webkit-appearance: none;
	background-color: #f8f8f8;
	border: 0;
}

.content.getQuote .template .lower .form .custom-select .placeholder::before {
	right: 16px;
	background-image: url(/images/icons/select-arrow-color.svg);
	border: 0;
	width: 15px;
	height: 15px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	transform: rotate(0);
	transition: var(--transition);
}

.content.getQuote .template .lower .form .custom-select.open .placeholder::before {
	transform: rotate(180deg);
}

.content.getQuote .template .lower .form .custom-select .options-wrapper {
	bottom: 100%;
	border: 0;
	background-color: #f8f8f8;
}

.content.getQuote .template .lower .form .custom-select .options-wrapper .options div {
	font-family: var(--font-family-1);
    font-size: 11px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.61px;
    text-align: left;
    color: #7c7c7d;
    text-transform: uppercase;
	opacity: 0.5;
	transition: var(--transition);
}

.content.getQuote .template .lower .form .custom-select .options-wrapper .options div:hover {
	opacity: 1;
}

.content.getQuote .template .lower .form .select span {
	color: #7c7c7d;
}

.content.getQuote .template .lower .quote-list {
	margin-top: 30px;
}

.content.getQuote .template .lower .quote-list .info-box .title {
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.content.getQuote .template .lower .quote-list .info-box .title h2 {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 20px;
}

.content.getQuote .template .lower .quote-list .info-box .title svg {
	width: 33px;
	height: 29px;
	margin-top: 11px;
}

.content.getQuote .template .lower .quote-list .info-box .inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin-top: 56px;
	position: relative;
}

.content.getQuote .template .lower .quote-list .info-box .inner p {
	text-align: center;
}

.content.getQuote .template .lower .quote-list .info-box .inner hr {
	border-color: #37363f;
	margin: 0;
	width: 100%;
}

.content.getQuote .template .lower .quote-list .info-box .inner .item {
	background-color: #171719;
    padding: 20px 20px 22px 20px;
    transition: var(--transition);
	display: flex;
    align-items: baseline;
	position: relative;
	width: 100%;
}

.content.getQuote .template .lower .quote-list .info-box .inner .item .close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	display: block;
	width: 16px;
	height: 17px;
}

.content.getQuote .template .lower .quote-list .info-box .inner .item .close-btn img {
	width: 100%;
	height: 100%;
	display: block;
}

.content.getQuote .template .lower .quote-list .info-box .inner .item .pic {
    border-radius: 100%;
    width: 43px;
    height: 43px;
    overflow: hidden;
    /* margin-left: 10px; */
	/* width: 100%; */
    /* height: 100%; */
}

.content.getQuote .template .lower .quote-list .info-box .inner .item .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.content.getQuote .template .lower .quote-list .info-box .inner .item .info {
    margin-left: 20px;
    padding-top: 17px;
    display: flex;
    flex-direction: column;
	max-width: 302px;
    width: 100%;
}

@media (max-width: 767px) {
	.content.getQuote .template .lower .quote-list .info-box .inner .item .info {
		max-width: 232px;
	}
}

.content.getQuote .template .lower .quote-list .info-box .inner .item .info .about {
	font-family: var(--font-family-1);
    font-size: 11px;
    font-weight: 500;
    color: #777676;
}

.content.getQuote .template .lower .quote-list .info-box .inner .item .info .about > div:first-child {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: #ffffff;
	width: 100%;
}

.content.getQuote .template .lower .quote-list .info-box .inner .item .info .about div:not(:first-child) {
    margin: 4px 0;
}

.content.getQuote .template .lower .quote-list .info-box .inner .item .info .about span {
    color: #ffffff;
}

.content.getQuote .template .lower .quote-list .info-box .inner .item .info .about div span {
    margin-right: 3px;
	margin-left: 10px;
}

.content.getQuote .template .lower .quote-list .info-box .inner .item .info .about div span:nth-child(1) {
	margin-left: 0;
}

.content.getQuote .template .lower .quote-list .info-box .inner .item .info .about > div:nth-child(2) > span:last-child {
    margin-left: 15px;
}

.content.getQuote .template .lower .quote-list .info-box .inner .item .resources {
    display: flex;
    flex-wrap: wrap;
	flex-direction: column;
    margin: 15px 0 25px 0;
	margin-bottom: 0;
	max-width: 302px;
}

.content.getQuote .template .lower .quote-list .info-box .inner .item .resources:nth-child(2) + .resources{
	margin-top: 0;
}

.content.getQuote .template .lower .quote-list .info-box .inner .item .resources > * {
    padding: 5px 0;
    color: #ffffff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin-right: 19px;
	flex: 1;
}

.content.getQuote .template .lower .quote-list .info-box .inner .item .resources > * .control-btn:not(.download) {
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: url(/images/icons/play.svg) 0%/contain no-repeat;
    margin-right: 11px;
    transform: scale(1);
    transition: var(--transition);
}

.content.getQuote .template .lower .quote-list .info-box .inner .item .resources .video .control-btn:not(.download) {
    width: 27px;
    height: 28px;
    background: url(/images/icons/yt-play.svg) 0%/contain no-repeat;
}

.content.getQuote .template .lower .quote-list .info-box .inner .item .resources  > * p {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

/* .content.getQuote .template .lower .quote-list .info-box .inner .item .resources > *:last-child {
    margin-right: 0;
} */

.content.getQuote .template .lower .quote-list .info-box .inner .clear-btn {
	display: block;
	margin-left: auto;
	opacity: .50;
	margin-top: 22px;
}

.content.getQuote .template .lower .quote-list .info-box .inner .clear-btn span {
	position: relative;
	font-family: var(--font-family-1);
	font-size: 10.5px;
	font-weight: bold;
	letter-spacing: 0.58px;
	color: #000000;
	padding-right: 20px;
	text-transform: uppercase;
}

.content.getQuote .template .lower .quote-list .info-box .inner .clear-btn span::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 10px;
	height: 10px;
	background-image: url("/images/icons/cross-clear.svg");
	margin: auto;
}

@media (max-width: 1199px) {
	.content.getQuote .template .lower .quote-list .info-box .inner {
		padding: 0 20px;
	}
}

@media (min-width: 1200px) {
	.content.getQuote .template .lower {
		display: flex;
		max-width: 1061px;
		padding: 0 20px;
		margin: 0 auto;
	}

	.content.getQuote .template .lower .container.container-sm {
		max-width: 505px;
		margin-left: 0;
	}

	.content.getQuote .template .lower .form .button {
		padding: 19px 38px;
	}

	.content.getQuote .template .lower .quote-list {
		max-width: 445px;
		padding: 0 20px;
		margin-top: 0;
		width: 100%;
	}

	.content.getQuote .template .lower .quote-list .info-box .inner {
		align-items: baseline;
	}

	.content.getQuote .template .lower .quote-list .info-box .inner p {
		text-align: left;
	}

	.content.getQuote .template .lower .quote-list .info-box .inner .btn {
		padding: 17px 48px;
	}

	.content.getQuote .template .lower .quote-list .info-box .inner .item .resources > * {
		margin-right: 31px;
	}


	.content.getQuote .template .lower .quote-list .info-box .inner .clear-btn:hover {
		opacity: 1;
	}
}

/*******************************/
/********** Services **********/
/*****************************/

.content.service-list .service-container {
	position: relative;
	width: 100%;
	padding: 0 15px;
	max-width: 1222px;
	margin: 0 auto;
}

.content.service-list .service-container .wrapper .service {
	max-width: 404px;
	position: relative;
	padding: 15px;
}

.content.service-list .service-container .wrapper .service::before {
	content: "";
	position: absolute;
	top: 15px;left: 15px;right: 15px;bottom: 15px;
	background-color: #180013;
	opacity: 0.50;
	z-index: 1;
	pointer-events: none;
}

.content.service-list .service-container .wrapper .service img {
	width: 100%;
	height: 100%;
}

.content.service-list .service-container .wrapper .service .inner {
	position: absolute;
    top: 15px;
    left: -2px;
    right: 0;
	bottom: 16px;
    display: flex;
    flex-direction: column;
	margin-right: 15px;
    margin-left: 17px;
	z-index: 1;
	pointer-events: none;
}

.content.service-list .service-container .wrapper .service .inner hr {
	margin: 30px 31px 17px;
	border-color: #ffffff;
	opacity: 0.14;
}

.content.service-list .service-container .wrapper .service .inner .top {
	/* display: flex;
	align-items: flex-end;
	justify-content: space-between; */
	padding-right: 31px;
    padding-left: 34px;
	/* height: 70px;
	margin-top: 89px; */
	position: relative;
}

.content.service-list .service-container .wrapper .service .inner .top p {
	font-family: var(--font-family-2);
	font-size: 35px;
	font-weight: bold;
	line-height: 1.29;
	letter-spacing: -0.88px;
	text-align: left;
	color: #ffffff;
	margin-bottom: 0;
	margin-right: 50px;
}

.content.service-list .service-container .wrapper .service .inner .top .more-info {
	max-width: 32px;
	max-height: 32px;
	position: absolute;
	right: 34px;
	cursor: pointer;
	bottom: 0;
	pointer-events: all;
}

.content.service-list .service-container .wrapper .service .inner .top .more-info::before,
.content.service-list .service-container .wrapper .service .inner .top .more-info::after {
	content: "";
	position: absolute;
	background-color: #ffffff;
}

.content.service-list .service-container .wrapper .service .inner .top .more-info::before {
	left: 50%;
	transform: translateX(-50%);
	height: 100%;
	width: 2px;
}

.content.service-list .service-container .wrapper .service .inner .top .more-info::after {
	height: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.content.service-list .service-container .wrapper .service .inner .bottom .resources {
	margin: 0;
}

.content.service-list .service-container .wrapper .service .inner .bottom .resources > * {
	position: relative;
	transition: var(--transition);
	flex-direction: column;
	align-items: baseline;
	margin: 4px 0;
	padding: 17px 0 11px;
}

.content.service-list .service-container .wrapper .service .inner .bottom .resources > *:first-child {
	margin-top: 0;
}

.content.service-list .service-container .wrapper .service .inner .bottom .resources > *:last-child {
	margin-bottom: 0;
}

.content.service-list .service-container .wrapper .service .inner .bottom .audio::before,
.content.service-list .service-container .wrapper .service .inner .bottom .video::before {
	background-color: #04030e;
	opacity: 0.5;
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	top: 0;
	height: 100%;
	max-height: 0;
}

.content.service-list .service-container .wrapper .service .inner .bottom .audio.active::before,
.content.service-list .service-container .wrapper .service .inner .bottom .video.active::before {
	max-height: 100%;
}

.content.service-list .service-container .wrapper .service .inner .bottom .audio > div,
.content.service-list .service-container .wrapper .service .inner .bottom .video > div {
	display: flex;
	align-items: center;
	margin-left: 31px;
	margin-right: 20px;
	transition: var(--transition);
	z-index: 5;
	gap: 11px;
}

.content.service-list .service-container .wrapper .service .inner .bottom .resources > * .inner-source {
	position: relative;
	transition: var(--transition);
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
	min-width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
	padding-left: 31px;
    padding-right: 31px;
	margin: 0;
	z-index: 1;
}

.content.service-list .service-container .wrapper .service .inner .bottom .resources > * .inner-source.active {
	max-height: 100%;
	padding-top: 25px;
	height: 100%;
}
.content.service-list .service-container .wrapper .service .inner .bottom .resources > * .inner-source span {
	display: block;
    position: relative;
    font-size: 10px;
    line-height: 1;
    color: #ffffff;
}

.content.service-list .service-container .wrapper .service .inner .bottom .resources > * .inner-source .bar {
	position: relative;
    margin: 0 12px;
    flex: 1;
    max-width: 100%;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255,0.25);
    cursor: pointer;
}

.content.service-list .service-container .wrapper .service .inner .bottom .resources > * .inner-source .bar > span {
	position: absolute;
    top: 0;
    bottom: 0;
    background-color: #ffffff;
    width: 0;
    border-radius: inherit;
}

.content.service-list .service-container .wrapper .service .inner .bottom .resources > * .inner-source .bar > span::before {
	content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: inherit;
    pointer-events: none;
}

.content.service-list .service-container .wrapper .service .inner .bottom .resources > * p {
	font-size: 11px;
	letter-spacing: 0.61px;
	cursor: pointer;
	pointer-events: all;
	flex: 1;
}

.content.service-list .service-container .wrapper .service .inner .bottom .resources .source-btn {
	cursor: pointer;
    width: 20px;
    height: 20px;
    background: url(/images/icons/play.svg) 0%/contain no-repeat;
    transform: scale(1);
    transition: var(--transition);
	pointer-events: all;
}

.content.service-list .service-container .wrapper .service .inner .bottom .resources .source-btn.pause {
	background: url(/images/icons/pause.svg) 0%/contain no-repeat;
	pointer-events: all;
}


@media(min-width: 768px) {

}

@media(min-width: 992px) {

}

@media (min-width: 1200px) {
	.content.service-list .service-container .wrapper {
		justify-content: center;
	}
}

@media only screen and (max-width: 1620px) and (min-width: 1200px){ 
	header .menu {
		margin-right: 20px;
	}

	header > .menu .top_menu {
		margin-left: 0px;
	}

	header .menu > a:first-child, header .menu > a {
		margin-left: 0;
		margin-right: 15px;
	}

	header > .menu .top_menu ul li a span{
		font-size: 11px;
	}

	header .menu span {
		font-size: 11px;
	}
}


.content .template.startQuote{
	padding-top: 0;
}
.startQuote .steps{
	display: flex;
	justify-content: space-between;
}
.startQuote .steps .step{
	width: 150px;
	text-align: center;
	position: relative;
}



.startQuote .steps .step p{
	font-family: var(--font-family-2);
	font-size: 16px;
	font-weight: normal;
	line-height: normal;
	letter-spacing: normal;
	color: #c2c0c0;
	text-align: center;
}

.startQuote .steps .step.active p{
	color: var(--blue);
}

.startQuote .steps .step.old p{
	color: #171719;
}
.startQuote .steps .step > div{
	width: 109px;
	height: 109px;
	position: relative;
	margin: auto;
	display: flex;
    justify-content: center;
    align-items: center;
}
.startQuote .steps .step > div::before{
	content:"";
	border: 2px transparent dotted;
	border-radius: 50%;
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.startQuote .steps .step.active > div::before{
	border: 2px var(--blue) dotted;
}

.startQuote .steps .step + .step:before{
	content:"";
	position: absolute;
	width: 100%;
	right: 50%;
	top: 54.5px;
}

@media(min-width:992px){
	.startQuote .steps .step:after {
		--height: 2px;
		--width: calc(100% + 81px);
		width: var(--width);
		content: "";
		position: absolute;
		border-top: 2px #d8d6d6 dotted;
		top: calc((109px / 2) + (var(--height) / 2));
		left: calc(-1 * 218px);
		transition: 0.7s;
		z-index: 1;
	}

	.startQuote .steps .step:first-of-type::after{
		content: none;
	}

	.startQuote .steps .step.active:after,
	.startQuote .steps .step.old:after {
		border-color: var(--blue)
	}
}

.startQuote .steps .step > div::after{
	content: "";
	background: #e4e3e3;
	width: 87px;
	height: 87px;
	position: absolute;
	border-radius: 50%;
}

.startQuote .steps .step > div > i{
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	background-color: white;
	display: block;
	z-index: 1;
}

.startQuote .steps .step:nth-of-type(1) > div > i{
	width: 25px;
	height: 25px;
	-webkit-mask-image: url(/images/icons/search.svg);
	mask-image: url(/images/icons/search.svg);
}
.startQuote .steps .step:nth-of-type(2) > div > i{
	width: 26px;
	height: 33px;
	-webkit-mask-image: url(/images/icons/voiceover.svg);
	mask-image: url(/images/icons/voiceover.svg);
}
.startQuote .steps .step:nth-of-type(3) > div > i{
	width: 28px;
  	height: 27px;
	-webkit-mask-image: url(/images/icons/heart-white.svg);
	mask-image: url(/images/icons/heart-white.svg);
}

.startQuote .steps .step.active > div::after,
.startQuote .steps .step.old > div::after{
	background: var(--blue);
}

.content .template.startQuote h2{
	font-family: var(--font-family-1);
}

.content .template.startQuote .list-voices{
	max-width: 100%;
}
.content .template.startQuote .list-voices .listing .item{
	position: relative;
}
.content .template.startQuote .list-voices .listing .item .resources{
	margin: 15px 0 25px 0;
}

.content .template.startQuote .list-voices .listing .item .info{
	max-width: inherit;
}

.content .template.startQuote .delete{
	width: 16px;
  	height: 17px;
	-webkit-mask-image: url(/images/icons/delete.svg);
	mask-image: url(/images/icons/delete.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	background-color: var(--blue);
	display: block;
	position: absolute;
	top: 10px;
	right: 10px;
}

.content .template.startQuote .delete:hover{
	background-color: white;
}

.content .template.startQuote .template-module {
    margin-bottom: 37px;
}

.startQuote .voice-form{
	background: var(--blue);
	padding: 20px;
}


.next-step{
	width: 100%;
	background-color: var(--blue);
	padding: 20px;
	text-align: center;
	position: fixed;
	bottom: 48px;
	z-index: 1;
}

@media(min-width:992px){
	.next-step{
		bottom: 0;
	}
}

.next-step .btn::before{
	border: none;
}

.next-step .btn{
	max-width: 152px;
	width: 100%;
	padding: 22px 10px;
	overflow: initial !important;
}

.next-step .btn span{
	color: white !important;
}

.next-step .btn-back::before{
	background-color: #740183;
}

.next-step .btn-back + .btn{
	margin-left: 10px;
}

.content:not(.blog) .template .form > div.next-step{
	margin-bottom: 0;
}

.content:not(.shop,.blog,.getQuote) .template.startQuote .voice-form.form .filter-container > * {
    padding: 0 5px;
}

.content:not(.shop,.blog,.getQuote) .template.startQuote .voice-form.form > div{
	margin-bottom: 45px;
}

.startQuote .form .custom-multiselect-wrapper .custom-multiselect-header label{
	position: relative;
	transform: none;
	display: inline-block;
	margin: inherit;
}


.startQuote .voice-form.form .filter-container .filter-results .results .result{
	text-transform: uppercase;
	background-color: #6b0079;
	padding: 10px 30px 10px 10px;
	line-height: normal;
}

.startQuote .voice-form.form .filter-container .filter-results .clear-filter-btn{
	text-transform: uppercase;
}

.content .template.startQuote .bg-input + h2{
	margin-top: 60px;
}
@media (min-width: 992px){
	.content .template.startQuote h2{
		font-size: 1.875rem;
	}
	.content .template.startQuote .list-voices .listing .item .resources{
		margin: 15px 0 0 0;
	}
	.content .template .list-voices .listing .item .info .about div:not(:first-child){
		margin: 0 9px 0 0;
	}
}
@media (max-width: 992px){
	.content:not(.shop,.blog,.getQuote) .template.startQuote .voice-form.form .filter-container > * {
		padding: 5px;
	}
	.template.startQuote .custom-select .options-wrapper{
		padding: 0 0 0 12px;
	}
	.form .custom-multiselect-wrapper .custom-multiselect-content-options{
		overflow-y: initial;
    	overflow-x: initial;
	}
}

.content .template.startQuote .form.quoteStep2 .bg-input{
	padding: 23px 33px;
	background: #f8f8f8;
	margin-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
}


.startQuote .form.quoteStep2 .option-checked

.content .template .form input[type='radio'] + label {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.startQuote .form.quoteStep2 .option-checked{
	flex:100%
}

.content .template .form.quoteStep2 input[type='checkbox'] + label,
.content .template .form.quoteStep2 input[type='radio'] + label{
	vertical-align: top;
	margin-top: 5px;
	cursor: pointer;
}

.content .template .form.quoteStep2 input[type='checkbox'] + label,
.content .template .form.quoteStep2 input[type='radio'] + label,
.startQuote .form .custom-multiselect-wrapper .custom-multiselect-content-options > div > div label:nth-child(2){
	background-color: white;
	border: 1px solid #d0d1d1;
	width: 24px;
	height: 24px;
	position: relative;
}

.content .template .form input[type='checkbox'] + label::before,
.content .template .form input[type='radio'] + label::before {
	border-color: #ffffff;
}

.content .template.register .form input[type='checkbox'] + label::before{
	border-color: #25242d;
}

.content .template .form.quoteStep2 input[type='checkbox']:checked + label,
.content .template .form.quoteStep2 input[type='radio']:checked + label{
	background-color: var(--blue);
	border: 1px solid var(--blue);
}

.content .template .form.quoteStep2 .checkbox-wrapper input[type='checkbox']:checked + label{
	background-color: #f8f8f8;
    border-color: #f8f8f8;
}



.content .template .form.quoteStep2 input[type='radio'] + label::before {
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    width: 6px;
    height: 12px;
	border-radius: 0;
	background: none;
	top:-2px;
	transform: rotate(45deg);
}

.content .template .form.quoteStep2 input[type='checkbox'] + label + label,
.content .template .form.quoteStep2 input[type='radio'] + label + label {
	font-family: var(--font-family-1);
	font-size: 18px;
	font-weight: 300;
	line-height: 1.56;
	letter-spacing: normal;
	text-align: left;
	color: #171719;
	margin: 0;
	margin-left: 28px;
}

.content .template.review .form input[type='checkbox'] + label + label a{
	display: initial;
}

.startQuote .form.quoteStep2 .custom-multiselect-wrapper > .custom-multiselect-header,
.startQuote .form.quoteStep2 .custom-multiselect-wrapper > .custom-multiselect-header + .custom-multiselect-content{
	max-width: 300px;
}

.startQuote.review .form.quoteStep2 .select-wrapper{
	max-width: 100%;
}
.startQuote .form.quoteStep2 .custom-multiselect-wrapper .custom-multiselect-header{
	padding: 20px 0 20px 20px;
	border: solid 2px #e6e6e6;
    background-color: white;
}

.form.quoteStep2 .custom-multiselect-wrapper .custom-multiselect-content-options > div{
	display: block;
}

.startQuote .form.quoteStep2 .custom-multiselect-wrapper .custom-multiselect-content {
    bottom: auto;
}

.content .template .form.quoteStep2 .custom-multiselect-wrapper input[type='checkbox'] + label + label{
	flex: 1;
    font-size: 14px;
    color: var(--darkblue);
    line-height: 1.25;
    margin-top: 2px;
    position: relative;
    transform: initial;
    top: initial;
	margin: 0;
}

.startQuote .form.quoteStep2 .custom-multiselect-wrapper .custom-multiselect-content-options > div > div{
	padding: 7px 0;
	align-items: center;
}

.startQuote .form.quoteStep2 .custom-multiselect-wrapper .custom-multiselect-content-options > div{
	margin: 0;
}

.startQuote .form.quoteStep2 .custom-multiselect-wrapper .custom-multiselect-content > div{
	padding: 15px;
}

.content .template .form.quoteStep2 .select-wrapper .custom-multiselect-wrapper input[type='checkbox'] + label + label {
	font-size: 13px;
}

.startQuote .form.quoteStep2 .option-checked{
	position: relative;
	margin-left: 62px;
}


.startQuote .form.quoteStep2 .option-checked .custom-multiselect-wrapper .custom-multiselect-tags{
	left: 0;
	margin: 5px 0;
}
.startQuote .form.quoteStep2 .option-checked .custom-multiselect-wrapper .custom-multiselect-tags > span:not(.clear-filter-btn){
	padding: 0px;
	padding-left: 20px;
	font-size: 10px;
    color: #a800be;
	background: transparent;
}
.startQuote .form.quoteStep2 .option-checked .custom-multiselect-wrapper .custom-multiselect-tags > * > a.tag-close{
	left: 0;
	right: initial;
}
.startQuote .form.quoteStep2 .option-checked .custom-multiselect-wrapper .custom-multiselect-tags > * > a.tag-close::before,
.startQuote .form.quoteStep2 .option-checked .custom-multiselect-wrapper .custom-multiselect-tags > * > a.tag-close::after {
    background-color: #a800be;
}

.content .template .form.quoteStep2 .select-wrapper .custom-multiselect-wrapper input[type='checkbox'] + label{
	margin: 0;
}

.form.quoteStep2 .custom-multiselect-wrapper .custom-multiselect-content-options input[type='checkbox']:checked + label::before{
	border-color: white;
}

.review input:checked + label,
.review input:checked + label + label{
	pointer-events: none;
}

.review .checkbox-wrapper input:checked + label,
.review .checkbox-wrapper input:checked + label + label{
	pointer-events: all;
}

.review  .form.quoteStep2 .option-checked .custom-multiselect-wrapper .custom-multiselect-tags > span:not(.clear-filter-btn){
	line-height: normal;
	padding-left: 0;
	margin-right: 20px;
}

.content .template.review .bg-input + p{
	margin-top: 40px;
}

@media(min-width:768px){
	.content .template.review .form .row > div {
		padding-bottom: 0;
	}
}

.review .title{
	display: flex;
	flex-wrap: wrap;
}

.review .title > div:first-of-type{
	flex: 1;
}

.review .title a{
	font-family: var(--font-family-2);
	font-size: 12px;
	font-weight: bold;
	letter-spacing: -0.3px;
	text-align: right;
	color: var(--blue);
	text-transform: uppercase;
	position: relative;
	padding-left: 20px;
	line-height: normal;
	display: block;
	margin-top: 10px;
}

.review .quoteStep2.form{
	margin-top: 60px;
}

.review .quoteStep2.form .title{
	margin-bottom: 16px;
}


.review .title a:before{
	content: "";
	height: 5px;
  	width: 11px;
	-webkit-mask-image: url(/images/icons/select-arrow-color.svg);
	mask-image: url(/images/icons/select-arrow-color.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-size: contain;
	background-color: var(--blue);
	display: block;
	position: absolute;
	top: 6px;
	left: 0;
	transform: rotate(90deg);
	transition: var(--transition);
}

.review .title a:hover:before{
	left: -3px;
}

.side-quote{
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 75px;
	height: 75px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99;
}

.side-quote::before{
	content: "";
	background: #a800be;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: absolute;
	transition: var(--transition);
}

.side-quote:hover::before{
	transform: scale(1.1);
}

.side-quote span{
	font-family: var(--font-family-2);
	font-size: 12px;
	font-weight: normal;
	line-height: normal;
	letter-spacing: normal;
	text-align: center;
	color: var(--white);
	position: relative;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
	pointer-events: none;
}

@media(min-width:768px){
	.side-quote{
		bottom: 30px;
		right: 30px;
		width: 85px;
		height: 85px;
	}
	.side-quote span{
		font-size: 14px;
	}
}



/******************************/
/********** new 2024 **********/
/******************************/

.headerNew{
	background-color: white;
	box-shadow: 0px 6px 24px 0 rgba(0, 0, 0, 0.1);
	padding: 11px 19px;
}

header.headerNew .menu{
	color:#04030e
}

.hp-banners.bannersNews{
	margin-top: 47px;
}

.hp-banners.bannersNews .banners > *,
.hp-banners.bannersNews .banners .bg{
	height: auto;
}

.hp-banners.bannersNews .banners .right-side .text-container{
	top:40px;
	bottom: auto;
}

.hp-banners.bannersNews .banners .right-side .text-container h2{
	font-size: 30px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.13;
	letter-spacing: -0.75px;
	text-align: left;
	color: var(--white);
	margin-bottom: 12px;
}
.hp-banners.bannersNews .banners .right-side .text-container p{
	font-family: var(--font-family-1);
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.69;
	letter-spacing: normal;
	text-align: left;
	color: var(--white);
	margin-bottom: 10px;
}
.hp-banners.bannersNews .banners a.btn{
	font-family: var(--font-family-1);
	line-height: 1.5;
	letter-spacing: 0.66px;
	font-weight: 600;
	padding: 11px 20px;
	margin-top: 6px;
}
.hp-banners.bannersNews .banners a.btn::before{
	border: none;
	background-color: var(--orange);
}



.hp-banners.bannersNews .banners .right-side .slick-dots{
	flex-direction: row;
	gap: 8px;
	bottom: 15px;
	justify-content: center;
	margin-left: 0;
}
.hp-banners.bannersNews .banners .right-side .slick-dots li{
	margin: 0;
}

.hp-banners.bannersNews .bg picture::after{
	content: none;
	display: none;
}

.headerNew > div:first-of-type{
	display: flex;
	align-items: center;
	flex: 1;
	padding:20px;
	position: relative;
}

.headerNew > div:first-of-type:before{
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 1px;
		background-color: #152032;
		opacity: .13;
	}

.headerNew > div:first-of-type .logo{
	flex: 1;
}

.headerNew > div:first-of-type .language_container{
	color: #04030e;
	background-color: transparent;
	transition: all 0.2s ease-in-out;
	display: inline-flex;
	height: 100%;
	align-items: center;
	cursor: pointer;
	text-transform: uppercase;
	margin: 5px 20px;
	gap: 5px;
	z-index: 99;
	position: relative;
}

.headerNew > div:first-of-type .language_container img {
    display: block;
    height: 100%;
    height: 14px;
    transition: var(--transition);
	z-index: 2;
}

.headerNew > div:first-of-type .language_container span {
	font-family: var(--font-family-1);
	font-size: 10px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: 0.66px;
	text-align: left;
	color: #04030e;
	display: block;
	position: relative;
	padding-right: 10px;
	text-transform: none;
	z-index: 2;
}

.headerNew > div:first-of-type .language_container span::after {
	content: '';
	position: absolute;
	right: 0;
	top: 4px;
	background: none;
    -webkit-mask-image: url(/assets/img/arrow.svg);
	mask-image: url(/assets/img/arrow.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-size: contain;
	background-color: var(--black);
	width: 4px;
	height: 8px;
	transform: rotate(90deg);
	transition: all 0.3s ease-in-out;
}

.headerNew > div:first-of-type .language_container ul {
	list-style: none;
	padding: 15px 20px 10px;
	background-color: white;
	color: #04030e;
	position: absolute;
	top: 15px;
	width: auto;
	text-align: left;
	opacity: 1;
	pointer-events: none;
	transition: all 0.3s ease-in-out;
	margin: 0;
	border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
	box-shadow: 0px 6px 15px 0 rgba(0, 0, 0, 0.1);
}

.headerNew > div:first-of-type .language_container ul li {
	padding: 5px 0;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
}

.headerNew > div:first-of-type .language_container ul li a {
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	color: #04030e;
	transition: all 0.3s ease-in-out;
	display: block;
	text-transform: none;
}

.headerNew > div:first-of-type .language_container ul li a:hover{
	color: var(--blue);
}

.headerNew > div:first-of-type .btn{
	display: none;
	padding: 14px 21px;
}

.next-step .btn,
.headerNew > div:first-of-type .btn:focus{
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.headerNew > div:first-of-type .btn::before{
	background-color: var(--blue);
	border: none;
	
}
.headerNew > div:first-of-type .btn:hover::before{
	background-color: var(--blue);
	transform: scale(1);
}
.headerNew > div:first-of-type .btn span{
	display: flex;
	align-items: center;
	gap: 5px;
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: normal;
	line-height: 1.5;
	letter-spacing: normal;
	text-transform: none;
	transition: var(--transition);
}

.headerNew > div:first-of-type .btn > span:first-of-type::before{
	content: "";
	background: none;
    -webkit-mask-image: url(/images/icons/heart-white.svg);
	mask-image: url(/images/icons/heart-white.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-size: contain;
	background-color: var(--white);
	width: 14px;
	height: 14px;
	transition: var(--transition);
}

.headerNew > div:first-of-type .btn:hover span:first-of-type::before{
	content: "";
	background: none;
    -webkit-mask-image: url(/images/icons/heart-filled.svg);
	mask-image: url(/images/icons/heart-filled.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-size: contain;
	background-color: var(--white);
	width: 14px;
	height: 14px;
}

.headerNew > div:first-of-type .btn .count{
	position: absolute;
	width: 18px;
	height: 18px;
	top: -2px;
	right: 3px;
	font-size: 10px;
	text-align: center;
	pointer-events: none;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.headerNew > div:first-of-type .btn .count::before{
	content: "";
	background-color: var(--orange);
	position: absolute;
	top:0;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: 50%;
	z-index: -1;
	
}

.headerNew > div:first-of-type .btn img{
	width: 14px;
  	height: 14px;
	filter: brightness(0) invert(1);
}

.headerNew .menu-toggle{
	width: 22px;
	height: 9px;
}

.headerNew .menu-toggle span{
	background-color: var(--black);
}

.headerNew .menu-toggle span:first-child {
    transform: translateY(-4px);
}
.headerNew .menu-toggle span:nth-of-type(2) {
    width: 100%;
}

.headerNew.open .menu-toggle{
	width: 25px;
	height: 18px;
	position: relative;
	right: inherit;
}

.headerNew.open {
	z-index: 100;
}

.headerNew .side-menu{
	background-color: white;
	width: 90vw;
	padding-top: 65px;
	overflow-x: hidden;
}

.headerNew .side-menu::before{
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: white;
	height: 70px;
}

.headerNew .side-menu .menu{
	overflow-x: scroll;
	height: calc(100% - 30px);
	padding-bottom: 30px;
}

.headerNew .side-menu .menu li a{
	color: var(--black);
	font-family: var(--font-family-1);
	font-size: 13px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: normal;
	text-align: left;
}



.headerNew .side-menu .menu .h2{
	font-size: inherit;
	padding-right: 30px;
	display: flex;
	align-items: center;
}

.headerNew.open::before{
	content: "";
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
	background-color: var(--black);
	opacity: 0.75;
	z-index: 1;

}

.headerNew .menu > ul > li + li{
	margin-top: 15px;
}

.headerNew .menu .sub .h2 span{
	position: absolute;
	top: auto;
	bottom: auto;
	right: 0px;
	margin: auto;
	width: 25px;
    height: 25px;
	display: flex;
	justify-content: end;
	align-items: center;
}
.headerNew .menu .sub .h2 span::after{
	content: "";
	background: none;
    -webkit-mask-image: url(/images/icons/select-arrow.svg);
	mask-image: url(/images/icons/select-arrow.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-size: contain;
	background-color: var(--black);
	transition: var(--transition);
	transform: rotate(0deg);
	width: 18px;
    height: 8px;
	display: block;
}

.headerNew .menu .sub.opened .h2 span::after,
.select.opened .selected::after {
	transform: rotate(180deg);
}

.headerNew .menu .h2 + ul{
	padding-left: 20px;
}

.headerNew .menu .h3{
	margin-inline: 0;
	opacity: 1;
}

.headerNew .menu .h3:last-child {
    margin-bottom: 15px;
}

.headerNew .side-menu .menu li.h3 a{
	font-size: 11px;
}

.headerNew > .menu a,
.headerNew > .menu a span{
	display: block !important;
}

.headerNew > .menu{
	display: none;
}

.headerNew .side-menu .menu li.sub.opened .h2 a,
.headerNew .side-menu .menu li.sub.opened .active a{
	color: var(--orange);
}

.headerNew > .menu .top_menu ul li ul li:first-child {
	padding: 60px 27px 5px 27px;
}

.headerNew > .menu .top_menu ul li ul li:last-child {
    margin-bottom: 30px;
}

@media(min-width:1200px){
	.headerNew{
		padding: 0px 0px 21px;
	}

	.headerNew > div:first-of-type .language_container{
		margin: 0 25px;
	}
	.headerNew > div:first-of-type .language_container span{
		font-size: 12px;
	}
	.hp-banners.bannersNews{
		margin-top: 134px;
	}
	
	.hp-banners.bannersNews .banners .right-side .slick-dots{
		flex-direction: column;
		left: 50px;
		right: auto;
		width: 22px;
		max-width: 22px;
		margin-left: 0;
		padding: 0;
		top: 50%;
		transform: translateY(-50%);
		gap: 5px;
	}
	.hp-banners.bannersNews .banners .right-side .text-container{
		top:50%;
		transform: translateY(-50%);
	}
	.hp-banners.bannersNews .banners .right-side .text-container h2{
		font-size: 45px;
		line-height: 1.22;
		letter-spacing: -1.13px;
		margin-bottom: 30px;
	}
	.hp-banners.bannersNews .banners .right-side .text-container p{
		font-family: var(--font-family-1);
		font-size: 1rem;
		margin-bottom: 1rem;
	}

	.hp-banners.bannersNews .banners a.btn{
		padding: 18px 39px;
		margin-top: 10px;
	}

	.headerNew{
		flex-direction: column;
		max-height: inherit;
	}

	.headerNew > div:first-of-type .btn{
		display: block;
	}
	.headerNew .menu-toggle{
		display: none;
	}

	.headerNew .menu{
		display: flex;
		gap: 30px;
		position: relative;
		margin-inline: auto;
		padding-top: 24px;
	}

	.headerNew .menu a{
		color: #04030e;
		font-family: var(--font-family-1);
		font-size: 15px;
		font-weight: normal;
		font-stretch: normal;
		font-style: normal;
		line-height: 1.2;
		letter-spacing: normal;
		text-align: center;
		text-transform: none;
		max-height: inherit;
		z-index: 1;
	}

	.headerNew .menu > a:first-of-type,
	.headerNew .menu > a{
		display: flex;
		align-items: flex-start;
	}

	.headerNew .menu a span,
	.headerNew > .menu .top_menu ul li a span{
		color: #04030e;
		font-family: var(--font-family-1);
		font-size: 15px;
		font-weight: normal;
		font-stretch: normal;
		font-style: normal;
		line-height: 1.2;
		letter-spacing: normal;
		text-align: center;
		text-transform: none;
	}

	.headerNew > .menu .top_menu ul li a:hover span{
		color:var(--orange)
	}

	.headerNew > .menu .top_menu ul li.top_submenu ul{
		background-color: white;
		border-bottom-left-radius: 20px;
		border-bottom-right-radius: 20px;
		top: 35px;
		transform: translateX(-15px);
	}

	.headerNew > .menu .top_menu ul{
		margin: 0 auto;
	}

	.headerNew > .menu .top_menu ul li ul li a{
		font-family: var(--font-family-1);
		font-size: 13px;
		font-weight: normal;
		letter-spacing: normal;
		text-align: left;
		color: #04030e;
		text-transform: none;
		opacity: 1;
	}

	.headerNew > .menu > a:hover > span,
	.headerNew > .menu .top_menu ul li.top_submenu.opened > a > span,
	.headerNew > .menu .top_menu ul li ul li a:hover{
		color: var(--orange);
	}

	header > .menu .top_menu ul li ul li{
		padding-block: 3px;
	}
}

footer.update{
	padding: 0;
	background-color: #04030e;
}

footer.update .top .left{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: start;
	gap: 10px;
	flex-direction: row;
	margin-bottom: 30px;
}
footer.update .top .left > a{
	width: 88px;
	height: 88px;
	margin: 0;

}

footer.update .top .left > a img{
	width: 88px;
	height: 88px;
}

footer.update .top .left > a::before{
	content: none;
	display: none;
}

footer.update .top,
footer.update .bottom{
	background: none;
}

footer.update .top{
	padding: 45px 19px;
}

footer.update div.top .menus{
	display: flex;
	justify-content: center;
	align-items: start;
	flex-wrap: wrap;
	gap: 19px;
}

footer.update div.top .menus ul{
	margin: 0;
	width: calc(48% - 4px);
}

footer.update div.top .menus ul li{
	font-family: var(--font-family-1);
	font-size: 10px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: normal;
	margin: 10px 0;
	color: white;
	text-align: left;
}



footer.update div.top .menus ul li a{
	opacity: 1;
	color: white;
	text-align: left;
	font-size: 10px;
}

footer.update div.top .menus ul li a:hover{
	opacity: .3;
}

footer.update div.top .menus ul li:first-of-type{
	font-family: var(--font-family-1);
	font-size: 14px;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 15px;
}


footer.update .bottom{
	padding: 0 10px 55px;
	
}
footer.update .icon-container{
	margin: 0;
}
footer.update .icon-container:last-child img {
	width: 100%;
}

footer.update .icon-container:first-child{
	flex-wrap: nowrap;
	margin-bottom: 30px;
}

footer.update .icon-container:last-of-type img{
	margin: 0;
}

footer.update .icon-container:last-of-type{
	flex-direction: column;
	gap: 20px;
}

footer.update .icon-container:last-of-type div:first-of-type img{
	max-height: 28px;
}

footer.update .bottom-credit > div {
	max-width: 1060px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

footer.update .bottom-credit{
	background-color: var(--blue);
	opacity: 1;
	display: flex;
	align-items: center;
	padding: 40px 25px 100px;
}

footer.update .bottom-credit > div > div:first-of-type{
	display: flex;
	justify-content: flex-start;
	color: white;
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	gap:20px
}

footer.update .bottom-credit > div > div:first-of-type a:hover{
	opacity: .4;
}
footer.update .social{
	margin-bottom: 0;
	padding-bottom: 0;
}
footer.update .social a{
	font-size: 17px;
}


footer.update .icon-container img{
	filter: invert(36%) sepia(5%) saturate(79%) hue-rotate(201deg) brightness(90%) contrast(95%);
}


@media(min-width:768px){
	footer.update .top{
		padding: 80px;
	}
	footer.update .top .left{
		width: 100%;
		display: flex;
		
		align-items: start;
		gap: 15px;
	}
	footer.update .top .left > a,
	footer.update .top .left > a img{
		width: 100px;
		height: 100px;
	}

	footer.update div.top .menus{
		justify-content: space-between;
		flex: 1;
		align-items: start;
	}

	footer.update div.top .menus ul{
		width: auto;
	}

	footer.update div.top .menus ul li:first-of-type{
		font-size: 18px;
		margin-bottom: 25px;
	}

	footer.update div.top .menus ul li{
		margin: 14px 0;
		font-size: 12px;
	}
	
	footer.update div.top .menus ul li a{
		font-size: 12px;
	}

	footer.update .bottom{
		padding: 0;
		padding-bottom: 75px;
	}

	footer.update .icon-container:last-child img {
		max-height: 33px;
		width: auto;
	}

	footer.update .bottom-credit{
		padding: 25px;
	}

	footer.update .bottom-credit > div{
		flex-wrap: nowrap;
		justify-content: space-between;
	}

	footer.update .social{
		margin-top: 0;
	}
	
	footer.update .social a{
		font-size: 19px;
	}

	footer.update .icon-container:last-of-type div:first-of-type img{
		max-height: 34px;
	}


}

@media(min-width:1024px){
	footer.update > div.top > div {
        display: flex;
        justify-content: space-between;
    }

}

@media(min-width:1025px){


	footer.update .icon-container:first-child{
		margin-bottom: 0;
	}
}

@media(min-width:992px){
	footer.update .top .left{
		max-width: 225px;
		flex-direction: column;
		justify-content: flex-start;
	}
}

@media(min-width:992px){
	.hp-clients .container{
		max-width: 600px;
	}
}

@media (min-width: 1200px) {
    .hp-clients .container {
        max-width: 1320px;
    }
}



.bannersNews + .d-xl-none{
	display: none;
}

.fixed-search{
	position: fixed;
	bottom: 0;
	top: auto;
	z-index: 99;
	background: #9c01b0;
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	padding: 10px;
	gap: 15px;
	justify-content: center;
	align-items: flex-start;
}

.fixed-search a{
	font-family: var(--font-family-1);
	font-size: 9px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: normal;
	text-align: center;
	color: rgba(255, 255, 255, 0.35);
	position: relative;
	flex: 1;
}
.fixed-search img{
	height: 16px;
	width: auto;
	filter: brightness(0) invert(1);
	display: block;
	margin: 0 auto 5px;
}

.fixed-search a > span{
	position: absolute;
	width: 16px;
	height: 16px;
	font-family: var(--font-family-1);
	font-size: 9px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: 0.5px;
	top: -9px;
	right: calc(50% - 16px);
	transform: translateX(50%);
    left: auto;
	color: white;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fixed-search a > span::before{
	content: "";
	background-color: #830294;
	position: absolute;
	top:2px;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: 50%;
	z-index: -1;

}

@media(min-width:768px){
	.fixed-search{
		display: none;
	}
}

@media(max-width:767px){
	.cky-btn-revisit-wrapper{
		bottom:70px !important;
		background-color: white !important;
		width: 41px !important;
		height: 41px !important;
	}

	.cky-btn-revisit-wrapper img{
		width: 24px !important;
		height: 24px !important;
		filter: brightness(0) saturate(100%) invert(11%) sepia(80%) saturate(6408%) hue-rotate(291deg) brightness(90%) contrast(112%);
	}
}