@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: inherit;
}

a[class] {
  text-decoration: none;
}

ul {
  list-style: none;
}

fieldset {
  border: none;
}

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

[fill]:not([fill=none], [fill^=url]) {
  fill: currentColor;
}

[stroke]:not([stroke=none], [stroke^=url]) {
  stroke: currentColor;
}

svg * {
  transition-property: fill, stroke;
}

button, input, select, textarea, address {
  font: inherit;
}

h1, h2, h3, h4, h5, h6, p,
ul, ol, dl, dd,
blockquote, figure, fieldset,
body {
  margin: 0;
}

ul, ol, fieldset {
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-dark);
  background-color: hsl(230, 100%, 98.5%);
}

a, button, input, textarea, label, svg * {
  transition-duration: var(--transition-duration);
}

h1 {
  font-size: clamp(43px, 2.2586605081px + 5.311778291vw, 66px);
  line-height: 1.18;
  font-weight: 500;
}

h2 {
  font-size: clamp(23px, -0.0277136259px + 3.0023094688vw, 36px);
  line-height: 1.4;
  font-weight: 500;
}

h3 {
  font-size: clamp(18px, 14.4572748268px + 0.4618937644vw, 20px);
  line-height: 1.18;
  font-weight: 400;
}

p {
  font-size: clamp(16px, 8.9145496536px + 0.9237875289vw, 20px);
}

:root {
  --color-dark: #363853;
  --color-light: #FFFFFF;
  --color-accent: #FF7A50;
  /* 
  You can also do "--clr-accent-400" - Kevin Powell https://youtu.be/h3bTwCqX4ns?list=PL4-IK0AVhVjNDRHoXGort7sDWcna8cGPA&t=1617
  - accent - orange
  - neutral - white (100) / black (900)
  */
  --container-width: 1200px;
  --container-padding-x: 15px;
  --section-padding-y: 62px;
  --transition-duration: .2s;
}

/* 
Not in variables:
#37383D - footer
#646464 - copyright
#7B7B7B - left arrow (reviews)
#969696 - footer <hr>
#AAAAAA - text "Food lover"
#DDDDDD - quote (reviews)
#D1D2DC - left arrow (category)
#EEEEEF - socials bg
+ some elements have an 'opacity' option
*/
.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  padding-inline: var(--container-padding-x);
  margin-inline: auto;
}

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

@keyframes move {
  from {
    translate: var(--_starting-translate);
    opacity: 0;
  }
}
.move {
  --_starting-translate: 0px 0px;
  --_boundary: 25vh;
}
@media (prefers-reduced-motion: no-preference) {
  .move {
    animation: move ease-in-out both;
    animation-timeline: view();
    animation-range: entry 0 entry var(--_boundary);
  }
}
.move--all {
  animation: none;
}
@media (prefers-reduced-motion: no-preference) {
  .move--all > * {
    animation: move ease-in-out both;
    animation-timeline: view();
    animation-range: entry 0 entry var(--_boundary);
  }
}
.move--from-right {
  --_starting-translate: 75px 0;
}
.move--from-left {
  --_starting-translate: -75px 0;
}
.move--from-bottom {
  --_starting-translate: 0 100px;
}
.move--boundary-full {
  --_boundary: 100%;
}
@media (prefers-reduced-motion: no-preference) {
  .move--without-scroll {
    animation: move 2s ease-in-out both;
  }
}

.burger-button {
  width: 48px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-dark);
  border-radius: 5px;
  transition: background var(--transition-duration);
}
@media (hover: hover) {
  .burger-button:hover {
    background-color: rgb(from var(--color-accent) r g b/0.5);
  }
  .burger-button:focus-visible {
    background-color: rgb(from var(--color-accent) r g b/0.5);
  }
}
@media (hover: none) {
  .burger-button:active {
    background-color: rgb(from var(--color-accent) r g b/0.5);
  }
}
.burger-button:focus-within {
  outline: 5px auto -webkit-focus-ring-color;
}
.burger-button__visuals, .burger-button__visuals::before, .burger-button__visuals::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 30px;
  background-color: currentColor;
  transition-duration: var(--transition-duration);
}
.burger-button__visuals {
  position: relative;
  width: 50%;
}
input:checked + .burger-button__visuals {
  background: none;
}
.burger-button__visuals::before {
  transform: translateY(-8px);
}
input:checked + .burger-button__visuals::before {
  transform: rotate(45deg);
}
.burger-button__visuals::after {
  transform: translateY(8px);
}
input:checked + .burger-button__visuals::after {
  transform: rotate(-45deg);
}
.burger-button:has(input:checked) {
  scale: -1 1;
}
.burger-button input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  -webkit-clip-path: inset(100%) !important;
          clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

