@charset "utf-8";

/* IMPORT RESET */
@import url("normalize.css");

* { 
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	*behavior: url(../../js/boxsizing.htc); 
	/*	
		If you need support for IE7 and lower make 
		sure the boxsizing.htc file is linked properly.
		More info here:  https://github.com/Schepp/box-sizing-polyfill
	*/
}

/*Scrollbar CSS*/
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    /*background: #88c932;*/
    background: #666666;
}

/*font*/
@font-face
{
    font-family: metaprobold;
    src: url('../../fonts/MetaPro-Bold.otf');
}

@font-face
{
    font-family: metapromedi;
    src: url('../../fonts/MetaPro-Medi.otf');
}

@font-face
{
    font-family: metapronorm;
    src: url('../../fonts/MetaPro-Norm.otf');
}

@font-face
{
    font-family: roboto;
    src: url('../../fonts/Roboto-Regular.ttf');
}

@font-face
{
    font-family: trajanpro;
    src: url('../../fonts/TrajanPro-Regular.otf');
}

.blur-container {
	position: fixed;
	left: 0px;
	top: 0px;
	display: block;
	width: 100vw;
	height: 100vh;
	background: rgba(255, 255, 255, 0.9);
	z-index: 1000;
}

.blur-content {
	position: relative;
	display: block;
	width: calc(100% - 60px);
	max-width: 400px;
	padding: 30px;
	border: 1px solid #6e6e70;
	color: #6e6e70;
	background: #fff;
	text-align: center;
	font-size: 14px;
	line-height: 24px;
	font-family: metapronorm;
}

.blur-close {
	position: absolute;
	display: block;
	width: 25px;
	height: 25px;
	right: -35px;
	cursor: pointer;
	top: 0px;
}

