@charset "utf-8";

/* Font */
@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto.woff2') format('woff2'),
         url('../font/Roboto.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Tomorrow';
    src: url('../font/Tomorrow.woff2') format('woff2'),
         url('../font/Tomorrow.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Jura';
    src: url('../font/Jura.woff2') format('woff2'),
         url('../font/Jura.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* Font */

/* Placeholder */
::placeholder {
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	opacity: 1;
	color: #c3a2c1;	
}
:-ms-input-placeholder {
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	color: #c3a2c1;	
}
::-ms-input-placeholder {
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	color: #c3a2c1;	
}
/* Placeholder */

/* Scrool Bar */
::-webkit-scrollbar {
	width: 6px;
}
::-webkit-scrollbar-track {
	background: #CCC;
}
::-webkit-scrollbar-thumb {
	background: #4a4b69;
}
::-webkit-scrollbar-thumb:hover {
	background: #6e566d;
}
/* Scrool Bar */

/* Selection Color */
::-moz-selection {
	color: #fff;
	background: #116872;
}
::selection {
	color: #fff;
	background: #116872;
}
/* Selection Color */

/* Loading Animation */
#loading {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	background-color: rgba(51,51,51,0.6);
}
#loading_status {
	width: 64px;
	height: 64px;
	position: absolute;
	left: 50%;
	top: 50%;
	background-image: url(../image/main/loading.svg);
	background-repeat: no-repeat;
	background-position: center;
	margin-top: -32px;
	margin-left: -32px;
}
/* Loading Animation */

/* Backtotop */
#backtotop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	color: #f9f9f9;
	cursor: pointer;
	border-radius: 50%;
	text-decoration: none;
	transition: opacity background-color 0.2s ease-out;
	background-color: #4a4b69;
	display: none;
	background-image: url(../image/main/backtotop.png);
	background-repeat: no-repeat;
	background-position: center center;
}
#backtotop:hover {
	background-color: #be89bb;
	color: #f5f5f5;
}
#backtotop.show {
	display: block;
}
/* Backtotop */

/* Cookie Alert */
#cookie_alert {
	position: fixed;
	background-color: #4a4b69;
	border-top: 1px solid #efc2d7;
	z-index: 9000;
	left: 0px;
	width: 100%;
	text-align: center;
	line-height: 40px;
	color: #f9f9f9;
	bottom: 0px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 13px;
	padding-left: 99px;
}
#cookie_alert a {
	font-family: Tahoma, Geneva, sans-serif;
	color: #f9f9f9;
	margin-left: 5px;
	font-size: 13px;
	text-decoration: none;
	transition: all 0.3s;
}
#cookie_alert a:hover {
	color: #949abc;
}
#cookie_alert_button {
	font-family: Tahoma, Geneva, sans-serif;
	padding: 5px 25px;
	margin-top: 6px;
	margin-right: 10px;
	float: right;
	border: none;
	outline: none;
	background: none;
	cursor: pointer;
	color: #949abc;
	background-color: #f9f9f9;
	transition: all 0.3s;
	border-radius: 5px;
	-webkit-appearance: none;
}
#cookie_alert_button:hover {
	background-color: #949abc;
	color: #f9f9f9;
}
/* Cookie Alert */