.header {
  padding-block: clamp(10px, -7.7136258661px + 2.3094688222vw, 20px);
  font-size: clamp(16px, 12.4572748268px + 0.4618937644vw, 18px);
  position: fixed;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  z-index: 2;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: clamp(15px, -64.7113163972px + 10.3926096998vw, 60px);
       column-gap: clamp(15px, -64.7113163972px + 10.3926096998vw, 60px);
}
.header__menu {
  margin-left: auto;
}
@media (max-width: 767px) {
  .header__menu {
    position: absolute;
    inset: 30px 0 auto;
    width: 50%;
    min-width: 300px;
    padding: 20px;
    margin-inline: auto;
    border-radius: 30px;
    background: var(--color-light);
    box-shadow: 0 5px 3px rgba(0, 0, 0, 0.2);
  }
}
.header__menu-list {
  display: flex;
  align-items: center;
  -moz-column-gap: clamp(0px, -63.7690531178px + 8.3140877598vw, 36px);
       column-gap: clamp(0px, -63.7690531178px + 8.3140877598vw, 36px);
}
@media (max-width: 767px) {
  .header__menu-list {
    flex-direction: column;
    row-gap: 10px;
  }
}
.header__menu-link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding-inline: 14px;
  position: relative;
}
@media (hover: hover) {
  .header__menu-link:hover {
    color: var(--color-accent);
  }
  .header__menu-link:hover::after {
    scale: 1 1;
  }
  .header__menu-link:focus-visible {
    color: var(--color-accent);
  }
  .header__menu-link:focus-visible::after {
    scale: 1 1;
  }
}
@media (hover: none) {
  .header__menu-link:active {
    color: var(--color-accent);
  }
  .header__menu-link:active::after {
    scale: 1 1;
  }
}
.header__menu-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  scale: 0 1;
  transition: scale var(--transition-duration);
}
.header__menu-link[data-count] {
  position: relative;
}
.header__menu-link[data-count]::before {
  display: flex;
  justify-content: center;
  align-items: center;
  content: attr(data-count);
  min-width: 18px;
  padding: 2px;
  position: absolute;
  top: 0;
  right: 0;
  font-family: monospace;
  font-size: 14px;
  line-height: 1;
  border-radius: 30px;
  background-color: var(--color-accent);
  color: var(--color-light);
}
.header__menu-link > svg {
  max-width: clamp(18px, 12.6859122402px + 0.6928406467vw, 21px);
}
@media (min-width: 768px) {
  .header__button {
    margin-left: 20px;
  }
}
.header__burger-button {
  z-index: 1;
}
@media (min-width: 768px) {
  .header__burger-button {
    display: none;
  }
}
@media (max-width: 767px) {
  .header__menu {
    -webkit-clip-path: circle(0%);
            clip-path: circle(0%);
    transition-duration: var(--transition-duration);
  }
  .header__burger-button:has(input:checked) + .header__menu {
    -webkit-clip-path: circle(70%);
            clip-path: circle(70%);
  }
}

