.branches-side-navi {
	text-align: center;
}

.branches-side-navi a{
	    float: left;
    width: 47%;
    background: #fff;
    margin: 8px;
    padding: 10px;
    border-radius: 20px;
}

.branches-side-navi a:hover{
	text-decoration: none;
}

.branches-side-navi a > .service-content {
	
}

.branches-side-navi a > .service-icon {
	
}
.branches-side-navi  a > .service-content > .title{
	font-size: 16px;
	color: #000;
}

.branches-side-navi  a > .service-content > .title strong{
display: block;
    font-size: 18px;
}




/* sidenavi wrapper */
#sideNavi, .side-navi-item, .side-navi-data, .side-navi-tab {
	margin: 0;
	padding: 0;
}
#sideNavi {
	position: fixed;
	left: -650px;
	top: 5%;
	z-index: 9999;
}
/* items */
.side-navi-item-default {
	height: 50px;
	display: none;
}
.side-navi-item {
	font-size: 18px;
	position: absolute;
	left: 700px;
	display: inline-block;
	width: 230px;
	height: 50px;
	transform: rotate( 90deg);
	transform-origin: left top 0;
	color: #fff;
	background-color: blue;
	cursor: pointer;
	animation: blinkingText 2s infinite;
	border-radius: 15px 15px 0px 0px;
	-webkit-transition: all 0.1s linear;
	transition: all 0.1s linear;
}
.side-navi-item.item1 {
	top: 0px;
}
.side-navi-item.item2 {
	top: 235px;
}
.side-navi-item.active, .side-navi-item:hover {
	background-color: #e5e5e5;
}
.side-navi-item > div {
	padding-top: 15px;
	text-align: center;
}
/* data wrapper */
.side-navi-data {
	position: absolute;
	top: 0;
	left: 0;
	width: 650px;
	height: 470px;
	background-color: #e5e5e5;
}
/* tab wrapper */
.side-navi-tab {
	display: none;
}
.side-navi-tab.active {
	display: inline-block;
}
.side-navi-tab > .tab-head {
    padding: 5px 0px;
    color: #da251c;
    margin: 10px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    border-bottom: 3px solid #da251c;
}
.sidebar2 {
	transform: rotate(-90deg);
	position: fixed;
	z-index: 9999;
	left: 0px;
	top: 361px;
	margin-left: -87px;
	text-transform: uppercase;
}
.sidebar2 a {
	background: #852f22;
	padding: 20px 12px 8px 12px;
	color: #fff;
	animation: blinkingText 2s infinite;
	border-radius: 0px 0px 15px 15px;
	-webkit-transition: all 0.1s linear;
	transition: all 0.1s linear;
	position: relative;
	top: -7px;
	font-weight: 500;
	font-size: 16px;
	text-decoration: none;
}
.sidebar2 a:hover {
	top: -5px;
}
.sidebar {
	transform: rotate(-90deg);
	position: fixed;
	z-index: 9999;
	left: 0px;
	top: 131px;
	margin-left: -87px;
	text-transform: uppercase;
}
.sidebar a {
	background: #852f22;
	padding: 20px 12px 8px 12px;
	color: #fff;
	animation: blinkingText 2s infinite;
	border-radius: 0px 0px 15px 15px;
	-webkit-transition: all 0.1s linear;
	transition: all 0.1s linear;
	position: relative;
	top: -7px;
	font-weight: 500;
	font-size: 16px;
	text-decoration: none;
}
.sidebar a:hover {
	top: -5px;
}
@keyframes blinkingText {
	0% {
		background: #da251c;
	}
	25% {
		background: #322472;
	}
	50% {
		background: #da251c;
	}
	75% {
		background: #322472;
	}
	100% {
		background: #da251c;
	}
}
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100000000;
}
.overlay .overlayDoor:before, .overlay .overlayDoor:after {
	content: "";
	position: absolute;
	width: 50%;
	height: 100%;
	background: #eee;
	transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
	transition-delay: 0.8s;
}
.overlay .overlayDoor:before {
	left: 0;
}
.overlay .overlayDoor:after {
	right: 0;
}
.overlay.loaded .overlayDoor:before {
	left: -50%;
}
.overlay.loaded .overlayDoor:after {
	right: -50%;
}
.overlay.loaded .overlayContent {
	opacity: 0;
	margin-top: -15px;
}
.overlay .overlayContent {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
.overlay .overlayContent .skip {
	display: block;
	width: 130px;
	text-align: center;
	margin: 50px auto 0;
	cursor: pointer;
	color: #fff;
	font-weight: 700;
	padding: 12px 0;
	border: 2px solid #fff;
	border-radius: 3px;
	transition: 0.2s ease;
}
.overlay .overlayContent .skip:hover {
	background: #ddd;
	color: #444;
	border-color: #ddd;
}
.loader {
	width: 178px;
	height: auto;
	position: relative;
	-webkit-animation: spin 1.9s linear infinite;
	animation: spin 1.9s linear infinite;
	display: flex;
	justify-content: center;
	align-items: center;
}
.overlayContent .inner {
	position: absolute;
	width: 40px;
	z-index: 1;
}
@-webkit-keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
body {
	background: #eee;
}
.header {
	background: url("https://picsum.photos/4096/2160?random=1") center/cover;
	background-size: cover;
	height: 100vh;
}
.header .darken {
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.header .darken h1 {
	font-family: "Nunito";
	font-weight: 700;
	color: #fff;
	margin: 0 0 20px 0;
	text-align: center;
}
.header .darken h1 span {
	font-size: 12px;
	top: -10px;
	position: relative;
}
.header .darken p {
	color: #fff;
	font-family: "Roboto";
	font-weight: 700;
	text-align: center;
	width: 500px;
	margin: 0 auto;
	line-height: 25px;
}
.contentOther {
	background: #fff;
	width: 900px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}
.contentOther .video {
	height: 484px;
	width: 100%;
	border-radius: 5px;
}
.contentOther h1 {
	font-family: "Roboto";
	margin: 0 0 10px 0;
	font-weight: 400;
}
.branches-center {
	position: fixed;
	z-index: 999;
	left: 0px;
	right: 0px;
	bottom: 0px;
	margin: 0px auto;
	text-align: center;
	display:flex;flex-wrap:wrap;
}
.logo-center {
	position: absolute;
	z-index: 999;
	left: 0px;
	right: 0px;
	top: 50px;
	margin: 0px auto;
	text-align: center;
}
.logo-center img {
	transform: rotate( -44deg);
	position: relative;
	left: 5px;
	top: 83px;
}
.service-Box {
	text-align: center;
	padding: 10px 0 15px;
	position: relative;
	width: 24%;
	display: inline-block;
	transition: all 0.3s ease;
}
.service-Box:hover {
	text-decoration: none;
	transform: translateY(-10px) !important;
}
.service-Box:before, .service-Box:after {
	content: "";
	background: #ff9800;
	width: 150px;
	height: 10px;
	transform: translateX(-50%);
	position: absolute;
	top: 0;
	left: 50%;
	clip-path: polygon(7% 0%, 93% 0%, 100% 100%, 0% 100%);
}
.service-Box:after {
	width: 80%;
	height: 15px;
	border-radius: 0 0 10px 10px;
	top: auto;
	bottom: 0;
	clip-path: none;
}
.service-Box .service-content {
	/*    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;*/
}
.service-Box .service-content:before {
	content: "";
	background: #ffc107;
	width: 128px;
	height: 60px;
	transform: translateX(-50%);
	position: absolute;
	top: 0;
	left: 50%;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.service-Box .service-icon {
	color: #77787a;
	background: linear-gradient(to left, #dedfe1, #f3f3f3);
	font-size: 40px;
	line-height: normal;
	width: 100px;
	height: 100px;
	margin: 0 auto 20px;
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.03);
	position: relative;
	z-index: 1;
}
.service-Box .service-icon:before {
	content: "";
	background: linear-gradient(to right, #dedfe1, #f3f3f3);
	width: 88%;
	height: 88%;
	border-radius: 50%;
	box-shadow: 5px 0 5px rgba(0, 0, 0, 0.1);
	transform: translateX(-50%) translateY(-50%);
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
}
	.service-Box .title {
		color: #000000;
		font-size: 20px;
		font-weight: 600;
		letter-spacing: normal;
		background: #fff;
		padding: 20px;
		margin: 0px 36px;
		min-height: 132px;
	}
.service-Box .title strong {
	color: #ca0101;
	font-weight: 700;
	display: block;
	font-size: 22px;
}
.serviceBox {
	font-family: 'Lato', sans-serif;
	text-align: center;
	padding: 25px 10px 0;
	position: relative;
}
.serviceBox:before {
	content: "";
	background: #ff9800;
	width: 35%;
	height: 95px;
	position: absolute;
	top: 100px;
	left: 0;
	right: 0px;
	clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%, 10% 50%);
	margin: 0px auto;
}
.serviceBox .service-icon {
	color: #fff;
	background: #ffeb3b;
	width: 240px;
	height: 240px;
	margin: 0 auto 0px;
	box-shadow: 7px 0 5px rgb(0 0 0 / 30%), 0 0 0 5px #ffc107, 5px 0 5px rgb(0 0 0 / 40%);
	border-radius: 10px;
	transform: rotate( 45deg);
	position: relative;
	transition: all 0.3s ease 0s;
}
.serviceBox .title {
	color: #F97F51;
	font-size: 20px;
	font-weight: 800;
	text-transform: capitalize;
	margin: 0 0 5px;
}
.serviceBox.blue .title {
	color: #3359a5;
}
@media only screen and (max-width:990px) {
	
	.branches-side-navi a > .service-content > .service-icon img{
		height: 40px
	}
	.branches-side-navi a {
    float: left;
    width: 45%;
    background: #fff;
    margin: 6px;
    padding: 5px;
    border-radius: 12px;
}
	.branches-side-navi a > .service-content > .title strong {
    display: block;
    font-size: 16px;
}
	
	.side-navi-item {
		font-size: 14px;
		position: absolute;
		left: 700px;
		display: inline-block;
		width: 158px;
		height: 28px;
	}
	.side-navi-item.item1 {
		top: 0px;
		left: 308px;
	}
	.side-navi-item > div {
		padding-top: 5px;
		text-align: center;
	}
	#sideNavi {
		left: -282px;
		top: 3%;
	}
	.side-navi-item.item2 {
		top: 160px;
		left: 308px;
	}
	.side-navi-data {
		position: absolute;
		top: 0;
		left: 0;
		width: 280px;
		height: 400px;
		background-color: #e5e5e5;
	}
	.branches-center {}
	.serviceBox {
		margin: 0 0 30px;
	}
	.service-Box {
		margin: 0 0 5px;
		padding: 5px;
		width: 50%;
		float: left;
	}
	.service-Box:after {
		width: 100%;
		height: 5px;
		border-radius: 0 0 10px 10px;
		top: auto;
		bottom: 0;
		clip-path: none;
	}
	.service-Box .service-icon {
		background: linear-gradient(to left, #dedfe1, #f3f3f3);
		line-height: normal;
		width: 60px;
		height: 60px;
		margin: 0 auto 5px;
		border-radius: 50%;
		box-shadow: 0 0 0 5px rgb(0 0 0 / 3%);
		position: relative;
		z-index: 1;
		font-size: unset;
	}
	.service-Box .service-content:before {
		content: "";
		background: #ffc107;
		width: 128px;
		height: 60px;
		transform: translateX(-50%);
		position: absolute;
		top: 0;
		left: 50%;
		clip-path: polygon(0 0, 100% 0, 50% 100%);
	}
	.serviceBox .service-icon {
		width: 110px;
		height: 110px;
	}
	.logo-center {
		top: 10px;
	}
	.serviceBox:before {
		content: "";
		background: #ff9800;
		width: 300px;
		height: 45px;
		position: absolute;
		top: 60px;
		left: 0;
		right: 0px;
		clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%, 10% 50%);
		margin: 0px auto;
	}
	.service-Box .title {
		color: #000000;
		font-size: 14px;
		font-weight: 600;
		letter-spacing: normal;
		background: #fff;
		padding: 5px;
		margin: 0px 0px;
	}
	.service-Box .title strong {
		color: #ca0101;
		font-weight: 700;
		display: block;
		font-size: 14px;
	}
	.logo-center img {
		left: 2px;
		top: 40px;
	}
}