html {
  scroll-behavior: smooth;
}

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

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: currentColor;
  text-decoration: none;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
}

body {
  font-family: "Quicksand", serif;
  font-weight: 400;
  font-style: normal;
  background-color: #fff8f5;
  color: #242851;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
button {
  font-family: "Nunito", serif;
  font-weight: 700;
  font-style: normal;
}

.visually-hidden {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: #2e2f42;

  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  overflow: hidden;
}

.container {
  max-width: 1950px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

/* -----header----- */
.header {
  max-width: 1490px;
  margin: 0 auto;
  padding-top: 50px;
}

.header_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 215px;
  padding-right: 215px;
}

.header_logo {
  font-weight: 900;
  font-size: 40px;
  text-align: center;
  color: #ff7852;
}

.header_logo:hover {
  text-shadow: 1px 0 10px rgba(255, 124, 84, 0.3);
}

.header_logo .header_logo_span {
  color: #8fc638;
}

.header_nav {
  padding: 0 15px;
}

.heder_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 55px;
  justify-content: center;
}

.header_item_link {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  padding: 12px 0;
}

.header_item_link::after {
  content: '';
  width: 0px;
  height: 2px;
  display: block;
  transition: 300ms;
  background-color: #242851;
}

.header_item_link:hover::after {
  width: 100%;
}

.header_tel {
  font-size: 20px;
  color: #fff;
  border-radius: 30px;
  box-shadow: 0 10px 25px 0 rgba(255, 124, 84, 0.3);
  background: linear-gradient(180deg, #ffa992 0%, #ff7852 100%);
  padding: 19px 35px 18px 35px;
  transition: box-shadow 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  flex-shrink: 0;
}

.header_tel:hover {
  box-shadow: 0 10px 25px 0 #ff7852
}

/* ----------------------overlay--------------------- */
.header_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(40, 10, 10, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  z-index: 200;
}

.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header_container_overlay {
  width: 250px;
  padding: 30px 30px 30px 30px;
  height: 80%;
  background: #fff;
  margin: 0 auto;
  top: 50%;
  right: 0;
  position: absolute;
  transform: translateY(-50%);
  border-radius: 20px 0 0 20px;
}

.header_overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.header_overlay_button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  padding: 10px;
}