.button {
  padding: 15px 28px;
  line-height: 1.2;
  border: none;
  border-radius: 5px;
  color: var(--color-light);
  background-color: var(--color-accent);
  box-shadow: 0 20px 40px rgb(from var(--color-accent) r g b/0.2);
}
@media (hover: hover) {
  .button:hover {
    opacity: 0.6;
  }
  .button:focus-visible {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .button:active {
    opacity: 0.6;
  }
}
.button--round {
  padding: 17px 44px;
  border-radius: 99px 99px 0;
}

.section {
  display: grid;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  padding-block: 50px;
}
.section__body {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.section__body--left {
  max-width: 530px;
}
.section__body--right {
  max-width: 450px;
  justify-self: end;
}
.section__title {
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .section__title {
    text-align: center;
  }
}
.section__title--center {
  text-align: center;
}
.section__title span {
  color: var(--color-accent);
}
.section__buttons {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  font-size: clamp(16px, 8.9145496536px + 0.9237875289vw, 20px);
}
@media (max-width: 767px) {
  .section__buttons {
    justify-content: center;
  }
}
.section__button {
  align-self: start;
}
@media (max-width: 767px) {
  .section {
    max-width: 600px;
    grid-auto-flow: row;
    row-gap: 30px;
  }
  .section__body {
    display: contents;
  }
  .section__title {
    order: -2;
  }
  .section__image {
    order: -1;
  }
}

.tabs-card {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  align-items: center;
  height: 100%;
  padding: 0 17px 22px;
  font-size: 15px;
  text-align: center;
  border-radius: 12px;
  background-color: var(--color-light);
}
.tabs-card__image {
  margin-bottom: auto;
}
.tabs-card__rating {
  height: 16px;
  width: 115px;
  background-image: linear-gradient(to right, #FAC412 var(--_rating), rgba(250, 196, 18, 0.4) var(--_rating));
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='20' height='16' viewBox='0 0 20 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.1651 0.722328L13.2524 4.40761C13.4062 4.67461 13.6997 4.86002 14.0382 4.90123L18.7267 5.50116C19.0005 5.53494 19.249 5.66185 19.4168 5.85551C19.5828 6.0467 19.6541 6.28898 19.6138 6.52713C19.5809 6.72491 19.475 6.90786 19.3128 7.04795L15.9155 9.94129C15.667 10.1432 15.5544 10.4423 15.6145 10.7349L16.4509 14.8025C16.54 15.2937 16.1696 15.7568 15.6145 15.8499C15.3857 15.8821 15.1512 15.8483 14.9449 15.756L10.7628 13.8417C10.4524 13.704 10.0858 13.704 9.7754 13.8417L5.59325 15.756C5.07939 15.9958 4.44269 15.8326 4.15669 15.3876C4.05073 15.2104 4.01322 15.0085 4.04792 14.8116L4.88435 10.7431C4.94436 10.4514 4.8309 10.1506 4.58334 9.94871L1.18605 7.05702C0.781903 6.7142 0.769713 6.14971 1.15886 5.79453C1.1673 5.78711 1.17668 5.77887 1.18605 5.77063C1.34734 5.62642 1.55926 5.53494 1.78806 5.51105L6.47656 4.91029C6.81413 4.86826 7.10764 4.6845 7.26236 4.41585L9.27466 0.722328C9.45376 0.405882 9.82509 0.208927 10.2283 0.217168H10.354C10.7037 0.254251 11.0085 0.444613 11.1651 0.722328' fill='%23FAC412'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg width='20' height='16' viewBox='0 0 20 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.1651 0.722328L13.2524 4.40761C13.4062 4.67461 13.6997 4.86002 14.0382 4.90123L18.7267 5.50116C19.0005 5.53494 19.249 5.66185 19.4168 5.85551C19.5828 6.0467 19.6541 6.28898 19.6138 6.52713C19.5809 6.72491 19.475 6.90786 19.3128 7.04795L15.9155 9.94129C15.667 10.1432 15.5544 10.4423 15.6145 10.7349L16.4509 14.8025C16.54 15.2937 16.1696 15.7568 15.6145 15.8499C15.3857 15.8821 15.1512 15.8483 14.9449 15.756L10.7628 13.8417C10.4524 13.704 10.0858 13.704 9.7754 13.8417L5.59325 15.756C5.07939 15.9958 4.44269 15.8326 4.15669 15.3876C4.05073 15.2104 4.01322 15.0085 4.04792 14.8116L4.88435 10.7431C4.94436 10.4514 4.8309 10.1506 4.58334 9.94871L1.18605 7.05702C0.781903 6.7142 0.769713 6.14971 1.15886 5.79453C1.1673 5.78711 1.17668 5.77887 1.18605 5.77063C1.34734 5.62642 1.55926 5.53494 1.78806 5.51105L6.47656 4.91029C6.81413 4.86826 7.10764 4.6845 7.26236 4.41585L9.27466 0.722328C9.45376 0.405882 9.82509 0.208927 10.2283 0.217168H10.354C10.7037 0.254251 11.0085 0.444613 11.1651 0.722328' fill='%23FAC412'/%3E%3C/svg%3E%0A");
  -webkit-mask-repeat: space;
          mask-repeat: space;
}
.tabs-card__name {
  font-size: 15px;
}
.tabs-card__price {
  font-weight: 600;
}
.tabs-card__button {
  padding: 7px 13px;
}

.tabs {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.tabs__buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 15px;
  grid-auto-rows: 70px;
}
.tabs__buttons:has(:focus-visible) {
  outline: 1px auto -webkit-focus-ring-color;
}
.tabs__button {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  border-radius: 8px;
  background-color: var(--color-light);
}
.tabs__button input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  -webkit-clip-path: inset(100%) !important;
          clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}
.tabs__button svg {
  flex-shrink: 0;
}
.tabs__button:has(input:checked) {
  color: var(--color-light);
  background-color: var(--color-accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1333333333);
}
@media (hover: hover) {
  .tabs__button:not(:has(input:checked)):hover {
    opacity: 0.6;
  }
  .tabs__button:not(:has(input:checked)):focus-visible {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .tabs__button:not(:has(input:checked)):active {
    opacity: 0.6;
  }
}
.tabs__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 15px;
}
.tabs__pagination {
  display: flex;
  justify-content: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
.tabs__pagination-button {
  width: 34px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--color-accent);
  background-color: var(--color-light);
  border: 2px solid var(--color-accent);
}
@media (hover: hover) {
  .tabs__pagination-button:hover {
    color: var(--color-light);
    background-color: var(--color-accent);
  }
  .tabs__pagination-button:focus-visible {
    color: var(--color-light);
    background-color: var(--color-accent);
  }
}
@media (hover: none) {
  .tabs__pagination-button:active {
    color: var(--color-light);
    background-color: var(--color-accent);
  }
}
.tabs__pagination-button[disabled] {
  color: #D1D2DC;
  background-color: var(--color-light);
  border-color: #D1D2DC;
  cursor: not-allowed;
}
.tabs__pagination-button::before {
  content: "";
  width: 11px;
  aspect-ratio: 1;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  rotate: -45deg;
  translate: 2.5px 0;
}
.tabs__pagination-button--next::before {
  rotate: 135deg;
  translate: -2.5px 0;
}
.tabs__pagination-list {
  display: flex;
  justify-content: center;
}
.tabs__pagination-item {
  display: flex;
}
.tabs__pagination-indicator {
  width: 24px;
  aspect-ratio: 1;
  border: none;
  background: none;
}
@media (hover: hover) {
  .tabs__pagination-indicator:hover::before {
    background-color: var(--color-accent);
  }
  .tabs__pagination-indicator:focus-visible::before {
    background-color: var(--color-accent);
  }
}
@media (hover: none) {
  .tabs__pagination-indicator:active::before {
    background-color: var(--color-accent);
  }
}
.tabs__pagination-indicator::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #D1D2DC;
  transition-duration: var(--transition-duration);
}
.tabs__pagination-indicator.active::before {
  background-color: var(--color-accent);
}

.main {
  padding-top: clamp(60px, -10.8545034642px + 9.2378752887vw, 100px);
  overflow: clip;
}

.icon-list {
  display: flex;
  flex-direction: column;
  row-gap: clamp(15px, -2.7136258661px + 2.3094688222vw, 25px);
  font-size: clamp(18px, 7.3718244804px + 1.3856812933vw, 24px);
}
.icon-list__item {
  display: flex;
  align-items: center;
  -moz-column-gap: 26px;
       column-gap: 26px;
}
.icon-list__icon {
  width: 40px;
  aspect-ratio: 1;
}

.restaurant {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: clamp(30px, -48.7647058824px + 7.6470588235vw, 43px);
}
@media (width < 620px) {
  .restaurant {
    margin-inline: auto;
  }
}
.restaurant__item {
  border-radius: 53px 0 53px;
  overflow: hidden;
  background-color: var(--color-light);
}
.restaurant__image {
  width: 100%;
}
.restaurant__content {
  display: grid;
  grid: auto auto/auto auto;
  gap: 10px clamp(15px, -57.7058823529px + 7.0588235294vw, 27px);
  padding: 20px 30px 20px 20px;
}
.restaurant__title {
  font-size: 24px;
  font-weight: 400;
  grid-column: 1/-1;
}
.restaurant__time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 200px;
  font-size: clamp(15px, -3.1764705882px + 1.7647058824vw, 18px);
  font-weight: 300;
}
.restaurant__button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11px;
}

