html{
	scroll-behavior: smooth;
	overflow-x: hidden;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
body{
	    background: #ffffff;
	    width: 100%;
	    float: left;
	    overflow-x: hidden;
}
:root{
	--theme-color:#002441;
}
.Header{
	position: relative;
	width: 100%;
	font-family: 'Montserrat', sans-serif;
	z-index: 99;
}
.Header .Top{
	width: 100%;
}
.Header .Top .container{
	border-bottom: 2px solid #eee;
}
.Header .Top .SocialMedia{
	line-height: 150px;
	font-size: 20px;
	text-align: center;
}
.Header .Top .SocialMedia ul{
	float: left;
	display: inline-block;
}
.Header .Top .SocialMedia ul li{
	list-style: none;
	float: left;
}
.Header .Top .SocialMedia ul li a{
	margin-left: 2px;
	margin-right: 2px;
	color: #838d8f;
}
.Header .Top .SocialMedia ul li a:hover{
	color: var(--theme-color);
}
.Header .Top .HeadContent{
	  padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
}
.Header .Top .Logo{
	width: 300px;
	text-align: center;
	margin-top: -10px;
}
.Header .Top .Logo img{
	width: 100%;
}
.Header .Top .Menu{
	display: none;
}
.Header .Top .Menu span{
	float: right;
	line-height: 150px;
	color: #838d8f;
	font-size: 25px;
}
.Header .Top .Menu i:hover{
	color: var(--theme-color);
	cursor: pointer;
}
.Header .Bottom{
	text-align: center;
}
.Header .Bottom ul{
	display: inline-block;
}
.Header .Bottom ul li{
	float: left;
	list-style: none;
	line-height: 100px;
	margin-left: 15px;
	margin-right: 15px;
	font-size: 17px;
}
.Header .Bottom ul li a{
	color: #000000;
	text-decoration: none;
}
.Header .Bottom ul li a:hover{
	color: var(--theme-color);
	font-weight: bold;
}
.Page pre h2{width:100%;float:left;margin-bottom:40px;}
@media (max-width: 800px){
	.Content pre img{
		width:100%!important;
	}
	.Header{
		height: auto;
	}
	.Header .Bottom{
		display: none;
	}
	.Header .Top .SocialMedia{
		display: none;
	}
	.Header .Top .Logo{
		line-height: normal;
		float: left;
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.Header .Top .Logo img{
		width: 90%;
	}
	.Header .Top .Menu{
		line-height: normal;
	}
	.Header .Top .Menu span{
		line-height: normal;
	}
}
/* The side navigation menu */
.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 100; /* Stay on top */
  top: 0; /* Stay at the top */
  right: 0;
  background-color: #f7f9fc; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  font-family: 'Montserrat', sans-serif;
}

/* The navigation menu links */
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #000000;
  display: block;
  transition: 0.3s;
}
.sidenav a:hover {
  color: var(--theme-color);
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 40px;
  margin-left: 50px;
  color: var(--theme-color);
}
.sidenav .Bottom{
	width: 100%;
	float: left;
	position: absolute;
	bottom: 0;
	transition: 0.3s;
	margin-bottom: 10px;
	text-align: center;
}
.sidenav .Bottom #MenuLogo{
	width: 100%;
}
.sidenav .Bottom li{
	list-style: none;
	display: inline-block;
}
.sidenav .Bottom li a{
	float: left;
	padding: 0px;
	margin-left: 7px;
	margin-right: 7px;
	color: var(--theme-color);
}
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

