@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

html {
  font-family: "Roboto", sans-serif;
}

p {
  font-size: 16px !important;
}

section {
  padding-inline: 100px;
}

.container {
  max-width: 1500px;
  margin: auto;
  position: relative;
}

nav {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: #161f41;
  padding-inline: 100px;
}
nav .container {
  display: flex;
  justify-content: space-between;
  padding-block: 20px;
  gap: 30px;
  align-items: center;
}
nav .container a {
  text-decoration: none;
  color: #ffffff;
}
nav .container .logos .pawhuska-logo {
  width: 100px;
}
nav .container .logos .pfmc-logo {
  width: 100px;
}
nav .container .services-links,
nav .container .patient-links {
  position: relative;
  overflow: hidden;
}
nav .container .services-links .dropdown,
nav .container .patient-links .dropdown {
  position: absolute;
  scale: 0;
  transition: 200ms ease-in-out;
  color: #161F41;
  background-color: white;
  width: -moz-fit-content;
  width: fit-content;
  text-wrap: nowrap;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  border-radius: 5px;
}
nav .container .services-links .dropdown a,
nav .container .patient-links .dropdown a {
  color: #161F41;
  font-size: 12px !important;
}
nav .container .services-links .dropdown a:hover,
nav .container .patient-links .dropdown a:hover {
  color: #FFBE3F;
}
nav .container .services-links a i,
nav .container .patient-links a i {
  transition: 200ms ease-in-out;
}
nav .container .services-links:hover,
nav .container .patient-links:hover {
  overflow: visible;
}
nav .container .services-links:hover .dropdown,
nav .container .patient-links:hover .dropdown {
  scale: 1;
}
nav .container .services-links:hover a i,
nav .container .patient-links:hover a i {
  transform: rotate(180deg);
}
nav .container .services-links .services-list,
nav .container .patient-links .services-list {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
nav .container .services-links .services-list ul,
nav .container .patient-links .services-list ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
nav .container .links-container {
  display: flex;
  gap: 20px;
}
nav .container .links-container li {
  list-style: none;
}
nav .container .links-container li #contact {
  background-color: #ffbe3f;
  padding: 15px 35px;
  color: #161f41;
}
nav .container .links-container li #clinic {
  background-color: #e2e3e9;
  padding: 15px 35px;
  color: #161f41;
}
nav .container .hamburger {
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  transition: 0.3s ease;
  position: relative;
  height: 40px;
  width: 40px;
}
nav .container .hamburger span {
  height: 5px;
  width: 40px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: 0.3s ease;
}
nav .container .close {
  transition: 0.3s ease;
  position: relative;
}
nav .container .close span:nth-child(1) {
  transform: rotate(45deg);
  position: absolute;
}
nav .container .close span:nth-child(2) {
  opacity: 0;
  display: none;
}
nav .container .close span:nth-child(3) {
  transform: rotate(-45deg);
  position: absolute;
}

.btn-yellow {
  background-color: #ffbe3f;
  color: #161f41;
  padding: 15px 35px 15px 35px;
  border: none;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 15px;
  cursor: pointer;
}

.button {
  display: flex;
  gap: 24px;
}

.btn-blue {
  background-color: transparent;
  color: #ffbe3f;
  padding: 15px 35px 15px 35px;
  border: 1px solid #ffbe3f;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 15px;
  cursor: pointer;
}

h1 {
  font-size: 30px;
  font-family: Roboto;
}

h2 {
  font-size: 27px;
}

p {
  font-size: 18px;
}

.img-container {
  max-width: 581px;
  min-width: 400px;
  height: 500px;
  position: relative;
}
.img-container::before {
  content: "";
  width: 70%;
  height: 420px;
  background-color: #ffbe3f;
  position: absolute;
  top: -20px;
  right: -20px;
}
.img-container::after {
  content: "";
  width: 70%;
  height: 420px;
  background-color: #ffbe3f;
  position: absolute;
  left: -20px;
  bottom: -20px;
}
.img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  position: relative;
}

.span::after {
  background-color: #161f41;
}