.reviews {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .reviews {
    flex-direction: column;
    row-gap: 25px;
  }
}
.reviews__image {
  border-radius: 24px;
  max-width: clamp(250px, -74.1593533487px + 42.2632794457vw, 433px);
}
.reviews__body {
  display: grid;
  grid-template-columns: 3fr 1fr;
  row-gap: clamp(25px, -63.5681293303px + 11.5473441109vw, 75px);
  max-width: clamp(400px, 134.2956120092px + 34.6420323326vw, 550px);
}
.reviews__content {
  grid-column: 1/-1;
  position: relative;
  line-height: 2.25;
  font-size: clamp(16px, 8.9145496536px + 0.9237875289vw, 20px);
  margin-right: 28px;
}
@media (max-width: 767px) {
  .reviews__content {
    margin-left: 28px;
  }
}
.reviews__content::before, .reviews__content::after {
  width: 28px;
  aspect-ratio: 1;
  content: "";
  display: block;
  position: absolute;
  background: url(../images/reviews/quote.svg) center/contain no-repeat;
}
.reviews__content::before {
  right: calc(100% + 20px);
  top: 0;
  scale: -1 1;
}
@media (max-width: 767px) {
  .reviews__content::before {
    right: calc(100% + 10px);
  }
}
.reviews__content::after {
  left: 100%;
  bottom: 0;
}
.reviews__info {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.reviews__name {
  color: var(--color-accent);
  font-style: normal;
}
.reviews__post {
  font-size: 14px;
  color: #AAAAAA;
}
.reviews__buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviews__button {
  width: 40px;
  aspect-ratio: 1;
  border: none;
  background: none;
}
@media (hover: hover) {
  .reviews__button:hover {
    opacity: 0.6;
  }
  .reviews__button:focus-visible {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .reviews__button:active {
    opacity: 0.6;
  }
}
.reviews__button[disabled] {
  color: #7B7B7B;
  cursor: not-allowed;
  opacity: 1;
}
.reviews__button--next {
  color: var(--color-accent);
  scale: -1 1;
}

.cta {
  padding-block: clamp(0px, -40.3846153846px + 9.6153846154vw, 75px);
}
.cta__inner {
  padding: clamp(35px, -9.2840646651px + 5.7736720554vw, 60px);
  border-radius: 20px;
  text-align: center;
  background: var(--color-accent) url(../images/cta/background.svg) center/contain no-repeat;
  color: var(--color-light);
}
.cta__title {
  font-size: clamp(30px, 12.2863741339px + 2.3094688222vw, 40px);
  margin-bottom: 12px;
}
.cta__text {
  font-size: clamp(14px, 10.4572748268px + 0.4618937644vw, 16px);
  margin-bottom: 30px;
}
.cta__form {
  position: relative;
  height: clamp(60px, 28.1154734411px + 4.1570438799vw, 78px);
  max-width: 838px;
  margin-inline: auto;
  font-size: clamp(16px, 8.9145496536px + 0.9237875289vw, 20px);
}
.cta__input {
  position: absolute;
  inset: 0;
  padding-inline: clamp(20px, -20.7413394919px + 5.311778291vw, 43px) clamp(138px, 54.7459584296px + 10.8545034642vw, 185px);
  border: none;
  border-radius: 999px;
  background-color: var(--color-light);
}
.cta__input::-moz-placeholder {
  color: #363853;
}
.cta__input::placeholder {
  color: #363853;
}
.cta__button {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  position: absolute;
  inset: 10px 10px 10px auto;
  z-index: 1;
  border: none;
  border-radius: 999px;
  padding-inline: clamp(10px, -14.7990762125px + 3.233256351vw, 24px);
  color: var(--color-light);
  background-color: var(--color-accent);
}
@media (hover: hover) {
  .cta__button:hover {
    opacity: 0.6;
  }
  .cta__button:focus-visible {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .cta__button:active {
    opacity: 0.6;
  }
}

.footer {
  padding-block: 75px;
}
.footer__body {
  display: grid;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(150, 150, 150, 0.3333333333);
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  .footer__body {
    grid-template-columns: 1fr 3fr;
  }
}
@media (max-width: 1023px) {
  .footer__body {
    grid-auto-flow: row;
    justify-items: center;
    row-gap: 50px;
  }
}
.footer__logo {
  display: block;
  margin-bottom: 30px;
}
.footer__address {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  align-items: start;
  margin-bottom: 15px;
  font-size: 16px;
}
.footer__address-link {
  display: flex;
  align-items: center;
  -moz-column-gap: 7px;
       column-gap: 7px;
}
@media (hover: hover) {
  .footer__address-link:hover {
    color: var(--color-accent);
  }
  .footer__address-link:focus-visible {
    color: var(--color-accent);
  }
}
@media (hover: none) {
  .footer__address-link:active {
    color: var(--color-accent);
  }
}
.footer__address-link svg {
  width: 20px;
  aspect-ratio: 1;
}
.footer__menu {
  width: 100%;
  font-size: 18px;
}
.footer__menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  gap: clamp(40px, 23.8461538462px + 3.8461538462vw, 70px) 30px;
}
.footer__menu-item {
  display: flex;
  flex-direction: column;
  row-gap: clamp(10px, 4.6153846154px + 1.2820512821vw, 20px);
  align-items: start;
}
@media (max-width: 767px) {
  .footer__menu-item {
    align-items: center;
    text-align: center;
  }
}
@media (hover: hover) {
  .footer__menu-link:hover {
    color: var(--color-accent);
  }
  .footer__menu-link:focus-visible {
    color: var(--color-accent);
  }
}
@media (hover: none) {
  .footer__menu-link:active {
    color: var(--color-accent);
  }
}
.footer__menu-title {
  font-weight: 500;
}
.footer__extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #646464;
}
.footer__copyright {
  font-size: 14px;
}
.footer__terms-list {
  display: flex;
  -moz-column-gap: clamp(10px, -12.0769230769px + 5.2564102564vw, 51px);
       column-gap: clamp(10px, -12.0769230769px + 5.2564102564vw, 51px);
}
.footer__terms-link {
  font-size: 14px;
}
@media (hover: hover) {
  .footer__terms-link:hover {
    color: var(--color-accent);
  }
  .footer__terms-link:focus-visible {
    color: var(--color-accent);
  }
}
@media (hover: none) {
  .footer__terms-link:active {
    color: var(--color-accent);
  }
}
.footer__contacts {
  --i: 1;
}
.footer__menu-item:nth-child(1) {
  --i: 2;
}
.footer__menu-item:nth-child(2) {
  --i: 3;
}
.footer__menu-item:nth-child(3) {
  --i: 4;
}
.footer__menu-item:nth-child(4) {
  --i: 5;
}
@media (prefers-reduced-motion: no-preference) {
  .footer__contacts, .footer__menu-item {
    animation: footer both;
    animation-timeline: view(calc(20px * var(--i)));
    animation-range: entry;
  }
}

@keyframes footer {
  from {
    opacity: 0;
    translate: 0 -75px;
  }
  to {
    opacity: 1;
    translate: 0;
  }
}
.socials {
  display: flex;
  -moz-column-gap: 13px;
       column-gap: 13px;
}
.socials__link {
  width: 40px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #EEEEEF;
  color: #363853;
}
@media (hover: hover) {
  .socials__link:hover {
    background-color: #363853;
    color: #EEEEEF;
  }
  .socials__link:focus-visible {
    background-color: #363853;
    color: #EEEEEF;
  }
}
@media (hover: none) {
  .socials__link:active {
    background-color: #363853;
    color: #EEEEEF;
  }
}/*# sourceMappingURL=style.css.map */