* {
	box-sizing: border-box; 
}
img {
	margin: 0;
	border: none;
}
html {
	height: 100%;
}
body {
	margin: 0px;
	font-family: 'Roboto', sans-serif;
	font-size: 17px;
	height: 100%;
	background-color: #f5f5f5;
	color: #4a4b69;
}
#container {
	height:100%;	
}
body > #container {
	height:auto;
	min-height:100%;	
}
.clear {
	clear: both;
}
.menufixed {
	position:fixed;
	top:0;
	left:0;
	right:0;
	margin:0;
	z-index:100;
	transition: all 0.5s;
}
.display_none {
	display: none;
}
.lineheight25 {
	line-height: 25px !important;
}
.colorgreen {
	color: #116872;
	font-weight: bold;
}
.whatsapp {
    position:fixed;
    bottom: 40px;
    left: 10px;
    margin: 0;
    z-index: 1000;
    transition: all 0.4s;
    display: none;
}
.calling {
    position:fixed;
    bottom: 40px;
    right: 10px;
    margin: 0;
    z-index: 1000;
    transition: all 0.4s;
    display: none
}
.textfield {
	font-family: 'Roboto', sans-serif;
	font-size: 17px;
	height: 50px;
	line-height: 50px;
	padding-left: 10px;
	border: 1px solid #c3a2c1;
	outline: none;
	border-radius: 5px;
	background-color: #f5f5f5;
	width: 100%;
}
.textfield:focus {
	border: 1px solid #116872;
	outline: 1px solid #116872;
	background-color: #f9f9f9;
}
.selectlist {
	font-family: 'Roboto', sans-serif;
	font-size: 17px;
	height: 50px;
	line-height: 50px;
	padding-left: 10px;
	border: 1px solid #c3a2c1;
	outline: none;
	border-radius: 5px;
	background-color: #f5f5f5;
	width: 100%;
	cursor: pointer;
}
.textarea {
	font-family: 'Roboto', sans-serif;
	font-size: 17px;
	height: 50px;
	line-height: 50px;
	padding-left: 10px;
	border: 1px solid #c3a2c1;
	outline: none;
	border-radius: 5px;
	background-color: #f5f5f5;
	width: 100%;
	height: 120px;
	resize: none;
}
.textarea:focus {
	border: 1px solid #116872;
	outline: 1px solid #116872;
	background-color: #f9f9f9;
}
.button {
	font-family: 'Roboto', sans-serif;
	font-size: 17px;
	padding: 10px;
	border: none;
	outline: none;
	cursor: pointer;
	color: #f5f5f5;
	background-color: #4a4b69;
	transition: all 0.5s;
	border-radius: 5px;
	width: 40%;
	float: right;
}
.button:hover {
	background-color: #be89bb;
}
header {
	width: 100%;
}
.header {
	width: 1320px;
	margin-left: auto;
	margin-right: auto;
	font-size: 16px;
	padding-bottom: 30px;
}
.social {
	width: 500px;
	float: left;
	margin-top: 10px;
	margin-bottom: 10px;
}
.social ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.social ul li {
	float: left;
	margin-right: 15px;
}
.social ul li a {
	text-decoration: none;
	color: #116872;
	line-height: 36px;
	transition: all 0.5s;
}
.social ul li a img {
	border:none;
	transition:all 0.5s;
	display: block;
}
.social ul li a:hover img{
	transform:rotate(360deg);
	filter: brightness(1.5);
}
.info {
	width: 700px;
	float: right;
	margin-top: 10px;
	margin-bottom: 10px;
}
.info ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.info ul li {
	float: right;
	margin-left: 20px;
	line-height: 36px;
}
.info ul li a {
	text-decoration: none;
	color: #4a4b69;
	line-height: 36px;
	transition: all 0.5s;
}
.info ul li a img {
	border:none;
	transition:all 0.5s;
	display: block;
	float: left;
	margin-right: 5px;
}
.info ul li a:hover img{
	transform:rotate(360deg);
	filter: brightness(1.5);
}
.info ul li a:hover {
	color: #6f709d;
}
.logo {
	width: 200px;
	height: 150px;
	margin-left: auto;
	margin-right: auto;
}
.logo a {
	display: block;
	width: 200px;
	height: 150px;
	text-decoration: none;
	text-indent: -9999px;
	background-image: url("../image/main/logo.png");
	background-position: center center;
	background-repeat: no-repeat;
}
.logo a h1 {
	margin: 0px;
}
nav {
	width: %100;
	background: rgb(163,168,206);
	background: linear-gradient(90deg, rgba(163,168,206,1) 0%, rgba(146,150,181,1) 50%, rgba(163,168,206,1) 100%);
	border-bottom: 3px solid #efc2d7;
}
.nav {
	width: 1320px;
	margin-left: auto;
	margin-right: auto;
	line-height: 60px;
}
.nav ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
.nav ul li {
	float: left;
	width: 264px;
}
.nav ul li a {
	text-decoration: none;
	display: block;
	transition: all 0.4s;
	background-color: rgba(163,168,206,0.1);
	line-height: 60px;
	text-align: center;
	color: #f5f5f5;
	font-family: 'Jura', sans-serif;
	font-size: 19px;
	margin-bottom: -3px;
	border-bottom: 3px solid #efc2d7;
}
.nav ul li a:hover {
	background-color: rgba(163,168,206,0.6);
	border-bottom: 3px solid #c3a1c1;
}
.nav > ul > li:hover > a {
	background-color: rgba(163,168,206,0.6);
	border-bottom: 3px solid #c3a1c1;
}
.nav ul li:last-child a {
	background-color: #4a4b69;
}
.nav ul li:last-child a:hover {
	background-color: #9296b5;
}
.nav ul li ul {
	position: absolute;
	z-index: 100;
}
.nav ul li ul li {
	float: none;
}
.nav ul li ul li a {
	background-color: rgba(163,168,206,0.9);
	margin-bottom: 0px;
	border: none;
	border-bottom: 1px solid #CCC;
	line-height: 50px !important;
	font-size: 17px;
}
.nav ul li ul li a:hover {
	background-color: #be89bb;
	border: none;
	border-bottom: 1px solid #CCC;
}
.nav ul li ul li:last-child a {
	background-color: rgba(163,168,206,0.8);
}
.nav ul li ul li:last-child a:hover {
	background-color: #be89bb;
}
.nav ul li ul li:last-child a {
	border: none;
}
.category_menu {
	display: none;
}
.category_focus {
	background-color: rgba(190,137,187,0.6) !important;
	border-bottom: 3px solid #a3a8ce;
}
main {
	width: %100;
	padding-bottom: 233px;
}
.slider {
	height: 603px;
	border-bottom: 3px solid #efc2d7;
}
.slider img {
	width: 100%;
	height: 600px;
}
.main {
	width: 1320px;
	margin-left: auto;
	margin-right: auto;
	line-height: 30px;
}
aside {

}
.title {
	font-family: 'Jura', sans-serif;
	font-size: 26px;
	color: #116872;
	text-align: center;
	margin-bottom: 30px;
}
.title h2 {
	font-size: 26px;
	line-height: 60px;
	margin: 0;
}
section {
	line-height: 25px;
	padding-bottom: 30px;
}
.about {

}
.about img {
	border-radius: 5px;
}
.cookies {

}
.contact {
	margin-top: 20px;
}
.contact_left {
	width: 640px;
	float: left;
	box-shadow: 1px 1px 3px #bbb;
	border-radius: 5px;
	padding: 20px;
}
.contact_left ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.contact_left ul li {
	margin-bottom: 10px;
	line-height: 50px;
}
.contact_left ul li img {
	float: left;
	margin-right: 10px;
}
.contact_left ul li:last-child {
	height: 250px;
	margin-top: 20px;
	border: 1px solid #116872;
	border-radius: 5px;
}
.contact_left ul li iframe {
	width: 100%;
	height: 248px;
	border-radius: 5px;
}
.contact_left ul li a {
	color: #4a4b69;
	text-decoration: none;
	transition: all 0.5s;
}
.contact_left ul li a:hover {
	color: #6f709d;
}
.contact_right {
	width: 640px;
	float: right;
	box-shadow: 1px 1px 3px #bbb;
	border-radius: 5px;
	padding: 20px;
}
.contact_right ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.contact_right ul li {
	margin-bottom: 10px;
	line-height: 50px;
}
.contact_right ul li img {
	float: left;
	margin-right: 10px;
}
.contact_right ul li:last-child {
	height: 250px;
	margin-top: 20px;
	border: 1px solid #116872;
	border-radius: 5px;
}
.contact_right ul li iframe {
	width: 100%;
	height: 248px;
	border-radius: 5px;
}
.contact_right ul li a {
	color: #4a4b69;
	text-decoration: none;
	transition: all 0.5s;
}
.contact_right ul li a:hover {
	color: #6f709d;
}
.contact_center {
	width: 100%;
	margin-top: 40px;
	box-shadow: 1px 1px 3px #bbb;
	border-radius: 5px;
	padding: 20px;
	height: 510px;
}
.contact_center ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	height: 100%;
}
.contact_center ul li:nth-child(1) {
	font-family: 'Jura', sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: #116872;
}
.contact_center ul li {
	margin-bottom: 20px;
	line-height: 50px;
}
.contact_center ul li:nth-child(5) {
	height: 120px;
}
.blog {
	margin-bottom: 40px;
	margin-right: 40px;
	box-shadow: 1px 1px 3px #bbb;
	border-radius: 5px;
	padding: 20px;
	transition: all 0.5s;
	float: left;
	width: 640px;
}
.blog:nth-child(2n) {
	margin-right: 0px;
}
.blog a {
	text-decoration: none;
	color: #4a4b69;
}
.blog:hover {
	box-shadow: 1px 1px 3px #be89bb;
}
.blog a:hover > .blog_title {
	color: #efc2d7;
}
.blog_image {
	margin-bottom: 10px;
}
.blog_image img {
	width: 600px;
	height: 300px;
	border-radius: 5px;
}
.blog_title {
	line-height: 50px;
	font-family: 'Jura', sans-serif;
	font-size: 22px;
	font-weight: bold;
	color: #be89bb;
	transition: all 0.5s;
	text-align: center;
}
.blog_title h2, .blog_title h3, .blog_title h4, .blog_title h5, .blog_title h6 {
	margin: 0px;
	font-family: 'Jura', sans-serif;
	font-size: 22px;
}
.blog_content {
	line-height: 30px;
	height: 90px;
}
.blog_link {
	line-height: 30px;
	color: #be89bb;
	text-align: right;
}
.content {
	line-height: 30px;
}
.pagination {
	line-height: 50px;
	float: right;
}
.pagination ul {
	padding: 0px;
	list-style-type: none;
	margin: 0px;
}
.pagination ul li {
	float: left;
}
.pagination ul li a {
	text-decoration: none;
	color: #4a4b69;
	display: block;
	float: left;
	width: 90px;
	text-align: center;
	border: 1px solid #4a4b69;
	line-height: 50px;
	height: 50px;
	transition: all 0.3s;
	margin-left: 5px;
}
.pagination ul li a:hover {
	background-color: #4a4b69;
	color: #FFF;
}
.pagination ul li a.smalllink {
	width:40px;
}
.pagination ul li a.activestatus {
	background-color: #4a4b69;
	color: #FFF;
}
.appimage {
	width: 640px;
	float: left;
	box-shadow: 1px 1px 3px #bbb;
	border-radius: 5px;
	padding: 20px;
	height: 452.5px;
	text-align: center;
}
.appointment {
	width: 640px;
	float: right;
	box-shadow: 1px 1px 3px #bbb;
	border-radius: 5px;
	padding: 20px;
}
.appointment ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.appointment ul li {
	margin-bottom: 20px;
	line-height: 50px;
}
.index_biography {
	background-color: #EEE;
	width: 100%;
}
.index_biography_in {
	width: 1320px;
	margin-left: auto;
	margin-right: auto;
}
.index-referance {
	margin-top: 20px;
	margin-bottom: 30px;
}
.index-referance ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.index-referance ul li {
	float: left;
	width: 240px;
	height: 190px;
	padding: 20px;
	display: block;
	margin-right: 30px;
	margin-bottom: 30px;
	text-align: center;
	box-shadow: 1px 1px 3px #bbb;
	border-radius: 5px;
}
.index-referance ul li img {
	width: 150px;
	height: 150px;
	filter: contrast(80%);
	transition: all 0.5s;
	cursor: pointer;
}
.index-referance ul li img:hover {
	filter: contrast(100%);
}
.index-referance ul li:nth-child(5n) {
	margin-right: 0px;
}
.index_services {
	box-shadow: 1px 1px 3px #bbb;
	border-radius: 5px;
	padding: 20px;
	width: 420px;
	margin-right: 30px;
	margin-bottom: 30px;
	float: left;
	transition: all 0.5s;
	cursor: pointer;
	height: 294px;
}
.index_services:nth-child(3n) {
	margin-right: 0px;
}
.index_services a {
	text-decoration: none;
	color: #4a4b69;
}
.index_services:hover {
	box-shadow: 1px 1px 3px #be89bb;
}
.index_services a:hover > .index_title {
	color: #efc2d7;
}
.index_image {
	text-align: center;
	margin-bottom: 10px;
}
.index_title {
	transition: all 0.5s;
	line-height: 50px;
	color: #be89bb;
	font-family: 'Jura', sans-serif;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}
