/*@import url("https://fonts.googleapis.com/css2family=Dela+Gothic+One&family=Inter:wght@400;500;600&display=swap");
*/
:root {
	--bg1: #feffff;
	--bg2: #e9f6fc;
	--body: #F8F9FB;
	--brand: #26ace1;
	--text: #031a61;
	--white: #ffffff;
}

body {
	font-family: "Inter", "Segoe UI", "Segoe UI", "Tahoma", "Geneva", "Verdana",
		"sans-serif";
	color: var(--text);
	line-height: 1.8;
	background-color: var(--bg1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Dela Gothic One", "Segoe UI", Tahoma, Geneva, Verdana,
		sans-serif;
}

a {
	color: var(--text);
	text-decoration: none;
}

a:hover {
	color: var(--brand);
}

.link-more {
	display: inline-flex;
	align-items: center;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	left: 1px;
}

.link-more .icon {
	transition: all 0.4s ease;
}

.link-more:hover .icon {
	transform: translateX(12px);
}

img {
	width: 100%;
}

section {
	padding-top: 120px;
	padding-bottom: 50px;
}

/* sub menu*/

.dropdown-menu li {
	position: relative;
	}
	.dropdown-menu .dropdown-submenu {
	display: none;
	position: absolute;
	left: 100%;
	top: -7px;
	}
	.dropdown-menu .dropdown-submenu-left {
	right: 100%;
	left: auto;
	}
	.dropdown-menu > li:hover > .dropdown-submenu {
	display: block;
	}

/*nav*/

.navbar .navbar-nav .nav-link.active {
	color: var(--brand);
}

#logo {
	max-height: 50px;
	max-width: 100px;
}

.btn {
	transition: all 0.4s ease;
	border-radius: 5rem;
	font-family: "Dela Gothic One", "Segoe UI", Tahoma, Geneva, Verdana,
		sans-serif;
	background: var(--brand);
	color: var(--white);
	text-wrap: nowrap;
}

.btn:hover {
	color: var(--brand);
}

.navbar-toggler-icon{
	background-color: var(--brand);
	background: url(./Images/DR_Mabaso_Logo2.png)
}


/*hero section*/
#hero {
	background: rgba(0, 0, 0, 0.5) url(./Images/room2.jpg);
	min-height: 100vh;
	background-position: center;
	background-size: cover;
	background-blend-mode: darken;
	position: relative;
	align-items: center;
}
.hero_h1 {
	font-size: 3rem;
	font-weight: 700;
	color: var(--white);
	animation: fadein 2s forwards;
	
}
@keyframes fadein {
	0%{
	  opacity: 0;
	  transform: translateY(8rem);
	}
  
	100%{
	  opacity: 1;
	  transform: translateY(0rem);
	}
  }




.hero_p {
	margin-top: 4rem;
	color: var(--white);
	animation: fadein2 2s forwards;
}

@keyframes fadein2 {
	0%{
	  opacity: 0;
	  transform: translateY(8rem);
	}
  
	100%{
	  opacity: 1;
	  transform: translateY(0rem);
	}
  }
.hero_book_now {
	margin-top: 4rem;
}

/*practitioners*/

#team{
	background: var(--body);
}


h1 {
	font-size: 3rem;
	font-weight: 700;
}
#team .team-member .content {
	padding: 32px;
}

#team .team-member p {
	margin-top: 18px;

}

.social-links a {
	margin: 10px;
	font-size: 30px;
}

.social-links{
	transition: all ease 0.4s;
}

.social-links:hover {
	transform: scale(1.2);
}

/*about*/

#about {
	position: relative;
  }


  
  #about::after {
	content: "";
	width: 35%;
	height: 100%;
	background-color: var(--bg2);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
  
  }
  
 
  #about h6 {
	margin-top: 24px;
	margin-bottom: 24px;
  }
  
  #about p {
	margin-top: 24px;
  }

/*services*/

#services {
	background: var(--body);
  }
  
  #services .service .content {
	padding: 32px;
  }
  
  #services .service p {
	margin-top: 24px;
	margin-bottom: 24px;
  }
  
  .cta-btns {
	margin-top: 60px;
  }

  .accordion-body{
	height: 300px;
	overflow: auto;
}

/*booking*/


#booking{
	background: rgba(0, 0, 0, 0.6) url(./Images/room1.jpg);
	min-height: 100vh;
	background-position: center;
	background-size: cover;
	background-blend-mode: darken;
	position: relative;
	align-items: center;
  }
  
  #booking form{
	background-color: var(--body);
	padding: 32px;
	margin-left: 24px;
	margin-right: 24px;
  }
  
  #booking form h6{
	color: var(--brand);
	text-decoration: underline;
  }

/*location*/

#location{
	padding: 0;
}
	

/*footer*/
.footer-block{
	margin-bottom: 40px;
  }
  .footer-top{
	background-color: var(--body);
	padding-top: 60px;
  }
  .footer-bottom{
	
	border-top: 1px solid var(--text);
	padding-top: 1rem;
  }
  

/**/
/**/
/**/
/**/
/**/
