:root {
  /*fonts*/
  --ff-header: "Poppins", sans-serif;
  --ff-regular: "Poppins", sans-serif;
  /*fonts sizes*/
  --headerFs: 5rem;
  --largeFs: 2.3rem;
  --regularFs: 1.6rem;
  --mediumFs: 1.5rem;
  --smallFs: 1.4rem;
  --navFs: 1.8rem;
  --h1-fs: 4.5rem;
  --h2-fs: 4rem;
  --h3-fs: 3.5rem;
  --h4-fs: 3rem;
  --h5-fs: 2.5rem;
  --h6-fs: 2rem;
  /*line heights*/
  --standard-lh: 1.8em;
  --standard-border-radius: 10px;
  /*color*/
  --white: #f8f7f4;
  --font-color: #565864;
  --secondary-color: #264e55;
  --header-color: #6ea9b4;
  /*margins*/
  --xlarge-margin: 4rem;
  --large-margin: 3rem;
  --medium-margin: 2rem;
  --small-margin: 1rem;
  /*padding*/
  --xlarge-padding: 20rem;
  --large-padding: 15rem;
  --medium-padding: 5rem;
  --small-padding: 1rem;
  /*gaps*/
  --xlarge-gap: 10rem;
  --large-gap: 7.5rem;
  --medium-gap: 5rem;
  --small-gap: 1rem;
  --h1-fs-mobile: 2.5rem;
  --h2-fs-mobile: 2rem;
  --h3-fs-mobile: 2.2rem;
  --h4-fs-mobile: 2rem;
  --h5-fs-mobile: 1.8rem;
  --h6-fs-mobile: 1.6rem;
  --navFs-mobile: 1.4rem;
  --regularFs-mobile: 1.4rem;
  --xlarge-padding-mobile: 5rem;
  --large-padding-mobile: 4rem;
  --medium-padding-mobile: 2rem;
  --small-padding-mobile: 1rem;
  --xlarge-margin-mobile: 5rem;
  --large-margin-mobile: 4rem;
  --medium-margin-mobile: 2rem;
  --small-margin-mobile: 1rem;
  --xlarge-gap-mobile: 5rem;
  --large-gap-mobile: 4rem;
  --medium-gap-mobile: 2rem;
  --small-gap-mobile: 1rem;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1,
h2,
h4,
h5,
h6 {
  font-family: var(--ff-header);
  color: var(--header-color);
  font-weight: 100;
}

h1 {
  font-size: var(--h1-fs);
  font-weight: 400;
}

h2 {
  font-size: var(--h2-fs);
}

h3 {
  font-size: var(--navFs);
  font-family: var(--ff-regular);
  color: var(--secondary-color);
  font-weight: 400;
}

h4 {
  font-size: var(--h4-fs);
  font-weight: 400;
}

h5 {
  font-size: var(--h5-fs);
  font-weight: 400;
}

h6 {
  font-family: var(--ff-regular);
  font-size: var(--h6-fs);
  font-weight: 400;
}

a {
  text-decoration: none;
}

p {
  font-family: var(--ff-regular);
  color: var(--font-color);
  font-size: var(--regularFs);
  line-height: var(--standard-lh);
  font-weight: 300;
}

b {
  font-weight: 600;
}

ul {
  list-style: none;
}
ul li {
  font-family: var(--ff-regular);
  font-size: var(--smallFs);
  font-weight: 300;
  padding-bottom: var(--small-padding);
  text-align: center;
}

section {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.section-title {
  width: 100%;
  padding: var(--small-gap) 0;
  border-bottom: 2px solid var(--header-color);
  margin-bottom: var(--medium-padding);
}

.container {
  max-width: 90dvw;
  margin-left: auto;
  margin-right: auto;
}

body {
  background-color: var(--white);
}
body header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--large-gap);
  padding: var(--small-gap) 0;
  border-bottom: 2px solid var(--header-color);
}
body header .logo-wrapper h1 {
  font-family: var(--ff-regular);
  font-weight: 300;
}
body header .logo-wrapper h2 {
  font-family: var(--ff-regular);
  font-weight: 200;
}
body header nav {
  width: 100%;
}
body header nav ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  padding: var(--small-padding);
}
body header nav ul li {
  background-color: rgba(38, 78, 85, 0.07);
  padding: var(--small-padding) var(--medium-padding);
  border-radius: var(--standard-border-radius);
  transition: 0.3s;
  cursor: pointer;
  border: 1.5px solid transparent;
}
body header nav ul li:hover {
  background-color: var(--secondary-color);
  border: 1.5px solid var(--white);
}
body header nav ul li:hover h3 {
  color: var(--white);
}
body header nav ul li a h3 {
  color: var(--header-color);
}
body .offer {
  min-height: unset;
  margin-top: var(--medium-margin);
}
body .offer .offer-wrapper {
  width: 100%;
  background-color: rgba(38, 78, 85, 0.07);
  border-radius: var(--standard-border-radius);
  padding: 5rem;
}
body .offer .offer-wrapper .offer-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: var(--medium-padding);
  gap: var(--medium-gap);
}
body .offer .offer-wrapper .offer-item p:first-of-type {
  font-weight: bold;
  text-align: right;
}
body .about-me .about-me-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--large-gap);
  margin-bottom: var(--xlarge-margin);
}
body .about-me .about-me-wrapper .about-me-lead h4 {
  text-align: center;
  margin-bottom: var(--medium-margin);
}
body .about-me .about-me-wrapper .about-me-lead p {
  text-align: center;
}
body .about-me .about-me-wrapper img {
  border: 5px solid var(--secondary-color);
  border-radius: var(--standard-border-radius);
}
body .about-me .about-me-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--large-gap);
  margin-bottom: var(--xlarge-margin);
}
body .about-me .about-me-details .about-me-item {
  text-align: center;
}
body .about-me .about-me-details .about-me-item h5 {
  text-align: center;
  margin-bottom: var(--medium-margin);
}
body .about-me .about-me-details .about-me-item p {
  font-size: var(--smallFs);
}
body .about-me .about-me-list-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--large-gap);
  margin-bottom: var(--xlarge-margin);
  width: 100%;
}
body .about-me .about-me-list-wrapper .about-me-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .about-me .about-me-list-wrapper .about-me-list h6 {
  margin: var(--medium-margin) auto;
}
body .about-me .about-me-certificates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--large-gap);
  margin-bottom: var(--xlarge-margin);
}
body .about-me .about-me-certificates img {
  display: block;
  margin: auto;
}
body .about-me .about-me-office {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: var(--large-gap);
  margin-bottom: var(--xlarge-margin);
  width: 100%;
}
body .about-me .about-me-office img {
  width: 100%;
  border: 5px solid var(--secondary-color);
  border-radius: var(--standard-border-radius);
}
body .book-visit .book-visit-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: var(--large-gap);
  min-height: 50dvh;
}
body .book-visit .book-visit-wrapper .znany-lekarz {
  height: 100%;
}
body .book-visit .book-visit-wrapper .google-maps {
  height: 100%;
}
body footer p {
  text-align: center;
  font-weight: bold;
  padding: var(--small-padding);
  border-top: 1px solid var(--secondary-color);
}
body footer p a {
  color: var(--secondary-color);
}