.index_content {
	line-height: 30px;
	height: 90px;
	word-break: break-all;
	overflow: hidden;
}
.index_link {
	line-height: 30px;
	color: #be89bb;
	text-align: right;
}
.index_lastblog {
	background-color: #EEE;
	width: 100%;
}
.index_lastblog_in {
	width: 1320px;
	margin-left: auto;
	margin-right: auto;
}
.index_blog {
	box-shadow: 1px 1px 3px #bbb;
	border-radius: 5px;
	padding: 20px;
	width: 420px;
	margin-right: 30px;
	margin-bottom: 30px;
	float: left;
	transition: all 0.5s;
	cursor: pointer;
}
.index_blog:nth-child(3n) {
	margin-right: 0px;
}
.index_blog a {
	text-decoration: none;
	color: #4a4b69;
}
.index_blog:hover {
	box-shadow: 1px 1px 3px #be89bb;
}
.index_blog a:hover > .index_blogtitle {
	color: #efc2d7;
}
.index_blogimage {
	text-align: center;
	margin-bottom: 10px;
	border-radius: 5px;
}
.index_blogimage img {
	border-radius: 5px;
}
.index_blogtitle {
	transition: all 0.5s;
	line-height: 50px;
	color: #be89bb;
	font-family: 'Jura', sans-serif;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}
