* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.phone-link, .phone-link:link, .phone-link:visited {
  color: inherit;
}

.navbar {
  height: 75px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #004169;
  position: sticky;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 1000;
}

.navbar-mobile {
  display: none;
  height: 65px;
  width: 100%;
  padding: 0 40px;
  position: sticky;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 1000;
}

.nav-logo {
  margin-left: 50px;
  height: 55px;
}

.nav-mobile-logo {
  height: 46px;
}

nav {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  width: 30%;
}

nav a {
  text-transform: uppercase;
  padding: 10px 10px 7px;
  border-bottom: 3px solid transparent;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

@media (max-width: 850px) {
  nav a {
    padding: 10px 0 7px;
  }
}

nav a:link, nav a:visited {
  color: #004169
}

nav a:hover, nav a:focus, nav a:active {
  border-bottom: 3px solid #004169;
}

.navbar-right {
  display: flex;
  align-items: center;
  margin-right: 50px;
}

.visit-button {
  height: 40px;
  color: white;
  background-color: #EB7167;
  border-radius: 25px;
  padding: 0px 25px;
  margin-right: 50px;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

.visit-button:hover, .visit-button:active, .visit-button:focus {
  background-color: #da574b;
}

.nav-hamburger {
  width: 30px;
  height: 16px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #004169;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

.nav-hamburger.open span {
  background: #d3531a;;
}

.nav-hamburger span:nth-child(1) {
  top: 0px;
}

.nav-hamburger span:nth-child(2), .nav-hamburger span:nth-child(3) {
  top: 8px;
}

.nav-hamburger span:nth-child(4) {
  top: 16px;
}

.nav-hamburger.open span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

.nav-hamburger.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav-hamburger.open span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

.mobile-menu {
  visibility: hidden;
  position: absolute;
  height: 0px;
  opacity: 0;
  -webkit-transition: opacity .25s ease-in-out;
  -moz-transition: opacity .25s ease-in-out;
  -o-transition: opacity .25s ease-in-out;
  transition: opacity .25s ease-in-out;
}

.mobile-menu.open {
  z-index: 999;
  visibility: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 0;
  top: 65px;
  width: 100vw;
  height: calc(100vh - 65px);
  padding-bottom: 10px;
  opacity: 1;
  background: white;
}

.mobile-navlink {
  width: 100vw;
  background-color: #F8EFE0;
  color: #004169;
  height: 10vh;
  margin-bottom: 7px;
  font-size: 21px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit-box-mobile {
  margin-top: 7px;
  width: 45vh;
  height: 45vh;
  max-width: 300px;
  max-height: 300px;
  border-radius: 26px;
  background-color: #EB7167;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0 15px;
  color: #F8EFE0;
}

.visit-box-mobile > img {
  width: 55%;
}

.visit-box-mobile > a {
  background-color: #004169;
  color: #F8EFE0;
  height: 40px;
  width: 180px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-contact {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 30px;
  font-size: 15px;
  color: #004169;
  font-weight: 500;
}

.mobile-contact div:first-child {
  font-weight: 700;
}

@media (max-width: 1024px) {
  nav {
    width: 260px;
  }

  .nav-logo {
    margin-left: 20px;
  }

  .navbar-right {
    margin-right: 10px;
  }

  .visit-button {
    margin-right: 20px;
  }
}

@media (max-width: 768px) {
  .navbar {
    display: none;
  }

  .navbar-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.nav-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav-phone {
  font-weight: 800;
  font-size: 12px;
}

.nav-address {
  font-weight: 400;
  font-size: 12px;
}

.address:link, .address:visited {
  color: inherit;
}

.hero-main {
  width: 100%;
  height: calc(100vh - 75px);
  min-height: 700px;
  background: transparent url(../assets/hero-main.png) 66% 0% no-repeat padding-box;
  padding: 0 130px 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  color: #F8EFE0;
  position: relative;
}

@media(max-width: 1366px) {
  .hero-main {
    min-height: 600px;
  }
}

@media (max-width: 1240px) {
  .hero-main {
    padding: 0 80px 100px;
  }
}

@media (max-width: 1024px) {
  .hero-main {
    padding: 60px 40px 60px;
    height: 100%;
  }
}

@media (min-width: 1920px) {
  .hero-main {
    background-image: url(../assets/hero-main-xl.png);
    background-size: cover;
  }
}

.hero-filter {
  position: absolute;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
  background: transparent url(../assets/hero-filter.png) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  z-index: 1;
}

@media (min-width: 1920px) {
  .hero-filter {
    background-image: url(../assets/hero-filter-xl.png);
    background-size: cover;
  }
}

.hero-cover {
  z-index: 10;
}

.title {
  font-size: 31px;
  font-weight: 600;
  margin: 20px 0 10px;
  z-index: 10;
}

@media(max-width: 1366px) {
  .title {
    font-size: 26px;
  }
}

.motto {
  font-size: 79px;
  letter-spacing: 1.58px;
  text-transform: uppercase;
  margin: 0;
  z-index: 10;
}

@media(max-width: 1366px) {
  .motto {
    font-size: 60px;
  }
}

.description-pill {
  width: 630px;
  border: 1px solid #F8EFE0;
  border-radius: 44px;
  font-size: 19px;
  font-weight: 600;
  padding: 15px 30px;
  margin-top: 40px;
  z-index: 10;
  max-width: 100%;
}

@media(max-width: 1366px) {
  .description-pill {
    font-size: 18px;
    margin-top: 30px;
  }
}

.hero-scroll {
  z-index: 10;
  margin-top: 55px;
  cursor: pointer;
}

@media(max-width: 1366px) {
  .hero-scroll {
    margin-top: 40px;
  }
}

.offer-section {
  background-color: rgba(248, 239, 224, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
}

.background-texture {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent url(../assets/texture.png) 0% 0% no-repeat padding-box;
}

.decor-1 {
  position: absolute;
  right: 0;
  top: -150px;
  background: transparent url(../assets/decors/decor-1.png) 0% 0% no-repeat padding-box;
  width: 182px;
  height: 302px;
  z-index: 1;
}

.description-container {
    padding: 140px 0 70px;
    width: 100%;
    position: relative;
}

@media(max-width: 1366px) {
  .description-container {
    padding: 70px 0 60px;
  }
}

.description-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1434px;
  margin: 0 138px;
  width: auto;
}

.description {
  font-size: 42px;
  font-weight: 800;
  color: #004169;
  line-height: 56px;
  z-index: 10;
}

@media(min-width: 1920px) {
  .description-text {
    max-width: 1644px;
    margin: 0 auto;
  }
}

@media(min-width: 1921px) {
  .description {
    font-size: 47px;
    line-height: 60px;
  }
}

@media(max-width: 1366px) {
  .description-text {
    margin: 0 70px;
  }
}

@media(max-width: 1024px) {
  .description {
    padding: 0 20px;
  }
}

@media(max-width: 768px) {
  .description-text {
    margin: 0 35px;
  }
  .description {
    padding: 0;
  }
}

.text-red {
  color: #BF362A;
}

.description-author {
  color: #A88753;
  align-self: flex-end;
  font-size: 30px;
  font-weight: 700;
}

@media(max-width: 1366px) {
  .description-author {
    font-size: 25px;
  }
}

@media(max-width: 1024px) {
  .description-author {
    margin-top: 20px;
  }
}

.offer-container {
  position: relative;
  padding: 140px 0 100px;
  width: 100%;
  background: transparent url(../assets/path-offers.svg) 50% 600px no-repeat padding-box;
}

@media(max-width: 1024px) {
  .offer-container {
    padding: 70px 0 40px;
  }
}

@media(max-width: 768px) {
  .offer-container {
    padding-top: 30px;
  }
}

.decor-2 {
  position: absolute;
  left: -200px;
  top: -340px;
  background: transparent url(../assets/decors/decor-2.png) 0% 0% no-repeat padding-box;
  width: 570px;
  height: 570px;
  z-index: 1;
}

.offer-header {
  width: 1434px;
  margin: 0 auto;
  text-align: center;
  color: #124868;
  font-size: 64px;
  font-weight: 800;
  border-bottom: 7px solid #BF362A;
  max-width: calc(100vw - 100px);
}

@media(max-width: 1024px) {
  .offer-header {
    text-align: left;
  }
}

@media(max-width: 768px) {
  .offer-header {
    font-size: 45px;
    max-width: calc(100vw - 60px);
  }
}

.offers-grid {
  display: grid;
  grid-auto-flow: row;
  justify-content: space-between;
  align-content: space-between;
  grid-template-columns: 24% 24% 24% 24%;
  grid-template-rows: auto;
  row-gap: 60px;
  width: 1644px;
  margin: 70px auto;
}

@media(max-width: 1664px) {
  .offers-grid {
    padding: 0 10px;
    width: 100%;
  }
}

@media(max-width: 1024px) {
  .offers-grid {
    grid-template-columns: 47% 47%;
    justify-content: center;
    column-gap: 20px;
  }
}

@media(max-width: 768px) {
  .offers-grid {
    grid-template-columns: 363px;
    grid-template-rows: auto;
  }

  .offer-description {
    padding-bottom: 50px;
  }
}

.offer {
  border: 5px solid #A88753;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 30px 0;
  background-color: #fcf9f3;
  max-width: 363px;
  margin: 0 auto;
}

@media(max-width: 768px) {
  .offer {
    max-width: calc(100vw - 40px);
    margin: 0 auto;
  }
}

.offer-image-container {
  align-self: center;
  border: 5px solid #A88753;
  border-radius: 50%;
  width: 230px;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offer-title {
  color: #BF362A;
  font-size: 27px;
  margin: 22px 0 0;
  font-weight: 800;
}

.offer-subtitle {
  color: #004169;
  font-size: 15px;
  margin-top: 11px;
  font-weight: 800;
}

.offer-description {
  color: #004169;
  font-size: 16px;
  margin-top: 20px;
  font-weight: 600;
  padding-bottom: 20px;
}

.offer-details-button {
  display: none;
}

@media(max-width: 768px) {
  .offer-details-button {
    display: block;
    align-self: center;
    margin: 12px 0 8px;
    cursor: pointer;
    width: 42px;
  }

  .offer-description {
    display: none;
  }
}

@media(min-width: 1025px) and (max-width: 1250px) {
  .offer {
    padding: 40px 20px 0;
  }

  .offer-image-container {
    width: 180px;
    height: 180px;
  }

  .offer-image-container > img {
    width: 105px;
  }
}

.visit-container {
  padding: 80px 0 180px;
  width: 100%;
  background: transparent url(../assets/path-visit.svg) 50% 480px no-repeat padding-box;
  z-index: 1;
}

@media(max-width: 1366px) {
  .visit-container {
    padding: 50px 0 70px;
  }
}

.visit-box {
  width: 1644px;
  height: 855px;
  margin: 0 auto;
  border-radius: 26px;
  background-color: #EB7167;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 150px 140px;
  color: #F8EFE0;
  max-width: calc(100vw - 40px);
}

.visit-box > img {
  width: 40%;
}

@media(max-width: 1780px) {
  .visit-box {
    padding: 150px 70px;
  }
}

@media(max-width: 1366px) {
  .visit-box {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 50px 20px;
    width: 800px;
  }

  .visit-box > img {
    max-width: 400px;
  }
}

@media(max-width: 1024px) {
  .visit-box {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 50px 20px;
  }

  .visit-box > img {
    width: 100%;
    max-width: 350px;
  }
}

@media(max-width: 768px) {
  .visit-box {
    max-width: calc(100vw - 20px);
  }
}

.visit-text-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 650px;
  margin-left: 20px;
}

@media(max-width: 1366px) {
  .visit-text-column {
    margin-left: 0;
    margin-top: 40px;
    max-width: calc(100% - 20px);
  }
}


.visit-header {
  font-size: 64px;
  padding-bottom: 50px;
  margin-bottom: 30px;
  border-bottom: 13px solid #004169;
  font-weight: 800;
}

@media(max-width: 1366px) {
  .visit-header {
    font-size: 40px;
    padding-bottom: 20px;
  }
}

@media(max-width: 1024px) {
  .visit-header {
    font-size: 34px;
  }
}

.visit-description {
  width: 580px;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 50px;
  max-width: 100%;
}

.register-button {
  height: 48px;
  padding: 5px 35px;
  border-radius: 25px;
  color: #004169;
  background-color: #F8EFE0;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

.register-button:active, .register-button:hover, .register-button:focus {
  background-color: #f1e2c8;
}

@media(max-width: 1366px) {
  .register-button {
    align-self: center;
  }
}

.team-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 100px 0 100px;
  background: white url(../assets/path-team.svg) 50% 830px no-repeat padding-box;
}

@media(max-width: 1366px) {
  .team-section {
    padding: 50px 0 70px;
  }
}

@media(max-width: 768px) {
  .team-section {
    background-position: 50% 1200px;
  }
}

.decor-3 {
  position: absolute;
  right: 0;
  top: 100px;
  background: transparent url(../assets/decors/decor-3.png) 0% 0% no-repeat padding-box;
  width: 191px;
  height: 368px;
  z-index: 1;
}

.team-header {
  width: 1300px;
  margin: 0 auto;
  text-align: center;
  color: #124868;
  font-size: 64px;
  font-weight: 800;
  border-bottom: 7px solid #BF362A;
  margin-bottom: 50px;
  max-width: calc(100vw - 70px);
}

@media(max-width: 1024px) {
  .team-header {
    text-align: left;
  }
}

@media(max-width: 768px) {
  .team-header {
    font-size: 45px;
    max-width: calc(100vw - 60px);
  }

  .team-description {
    max-width: calc(100vw - 60px);
  }
}

.team-description {
  width: 1300px;
  color: #004169;
  font-weight: 800;
  font-size: 31px;
  margin-bottom: 100px;
  max-width: calc(100vw - 70px);
}

.team-member-container {
  width: 1644px;
  height: 800px;
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  background-color: #F8EFE0;
  border-radius: 33px;
  z-index: 10;
  max-width: calc(100vw - 70px);
}

@media(max-width: 1366px) {
  .team-member-container {
    height: auto;
    flex-direction: column;
    border-bottom-left-radius: 33px;
    width: 800px;
  }
}

.member-photo {
  width: 685px;
  height: 100%;
  flex-shrink: 0;
  border-radius: 33px;

}

@media(max-width: 1650px) {
  .member-photo {
    width: 40%;
  }
}

@media(max-width: 1366px) {
  .member-photo {
    width: 100%;
  }
}

.member-info-container {
  display: flex;
  flex-direction: row;
}

@media(max-width: 1366px) {
  .member-info-container {
    padding-left: 40px;
    justify-content: space-between;
  }
}

@media(max-width: 768px) {
  .member-info-container {
    padding-left: 0;
    flex-direction: column;
    align-items: center;
  }
}

.member-description {
  margin-top: 50px;
  margin-right: 60px;
  width: 415px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media(max-width: 1560px) {
  .member-description {
    margin-right: 10px;
  }
}

@media(max-width: 1450px) {
  .member-description {
    width: 370px;
  }
}

@media(max-width: 1024px) {
  .member-description {
    width: 100%;
    padding: 0 40px;
  }
}

.member-title {
  color: #004169;
  font-weight: 400;
  margin-bottom: 10px;
}

.member-name {
  font-size: 39px;
  color: #004169;
  font-weight: 800;
}

.member-spec {
  margin: 30px 0;
  padding-top: 20px;
  border-top: 7px solid #BF362A;
  color: #A88753;
  font-size: 16px;
  font-weight: 500;
}

.member-details-button {
  display: none;
}

.what-visits {
  color: #004169;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
}

.visits-list {
  color: #004169;
  font-size: 16px;
  font-weight: 600;
  padding-inline-start: 0;
}

.visits-list > li {
  margin-bottom: 20px;
}

.member-achievments {
  width: 385px;
  background-color: #FFFBF4;
  border-radius: 33px;
  padding: 50px 60px 50px 70px;
  margin: 10px;
}

@media(max-width: 1500px) {
  .member-achievments {
    padding: 50px 40px 50px 50px;
    width: 345px;
  }
}

@media(max-width: 768px) {
  .what-visits {
    display: none;
  }

  .member-achievments {
    width: calc(100% - 60px);
    margin: 0 auto 30px;
    display: none;
  }

  .visits-list {
    padding-inline-start: 20px;
    display: none;
  }

  .member-details-button {
    display: block;
    align-self: center;
    cursor: pointer;
    margin-bottom: 16px;
    width: 42px;
  }

  .member-description {
    padding: 0 30px;
  }

  .member-name {
    font-size: 30px;
  }

  .member-spec {
    margin: 20px 0;
  }
}

.achievments-list {
  font-size: 16px;
  font-weight: 600;
  padding-inline-start: 0;
}

.achievments-list > li {
  margin-bottom: 20px;
}

.contact-section {
  background-color: #0D334A;
  color: #F8EFE0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
}

.contact-header {
  width: 1300px;
  margin: 0 auto;
  text-align: center;
  font-size: 64px;
  font-weight: 800;
  border-bottom: 7px solid #BF362A;
  margin-bottom: 50px;
  max-width: calc(100vw - 70px);
}

@media(max-width: 1024px) {
  .contact-header {
    text-align: left;
  }
}

.contact-description {
  width: 1300px;
  margin-bottom: 80px;
  font-size: 31px;
  font-weight: 800;
  text-align: center;
  max-width: calc(100vw - 70px);
}

@media(max-width: 1024px) {
  .contact-description {
    text-align: left;
    padding-bottom: 50px;
    margin-bottom: 60px;
    border-bottom: 7px solid #BF362A;
  }
}

.contact-columns-container {
  width: 1500px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: calc(100vw - 70px);
}

@media(max-width: 1024px) {
  .contact-columns-container {
    flex-direction: column;
  }
}

.logo-big {
  width: 240px;
  height: 265px;
}

@media(max-width: 1220px) {
  .logo-big {
    display: none;
  }
}

.contact-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 20px;
  font-weight: 600;
}

@media(max-width: 1366px) {
  .contact-column {
    font-size: 19px;
  }
}

.mb-big {
  margin-bottom: 50px;
}

.mb-small {
  margin-bottom: 25px;
}

.column-narrow {
  width: 360px;
}

@media(max-width: 1024px) {
  .column-narrow {
    width: 100%;
    padding-top: 50px;
    border-top: 7px solid #BF362A;
  }
}

strong {
  font-weight: 800;
}

.button-beige {
  width: 222px;
  height: 48px;
  color: #124868;
  font-size: 16px;
  font-weight: 800;
  background-color: #F8EFE0;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

.button-beige:active, .button-beige:hover, .button-beige:focus {
  background-color: #f0d6aa;
}

.map {
  width: 100%;
  height: calc(100vw / 1.8);
  background-size: cover !important;
  background: transparent  url(../assets/map.png) 0% 0% no-repeat padding-box;
}

@media (max-width: 768px) {
  .map {
    background-image: url(../assets/map-small.svg);
    height: calc(100vw / 0.85);
  }
}

@media (min-width: 1920px) {
  .map {
    background-image: url(../assets/map-xl.png);
  }
}

.footer {
  width: 100%;
  text-align: center;
  padding: 105px 170px 0;
  background-color: #DEC8A6;
  color: #0D334A;
  font-size: 27px;
  font-weight: 700;
  height: 246px;
  overflow-y: hidden;
  position: relative;
}

.footer-text {
  padding: 0 25px;
}

.pethelp-link {
  font-weight: 800;
}

.pethelp-link, .pethelp-link:link, .pethelp-link:visited {
  color: inherit;
}

.img-cat {
  position: absolute;
  top: 14px;
  left: 0;
}

.img-dog {
  position: absolute;
  top: 27px;
  right: 0;
}

.img-cat-dog {
  display: none;
}

@media(max-width: 768px) {
  .footer {
    height: auto;
    padding: 60px 0;
  }

  .img-cat {
    display: none
  }

  .img-dog {
    display: none;
  }

  .img-cat-dog {
    display: block;
    margin: 30px auto 0;
  }
}

@media (min-width: 1920px) {
  .offer-container, .visit-container, .team-section {
    background-size: 105vw;
  }

  .visit-container {
    background-position: 50% 75%;
  }
}

.header-padded {
  padding-bottom: 50px;
}

@media(max-width: 1366px) {
  h2 {
    font-size: 50px !important;
    line-height: 59px;
  }

  .text-sub {
    font-size: 28px;
    line-height: 35px;
  }

  .header-padded {
    padding-bottom: 20px;
  }
}

@media(min-width: 1025px) {
  .section-padding-top {
    padding-top: 140px;
  }
}


@media(min-width: 1025px) and (max-width: 1366px) {
  .text-sub.description {
    font-size: 37px;
    line-height: 50px;
  }
}

@media(max-width: 1024px) {
  .decor-1, .decor-2, .decor-3 {
    display: none;
  }

  .section-padding-top {
    padding-top: 70px;
  }

  h2 {
    font-size: 45px !important;
    line-height: 54px;
  }

  .text-sub {
    font-size: 26px;
    line-height: 33px;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 36px !important;
    line-height: 43px;
  }

  .text-sub {
    font-size: 24px;
    line-height: 31px;
  }
}