.hero {
  min-height: 650px;
  width: 100%;
  position: relative;
}
.hero::after {
  content: "";
  width: 100%;
  min-height: 700px;
  position: absolute;
  left: 0;
  background-color: #161f41;
  z-index: -2;
  top: -10rem;
  transform-origin: left bottom;
  transform: skewY(6deg);
}
.hero .container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding-top: 150px;
  position: relative;
}
.hero .container .first {
  max-width: 500px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero .container .first hr {
  max-width: 200px;
  background-color: #ffbe3f;
  color: #ffbe3f;
  height: 3px;
}
.hero .container .first h1 {
  font-size: 45px;
  color: #ffbe3f;
}
.hero .container .first p {
  font-size: 18px;
}
.hero .container .first a {
  text-decoration: none;
  color: #ffbe3f;
  border: 3px solid #ffbe3f;
  padding: 15px 35px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
.hero .container .img-container {
  max-width: 581px;
  min-width: 450px;
  height: 640px;
  position: relative;
}
.hero .container .img-container::before {
  content: "";
  width: 70%;
  height: 270px;
  background-color: #ffbe3f;
  position: absolute;
  top: -15px;
  right: -15px;
}
.hero .container .img-container::after {
  content: "";
  width: 70%;
  height: 270px;
  background-color: #ffbe3f;
  position: absolute;
  left: -15px;
  bottom: -15px;
}
.hero .container .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  position: relative;
}

@media screen and (max-width: 820px) {
  .hero {
    min-height: 800px;
  }
  .hero::after {
    min-height: 800px;
  }
}
.hero2 {
  min-height: 500px;
  width: 100%;
  position: relative;
}
.hero2::after {
  content: "";
  width: 100%;
  min-height: 500px;
  position: absolute;
  left: 0;
  background-color: #161f41;
  z-index: -2;
  top: -10rem;
  transform-origin: left bottom;
  transform: skewY(6deg);
}
.hero2 .container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding-top: 150px;
  position: relative;
}
.hero2 .container .first {
  max-width: 500px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero2 .container .first hr {
  max-width: 200px;
  background-color: #ffbe3f;
  color: #ffbe3f;
  height: 3px;
}
.hero2 .container .first h1 {
  font-size: 45px;
  color: #ffbe3f;
}
.hero2 .container .first h1 span {
  font-size: 32px !important;
}
.hero2 .container .first .paragraph {
  margin-top: 220px;
  color: black;
}
.hero2 .container .first a {
  text-decoration: none;
  color: #ffbe3f;
  border: 3px solid #ffbe3f;
  padding: 15px 35px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
.hero2 .container .img-container {
  max-width: 581px;
  min-width: 450px;
  height: 500px;
  position: relative;
}
.hero2 .container .img-container::before {
  content: "";
  width: 70%;
  height: 270px;
  background-color: #ffbe3f;
  position: absolute;
  top: -15px;
  right: -15px;
}
.hero2 .container .img-container::after {
  content: "";
  width: 70%;
  height: 270px;
  background-color: #ffbe3f;
  position: absolute;
  left: -15px;
  bottom: -15px;
}
.hero2 .container .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  position: relative;
}

footer {
  width: 100%;
  background-color: #161F41;
  padding-inline: 100px;
  margin-top: 100px;
  padding-top: 40px;
  padding-bottom: 40px;
}
footer ul {
  list-style-type: none;
}
footer li {
  list-style: none;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .container .row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
footer .container .row .col .logos {
  display: flex;
  align-items: center;
  gap: 12px;
}
footer .container .row .col .logos img {
  width: 100px;
}
footer .container .row .col .links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
footer .container .row .col .links li a {
  color: #FFFFFF;
}
footer .container .row .col .links li .contact-link {
  background-color: #FFBE3F;
  padding: 15px 20px;
  color: black;
}
footer .container .row .col .links li .clinic-link {
  background-color: #e2e3e9;
  padding: 15px 35px;
  color: #161f41;
}
footer .container .row .col p {
  color: #FFFFFF;
}
footer .container .row .col .socials {
  display: flex;
  gap: 12px;
}
footer .container .row .col .socials .social-icon a {
  color: #FFBE3F;
}

@media screen and (max-width: 1350px) {
  nav {
    padding-inline: 30px;
  }
  nav .container {
    position: static;
  }
  nav .container .links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    width: 100vw;
    left: 0;
    right: 0;
    top: -200rem;
    background-color: #161f41;
    height: 100vh;
    gap: 0;
    transition: 0.4s ease;
  }
  nav .container .links-container li {
    font-size: 18px;
    width: 100%;
  }
  nav .container .links-container li:first-child {
    margin-top: 7vh;
  }
  nav .container .links-container li a {
    width: 100%;
    padding-block: 25px;
    display: block;
    text-align: center;
    transition: 0.4s ease;
  }
  nav .container .links-container li a:hover {
    background-color: #323f6e;
  }
  nav .container .links-container li #contact {
    background-color: #161f41;
    color: #ffffff;
  }
  nav .container .hamburger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    transition: 0.3s ease;
    position: relative;
    height: 40px;
    width: 40px;
  }
  nav .container .hamburger span {
    height: 5px;
    width: 40px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: 0.3s ease;
  }
  nav .container .close {
    transition: 0.3s ease;
    position: relative;
  }
  nav .container .close span:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
  }
  nav .container .close span:nth-child(2) {
    opacity: 0;
    display: none;
  }
  nav .container .close span:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
  }
  .hamburger {
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    transition: 0.3s ease;
    position: relative;
    height: 40px;
    width: 40px;
  }
  .hamburger span {
    height: 5px;
    width: 40px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: 0.3s ease;
  }
  .close {
    transition: 0.3s ease;
    position: relative;
  }
  .close span:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
  }
  .close span:nth-child(2) {
    opacity: 0;
    display: none;
  }
  .close span:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
  }
}
@media screen and (max-width: 1080px) {
  footer {
    gap: 40px;
  }
  footer .container .col .logos {
    gap: 12px;
  }
  footer .container .col .links li {
    font-size: 15px;
  }
}
@media screen and (max-width: 1050px) {
  section {
    width: 100%;
    padding-inline: 30px;
  }
  .hero {
    width: 100%;
  }
  .hero::after {
    top: -15rem;
  }
  .hero .container {
    gap: 100px;
  }
  .hero .container .first {
    max-width: 500px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    align-items: center;
  }
  .hero .container .first hr {
    width: 150px;
  }
  .hero .container .first h1 {
    font-size: 32px;
    color: #ffbe3f;
  }
  .hero .container .first p {
    font-size: 16px;
  }
  .hero .container .first a {
    text-decoration: none;
    color: #ffbe3f;
    border: 3px solid #ffbe3f;
    padding: 15px 35px;
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
  }
  .hero .container .img-container {
    max-width: 500px;
    min-width: 350px;
    height: 400px;
  }
  .hero .container .img-container::before {
    content: "";
    width: 70%;
    height: 300px;
    background-color: #ffbe3f;
    position: absolute;
    top: -10px;
    right: -10px;
  }
  .hero .container .img-container::after {
    content: "";
    width: 70%;
    height: 300px;
    background-color: #ffbe3f;
    position: absolute;
    left: -10px;
    bottom: -10px;
  }
  .hero .container .img-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 2;
    position: relative;
  }
  .hero2 {
    width: 100%;
    padding-inline: 40px;
  }
  .hero2::after {
    height: 50vh;
  }
  .hero2 .container {
    gap: 100px;
  }
  .hero2 .container .first {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    align-items: center;
  }
  .hero2 .container .first hr {
    width: 150px;
  }
  .hero2 .container .first h1 {
    font-size: 32px;
    color: #ffbe3f;
  }
  .hero2 .container .first h1 span {
    font-size: 25px !important;
  }
  .hero2 .container .first .paragraph {
    margin-top: 30px;
    color: #ffffff;
  }
  .hero2 .container .first p {
    font-size: 12px !important;
  }
  .hero2 .container .first a {
    text-decoration: none;
    color: #ffbe3f;
    border: 3px solid #ffbe3f;
    padding: 15px 35px;
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
  }
  .hero2 .container .img-container {
    max-width: 500px;
    min-width: 350px;
    height: 400px;
  }
  .hero2 .container .img-container::before {
    content: "";
    width: 70%;
    height: 300px;
    background-color: #ffbe3f;
    position: absolute;
    top: -10px;
    right: -10px;
  }
  .hero2 .container .img-container::after {
    content: "";
    width: 70%;
    height: 300px;
    background-color: #ffbe3f;
    position: absolute;
    left: -10px;
    bottom: -10px;
  }
  .hero2 .container .img-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 2;
    position: relative;
  }
  nav {
    padding-inline: 30px;
  }
  nav .container {
    padding-block: 20px;
  }
  nav .container .links-container li {
    font-size: 16px;
  }
  nav .container .links-container li #contact {
    padding: 15px 25px;
  }
  footer {
    width: 100%;
    padding-inline: 30px;
  }
}
@media screen and (max-width: 950px) {
  nav .container .links-container li {
    font-size: 14px;
  }
  nav .container .links-container li #contact {
    padding: 15px 20px;
  }
}
@media screen and (max-width: 850px) {
  .hero .container .first {
    max-width: 500px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    align-items: center;
  }
  .hero .container .first hr {
    width: 150px;
  }
  .hero .container .first h1 {
    font-size: 32px;
    color: #ffbe3f;
  }
  .hero .container .first p {
    font-size: 16px;
    padding-top: 50px;
  }
  .hero .container .first a {
    text-decoration: none;
    color: #ffbe3f;
    border: 3px solid #ffbe3f;
    padding: 15px 35px;
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
  }
  .hero .container .img-container {
    max-width: 400px;
    min-width: 300px;
    height: 360px;
  }
  .hero .container .img-container::before {
    content: "";
    width: 70%;
    height: 200px;
    background-color: #ffbe3f;
    position: absolute;
    top: -10px;
    right: -10px;
  }
  .hero .container .img-container::after {
    content: "";
    width: 70%;
    height: 200px;
    background-color: #ffbe3f;
    position: absolute;
    left: -10px;
    bottom: -10px;
  }
  .hero .container .img-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 2;
    position: relative;
  }
  .hero2 .container .first {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    align-items: center;
  }
  .hero2 .container .first hr {
    width: 150px;
  }
  .hero2 .container .first h1 {
    font-size: 32px;
    color: #ffbe3f;
  }
  .hero2 .container .first a {
    text-decoration: none;
    color: #ffbe3f;
    border: 3px solid #ffbe3f;
    padding: 15px 35px;
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
  }
  .hero2 .container .img-container {
    max-width: 400px;
    min-width: 300px;
    height: 360px;
  }
  .hero2 .container .img-container::before {
    content: "";
    width: 70%;
    height: 200px;
    background-color: #ffbe3f;
    position: absolute;
    top: -10px;
    right: -10px;
  }
  .hero2 .container .img-container::after {
    content: "";
    width: 70%;
    height: 200px;
    background-color: #ffbe3f;
    position: absolute;
    left: -10px;
    bottom: -10px;
  }
  .hero2 .container .img-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 2;
    position: relative;
  }
  footer .container .row .col {
    width: 100%;
  }
  footer .container .row .col .logos {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
}
@media screen and (max-width: 740px) {
  .hero {
    min-height: 1000px;
  }
  .hero::after {
    min-height: 1000px;
  }
  .hero .container {
    flex-direction: column;
    align-items: center;
  }
  .hero .container .img-container {
    max-width: 400px;
    min-width: 300px;
    height: 360px;
  }
  .hero .container .img-container::before {
    content: "";
    width: 70%;
    height: 200px;
    background-color: #ffbe3f;
    position: absolute;
    top: -10px;
    right: -10px;
  }
  .hero .container .img-container::after {
    content: "";
    width: 70%;
    height: 200px;
    background-color: #ffbe3f;
    position: absolute;
    left: -10px;
    bottom: -10px;
  }
  .hero .container .img-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 2;
    position: relative;
  }
  .hero2 {
    min-height: 800px;
  }
  .hero2::after {
    min-height: 800px;
  }
  .hero2 .container {
    flex-direction: column;
    align-items: center;
    gap: 100px;
  }
  .hero2 .container .img-container {
    max-width: 400px;
    min-width: 300px;
    height: 360px;
  }
  .hero2 .container .img-container::before {
    content: "";
    width: 70%;
    height: 200px;
    background-color: #ffbe3f;
    position: absolute;
    top: -10px;
    right: -10px;
  }
  .hero2 .container .img-container::after {
    content: "";
    width: 70%;
    height: 200px;
    background-color: #ffbe3f;
    position: absolute;
    left: -10px;
    bottom: -10px;
  }
  .hero2 .container .img-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 2;
    position: relative;
  }
  .hero2 .container .first .paragraph {
    margin-top: 0px;
    color: #ffffff;
  }
  .hero2 .container .first p {
    font-size: 16px !important;
  }
}
@media screen and (max-width: 720px) {
  footer .container .row {
    justify-content: center;
  }
  footer .container .row .col .logos {
    gap: 12px;
    justify-self: center;
  }
  footer .container .row .col .links {
    display: flex;
    flex-direction: column;
  }
  footer .container .row .col .links li {
    font-size: 35px;
  }
}
@media screen and (max-width: 695px) {
  nav .container .links-btn {
    display: none;
  }
  nav .container .hamburger {
    display: flex;
  }
  nav .container .link-mobile {
    display: flex;
  }
  footer .container .row {
    justify-content: center;
  }
  footer .container .row .col .logos {
    gap: 12px;
    justify-self: center;
  }
  footer .container .row .col .links {
    display: flex;
    flex-direction: column;
  }
  footer .container .row .col .links li {
    font-size: 35px;
  }
}
@media screen and (max-width: 650px) {
  nav .container {
    gap: 10px;
  }
  nav .container .nav-links {
    gap: 10px;
  }
  nav .container .nav-links .links {
    gap: 10px;
    font-size: 11px;
  }
  nav .container .btn-yellow {
    font-size: 11px;
  }
}
@media screen and (max-width: 540px) {
  footer {
    padding-inline: 30px;
  }
}
#formSubmitButton {
  background-color: #161f41;
  color: white;
  padding: 16px 24px;
}/*# sourceMappingURL=main.css.map */