.index_blogtitle h2, .index_blogtitle h3, .index_blogtitle h4, .index_blogtitle h5, .index_blogtitle h6 {
	margin: 0px;
	font-family: 'Jura', sans-serif;
	font-size: 20px;
}
.index_blogcontent {
	line-height: 30px;
	height: 90px;
	overflow: hidden;
}
.index_bloglink {
	line-height: 30px;
	color: #be89bb;
	text-align: right;
}
#bottom {
	position:relative;
	margin-top: -233px;
	clear: both;
	width:100%;
}
footer {
	width: %100;
	background-color: #949abc;
	border-top: 3px solid #efc2d7;
}
.footer {
	width: 1320px;
	margin-left: auto;
	margin-right: auto;
	height: 190px;
	color: #f5f5f5;
}
.footer_left {
	float: left;
	width: 480px;
	padding-top: 15px;
	padding-bottom: 15px;
}
.footer_left ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.footer_left ul li {
	line-height: 40px;
	text-align: left;
	font-size: 16px;
	font-family: 'Jura', sans-serif;
}
.footer_left ul li a {
	text-decoration: none;
	color: #f5f5f5;
	transition: all 0.4s;
}
.footer_left ul li a:hover {
	color: #4a4b69;
}
.footer_right {
	float: right;
	width: 480px;
	padding-top: 15px;
	padding-bottom: 15px;
}
.footer_right ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.footer_right ul li {
	line-height: 40px;
	text-align: right;
	font-size: 16px;
	font-family: 'Jura', sans-serif;
}
.footer_right ul li a {
	text-decoration: none;
	color: #f5f5f5;
	transition: all 0.4s;
}
.footer_right ul li a:hover {
	color: #4a4b69;
}
.copyright {
	line-height: 40px;
	text-align: center;
	color: #f5f5f5;
	background-color: #787c98;
	font-size: 15px;
}