.header_menu_close_btn {
  width: 100%;
  padding: 16px 50px 16px 50px;
  font-size: 20px;
  color: #fff;
  border-radius: 30px;
  border: none;
  box-shadow: 0 10px 25px 0 rgba(255, 124, 84, 0.3);
  background: linear-gradient(180deg, #ffa992 0%, #ff7852 100%);
  transition: box-shadow 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.overlay_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.overlay_link {
  padding: 10px 50px;
}

.overlay_link:hover,
.overlay_link:active {
  text-shadow: 2px 2px 3px #ff7852;
  color: #242851;
}

.js-open-menu svg,
.js-close-menu svg {
  width: 24px;
  height: 24px;
}

.header_overlay_button_box {
  display: none;
}

@media screen and (max-width:1440px) {
  .header_container {
    max-width: 1440px;
    padding-left: 125px;
    padding-right: 125px;
  }

  .heder_list {
    gap: 35px;
  }
}

@media screen and (max-width:1280px) {
  .header_container {
    max-width: 1280px;
    padding-left: 75px;
    padding-right: 75px;
  }

  .heder_list {
    gap: 20px;
  }
}

@media screen and (max-width:1024px) {
  .header_container {
    max-width: 1024px;
    display: flex;
    gap: 35px;
  }

  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
  }

  .header_overlay_button_box {
    display: block;
    order: 2;
  }

  .header_nav {
    display: none;
  }

  .header_tel {
    order: 1;
  }
}


@media screen and (max-width:600px) {
  .header_container {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .header_overlay_button_box {
    order: 1;
  }

  .header_tel {
    order: 2;
  }
}

@media screen and (max-width:425px) {
  .header_container {
    max-width: 425px;
    padding-left: 25px;
    padding-right: 25px;
  }
}

/* -----hero----- */
.hero_section {
  max-width: 1720px;
  padding-top: 205px;
  padding-bottom: 203px;
  margin: 0 auto;
  background-image: url(../images/hero/bg@1x.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.2);
}

@media (webkit-min-device-pixel-ratio:2),
(min-resolution:1920dpi),
(min-resolution:2dppx) {
  .hero_section {
    background-image: url(..//images/hero/bg@2x.png);
  }
}

.hero_container {
  padding-left: 100px;
  padding-right: 100px;
}

.hero_title {
  font-weight: 800;
  font-size: 100px;
  line-height: 120%;
  max-width: 630px;
  margin-bottom: 30px;
}

.hero_text {
  font-size: 22px;
  line-height: 155%;
  color: #707283;
  max-width: 630px;
  margin-bottom: 60px;
}

.hero_bink_box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hero_link_pink {
  padding: 16px 35px 17px 35px;
  font-size: 20px;
  color: #fff;
  border-radius: 30px;
  box-shadow: 0 10px 25px 0 rgba(255, 124, 84, 0.3);
  background: linear-gradient(180deg, #ffa992 0%, #ff7852 100%);
  transition: box-shadow 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

.hero_link_pink:hover {
  box-shadow: 0 10px 25px 0 #ff7852
}

.hero_link_green {
  padding: 16px 35px 17px 35px;
  font-size: 20px;
  color: #fff;
  border-radius: 30px;
  box-shadow: 0 10px 25px 0 rgba(125, 181, 35, 0.3);
  background: linear-gradient(180deg, #c3e48f 0%, #8ec637 100%);
  transition: box-shadow 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

.hero_link_green:hover {
  box-shadow: 0 10px 25px 0 #8ec637;
}

@media screen and (max-width:1024px) {
  .hero_container {
    max-width: 1024px;
    padding-left: 70px;
    padding-right: 70px;
  }

  .hero_title {
    font-size: 70px;
  }
}

@media screen and (max-width:768px) {
  .hero_section {
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../images/hero/bg@1x.png);
  }

  @media (webkit-min-device-pixel-ratio:2),
  (min-resolution:1920dpi),
  (min-resolution:2dppx) {
    .hero_section {
      background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(..//images/hero/bg@2x.png);
    }
  }

  .hero_container {
    max-width: 768px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero_title {
    font-size: 50px;
    max-width: 600px;
  }
}

@media screen and (max-width:425px) {
  .hero_container {
    max-width: 425px;
    padding-left: 25px;
    padding-right: 25px;
  }
}

/* ------services----- */
.services_section {
  max-width: 1920px;
  padding-left: 215px;
  padding-right: 215px;
  margin: 0 auto;
}

.services_container {
  max-width: 1490px;
  padding: 100px;
  border-radius: 50px;
  background: #ffece4;
}

.services_subtitle {
  font-weight: 800;
  font-size: 20px;
  text-align: center;
  color: #ff7751;
  margin-bottom: 10px;
}

.title_two {
  font-size: 64px;
}

.services_title {
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
}

.services_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 41px;
}

.services_item {
  flex-basis: calc((100% - 41px * 3) / 4);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 30px;
  background: #fff;
  padding: 50px 40px;
  max-width: 292px;
  transition: all 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

.services_item_img_box {
  margin-bottom: 35px;
  border-radius: 100%;
}

.services_item_img_grooming {
  width: 40px;
  height: 40px;
  fill: rgba(255, 255, 255, 0.9);
  transition: fill 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

.services_item_img_veterinary {
  width: 40px;
  height: 40px;
  fill: rgba(255, 255, 255, 0.9);
  transition: fill 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

.services_item_img_setting {
  width: 40px;
  height: 40px;
  fill: rgba(255, 255, 255, 0.9);
  transition: fill 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

.services_item_img_healthy {
  width: 40px;
  height: 40px;
  fill: rgba(255, 255, 255, 0.9);
  transition: fill 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

.services_item_caption {
  font-weight: 800;
  font-size: 26px;
  text-align: center;
  margin-bottom: 20px;
  transition: color 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

.services_item_text {
  font-size: 18px;
  line-height: 156%;
  text-align: center;
  color: #707283;
  max-width: 212px;
  transition: color 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

.services_img_grooming {
  background: linear-gradient(180deg, #b8deff 0%, #1d97ff 100%);
  box-shadow: 0 12px 25px 0 rgba(72, 171, 255, 0.25);
  padding: 30px;
  transition: all 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

.services_img_veterinary {
  box-shadow: 0 15px 40px 0 rgba(255, 122, 85, 0.3);
  background: linear-gradient(180deg, #ffbba9 0%, #ff6236 100%);
  padding: 30px;
  transition: all 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

.services_img_setting {
  border-radius: 100%;
  background: linear-gradient(180deg, #ffe4aa 0%, #ff9c07 100%);
  box-shadow: 0 12px 25px 0 rgba(250, 168, 45, 0.3);
  padding: 30px 30px;
  transition: all 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

.services_img_healthy {
  border-radius: 100%;
  background: linear-gradient(180deg, #afe6eb 0%, #36becb 100%);
  box-shadow: 0 12px 25px 0 rgba(17, 199, 217, 0.3);
  padding: 30px;
  transition: all 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

.services_item_grooming:hover {
  background: linear-gradient(180deg, #b8deff 0%, #1d97ff 100%);
  box-shadow: 0 15px 40px 0 rgba(255, 122, 85, 0.3);
}

.services_item_grooming:hover .services_img_grooming {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.services_item_grooming:hover .services_item_img_grooming {
  fill: #1d97ff;
}

.services_item_grooming:hover .services_item_caption,
.services_item_grooming:hover .services_item_text {
  color: #fff;
}

.services_item_veterinary:hover {
  background: linear-gradient(180deg, #ffbba9 0%, #ff6236 100%);
  box-shadow: 0 15px 40px 0 rgba(255, 122, 85, 0.3);
}

.services_item_veterinary:hover .services_img_veterinary {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.services_item_veterinary:hover .services_item_img_veterinary {
  fill: #ff6236;
}

.services_item_veterinary:hover .services_item_caption,
.services_item_veterinary:hover .services_item_text {
  color: #fff;
}


.services_item_setting:hover {
  background: linear-gradient(180deg, #ffe4aa 0%, #ff9c07 100%);
  box-shadow: 0 12px 25px 0 rgba(250, 168, 45, 0.3);
}

.services_item_setting:hover .services_img_setting {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.services_item_setting:hover .services_item_img_setting {
  fill: #ff9c07;
}

.services_item_setting:hover .services_item_caption,
.services_item_setting:hover .services_item_text {
  color: #fff;
}

.services_item_healthy:hover {
  background: linear-gradient(180deg, #afe6eb 0%, #36becb 100%);
  box-shadow: 0 12px 25px 0 rgba(17, 199, 217, 0.3);
}

.services_item_healthy:hover .services_img_healthy {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.services_item_healthy:hover .services_item_img_healthy {
  fill: #36becb;
}

.services_item_healthy:hover .services_item_caption,
.services_item_healthy:hover .services_item_text {
  color: #fff;
}

@media screen and (max-width:1680px) {
  .services_section {
    padding-left: 105px;
    padding-right: 105px;
  }

  .services_container {
    max-width: 1680px;
    padding: 70px;
  }
}

@media screen and (max-width:1400px) {
  .services_container {
    max-width: 1400px;
  }

  .services_list {
    gap: 30px;
  }

  .services_item {
    flex-basis: calc((100% - 30px* 2) / 2);
  }
}

@media screen and (max-width:1024px) {
  .services_container {
    max-width: 1024px;
    padding: 50px;
  }

  .services_item {
    flex-basis: calc((100% - 30px) / 1);
  }

  .title_two {
    font-size: 56px;
  }
}

@media screen and (max-width:768px) {
  .services_section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services_container {
    max-width: 768px;
    padding: 30px 10px;
  }

  .title_two {
    font-size: 44px;
  }
}

/* -----about----- */
.about_section {
  max-width: 1640px;
  padding-top: 130px;
  padding-bottom: 75px;
  margin: 0 auto;
  background-image: url(../images/about/iamge@1x.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

@media (webkit-min-device-pixel-ratio:2),
(min-resolution:1920dpi),
(min-resolution:2dppx) {
  .about_section {
    background-image: url(..//images/about/iamge@2x.png);
  }
}

.about_container {
  padding-left: 120px;
  padding-right: 196px;
}

.about_subtitle {
  font-weight: 800;
  font-size: 20px;
  color: #ff7751;
  padding-top: 75px;
  margin-bottom: 10px;
}

.about_title {
  font-weight: 800;
  margin-bottom: 30px;
  max-width: 638px;
}

.about_text {
  font-size: 18px;
  line-height: 167%;
  color: #707283;
  max-width: 638px;
  margin-bottom: 25px;
}

.about_list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 46px;
}

.about_item {
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.about_svg {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.about_use {
  fill: #ff7751;
}

.about_link {
  display: inline-block;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  border-radius: 30px;
  box-shadow: 0 10px 25px 0 rgba(255, 124, 84, 0.3);
  background: linear-gradient(180deg, #ffa992 0%, #ff7852 100%);
  padding: 16px 34px 17px 34px;
  transition: box-shadow 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

.about_link:hover {
  box-shadow: 0 10px 25px 0 #ff7852;
}

@media screen and (max-width:1024px) {
  .about_container {
    max-width: 1024px;
    padding-left: 70px;
    padding-right: 70px;
  }

  .about_text {
    max-width: 498px;
  }
}

@media screen and (max-width:768px) {
  .about_section {
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../images/about/iamge@1x.png);
  }

  @media (webkit-min-device-pixel-ratio:2),
  (min-resolution:1920dpi),
  (min-resolution:2dppx) {
    .about_section {
      background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(..//images/about/iamge@2x.png);
    }
  }

  .about_container {
    max-width: 768px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width:425px) {
  .about_container {
    max-width: 425px;
    padding-left: 25px;
    padding-right: 25px;
  }
}

/* -----ourteam----- */
.team_section {
  max-width: 1920px;
  margin: 0 auto;
  padding: 75px 215px;
}

.team_container {
  max-width: 1490px;
  padding: 100px;
  border-radius: 50px;
  background: #ffece4;
}

.team_subtitle {
  font-weight: 800;
  font-size: 20px;
  text-align: center;
  color: #ff7751;
  margin-bottom: 10px;
}

.team_title {
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
}

.team_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 41px;
}

.team_item {
  flex-basis: calc((100% - 41px * 3) / 4);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 146px;
  max-width: 292px;
  background: #fff;
}

.team_item_img_box {
  padding: 50px 50px 30px 50px;
}

.team_item-text-box {
  padding: 0 50px 70px 50px;
}

.team_item_caption {
  font-weight: 800;
  font-size: 24px;
  text-align: center;
  margin-bottom: 7px;
}

.team_item_text {
  font-size: 18px;
  text-align: center;
  color: #ff7751;
}

@media screen and (max-width:1680px) {
  .team_section {
    padding-left: 105px;
    padding-right: 105px;
  }

  .team_container {
    max-width: 1680px;
    padding: 70px;
  }
}

@media screen and (max-width:1400px) {
  .team_container {
    max-width: 1400px;
  }

  .team_list {
    gap: 30px;
  }

  .team_item_img_box {
    padding: 30px 30px 20px 30px;
  }

  .team_item {
    flex-basis: calc((100% - 30px* 2) / 2);
  }
}

@media screen and (max-width:1024px) {
  .team_container {
    max-width: 1024px;
    padding: 50px;
  }

  .team_item {
    flex-basis: calc((100% - 30px) / 1);
  }
}

@media screen and (max-width:768px) {
  .team_section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .team_container {
    max-width: 768px;
    padding: 30px;
  }
}

/* -----pricing----- */
.pricing_section {
  padding-top: 75px;
  padding-bottom: 75px;
  padding-left: 100px;
  padding-right: 100px;
}

.pricing_container {
  max-width: 1290px;
  position: relative;
  padding-left: 100px;
  padding-right: 100px;
  background-image: url(../images/pricing/element-1.png), url(../images/pricing/element-2.png);
  background-repeat: no-repeat, no-repeat;
  background-position: bottom left, top right;
}

.pricing_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 60px;
  gap: 16px;
}

.pricing_item {
  flex-basis: calc((100% - 16px * 2) / 3);
  max-width: 470px;
  border-radius: 20px;
  box-shadow: 0 15px 40px 0 rgba(217, 200, 193, 0.3);
  background: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  transition: all 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

.pricing_item:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px 0 rgba(255, 103, 61, 0.3);
}

.pricing_subtitle {
  font-family: "Nunito", serif;
  font-weight: 800;
  font-size: 28px;
  text-align: center;
  margin-bottom: 5px;
}

.pricing_subtitle_days {
  font-family: "Nunito", serif;
  font-weight: 800;
  font-size: 50px;
  text-align: center;
  margin-bottom: 50px;
}

.pricing_price_span {
  font-family: "Nunito", serif;
  font-size: 20px;
}

.pricing_desc_box {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 59px;
}

.pricing_desc {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #707283;
}

.pricing_price {
  font-family: "Nunito", serif;
  font-weight: 800;
  font-size: 50px;
  text-align: center;
  color: #ff7751;
}

.pricing-button {
  font-size: 20px;
  text-align: center;
  color: #fff;
  padding: 16px 40px 17px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  box-shadow: 0 10px 25px 0 rgba(255, 124, 84, 0.3);
  background: linear-gradient(180deg, #ffa991 0%, #ff7852 100%);
  margin: 0 auto;
  border: none;
  transition: box-shadow 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

.pricing-button:hover {
  box-shadow: 0 10px 25px 0 #ff7852;
}

@media screen and (max-width:1600px) {
  .pricing_container {
    max-width: 1600px;
  }
}

@media screen and (max-width:1440px) {
  .pricing_section {
    padding-left: 80px;
    padding-right: 80px;
  }

  .pricing_container {
    max-width: 1440px;
    padding-left: 90px;
    padding-right: 90px;
  }
}

@media screen and (max-width:1280px) {
  .pricing_section {
    padding-left: 60px;
    padding-right: 60px;
  }

  .pricing_container {
    max-width: 1280px;
    padding-left: 80px;
    padding-right: 80px;
  }

  .pricing_item {
    flex-basis: calc((100% - 16px * 1) / 2);
  }
}

@media screen and (max-width:1024px) {
  .pricing_section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .pricing_container {
    max-width: 1024px;
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media screen and (max-width:768px) {
  .pricing_section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing_container {
    max-width: 768px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .pricing_item {
    flex-basis: calc((100% - 16px) / 1);
  }
}

@media screen and (max-width:425px) {
  .pricing_container {
    max-width: 425px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* -----calltoaction----- */
.calltoaction_section {
  padding: 75px 215px;
}

.calltoaction_container {
  border-radius: 50px;
  max-width: 1490px;
  background-color: #ffece4;
  background-image: url(../images/calltoaction/call_to-action_1x.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  padding: 102px 100px;
}

@media (webkit-min-device-pixel-ratio:2),
(min-resolution:1920dpi),
(min-resolution:2dppx) {
  .calltoaction_container {
    background-image: url(..//images/calltoaction/call_to_action_2x.png);
  }
}

.calltoaction_text-box {
  max-width: 654px;
  margin-bottom: 50px;
}

.calltoaction_title {
  font-family: "Nunito", serif;
  font-weight: 800;
  margin-bottom: 30px;
}

.calltoaction_text {
  font-size: 18px;
  line-height: 167%;
  color: #707283;
}

.calltoaction_button {
  font-size: 20px;
  color: #fff;
  padding: 16px 35px 17px 35px;
  border-radius: 30px;
  box-shadow: 0 10px 25px 0 rgba(255, 124, 84, 0.3);
  background: linear-gradient(180deg, #ffa992 0%, #ff7852 100%);
  border: none;
  transition: box-shadow 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

.calltoaction_button:hover {
  box-shadow: 0 10px 25px 0 #ff7852;
}

@media screen and (max-width:1680px) {
  .calltoaction_section {
    padding-left: 105px;
    padding-right: 105px;
  }

  .calltoaction_container {
    max-width: 1680px;
    padding: 70px;
  }
}

@media screen and (max-width:1400px) {
  .calltoaction_container {
    max-width: 1400px;
  }

  .calltoaction_text-box {
    max-width: 454px;
  }
}

@media screen and (max-width:1280px) {
  .calltoaction_section {
    padding-left: 85px;
    padding-right: 85px;
  }

  .calltoaction_text-box {
    max-width: 355px;
  }
}

@media screen and (max-width:1024px) {
  .calltoaction_section {
    padding-left: 45px;
    padding-right: 45px;
  }

  .calltoaction_container {
    max-width: 1024px;
    padding: 50px;
  }

}

@media screen and (max-width:768px) {
  .calltoaction_section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .calltoaction_container {
    max-width: 768px;
    padding: 30px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../images/calltoaction/call_to-action_1x.png);
  }

  @media (webkit-min-device-pixel-ratio:2),
  (min-resolution:1920dpi),
  (min-resolution:2dppx) {
    .calltoaction_container {
      background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(..//images/calltoaction/call_to_action_2x.png);
    }
  }
}

/* -----calltoactionModal----- */
.calltoaction_modal {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(40, 10, 10, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

.calltoaction_modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.calltoaction_modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  background-color: #fff;
  padding: 60px 20px 20px;
  box-shadow: rgba(217, 200, 193, 0.3) 0px 0px 15px 10px;
  border-radius: 20px;
  transition: transform 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95)
}


.calltoaction_modal_close {
  background: linear-gradient(180deg, #ffa992 0%, #ff7852 100%);
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calltoaction_icon {
  fill: #fff;
}

.calltoaction_modal_subtitle {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #707283;
}

.calltoaction_form_group {
  margin-bottom: 12px;
}

.calltoaction_modal_label {
  font-size: 12px;
  line-height: 1.17;
  letter-spacing: 0.04em;
  color: #8e8f99;
  display: block;
  margin-bottom: 4px;
}

.calltoaction_modal_input {
  width: 100%;
  border: 1px solid rgba(46, 47, 66, 0.4);
  border-radius: 10px;
  background-color: transparent;
  padding: 12px 15px;
  outline: transparent;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1)
}

.calltoaction_modal_option {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 16px;
  color: #707283;
}

.calltoaction_modal_select {
  width: 100%;
  border: 1px solid rgba(46, 47, 66, 0.4);
  border-radius: 10px;
  background-color: transparent;
  padding: 12px 15px;
  outline: transparent;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 700;
  font-size: 16px;
  color: #707283;
}

.calltoaction_modal_textarea {
  width: 100%;
  height: 100%;
  line-height: 1.17;
  letter-spacing: 0.04em;
  border: 1px solid rgba(46, 47, 66, 0.4);
  border-radius: 10px;
  background-color: transparent;
  padding: 12px 15px;
  outline: none;
  resize: none;
}

.calltoaction_modal_input:focus,
.calltoaction_modal_textarea:focus {
  border-color: #8ec637
}

@media screen and (max-width:768px) {
  .calltoaction_modal_content {
    width: 80%;
  }
}

/* -----footer----- */
.footer_section {
  padding-top: 75px;
}

.footer_container {
  max-width: 1317px;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  gap: 130px;
  align-items: center;
  background-image: url(../images/pricing/element-1.png);
  background-repeat: no-repeat;
  background-position: bottom 10% right;
}

.footer_content_list {
  display: flex;
  gap: 100px;
  justify-content: space-evenly;
  justify-items: center;
}

.footer_content_item {
  display: flex;
  flex-direction: column;
}

.footer_content_meta {
  max-width: 410px;
}

.footer_content_address {
  max-width: 210px;
}

.footer_content_links {
  max-width: 117px;
}

.footer_content_opening {
  max-width: 244px;
}

.footer_content_title {
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 25px;
}

.footer_content_title_span {
  color: #ff7852;
}

.footer_content_subscribe {
  position: relative;
  font-family: "Nunito", serif;
  font-weight: 800;
  font-size: 28px;
  max-width: 394px;
}

.footer_content_input {
  width: 100%;
  border-radius: 30px;
  border: none;
  box-shadow: 0 12px 35px 0 rgba(210, 197, 192, 0.25);
  background: #fff;
  font-family: "Quicksand", serif;
  font-weight: 400;
  font-size: 18px;
  color: #707283;
  padding: 18px 160px 19px 30px;
  outline: transparent;
}

.footer_content_input::placeholder {
  font-family: "Quicksand", serif;
  font-weight: 400;
  font-size: 18px;
  color: #707283;
}

.footer_content_button {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #fff;
  padding: 14px 30px 15px 30px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 10px 25px 0 rgba(255, 124, 84, 0.3);
  background: linear-gradient(180deg, #ffa992 0%, #ff7852 100%);
  transition: box-shadow 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

.footer_content_button:hover {
  box-shadow: 0 10px 25px 0 #ff7852;
}

.footer_content_desc {
  font-size: 18px;
  line-height: 167%;
  color: #707283;
  margin-bottom: 30px;
}

.footer_content_text {
  font-size: 18px;
  color: #707283;
}

.footer_content_subtitle {
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 25px;
}

.footer_content_address_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer_content_links_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer_content_opening_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer_content_link {
  font-family: "Quicksand", serif;
  font-weight: 400;
  font-size: 18px;
  color: #707283;
  transition: color 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95), text-shadow 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.footer_content_link:hover {
  text-shadow: 2px 2px 3px #ff7852;
  color: #242851;
}

.footer_copyright_text {
  font-size: 18px;
  text-align: center;
  color: #707283;
}

@media screen and (max-width:1600px) {
  .footer_container {
    max-width: 1287px;
    gap: 110px;
  }

  .footer_content_list {
    gap: 80px;
  }
}

@media screen and (max-width:1440px) {
  .footer_container {
    gap: 130px;
  }

  .footer_content_meta {
    max-width: 380px;
  }
}

@media screen and (max-width:1280px) {
  .footer_content_address {
    max-width: 160px;
  }

  .footer_content_list {
    flex-wrap: wrap;
  }
}

@media screen and (max-width:768px) {
  .footer_container {
    gap: 60px;
  }
}