.blur-close:before {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	background: #6e6e70;
	left: 0px;
	top: 8px;

	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.blur-close:after {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	background: #6e6e70;
	left: 0px;
	top: 8px;

	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* Global */
body {
	padding: 0px;
	margin: 0px;
}

body.active {
	height: 100vh;
	overflow: hidden;
}

img {
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	/*color: inherit;*/
	text-decoration: none;
}

a:focus {
	outline: 0;
}

input:focus {
	outline: 0px;
}

.mid {
	position: relative;
	width: 100%;
	height: 100%;
	
	justify-content: center;
	display: flex;
	align-items: center;	
}

/*Pagination*/
.pagination {
	position: relative;
	display: block;
	font-size: 0px;
	padding: 0px;
	font-family: myriad;
}

.pagination .mid {
	text-align: center;
}

.pagination .mid > span {
	top: 2px;
	position: relative;
	display: block;
}

.pagination .mid > div {
	top: 1px;
	position: relative;
	display: block;
}

.pagination-item {
	position: relative;
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	color: #5c5c5c;
	margin-right: 10px;
	min-width: 24px;
	padding: 0px 5px;
	height: 24px;
	border: 1px solid transparent;
	-webkit-transition: border 0.3s, color 0.3s;
	-moz-transition: border 0.3s, color 0.3s;
	-ms-transition: border 0.3s, color 0.3s;
	transition: border 0.3s, color 0.3s;
}

.pagination-current {
	border: 1px solid #0697db;
	color: #0697db;
}

.pagination-item:hover {
	border: 1px solid #0697db;
	color: #0697db;
	-webkit-transition: border 0.3s, color 0.3s;
	-moz-transition: border 0.3s, color 0.3s;
	-ms-transition: border 0.3s, color 0.3s;
	transition: border 0.3s, color 0.3s;
}


/* ----- Master CSS ----- */

.container {
	position: relative;
	display: block;
}

.header-container {
	position: relative;
	display: block;
	width: 100%;
	height: 180px;
}

.header-logo {
	position: absolute;
	display: block;
	left: 50px;
	top: 0px;
	height: 100%;
	width: 63px;
	background: url('../../img/front/mesach_dentistry_logo.png') no-repeat;
	background-size: contain !important;
	background-position: 50% !important;
}

.header-nav-container {
	position: absolute;
	display: block;
	right: 22px;
	top: 0px;
	height: 115px;
	font-size: 0px;
}

.header-nav-item {
	color: #666666;
	position: relative;
	display: inline-block;
	vertical-align: top;
	padding: 0px 28px;
	line-height: 115px;
	font-family: metapromedi;
	cursor: pointer;
	font-size: 14px;
	text-decoration: underline;
	text-decoration-color: transparent;
	
	-webkit-transition: text-decoration 0.4s;
	-moz-transition: text-decoration 0.4s;
	-ms-transition: text-decoration 0.4s;
	transition: text-decoration 0.4s;
}

.header-nav-item:hover {
	text-decoration: underline;
	text-decoration-color: #666666;

	-webkit-transition: text-decoration 0.4s;
	-moz-transition: text-decoration 0.4s;
	-ms-transition: text-decoration 0.4s;
	transition: text-decoration 0.4s;
}

.header-nav-item.active {
	text-decoration: underline;
	text-decoration-color: #666666;
}

.header-subnav {
	position: absolute;
	display: none;
	width: 200px;
	top: 60%;
	line-height: normal;
	right: 0px;
	border: 1px solid #6e6e70;
	padding: 0px 0px;
	background: #fff;
	z-index: 100;
}

.header-subnav li {
	list-style: none;
}

.header-subnav-link {
	position: relative;
	display: block;
	padding: 5px 20px;
	background: transparent;
	color: #6e6e70;
	top: 100px;
	opacity: 0;

	-webkit-transition: background 0.4s, color 0.4s;
	-moz-transition: background 0.4s, color 0.4s;
	-ms-transition: background 0.4s, color 0.4s;
	transition: background 0.4s, color 0.4s;
}

.header-subnav-link:hover {
	background: #6e6e70;
	color: #fff;

	-webkit-transition: background 0.4s, color 0.4s;
	-moz-transition: background 0.4s, color 0.4s;
	-ms-transition: background 0.4s, color 0.4s;
	transition: background 0.4s, color 0.4s;
}

.header-subnav-link.active {
	background: #6e6e70 !important;
	color: #fff !important;
}

.content-container {
	position: relative;
	display: block;
}

/* Desktops and laptops */
@media screen and (min-width : 1224px) {

}

/* Tablet */
@media screen and (max-width: 1024px) {
	.header-nav-item {
		padding: 0px 18px;
	}

	.header-nav-item:last-child {
		padding-right: 28px;
	}
}

/* Mobile */
@media screen and (max-width: 768px) {
	.header-container {
		height: 140px;
		z-index: 100;
	}

	.header-logo {
		left: 50px;
		width: 55px;
	}
	
	.header-switch {
		position: absolute;
		display: block;
		width: 25px;
		height: 25px;
		right: 30px;
		top: 40px;
	}

	.header-switch-line {
		position: relative;
		display: block;
		width: 100%;
		height: 2px;
		margin-bottom: 4px;
		background: #6e6e70;
		opacity: 1;
		left: 0px;
		top: 0px;

		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);

		-webkit-transition: -webkit-transform 0.4s, left 0.4s, top 0.4s, opacity 0.4s, width 0.4s;
		-moz-transition: -moz-transform 0.4s, left 0.4s, top 0.4s, opacity 0.4s, width 0.4s;
		-ms-transition: -ms-transform 0.4s, left 0.4s, top 0.4s, opacity 0.4s, width 0.4s;
		transition: transform 0.4s, left 0.4s, top 0.4s, opacity 0.4s, width 0.4s;
	}

	.header-switch-line:last-child {
		margin-bottom: 0px;
	}

	.header-switch.active .line1 {
		width: 18px;
		left: -3px;
		top: 10px;

		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);

		-webkit-transition: -webkit-transform 0.4s, left 0.4s, top 0.4s, width 0.4s;
		-moz-transition: -moz-transform 0.4s, left 0.4s, top 0.4s, width 0.4s;
		-ms-transition: -ms-transform 0.4s, left 0.4s, top 0.4s, width 0.4s;
		transition: transform 0.4s, left 0.4s, top 0.4s, width 0.4s;
	}

	.header-switch.active .line2 {
		opacity: 0;

		-webkit-transition: opacity 0.4s;
		-moz-transition: opacity 0.4s;
		-ms-transition: opacity 0.4s;
		transition: opacity 0.4s;
	}

	.header-switch.active .line3 {
		left: 9px;
		top: -2px;
		width: 18px;

		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);

		-webkit-transition: -webkit-transform 0.4s, left 0.4s, top 0.4s, width 0.4s;
		-moz-transition: -moz-transform 0.4s, left 0.4s, top 0.4s, width 0.4s;
		-ms-transition: -ms-transform 0.4s, left 0.4s, top 0.4s, width 0.4s;
		transition: transform 0.4s, left 0.4s, top 0.4s, width 0.4s;
	}
	
	.header-nav-container {
		display: none;
		height: calc(100vh - 141px);
		top: 140px;
		border-top: 1px solid #ededed;
		background: #fff;
		width: 100%;
		text-align: center;
		right: 0px;
		padding-bottom: 30px;
	}

	.header-nav-item {
		position: relative;
		display: block;
		width: 100%;
		margin-bottom: calc(((100vh - 141px) - (50px * 7)) / 7);
		padding: 0px !important;
		line-height: normal;
		top: 100px;
		opacity: 0;
		font-size: 20px !important;
	}

	.header-nav-item:last-child {
		margin-bottom: 0px;
	}

	.blur-close {
		right: 0px;
		top: -35px;
	}
}

@media screen and (max-width : 500px) {
	
}