/* Mobil Menu */
#mobilmenu {
	background-color: #949abc;
	position: fixed;
	width: 100%;
	z-index: 1000;
	top: 0;
	display: none;
}
#mobilmenu ul {
	background-color: rgba(0,0,0,0.1);
	display: none;
	margin: 0px 16px;
	padding: 0px;
	position: relative;
	padding-bottom: 18px;
}
#mobilmenu ul:first-child {
	background-color: transparent;
}
#mobilmenu ul li {
	border-top:1px solid rgba(255,255,255,0.1);
	list-style: none;
	margin-bottom: 0px;
	position: relative;
}
#mobilmenu ul li a {
	color: #fff;
	display: inline-block;
	font-size: 16px;
	padding: 16px 0px;
	text-decoration: none;
	width: 100%;
}
#mobilmenu ul ul {
	margin: 0px;
	padding: 0px;
}
#mobilmenu ul ul li {
	border-top: none;
	padding-left: 16px;
}
.mobilmenulogo {
	color: #fff;
	font-size: 22px;
	line-height: 57px;
	position: absolute;
	font-weight: bold;
	font-family: 'Tomorrow', sans-serif;
	float: left;
	margin-left: 10px;
}
.mobilmenubutton {
	color: #fff;
	cursor: pointer;
	font-size: 20px;
	padding: 16px 20px;
	margin-top: 12.5px;
	margin-right: 10px;
	position: fixed;
	right: 0;
	background-image: url("../image/main/mobilmenu.png");
	background-repeat: no-repeat;
	background-position: center center;
}
.mobilmenuopen {
	color: #fff;
	cursor: pointer;
	font-size: 28px;
	padding: 8px;
	position: absolute;
	right: 0;
	top: 0;
	transition: transform 250ms ease;
}
.mobilmenurotate { 
	transform: rotate(135deg); 
}
.mobilmenuoverflow {
	margin-top: 57px;
	overflow-x: hidden;
	overflow-y: auto;
}
/* Mobil Menu */

