.toolbar {
	display: none;
}
@media (max-width: 768px) {
	.toolbar {
		display: block;
		width: 100%;
		bottom: 0px;
		position: fixed;
		z-index: 500;
		left: 0px;
		-webkit-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
		-moz-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
		-ms-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
		-o-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
	}

	.toolbar .phone {
		position: relative;
		width: 50px;
		height: 50px;
		z-index: 99;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #e21a1a;
		border-radius: 50%;
		margin: 0 0px -25px 30px;
		transition: transform .2s ease-in-out;
	}

	.toolbar .phone {
		position: relative;
		width: 50px;
		height: 50px;
		z-index: 99;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #e21a1a;
		border-radius: 50%;
		margin: 0 0px -25px 30px;
		transition: transform .2s ease-in-out;
	}

	.toolbar .phone a {
		display: block;
		position: relative;
	}

	.toolbar .phone a:before, .toolbar .phone a:after {
		position: absolute;
		content: '';
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) rotate(135deg);
		width: 30px;
		height: 3px;
		border-radius: 2rem;
		background-color: var(--color-white);
		opacity: 0;
		transition: opacity .2s ease-in-out;
	}

	.toolbar .phone a:after {
		transform: translate(-50%, -50%) rotate(45deg);
	}

	.toolbar .phone svg {
		max-width: 27px;
		max-height: 27px;
		display: block;
		position: relative;
		fill: var(--color-white);
	}

	.toolbar.is-active .phone {
		transform: rotate(-180deg);
	}

	.toolbar.is-active .phone svg {
		opacity: 0;
	}

	.toolbar.is-active .phone a:before, .toolbar.is-active .phone a:after {
		opacity: 1;
	}

	.toolbar ul {
		list-style: none;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0px;
		margin: 0px;
		--size: 33px;
		-webkit-mask: radial-gradient(var(--size) at 55px 0px, #0000 99%, #fff 101%) 100%;
		background: #e21a1a;
		padding: 20px 0;
		padding-left: 100px;
		border-radius: 10px 10px 0px 0px;
	}

	.toolbar ul {
		list-style: none;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0px;
		margin: 0px;
		--size: 33px;
		-webkit-mask: radial-gradient(var(--size) at 55px 0px, #0000 99%, #fff 101%) 100%;
		background: #e21a1a;
		padding: 10px 0;
		padding-left: 100px;
		border-radius: 10px 10px 0px 0px;
	}

	.toolbar ul li {
		text-align: center;
		width: 25%;
		line-height: 1;
	}

	.toolbar ul li a {
		display: block;
		width: 100%;
		font-size: 27px;
		color: #ffff;
	}

	.toolbar ul li .icon {
		position: relative;
		margin: 0 auto;
		text-align: center;
	}

	.toolbar ul li a span {
		display: none;
		font-weight: 400;
		font-size: 11px;
		margin-top: 5px;
		color: #333;
		text-transform: capitalize;
	}

	.toolbar ul li a img, .toolbar ul li svg {
		max-height: 30px;
		fill: #fff;
		width: 100%;
		max-width: 30px;
	}

	.toolbar .phone svg {
		animation: tada 1.2s infinite;
		fill: #fff;
	}

	.tada {
		animation: tada 1.2s infinite;
	}

	.lang-toolbar {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.toolbar ul li.lang-toolbar a {
		display: inline-block;
		width: unset;
		margin: 0px 2px;
		font-size: unset;
	}

	.toolbar ul li.lang-toolbar a img {
		height: 10% !important;
	}

	.ex6 path {
		fill: transparent;
		stroke: #fff;
		stroke-width: 0.5;
		stroke-dasharray: 1500;
		stroke-dashoffset: 1500;
		-webkit-animation: dash 5s ease forwards;
		animation: dash 5s ease forwards;
	}

	@-webkit-keyframes dash {
		to {
			fill: var(--main-color);
			stroke-dashoffset: 0;
		}
	}

	@keyframes dash {
		to {
			fill: #fff;
			stroke-dashoffset: 0;
		}
	}

	@keyframes tada {
		0% {
			transform: scaleX(1)
		}

		10%, 20% {
			transform: scale3d(.9, .9, .9) rotate(-3deg)
		}

		30%, 50%, 70%, 90% {
			transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
		}

		40%, 60%, 80% {
			transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
		}

		to {
			transform: scaleX(1)
		}
	}

	@keyframes quickShow {
		0% {
			opacity: 0;
			transform: scale(0);
		}

		100% {
			opacity: 1;
			transform: scale(1);
		}
	}
}