:root {
  --white-color: #ffffff;
  --accent-color: #FFBF00;
  --top-color: #e3d9d4;
  --background-primary-color: #e1e0e0;
  --brown: #8a601e;
  --light-black: #26201d;

}

body {
  background-color: var(--white-color);
  font-family: Railway, sans-serif;
  font-weight: 200;
  font-size: 16px;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding-left: 0;
}

p {
  margin: 0px;
  font-size: 14px;
}

@media screen and (min-width: 1200px) {
  p {
    font-size: 16px;  }
}

h1,
h2,
h4,
h5,
h6 {
  margin: 0px;
}

.list {
  list-style: none;
}

/* Common */

.container {
  width: 370px;
  padding: 0px 10px 0px 10px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .container {
    width: 728px;
    padding: 0px 20px 0px 20px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1200px) {
  .container  {
    width: 1200px;
    padding-left: 32px;
    padding-right: 32px;
  }
}


/* Header */

.menu {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (max-width: 767px) {
  .menu {
    display: none;
  }
}

.menu-toggle {
  min-height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  outline: none;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 32px;
  background-color: var(--brown);
  z-index: 999;

  transform: translateX(100%);
  transition: transform 250ms ease-in-out;
}

.menu-container.is-open {
  transform: translateX(0);
}

.menu-container .menu-toggle {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--light-black);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 26px;
  padding: 100px 0px 0px 0px;
  margin: 0;
  list-style: none;
}

.mobile-menu-logo {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
}

.mobile-menu .link {
  padding: 10px;
  color: var(--white-color);
  text-decoration: none;
  font-size: 30px;
  font-weight: 500;
}

.mobile-menu .link:hover,
.mobile-menu .link:focus {
  color: var(--accent-color);
}

.nav {
  display: none;
}

@media screen and (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.header-page {
  background-color: white;
  padding-top: 5px;
  padding-bottom: 5px;
}

@media screen and (min-width: 768px) {
  .header-page {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .header-container {
    display: flex;
    align-items: center;
  }
}

.header-logo {
  margin-right: 100px;
}

@media screen and (min-width: 768px) {
  .header-logo {
    margin-right: 30px;
  }
}

@media screen and (min-width: 1280px) {
  .header-logo  {
    margin-right: 100px;
  }
}

.header-logo-img{
width: 160px;
}

@media screen and (min-width: 768px) {
  .header-logo-img {
    width: 140px;
  }
}
@media screen and (min-width: 1280px) {
  .header-logo-img {
    width: 200px;
  }
}

.header-nav-list {
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .header-nav-list {
    gap: 14px;
  }
}

@media screen and (min-width: 1200px) {
  .header-nav-list {
    gap: 30px;
  }
}

.header-nav-link {
  color: black;
  font-weight: 200;
  font-size: 14px;
}

.header-nav-link:hover, .header-nav-link:focus {
  color: var(--brown);
}

@media screen and (min-width: 1200px) {
  .header-nav-link {
font-size: 16px;  }
}

.active{
  color: var(--brown);
}

.header-connect-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  gap: 15px;
}

@media screen and (min-width: 768px) {
  .header-connect-list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    gap: 10px;
  }
}

@media screen and (min-width: 1280px) {
  .header-connect-list{
    gap: 15px;
  }
}


@media screen and (min-width: 768px) {
  .header-connect-socials{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
}

@media screen and (min-width: 1280px) {
  .header-connect-socials{
    gap: 10px;
  }
}

.header-icon {
  display: flex;
  stroke-width: 0;
  stroke: var(--brown);
  fill: var(--brown);
}

.header-icon:hover, .header-icon:focus {
  stroke: var(--accent-color);
  fill: var(--accent-color);
}

.header-btn-link{
  display: none;
}



@media screen and (min-width: 768px) {
.header-btn-link{
text-decoration: none;
color: var(--brown);
font-family: inherit;
font-weight: 200;
min-width: 100px;
min-height: 30px;
border: 1px solid #8a601e;
border-radius: 25px;
background-color: transparent;
display: flex;
justify-content: center;
align-items: center;
font-size: 14px;
}
}

@media screen and (min-width: 1200px) {
  .header-btn-link{
  font-size: 16px;
  min-width: 130px;
  min-height: 40px;
  }
}

@media screen and (min-width: 768px) {
.header-btn-link:hover, .header-btn-link:focus{
  cursor: pointer;
  border: 1px solid var(--accent-color);
}
}

.header-btn-link-mob{
  text-decoration: none;
color: var(--white-color);
font-family: inherit;
font-weight: 200;
min-width: 130px;
min-height: 40px;
border: 1px solid var(--white-color);
border-radius: 25px;
background-color: transparent;
display: flex;
justify-content: center;
align-items: center;
font-size: 16px;
}

.header-btn-link-mob:hover, .header-btn-link-mob:focus{
  cursor: pointer;
  border: 1px solid var(--accent-color);
}

@media screen and (min-width: 768px) {
  .header-btn-link-mob{
    display: none;
  }
  }


/* Hero */

.hero {
  background-image: url('./images/Susanna-photo-new-resized.png');
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px) {
  .hero {
    background-size: cover;
  }
}

@media screen and (min-width: 1280px) {
  .hero {
    background-size: cover;
  }
}

.hero-list {
  width: 100px;
}

.hero-content {
  padding-top: 160px;
  width: 240px;
  height: 260px;
}

@media screen and (min-width: 768px) {
  .hero-content {
    display: flex;
    justify-content:center;
    flex-direction: column;
    width: 450px;
    height: 500px;
  }
}

@media screen and (min-width: 1280px) {
  .hero-content  {
  width: 500px;
  height: 600px;
  }
}

.hero-title {
  color: #26201d;
  font-weight: 200;
  font-size: 30px;
}

@media screen and (min-width: 768px) {
  .hero-title {
    font-size: 50px;
  }
}

@media screen and (min-width: 1280px) {
  .hero-title  {
    font-weight: 200;
  font-size: 88px;
  }
}

.hero-quote {
  font-weight: 200;
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .hero-quote {
    font-size: 16px;
  }
}

/* About me */

.about-me {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .about-me {
    padding-top: 40px;
    padding-bottom: 40px;  }
}

.about-me-title {
display: none;
}

@media screen and (min-width: 768px) {
  .about-me-title  {
    /* display: flex; */
    text-align: center;
    justify-content: center;
    color: var(--brown);
  }
}

.about-me-text{
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: var(--light-black);
}

@media screen and (min-width: 768px) {
  .about-me-text{
    font-size: 14px;
  }
}

@media screen and (min-width: 1200px) {
  .about-me-text{
    font-size: 16px;
  }
}

.about-me-text-people{
margin-top: 15px;
}

.about-me-text-list{
  margin-left: 15px;
}

.about-me-text-list-item{
color: var(--brown);
}

.about-me-education {
  display: flex;
  gap: 30px;
}


.about-me-education-wrap {

    border: 1px solid var(--brown);

  border-radius: 25px;
  padding: 15px 5px 15px 10px;
}

.about-me-education-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}



.about-me-education-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Footer */

.footer{
  background-color: var(--brown);
  padding-top: 20px;
  padding-bottom: 20px;
}

@media screen and (min-width: 1280px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.footer-container{
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 10px;
  width: fit-content;
}

@media screen and (min-width: 1280px) {
  .footer-wrap{
    gap: 15px;
  }
}

.footer-logo-img{
  width: 160px;
  }
  
  @media screen and (min-width: 1280px) {
    .footer-logo-img {
      width: 200px;
    }
  }


.footer-email-link{
  font-family: inherit;
  font-weight: 200;
  font-style: normal;
  font-size: 14px;
  text-decoration: none;
  color: var(--light-black);
}

@media screen and (min-width: 1200px) {
  .footer-email-link{
    font-size: 16px;
  }
}


.footer-email-link:hover, .footer-email-link:focus {
  color: var(--white-color);
}

.footer-socials{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-icon {
  display: flex;
  stroke-width: 0;
  stroke: var(--white-color);
  fill: var(--white-color);
}

.footer-icon:hover, .footer-icon:focus{
  stroke: var(--accent-color);
  fill: var(--accent-color);
}

.copy-right{
  font-family: inherit;
  font-weight: 200;
  color: var(--light-black);
  margin-top: 10px;
  font-size: 12px;
}

@media screen and (min-width: 1200px) {
  .copy-right{
    margin-top: 15px;
    font-size: 14px;
  }
}

/* Therapy page */

.therapy{
  padding: 40px 0px 40px;
}

@media screen and (min-width: 768px) {
  .therapy{
    padding: 50px 0px 50px;
  }
}

@media screen and (min-width: 1200px) {
  .therapy{
    padding: 80px 0px 80px;
  }
}

.therapy-list{
  display: flex;
  flex-direction: column;
  list-style-type: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

@media screen and (min-width: 768px) {
  .therapy-list{
    flex-direction: column;
  }
}

@media screen and (min-width: 1200px) {
  .therapy-list{
    flex-direction: row;
    align-items: normal;
  }
}

.therapy-list-item{
  width: 340px;
  height: fit-content;
  background-color: white;
  border: 1px solid var(--brown);

  border-radius: 24px;
  padding: 15px;
}

@media screen and (min-width: 768px) {
  .therapy-list-item{
    width: 700px;
    padding: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .therapy-list-item{
    width: 370px;
    padding: 20px;
  }
}

.therapy-list-item-box{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.therapy-list-item-title{
  /* color: var(--light-black); */
  color: var(--brown);
  font-size: 20px;
}

@media screen and (min-width: 1200px) {
  .therapy-list-item-title{
    font-size: 24px;
  }
}

.therapy-list-item-text{
  color: var(--light-black);
  /* color: var(--brown); */
  font-size: 14px;
}

@media screen and (min-width: 1200px) {
  .therapy-list-item-text{
    font-size: 16px;
  }
}

/* Services */

.services{
  padding: 40px 0px 40px;
}

@media screen and (min-width: 768px) {
  .services{
    padding: 50px 0px 50px;
  }
}

@media screen and (min-width: 1200px) {
  .services{
    padding: 80px 0px 80px;
  }
}

.services-section-wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.services-wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px;
}

.services-title{
  margin-bottom: 30px;
  font-family: inherit;
font-weight: 200;
color: var(--light-black);
font-size: 20px;
}

.services-list{
  list-style-type: circle;

  display: flex;
  flex-direction: column;
  color: var(--brown);
  gap: 10px;
  padding: 0px 20px 0px 20px;
}


@media screen and (min-width: 768px) {
  .services-list{
    list-style-type: none;

    /* flex-direction: row; */
    gap: 14px;
  }
}

@media screen and (min-width: 1200px) {
  .services-list{
    gap: 30px;
  }
}

@media screen and (min-width: 768px) {
  .services-list-item{
    border: 1px solid var(--brown);
    padding: 12px;
    border-radius: 24px;
  }
}

@media screen and (min-width: 1200px) {
  .services-list-item{
    border: 1px solid var(--brown);
    padding: 12px;
    border-radius: 24px;
  }
}

.services-format-list{
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0px 20px 0px 20px;
  color: var(--light-black);
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .services-format-list{
    list-style-type: circle;
  }
}