/* Mobil Uyum */
@media (max-width:1000px){
	#mobilmenu {
		display: block;
	}
	#cookie_alert {
		padding-left:0px;
		margin:0px;
		height:35%;
		padding: 3%;
	}
	#cookie_alert span {
		float:none;
		display:block;
		margin:0px auto;
	}
	#cookie_alert a {
		float:none;
		display:block;
		margin:0px auto;
	}
	#cookie_alert_button {
		float:none;
		display:block;
		margin:10px auto;
		width: 60%;
		padding: 15px;
	}
    #backtotop {
        bottom: 45px;
        right: 45%;
    }
	nav {
		display: none;
	}
	.header {
		width: 100%;
		padding-top: 57px;
	}
	.info {
		display: none;
	}
	.social {
		width: 100%;
	}
	.social ul {
		width: 181px;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}
	.social ul li:last-child {
		margin-right: 0px;
	}
	.main {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
	.slider {
		width: 100%;
		height: auto;
	}
	.slider img {
		width: 100%;
		height: auto;
		margin-bottom: -5px;
	}
	.index_biography_content {
		width: 90%;
		height: auto;
		margin-left: auto;
		margin-right: auto;
	}
	.index_services {
		float: none;
		width: 100%;
		height: auto;
		margin-left: auto;
		margin-right: auto;
	}
	.index_services:nth-child(3n) {
		margin-right: auto;
	}
	.index_lastblog_in {
		width: 100%;
	}
	.index_biography_in {
		width: 100%;
	}
	.index_blog {
		float: none;
		width: 90%;
		height: auto;
		margin-left: auto;
		margin-right: auto;
	}
	.index_blog:nth-child(3n) {
		margin-right: auto;
	}
	.index_blogimage img {
		width: 100%;
		height: auto;
	}
	.index_content {
		height: auto;
	}
	.index_blogcontent {
		height: auto;
	}
	.footer {
		width: 100%;
		height: auto;
	}
	.footer_left {
		float: none;
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		padding: 0px;
		border-bottom: 1px solid #bbb;
	}
	.footer_left ul li {
		text-align: center;
	}
	.footer_right {
		float: none;
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		padding: 0px;
	}
	.footer_right ul li {
		text-align: center;
	}
	.about img {
		width: 100%;
	}
	.blog {
		float: none;
		margin-left: auto;
		margin-right: auto;
		width: 100%;
		height: auto;
	}
	.blog_image img {
		width: 100%;
		height: auto;
	}
	.blog:nth-child(3n) {
		margin-right: auto;
	}
	.pagination {
		width: 100%;
	}
	.blog_content {
		height: auto;
	}
	.contact_left {
		float: none;
		width: 100%;
		height: auto;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 40px;
	}
	.contact_right {
		float: none;
		width: 100%;
		height: auto;
		margin-left: auto;
		margin-right: auto;
	}
	.button {
		float: none;
		width: 100%;
	}
	.appimage {
		float: none;
		width: 100%;
		height: auto;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 5px;
	}
	.appimage img {
		width: 100%;
		height: auto;
	}
	.appointment {
		float: none;
		width: 100%;
		height: auto;
		margin-left: auto;
		margin-right: auto;
	}
	.whatsapp {
		display: block;
	}
	.calling {
		display: block;
	}
	.index-referance ul li {
		width: 90%;
		height: auto;
		float: none;
		margin-left: auto;
		margin-right: auto;
	}
	.index-referance ul li:nth-child(5n) {
		margin-right: auto;
	}
}