@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  line-height: 40px;
  font-family: 'Open Sans', sans-serif;
  background-color: rgb(0, 0, 0);
}
.container {
  max-width: 1024px;
  background-color: #262626;
  color: white;
  margin: 0 auto;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
ul{
  list-style: none;
}
a{
  text-decoration: none;
}
.logo{
  width: 150px;
}

.main{
  background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url('../assets/images/bg2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 30px;
}
.navbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  flex-wrap: wrap;
}
.nav-menu{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 60px;
}
.nav-menu a{
  font-size: 18px;
  color: #fff;
  transition: 0.3s ease;
}
.nav-menu a:hover{
  color: #f30000e9;
}
.hamburger{
  display: none;
  cursor: pointer;
}
.bar{
  display: block;
  width: 25px;
  height: 3px;
  margin: 3px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
}
.theme{
  cursor: pointer;
  padding: 6px 5px;
  border-radius: 4px;
  border: none;
}
/* show case area */
.showcase{
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
h1{
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 400;
}
h4 {
  font-weight: 600;
}
.showcase h1{
  margin-top: 50px;
  font-size: 54px;
  margin-bottom: 40px;
}
.showcase p{
  font-size: 20px;
  margin-bottom: 20px;
}
.showcase a{
  padding: 5px 15px;
  color: white;
  border: 1px solid #F30000;
  border-radius: 15px;
  transition: all 0.3s;
}
.showcase a:hover{
  background-color: #F30000;
}
.showcase .hours,
.links .hours{
  font-size: 12px;
}
.mg{
  width: 400px;
}
.links{
  padding: 10px;
}
.links a{
  color: white;
}
.icons{
  font-size: 1.2rem;
  padding-right: 5px;
}
.social-icon{
  padding: 10px;
  font-size: 1.3rem;
  transition: 0.3s ease;
}
.social-icon:hover{
  color: #F30000;
}
.contact-links{
  margin-right: 1.2rem;
  padding-right: 5px;
}
/* intro */
.intro,
.content,
.about-wrapper{
  display: flex;
  flex-direction: column;
  max-width: 1024px;
  margin: 0 auto;
  padding: 20px;
  flex-wrap: wrap;
}
.intro h1{
  color: #fff;
  font-weight: 400;
}
.intro-text {
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}
/* About */

/* content */
.content h1 {
  color: #fff;
  font-weight: 400;
  margin-bottom: 10px;
}
.content-wrapper{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.content-text{
  flex: 1;
  background-color: #262626;
  opacity: 0.98;
  box-shadow: 5px 10px #888777;
  color: white;
  padding: 10px;
  border-radius: 4px;
}
.list{
  padding: 10px;
}
/* pricing */
.price-wraper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  max-width: 1024px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.price-wraper h1{
  color: #fff;
  font-weight: 400;
  padding: 24px 0;
}
table{
  border-collapse: collapse;
  width: 100%;
}
td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}
tr:nth-child(even) {
  background-color: #fff;
  color: #262626;
}

th{
  font: 1.3rem;
  background-color: #002147;
  color: white;
}
/* appointment button */
.appointmentBtn{
  color: white;
  margin-top: 20px;
  display: inline;
  background-color: #002147;
  width: 300px;
  padding: 10px;
  border-radius: 4px;
  transition: 0.3s ease-in-out;
}
.appointmentBtn:hover{
  background-color: #F30000;
}
/* contact */
.contact{
  max-width: 1024px;
  margin: 0 auto;
  padding: 20px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  margin-bottom: 15px;
  border-radius: 4px;
  box-shadow: 10px 10px 8px #888888;
}
.contact h3{
  font-size: 2rem;
  color: #fff;
}
.contact-icon{
  font-size: 1.2rem;
  color: #d61c1c;
}
.footer{
  background-color: #141414;
  color: white;
  padding: 13px;
}
.footer-links{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}