diff --git a/6/catalog.html b/6/catalog.html
new file mode 100644
index 0000000..caf4879
--- /dev/null
+++ b/6/catalog.html
@@ -0,0 +1,524 @@
+
+
+
+
+ Cat Energy
+
+
+
+
+
+
+
+
+
+
+
+ Каталог продукции
+
+
+
+
+
+
+
+
+
+
+
+ Приглашаем к сотрудничеству дилеров!
+
+
+
+ ул. Большая Конюшенная,д. 19/8
+
+
+ Санкт-Петербург
+
+
+
+
+
+
+
+
+
+
+
diff --git a/6/css/style.css b/6/css/style.css
new file mode 100644
index 0000000..1716127
--- /dev/null
+++ b/6/css/style.css
@@ -0,0 +1,2600 @@
+.main-header {
+ display: flex;
+ position: relative;
+ justify-content: space-between;
+}
+.main-header__toggle {
+ padding: 0;
+ border: none;
+ background-color: transparent;
+}
+.main-header__list {
+ display: none;
+}
+.main-header__menu-close {
+ display: none;
+}
+.main-header__menu {
+ position: absolute;
+ top: 63px;
+ z-index: 1;
+ width: 320px;
+ background: #FCFCFC;
+}
+.main-header__menu-content {
+ height: 100%;
+}
+.main-header__menu-list {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+ text-align: center;
+}
+.main-header__menu-item {
+ padding: 22px 75px 24px 75px;
+}
+.main-header__menu-link {
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 20px;
+ color: #000000;
+ text-decoration: none;
+ text-transform: uppercase;
+}
+@media (min-width: 768px) {
+ .main-header {
+ margin: 25px 30px 0 30px;
+ justify-content: space-between;
+ }
+ .main-header__navigation {
+ display: flex;
+ }
+ .main-header__toggle {
+ display: none;
+ }
+ .main-header__list {
+ margin: 0;
+ padding: 0;
+ list-style-type: none;
+ display: flex;
+ gap: 33px;
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 30px;
+ text-align: left;
+ text-transform: uppercase;
+ align-items: center;
+ }
+ .main-header__link {
+ color: #000000;
+ text-decoration: none;
+ }
+}
+@media (min-width: 1440px) {
+ .main-header {
+ margin: 55px 110px 0 110px;
+ justify-content: space-between;
+ }
+ .main-header__navigation {
+ display: flex;
+ }
+ .main-header__toggle {
+ display: none;
+ }
+ .main-header__list {
+ list-style-type: none;
+ display: flex;
+ gap: 33px;
+ color: #ffffff;
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 30px;
+ text-align: left;
+ text-transform: uppercase;
+ }
+ .main-header__link {
+ color: #ffffff;
+ text-decoration: none;
+ }
+}
+.site-header {
+ display: flex;
+ margin: 14px 20px;
+ justify-content: space-between;
+}
+.site-header__toggle {
+ padding: 0;
+ border: none;
+ background-color: transparent;
+}
+.site-header__list {
+ display: none;
+}
+@media (min-width: 768px) {
+ .site-header {
+ margin: 25px 30px 0 30px;
+ justify-content: space-between;
+ }
+ .site-header__navigation {
+ display: flex;
+ }
+ .site-header__toggle {
+ display: none;
+ }
+ .site-header__list {
+ margin: 0;
+ padding: 0;
+ list-style-type: none;
+ display: flex;
+ gap: 33px;
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 30px;
+ text-align: left;
+ text-transform: uppercase;
+ align-items: center;
+ }
+ .site-header__link {
+ color: #000000;
+ text-decoration: none;
+ }
+}
+@media (min-width: 1440px) {
+ .site-header {
+ display: flex;
+ margin: 55px 110px 63px 110px;
+ justify-content: space-between;
+ }
+ .site-header__navigation {
+ display: flex;
+ }
+ .site-header__toggle {
+ display: none;
+ }
+ .site-header__list {
+ display: flex;
+ gap: 33px;
+ color: #ffffff;
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 30px;
+ text-align: left;
+ text-transform: uppercase;
+ list-style-type: none;
+ }
+ .site-header__link {
+ color: #111111;
+ text-decoration: none;
+ }
+}
+/*index.html*/
+.program {
+ position: relative;
+}
+.program::before {
+ position: absolute;
+ content: "";
+ background-color: #68B738D9;
+ width: 320px;
+ height: 302px;
+ z-index: -1;
+}
+.program__wrapper {
+ display: flex;
+ flex-direction: column;
+}
+.program__header {
+ padding-top: 27px;
+ width: 249px;
+ margin-left: 36px;
+}
+.program__title {
+ font-family: Oswald;
+ font-size: 36px;
+ font-weight: 400;
+ line-height: 36px;
+ text-align: center;
+ margin: 0;
+ color: #FFFFFF;
+}
+.program__slogan {
+ font-family: Oswald;
+ font-size: 14px;
+ font-weight: 400;
+ line-height: 14px;
+ margin-top: 25px;
+ margin-bottom: 29px;
+ text-align: center;
+ text-transform: uppercase;
+ color: #FFFFFF;
+}
+.program__toggle {
+ padding: 10px 44px 10px 44px;
+ background-color: #68B738;
+ color: #ffffff;
+ text-decoration: none;
+ text-transform: uppercase;
+ margin-top: 23px;
+ width: 280px;
+ margin-left: 20px;
+ text-align: center;
+}
+@media (min-width: 768px) {
+ .program__wrapper {
+ margin: 0 30px;
+ }
+ .program::before {
+ display: none;
+ }
+ .program__header {
+ margin: 65px 0 50px 90px;
+ padding: 0;
+ width: 414px;
+ }
+ .program__title {
+ font-family: Oswald;
+ font-size: 60px;
+ font-weight: 400;
+ line-height: 60px;
+ text-align: left;
+ margin: 0;
+ color: #000000;
+ }
+ .program__slogan {
+ margin: 0;
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 20px;
+ text-align: left;
+ margin-top: 40px;
+ text-transform: uppercase;
+ color: #000000;
+ }
+ .program__image {
+ position: absolute;
+ right: 0;
+ top: 0;
+ z-index: -1;
+ }
+ .program__toggle {
+ width: 244px;
+ margin: 0;
+ padding: 14px 26px 14px 26px;
+ margin-left: 90px;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 26px;
+ }
+}
+@media (min-width: 1440px) {
+ .program {
+ min-height: 542px;
+ }
+ .program::before {
+ display: block;
+ width: 720px;
+ height: 694px;
+ right: 0;
+ top: -235px;
+ }
+ .program__wrapper {
+ margin: 0 110px 0 110px;
+ }
+ .program__header {
+ margin: 110px 0 0 80px;
+ width: 414px;
+ }
+ .program__title {
+ font-family: Oswald;
+ font-size: 60px;
+ font-weight: 400;
+ line-height: 60px;
+ text-align: left;
+ margin: 0;
+ color: #000000;
+ }
+ .program__slogan {
+ margin: 0;
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 20px;
+ text-align: left;
+ margin-top: 40px;
+ margin-bottom: 52px;
+ text-transform: uppercase;
+ color: #000000;
+ }
+ .program__image {
+ position: absolute;
+ right: 0;
+ top: 0;
+ }
+ .program__toggle {
+ width: 244px;
+ padding: 14px 26px 14px 26px;
+ margin-left: 80px;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 26px;
+ }
+}
+.food__wrapper {
+ display: flex;
+ margin: 20px;
+}
+.food__list {
+ list-style-type: none;
+ padding: 0;
+ margin: 0;
+}
+.food__item {
+ width: 280px;
+ min-height: 266px;
+ background-color: #F2F2F2;
+ margin: 0;
+ padding: 0;
+ margin-bottom: 20px;
+}
+.food__title {
+ display: flex;
+ align-items: center;
+ font-family: Oswald;
+ font-size: 24px;
+ font-weight: 400;
+ line-height: 37px;
+ text-transform: uppercase;
+ padding: 21px 0 22px 20px;
+ margin: 0;
+}
+.food__description {
+ margin: 0 33px 38px 20px;
+ font-family: Lato;
+ font-size: 14px;
+ font-weight: 400;
+ line-height: 18px;
+}
+.food__image-slimming {
+ margin-right: 20px;
+}
+.food__image-weight {
+ margin-right: 47px;
+}
+.food__catalog {
+ margin: 0 0 22px 20px;
+ font-family: Oswald;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 16px;
+ color: #000000;
+ text-decoration: none;
+ text-transform: uppercase;
+}
+.food__link {
+ margin-left: 15px;
+}
+@media (min-width: 768px) {
+ .food__wrapper {
+ margin: 0 30px 45px 30px;
+ }
+ .food__list {
+ display: flex;
+ flex-direction: column;
+ gap: 30px;
+ }
+ .food__item {
+ width: 708px;
+ min-height: 372px;
+ background-color: #F2F2F2;
+ margin-bottom: 0;
+ }
+ .food__title {
+ margin: 41px 0 39px 52px;
+ font-size: 36px;
+ line-height: 36px;
+ padding: 0;
+ }
+ .food__description {
+ margin: 0 61px 23px 52px;
+ font-size: 16px;
+ line-height: 24px;
+ }
+ .food__image-slimming {
+ margin-right: 62px;
+ }
+ .food__image-weight {
+ margin-right: 47px;
+ }
+ .food__catalog {
+ margin: 0 0 59px 52px;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 30px;
+ }
+ .food__link {
+ margin-left: 25px;
+ }
+}
+@media (min-width: 1440px) {
+ .food__wrapper {
+ margin: 0 110px 71px 110px;
+ }
+ .food__list {
+ display: flex;
+ flex-direction: row;
+ gap: 80px;
+ }
+ .food__item {
+ width: 570px;
+ min-height: 374px;
+ background-color: #F2F2F2;
+ margin-bottom: 0;
+ }
+ .food__title {
+ margin: 41px 0 39px 52px;
+ font-size: 36px;
+ line-height: 36px;
+ }
+ .food__description {
+ margin: 0 61px 23px 52px;
+ font-size: 16px;
+ line-height: 24px;
+ }
+ .food__image-slimming {
+ margin-right: 62px;
+ }
+ .food__image-weight {
+ margin-right: 47px;
+ }
+ .food__catalog {
+ margin: 0 0 59px 52px;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 30px;
+ }
+ .food__link {
+ margin-left: 25px;
+ }
+}
+.work__wrapper {
+ margin: 0 20px 49px 20px;
+}
+.work__title {
+ font-family: Oswald;
+ font-size: 36px;
+ font-weight: 400;
+ line-height: 40px;
+ margin: 0;
+ margin-bottom: 40px;
+}
+.work__list {
+ list-style-type: none;
+ padding: 0;
+ margin: 0;
+}
+.work__item {
+ display: flex;
+ width: 280px;
+ min-height: 60px;
+ margin-bottom: 20px;
+}
+.work__item:last-child {
+ margin-bottom: 0;
+}
+.work__image {
+ margin-right: 20px;
+}
+.work__description {
+ font-family: Lato;
+ font-size: 14px;
+ font-weight: 400;
+ line-height: 18px;
+ margin: 0;
+ padding: 0;
+}
+@media (min-width: 768px) {
+ .work__wrapper {
+ margin: 0 30px 92px 30px;
+ }
+ .work__title {
+ font-family: Oswald;
+ font-size: 60px;
+ font-weight: 400;
+ line-height: 60px;
+ margin: 0;
+ margin-bottom: 32px;
+ }
+ .work__list {
+ display: grid;
+ grid-template-columns: 346px 230px;
+ counter-reset: workCounter;
+ list-style-type: none;
+ padding: 0;
+ gap: 37px;
+ margin: 0;
+ }
+ .work__item {
+ flex-direction: column;
+ counter-increment: workCounter;
+ width: 230px;
+ min-height: 280px;
+ }
+ .work__item--sheet {
+ position: relative;
+ }
+ .work__item--powder {
+ position: relative;
+ }
+ .work__item--reception {
+ position: relative;
+ }
+ .work__item--time {
+ position: relative;
+ }
+ .work__item::before {
+ position: absolute;
+ content: counter(workCounter);
+ width: 134px;
+ height: 280px;
+ font-size: 280px;
+ font-weight: 400;
+ line-height: 280px;
+ text-align: center;
+ color: #F2F2F2;
+ z-index: -1;
+ left: 50%;
+ }
+ .work__image {
+ margin-top: 40px;
+ }
+ .work__description {
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 24px;
+ }
+}
+@media (min-width: 1440px) {
+ .work__wrapper {
+ margin: 0 110px 69px 110px;
+ }
+ .work__title {
+ font-family: Oswald;
+ font-size: 60px;
+ font-weight: 400;
+ line-height: 60px;
+ margin: 0;
+ margin-bottom: 32px;
+ }
+ .work__list {
+ display: flex;
+ counter-reset: workCounter;
+ list-style-type: none;
+ padding: 0;
+ gap: 94px;
+ margin: 0;
+ }
+ .work__item {
+ position: relative;
+ flex-direction: column;
+ counter-increment: workCounter;
+ width: 230px;
+ min-height: 280px;
+ }
+ .work__item--sheet {
+ position: relative;
+ }
+ .work__item--powder {
+ position: relative;
+ }
+ .work__item--reception {
+ position: relative;
+ }
+ .work__item--time {
+ position: relative;
+ }
+ .work__item::before {
+ position: absolute;
+ content: counter(workCounter);
+ width: 134px;
+ height: 280px;
+ font-size: 280px;
+ font-weight: 400;
+ line-height: 280px;
+ text-align: center;
+ color: #F2F2F2;
+ z-index: -1;
+ left: 50%;
+ }
+ .work__image {
+ margin-top: 40px;
+ }
+ .work__description {
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 24px;
+ }
+}
+.example {
+ position: relative;
+ background-color: #F2F2F2;
+}
+.example__title {
+ font-family: Oswald;
+ font-size: 36px;
+ font-weight: 400;
+ line-height: 40px;
+ margin: 0;
+ padding: 0;
+ padding: 25px 0 0 20px;
+}
+.example__wrapper {
+ background-color: #F2F2F2;
+}
+.example__sample {
+ margin: 40px 20px 0 20px;
+}
+.example__description {
+ margin: 0;
+ padding: 0;
+ width: 280px;
+ min-height: 108px;
+ font-family: Lato;
+ font-size: 14px;
+ font-weight: 400;
+ line-height: 18px;
+ margin-bottom: 20px;
+}
+.example__tables {
+ display: flex;
+ margin-bottom: 20px;
+}
+.example__result {
+ width: 124px;
+ min-height: 56px;
+ border: 1px solid #CDCDCD;
+}
+.example__value {
+ margin: 0;
+ padding: 0;
+ font-family: Oswald;
+ font-size: 24px;
+ font-weight: 400;
+ line-height: 24px;
+ text-align: center;
+ margin: 15px 0 18px 0;
+}
+.example__expenses {
+ font-family: Lato;
+ font-size: 12px;
+ font-weight: 400;
+ line-height: 12px;
+ text-align: center;
+ margin: 0;
+ padding: 0;
+}
+.example__costs {
+ display: flex;
+ justify-content: center;
+}
+.example__price {
+ font-family: Oswald;
+ font-size: 14px;
+ font-weight: 400;
+ line-height: 20px;
+ text-align: center;
+ text-transform: uppercase;
+}
+.example__food {
+ font-family: Oswald;
+ font-size: 14px;
+ font-weight: 400;
+ line-height: 20px;
+ text-transform: uppercase;
+}
+.example__slider {
+ position: relative;
+ display: flex;
+ width: 560px;
+}
+.example__after {
+ display: flex;
+ justify-content: flex-end;
+}
+.example__button {
+ position: relative;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 40px;
+ height: 40px;
+ padding: 11px 8px 11px 8px;
+ border-radius: 20px;
+ border: 2px solid #666666;
+ background: #FFFFFF;
+ top: 129px;
+ right: 50%;
+}
+.example__button::before {
+ position: absolute;
+ content: "";
+ width: 40px;
+ height: 40px;
+ padding: 11px 8px 11px 8px;
+ border-radius: 20px;
+ border: 2px solid #666666;
+ background: #FFFFFF;
+ z-index: 1;
+}
+.example__button::after {
+ position: absolute;
+ content: "";
+ width: 4px;
+ height: 256px;
+ border-radius: 2px;
+ background: #666666;
+ transform: translate(0px, -21px);
+}
+.example__button--vector {
+ z-index: 1;
+}
+@media (min-width: 768px) {
+ .example {
+ position: relative;
+ }
+ .example__title {
+ font-family: Oswald;
+ font-size: 60px;
+ font-weight: 400;
+ line-height: 60px;
+ margin-left: 30px;
+ padding: 0;
+ }
+ .example__wrapper {
+ display: flex;
+ flex-direction: column;
+ background-color: #F2F2F2;
+ margin: 0 30px;
+ }
+ .example__sample {
+ margin: 0;
+ margin-top: 60px;
+ }
+ .example__description {
+ margin: 0;
+ padding: 0;
+ width: 436px;
+ min-height: 96px;
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 24px;
+ margin-bottom: 55px;
+ }
+ .example__total {
+ display: flex;
+ gap: 167px;
+ align-items: center;
+ }
+ .example__tables {
+ display: flex;
+ margin-bottom: 23px;
+ }
+ .example__result {
+ width: 162px;
+ min-height: 72px;
+ gap: 0px;
+ border: 1px 0px 0px 0px;
+ opacity: 0px;
+ border: 1px solid #CDCDCD;
+ }
+ .example__value {
+ margin: 0;
+ padding: 0;
+ font-family: Oswald;
+ font-size: 30px;
+ font-weight: 400;
+ line-height: 37px;
+ text-align: center;
+ margin: 15px 0 11px 0;
+ }
+ .example__expenses {
+ font-family: Lato;
+ font-size: 14px;
+ font-weight: 400;
+ line-height: 14px;
+ text-align: center;
+ }
+ .example__costs {
+ display: block;
+ }
+ .example__price {
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 20px;
+ text-align: right;
+ text-transform: uppercase;
+ margin: 0;
+ padding: 0;
+ }
+ .example__food {
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 20px;
+ text-transform: uppercase;
+ margin: 0;
+ padding: 0;
+ }
+ .example__slider {
+ position: relative;
+ display: flex;
+ width: 560px;
+ }
+ .example__after {
+ display: flex;
+ justify-content: flex-end;
+ }
+ .example__button {
+ position: relative;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 40px;
+ height: 40px;
+ padding: 11px 8px 11px 8px;
+ border-radius: 20px;
+ border: 2px solid #666666;
+ background: #FFFFFF;
+ top: 257px;
+ right: 50%;
+ }
+ .example__button::before {
+ position: absolute;
+ content: "";
+ width: 40px;
+ height: 40px;
+ padding: 11px 8px 11px 8px;
+ border-radius: 20px;
+ border: 2px solid #666666;
+ background: #FFFFFF;
+ z-index: 1;
+ }
+ .example__button::after {
+ position: absolute;
+ content: "";
+ width: 4px;
+ height: 512px;
+ border-radius: 2px;
+ background: #666666;
+ transform: translate(0px, -21px);
+ }
+ .example__button--vector {
+ z-index: 1;
+ }
+}
+@media (min-width: 1440px) {
+ .example {
+ position: relative;
+ }
+ .example__title {
+ font-family: Oswald;
+ font-size: 60px;
+ font-weight: 400;
+ line-height: 60px;
+ margin: 0 0 76px 110px;
+ }
+ .example__wrapper {
+ display: flex;
+ background-color: #F2F2F2;
+ }
+ .example__sample {
+ margin: 70px 224px 54px 110px;
+ display: flex;
+ }
+ .example__block {
+ width: 436px;
+ margin-right: 224px;
+ }
+ .example__description {
+ margin: 0;
+ padding: 0;
+ width: 436px;
+ min-height: 96px;
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 24px;
+ margin-bottom: 69px;
+ }
+ .example__total {
+ display: block;
+ }
+ .example__tables {
+ display: flex;
+ margin-bottom: 23px;
+ }
+ .example__result {
+ width: 162px;
+ min-height: 72px;
+ gap: 0px;
+ border: 1px 0px 0px 0px;
+ opacity: 0px;
+ border: 1px solid #CDCDCD;
+ }
+ .example__value {
+ margin: 0;
+ padding: 0;
+ font-family: Oswald;
+ font-size: 30px;
+ font-weight: 400;
+ line-height: 37px;
+ text-align: center;
+ margin: 15px 0 11px 0;
+ }
+ .example__expenses {
+ font-family: Lato;
+ font-size: 14px;
+ font-weight: 400;
+ line-height: 14px;
+ text-align: center;
+ }
+ .example__costs {
+ display: flex;
+ justify-content: left;
+ }
+ .example__price {
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 20px;
+ text-align: center;
+ text-transform: uppercase;
+ }
+ .example__food {
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 20px;
+ margin-right: 63px;
+ text-transform: uppercase;
+ }
+ .example__slider {
+ position: relative;
+ display: flex;
+ }
+ .example__after {
+ display: flex;
+ justify-content: flex-end;
+ }
+ .example__button {
+ position: relative;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 40px;
+ height: 40px;
+ padding: 11px 8px 11px 8px;
+ border-radius: 20px;
+ border: 2px solid #666666;
+ background: #FFFFFF;
+ top: 50%;
+ right: 50%;
+ }
+ .example__button::before {
+ position: absolute;
+ content: "";
+ width: 40px;
+ height: 40px;
+ padding: 11px 8px 11px 8px;
+ border-radius: 20px;
+ border: 2px solid #666666;
+ background: #FFFFFF;
+ z-index: 1;
+ }
+ .example__button::after {
+ position: absolute;
+ content: "";
+ width: 4px;
+ height: 512px;
+ border-radius: 2px;
+ background: #666666;
+ transform: translate(0px, -21px);
+ }
+ .example__button--vector {
+ z-index: 1;
+ }
+}
+.map__wrapper {
+ padding: 0;
+ margin: 0;
+}
+.map__contacts {
+ display: flex;
+ margin: 0;
+ padding: 0;
+ width: 320px;
+ min-height: 122px;
+ background-color: #FFFFFF;
+ flex-shrink: 0;
+ padding: 26px 20px;
+}
+.map__invite {
+ margin: 0;
+ padding: 0;
+ font-family: Oswald;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ text-transform: uppercase;
+}
+.map__address {
+ margin: 0;
+ padding: 0;
+ font-family: Lato;
+ font-size: 14px;
+ font-weight: 400;
+ line-height: 20px;
+}
+.map__city {
+ margin: 0;
+ padding: 0;
+ font-family: Lato;
+ font-size: 14px;
+ font-weight: 400;
+ line-height: 20px;
+}
+.map__iframe {
+ display: block;
+ border: none;
+ width: 320px;
+ height: 362px;
+}
+@media (min-width: 768px) {
+ .map__wrapper {
+ padding: 0;
+ margin: 0;
+ }
+ .map__contacts {
+ display: flex;
+ justify-content: space-between;
+ margin: 0;
+ padding: 0;
+ width: 768px;
+ min-height: 200px;
+ background-color: #FFFFFF;
+ flex-shrink: 0;
+ padding: 60px 70px;
+ }
+ .map__invite {
+ margin: 0;
+ padding: 0;
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 26px;
+ text-transform: uppercase;
+ width: 163px;
+ }
+ .map__description {
+ width: 157px;
+ text-align: right;
+ }
+ .map__address {
+ margin: 0;
+ padding: 0;
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ }
+ .map__city {
+ margin: 0;
+ padding: 0;
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ }
+ .map__iframe {
+ display: block;
+ border: none;
+ width: 768px;
+ height: 400px;
+ }
+}
+@media (min-width: 1440px) {
+ .map__wrapper {
+ display: flex;
+ min-height: 400px;
+ padding: 0;
+ margin: 0;
+ }
+ .map__contacts {
+ display: none;
+ margin: 0;
+ padding: 0;
+ width: 565px;
+ min-height: 199px;
+ background-color: #FFFFFF;
+ flex-shrink: 0;
+ margin: 95px 0 106px 110px;
+ padding: 60px 78px 60px 80px;
+ }
+ .map__invite {
+ margin: 0;
+ padding: 0;
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 26px;
+ text-transform: uppercase;
+ margin-right: 87px;
+ }
+ .map__description--address {
+ margin: 0;
+ padding: 0;
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ margin-bottom: 19px;
+ }
+ .map__description--city {
+ margin: 0;
+ padding: 0;
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ margin-bottom: 19px;
+ }
+ .map__iframe {
+ display: block;
+ border: none;
+ width: 1440px;
+ height: 400px;
+ }
+}
+.main-footer__wrapper {
+ margin: 0;
+ padding: 40px 20px;
+ justify-content: space-between;
+ align-items: center;
+}
+.social__list {
+ display: flex;
+ list-style-type: none;
+ gap: 24px;
+ margin: 0;
+ padding: 0;
+}
+.logotype {
+ margin: 0px 76px 40px 76px;
+}
+.social {
+ margin: 0 74px 40px 74px;
+}
+.copyright {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+}
+.copyright__link {
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ text-decoration: none;
+ color: #444444;
+}
+@media (min-width: 768px) {
+ .main-footer__wrapper {
+ display: flex;
+ margin: 0;
+ padding: 0;
+ padding: 55px 30px;
+ justify-content: space-between;
+ align-items: center;
+ }
+ .social__list {
+ display: flex;
+ list-style-type: none;
+ gap: 24px;
+ margin: 0;
+ padding: 0;
+ margin-left: 40px;
+ }
+ .logotype {
+ margin: 0;
+ padding: 0;
+ }
+ .social {
+ margin: 0;
+ padding: 0;
+ }
+ .copyright__link {
+ display: none;
+ }
+}
+@media (min-width: 1440px) {
+ .main-footer__wrapper {
+ display: flex;
+ margin: 0;
+ padding: 0;
+ padding: 66px 110px 66px 110px;
+ justify-content: space-between;
+ align-items: center;
+ }
+ .social__list {
+ display: flex;
+ list-style-type: none;
+ gap: 24px;
+ margin: 0;
+ padding: 0;
+ margin-left: 40px;
+ }
+ .copyright__link {
+ display: none;
+ }
+}
+/*catalog.html*/
+.products__wrapper {
+ margin: 0 20px 50px 20px;
+}
+.products__title {
+ margin: 0;
+ padding: 0;
+ font-family: Oswald;
+ font-size: 36px;
+ font-weight: 400;
+ line-height: 36px;
+ margin-bottom: 41px;
+}
+.products__list {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+}
+.products__item {
+ position: relative;
+}
+@media (min-width: 768px) {
+ .products__wrapper {
+ margin: 65px 30px 70px 30px;
+ }
+ .products__title {
+ margin: 0;
+ padding: 0;
+ font-family: Oswald;
+ font-size: 60px;
+ font-weight: 400;
+ line-height: 60px;
+ margin-bottom: 84px;
+ }
+ .products__list {
+ display: grid;
+ grid-template-columns: 324px 324px;
+ grid-template-rows: 511px 511px 511px 511px;
+ gap: 60px;
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+ }
+ .products__item {
+ position: relative;
+ }
+ .products__item::before {
+ position: absolute;
+ content: "";
+ background-color: #F2F2F2;
+ width: 324px;
+ min-height: 430px;
+ z-index: -1;
+ bottom: 0;
+ }
+ .products__item:last-child::before {
+ position: absolute;
+ content: "";
+ background-color: #FFFFFF;
+ width: 324px;
+ min-height: 430px;
+ z-index: -1;
+ bottom: 0;
+ border: 2px solid #F2F2F2;
+ }
+}
+@media (min-width: 1440px) {
+ .products__wrapper {
+ margin: 0 110px 76px 110px;
+ }
+ .products__title {
+ margin: 0;
+ padding: 0;
+ font-family: Oswald;
+ font-size: 60px;
+ font-weight: 400;
+ line-height: 60px;
+ margin-bottom: 84px;
+ }
+ .products__list {
+ display: grid;
+ grid-template-columns: 245px 245px 245px 245px;
+ grid-template-rows: 511px 511px;
+ gap: 80px;
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+ }
+ .products__item {
+ position: relative;
+ }
+ .products__item::before {
+ position: absolute;
+ content: "";
+ background-color: #F2F2F2;
+ width: 245px;
+ min-height: 430px;
+ z-index: -1;
+ bottom: 0;
+ }
+ .products__item:last-child::before {
+ position: absolute;
+ content: "";
+ background-color: #FFFFFF;
+ width: 245px;
+ min-height: 430px;
+ z-index: -1;
+ bottom: 0;
+ border: 2px solid #F2F2F2;
+ }
+}
+.product {
+ margin-bottom: 45px;
+}
+.product__card {
+ display: flex;
+}
+.product__link {
+ text-decoration: none;
+ width: 140px;
+}
+.product__image {
+ display: block;
+ margin: 0 auto;
+}
+.product__name {
+ display: flex;
+ margin: 0;
+ padding: 0;
+ font-family: Oswald;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ text-transform: uppercase;
+ color: #222222;
+ text-align: center;
+ width: 76px;
+ margin-bottom: 14px;
+}
+.product__description {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+ width: 140px;
+}
+.product__item {
+ display: flex;
+ justify-content: space-between;
+}
+.product__category {
+ font-family: Lato;
+ font-size: 12px;
+ font-weight: 400;
+ line-height: 16px;
+}
+.product__value {
+ font-family: Lato;
+ font-size: 12px;
+ font-weight: 400;
+ line-height: 16px;
+}
+.product__button {
+ display: block;
+ text-decoration: none;
+ font-family: Oswald;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ text-align: center;
+ color: #FFFFFF;
+ padding: 10px 0px 10px 0px;
+ background: #68B738;
+ width: 280px;
+ margin: 0 auto;
+ text-transform: uppercase;
+}
+.product-more__image {
+ margin: 0;
+ padding: 0;
+ margin-bottom: 23px;
+}
+.product-more__name {
+ display: flex;
+ margin: 0 auto;
+ padding: 0;
+ font-family: Oswald;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ text-transform: uppercase;
+ color: #222222;
+ text-align: center;
+ width: 204px;
+ margin-bottom: 8px;
+}
+.product-more__show {
+ font-family: Lato;
+ font-size: 12px;
+ font-weight: 400;
+ line-height: 16px;
+ text-align: center;
+ margin: 0 51px 21px 51px;
+}
+.product-more__button {
+ display: block;
+ text-decoration: none;
+ font-family: Oswald;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ text-align: center;
+ color: #444444;
+ padding: 10px 0px 10px 0px;
+ background: #F2F2F2;
+ width: 280px;
+ margin: 0 auto;
+ text-transform: uppercase;
+}
+@media (min-width: 768px) {
+ .product {
+ margin-bottom: 0;
+ }
+ .product__card {
+ display: block;
+ }
+ .product__link {
+ text-decoration: none;
+ }
+ .product__image {
+ display: block;
+ margin: 0 auto;
+ }
+ .product__name {
+ display: flex;
+ margin: 0 auto;
+ padding: 0;
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 24px;
+ text-transform: uppercase;
+ color: #222222;
+ text-align: center;
+ width: 140px;
+ margin-bottom: 23px;
+ margin-top: 19px;
+ }
+ .product__description {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+ margin: 0 auto;
+ width: 169px;
+ margin-bottom: 37px;
+ }
+ .product__item {
+ display: flex;
+ justify-content: space-between;
+ }
+ .product__category {
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ }
+ .product__value {
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ }
+ .product__button {
+ display: block;
+ text-decoration: none;
+ font-family: Oswald;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ text-align: center;
+ color: #FFFFFF;
+ padding: 10px 0px 10px 0px;
+ background: #68B738;
+ width: 250px;
+ margin: 0 auto;
+ text-transform: uppercase;
+ }
+ .product-more__image {
+ display: block;
+ padding: 0;
+ margin: 50px auto;
+ }
+ .product-more__name {
+ display: flex;
+ margin: 0 auto;
+ padding: 0;
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 24px;
+ text-transform: uppercase;
+ color: #222222;
+ text-align: center;
+ width: 140px;
+ margin-bottom: 26px;
+ }
+ .product-more__show {
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 18px;
+ text-align: center;
+ margin: 0 38px 43px 38px;
+ }
+ .product-more__button {
+ display: block;
+ text-decoration: none;
+ font-family: Oswald;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ text-align: center;
+ color: #444444;
+ padding: 10px 0px 10px 0px;
+ background: #F2F2F2;
+ width: 169px;
+ margin: 0 auto;
+ text-transform: uppercase;
+ }
+}
+@media (min-width: 1440px) {
+ .product {
+ margin-bottom: 0;
+ }
+ .product__card {
+ display: block;
+ }
+ .product__link {
+ text-decoration: none;
+ }
+ .product__image {
+ display: block;
+ margin: 0 auto;
+ }
+ .product__name {
+ display: flex;
+ margin: 0 auto;
+ padding: 0;
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 24px;
+ text-transform: uppercase;
+ color: #222222;
+ text-align: center;
+ width: 140px;
+ margin-bottom: 23px;
+ margin-top: 19px;
+ }
+ .product__description {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+ margin: 0 38px 43px 38px;
+ width: 169px;
+ }
+ .product__item {
+ display: flex;
+ justify-content: space-between;
+ margin-bottom: 10px;
+ }
+ .product__item:nth-child(3n) {
+ margin-bottom: 0;
+ }
+ .product__category {
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ }
+ .product__value {
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ }
+ .product__button {
+ display: block;
+ text-decoration: none;
+ font-family: Oswald;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ text-align: center;
+ color: #FFFFFF;
+ padding: 10px 0px 10px 0px;
+ background: #68B738;
+ width: 169px;
+ margin: 0 auto;
+ text-transform: uppercase;
+ }
+ .product-more__image {
+ padding: 0;
+ margin: 130px 93px 40px 93px;
+ }
+ .product-more__name {
+ display: flex;
+ margin: 0 auto;
+ padding: 0;
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 24px;
+ text-transform: uppercase;
+ color: #222222;
+ text-align: center;
+ width: 140px;
+ margin-bottom: 26px;
+ }
+ .product-more__show {
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 18px;
+ text-align: center;
+ margin: 0 38px 43px 38px;
+ }
+ .product-more__button {
+ display: block;
+ text-decoration: none;
+ font-family: Oswald;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ text-align: center;
+ color: #444444;
+ padding: 10px 0px 10px 0px;
+ background: #F2F2F2;
+ width: 169px;
+ margin: 0 auto;
+ text-transform: uppercase;
+ }
+}
+.extra__wrapper {
+ margin: 0 20px 35px 20px;
+}
+.extra__title {
+ font-family: Oswald;
+ font-size: 24px;
+ font-weight: 400;
+ line-height: 24px;
+ margin: 0;
+ padding: 0;
+ margin-bottom: 49px;
+}
+.extra__list {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+}
+.extra__item {
+ margin-bottom: 31px;
+}
+.extra__name {
+ font-family: Oswald;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 16px;
+ text-transform: uppercase;
+ margin: 0;
+ padding: 0;
+ margin-bottom: 13px;
+}
+.extra__card {
+ display: flex;
+ justify-content: space-between;
+ margin-bottom: 15px;
+}
+.extra__amount {
+ font-family: Lato;
+ font-size: 14px;
+ font-weight: 400;
+ line-height: 14px;
+ margin: 0;
+ padding: 0;
+}
+.extra__price {
+ font-family: Lato;
+ font-size: 14px;
+ font-weight: 400;
+ line-height: 14px;
+ margin: 0;
+ padding: 0;
+}
+.extra__button {
+ display: block;
+ text-decoration: none;
+ font-family: Oswald;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ text-align: center;
+ color: #FFFFFF;
+ padding: 10px 0px 10px 0px;
+ background: #68B738;
+ width: 280px;
+ margin: 0 auto;
+ text-transform: uppercase;
+}
+.extra__item:last-child {
+ margin-bottom: 54px;
+}
+.extra__gift {
+ position: relative;
+ width: 280px;
+ min-height: 290px;
+ background-image: url(../img/extra-gift-mobile.jpg);
+ background-size: cover;
+ background-repeat: no-repeat;
+ z-index: -2;
+}
+.extra__gift::before {
+ position: absolute;
+ content: "";
+ width: 280px;
+ min-height: 290px;
+ background: #68B738D9;
+ opacity: 85%;
+ z-index: -1;
+}
+.extra__image {
+ display: block;
+ margin: 0 auto;
+ padding: 0;
+}
+.extra__description {
+ margin: 0 auto;
+ padding: 0;
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ text-align: center;
+ color: #FFFFFF;
+ width: 161px;
+}
+@media (min-width: 768px) {
+ .extra__wrapper {
+ margin: 0 30px 75px 30px;
+ }
+ .extra__title {
+ font-family: Oswald;
+ font-size: 36px;
+ font-weight: 400;
+ line-height: 36px;
+ margin: 0;
+ padding: 0;
+ margin-bottom: 108px;
+ }
+ .extra__table {
+ display: block;
+ }
+ .extra__list {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+ width: 708px;
+ }
+ .extra__item {
+ display: block;
+ width: 632px;
+ min-height: 85px;
+ margin-bottom: 40px;
+ }
+ .extra__total {
+ display: flex;
+ justify-content: space-between;
+ }
+ .extra__name {
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 20px;
+ text-transform: uppercase;
+ margin: 0;
+ padding: 0;
+ }
+ .extra__amount {
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ margin: 0;
+ padding: 0;
+ margin-right: 49px;
+ }
+ .extra__price {
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ margin: 0;
+ padding: 0;
+ }
+ .extra__button {
+ width: 632px;
+ height: 40px;
+ top: 15px;
+ left: 651px;
+ padding: 10px 0px 10px 0px;
+ gap: 0px;
+ opacity: 0px;
+ text-decoration: none;
+ background: #68B738;
+ font-family: Oswald;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ text-align: center;
+ color: #FFFFFF;
+ text-transform: uppercase;
+ }
+ .extra__item:last-child {
+ margin-bottom: 0;
+ }
+ .extra__gift {
+ position: relative;
+ width: 707px;
+ min-height: 200px;
+ background-image: url(../img/extra-gift-tablet.jpg);
+ background-size: contain;
+ background-repeat: no-repeat;
+ margin: 0;
+ z-index: -2;
+ }
+ .extra__gift::before {
+ position: absolute;
+ content: "";
+ width: 707px;
+ min-height: 200px;
+ background: #68B738D9;
+ opacity: 85%;
+ z-index: -1;
+ }
+ .extra__image {
+ display: block;
+ margin: 0 auto;
+ padding: 0;
+ margin-top: 56px;
+ margin-bottom: 46px;
+ }
+ .extra__description {
+ margin: 0 auto;
+ padding: 0;
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ text-align: center;
+ color: #FFFFFF;
+ width: 161px;
+ }
+}
+@media (min-width: 1440px) {
+ .extra__wrapper {
+ margin: 0 110px 87px 110px;
+ }
+ .extra__title {
+ font-family: Oswald;
+ font-size: 36px;
+ font-weight: 400;
+ line-height: 36px;
+ margin: 0;
+ padding: 0;
+ margin-bottom: 80px;
+ }
+ .extra__table {
+ display: flex;
+ }
+ .extra__list {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+ width: 896px;
+ }
+ .extra__item {
+ display: grid;
+ grid-template-columns: 326px 325px 245px;
+ min-height: 40px;
+ margin-bottom: 40px;
+ }
+ .extra__name {
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 20px;
+ text-transform: uppercase;
+ margin: 0;
+ padding: 0;
+ }
+ .extra__amount {
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ margin: 0;
+ padding: 0;
+ }
+ .extra__price {
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ margin: 0;
+ padding: 0;
+ margin-right: 40px;
+ }
+ .extra__button {
+ width: 244px;
+ height: 40px;
+ top: 15px;
+ left: 651px;
+ padding: 10px 0px 10px 0px;
+ gap: 0px;
+ opacity: 0px;
+ text-decoration: none;
+ background: #68B738;
+ font-family: Oswald;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ text-align: center;
+ color: #FFFFFF;
+ text-transform: uppercase;
+ }
+ .extra__item:last-child {
+ margin-bottom: 0;
+ }
+ .extra__gift {
+ position: relative;
+ width: 245px;
+ min-height: 288px;
+ background-image: url(../img/extra-gift-desktop.jpg);
+ background-size: cover;
+ background-repeat: no-repeat;
+ margin-left: 80px;
+ z-index: -2;
+ }
+ .extra__gift::before {
+ position: absolute;
+ content: "";
+ width: 245px;
+ min-height: 295px;
+ background: #68B738D9;
+ opacity: 85%;
+ z-index: -1;
+ }
+ .extra__image {
+ display: block;
+ margin: 0 auto;
+ padding: 0;
+ margin-top: 56px;
+ margin-bottom: 46px;
+ }
+ .extra__description {
+ margin: 0 auto;
+ padding: 0;
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ text-align: center;
+ color: #FFFFFF;
+ width: 161px;
+ }
+}
+/*form.html*/
+.form__wrapper {
+ margin: 0 20px 45px 20px;
+}
+.form__title {
+ font-family: Oswald;
+ font-size: 36px;
+ font-weight: 400;
+ line-height: 36px;
+ margin: 0;
+ padding: 0;
+ margin-bottom: 37px;
+}
+.form__description {
+ font-family: Oswald;
+ font-size: 14px;
+ font-weight: 400;
+ line-height: 18px;
+ width: 226px;
+ margin: 0;
+ padding: 0;
+ margin-bottom: 39px;
+}
+.form__profile {
+ width: 280px;
+}
+.form__list {
+ margin: 0;
+ padding: 0;
+ list-style-type: none;
+}
+.form__item {
+ display: flex;
+ justify-content: space-between;
+ margin-bottom: 14px;
+ align-items: center;
+}
+.input-block__label {
+ font-family: Oswald;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 18px;
+}
+.input-block__field {
+ width: 228px;
+ height: 45px;
+ border: 1px 0px 0px 0px;
+ border: 1px solid #E7E7E7;
+ font-family: Oswald;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 18px;
+}
+.form__food {
+ width: 280px;
+ padding-top: 12px;
+}
+.radio-block__label {
+ font-family: Oswald;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 18px;
+}
+.radio-block {
+ margin-top: 13px;
+}
+@media (min-width: 768px) {
+ .form__wrapper {
+ margin: 0 30px 65px 30px;
+ }
+ .form__title {
+ font-family: Oswald;
+ font-size: 60px;
+ font-weight: 400;
+ line-height: 60px;
+ margin: 0;
+ padding: 0;
+ margin-top: 65px;
+ margin-bottom: 54px;
+ }
+ .form__description {
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 30px;
+ width: 323px;
+ margin: 0;
+ padding: 0;
+ margin-bottom: 66px;
+ }
+ .form__tables {
+ display: block;
+ }
+ .form__profile {
+ display: flex;
+ width: 628px;
+ margin-bottom: 72px;
+ }
+ .form__list {
+ margin: 0;
+ padding: 0;
+ list-style-type: none;
+ }
+ .form__item {
+ display: flex;
+ justify-content: space-between;
+ margin-bottom: 20px;
+ align-items: center;
+ }
+ .input-block__label {
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 30px;
+ }
+ .input-block__field {
+ width: 568px;
+ height: 52px;
+ border: 1px 0px 0px 0px;
+ border: 1px solid #E7E7E7;
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 30px;
+ }
+ .form__food {
+ display: block;
+ width: 570px;
+ min-height: 196px;
+ border: 1px solid #E7E7E7;
+ padding-top: 12px;
+ }
+ .radio-block__label {
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 30px;
+ }
+ .radio-block {
+ margin-top: 13px;
+ margin-left: 28px;
+ }
+}
+@media (min-width: 1440px) {
+ .form__wrapper {
+ margin: 0 110px 0 110px;
+ }
+ .form__title {
+ font-family: Oswald;
+ font-size: 60px;
+ font-weight: 400;
+ line-height: 60px;
+ margin: 0;
+ padding: 0;
+ margin-bottom: 55px;
+ }
+ .form__description {
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 30px;
+ width: 323px;
+ margin: 0;
+ padding: 0;
+ margin-bottom: 66px;
+ }
+ .form__tables {
+ display: flex;
+ justify-content: space-between;
+ }
+ .form__profile {
+ display: flex;
+ width: 570px;
+ }
+ .form__list {
+ margin: 0;
+ padding: 0;
+ list-style-type: none;
+ }
+ .form__item {
+ display: flex;
+ justify-content: space-between;
+ margin-bottom: 20px;
+ align-items: center;
+ }
+ .input-block__label {
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 30px;
+ }
+ .input-block__field {
+ width: 510px;
+ height: 52px;
+ border: 1px 0px 0px 0px;
+ border: 1px solid #E7E7E7;
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 30px;
+ }
+ .form__food {
+ display: block;
+ width: 570px;
+ min-height: 196px;
+ border: 1px solid #E7E7E7;
+ padding-top: 12px;
+ }
+ .radio-block__label {
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 30px;
+ }
+ .radio-block {
+ margin-top: 13px;
+ margin-left: 28px;
+ }
+}
+.contacts__wrapper {
+ margin: 0 20px 24px 20px;
+}
+.contacts__title {
+ font-family: Oswald;
+ font-size: 24px;
+ font-weight: 400;
+ line-height: 26px;
+ margin-bottom: 35px;
+}
+.contacts__list {
+ margin: 0;
+ padding: 0;
+ justify-content: space-between;
+}
+.contacts__item {
+ display: flex;
+ width: 280px;
+ align-items: center;
+ margin-bottom: 14px;
+}
+.contacts__item:last-child {
+ margin-bottom: 0;
+}
+@media (min-width: 768px) {
+ .contacts__wrapper {
+ margin: 0 30px 65px 30px;
+ }
+ .contacts__title {
+ font-family: Oswald;
+ font-size: 36px;
+ font-weight: 400;
+ line-height: 36px;
+ margin: 0;
+ margin-bottom: 76px;
+ }
+ .contacts__list {
+ display: block;
+ margin: 0;
+ padding: 0;
+ }
+ .contacts__item {
+ display: flex;
+ width: 628px;
+ align-items: center;
+ margin-bottom: 20px;
+ }
+}
+@media (min-width: 1440px) {
+ .contacts__wrapper {
+ margin: 0 110px 0 110px;
+ }
+ .contacts__title {
+ font-family: Oswald;
+ font-size: 36px;
+ font-weight: 400;
+ line-height: 36px;
+ }
+ .contacts__list {
+ display: flex;
+ margin: 0;
+ padding: 0;
+ justify-content: space-between;
+ }
+ .contacts__item {
+ display: flex;
+ width: 569px;
+ align-items: center;
+ }
+}
+.comment__wrapper {
+ margin: 0 20px 23px 20px;
+}
+.comment__title {
+ font-family: Oswald;
+ font-size: 24px;
+ font-weight: 400;
+ line-height: 26px;
+}
+.comment__message {
+ width: 280px;
+ height: 150px;
+ resize: none;
+ font-family: Oswald;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 18px;
+ color: #444444;
+}
+@media (min-width: 768px) {
+ .comment__wrapper {
+ margin: 0 30px 65px 30px;
+ }
+ .comment__title {
+ font-family: Oswald;
+ font-size: 36px;
+ font-weight: 400;
+ line-height: 36px;
+ margin-bottom: 87px;
+ }
+ .comment__message {
+ width: 628px;
+ height: 175px;
+ resize: none;
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 30px;
+ color: #444444;
+ }
+}
+@media (min-width: 1440px) {
+ .comment__wrapper {
+ margin: 0 110px 70px 110px;
+ }
+ .comment__title {
+ font-family: Oswald;
+ font-size: 36px;
+ font-weight: 400;
+ line-height: 36px;
+ }
+ .comment__message {
+ width: 1220px;
+ height: 175px;
+ resize: none;
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 30px;
+ color: #444444;
+ }
+}
+.additionally__wrapper {
+ margin: 0 20px 32px 20px;
+}
+.additionally__title {
+ font-family: Oswald;
+ font-size: 24px;
+ font-weight: 400;
+ line-height: 26px;
+ margin: 0;
+ padding: 0;
+ margin-bottom: 34px;
+}
+.additionally__list {
+ margin: 0;
+ padding: 0;
+ list-style-type: none;
+ margin-bottom: 34px;
+}
+.checkbox-block__label {
+ font-family: Oswald;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 18px;
+ text-transform: uppercase;
+}
+.additionally__button {
+ display: block;
+ text-decoration: none;
+ font-family: Oswald;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 20px;
+ text-align: center;
+ color: #FFFFFF;
+ padding: 10px 0px 10px 0px;
+ background: #68B738;
+ width: 280px;
+ margin: 0 auto;
+ text-transform: uppercase;
+ border: none;
+ margin-bottom: 21px;
+}
+.additionally__important {
+ display: flex;
+ justify-content: center;
+ font-family: Lato;
+ font-size: 14px;
+ font-weight: 400;
+ line-height: 16px;
+}
+@media (min-width: 768px) {
+ .additionally__wrapper {
+ margin: 0 30px 60px 30px;
+ }
+ .additionally__title {
+ font-family: Oswald;
+ font-size: 36px;
+ font-weight: 400;
+ line-height: 36px;
+ margin: 0;
+ padding: 0;
+ margin-bottom: 57px;
+ }
+ .additionally__list {
+ display: grid;
+ grid-template-columns: 344px 284px;
+ margin: 0;
+ padding: 0;
+ list-style-type: none;
+ margin-bottom: 60px;
+ }
+ .additionally__item {
+ margin-bottom: 32px;
+ }
+ .checkbox-block__label {
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 30px;
+ text-transform: uppercase;
+ }
+ .additionally__submit {
+ display: flex;
+ }
+ .additionally__button {
+ width: 284px;
+ padding: 14px 65px;
+ background: #68B738;
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 26px;
+ text-align: center;
+ color: #FFFFFF;
+ text-transform: uppercase;
+ border: none;
+ cursor: pointer;
+ margin: 0;
+ margin-right: 60px;
+ }
+ .additionally__important {
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 16px;
+ }
+}
+@media (min-width: 1440px) {
+ .additionally__wrapper {
+ margin: 0 110px 79px 110px;
+ }
+ .additionally__title {
+ font-family: Oswald;
+ font-size: 36px;
+ font-weight: 400;
+ line-height: 36px;
+ margin: 0;
+ padding: 0;
+ margin-bottom: 57px;
+ }
+ .additionally__list {
+ display: grid;
+ grid-template-columns: 325px 325px 325px 325px;
+ margin: 0;
+ padding: 0;
+ list-style-type: none;
+ margin-bottom: 60px;
+ }
+ .checkbox-block__label {
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 30px;
+ text-transform: uppercase;
+ }
+ .additionally__submit {
+ display: flex;
+ }
+ .additionally__button {
+ width: 570px;
+ padding: 14px 188px 14px 188px;
+ background: #68B738;
+ font-family: Oswald;
+ font-size: 20px;
+ font-weight: 400;
+ line-height: 26px;
+ text-align: center;
+ color: #FFFFFF;
+ text-transform: uppercase;
+ border: none;
+ cursor: pointer;
+ margin-right: 80px;
+ }
+ .additionally__important {
+ font-family: Lato;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 16px;
+ }
+}
+@font-face {
+ font-family: "Lato";
+ font-style: normal;
+ font-weight: 400;
+ src: url("../fonts/lato/Lato-Regular.woff2") format("woff2");
+ font-display: swap;
+}
+@font-face {
+ font-family: "Oswald";
+ font-style: normal;
+ font-weight: 400;
+ src: url("../fonts/oswald/oswaldregular.woff2") format("woff2");
+ font-display: swap;
+}
+@font-face {
+ font-family: "Inter";
+ font-style: normal;
+ font-weight: 700;
+ src: url("../fonts/oswald/oswaldmedium.woff2") format("woff2");
+ font-display: swap;
+}
+*,
+*::before,
+*::after {
+ box-sizing: border-box;
+}
+html {
+ height: 100%;
+}
+body {
+ width: 320px;
+ margin: 0;
+ display: flex;
+ flex-direction: column;
+ min-height: 100%;
+ font-family: "Oswald", sans-serif;
+ font-size: 16px;
+ line-height: 24px;
+ color: #000000;
+ background-color: #ffffff;
+ margin: 0 auto;
+}
+@media (min-width: 768px) {
+ body {
+ width: 768px;
+ }
+}
+@media (min-width: 1440px) {
+ body {
+ width: 1440px;
+ }
+}
+.visually-hidden {
+ position: absolute;
+ width: 1px;
+ height: 1px;
+ margin: -1px;
+ border: 0;
+ padding: 0;
+ white-space: nowrap;
+ -webkit-clip-path: inset(100%);
+ clip-path: inset(100%);
+ clip: rect(0 0 0 0);
+ overflow: hidden;
+}
+/*# sourceMappingURL=style.css.map */
diff --git a/6/css/style.css.map b/6/css/style.css.map
new file mode 100644
index 0000000..d5ed2c4
--- /dev/null
+++ b/6/css/style.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["blocks/main-header.less","style.css","blocks/site-header.less","blocks/program.less","blocks/food.less","blocks/work.less","blocks/example.less","blocks/map.less","blocks/main-footer.less","blocks/products.less","blocks/product.less","blocks/extra.less","blocks/form.less","blocks/contacts.less","blocks/comment.less","blocks/additionally.less","style.less"],"names":[],"mappings":"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","file":"style.css","sourcesContent":[".main-header {\n display: flex;\n position: relative;\n justify-content: space-between;\n }\n\n .main-header__toggle {\n padding: 0;\n border: none;\n background-color: transparent;\n }\n\n .main-header__list {\n display: none;\n }\n\n .main-header__menu-close {\n display: none;\n }\n\n .main-header__menu {\n position: absolute;\n top: 63px;\n z-index: 1;\n width: 320px;\n background: #FCFCFC;\n }\n\n .main-header__menu-content {\n height: 100%;\n }\n\n .main-header__menu-list {\n list-style-type: none;\n margin: 0;\n padding: 0;\n text-align: center;\n }\n\n .main-header__menu-item {\n padding: 22px 75px 24px 75px;\n }\n\n .main-header__menu-link {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 20px;\n color: #000000;\n text-decoration: none;\n text-transform: uppercase;\n }\n\n@media (min-width: @tabletop-width) {\n\n .main-header {\n margin: 25px 30px 0 30px;\n justify-content: space-between;\n }\n\n .main-header__navigation {\n display: flex;\n }\n\n .main-header__toggle {\n display: none;\n }\n\n .main-header__list {\n margin: 0;\n padding: 0;\n list-style-type: none;\n display: flex;\n gap: 33px;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n text-align: left;\n text-transform: uppercase;\n align-items: center;\n }\n\n .main-header__link {\n color: #000000;\n text-decoration: none;\n }\n\n}\n\n@media (min-width: @desktop-width) {\n\n .main-header {\n margin: 55px 110px 0 110px;\n justify-content: space-between;\n }\n\n .main-header__navigation {\n display: flex;\n }\n\n .main-header__toggle {\n display: none;\n }\n\n .main-header__list {\n list-style-type: none;\n display: flex;\n gap: 33px;\n color: #ffffff;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n text-align: left;\n text-transform: uppercase;\n }\n\n .main-header__link {\n color: #ffffff;\n text-decoration: none;\n }\n\n}\n",".main-header {\n display: flex;\n position: relative;\n justify-content: space-between;\n}\n.main-header__toggle {\n padding: 0;\n border: none;\n background-color: transparent;\n}\n.main-header__list {\n display: none;\n}\n.main-header__menu-close {\n display: none;\n}\n.main-header__menu {\n position: absolute;\n top: 63px;\n z-index: 1;\n width: 320px;\n background: #FCFCFC;\n}\n.main-header__menu-content {\n height: 100%;\n}\n.main-header__menu-list {\n list-style-type: none;\n margin: 0;\n padding: 0;\n text-align: center;\n}\n.main-header__menu-item {\n padding: 22px 75px 24px 75px;\n}\n.main-header__menu-link {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 20px;\n color: #000000;\n text-decoration: none;\n text-transform: uppercase;\n}\n@media (min-width: 768px) {\n .main-header {\n margin: 25px 30px 0 30px;\n justify-content: space-between;\n }\n .main-header__navigation {\n display: flex;\n }\n .main-header__toggle {\n display: none;\n }\n .main-header__list {\n margin: 0;\n padding: 0;\n list-style-type: none;\n display: flex;\n gap: 33px;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n text-align: left;\n text-transform: uppercase;\n align-items: center;\n }\n .main-header__link {\n color: #000000;\n text-decoration: none;\n }\n}\n@media (min-width: 1440px) {\n .main-header {\n margin: 55px 110px 0 110px;\n justify-content: space-between;\n }\n .main-header__navigation {\n display: flex;\n }\n .main-header__toggle {\n display: none;\n }\n .main-header__list {\n list-style-type: none;\n display: flex;\n gap: 33px;\n color: #ffffff;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n text-align: left;\n text-transform: uppercase;\n }\n .main-header__link {\n color: #ffffff;\n text-decoration: none;\n }\n}\n.site-header {\n display: flex;\n margin: 14px 20px;\n justify-content: space-between;\n}\n.site-header__toggle {\n padding: 0;\n border: none;\n background-color: transparent;\n}\n.site-header__list {\n display: none;\n}\n@media (min-width: 768px) {\n .site-header {\n margin: 25px 30px 0 30px;\n justify-content: space-between;\n }\n .site-header__navigation {\n display: flex;\n }\n .site-header__toggle {\n display: none;\n }\n .site-header__list {\n margin: 0;\n padding: 0;\n list-style-type: none;\n display: flex;\n gap: 33px;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n text-align: left;\n text-transform: uppercase;\n align-items: center;\n }\n .site-header__link {\n color: #000000;\n text-decoration: none;\n }\n}\n@media (min-width: 1440px) {\n .site-header {\n display: flex;\n margin: 55px 110px 63px 110px;\n justify-content: space-between;\n }\n .site-header__navigation {\n display: flex;\n }\n .site-header__toggle {\n display: none;\n }\n .site-header__list {\n display: flex;\n gap: 33px;\n color: #ffffff;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n text-align: left;\n text-transform: uppercase;\n list-style-type: none;\n }\n .site-header__link {\n color: #111111;\n text-decoration: none;\n }\n}\n/*index.html*/\n.program {\n position: relative;\n}\n.program::before {\n position: absolute;\n content: \"\";\n background-color: #68B738D9;\n width: 320px;\n height: 302px;\n z-index: -1;\n}\n.program__wrapper {\n display: flex;\n flex-direction: column;\n}\n.program__header {\n padding-top: 27px;\n width: 249px;\n margin-left: 36px;\n}\n.program__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 36px;\n text-align: center;\n margin: 0;\n color: #FFFFFF;\n}\n.program__slogan {\n font-family: Oswald;\n font-size: 14px;\n font-weight: 400;\n line-height: 14px;\n margin-top: 25px;\n margin-bottom: 29px;\n text-align: center;\n text-transform: uppercase;\n color: #FFFFFF;\n}\n.program__toggle {\n padding: 10px 44px 10px 44px;\n background-color: #68B738;\n color: #ffffff;\n text-decoration: none;\n text-transform: uppercase;\n margin-top: 23px;\n width: 280px;\n margin-left: 20px;\n text-align: center;\n}\n@media (min-width: 768px) {\n .program__wrapper {\n margin: 0 30px;\n }\n .program::before {\n display: none;\n }\n .program__header {\n margin: 65px 0 50px 90px;\n padding: 0;\n width: 414px;\n }\n .program__title {\n font-family: Oswald;\n font-size: 60px;\n font-weight: 400;\n line-height: 60px;\n text-align: left;\n margin: 0;\n color: #000000;\n }\n .program__slogan {\n margin: 0;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 20px;\n text-align: left;\n margin-top: 40px;\n text-transform: uppercase;\n color: #000000;\n }\n .program__image {\n position: absolute;\n right: 0;\n top: 0;\n z-index: -1;\n }\n .program__toggle {\n width: 244px;\n margin: 0;\n padding: 14px 26px 14px 26px;\n margin-left: 90px;\n font-size: 20px;\n font-weight: 400;\n line-height: 26px;\n }\n}\n@media (min-width: 1440px) {\n .program {\n min-height: 542px;\n }\n .program::before {\n display: block;\n width: 720px;\n height: 694px;\n right: 0;\n top: -235px;\n }\n .program__wrapper {\n margin: 0 110px 0 110px;\n }\n .program__header {\n margin: 110px 0 0 80px;\n width: 414px;\n }\n .program__title {\n font-family: Oswald;\n font-size: 60px;\n font-weight: 400;\n line-height: 60px;\n text-align: left;\n margin: 0;\n color: #000000;\n }\n .program__slogan {\n margin: 0;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 20px;\n text-align: left;\n margin-top: 40px;\n margin-bottom: 52px;\n text-transform: uppercase;\n color: #000000;\n }\n .program__image {\n position: absolute;\n right: 0;\n top: 0;\n }\n .program__toggle {\n width: 244px;\n padding: 14px 26px 14px 26px;\n margin-left: 80px;\n font-size: 20px;\n font-weight: 400;\n line-height: 26px;\n }\n}\n.food__wrapper {\n display: flex;\n margin: 20px;\n}\n.food__list {\n list-style-type: none;\n padding: 0;\n margin: 0;\n}\n.food__item {\n width: 280px;\n min-height: 266px;\n background-color: #F2F2F2;\n margin: 0;\n padding: 0;\n margin-bottom: 20px;\n}\n.food__title {\n display: flex;\n align-items: center;\n font-family: Oswald;\n font-size: 24px;\n font-weight: 400;\n line-height: 37px;\n text-transform: uppercase;\n padding: 21px 0 22px 20px;\n margin: 0;\n}\n.food__description {\n margin: 0 33px 38px 20px;\n font-family: Lato;\n font-size: 14px;\n font-weight: 400;\n line-height: 18px;\n}\n.food__image-slimming {\n margin-right: 20px;\n}\n.food__image-weight {\n margin-right: 47px;\n}\n.food__catalog {\n margin: 0 0 22px 20px;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 16px;\n color: #000000;\n text-decoration: none;\n text-transform: uppercase;\n}\n.food__link {\n margin-left: 15px;\n}\n@media (min-width: 768px) {\n .food__wrapper {\n margin: 0 30px 45px 30px;\n }\n .food__list {\n display: flex;\n flex-direction: column;\n gap: 30px;\n }\n .food__item {\n width: 708px;\n min-height: 372px;\n background-color: #F2F2F2;\n margin-bottom: 0;\n }\n .food__title {\n margin: 41px 0 39px 52px;\n font-size: 36px;\n line-height: 36px;\n padding: 0;\n }\n .food__description {\n margin: 0 61px 23px 52px;\n font-size: 16px;\n line-height: 24px;\n }\n .food__image-slimming {\n margin-right: 62px;\n }\n .food__image-weight {\n margin-right: 47px;\n }\n .food__catalog {\n margin: 0 0 59px 52px;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n }\n .food__link {\n margin-left: 25px;\n }\n}\n@media (min-width: 1440px) {\n .food__wrapper {\n margin: 0 110px 71px 110px;\n }\n .food__list {\n display: flex;\n flex-direction: row;\n gap: 80px;\n }\n .food__item {\n width: 570px;\n min-height: 374px;\n background-color: #F2F2F2;\n margin-bottom: 0;\n }\n .food__title {\n margin: 41px 0 39px 52px;\n font-size: 36px;\n line-height: 36px;\n }\n .food__description {\n margin: 0 61px 23px 52px;\n font-size: 16px;\n line-height: 24px;\n }\n .food__image-slimming {\n margin-right: 62px;\n }\n .food__image-weight {\n margin-right: 47px;\n }\n .food__catalog {\n margin: 0 0 59px 52px;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n }\n .food__link {\n margin-left: 25px;\n }\n}\n.work__wrapper {\n margin: 0 20px 49px 20px;\n}\n.work__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 40px;\n margin: 0;\n margin-bottom: 40px;\n}\n.work__list {\n list-style-type: none;\n padding: 0;\n margin: 0;\n}\n.work__item {\n display: flex;\n width: 280px;\n min-height: 60px;\n margin-bottom: 20px;\n}\n.work__item:last-child {\n margin-bottom: 0;\n}\n.work__image {\n margin-right: 20px;\n}\n.work__description {\n font-family: Lato;\n font-size: 14px;\n font-weight: 400;\n line-height: 18px;\n margin: 0;\n padding: 0;\n}\n@media (min-width: 768px) {\n .work__wrapper {\n margin: 0 30px 92px 30px;\n }\n .work__title {\n font-family: Oswald;\n font-size: 60px;\n font-weight: 400;\n line-height: 60px;\n margin: 0;\n margin-bottom: 32px;\n }\n .work__list {\n display: grid;\n grid-template-columns: 346px 230px;\n counter-reset: workCounter;\n list-style-type: none;\n padding: 0;\n gap: 37px;\n margin: 0;\n }\n .work__item {\n flex-direction: column;\n counter-increment: workCounter;\n width: 230px;\n min-height: 280px;\n }\n .work__item--sheet {\n position: relative;\n }\n .work__item--powder {\n position: relative;\n }\n .work__item--reception {\n position: relative;\n }\n .work__item--time {\n position: relative;\n }\n .work__item::before {\n position: absolute;\n content: counter(workCounter);\n width: 134px;\n height: 280px;\n font-size: 280px;\n font-weight: 400;\n line-height: 280px;\n text-align: center;\n color: #F2F2F2;\n z-index: -1;\n left: 50%;\n }\n .work__image {\n margin-top: 40px;\n }\n .work__description {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 24px;\n }\n}\n@media (min-width: 1440px) {\n .work__wrapper {\n margin: 0 110px 69px 110px;\n }\n .work__title {\n font-family: Oswald;\n font-size: 60px;\n font-weight: 400;\n line-height: 60px;\n margin: 0;\n margin-bottom: 32px;\n }\n .work__list {\n display: flex;\n counter-reset: workCounter;\n list-style-type: none;\n padding: 0;\n gap: 94px;\n margin: 0;\n }\n .work__item {\n position: relative;\n flex-direction: column;\n counter-increment: workCounter;\n width: 230px;\n min-height: 280px;\n }\n .work__item--sheet {\n position: relative;\n }\n .work__item--powder {\n position: relative;\n }\n .work__item--reception {\n position: relative;\n }\n .work__item--time {\n position: relative;\n }\n .work__item::before {\n position: absolute;\n content: counter(workCounter);\n width: 134px;\n height: 280px;\n font-size: 280px;\n font-weight: 400;\n line-height: 280px;\n text-align: center;\n color: #F2F2F2;\n z-index: -1;\n left: 50%;\n }\n .work__image {\n margin-top: 40px;\n }\n .work__description {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 24px;\n }\n}\n.example {\n position: relative;\n background-color: #F2F2F2;\n}\n.example__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 40px;\n margin: 0;\n padding: 0;\n padding: 25px 0 0 20px;\n}\n.example__wrapper {\n background-color: #F2F2F2;\n}\n.example__sample {\n margin: 40px 20px 0 20px;\n}\n.example__description {\n margin: 0;\n padding: 0;\n width: 280px;\n min-height: 108px;\n font-family: Lato;\n font-size: 14px;\n font-weight: 400;\n line-height: 18px;\n margin-bottom: 20px;\n}\n.example__tables {\n display: flex;\n margin-bottom: 20px;\n}\n.example__result {\n width: 124px;\n min-height: 56px;\n border: 1px solid #CDCDCD;\n}\n.example__value {\n margin: 0;\n padding: 0;\n font-family: Oswald;\n font-size: 24px;\n font-weight: 400;\n line-height: 24px;\n text-align: center;\n margin: 15px 0 18px 0;\n}\n.example__expenses {\n font-family: Lato;\n font-size: 12px;\n font-weight: 400;\n line-height: 12px;\n text-align: center;\n margin: 0;\n padding: 0;\n}\n.example__costs {\n display: flex;\n justify-content: center;\n}\n.example__price {\n font-family: Oswald;\n font-size: 14px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n text-transform: uppercase;\n}\n.example__food {\n font-family: Oswald;\n font-size: 14px;\n font-weight: 400;\n line-height: 20px;\n text-transform: uppercase;\n}\n.example__slider {\n position: relative;\n display: flex;\n width: 560px;\n}\n.example__after {\n display: flex;\n justify-content: flex-end;\n}\n.example__button {\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 40px;\n height: 40px;\n padding: 11px 8px 11px 8px;\n border-radius: 20px;\n border: 2px solid #666666;\n background: #FFFFFF;\n top: 129px;\n right: 50%;\n}\n.example__button::before {\n position: absolute;\n content: \"\";\n width: 40px;\n height: 40px;\n padding: 11px 8px 11px 8px;\n border-radius: 20px;\n border: 2px solid #666666;\n background: #FFFFFF;\n z-index: 1;\n}\n.example__button::after {\n position: absolute;\n content: \"\";\n width: 4px;\n height: 256px;\n border-radius: 2px;\n background: #666666;\n transform: translate(0px, -21px);\n}\n.example__button--vector {\n z-index: 1;\n}\n@media (min-width: 768px) {\n .example {\n position: relative;\n }\n .example__title {\n font-family: Oswald;\n font-size: 60px;\n font-weight: 400;\n line-height: 60px;\n margin-left: 30px;\n padding: 0;\n }\n .example__wrapper {\n display: flex;\n flex-direction: column;\n background-color: #F2F2F2;\n margin: 0 30px;\n }\n .example__sample {\n margin: 0;\n margin-top: 60px;\n }\n .example__description {\n margin: 0;\n padding: 0;\n width: 436px;\n min-height: 96px;\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 24px;\n margin-bottom: 55px;\n }\n .example__total {\n display: flex;\n gap: 167px;\n align-items: center;\n }\n .example__tables {\n display: flex;\n margin-bottom: 23px;\n }\n .example__result {\n width: 162px;\n min-height: 72px;\n gap: 0px;\n border: 1px 0px 0px 0px;\n opacity: 0px;\n border: 1px solid #CDCDCD;\n }\n .example__value {\n margin: 0;\n padding: 0;\n font-family: Oswald;\n font-size: 30px;\n font-weight: 400;\n line-height: 37px;\n text-align: center;\n margin: 15px 0 11px 0;\n }\n .example__expenses {\n font-family: Lato;\n font-size: 14px;\n font-weight: 400;\n line-height: 14px;\n text-align: center;\n }\n .example__costs {\n display: block;\n }\n .example__price {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 20px;\n text-align: right;\n text-transform: uppercase;\n margin: 0;\n padding: 0;\n }\n .example__food {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 20px;\n text-transform: uppercase;\n margin: 0;\n padding: 0;\n }\n .example__slider {\n position: relative;\n display: flex;\n width: 560px;\n }\n .example__after {\n display: flex;\n justify-content: flex-end;\n }\n .example__button {\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 40px;\n height: 40px;\n padding: 11px 8px 11px 8px;\n border-radius: 20px;\n border: 2px solid #666666;\n background: #FFFFFF;\n top: 257px;\n right: 50%;\n }\n .example__button::before {\n position: absolute;\n content: \"\";\n width: 40px;\n height: 40px;\n padding: 11px 8px 11px 8px;\n border-radius: 20px;\n border: 2px solid #666666;\n background: #FFFFFF;\n z-index: 1;\n }\n .example__button::after {\n position: absolute;\n content: \"\";\n width: 4px;\n height: 512px;\n border-radius: 2px;\n background: #666666;\n transform: translate(0px, -21px);\n }\n .example__button--vector {\n z-index: 1;\n }\n}\n@media (min-width: 1440px) {\n .example {\n position: relative;\n }\n .example__title {\n font-family: Oswald;\n font-size: 60px;\n font-weight: 400;\n line-height: 60px;\n margin: 0 0 76px 110px;\n }\n .example__wrapper {\n display: flex;\n background-color: #F2F2F2;\n }\n .example__sample {\n margin: 70px 224px 54px 110px;\n display: flex;\n }\n .example__block {\n width: 436px;\n margin-right: 224px;\n }\n .example__description {\n margin: 0;\n padding: 0;\n width: 436px;\n min-height: 96px;\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 24px;\n margin-bottom: 69px;\n }\n .example__total {\n display: block;\n }\n .example__tables {\n display: flex;\n margin-bottom: 23px;\n }\n .example__result {\n width: 162px;\n min-height: 72px;\n gap: 0px;\n border: 1px 0px 0px 0px;\n opacity: 0px;\n border: 1px solid #CDCDCD;\n }\n .example__value {\n margin: 0;\n padding: 0;\n font-family: Oswald;\n font-size: 30px;\n font-weight: 400;\n line-height: 37px;\n text-align: center;\n margin: 15px 0 11px 0;\n }\n .example__expenses {\n font-family: Lato;\n font-size: 14px;\n font-weight: 400;\n line-height: 14px;\n text-align: center;\n }\n .example__costs {\n display: flex;\n justify-content: left;\n }\n .example__price {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n text-transform: uppercase;\n }\n .example__food {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 20px;\n margin-right: 63px;\n text-transform: uppercase;\n }\n .example__slider {\n position: relative;\n display: flex;\n }\n .example__after {\n display: flex;\n justify-content: flex-end;\n }\n .example__button {\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 40px;\n height: 40px;\n padding: 11px 8px 11px 8px;\n border-radius: 20px;\n border: 2px solid #666666;\n background: #FFFFFF;\n top: 50%;\n right: 50%;\n }\n .example__button::before {\n position: absolute;\n content: \"\";\n width: 40px;\n height: 40px;\n padding: 11px 8px 11px 8px;\n border-radius: 20px;\n border: 2px solid #666666;\n background: #FFFFFF;\n z-index: 1;\n }\n .example__button::after {\n position: absolute;\n content: \"\";\n width: 4px;\n height: 512px;\n border-radius: 2px;\n background: #666666;\n transform: translate(0px, -21px);\n }\n .example__button--vector {\n z-index: 1;\n }\n}\n.map__wrapper {\n padding: 0;\n margin: 0;\n}\n.map__contacts {\n display: flex;\n margin: 0;\n padding: 0;\n width: 320px;\n min-height: 122px;\n background-color: #FFFFFF;\n flex-shrink: 0;\n padding: 26px 20px;\n}\n.map__invite {\n margin: 0;\n padding: 0;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-transform: uppercase;\n}\n.map__address {\n margin: 0;\n padding: 0;\n font-family: Lato;\n font-size: 14px;\n font-weight: 400;\n line-height: 20px;\n}\n.map__city {\n margin: 0;\n padding: 0;\n font-family: Lato;\n font-size: 14px;\n font-weight: 400;\n line-height: 20px;\n}\n.map__iframe {\n display: block;\n border: none;\n width: 320px;\n height: 362px;\n}\n@media (min-width: 768px) {\n .map__wrapper {\n padding: 0;\n margin: 0;\n }\n .map__contacts {\n display: flex;\n justify-content: space-between;\n margin: 0;\n padding: 0;\n width: 768px;\n min-height: 200px;\n background-color: #FFFFFF;\n flex-shrink: 0;\n padding: 60px 70px;\n }\n .map__invite {\n margin: 0;\n padding: 0;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 26px;\n text-transform: uppercase;\n width: 163px;\n }\n .map__description {\n width: 157px;\n text-align: right;\n }\n .map__address {\n margin: 0;\n padding: 0;\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n }\n .map__city {\n margin: 0;\n padding: 0;\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n }\n .map__iframe {\n display: block;\n border: none;\n width: 768px;\n height: 400px;\n }\n}\n@media (min-width: 1440px) {\n .map__wrapper {\n display: flex;\n min-height: 400px;\n padding: 0;\n margin: 0;\n }\n .map__contacts {\n display: none;\n margin: 0;\n padding: 0;\n width: 565px;\n min-height: 199px;\n background-color: #FFFFFF;\n flex-shrink: 0;\n margin: 95px 0 106px 110px;\n padding: 60px 78px 60px 80px;\n }\n .map__invite {\n margin: 0;\n padding: 0;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 26px;\n text-transform: uppercase;\n margin-right: 87px;\n }\n .map__description--address {\n margin: 0;\n padding: 0;\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n margin-bottom: 19px;\n }\n .map__description--city {\n margin: 0;\n padding: 0;\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n margin-bottom: 19px;\n }\n .map__iframe {\n display: block;\n border: none;\n width: 1440px;\n height: 400px;\n }\n}\n.main-footer__wrapper {\n margin: 0;\n padding: 40px 20px;\n justify-content: space-between;\n align-items: center;\n}\n.social__list {\n display: flex;\n list-style-type: none;\n gap: 24px;\n margin: 0;\n padding: 0;\n}\n.logotype {\n margin: 0px 76px 40px 76px;\n}\n.social {\n margin: 0 74px 40px 74px;\n}\n.copyright {\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n.copyright__link {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-decoration: none;\n color: #444444;\n}\n@media (min-width: 768px) {\n .main-footer__wrapper {\n display: flex;\n margin: 0;\n padding: 0;\n padding: 55px 30px;\n justify-content: space-between;\n align-items: center;\n }\n .social__list {\n display: flex;\n list-style-type: none;\n gap: 24px;\n margin: 0;\n padding: 0;\n margin-left: 40px;\n }\n .logotype {\n margin: 0;\n padding: 0;\n }\n .social {\n margin: 0;\n padding: 0;\n }\n .copyright__link {\n display: none;\n }\n}\n@media (min-width: 1440px) {\n .main-footer__wrapper {\n display: flex;\n margin: 0;\n padding: 0;\n padding: 66px 110px 66px 110px;\n justify-content: space-between;\n align-items: center;\n }\n .social__list {\n display: flex;\n list-style-type: none;\n gap: 24px;\n margin: 0;\n padding: 0;\n margin-left: 40px;\n }\n .copyright__link {\n display: none;\n }\n}\n/*catalog.html*/\n.products__wrapper {\n margin: 0 20px 50px 20px;\n}\n.products__title {\n margin: 0;\n padding: 0;\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 36px;\n margin-bottom: 41px;\n}\n.products__list {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.products__item {\n position: relative;\n}\n@media (min-width: 768px) {\n .products__wrapper {\n margin: 65px 30px 70px 30px;\n }\n .products__title {\n margin: 0;\n padding: 0;\n font-family: Oswald;\n font-size: 60px;\n font-weight: 400;\n line-height: 60px;\n margin-bottom: 84px;\n }\n .products__list {\n display: grid;\n grid-template-columns: 324px 324px;\n grid-template-rows: 511px 511px 511px 511px;\n gap: 60px;\n list-style-type: none;\n margin: 0;\n padding: 0;\n }\n .products__item {\n position: relative;\n }\n .products__item::before {\n position: absolute;\n content: \"\";\n background-color: #F2F2F2;\n width: 324px;\n min-height: 430px;\n z-index: -1;\n bottom: 0;\n }\n .products__item:last-child::before {\n position: absolute;\n content: \"\";\n background-color: #FFFFFF;\n width: 324px;\n min-height: 430px;\n z-index: -1;\n bottom: 0;\n border: 2px solid #F2F2F2;\n }\n}\n@media (min-width: 1440px) {\n .products__wrapper {\n margin: 0 110px 76px 110px;\n }\n .products__title {\n margin: 0;\n padding: 0;\n font-family: Oswald;\n font-size: 60px;\n font-weight: 400;\n line-height: 60px;\n margin-bottom: 84px;\n }\n .products__list {\n display: grid;\n grid-template-columns: 245px 245px 245px 245px;\n grid-template-rows: 511px 511px;\n gap: 80px;\n list-style-type: none;\n margin: 0;\n padding: 0;\n }\n .products__item {\n position: relative;\n }\n .products__item::before {\n position: absolute;\n content: \"\";\n background-color: #F2F2F2;\n width: 245px;\n min-height: 430px;\n z-index: -1;\n bottom: 0;\n }\n .products__item:last-child::before {\n position: absolute;\n content: \"\";\n background-color: #FFFFFF;\n width: 245px;\n min-height: 430px;\n z-index: -1;\n bottom: 0;\n border: 2px solid #F2F2F2;\n }\n}\n.product {\n margin-bottom: 45px;\n}\n.product__card {\n display: flex;\n}\n.product__link {\n text-decoration: none;\n width: 140px;\n}\n.product__image {\n display: block;\n margin: 0 auto;\n}\n.product__name {\n display: flex;\n margin: 0;\n padding: 0;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-transform: uppercase;\n color: #222222;\n text-align: center;\n width: 76px;\n margin-bottom: 14px;\n}\n.product__description {\n list-style-type: none;\n margin: 0;\n padding: 0;\n width: 140px;\n}\n.product__item {\n display: flex;\n justify-content: space-between;\n}\n.product__category {\n font-family: Lato;\n font-size: 12px;\n font-weight: 400;\n line-height: 16px;\n}\n.product__value {\n font-family: Lato;\n font-size: 12px;\n font-weight: 400;\n line-height: 16px;\n}\n.product__button {\n display: block;\n text-decoration: none;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #FFFFFF;\n padding: 10px 0px 10px 0px;\n background: #68B738;\n width: 280px;\n margin: 0 auto;\n text-transform: uppercase;\n}\n.product-more__image {\n margin: 0;\n padding: 0;\n margin-bottom: 23px;\n}\n.product-more__name {\n display: flex;\n margin: 0 auto;\n padding: 0;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-transform: uppercase;\n color: #222222;\n text-align: center;\n width: 204px;\n margin-bottom: 8px;\n}\n.product-more__show {\n font-family: Lato;\n font-size: 12px;\n font-weight: 400;\n line-height: 16px;\n text-align: center;\n margin: 0 51px 21px 51px;\n}\n.product-more__button {\n display: block;\n text-decoration: none;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #444444;\n padding: 10px 0px 10px 0px;\n background: #F2F2F2;\n width: 280px;\n margin: 0 auto;\n text-transform: uppercase;\n}\n@media (min-width: 768px) {\n .product {\n margin-bottom: 0;\n }\n .product__card {\n display: block;\n }\n .product__link {\n text-decoration: none;\n }\n .product__image {\n display: block;\n margin: 0 auto;\n }\n .product__name {\n display: flex;\n margin: 0 auto;\n padding: 0;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 24px;\n text-transform: uppercase;\n color: #222222;\n text-align: center;\n width: 140px;\n margin-bottom: 23px;\n margin-top: 19px;\n }\n .product__description {\n list-style-type: none;\n margin: 0;\n padding: 0;\n margin: 0 auto;\n width: 169px;\n margin-bottom: 37px;\n }\n .product__item {\n display: flex;\n justify-content: space-between;\n }\n .product__category {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n }\n .product__value {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n }\n .product__button {\n display: block;\n text-decoration: none;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #FFFFFF;\n padding: 10px 0px 10px 0px;\n background: #68B738;\n width: 250px;\n margin: 0 auto;\n text-transform: uppercase;\n }\n .product-more__image {\n display: block;\n padding: 0;\n margin: 50px auto;\n }\n .product-more__name {\n display: flex;\n margin: 0 auto;\n padding: 0;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 24px;\n text-transform: uppercase;\n color: #222222;\n text-align: center;\n width: 140px;\n margin-bottom: 26px;\n }\n .product-more__show {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 18px;\n text-align: center;\n margin: 0 38px 43px 38px;\n }\n .product-more__button {\n display: block;\n text-decoration: none;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #444444;\n padding: 10px 0px 10px 0px;\n background: #F2F2F2;\n width: 169px;\n margin: 0 auto;\n text-transform: uppercase;\n }\n}\n@media (min-width: 1440px) {\n .product {\n margin-bottom: 0;\n }\n .product__card {\n display: block;\n }\n .product__link {\n text-decoration: none;\n }\n .product__image {\n display: block;\n margin: 0 auto;\n }\n .product__name {\n display: flex;\n margin: 0 auto;\n padding: 0;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 24px;\n text-transform: uppercase;\n color: #222222;\n text-align: center;\n width: 140px;\n margin-bottom: 23px;\n margin-top: 19px;\n }\n .product__description {\n list-style-type: none;\n margin: 0;\n padding: 0;\n margin: 0 38px 43px 38px;\n width: 169px;\n }\n .product__item {\n display: flex;\n justify-content: space-between;\n margin-bottom: 10px;\n }\n .product__item:nth-child(3n) {\n margin-bottom: 0;\n }\n .product__category {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n }\n .product__value {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n }\n .product__button {\n display: block;\n text-decoration: none;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #FFFFFF;\n padding: 10px 0px 10px 0px;\n background: #68B738;\n width: 169px;\n margin: 0 auto;\n text-transform: uppercase;\n }\n .product-more__image {\n padding: 0;\n margin: 130px 93px 40px 93px;\n }\n .product-more__name {\n display: flex;\n margin: 0 auto;\n padding: 0;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 24px;\n text-transform: uppercase;\n color: #222222;\n text-align: center;\n width: 140px;\n margin-bottom: 26px;\n }\n .product-more__show {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 18px;\n text-align: center;\n margin: 0 38px 43px 38px;\n }\n .product-more__button {\n display: block;\n text-decoration: none;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #444444;\n padding: 10px 0px 10px 0px;\n background: #F2F2F2;\n width: 169px;\n margin: 0 auto;\n text-transform: uppercase;\n }\n}\n.extra__wrapper {\n margin: 0 20px 35px 20px;\n}\n.extra__title {\n font-family: Oswald;\n font-size: 24px;\n font-weight: 400;\n line-height: 24px;\n margin: 0;\n padding: 0;\n margin-bottom: 49px;\n}\n.extra__list {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n.extra__item {\n margin-bottom: 31px;\n}\n.extra__name {\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 16px;\n text-transform: uppercase;\n margin: 0;\n padding: 0;\n margin-bottom: 13px;\n}\n.extra__card {\n display: flex;\n justify-content: space-between;\n margin-bottom: 15px;\n}\n.extra__amount {\n font-family: Lato;\n font-size: 14px;\n font-weight: 400;\n line-height: 14px;\n margin: 0;\n padding: 0;\n}\n.extra__price {\n font-family: Lato;\n font-size: 14px;\n font-weight: 400;\n line-height: 14px;\n margin: 0;\n padding: 0;\n}\n.extra__button {\n display: block;\n text-decoration: none;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #FFFFFF;\n padding: 10px 0px 10px 0px;\n background: #68B738;\n width: 280px;\n margin: 0 auto;\n text-transform: uppercase;\n}\n.extra__item:last-child {\n margin-bottom: 54px;\n}\n.extra__gift {\n position: relative;\n width: 280px;\n min-height: 290px;\n background-image: url(../img/extra-gift-mobile.jpg);\n background-size: cover;\n background-repeat: no-repeat;\n z-index: -2;\n}\n.extra__gift::before {\n position: absolute;\n content: \"\";\n width: 280px;\n min-height: 290px;\n background: #68B738D9;\n opacity: 85%;\n z-index: -1;\n}\n.extra__image {\n display: block;\n margin: 0 auto;\n padding: 0;\n}\n.extra__description {\n margin: 0 auto;\n padding: 0;\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #FFFFFF;\n width: 161px;\n}\n@media (min-width: 768px) {\n .extra__wrapper {\n margin: 0 30px 75px 30px;\n }\n .extra__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 36px;\n margin: 0;\n padding: 0;\n margin-bottom: 108px;\n }\n .extra__table {\n display: block;\n }\n .extra__list {\n list-style-type: none;\n margin: 0;\n padding: 0;\n width: 708px;\n }\n .extra__item {\n display: block;\n width: 632px;\n min-height: 85px;\n margin-bottom: 40px;\n }\n .extra__total {\n display: flex;\n justify-content: space-between;\n }\n .extra__name {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 20px;\n text-transform: uppercase;\n margin: 0;\n padding: 0;\n }\n .extra__amount {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n margin: 0;\n padding: 0;\n margin-right: 49px;\n }\n .extra__price {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n margin: 0;\n padding: 0;\n }\n .extra__button {\n width: 632px;\n height: 40px;\n top: 15px;\n left: 651px;\n padding: 10px 0px 10px 0px;\n gap: 0px;\n opacity: 0px;\n text-decoration: none;\n background: #68B738;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #FFFFFF;\n text-transform: uppercase;\n }\n .extra__item:last-child {\n margin-bottom: 0;\n }\n .extra__gift {\n position: relative;\n width: 707px;\n min-height: 200px;\n background-image: url(../img/extra-gift-tablet.jpg);\n background-size: contain;\n background-repeat: no-repeat;\n margin: 0;\n z-index: -2;\n }\n .extra__gift::before {\n position: absolute;\n content: \"\";\n width: 707px;\n min-height: 200px;\n background: #68B738D9;\n opacity: 85%;\n z-index: -1;\n }\n .extra__image {\n display: block;\n margin: 0 auto;\n padding: 0;\n margin-top: 56px;\n margin-bottom: 46px;\n }\n .extra__description {\n margin: 0 auto;\n padding: 0;\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #FFFFFF;\n width: 161px;\n }\n}\n@media (min-width: 1440px) {\n .extra__wrapper {\n margin: 0 110px 87px 110px;\n }\n .extra__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 36px;\n margin: 0;\n padding: 0;\n margin-bottom: 80px;\n }\n .extra__table {\n display: flex;\n }\n .extra__list {\n list-style-type: none;\n margin: 0;\n padding: 0;\n width: 896px;\n }\n .extra__item {\n display: grid;\n grid-template-columns: 326px 325px 245px;\n min-height: 40px;\n margin-bottom: 40px;\n }\n .extra__name {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 20px;\n text-transform: uppercase;\n margin: 0;\n padding: 0;\n }\n .extra__amount {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n margin: 0;\n padding: 0;\n }\n .extra__price {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n margin: 0;\n padding: 0;\n margin-right: 40px;\n }\n .extra__button {\n width: 244px;\n height: 40px;\n top: 15px;\n left: 651px;\n padding: 10px 0px 10px 0px;\n gap: 0px;\n opacity: 0px;\n text-decoration: none;\n background: #68B738;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #FFFFFF;\n text-transform: uppercase;\n }\n .extra__item:last-child {\n margin-bottom: 0;\n }\n .extra__gift {\n position: relative;\n width: 245px;\n min-height: 288px;\n background-image: url(../img/extra-gift-desktop.jpg);\n background-size: cover;\n background-repeat: no-repeat;\n margin-left: 80px;\n z-index: -2;\n }\n .extra__gift::before {\n position: absolute;\n content: \"\";\n width: 245px;\n min-height: 295px;\n background: #68B738D9;\n opacity: 85%;\n z-index: -1;\n }\n .extra__image {\n display: block;\n margin: 0 auto;\n padding: 0;\n margin-top: 56px;\n margin-bottom: 46px;\n }\n .extra__description {\n margin: 0 auto;\n padding: 0;\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #FFFFFF;\n width: 161px;\n }\n}\n/*form.html*/\n.form__wrapper {\n margin: 0 20px 45px 20px;\n}\n.form__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 36px;\n margin: 0;\n padding: 0;\n margin-bottom: 37px;\n}\n.form__description {\n font-family: Oswald;\n font-size: 14px;\n font-weight: 400;\n line-height: 18px;\n width: 226px;\n margin: 0;\n padding: 0;\n margin-bottom: 39px;\n}\n.form__profile {\n width: 280px;\n}\n.form__list {\n margin: 0;\n padding: 0;\n list-style-type: none;\n}\n.form__item {\n display: flex;\n justify-content: space-between;\n margin-bottom: 14px;\n align-items: center;\n}\n.input-block__label {\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 18px;\n}\n.input-block__field {\n width: 228px;\n height: 45px;\n border: 1px 0px 0px 0px;\n border: 1px solid #E7E7E7;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 18px;\n}\n.form__food {\n width: 280px;\n padding-top: 12px;\n}\n.radio-block__label {\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 18px;\n}\n.radio-block {\n margin-top: 13px;\n}\n@media (min-width: 768px) {\n .form__wrapper {\n margin: 0 30px 65px 30px;\n }\n .form__title {\n font-family: Oswald;\n font-size: 60px;\n font-weight: 400;\n line-height: 60px;\n margin: 0;\n padding: 0;\n margin-top: 65px;\n margin-bottom: 54px;\n }\n .form__description {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n width: 323px;\n margin: 0;\n padding: 0;\n margin-bottom: 66px;\n }\n .form__tables {\n display: block;\n }\n .form__profile {\n display: flex;\n width: 628px;\n margin-bottom: 72px;\n }\n .form__list {\n margin: 0;\n padding: 0;\n list-style-type: none;\n }\n .form__item {\n display: flex;\n justify-content: space-between;\n margin-bottom: 20px;\n align-items: center;\n }\n .input-block__label {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n }\n .input-block__field {\n width: 568px;\n height: 52px;\n border: 1px 0px 0px 0px;\n border: 1px solid #E7E7E7;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n }\n .form__food {\n display: block;\n width: 570px;\n min-height: 196px;\n border: 1px solid #E7E7E7;\n padding-top: 12px;\n }\n .radio-block__label {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n }\n .radio-block {\n margin-top: 13px;\n margin-left: 28px;\n }\n}\n@media (min-width: 1440px) {\n .form__wrapper {\n margin: 0 110px 0 110px;\n }\n .form__title {\n font-family: Oswald;\n font-size: 60px;\n font-weight: 400;\n line-height: 60px;\n margin: 0;\n padding: 0;\n margin-bottom: 55px;\n }\n .form__description {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n width: 323px;\n margin: 0;\n padding: 0;\n margin-bottom: 66px;\n }\n .form__tables {\n display: flex;\n justify-content: space-between;\n }\n .form__profile {\n display: flex;\n width: 570px;\n }\n .form__list {\n margin: 0;\n padding: 0;\n list-style-type: none;\n }\n .form__item {\n display: flex;\n justify-content: space-between;\n margin-bottom: 20px;\n align-items: center;\n }\n .input-block__label {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n }\n .input-block__field {\n width: 510px;\n height: 52px;\n border: 1px 0px 0px 0px;\n border: 1px solid #E7E7E7;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n }\n .form__food {\n display: block;\n width: 570px;\n min-height: 196px;\n border: 1px solid #E7E7E7;\n padding-top: 12px;\n }\n .radio-block__label {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n }\n .radio-block {\n margin-top: 13px;\n margin-left: 28px;\n }\n}\n.contacts__wrapper {\n margin: 0 20px 24px 20px;\n}\n.contacts__title {\n font-family: Oswald;\n font-size: 24px;\n font-weight: 400;\n line-height: 26px;\n margin-bottom: 35px;\n}\n.contacts__list {\n margin: 0;\n padding: 0;\n justify-content: space-between;\n}\n.contacts__item {\n display: flex;\n width: 280px;\n align-items: center;\n margin-bottom: 14px;\n}\n.contacts__item:last-child {\n margin-bottom: 0;\n}\n@media (min-width: 768px) {\n .contacts__wrapper {\n margin: 0 30px 65px 30px;\n }\n .contacts__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 36px;\n margin: 0;\n margin-bottom: 76px;\n }\n .contacts__list {\n display: block;\n margin: 0;\n padding: 0;\n }\n .contacts__item {\n display: flex;\n width: 628px;\n align-items: center;\n margin-bottom: 20px;\n }\n}\n@media (min-width: 1440px) {\n .contacts__wrapper {\n margin: 0 110px 0 110px;\n }\n .contacts__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 36px;\n }\n .contacts__list {\n display: flex;\n margin: 0;\n padding: 0;\n justify-content: space-between;\n }\n .contacts__item {\n display: flex;\n width: 569px;\n align-items: center;\n }\n}\n.comment__wrapper {\n margin: 0 20px 23px 20px;\n}\n.comment__title {\n font-family: Oswald;\n font-size: 24px;\n font-weight: 400;\n line-height: 26px;\n}\n.comment__message {\n width: 280px;\n height: 150px;\n resize: none;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 18px;\n color: #444444;\n}\n@media (min-width: 768px) {\n .comment__wrapper {\n margin: 0 30px 65px 30px;\n }\n .comment__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 36px;\n margin-bottom: 87px;\n }\n .comment__message {\n width: 628px;\n height: 175px;\n resize: none;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n color: #444444;\n }\n}\n@media (min-width: 1440px) {\n .comment__wrapper {\n margin: 0 110px 70px 110px;\n }\n .comment__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 36px;\n }\n .comment__message {\n width: 1220px;\n height: 175px;\n resize: none;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n color: #444444;\n }\n}\n.additionally__wrapper {\n margin: 0 20px 32px 20px;\n}\n.additionally__title {\n font-family: Oswald;\n font-size: 24px;\n font-weight: 400;\n line-height: 26px;\n margin: 0;\n padding: 0;\n margin-bottom: 34px;\n}\n.additionally__list {\n margin: 0;\n padding: 0;\n list-style-type: none;\n margin-bottom: 34px;\n}\n.checkbox-block__label {\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 18px;\n text-transform: uppercase;\n}\n.additionally__button {\n display: block;\n text-decoration: none;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #FFFFFF;\n padding: 10px 0px 10px 0px;\n background: #68B738;\n width: 280px;\n margin: 0 auto;\n text-transform: uppercase;\n border: none;\n margin-bottom: 21px;\n}\n.additionally__important {\n display: flex;\n justify-content: center;\n font-family: Lato;\n font-size: 14px;\n font-weight: 400;\n line-height: 16px;\n}\n@media (min-width: 768px) {\n .additionally__wrapper {\n margin: 0 30px 60px 30px;\n }\n .additionally__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 36px;\n margin: 0;\n padding: 0;\n margin-bottom: 57px;\n }\n .additionally__list {\n display: grid;\n grid-template-columns: 344px 284px;\n margin: 0;\n padding: 0;\n list-style-type: none;\n margin-bottom: 60px;\n }\n .additionally__item {\n margin-bottom: 32px;\n }\n .checkbox-block__label {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n text-transform: uppercase;\n }\n .additionally__submit {\n display: flex;\n }\n .additionally__button {\n width: 284px;\n padding: 14px 65px;\n background: #68B738;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 26px;\n text-align: center;\n color: #FFFFFF;\n text-transform: uppercase;\n border: none;\n cursor: pointer;\n margin: 0;\n margin-right: 60px;\n }\n .additionally__important {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 16px;\n }\n}\n@media (min-width: 1440px) {\n .additionally__wrapper {\n margin: 0 110px 79px 110px;\n }\n .additionally__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 36px;\n margin: 0;\n padding: 0;\n margin-bottom: 57px;\n }\n .additionally__list {\n display: grid;\n grid-template-columns: 325px 325px 325px 325px;\n margin: 0;\n padding: 0;\n list-style-type: none;\n margin-bottom: 60px;\n }\n .checkbox-block__label {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n text-transform: uppercase;\n }\n .additionally__submit {\n display: flex;\n }\n .additionally__button {\n width: 570px;\n padding: 14px 188px 14px 188px;\n background: #68B738;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 26px;\n text-align: center;\n color: #FFFFFF;\n text-transform: uppercase;\n border: none;\n cursor: pointer;\n margin-right: 80px;\n }\n .additionally__important {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 16px;\n }\n}\n@font-face {\n font-family: \"Lato\";\n font-style: normal;\n font-weight: 400;\n src: url(\"../fonts/lato/Lato-Regular.woff2\") format(\"woff2\");\n font-display: swap;\n}\n@font-face {\n font-family: \"Oswald\";\n font-style: normal;\n font-weight: 400;\n src: url(\"../fonts/oswald/oswaldregular.woff2\") format(\"woff2\");\n font-display: swap;\n}\n@font-face {\n font-family: \"Inter\";\n font-style: normal;\n font-weight: 700;\n src: url(\"../fonts/oswald/oswaldmedium.woff2\") format(\"woff2\");\n font-display: swap;\n}\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\nhtml {\n height: 100%;\n}\nbody {\n width: 320px;\n margin: 0;\n display: flex;\n flex-direction: column;\n min-height: 100%;\n font-family: \"Oswald\", sans-serif;\n font-size: 16px;\n line-height: 24px;\n color: #000000;\n background-color: #ffffff;\n margin: 0 auto;\n}\n@media (min-width: 768px) {\n body {\n width: 768px;\n }\n}\n@media (min-width: 1440px) {\n body {\n width: 1440px;\n }\n}\n.visually-hidden {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n border: 0;\n padding: 0;\n white-space: nowrap;\n clip-path: inset(100%);\n clip: rect(0 0 0 0);\n overflow: hidden;\n}\n",".site-header {\n display: flex;\n margin: 14px 20px;\n justify-content: space-between;\n}\n\n.site-header__toggle {\n padding: 0;\n border: none;\n background-color: transparent;\n}\n\n.site-header__list {\n display: none;\n}\n\n@media (min-width: @tabletop-width) {\n\n .site-header {\n margin: 25px 30px 0 30px;\n justify-content: space-between;\n }\n\n .site-header__navigation {\n display: flex;\n }\n\n .site-header__toggle {\n display: none;\n }\n\n .site-header__list {\n margin: 0;\n padding: 0;\n list-style-type: none;\n display: flex;\n gap: 33px;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n text-align: left;\n text-transform: uppercase;\n align-items: center;\n }\n\n .site-header__link {\n color: #000000;\n text-decoration: none;\n }\n\n}\n\n@media (min-width: @desktop-width) {\n\n .site-header {\n display: flex;\n margin: 55px 110px 63px 110px;\n justify-content: space-between;\n }\n\n .site-header__navigation {\n display: flex;\n }\n\n .site-header__toggle {\n display: none;\n }\n\n .site-header__list {\n display: flex;\n gap: 33px;\n color: #ffffff;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n text-align: left;\n text-transform: uppercase;\n list-style-type: none;\n }\n\n .site-header__link {\n color: #111111;\n text-decoration: none;\n }\n\n}",".program {\n position: relative;\n}\n\n.program::before {\n position: absolute;\n content: \"\";\n background-color: #68B738D9;\n width: 320px;\n height: 302px;\n z-index: -1;\n}\n\n.program__wrapper {\n display: flex;\n flex-direction: column;\n}\n\n.program__header {\n padding-top: 27px;\n width: 249px;\n margin-left: 36px;\n}\n\n.program__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 36px;\n text-align: center;\n margin: 0;\n color: #FFFFFF;\n}\n\n.program__slogan {\n font-family: Oswald;\n font-size: 14px;\n font-weight: 400;\n line-height: 14px;\n margin-top: 25px;\n margin-bottom: 29px;\n text-align: center;\n text-transform: uppercase;\n color: #FFFFFF;\n}\n\n.program__toggle {\n padding: 10px 44px 10px 44px;\n background-color: #68B738;\n color: #ffffff;\n text-decoration: none;\n text-transform: uppercase;\n margin-top: 23px;\n width: 280px;\n margin-left: 20px;\n text-align: center;\n}\n\n@media (min-width: @tabletop-width) {\n\n .program__wrapper {\n margin: 0 30px;\n }\n\n .program::before {\n display: none;\n }\n\n .program__header {\n margin: 65px 0 50px 90px;\n padding: 0;\n width: 414px;\n }\n\n .program__title {\n font-family: Oswald;\n font-size: 60px;\n font-weight: 400;\n line-height: 60px;\n text-align: left;\n margin: 0;\n color: #000000;\n }\n\n .program__slogan {\n margin: 0;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 20px;\n text-align: left;\n margin-top: 40px;\n text-transform: uppercase;\n color: #000000;\n }\n\n .program__image {\n position: absolute;\n right: 0;\n top: 0;\n z-index: -1;\n }\n\n .program__toggle {\n width: 244px;\n margin: 0;\n padding: 14px 26px 14px 26px;\n margin-left: 90px;\n font-size: 20px;\n font-weight: 400;\n line-height: 26px;\n }\n\n}\n\n@media (min-width: @desktop-width) {\n\n .program {\n min-height: 542px;\n }\n\n .program::before {\n display: block;\n width: 720px;\n height: 694px;\n right: 0;\n top: -235px;\n }\n\n .program__wrapper {\n margin: 0 110px 0 110px;\n }\n\n .program__header {\n margin: 110px 0 0 80px;\n width: 414px;\n }\n\n .program__title {\n font-family: Oswald;\n font-size: 60px;\n font-weight: 400;\n line-height: 60px;\n text-align: left;\n margin: 0;\n color: #000000;\n }\n\n .program__slogan {\n margin: 0;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 20px;\n text-align: left;\n margin-top: 40px;\n margin-bottom: 52px;\n text-transform: uppercase;\n color: #000000;\n }\n\n .program__image {\n position: absolute;\n right: 0;\n top: 0;\n }\n\n .program__toggle {\n width: 244px;\n padding: 14px 26px 14px 26px;\n margin-left: 80px;\n font-size: 20px;\n font-weight: 400;\n line-height: 26px;\n }\n\n}\n",".food__wrapper {\n display: flex;\n margin: 20px;\n}\n\n.food__list {\n list-style-type: none;\n padding: 0;\n margin: 0;\n}\n\n.food__item {\n width: 280px;\n min-height: 266px;\n background-color: #F2F2F2;\n margin: 0;\n padding: 0;\n margin-bottom: 20px;\n}\n\n.food__title {\n display: flex;\n align-items: center;\n font-family: Oswald;\n font-size: 24px;\n font-weight: 400;\n line-height: 37px;\n text-transform: uppercase;\n padding: 21px 0 22px 20px;\n margin: 0;\n}\n\n.food__description {\n margin: 0 33px 38px 20px;\n font-family: Lato;\n font-size: 14px;\n font-weight: 400;\n line-height: 18px;\n}\n\n.food__image-slimming {\n margin-right: 20px;\n}\n\n.food__image-weight {\n margin-right: 47px;\n}\n\n.food__catalog {\n margin: 0 0 22px 20px;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 16px;\n color: #000000;\n text-decoration: none;\n text-transform: uppercase;\n}\n\n.food__link {\n margin-left: 15px;\n}\n\n@media (min-width: @tabletop-width) {\n .food__wrapper {\n margin: 0 30px 45px 30px;\n }\n\n .food__list {\n display: flex;\n flex-direction: column;\n gap: 30px;\n }\n\n .food__item {\n width: 708px;\n min-height: 372px;\n background-color: #F2F2F2;\n margin-bottom: 0;\n }\n\n .food__title {\n margin: 41px 0 39px 52px;\n font-size: 36px;\n line-height: 36px;\n padding: 0;\n }\n\n .food__description {\n margin: 0 61px 23px 52px;\n font-size: 16px;\n line-height: 24px;\n }\n\n .food__image-slimming {\n margin-right: 62px;\n }\n\n .food__image-weight {\n margin-right: 47px;\n }\n\n .food__catalog {\n margin: 0 0 59px 52px;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n }\n\n .food__link {\n margin-left: 25px;\n }\n\n}\n\n@media (min-width: @desktop-width) {\n\n .food__wrapper {\n margin: 0 110px 71px 110px;\n }\n\n .food__list {\n display: flex;\n flex-direction: row;\n gap: 80px;\n }\n\n .food__item {\n width: 570px;\n min-height: 374px;\n background-color: #F2F2F2;\n margin-bottom: 0;\n }\n\n .food__title {\n margin: 41px 0 39px 52px;\n font-size: 36px;\n line-height: 36px;\n }\n\n .food__description {\n margin: 0 61px 23px 52px;\n font-size: 16px;\n line-height: 24px;\n }\n\n .food__image-slimming {\n margin-right: 62px;\n }\n\n .food__image-weight {\n margin-right: 47px;\n }\n\n .food__catalog {\n margin: 0 0 59px 52px;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n }\n\n .food__link {\n margin-left: 25px;\n }\n\n}",".work__wrapper {\n margin: 0 20px 49px 20px;\n}\n\n.work__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 40px;\n margin: 0;\n margin-bottom: 40px;\n}\n\n.work__list {\n list-style-type: none;\n padding: 0;\n margin: 0;\n}\n\n.work__item {\n display: flex;\n width: 280px;\n min-height: 60px;\n margin-bottom: 20px;\n}\n\n.work__item:last-child {\n margin-bottom: 0;\n}\n\n.work__image {\n margin-right: 20px;\n}\n\n.work__description {\n font-family: Lato;\n font-size: 14px;\n font-weight: 400;\n line-height: 18px;\n margin: 0;\n padding: 0;\n}\n\n@media (min-width: @tabletop-width) {\n\n .work__wrapper {\n margin: 0 30px 92px 30px;\n }\n\n .work__title {\n font-family: Oswald;\n font-size: 60px;\n font-weight: 400;\n line-height: 60px;\n margin: 0;\n margin-bottom: 32px;\n }\n\n .work__list {\n display: grid;\n grid-template-columns: 346px 230px;\n counter-reset: workCounter;\n list-style-type: none;\n padding: 0;\n gap: 37px;\n margin: 0;\n }\n\n .work__item {\n flex-direction: column;\n counter-increment: workCounter;\n width: 230px;\n min-height: 280px;\n &--sheet {\n position: relative;\n }\n &--powder {\n position: relative;\n }\n &--reception {\n position: relative;\n }\n &--time {\n position: relative;\n }\n }\n\n .work__item::before {\n position: absolute;\n content: counter(workCounter);\n width: 134px;\n height: 280px;\n font-size: 280px;\n font-weight: 400;\n line-height: 280px;\n text-align: center;\n color: #F2F2F2;\n z-index: -1;\n left: 50%;\n }\n\n .work__image {\n margin-top: 40px;\n }\n\n .work__description {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 24px;\n }\n\n}\n\n@media (min-width: @desktop-width) {\n\n .work__wrapper {\n margin: 0 110px 69px 110px;\n }\n\n .work__title {\n font-family: Oswald;\n font-size: 60px;\n font-weight: 400;\n line-height: 60px;\n margin: 0;\n margin-bottom: 32px;\n }\n\n .work__list {\n display: flex;\n counter-reset: workCounter;\n list-style-type: none;\n padding: 0;\n gap: 94px;\n margin: 0;\n }\n\n .work__item {\n position: relative;\n flex-direction: column;\n counter-increment: workCounter;\n width: 230px;\n min-height: 280px;\n &--sheet {\n position: relative;\n }\n &--powder {\n position: relative;\n }\n &--reception {\n position: relative;\n }\n &--time {\n position: relative;\n }\n }\n\n .work__item::before {\n position: absolute;\n content: counter(workCounter);\n width: 134px;\n height: 280px;\n font-size: 280px;\n font-weight: 400;\n line-height: 280px;\n text-align: center;\n color: #F2F2F2;\n z-index: -1;\n left: 50%;\n }\n\n .work__image {\n margin-top: 40px;\n }\n\n .work__description {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 24px;\n }\n\n}\n",".example {\n position: relative;\n background-color: #F2F2F2;\n}\n\n.example__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 40px;\n margin: 0;\n padding: 0;\n padding: 25px 0 0 20px;\n}\n\n.example__wrapper {\n background-color: #F2F2F2;\n}\n\n.example__sample {\n margin: 40px 20px 0 20px;\n}\n\n.example__description {\n margin: 0;\n padding: 0;\n width: 280px;\n min-height: 108px;\n font-family: Lato;\n font-size: 14px;\n font-weight: 400;\n line-height: 18px;\n margin-bottom: 20px;\n}\n\n.example__tables {\n display: flex;\n margin-bottom: 20px;\n}\n\n.example__result {\n width: 124px;\n min-height: 56px;\n border: 1px solid #CDCDCD;\n}\n\n.example__value {\n margin: 0;\n padding: 0;\n font-family: Oswald;\n font-size: 24px;\n font-weight: 400;\n line-height: 24px;\n text-align: center;\n margin: 15px 0 18px 0;\n}\n\n.example__expenses {\n font-family: Lato;\n font-size: 12px;\n font-weight: 400;\n line-height: 12px;\n text-align: center;\n margin: 0;\n padding: 0;\n}\n\n.example__costs {\n display: flex;\n justify-content: center;\n}\n\n.example__price {\n font-family: Oswald;\n font-size: 14px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n text-transform: uppercase;\n}\n\n.example__food {\n font-family: Oswald;\n font-size: 14px;\n font-weight: 400;\n line-height: 20px;\n text-transform: uppercase;\n}\n\n.example__slider {\n position: relative;\n display: flex;\n width: 560px;\n}\n\n.example__after {\n display: flex;\n justify-content: flex-end;\n}\n\n.example__button {\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 40px;\n height: 40px;\n padding: 11px 8px 11px 8px;\n border-radius: 20px;\n border: 2px solid #666666;\n background: #FFFFFF;\n top: 129px;\n right: 50%;\n}\n\n.example__button::before {\n position: absolute;\n content: \"\";\n width: 40px;\n height: 40px;\n padding: 11px 8px 11px 8px;\n border-radius: 20px;\n border: 2px solid #666666;\n background: #FFFFFF;\n z-index: 1;\n}\n\n.example__button::after {\n position: absolute;\n content: \"\";\n width: 4px;\n height: 256px;\n border-radius: 2px;\n background: #666666;\n transform: translate(0px, -21px);\n}\n\n.example__button--vector {\n z-index: 1;\n}\n\n@media (min-width: @tabletop-width) {\n\n .example {\n position: relative;\n }\n\n .example__title {\n font-family: Oswald;\n font-size: 60px;\n font-weight: 400;\n line-height: 60px;\n margin-left: 30px;\n padding: 0;\n }\n\n .example__wrapper {\n display: flex;\n flex-direction: column;\n background-color: #F2F2F2;\n margin: 0 30px;\n }\n\n .example__sample {\n margin: 0;\n margin-top: 60px;\n }\n\n .example__description {\n margin: 0;\n padding: 0;\n width: 436px;\n min-height: 96px;\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 24px;\n margin-bottom: 55px;\n }\n\n .example__total {\n display: flex;\n gap: 167px;\n align-items: center;\n }\n\n .example__tables {\n display: flex;\n margin-bottom: 23px;\n }\n\n .example__result {\n width: 162px;\n min-height: 72px;\n gap: 0px;\n border: 1px 0px 0px 0px;\n opacity: 0px;\n border: 1px solid #CDCDCD;\n }\n\n .example__value {\n margin: 0;\n padding: 0;\n font-family: Oswald;\n font-size: 30px;\n font-weight: 400;\n line-height: 37px;\n text-align: center;\n margin: 15px 0 11px 0;\n }\n\n .example__expenses {\n font-family: Lato;\n font-size: 14px;\n font-weight: 400;\n line-height: 14px;\n text-align: center;\n }\n\n .example__costs {\n display: block;\n }\n\n .example__price {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 20px;\n text-align: right;\n text-transform: uppercase;\n margin: 0;\n padding: 0;\n }\n\n .example__food {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 20px;\n text-transform: uppercase;\n margin: 0;\n padding: 0;\n }\n\n .example__slider {\n position: relative;\n display: flex;\n width: 560px;\n }\n\n .example__after {\n display: flex;\n justify-content: flex-end;\n }\n\n .example__button {\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 40px;\n height: 40px;\n padding: 11px 8px 11px 8px;\n border-radius: 20px;\n border: 2px solid #666666;\n background: #FFFFFF;\n top: 257px;\n right: 50%;\n }\n\n .example__button::before {\n position: absolute;\n content: \"\";\n width: 40px;\n height: 40px;\n padding: 11px 8px 11px 8px;\n border-radius: 20px;\n border: 2px solid #666666;\n background: #FFFFFF;\n z-index: 1;\n }\n\n .example__button::after {\n position: absolute;\n content: \"\";\n width: 4px;\n height: 512px;\n border-radius: 2px;\n background: #666666;\n transform: translate(0px, -21px);\n }\n\n .example__button--vector {\n z-index: 1;\n }\n}\n\n@media (min-width: @desktop-width) {\n\n .example {\n position: relative;\n }\n\n .example__title {\n font-family: Oswald;\n font-size: 60px;\n font-weight: 400;\n line-height: 60px;\n margin: 0 0 76px 110px;\n }\n\n .example__wrapper {\n display: flex;\n background-color: #F2F2F2;\n }\n\n .example__sample {\n margin: 70px 224px 54px 110px;\n display: flex;\n }\n\n .example__block {\n width: 436px;\n margin-right: 224px;\n }\n\n .example__description {\n margin: 0;\n padding: 0;\n width: 436px;\n min-height: 96px;\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 24px;\n margin-bottom: 69px;\n }\n\n .example__total {\n display: block;\n }\n\n .example__tables {\n display: flex;\n margin-bottom: 23px;\n }\n\n .example__result {\n width: 162px;\n min-height: 72px;\n gap: 0px;\n border: 1px 0px 0px 0px;\n opacity: 0px;\n border: 1px solid #CDCDCD;\n }\n\n .example__value {\n margin: 0;\n padding: 0;\n font-family: Oswald;\n font-size: 30px;\n font-weight: 400;\n line-height: 37px;\n text-align: center;\n margin: 15px 0 11px 0;\n }\n\n .example__expenses {\n font-family: Lato;\n font-size: 14px;\n font-weight: 400;\n line-height: 14px;\n text-align: center;\n }\n\n .example__costs {\n display: flex;\n justify-content: left;\n }\n\n .example__price {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n text-transform: uppercase;\n }\n\n .example__food {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 20px;\n margin-right: 63px;\n text-transform: uppercase;\n }\n\n .example__slider {\n position: relative;\n display: flex;\n }\n\n .example__after {\n display: flex;\n justify-content: flex-end;\n }\n\n .example__button {\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 40px;\n height: 40px;\n padding: 11px 8px 11px 8px;\n border-radius: 20px;\n border: 2px solid #666666;\n background: #FFFFFF;\n top: 50%;\n right: 50%;\n }\n\n .example__button::before {\n position: absolute;\n content: \"\";\n width: 40px;\n height: 40px;\n padding: 11px 8px 11px 8px;\n border-radius: 20px;\n border: 2px solid #666666;\n background: #FFFFFF;\n z-index: 1;\n }\n\n .example__button::after {\n position: absolute;\n content: \"\";\n width: 4px;\n height: 512px;\n border-radius: 2px;\n background: #666666;\n transform: translate(0px, -21px);\n }\n\n .example__button--vector {\n z-index: 1;\n }\n}\n",".map__wrapper {\n padding: 0;\n margin: 0;\n}\n\n.map__contacts {\n display: flex;\n margin: 0;\n padding: 0;\n width: 320px;\n min-height: 122px;\n background-color: #FFFFFF;\n flex-shrink: 0;\n padding: 26px 20px;\n}\n\n.map__invite {\n margin: 0;\n padding: 0;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-transform: uppercase;\n}\n.map__address {\n margin: 0;\n padding: 0;\n font-family: Lato;\n font-size: 14px;\n font-weight: 400;\n line-height: 20px;\n}\n.map__city {\n margin: 0;\n padding: 0;\n font-family: Lato;\n font-size: 14px;\n font-weight: 400;\n line-height: 20px;\n}\n\n.map__iframe {\n display: block;\n border: none;\n width: 320px;\n height: 362px;\n}\n\n@media (min-width: @tabletop-width) {\n\n .map__wrapper {\n padding: 0;\n margin: 0;\n }\n\n .map__contacts {\n display: flex;\n justify-content: space-between;\n margin: 0;\n padding: 0;\n width: 768px;\n min-height: 200px;\n background-color: #FFFFFF;\n flex-shrink: 0;\n padding: 60px 70px;\n }\n\n .map__invite {\n margin: 0;\n padding: 0;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 26px;\n text-transform: uppercase;\n width: 163px;\n }\n\n .map__description {\n width: 157px;\n text-align: right;\n }\n\n .map__address {\n margin: 0;\n padding: 0;\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n }\n .map__city {\n margin: 0;\n padding: 0;\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n }\n\n .map__iframe {\n display: block;\n border: none;\n width: 768px;\n height: 400px;\n }\n\n}\n\n@media (min-width: @desktop-width) {\n\n .map__wrapper {\n display: flex;\n min-height: 400px;\n padding: 0;\n margin: 0;\n }\n\n .map__contacts {\n display: none;\n margin: 0;\n padding: 0;\n width: 565px;\n min-height: 199px;\n background-color: #FFFFFF;\n flex-shrink: 0;\n margin: 95px 0 106px 110px;\n padding: 60px 78px 60px 80px;\n }\n\n .map__invite {\n margin: 0;\n padding: 0;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 26px;\n text-transform: uppercase;\n margin-right: 87px;\n }\n\n .map__description {\n &--address {\n margin: 0;\n padding: 0;\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n margin-bottom: 19px;\n }\n &--city {\n margin: 0;\n padding: 0;\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n margin-bottom: 19px;\n }\n }\n\n .map__iframe {\n display: block;\n border: none;\n width: 1440px;\n height: 400px;\n }\n\n}\n",".main-footer__wrapper {\n margin: 0;\n padding: 40px 20px;\n justify-content: space-between;\n align-items: center;\n}\n\n.social__list {\n display: flex;\n list-style-type: none;\n gap: 24px;\n margin: 0;\n padding: 0;\n}\n\n.logotype {\n margin: 0px 76px 40px 76px;\n}\n\n.social {\n margin: 0 74px 40px 74px;\n}\n\n.copyright {\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n\n.copyright__link {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-decoration: none;\n color: #444444;\n}\n\n@media (min-width: @tabletop-width) {\n\n .main-footer__wrapper {\n display: flex;\n margin: 0;\n padding: 0;\n padding: 55px 30px;\n justify-content: space-between;\n align-items: center;\n }\n\n .social__list {\n display: flex;\n list-style-type: none;\n gap: 24px;\n margin: 0;\n padding: 0;\n margin-left: 40px;\n }\n\n .logotype {\n margin: 0;\n padding: 0;\n }\n\n .social {\n margin: 0;\n padding: 0;\n }\n\n .copyright__link {\n display: none;\n }\n\n}\n\n@media (min-width: @desktop-width) {\n\n .main-footer__wrapper {\n display: flex;\n margin: 0;\n padding: 0;\n padding: 66px 110px 66px 110px;\n justify-content: space-between;\n align-items: center;\n }\n\n .social__list {\n display: flex;\n list-style-type: none;\n gap: 24px;\n margin: 0;\n padding: 0;\n margin-left: 40px;\n }\n\n .copyright__link {\n display: none;\n }\n\n}\n",".products__wrapper {\n margin: 0 20px 50px 20px;\n}\n\n.products__title {\n margin: 0;\n padding: 0;\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 36px;\n margin-bottom: 41px;\n}\n\n.products__list {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n\n.products__item {\n position: relative;\n}\n\n@media (min-width: @tabletop-width) {\n\n .products__wrapper {\n margin: 65px 30px 70px 30px;\n }\n\n .products__title {\n margin: 0;\n padding: 0;\n font-family: Oswald;\n font-size: 60px;\n font-weight: 400;\n line-height: 60px;\n margin-bottom: 84px;\n }\n\n .products__list {\n display: grid;\n grid-template-columns: 324px 324px;\n grid-template-rows: 511px 511px 511px 511px;\n gap: 60px;\n list-style-type: none;\n margin: 0;\n padding: 0;\n }\n\n .products__item {\n position: relative;\n }\n\n .products__item::before {\n position: absolute;\n content: \"\";\n background-color: #F2F2F2;\n width: 324px;\n min-height: 430px;\n z-index: -1;\n bottom: 0;\n }\n\n .products__item:last-child::before {\n position: absolute;\n content: \"\";\n background-color: #FFFFFF;\n width: 324px;\n min-height: 430px;\n z-index: -1;\n bottom: 0;\n border: 2px solid #F2F2F2;\n }\n\n}\n\n@media (min-width: @desktop-width) {\n\n .products__wrapper {\n margin: 0 110px 76px 110px;\n }\n\n .products__title {\n margin: 0;\n padding: 0;\n font-family: Oswald;\n font-size: 60px;\n font-weight: 400;\n line-height: 60px;\n margin-bottom: 84px;\n }\n\n .products__list {\n display: grid;\n grid-template-columns: 245px 245px 245px 245px;\n grid-template-rows: 511px 511px;\n gap: 80px;\n list-style-type: none;\n margin: 0;\n padding: 0;\n }\n\n .products__item {\n position: relative;\n }\n\n .products__item::before {\n position: absolute;\n content: \"\";\n background-color: #F2F2F2;\n width: 245px;\n min-height: 430px;\n z-index: -1;\n bottom: 0;\n }\n\n .products__item:last-child::before {\n position: absolute;\n content: \"\";\n background-color: #FFFFFF;\n width: 245px;\n min-height: 430px;\n z-index: -1;\n bottom: 0;\n border: 2px solid #F2F2F2;\n }\n\n}\n",".product {\n margin-bottom: 45px;\n}\n\n.product__card {\n display: flex;\n}\n\n.product__link {\n text-decoration: none;\n width: 140px;\n}\n\n.product__image {\n display: block;\n margin: 0 auto;\n}\n\n.product__name {\n display: flex;\n margin: 0;\n padding: 0;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-transform: uppercase;\n color: #222222;\n text-align: center;\n width: 76px;\n margin-bottom: 14px;\n}\n\n.product__description {\n list-style-type: none;\n margin: 0;\n padding: 0;\n width: 140px;\n}\n\n.product__item {\n display: flex;\n justify-content: space-between;\n}\n\n.product__category {\n font-family: Lato;\n font-size: 12px;\n font-weight: 400;\n line-height: 16px;\n}\n\n.product__value {\n font-family: Lato;\n font-size: 12px;\n font-weight: 400;\n line-height: 16px;\n}\n\n.product__button {\n display: block;\n text-decoration: none;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #FFFFFF;\n padding: 10px 0px 10px 0px;\n background: #68B738;\n width: 280px;\n margin: 0 auto;\n text-transform: uppercase;\n}\n\n.product-more__image {\n margin: 0;\n padding: 0;\n margin-bottom: 23px;\n}\n\n.product-more__name {\n display: flex;\n margin: 0 auto;\n padding: 0;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-transform: uppercase;\n color: #222222;\n text-align: center;\n width: 204px;\n margin-bottom: 8px;\n}\n\n.product-more__show {\n font-family: Lato;\n font-size: 12px;\n font-weight: 400;\n line-height: 16px;\n text-align: center;\n margin: 0 51px 21px 51px;\n}\n\n.product-more__button {\n display: block;\n text-decoration: none;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #444444;\n padding: 10px 0px 10px 0px;\n background: #F2F2F2;\n width: 280px;\n margin: 0 auto;\n text-transform: uppercase;\n}\n\n@media (min-width: @tabletop-width) {\n\n .product {\n margin-bottom: 0;\n }\n\n .product__card {\n display: block;\n }\n\n .product__link {\n text-decoration: none;\n }\n\n .product__image {\n display: block;\n margin: 0 auto;\n }\n\n .product__name {\n display: flex;\n margin: 0 auto;\n padding: 0;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 24px;\n text-transform: uppercase;\n color: #222222;\n text-align: center;\n width: 140px;\n margin-bottom: 23px;\n margin-top: 19px;\n }\n\n .product__description {\n list-style-type: none;\n margin: 0;\n padding: 0;\n margin: 0 auto;\n width: 169px;\n margin-bottom: 37px;\n }\n\n .product__item {\n display: flex;\n justify-content: space-between;\n }\n\n .product__category {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n }\n\n .product__value {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n }\n\n .product__button {\n display: block;\n text-decoration: none;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #FFFFFF;\n padding: 10px 0px 10px 0px;\n background: #68B738;\n width: 250px;\n margin: 0 auto;\n text-transform: uppercase;\n }\n\n .product-more__image {\n display: block;\n padding: 0;\n margin: 50px auto;\n }\n\n .product-more__name {\n display: flex;\n margin: 0 auto;\n padding: 0;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 24px;\n text-transform: uppercase;\n color: #222222;\n text-align: center;\n width: 140px;\n margin-bottom: 26px;\n }\n\n .product-more__show {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 18px;\n text-align: center;\n margin: 0 38px 43px 38px;\n }\n\n .product-more__button {\n display: block;\n text-decoration: none;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #444444;\n padding: 10px 0px 10px 0px;\n background: #F2F2F2;\n width: 169px;\n margin: 0 auto;\n text-transform: uppercase;\n }\n\n}\n\n@media (min-width: @desktop-width) {\n\n .product {\n margin-bottom: 0;\n }\n\n .product__card {\n display: block;\n }\n\n .product__link {\n text-decoration: none;\n }\n\n .product__image {\n display: block;\n margin: 0 auto;\n }\n\n .product__name {\n display: flex;\n margin: 0 auto;\n padding: 0;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 24px;\n text-transform: uppercase;\n color: #222222;\n text-align: center;\n width: 140px;\n margin-bottom: 23px;\n margin-top: 19px;\n }\n\n .product__description {\n list-style-type: none;\n margin: 0;\n padding: 0;\n margin: 0 38px 43px 38px;\n width: 169px;\n }\n\n .product__item {\n display: flex;\n justify-content: space-between;\n margin-bottom: 10px;\n }\n\n .product__item:nth-child(3n) {\n margin-bottom: 0;\n }\n\n .product__category {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n }\n\n .product__value {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n }\n\n .product__button {\n display: block;\n text-decoration: none;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #FFFFFF;\n padding: 10px 0px 10px 0px;\n background: #68B738;\n width: 169px;\n margin: 0 auto;\n text-transform: uppercase;\n }\n\n .product-more__image {\n padding: 0;\n margin: 130px 93px 40px 93px;\n }\n\n .product-more__name {\n display: flex;\n margin: 0 auto;\n padding: 0;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 24px;\n text-transform: uppercase;\n color: #222222;\n text-align: center;\n width: 140px;\n margin-bottom: 26px;\n }\n\n .product-more__show {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 18px;\n text-align: center;\n margin: 0 38px 43px 38px;\n }\n\n .product-more__button {\n display: block;\n text-decoration: none;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #444444;\n padding: 10px 0px 10px 0px;\n background: #F2F2F2;\n width: 169px;\n margin: 0 auto;\n text-transform: uppercase;\n }\n\n}\n",".extra__wrapper {\n margin: 0 20px 35px 20px;\n}\n\n.extra__title {\n font-family: Oswald;\n font-size: 24px;\n font-weight: 400;\n line-height: 24px;\n margin: 0;\n padding: 0;\n margin-bottom: 49px;\n}\n\n.extra__list {\n list-style-type: none;\n margin: 0;\n padding: 0;\n}\n\n.extra__item {\n margin-bottom: 31px;\n}\n\n.extra__name {\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 16px;\n text-transform: uppercase;\n margin: 0;\n padding: 0;\n margin-bottom: 13px;\n}\n\n.extra__card {\n display: flex;\n justify-content: space-between;\n margin-bottom: 15px;\n}\n\n.extra__amount {\n font-family: Lato;\n font-size: 14px;\n font-weight: 400;\n line-height: 14px;\n margin: 0;\n padding: 0;\n}\n\n.extra__price {\n font-family: Lato;\n font-size: 14px;\n font-weight: 400;\n line-height: 14px;\n margin: 0;\n padding: 0;\n}\n\n.extra__button {\n display: block;\n text-decoration: none;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #FFFFFF;\n padding: 10px 0px 10px 0px;\n background: #68B738;\n width: 280px;\n margin: 0 auto;\n text-transform: uppercase;\n}\n\n.extra__item:last-child {\n margin-bottom: 54px;\n}\n\n.extra__gift {\n position: relative;\n width: 280px;\n min-height: 290px;\n background-image: url(../img/extra-gift-mobile.jpg);\n background-size: cover;\n background-repeat: no-repeat;\n z-index: -2;\n}\n\n.extra__gift::before {\n position: absolute;\n content: \"\";\n width: 280px;\n min-height: 290px;\n background: #68B738D9;\n opacity: 85%;\n z-index: -1;\n}\n\n.extra__image {\n display: block;\n margin: 0 auto;\n padding: 0;\n}\n\n.extra__description {\n margin: 0 auto;\n padding: 0;\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #FFFFFF;\n width: 161px;\n}\n\n@media (min-width: @tabletop-width) {\n\n .extra__wrapper {\n margin: 0 30px 75px 30px;\n }\n\n .extra__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 36px;\n margin: 0;\n padding: 0;\n margin-bottom: 108px;\n }\n\n .extra__table {\n display: block;\n }\n\n .extra__list {\n list-style-type: none;\n margin: 0;\n padding: 0;\n width: 708px;\n }\n\n .extra__item {\n display: block;\n width: 632px;\n min-height: 85px;\n margin-bottom: 40px;\n }\n\n .extra__total {\n display: flex;\n justify-content: space-between;\n }\n\n .extra__name {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 20px;\n text-transform: uppercase;\n margin: 0;\n padding: 0;\n }\n\n .extra__amount {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n margin: 0;\n padding: 0;\n margin-right: 49px;\n }\n\n .extra__price {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n margin: 0;\n padding: 0;\n }\n\n .extra__button {\n width: 632px;\n height: 40px;\n top: 15px;\n left: 651px;\n padding: 10px 0px 10px 0px;\n gap: 0px;\n opacity: 0px;\n text-decoration: none;\n background: #68B738;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #FFFFFF;\n text-transform: uppercase;\n }\n\n .extra__item:last-child {\n margin-bottom: 0;\n }\n\n .extra__gift {\n position: relative;\n width: 707px;\n min-height: 200px;\n background-image: url(../img/extra-gift-tablet.jpg);\n background-size: contain;\n background-repeat: no-repeat;\n margin: 0;\n z-index: -2;\n }\n\n .extra__gift::before {\n position: absolute;\n content: \"\";\n width: 707px;\n min-height: 200px;\n background: #68B738D9;\n opacity: 85%;\n z-index: -1;\n }\n\n .extra__image {\n display: block;\n margin: 0 auto;\n padding: 0;\n margin-top: 56px;\n margin-bottom: 46px;\n }\n\n .extra__description {\n margin: 0 auto;\n padding: 0;\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #FFFFFF;\n width: 161px;\n }\n}\n\n@media (min-width: @desktop-width) {\n\n .extra__wrapper {\n margin: 0 110px 87px 110px;\n }\n\n .extra__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 36px;\n margin: 0;\n padding: 0;\n margin-bottom: 80px;\n }\n\n .extra__table {\n display: flex;\n }\n\n .extra__list {\n list-style-type: none;\n margin: 0;\n padding: 0;\n width: 896px;\n }\n\n .extra__item {\n display: grid;\n grid-template-columns: 326px 325px 245px;\n min-height: 40px;\n margin-bottom: 40px;\n }\n\n .extra__name {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 20px;\n text-transform: uppercase;\n margin: 0;\n padding: 0;\n }\n\n .extra__amount {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n margin: 0;\n padding: 0;\n }\n\n .extra__price {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n margin: 0;\n padding: 0;\n margin-right: 40px;\n }\n\n .extra__button {\n width: 244px;\n height: 40px;\n top: 15px;\n left: 651px;\n padding: 10px 0px 10px 0px;\n gap: 0px;\n opacity: 0px;\n text-decoration: none;\n background: #68B738;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #FFFFFF;\n text-transform: uppercase;\n }\n\n .extra__item:last-child {\n margin-bottom: 0;\n }\n\n .extra__gift {\n position: relative;\n width: 245px;\n min-height: 288px;\n background-image: url(../img/extra-gift-desktop.jpg);\n background-size: cover;\n background-repeat: no-repeat;\n margin-left: 80px;\n z-index: -2;\n }\n\n .extra__gift::before {\n position: absolute;\n content: \"\";\n width: 245px;\n min-height: 295px;\n background: #68B738D9;\n opacity: 85%;\n z-index: -1;\n }\n\n .extra__image {\n display: block;\n margin: 0 auto;\n padding: 0;\n margin-top: 56px;\n margin-bottom: 46px;\n }\n\n .extra__description {\n margin: 0 auto;\n padding: 0;\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #FFFFFF;\n width: 161px;\n }\n}\n",".form__wrapper {\n margin: 0 20px 45px 20px;\n}\n\n.form__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 36px;\n margin: 0;\n padding: 0;\n margin-bottom: 37px;\n}\n\n.form__description {\n font-family: Oswald;\n font-size: 14px;\n font-weight: 400;\n line-height: 18px;\n width: 226px;\n margin: 0;\n padding: 0;\n margin-bottom: 39px;\n}\n\n.form__profile {\n width: 280px;\n}\n\n.form__list {\n margin: 0;\n padding: 0;\n list-style-type: none;\n}\n\n.form__item {\n display: flex;\n justify-content: space-between;\n margin-bottom: 14px;\n align-items: center;\n}\n\n.input-block__label {\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 18px;\n}\n\n.input-block__field {\n width: 228px;\n height: 45px;\n border: 1px 0px 0px 0px;\n border: 1px solid #E7E7E7;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 18px;\n}\n\n.form__food {\n width: 280px;\n padding-top: 12px;\n}\n\n.radio-block__label {\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 18px;\n}\n\n.radio-block {\n margin-top: 13px;\n}\n\n@media (min-width: @tabletop-width) {\n\n .form__wrapper {\n margin: 0 30px 65px 30px;\n }\n\n .form__title {\n font-family: Oswald;\n font-size: 60px;\n font-weight: 400;\n line-height: 60px;\n margin: 0;\n padding: 0;\n margin-top: 65px;\n margin-bottom: 54px;\n }\n\n .form__description {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n width: 323px;\n margin: 0;\n padding: 0;\n margin-bottom: 66px;\n }\n\n .form__tables {\n display: block;\n }\n\n .form__profile {\n display: flex;\n width: 628px;\n margin-bottom: 72px;\n }\n\n .form__list {\n margin: 0;\n padding: 0;\n list-style-type: none;\n }\n\n .form__item {\n display: flex;\n justify-content: space-between;\n margin-bottom: 20px;\n align-items: center;\n }\n\n .input-block__label {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n }\n\n .input-block__field {\n width: 568px;\n height: 52px;\n border: 1px 0px 0px 0px;\n border: 1px solid #E7E7E7;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n }\n\n .form__food {\n display: block;\n width: 570px;\n min-height: 196px;\n border: 1px solid #E7E7E7;\n padding-top: 12px;\n }\n\n .radio-block__label {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n }\n\n .radio-block {\n margin-top: 13px;\n margin-left: 28px;\n }\n\n}\n\n@media (min-width: @desktop-width) {\n\n .form__wrapper {\n margin: 0 110px 0 110px;\n }\n\n .form__title {\n font-family: Oswald;\n font-size: 60px;\n font-weight: 400;\n line-height: 60px;\n margin: 0;\n padding: 0;\n margin-bottom: 55px;\n }\n\n .form__description {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n width: 323px;\n margin: 0;\n padding: 0;\n margin-bottom: 66px;\n }\n\n .form__tables {\n display: flex;\n justify-content: space-between;\n }\n\n .form__profile {\n display: flex;\n width: 570px;\n }\n\n .form__list {\n margin: 0;\n padding: 0;\n list-style-type: none;\n }\n\n .form__item {\n display: flex;\n justify-content: space-between;\n margin-bottom: 20px;\n align-items: center;\n }\n\n .input-block__label {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n }\n\n .input-block__field {\n width: 510px;\n height: 52px;\n border: 1px 0px 0px 0px;\n border: 1px solid #E7E7E7;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n }\n\n .form__food {\n display: block;\n width: 570px;\n min-height: 196px;\n border: 1px solid #E7E7E7;\n padding-top: 12px;\n }\n\n .radio-block__label {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n }\n\n .radio-block {\n margin-top: 13px;\n margin-left: 28px;\n }\n\n}",".contacts__wrapper {\n margin: 0 20px 24px 20px;\n}\n\n.contacts__title {\n font-family: Oswald;\n font-size: 24px;\n font-weight: 400;\n line-height: 26px;\n margin-bottom: 35px;\n}\n\n.contacts__list {\n margin: 0;\n padding: 0;\n justify-content: space-between;\n}\n\n.contacts__item {\n display: flex;\n width: 280px;\n align-items: center;\n margin-bottom: 14px;\n}\n\n.contacts__item:last-child {\n margin-bottom: 0;\n}\n\n@media (min-width: @tabletop-width) {\n\n .contacts__wrapper {\n margin: 0 30px 65px 30px;\n }\n\n .contacts__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 36px;\n margin: 0;\n margin-bottom: 76px;\n }\n\n .contacts__list {\n display: block;\n margin: 0;\n padding: 0;\n }\n\n .contacts__item {\n display: flex;\n width: 628px;\n align-items: center;\n margin-bottom: 20px;\n }\n\n}\n\n@media (min-width: @desktop-width) {\n\n .contacts__wrapper {\n margin: 0 110px 0 110px;\n }\n\n .contacts__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 36px;\n }\n\n .contacts__list {\n display: flex;\n margin: 0;\n padding: 0;\n justify-content: space-between;\n }\n\n .contacts__item {\n display: flex;\n width: 569px;\n align-items: center;\n }\n\n}",".comment__wrapper {\n margin: 0 20px 23px 20px;\n}\n\n.comment__title {\n font-family: Oswald;\n font-size: 24px;\n font-weight: 400;\n line-height: 26px;\n}\n\n.comment__message {\n width: 280px;\n height: 150px;\n resize: none;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 18px;\n color: #444444;\n}\n\n@media (min-width: @tabletop-width) {\n\n .comment__wrapper {\n margin: 0 30px 65px 30px;\n }\n\n .comment__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 36px;\n margin-bottom: 87px;\n }\n\n .comment__message {\n width: 628px;\n height: 175px;\n resize: none;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n color: #444444;\n }\n\n}\n\n@media (min-width: @desktop-width) {\n\n .comment__wrapper {\n margin: 0 110px 70px 110px;\n }\n\n .comment__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 36px;\n }\n\n .comment__message {\n width: 1220px;\n height: 175px;\n resize: none;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n color: #444444;\n }\n\n}",".additionally__wrapper {\n margin: 0 20px 32px 20px;\n}\n\n.additionally__title {\n font-family: Oswald;\n font-size: 24px;\n font-weight: 400;\n line-height: 26px;\n margin: 0;\n padding: 0;\n margin-bottom: 34px;\n}\n\n.additionally__list {\n margin: 0;\n padding: 0;\n list-style-type: none;\n margin-bottom: 34px;\n}\n\n.checkbox-block__label {\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 18px;\n text-transform: uppercase;\n}\n\n.additionally__button {\n display: block;\n text-decoration: none;\n font-family: Oswald;\n font-size: 16px;\n font-weight: 400;\n line-height: 20px;\n text-align: center;\n color: #FFFFFF;\n padding: 10px 0px 10px 0px;\n background: #68B738;\n width: 280px;\n margin: 0 auto;\n text-transform: uppercase;\n border: none;\n margin-bottom: 21px;\n}\n\n.additionally__important {\n display: flex;\n justify-content: center;\n font-family: Lato;\n font-size: 14px;\n font-weight: 400;\n line-height: 16px;\n}\n\n@media (min-width: @tabletop-width) {\n\n .additionally__wrapper {\n margin: 0 30px 60px 30px;\n }\n\n .additionally__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 36px;\n margin: 0;\n padding: 0;\n margin-bottom: 57px;\n }\n\n .additionally__list {\n display: grid;\n grid-template-columns: 344px 284px;\n margin: 0;\n padding: 0;\n list-style-type: none;\n margin-bottom: 60px;\n }\n\n .additionally__item {\n margin-bottom: 32px;\n }\n\n .checkbox-block__label {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n text-transform: uppercase;\n }\n\n .additionally__submit {\n display: flex;\n }\n\n .additionally__button {\n width: 284px;\n padding: 14px 65px;\n background: #68B738;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 26px;\n text-align: center;\n color: #FFFFFF;\n text-transform: uppercase;\n border: none;\n cursor: pointer;\n margin: 0;\n margin-right: 60px;\n }\n\n .additionally__important {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 16px;\n }\n\n}\n\n@media (min-width: @desktop-width) {\n\n .additionally__wrapper {\n margin: 0 110px 79px 110px;\n }\n\n .additionally__title {\n font-family: Oswald;\n font-size: 36px;\n font-weight: 400;\n line-height: 36px;\n margin: 0;\n padding: 0;\n margin-bottom: 57px;\n }\n\n .additionally__list {\n display: grid;\n grid-template-columns: 325px 325px 325px 325px;\n margin: 0;\n padding: 0;\n list-style-type: none;\n margin-bottom: 60px;\n }\n\n .checkbox-block__label {\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 30px;\n text-transform: uppercase;\n }\n\n .additionally__submit {\n display: flex;\n }\n\n .additionally__button {\n width:570px;\n padding: 14px 188px 14px 188px;\n background: #68B738;\n font-family: Oswald;\n font-size: 20px;\n font-weight: 400;\n line-height: 26px;\n text-align: center;\n color: #FFFFFF;\n text-transform: uppercase;\n border: none;\n cursor: pointer;\n margin-right: 80px;\n }\n\n .additionally__important {\n font-family: Lato;\n font-size: 16px;\n font-weight: 400;\n line-height: 16px;\n }\n\n}","@import \"./blocks/main-header.less\";\n@import \"./blocks/site-header.less\";\n\n/*index.html*/\n\n@import \"./blocks/program.less\";\n\n@import \"./blocks/food.less\";\n\n@import \"./blocks/work.less\";\n\n@import \"./blocks/example.less\";\n\n@import \"./blocks/map.less\";\n\n@import \"./blocks/main-footer.less\";\n\n/*catalog.html*/\n\n@import \"./blocks/products.less\";\n\n@import \"./blocks/product.less\";\n\n@import \"./blocks/extra.less\";\n\n/*form.html*/\n\n@import \"./blocks/form.less\";\n\n@import \"./blocks/contacts.less\";\n\n@import \"./blocks/comment.less\";\n\n@import \"./blocks/additionally.less\";\n\n@font-face {\n font-family: \"Lato\";\n font-style: normal;\n font-weight: 400;\n src: url(\"../fonts/lato/Lato-Regular.woff2\") format(\"woff2\");\n font-display: swap;\n}\n\n@font-face {\n font-family: \"Oswald\";\n font-style: normal;\n font-weight: 400;\n src: url(\"../fonts/oswald/oswaldregular.woff2\") format(\"woff2\");\n font-display: swap;\n}\n\n@font-face {\n font-family: \"Inter\";\n font-style: normal;\n font-weight: 700;\n src: url(\"../fonts/oswald/oswaldmedium.woff2\") format(\"woff2\");\n font-display: swap;\n}\n\n@desktop-width: 1440px;\n@tabletop-width: 768px;\n\n*,*::before,*::after{box-sizing: border-box;}\n\nhtml {\n height: 100%;\n}\n\nbody {\n width: 320px;\n margin: 0;\n display: flex;\n flex-direction: column;\n min-height: 100%;\n font-family: \"Oswald\", sans-serif;\n font-size: 16px;\n line-height: 24px;\n color: #000000;\n background-color: #ffffff;\n margin: 0 auto;\n}\n\n@media (min-width: @tabletop-width) {\n body {\n width: 768px;\n }\n}\n\n@media (min-width: @desktop-width) {\n body {\n width: 1440px;\n }\n}\n\n.visually-hidden {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n border: 0;\n padding: 0;\n white-space: nowrap;\n clip-path: inset(100%);\n clip: rect(0 0 0 0);\n overflow: hidden;\n}\n"]}
\ No newline at end of file
diff --git a/6/fonts/lato/Lato-Regular.woff b/6/fonts/lato/Lato-Regular.woff
new file mode 100644
index 0000000..ae811a3
Binary files /dev/null and b/6/fonts/lato/Lato-Regular.woff differ
diff --git a/6/fonts/lato/Lato-Regular.woff2 b/6/fonts/lato/Lato-Regular.woff2
new file mode 100644
index 0000000..0f5986d
Binary files /dev/null and b/6/fonts/lato/Lato-Regular.woff2 differ
diff --git a/6/fonts/oswald/oswaldmedium.woff b/6/fonts/oswald/oswaldmedium.woff
new file mode 100644
index 0000000..0cd626f
Binary files /dev/null and b/6/fonts/oswald/oswaldmedium.woff differ
diff --git a/6/fonts/oswald/oswaldmedium.woff2 b/6/fonts/oswald/oswaldmedium.woff2
new file mode 100644
index 0000000..88675c1
Binary files /dev/null and b/6/fonts/oswald/oswaldmedium.woff2 differ
diff --git a/6/fonts/oswald/oswaldregular.woff b/6/fonts/oswald/oswaldregular.woff
new file mode 100644
index 0000000..cd000bb
Binary files /dev/null and b/6/fonts/oswald/oswaldregular.woff differ
diff --git a/6/fonts/oswald/oswaldregular.woff2 b/6/fonts/oswald/oswaldregular.woff2
new file mode 100644
index 0000000..9e89f32
Binary files /dev/null and b/6/fonts/oswald/oswaldregular.woff2 differ
diff --git a/6/form.html b/6/form.html
new file mode 100644
index 0000000..817a7cf
--- /dev/null
+++ b/6/form.html
@@ -0,0 +1,214 @@
+
+
+
+
+ Cat Energy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Дополнительно
+
+
+ Отправить заявку
+ * — Обязательные поля
+
+
+
+
+
+
+
+
+ Приглашаем к сотрудничеству дилеров!
+
+
+
+ ул. Большая Конюшенная,д. 19/8
+
+
+ Санкт-Петербург
+
+
+
+
+
+
+
+
+
+
+
diff --git a/6/img/big-buckwheat-mobile.png b/6/img/big-buckwheat-mobile.png
new file mode 100644
index 0000000..f67b268
Binary files /dev/null and b/6/img/big-buckwheat-mobile.png differ
diff --git a/6/img/big-buckwheat-mobile@2x.png b/6/img/big-buckwheat-mobile@2x.png
new file mode 100644
index 0000000..822ca53
Binary files /dev/null and b/6/img/big-buckwheat-mobile@2x.png differ
diff --git a/6/img/big-buckwheat-tablet.png b/6/img/big-buckwheat-tablet.png
new file mode 100644
index 0000000..ebc9a16
Binary files /dev/null and b/6/img/big-buckwheat-tablet.png differ
diff --git a/6/img/big-buckwheat-tablet@2x.png b/6/img/big-buckwheat-tablet@2x.png
new file mode 100644
index 0000000..e6f376c
Binary files /dev/null and b/6/img/big-buckwheat-tablet@2x.png differ
diff --git a/6/img/big-chicken-mobile.png b/6/img/big-chicken-mobile.png
new file mode 100644
index 0000000..084e789
Binary files /dev/null and b/6/img/big-chicken-mobile.png differ
diff --git a/6/img/big-chicken-mobile@2x.png b/6/img/big-chicken-mobile@2x.png
new file mode 100644
index 0000000..4b3ab3a
Binary files /dev/null and b/6/img/big-chicken-mobile@2x.png differ
diff --git a/6/img/big-chicken-tablet.png b/6/img/big-chicken-tablet.png
new file mode 100644
index 0000000..8dae6cb
Binary files /dev/null and b/6/img/big-chicken-tablet.png differ
diff --git a/6/img/big-chicken-tablet@2x.png b/6/img/big-chicken-tablet@2x.png
new file mode 100644
index 0000000..c1e2463
Binary files /dev/null and b/6/img/big-chicken-tablet@2x.png differ
diff --git a/6/img/big-fish-mobile.png b/6/img/big-fish-mobile.png
new file mode 100644
index 0000000..cc9f1bb
Binary files /dev/null and b/6/img/big-fish-mobile.png differ
diff --git a/6/img/big-fish-mobile@2x.png b/6/img/big-fish-mobile@2x.png
new file mode 100644
index 0000000..07c89f2
Binary files /dev/null and b/6/img/big-fish-mobile@2x.png differ
diff --git a/6/img/big-fish-tablet.png b/6/img/big-fish-tablet.png
new file mode 100644
index 0000000..d84b328
Binary files /dev/null and b/6/img/big-fish-tablet.png differ
diff --git a/6/img/big-fish-tablet@2x.png b/6/img/big-fish-tablet@2x.png
new file mode 100644
index 0000000..39aae9c
Binary files /dev/null and b/6/img/big-fish-tablet@2x.png differ
diff --git a/6/img/button-cat.svg b/6/img/button-cat.svg
new file mode 100644
index 0000000..c613656
--- /dev/null
+++ b/6/img/button-cat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/copyright-mobile.svg b/6/img/copyright-mobile.svg
new file mode 100644
index 0000000..bf33ea6
--- /dev/null
+++ b/6/img/copyright-mobile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/copyright-tablet.svg b/6/img/copyright-tablet.svg
new file mode 100644
index 0000000..56dc31a
--- /dev/null
+++ b/6/img/copyright-tablet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/example-cat-big-mobile.png b/6/img/example-cat-big-mobile.png
new file mode 100644
index 0000000..818d86e
Binary files /dev/null and b/6/img/example-cat-big-mobile.png differ
diff --git a/6/img/example-cat-big-mobile@2x.png b/6/img/example-cat-big-mobile@2x.png
new file mode 100644
index 0000000..97b4529
Binary files /dev/null and b/6/img/example-cat-big-mobile@2x.png differ
diff --git a/6/img/example-cat-big-tablet.png b/6/img/example-cat-big-tablet.png
new file mode 100644
index 0000000..85f8fd8
Binary files /dev/null and b/6/img/example-cat-big-tablet.png differ
diff --git a/6/img/example-cat-big-tablet@2x.png b/6/img/example-cat-big-tablet@2x.png
new file mode 100644
index 0000000..b4e0cc6
Binary files /dev/null and b/6/img/example-cat-big-tablet@2x.png differ
diff --git a/6/img/example-cat-small-mobile.png b/6/img/example-cat-small-mobile.png
new file mode 100644
index 0000000..21af80d
Binary files /dev/null and b/6/img/example-cat-small-mobile.png differ
diff --git a/6/img/example-cat-small-mobile@2x.png b/6/img/example-cat-small-mobile@2x.png
new file mode 100644
index 0000000..6ea610c
Binary files /dev/null and b/6/img/example-cat-small-mobile@2x.png differ
diff --git a/6/img/example-cat-small-tablet.png b/6/img/example-cat-small-tablet.png
new file mode 100644
index 0000000..49af694
Binary files /dev/null and b/6/img/example-cat-small-tablet.png differ
diff --git a/6/img/example-cat-small-tablet@2x.png b/6/img/example-cat-small-tablet@2x.png
new file mode 100644
index 0000000..647b403
Binary files /dev/null and b/6/img/example-cat-small-tablet@2x.png differ
diff --git a/6/img/extra-gift-desktop.jpg b/6/img/extra-gift-desktop.jpg
new file mode 100644
index 0000000..a36b441
Binary files /dev/null and b/6/img/extra-gift-desktop.jpg differ
diff --git a/6/img/extra-gift-desktop@2x.jpg b/6/img/extra-gift-desktop@2x.jpg
new file mode 100644
index 0000000..fc45142
Binary files /dev/null and b/6/img/extra-gift-desktop@2x.jpg differ
diff --git a/6/img/extra-gift-mobile.jpg b/6/img/extra-gift-mobile.jpg
new file mode 100644
index 0000000..3cb3421
Binary files /dev/null and b/6/img/extra-gift-mobile.jpg differ
diff --git a/6/img/extra-gift-mobile@2x.jpg b/6/img/extra-gift-mobile@2x.jpg
new file mode 100644
index 0000000..e547236
Binary files /dev/null and b/6/img/extra-gift-mobile@2x.jpg differ
diff --git a/6/img/extra-gift-tablet.jpg b/6/img/extra-gift-tablet.jpg
new file mode 100644
index 0000000..330135f
Binary files /dev/null and b/6/img/extra-gift-tablet.jpg differ
diff --git a/6/img/extra-gift-tablet@2x.jpg b/6/img/extra-gift-tablet@2x.jpg
new file mode 100644
index 0000000..95289aa
Binary files /dev/null and b/6/img/extra-gift-tablet@2x.jpg differ
diff --git a/6/img/food-black-arrow.svg b/6/img/food-black-arrow.svg
new file mode 100644
index 0000000..75d6ead
--- /dev/null
+++ b/6/img/food-black-arrow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/food-slimming-desktop.svg b/6/img/food-slimming-desktop.svg
new file mode 100644
index 0000000..7dbb376
--- /dev/null
+++ b/6/img/food-slimming-desktop.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/food-slimming-mobile.svg b/6/img/food-slimming-mobile.svg
new file mode 100644
index 0000000..6fe32f1
--- /dev/null
+++ b/6/img/food-slimming-mobile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/food-slimming-tablet.svg b/6/img/food-slimming-tablet.svg
new file mode 100644
index 0000000..7d3a14b
--- /dev/null
+++ b/6/img/food-slimming-tablet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/food-weight-desktop.svg b/6/img/food-weight-desktop.svg
new file mode 100644
index 0000000..47f5a96
--- /dev/null
+++ b/6/img/food-weight-desktop.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/food-weight-mobile.svg b/6/img/food-weight-mobile.svg
new file mode 100644
index 0000000..4e9581f
--- /dev/null
+++ b/6/img/food-weight-mobile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/food-weight-tablet.svg b/6/img/food-weight-tablet.svg
new file mode 100644
index 0000000..f1fe31a
--- /dev/null
+++ b/6/img/food-weight-tablet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/gift.svg b/6/img/gift.svg
new file mode 100644
index 0000000..fd8429c
--- /dev/null
+++ b/6/img/gift.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/header-toogle.svg b/6/img/header-toogle.svg
new file mode 100644
index 0000000..91d8f92
--- /dev/null
+++ b/6/img/header-toogle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/html-academy.svg b/6/img/html-academy.svg
new file mode 100644
index 0000000..af81b2b
--- /dev/null
+++ b/6/img/html-academy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/little-buckwheat-mobile.png b/6/img/little-buckwheat-mobile.png
new file mode 100644
index 0000000..397ce3a
Binary files /dev/null and b/6/img/little-buckwheat-mobile.png differ
diff --git a/6/img/little-buckwheat-mobile@2x.png b/6/img/little-buckwheat-mobile@2x.png
new file mode 100644
index 0000000..b8f4728
Binary files /dev/null and b/6/img/little-buckwheat-mobile@2x.png differ
diff --git a/6/img/little-buckwheat-tablet.png b/6/img/little-buckwheat-tablet.png
new file mode 100644
index 0000000..47d0afc
Binary files /dev/null and b/6/img/little-buckwheat-tablet.png differ
diff --git a/6/img/little-buckwheat-tablet@2x.png b/6/img/little-buckwheat-tablet@2x.png
new file mode 100644
index 0000000..b8bcf43
Binary files /dev/null and b/6/img/little-buckwheat-tablet@2x.png differ
diff --git a/6/img/little-chicken-mobile.png b/6/img/little-chicken-mobile.png
new file mode 100644
index 0000000..57205ee
Binary files /dev/null and b/6/img/little-chicken-mobile.png differ
diff --git a/6/img/little-chicken-mobile@2x.png b/6/img/little-chicken-mobile@2x.png
new file mode 100644
index 0000000..c75c218
Binary files /dev/null and b/6/img/little-chicken-mobile@2x.png differ
diff --git a/6/img/little-chicken-tablet.png b/6/img/little-chicken-tablet.png
new file mode 100644
index 0000000..22d4d00
Binary files /dev/null and b/6/img/little-chicken-tablet.png differ
diff --git a/6/img/little-chicken-tablet@2x.png b/6/img/little-chicken-tablet@2x.png
new file mode 100644
index 0000000..40849e5
Binary files /dev/null and b/6/img/little-chicken-tablet@2x.png differ
diff --git a/6/img/little-fish-mobile.png b/6/img/little-fish-mobile.png
new file mode 100644
index 0000000..e4389ae
Binary files /dev/null and b/6/img/little-fish-mobile.png differ
diff --git a/6/img/little-fish-mobile@2x.png b/6/img/little-fish-mobile@2x.png
new file mode 100644
index 0000000..09d227b
Binary files /dev/null and b/6/img/little-fish-mobile@2x.png differ
diff --git a/6/img/little-fish-tablet.png b/6/img/little-fish-tablet.png
new file mode 100644
index 0000000..5bcde6f
Binary files /dev/null and b/6/img/little-fish-tablet.png differ
diff --git a/6/img/little-fish-tablet@2x.png b/6/img/little-fish-tablet@2x.png
new file mode 100644
index 0000000..14e235c
Binary files /dev/null and b/6/img/little-fish-tablet@2x.png differ
diff --git a/6/img/little-rice-mobile.png b/6/img/little-rice-mobile.png
new file mode 100644
index 0000000..8d7f64f
Binary files /dev/null and b/6/img/little-rice-mobile.png differ
diff --git a/6/img/little-rice-mobile@2x.png b/6/img/little-rice-mobile@2x.png
new file mode 100644
index 0000000..65cdef7
Binary files /dev/null and b/6/img/little-rice-mobile@2x.png differ
diff --git a/6/img/little-rice-tablet.png b/6/img/little-rice-tablet.png
new file mode 100644
index 0000000..1b79bea
Binary files /dev/null and b/6/img/little-rice-tablet.png differ
diff --git a/6/img/little-rice-tablet@2x.png b/6/img/little-rice-tablet@2x.png
new file mode 100644
index 0000000..cae94e9
Binary files /dev/null and b/6/img/little-rice-tablet@2x.png differ
diff --git a/6/img/logo-desktop.svg b/6/img/logo-desktop.svg
new file mode 100644
index 0000000..4e2f1ea
--- /dev/null
+++ b/6/img/logo-desktop.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/logo-mobile.svg b/6/img/logo-mobile.svg
new file mode 100644
index 0000000..a26da8e
--- /dev/null
+++ b/6/img/logo-mobile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/logo-tablet.svg b/6/img/logo-tablet.svg
new file mode 100644
index 0000000..3d28c6a
--- /dev/null
+++ b/6/img/logo-tablet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/logotype.svg b/6/img/logotype.svg
new file mode 100644
index 0000000..32acfac
--- /dev/null
+++ b/6/img/logotype.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/product-plus.svg b/6/img/product-plus.svg
new file mode 100644
index 0000000..86afb2a
--- /dev/null
+++ b/6/img/product-plus.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/program-image-desktop.png b/6/img/program-image-desktop.png
new file mode 100644
index 0000000..f6cb52a
Binary files /dev/null and b/6/img/program-image-desktop.png differ
diff --git a/6/img/program-image-desktop@2x.png b/6/img/program-image-desktop@2x.png
new file mode 100644
index 0000000..fef73b2
Binary files /dev/null and b/6/img/program-image-desktop@2x.png differ
diff --git a/6/img/program-image-mobile.png b/6/img/program-image-mobile.png
new file mode 100644
index 0000000..c09fb17
Binary files /dev/null and b/6/img/program-image-mobile.png differ
diff --git a/6/img/program-image-mobile@2x.png b/6/img/program-image-mobile@2x.png
new file mode 100644
index 0000000..ff0272e
Binary files /dev/null and b/6/img/program-image-mobile@2x.png differ
diff --git a/6/img/program-image-tablet.png b/6/img/program-image-tablet.png
new file mode 100644
index 0000000..b7346d5
Binary files /dev/null and b/6/img/program-image-tablet.png differ
diff --git a/6/img/program-image-tablet@2x.png b/6/img/program-image-tablet@2x.png
new file mode 100644
index 0000000..77286da
Binary files /dev/null and b/6/img/program-image-tablet@2x.png differ
diff --git a/6/img/social-tg.svg b/6/img/social-tg.svg
new file mode 100644
index 0000000..ff6c1fa
--- /dev/null
+++ b/6/img/social-tg.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/social-vk.svg b/6/img/social-vk.svg
new file mode 100644
index 0000000..4c14c71
--- /dev/null
+++ b/6/img/social-vk.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/social-yt.svg b/6/img/social-yt.svg
new file mode 100644
index 0000000..a2e5204
--- /dev/null
+++ b/6/img/social-yt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/work-powder-mobile.svg b/6/img/work-powder-mobile.svg
new file mode 100644
index 0000000..2ff1eee
--- /dev/null
+++ b/6/img/work-powder-mobile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/work-powder-tablet.svg b/6/img/work-powder-tablet.svg
new file mode 100644
index 0000000..8419139
--- /dev/null
+++ b/6/img/work-powder-tablet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/work-reception-mobile.svg b/6/img/work-reception-mobile.svg
new file mode 100644
index 0000000..4199974
--- /dev/null
+++ b/6/img/work-reception-mobile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/work-reception-tablet.svg b/6/img/work-reception-tablet.svg
new file mode 100644
index 0000000..f18467d
--- /dev/null
+++ b/6/img/work-reception-tablet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/work-sheet-mobile.svg b/6/img/work-sheet-mobile.svg
new file mode 100644
index 0000000..0af60c6
--- /dev/null
+++ b/6/img/work-sheet-mobile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/work-sheet-tablet.svg b/6/img/work-sheet-tablet.svg
new file mode 100644
index 0000000..e8bbf2f
--- /dev/null
+++ b/6/img/work-sheet-tablet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/work-time-mobile.svg b/6/img/work-time-mobile.svg
new file mode 100644
index 0000000..8522310
--- /dev/null
+++ b/6/img/work-time-mobile.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/img/work-time-tablet.svg b/6/img/work-time-tablet.svg
new file mode 100644
index 0000000..1808d9f
--- /dev/null
+++ b/6/img/work-time-tablet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/6/index.html b/6/index.html
new file mode 100644
index 0000000..021eb99
--- /dev/null
+++ b/6/index.html
@@ -0,0 +1,286 @@
+
+
+
+
+ Cat Energy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Открыть меню
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Программы питания, которые подойдут Вашему питомцу.
+
+
+
+
+
+
+
+ Как это работает
+
+
+
+
+
+
+
+
+ Функциональное питание содержит только полезные питательные вещества.
+
+
+
+
+
+
+
+
+ Выпускается в виде порошка, который нужно лишь залить кипятком и готово.
+
+
+
+
+
+
+
+
+ Замените один-два приема обычной еды на наше функциональное питание.
+
+
+
+
+
+
+
+
+ Уже через месяц наслаждайтесь изменениями к лучшему вашего питомца!
+
+
+
+
+
+
+
+
+ Живой пример
+
+
+
+
+
+ Борис сбросил 5 кг за 2 месяца, просто заменив свой обычный корм на Cat Energy Slim. Отличный результат без изнуряющих тренировок! При этом он не менял своих привычек и по-прежнему спит по 16 часов в день.
+
+
+
+
+
+
60 дней
+
затрачено времени
+
+
+
+
+ Затраты на питание:
+
+
+ 15 000 руб.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Приглашаем к сотрудничеству дилеров!
+
+
+
+ ул. Большая Конюшенная,д. 19/8
+
+
+ Санкт-Петербург
+
+
+
+
+
+
+
+
+
+
+
Комментарий
+ + +