@media (max-width: 980px) {
  h1 {
    font-size: var(--h1-fs-mobile);
  }
  h2 {
    font-size: var(--h2-fs-mobile);
  }
  h3 {
    font-size: var(--h3-fs-mobile);
  }
  h4 {
    font-size: var(--h4-fs-mobile);
  }
  h5 {
    font-size: var(--h5-fs-mobile);
  }
  h6 {
    font-size: var(--h6-fs-mobile);
  }
  p {
    font-size: var(--regularFs-mobile);
  }
  body header {
    height: auto;
    flex-direction: column;
    padding-bottom: var(--medium-padding-mobile);
  }
  body header nav ul {
    padding: 0;
  }
  body header nav ul a li {
    padding: var(--small-padding-mobile) var(--medium-padding-mobile);
  }
  body header nav ul a li h3 {
    font-size: var(--navFs-mobile);
  }
  body .offer {
    height: auto;
    margin-top: var(--medium-margin-mobile);
  }
  body .offer .offer-wrapper {
    padding: var(--small-padding-mobile);
  }
  body .offer .offer-wrapper .offer-item {
    gap: var(--medium-gap-mobile);
    text-align: center;
    align-items: center;
  }
  body .about-me .about-me-wrapper {
    flex-direction: column;
  }
  body .about-me .about-me-wrapper img {
    max-width: 90dvw;
  }
  body .about-me .about-me-details {
    grid-template-columns: 1fr;
  }
  body .about-me .about-me-list-wrapper {
    grid-template-columns: 1fr;
  }
  body .about-me .about-me-certificates {
    grid-template-columns: 1fr;
  }
  body .about-me .about-me-certificates img {
    max-width: 90dvw;
  }
  body .about-me .about-me-office {
    grid-template-columns: 1fr;
  }
  body .about-me .about-me-office img {
    max-width: 90dvw;
  }
  body .book-visit .book-visit-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 981px) and (max-width: 1150px) {
  body header {
    height: auto;
    flex-direction: column;
  }
  body .offer {
    height: auto;
    margin-top: var(--medium-margin);
  }
  body .about-me .about-me-wrapper img {
    max-width: 45dvw;
  }
}/*# sourceMappingURL=style.css.map */