.Content{
	width: 100%;
	float: left;
}
.Content .Slide{
	position: relative;
	width: 100%;
	float: left;
	height: 300px;
	background: url('../assets/slide.png') no-repeat;
	background-size: 100% auto;
	background-position: center center;
}
.Content .Slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background-color: var(--theme-color); /* Renk tonu ve opacity */
    opacity: 0.4;
    pointer-events: none; /* Tıklama olaylarını geçerli arka plana yönlendirme */
}
.Content .Slide .Info{
	width: 400px;
	height: 400px;
	margin-top: 70px;
	padding-top: 60px;
}
.Content .Slide .Info img{
	width: 100%;
}
.Content .Slide .Info button{
	margin-left: 30px;
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 20px;
	padding-bottom: 20px;
	background: #ffffff;
	border: 2px solid var(--theme-color);
	color: var(--theme-color);
	font-family: 'Montserrat', sans-serif;
	border-radius: 4px;
}
.Content .Slide .Info button:hover{
	background-color: var(--theme-color);
	border-color: #fff;
	color: #fff;
}
@media (max-width: 800px){
	.Content .Slide{
		background-size: auto 100%;
	}
	.Content .Slide .Info{
		width: 100%;
	}
}
.Therapies{
	width: 100%;
	float: left;
	font-family: 'Montserrat', sans-serif;
}
.Therapies h2{
	text-align: center;
}
.Therapies .TherapiesContent{
	width: 100%;
	float: left;
	margin-top: 10px;
}
.Therapies .TherapiesContent .item{
	margin-top: 50px;
	text-align: center;
}
.Therapies .TherapiesContent .item:nth-child(3n){
	border-right: none;
}
.Therapies .TherapiesContent .item h2{
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 2px solid #eee;
	color: var(--theme-color);
}
.Therapies .TherapiesContent .item button{
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	background: transparent;
	border: 2px solid var(--theme-color);
	border-radius: 4px;
	color: var(--theme-color);
}
.Therapies .TherapiesContent .item button:hover{
	border-color: #000;
	color: #000;
	transition: 0.5s;
}
.Therapies .TherapiesContent .ShowMore{
	width: 100%;
	float: left;
	text-align: center;
	padding-top: 40px;
	padding-bottom: 40px;
}
.Therapies .TherapiesContent .ShowMore button{
	text-decoration:none;
  color:#ffffff;
  font-weight:bold;
  display:inline-flex;
  align-items:center;
  font-size:14px;
  background-color:var(--theme-color);
  border: none;
  z-index:2;
  transition: 0.7s;
  padding: 15px 40px;
}
.Therapies .TherapiesContent .ShowMore button:hover{
	background-color: var(--theme-color);
	color: #fff;
	transition: 0.7s;
}
.Information{
	width: 100%;
	float: left;
	font-family: 'Montserrat', sans-serif;
}
.Information h2{
	text-align: left;
	margin-bottom: 40px;
	padding-bottom: 10px;
	border-bottom: 2px solid #eeeeee;
}
.Information pre{
	width: 100%;
	text-align: left;
	padding: 0px;
	white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
    background-color: transparent;
    border: none;
    overflow-wrap: break-word; 
    word-break: normal!important;
    font-family: 'Montserrat', sans-serif!important;
    font-size: 18px;
}
@media (max-width: 800px){
	.Information pre{
		width:90%;
		margin-left: 5%;
	}
}
.RedirectPage{
	width: 90%;
	height: 95vh;
	background-color: #ffffff;
	position: fixed;
	top: 0;
	left: 0;
	margin-left: 5%;
	margin-top: 2.5%;
	z-index: 999;
	border: 2px solid #eee;
	font-family: 'Montserrat', sans-serif;
}
.RedirectPage .CloseButton{
	width: 100%;
	float: left;
	font-size: 40px;
	margin-top: 10px;
	color: var(--theme-color);
	text-align: right;
	padding-right: 20px;
}
.RedirectPage{
	float: left;
	text-align: center;
}
footer{
	display: block;
	float: left;
	margin-top: 100px;
}
.footer-distributed{
	background: #fff;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	border-top: 2px solid #eee;
	width: 100%;
	text-align: left;
	font: bold 16px sans-serif;
	padding: 55px 50px;
	font-family: 'Montserrat', sans-serif;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
	display: inline-block;
	vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left{
	width: 40%;
	text-align: center;
}

/* The company logo */

.footer-distributed h3{
	color:  #000;
	font: normal 36px 'Open Sans', cursive;
	margin: 0;
}

.footer-distributed h3 span{
	color:  lightseagreen;
}

/* Footer links */

.footer-distributed .footer-links{
	color:  #000;
	margin: 20px 0 12px;
	padding: 0;
}

.footer-distributed .footer-links a{
  font-weight:400;
	text-decoration: none;
	color:  inherit;
}
.footer-links a{
	margin-top: 10px;
}

.footer-distributed .footer-company-name{
	width: 100%;
	text-align: right;
	color:  #000;
	font-size: 14px;
	font-weight: normal;
	margin: 0;
}
.footer-distributed .footer-company-name a{
	color: #000;
}
/* Footer Center */

.footer-distributed .footer-center{
	width: 35%;
}

/*.footer-distributed .footer-center i{
	background-color:  #337ab7;
	color: #fff;
	font-size: 18px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	text-align: center;
	line-height: 42px;
	margin: 10px 15px;
	vertical-align: middle;
}*/

.footer-distributed .footer-center i.fa-envelope{
	font-size: 17px;
	line-height: 38px;
}

.footer-distributed .footer-center p{
	display: inline-block;
	color: var(--theme-color);
  font-weight:400;
	vertical-align: middle;
	margin:0;
}

.footer-distributed .footer-center p span{
	display:block;
	font-weight: normal;
	font-size:14px;
	line-height:2;
}

.footer-distributed .footer-center p a{
	color:  var(--theme-color);
	text-decoration: none;;
}

.footer-distributed .footer-links a:before {
  font-weight:300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.footer-distributed .footer-right{
	width: 20%;
}

.footer-distributed .footer-company-about{
	line-height: 20px;
	color:  #92999f;
	font-size: 13px;
	font-weight: normal;
	margin: 0;
}
.footer-distributed .footer-left img{
	height: 10vh;
}
.footer-distributed .footer-company-about span{
	display: block;
	color:  var(--theme-color);
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 20px;
}

.footer-distributed .footer-icons{
	margin-top: 25px;
}

.footer-distributed .footer-icons a{
	display: inline-block;
	width: 35px;
	height: 35px;
	cursor: pointer;
	background-color:  #33383b;
	border-radius: 2px;

	font-size: 20px;
	color: #ffffff;
	text-align: center;
	line-height: 35px;

	margin-right: 3px;
	margin-bottom: 5px;
}
.footer-distributed .footer-icons a:hover{
	background-color: var(--theme-color);
}

/* If you don't want the footer to be responsive, remove these media queries */

@media (max-width: 880px) {
	.Header .Top .Menu{
		display: block;
	}
	.footer-distributed .footer-left img{
	width: 100%;
	height: auto;
}
	.footer-distributed{
		font: bold 14px sans-serif;
	}

	.footer-distributed .footer-left,
	.footer-distributed .footer-center,
	.footer-distributed .footer-right{
		display: block;
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}

	.footer-distributed .footer-center i{
		margin-left: 0;
	}

}
.logo{
  height: 10vh;
  width: 10vh;
}
.GoUp{
	position: fixed;
	bottom: 0;
	right: 0;
	background-color: red;
	margin: 20px;
	width: 70px;
	height: 70px;
	border-radius: 100px;
	background-color: #fff;
	text-align: center;
	line-height: 70px;
	font-size: 20px;
	cursor: pointer;
	border: 2px solid #eee;
	color: var(--theme-color);
	transition: 0.3s;
	z-index: 99;
}
.GoUp:hover{
	transform: rotate(360deg);
	transition: 0.3s;
}
@media (max-width: 800px){
	.GoUp{
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 16px;
	}
}
.Content .Contact{
	width: 100%;
	float: left;
	padding-top: 50px;
}
.Content .Contact .item{
	width: 100%;
	background-color: #eee;
	float: left;
	margin-top: 15px;
}
.Content .Contact .item span{
	display: block;
	float: left;
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 15px;
	padding-bottom: 15px;
	background-color: var(--theme-color);
	color: #fff;
}
.Content .Contact .item text{
	display: block;
	float: left;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
	font-family: 'Montserrat', sans-serif;
}
.Content .Contact .item text a{
	color: #252525;
}
.Content .Contact .ContactImage{
	width: 100%;
	float: left;
	text-align: center;
}
.Content .Contact .ContactImage img{
	width: 80%;
}
.Content .Contact .ContactInfo{
	width: 100%;
	float: left;
	text-align: center;
	font-family: 'Montserrat', sans-serif;

}
.Content .Contact h4{
	font-family: 'Montserrat', sans-serif;

}
@media (max-width: 800px){
	.Content .Contact h4{
		margin-top: 20px;
	}
}
.Content .Page{
	width: 100%;
	float: left;
	font-family: 'Montserrat', sans-serif;
}
.Content .Page h1{
	width: 100%;
	color: var(--theme-color);
	font-size: 50px;
	margin-top: 50px;
	float: left;
}
.Content .Page pre{
	width: 95%;
	margin-left: 2.5%;
	font-family: 'Montserrat', sans-serif;
	font-size: 17px;
	margin-top: 70px;
	float: left;
	color: #333232;
	float: left;
	white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
    background-color: transparent;
    border: none;
    overflow-wrap: break-word; 
    word-break: normal!important;
}
.Content .Page span{
	width: 100%;
	display: block;
	float: left;
	margin-top: 40px;
}
@media (max-width: 800px){
	.Content .Page h1{
		margin-top: 30px;
	}
	.Content .Page pre{
		margin-top: 40px;
	}
}
.card {
  position: relative;
  height: 350px;
  background: #fff;
  float: left;
}



.card .content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background: #fff;
  gap: 20px;
  overflow: hidden;
  z-index: 10;
}

.card .content .icon {
  color: var(--color);
  width: 95%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  background: #fff;
  transition: 0.1s ease-in-out;
}
.card .content .icon img{
	width: 100%;
}
.card:hover .content .icon{
	box-shadow: 0 0 0 4px #fff,
    0 0 0 6px var(--color);
}
.card .content .text h3 {
  color: #000000;
  font-size: 1.5rem;
  font-weight: 500;
  transition: 0.5s ease-in-out;
}

.card:hover .content .text h3 {
  color: #fff;
}

.card .content .text p {
  color: #999;
  transition: 0.5s ease-in-out;
}

.card:hover .content .text p {
  color: #fff;
}

.card .content .text a {
  position: relative;
  display: inline-block;
  background: var(--color);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin-block-start: 10px;
  padding: 8px 15px;
}

.card:hover .content .text a {
  background: #fff;
  color: var(--color);
}
.Meeting{
	width: 60%;
	float: left;
	margin-left: 20%;
	margin-top: 50px;
}
.Meeting .Image{
	float: left;
	text-align: center;
}
.Meeting .Image img{
	width: 100%;

}
.Meeting .Rs{
	float: left;
	font-family: 'Montserrat', sans-serif;
	text-align: center;
}
.Meeting .Rs span{
	margin-top: 4px;
	margin-bottom: 4px;
	font-family: 'Montserrat', sans-serif;
}
.Meeting .Rs h3{
	margin-top: 60px;
	color: var(--theme-color);
}
.Meeting .Rs img{
	width: 70%;
}
.Meeting .Rs button{
	padding: 10px 20px;
	margin-top: 10px;
	background-color: var(--theme-color);
	border: none;
	outline: 0;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	transition: 0.5s;
}
.Meeting .Rs button:hover{
	color: #000;
	transition: 0.5s;
}
@media (max-width: 800px){
.Meeting .Rs img{
	width: 90%;
}
}
.Home{
	position: relative;
	width: 100%;
	height: 80vh;
	/*margin-top: -155px;*/
	background-color:#f1efeb;
	display: flex;
	justify-content: left;
	align-items: center;
	z-index: 2;
	font-family: 'Montserrat', sans-serif;
}
.Home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    background-color: var(--theme-color); /* Renk tonu ve opacity */
    pointer-events: none; /* Tıklama olaylarını geçerli arka plana yönlendirme */
	background: url('../assets/terapiAna.png') no-repeat;
	background-size: auto 100%;
	background-position: center;
}
.Home h1{
	font-weight: bold;
	margin-bottom: 20px;
	font-size: 65px;
	width: 70%;
}
.Home p{
	font-size: 18px;
}
.Home button{
		padding: 15px;
		padding-left: 25px;
		padding-right: 25px;
		border-radius: 2px;
		background-color: var(--theme-color);
		border: none;
		color: #ffffff;
		font-weight: bold;
		transition: 0.3s;
		margin: 10px;
}
.HomeButtons{
	margin-top: 20px;
}
.Home .HomeButtons button:last-child{
	background: transparent;
}
.Home button:hover{
	color: red;
}
.Home .ImageHome{
	text-align: right;
}
.Home .ImageHome img{
	width: 60%;

}
.Home .ContentHome{
	color: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.Therapies h2{
	margin-top: 40px;
	margin-bottom: 20px;
}
@media (max-width: 800px){
	.Home{
		/*margin-top: -200px;*/
		height:200px;
	}
	.Home:before{
		/*margin-top: -200px;*/
		height:100%;
	}
	.Home .container-fluid{
		margin: 0px;
		padding: 0px;
	}
	.Home .ContentHome{
		width: 100%;
	}
	.Home .ContentHome h1{
		width: 100%;
	}
	.Header .Top .Menu{
		margin-right: 30px;
	}
	.Header .Top .Menu i{
		color: #000000;
	}
	.Content .Slide{
		background-size: auto 100%!important;
	}

	.ContentHome{
		padding: 0px;
	}
	.ContentHome h1{
		font-size: 50px;
	}
}