/*!
Theme Name: go-brew
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: go-brew
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

go-brew is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */


:root {
  --grey-text: #83888E;
  --dark-text: #212123;
  --white: #F5F5F5;
  --bg-white: #FAFAFA;
  --primary-pink: #FFB8B3;
  --transition: all 0.3s ease-in-out;
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat ExtraBold'), local('Montserrat-ExtraBold'),
    url('./fonts/Montserrat-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat Bold'), local('Montserrat-Bold'),
    url('./fonts/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat SemiBold'), local('Montserrat-SemiBold'),
    url('./fonts/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat Medium'), local('Montserrat-Medium'),
    url('./fonts/Montserrat-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat Regular'), local('Montserrat-Regular'),
    url('./fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Global styles */

.button {
  display: flex;
  margin-top: 50px;
  padding: 13px 24px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 30px;
  letter-spacing: 0.5px;

  transition: var(--transition);
}


/* __________________________________ */

serif html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  font-family: 'Montserrat', serif;
  font-style: normal;
  line-height: normal;
  font-size: 14px;
  font-weight: 400;
  color: var(--dark-text);
}

header {}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
/* h1 {
  font-size: 2em;
  margin: 0.67em 0;
} */

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
/* button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
} */

button {
  /* all: unset; */
  display: inline-block;
  border: none;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
  /* color: #212223;
  font-family: "Montserrat", Roboto, Oxygen-Sans, Ubuntu, sans-serif;
  font-size: 1rem;
  line-height: 1.5; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: initial;
  margin: initial;
}



dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
  background: #fff;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li>ul,
li>ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

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

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */
a {
  color: var(--dark-text);
  text-decoration: none;
  transition: var(--transition);
}


a:visited {}

a:hover,
a:focus,
a:active {
  transform: translateY(-1px);
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
}

/* Forms
--------------------------------------------- */
/* button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}



button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
} */

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components

/* Burger */

.burger-icon {
  display: none;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  z-index: 11;
}

.burger-icon span,
.burger-icon span::after {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 100px;
  background: var(--dark-text);
  transition: var(--transition);
}


.burger-icon span::before {
  display: block;
  width: 15px;
  height: 3px;
  border-radius: 100px;
  background: var(--dark-text);
  transition: var(--transition);
}

.burger-icon span {
  position: relative;
}

.burger-icon span::before,
.burger-icon span::after {
  content: '';
  position: absolute;
}

.burger-icon span::before {
  top: -8px;
}

.burger-icon span::after {
  bottom: -8px;
}

.body--opened-menu .burger-icon span {
  top: 0px;
  transform: rotate(45deg);
}

.body--opened-menu .burger-icon span::before {
  background: transparent;
}

.body--opened-menu .burger-icon span::after {
  bottom: 0px;
  transform: rotate(-90deg);
}




@media (max-width: 992px) {

  .burger-icon {
    display: flex;
    z-index: 1001;
    /* Выше чем меню */
    position: relative;
  }

  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -25%;
    height: 100%;
    width: 150%;
    border-radius: 30px;
    padding: 10px 10px;
    background: #b4b3b3;
    transition: var(--transition);
    opacity: 0;
    z-index: -1;
  }


  .body--opened-menu .nav-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;

    gap: 30px;
  }


  .body--opened-menu .header-actions {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }


  .body--opened-menu {
    overflow: hidden;
  }


  .body--opened-menu .nav-menu {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .body--opened-menu .nav-menu a {
    display: block;
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
  }

  .body--opened-menu .nav-menu a:last-child {
    border-bottom: none;
  }

  .body--opened-menu .header-actions {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 0;
    border-top: 1px solid #f0f0f0;
    flex-direction: row;
    justify-content: space-around;
    padding: 20px;
    z-index: 999;
  }

  .body--opened-menu .icon-after::after {
    display: none;
  }
}


/* --------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
  display: block;
  width: 100%;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul li:hover>ul,
.main-navigation ul ul li.focus>ul {
  display: block;
  left: auto;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation ul li:hover>ul,
.main-navigation ul li.focus>ul {
  left: auto;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}


.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}


.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}

.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

  /*rtl:ignore*/
  float: left;

  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {

  /*rtl:ignore*/
  float: right;

  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}



.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Bar */
.top-bar {

  background: var(--white);
  color: var(--dark-text);
}

.top-bar-text {
  font-weight: 500;
  color: var(--dark-text);
}


.top-bar-content {
  width: 100%;
  height: 49px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--dark-text);
  font-weight: 600;

}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.5px;
}

.top-bar-left span img {
  width: 15px;
  height: 15px;
}

.top-bar-right {
  display: flex;
  gap: 49px;
}

.top-bar-right-lk a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar-right-lk a img {
  width: 15px;
  height: 15px;
}

.top-bar-right-socials {
  display: flex;
  gap: 19px;
}

.top-bar-right-socials a {
  display: flex;
  align-items: center;
}

.socials-links a img {
  width: 15px;
  height: 15px;

}

.top-bar-right a {
  color: var(--dark-text);
  text-decoration: none;
  transition: var(--transition);
}

.top-bar-right a:hover {
  opacity: 0.8;
}

/* Main Header */
.main-header {

  background: #FDFCFA;
  padding: 20px 0;
  z-index: 1;
  transition: var(--transition);

}




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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark-text);
  text-decoration: none;
  padding: 5px;
  background: transparent;
  border-radius: 50px;
  z-index: 1;

}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--primary-pink) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;

}

.nav-menu {
  display: flex;
  padding: 15px;
  background: var(--white);
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: var(--bg-white);
  border-radius: 30px;
  border: 1px solid rgba(33, 33, 35, 0.05);
  box-shadow: 0 5px 24px 0 rgba(59, 61, 78, 0.05);
  z-index: 1000;
}

.nav-menu a {
  color: var(--dark-text);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1.5;

  transition: var(--transition);
  position: relative;
  padding: 10px 14px;
  text-wrap: nowrap;

}

.nav-menu a:hover {
  color: var(--dark-text);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 30px;
  padding: 10px 14px;
  background: #b4b3b3;
  transition: var(--transition);
  opacity: 0;
  z-index: -1;
}

.nav-menu a:hover::after {
  opacity: 1;
}

.header-actions {
  position: relative;
  padding: 15px 19px;
  background: var(--bg-white);
  border-radius: 30px;
  border: 1px solid rgba(33, 33, 35, 0.05);
  box-shadow: 0 5px 24px 0 rgba(59, 61, 78, 0.05);
  display: flex;
  gap: 44px;
  align-items: center;
  z-index: 1000;
}

.header-actions-text {

  font-weight: 500;
}

.btn-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: none;
  border: none;

  cursor: pointer;
  color: var(--dark-text);
  transition: var(--transition);
  position: relative;
}

.btn-icon:hover {
  color: #666;

}

.btn-icon img {
  width: 17px;
  height: 17px;
}

.icon-after {
  position: relative;
}

.icon-after::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -37px;
  width: 30px;
  height: 1px;
  transform: rotate(-90deg);
  flex-shrink: 0;

  opacity: 0.25;
  background: #888;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent-orange);
  color: white;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Home Section */

.main-container {
  display: flex;
}


.intro_img-mobile {
  display: none;
}

.intro_section {
  margin-top: -125px;
}

.intro {
  min-height: 620px;
  background-image: url(/wp-content/themes/go-brew/images/haupt.png);
  background-color: var(--primary-pink);
  background-position: right center;
  /* Картинка будет по центру по вертикали и прижата к правому краю */
  background-size: 50% auto;
  /* Ширина 50%, высота автоматически */
  background-repeat: no-repeat;
  position: relative;
}


.intro-wave {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
}

.intro-text {
  margin-top: 147px;
}

.intro-title {
  font-size: 45px;
  font-weight: 800;
  line-height: 53px;
  letter-spacing: -1.2px;
  text-transform: uppercase;
  max-width: 485px;
}


.intro-subtitle {
  margin-top: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
}

.button_intro-production {
  margin-top: 50px;
  background: #FDFCFA;
  transition: var(--transition);
}

.button_intro-production:hover {
  background: #b4b3b3;
}

.button-text {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  /* 100% */
  text-transform: uppercase;
}

.intro-image {
  content: '';
  position: absolute;
  right: 7vw;
  bottom: -5vh;
  z-index: 2;
  width: 120px;
  height: 120xp;
}

/* WHY US */

.why_us {
  padding-top: 80px;
  background-color: #FDFCFA;
  padding-bottom: 60px;
}

.why_us-title h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -1.2px;
  text-transform: uppercase;
}

.why_us-content {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why_us-item {
  max-width: 390px;
  padding: 24px;
  border-radius: 30px;
  background: #F3EEEA;
}

.why_us-item img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.why_us-item h3 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  letter-spacing: -0.2px;
  text-transform: uppercase;
}

.why_us-item-text {
  margin-top: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}



/* __________________________ */




/* Inside */

.inside {
  padding: 33px 0;
  background-color: #F3EEEA;

}

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

.inside_content-left img {
  width: 701px;
}

.inside_content-right {
  max-width: 700px;
}

.inside_content-right-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 53px;
  /* 132.5% */
  letter-spacing: -0.7px;
  text-transform: uppercase;
}



.inside_content-right-content {
  max-width: 600px;
}

.inside_content-right-item {}

.inside_content-right-item-name {
  position: relative;
  margin-left: 36px;

  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.inside_content-right-item-name::before {
  position: absolute;
  content: url('./images/coffee-beans-icon.svg');
  left: -34px;
  top: -4px;
}

.inside_content-right-item-description {
  margin-top: 9px;
  margin-left: 36px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  /* 114.286% */
}

.button_inside {
  background: #212123;
  transition: var(--transition);
}

.button_inside:hover {
  background: #6e6e70;
}

.button-inside-text {
  color: #FDFCFA;
}

/* __________________________ */


/* Partners */

.partners {
  padding: 60px 0;
}

.partners_title {
  font-size: 40px;
  font-weight: 700;
  line-height: 53px;
  text-transform: uppercase;
}

.partners_content {
  margin-top: 50px;
}

.partners_swiper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.swiper-wrapper {

  height: 100%;
}

.swiper-slide {
  padding: 40px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;

  border-radius: 30px;
  border: 1px solid rgba(33, 33, 35, 0.10);
  background: #FDFCFA;
  box-shadow: 0 9px 24px 0 rgba(59, 61, 78, 0.05);
}

.swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}


.swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-pagination {}



/* _________________ */


/* Subscribe */

.subscribe {
  background-color: var(--primary-pink);
}

.container_subscribe {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 60px;
  overflow: hidden;
}

.subscribe_content {
  /* margin-left: 600px; */
}

.subscribe_left img {
  max-height: 470px;
  width: 100%;
}

.subscribe_left {
  width: 100%;
  margin-bottom: -3px;
}

.subscribe_right {
  align-self: center;
}

.subscribe_title {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  max-width: 515px;
  /* 132.5% */
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.button_subscribe {
  padding: 15px 25px;
  background: #212123;
  transition: var(--transition);
}

.button_subscribe:hover {
  background: #6e6e70;
}

.button-subscribe-text {
  color: #FDFCFA;
}

/* _____________________ */


/* _________________________________________________________ */

.site-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
  /* padding: 40px 0 20px; */
  /* margin-top: 60px; */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main Footer Layout */
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 30px;
}

/* Company Info Section */
.footer-company {
  flex: 1;
  max-width: 450px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo-img {
  max-height: 60px;
  width: auto;
  display: block;
}

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

.address-item {
  line-height: 1;
}

.address-label {
  font-weight: 600;
  color: var(--grey-text);
  font-size: 14px;
}

.address-text {
  color: var(--grey-text);
  font-size: 14px;
  line-height: 1.5;
}

/* Navigation Section */
.footer-nav {
  display: flex;
  gap: 70px;
  flex: 1;
  justify-content: flex-end;
}

.nav-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.nav-menu-footer li a {

  color: var(--dark-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: block;

  transition: var(--transition);
}

.nav-menu-footer li:hover {
  transform: translateY(-0.5px);
}




.footer-nav-column {
  display: flex;
  flex-direction: column;
}

.footer-right-column {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-nav-title {
  color: var(--grey-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 12px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-link {
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav-link:hover {
  color: var(--grey-text);
  text-decoration: none;
}

/* Social Media Section */
.footer-social {
  display: flex;

  gap: 12px;
  margin-bottom: 15px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  background-color: #007bff;
  border-color: #007bff;
  transform: translateY(-2px);
}

.footer-social-icon {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: filter 0.3s ease;
}


.footer-social-link:hover .footer-social-icon {
  filter: brightness(0) invert(1);
}

/* Company Info */
.footer-company-info {
  display: flex;
  flex-direction: column;
}

.footer-company-info-mobile {
  display: none;
}

.company-info-item {
  display: flex;
  gap: 4px;
  align-items: center;

  color: var(--grey-text);
  font-size: 14px;
}


/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #2121231a;
  background: #F9FBFC;
  width: 100%;
  overflow: hidden;
  padding-top: 20px;
}

.footer-legal-links {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-legal-link {
  color: #007bff;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}


.footer-gobrew {
  color: #F2F3F4;
  font-size: 220px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -5.4px;
  text-wrap: nowrap;
  text-align: center;
}

.footer-gobrew-mobile {
  display: none;
}


/* ==========================================
   UTILITY CLASSES
   ========================================== */

.footer-hidden {
  display: none;
}

.footer-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Print Styles */
@media print {
  .site-footer {
    background-color: transparent !important;
    border-top: 1px solid #000;
    color: #000;
  }

  .footer-social,
  .footer-legal-links {
    display: none;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--white);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: var(--dark-text);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  background: var(--light-bg);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: white;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--primary-pink) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Subscription Section */
.subscription {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
}

.subscription-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.subscription-image {
  position: relative;
}

.subscription-box {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transform: rotate(-5deg);
  transition: var(--transition);
}

.subscription-box:hover {
  transform: rotate(0deg) scale(1.05);
}

.box-visual {
  height: 300px;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--primary-pink) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  color: white;
  margin-bottom: 20px;
}

.subscription-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark-text);
}

.subscription-list {
  list-style: none;
  margin: 30px 0;
}

.subscription-list li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 15px;
}

.subscription-list li::before {
  content: '☕';
  font-size: 20px;
}

/* Subscription Pause Toggle Styles */
.subscription-pause-section {
  margin: 30px 0;
}

.pause-toggle-container {
  background: var(--bg-white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pause-toggle-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.pause-label {
  font-weight: 600;
  font-size: 16px;
  color: var(--dark-text);
}

.pause-description {
  font-size: 14px;
  color: var(--grey-text);
  margin: 0;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #FFB8B3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #FFB8B3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Footer */
footer {
  background: var(--white);
  color: var(--dark-text);
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.footer-brand p {
  opacity: 0.8;
  line-height: 1.8;
}

.footer-column h4 {
  margin-bottom: 20px;
  color: var(--primary-pink);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {

  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  opacity: 1;
  color: var(--primary-pink);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark-text);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* _______________Inside Page____________ */


.inside-main {
  background: #FDFCFA;
}

.lots {
  background: #FDFCFA;
  padding: 24px 0 60px;
}


.lots_title {
  font-size: 40px;
  font-weight: 700;
  line-height: 53px;
  /* 132.5% */
  letter-spacing: -1.2px;
  text-transform: uppercase;

  max-width: 450px;
}

.lots_list {

  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;

}

.lots_item {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  border: 1px solid rgba(33, 33, 35, 0.10);
  box-shadow: 0 9px 24px 0 rgba(59, 61, 78, 0.05);
}

.lots_item-img {
  max-width: 265px;
  height: 220px;
  border-radius: 24px;
  width: 100%;
  margin: 10px;
}

.lots_item-right {
  padding: 20px;
}

.lots_item-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.7px;
  text-transform: uppercase;
}

.lots_item-text {
  line-height: 16px;
  /* 114.286% */
}

.manufacturer_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.manufacturer_item {}

.manufacturer_title {
  margin-top: 34px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.7px;
  text-transform: uppercase;
  max-width: 260px;
}

.manufacturer_text {
  padding-top: 16px;
  max-width: 520px;
}

.center {
  display: flex;
  justify-content: center;
}

.manufacturer_item {
  max-width: 590px;
  width: 100%;
  margin-top: 50px;
}







.sepparator {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(33, 33, 35, 0.10);
}

.how-works {
  padding: 60px 0;
  background: #FDFCFA;
}

.how-works_title {
  font-size: 40px;
  font-weight: 700;
  line-height: 53px;
  /* 132.5% */
  letter-spacing: -1.2px;
  text-transform: uppercase;
}

.how-works_list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.how-works_item {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.how_works-img {
  max-width: 56px;
  max-height: 56px;
}

.how_works-step {
  padding: 7px 7px 5px;
  border-radius: 15px;
  background: #FFB8B3;
}

.how-works_item-title {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.7px;
  text-transform: uppercase;
}

.how-works_item-text {
  margin-top: 10px;
  line-height: 16px;
}

.formalize {
  padding: 60px 0;
  background: #F3EEEA;
}

.container_formalize {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.formalize_price {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.7px;
  text-transform: uppercase;
}

.button_formalize {
  margin-top: 24px;
  border-radius: 30px;
  border: 1px solid rgba(33, 33, 35, 0.10);
  background: #FFB8B3;
  box-shadow: 0 9px 24px 0 rgba(59, 61, 78, 0.05);

  max-width: 260px;
  width: 100%;
  max-height: 40px;
  height: 100%;
  padding: 13px;
  flex-shrink: 0;

  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  /* 100% */
  text-transform: uppercase;
}

.button_formalize:hover {
  background: #c79b99;
}

.faq {
  padding: 60px 0;
}

.faq_title {
  font-size: 40px;
  font-weight: 700;
  line-height: 53px;
  /* 132.5% */
  letter-spacing: -1.2px;
  text-transform: uppercase;
}

.faq_lists {
  margin-top: 50px;
  display: flex;
  gap: 20px;
}


.faq_list-left,
.faq_list-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq_item {
  position: relative;
  border-radius: 30px;
  border: 1px solid rgba(33, 33, 35, 0.10);
  background: #FDFCFA;
  box-shadow: 0 9px 24px 0 rgba(59, 61, 78, 0.05);

  padding: 16px 24px 16px;
  max-width: 590px;

  cursor: pointer;
}


.faq_item-text {
  transition: var(--transition);
}

.faq_item-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.7px;
  text-transform: uppercase;
  max-width: 370px;
  max-width: 70%;
}

.faq_item::after {
  content: url('./images/arrow.svg');
  position: absolute;
  right: 5px;
  top: 4px;
  padding: 13px;
  background-color: #FFB8B3;
  border-radius: 30px;

  transition: var(--transition);

}

.faq_item:hover::after {
  transform: rotate(-45deg);
}






.contact {
  background: url('./images/contact_bg.png');
  background-size: cover;
  padding: 30px 0;

  justify-content: center;
}

.contact div {
  display: flex;
  justify-content: center;
  width: 100%;
  ;
}

.container_contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 67px 0;
  margin: 10px;
  border-radius: 30px;
  background: #FFB8B3;
}

.contact_title {

  font-size: 40px;
  font-weight: 700;
  line-height: 53px;
  /* 132.5% */
  letter-spacing: -1.2px;
  text-transform: uppercase;
}

.contact_text {
  margin-top: 16px;
}

.contact_button span {

  color: #FDFCFA;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 0.5px;
  /* 100% */
  text-transform: uppercase;
}

.contact_button {
  display: flex;
  width: 160px;
  height: 40px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;

  border-radius: 30px;
  background: #212123;
}

.around {
  padding: 60px 0;

}

.around-up {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.around-up-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 53px;
  /* 132.5% */
  letter-spacing: -1.2px;
  text-transform: uppercase;
}

.around-blog-button {
  margin-top: 0;
  text-align: center;
  font-weight: 600;
  line-height: 14px;
  /* 100% */
  text-transform: uppercase;

  border-radius: 30px;
  background: #FFB8B3;
}

.around-blog-button--mobile {
  display: none;
}

/* _____________________________________ */

@media (max-width: 1100px) {
  .lots_list {
    grid-template-columns: 1fr;
    margin-top: 15px;
  }

  .read-more-btn {
    margin-top: 0;
  }


}

@media (max-width: 992px) {
  .button_subscribe {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .article-date {
    margin-top: 10px;
  }

  .subscribe_title {
    font-size: 1.8em;
    line-height: 1.5;
  }
}

@media (max-width: 600px) {
  .lots {
    padding: 12px 0 30px;
  }

  .how-works_list {
    grid-template-columns: 1fr;
  }

  .faq_list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .around-blog-button {
    display: none;
  }

  .around-blog-button--mobile {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact_title {
    font-size: 24px;
  }

  .contact_button {
    margin-top: 15px;
  }

  .contact_text {
    margin-top: 0;
  }

  .container_contact {
    padding: 20px 0;
  }

  .contacts_socials-wrapper .contacts_grid-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .contact_button-a {
    width: 80%;
  }

  .lots_title {
    font-size: 24px;
  }

  .manufacturer_content {
    grid-template-columns: 1fr;
  }
}

/* ===Breadcrumbs=== */

.breadcrumbs {
  padding: 25px 0;
}

.breadcrumbs a {
  color: #2C2C2C;
  text-decoration: none;
}

.breadcrumbs span {
  color: #918e8e;
}

.breadcrumbs a::after {
  content: '';
  margin: 0 5px;
}

.breadcrumbs span::before {
  content: '';
  margin: 0 5px;
}

/* __________________ */


/* contacts page */


.contacts_section {
  background: #FDFCFA;
  padding: 24px 0 60px;
}

.contacts_wrapper {
  margin-bottom: 60px;
}

.contacts_title {
  font-size: 40px;
  font-weight: 700;
  line-height: 53px;
  /* 132.5% */
  letter-spacing: -1.2px;
  text-transform: uppercase;
}

.contacts_text {
  line-height: 16px;
  /* 114.286% */
  margin-top: 16px;
  max-width: 670px;
}

.contacts_socials-wrapper {
  margin-top: 50px;
}

.contacts_grid-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contacts_grid-item {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;

  border-radius: 30px;
  border: 1px solid rgba(33, 33, 35, 0.10);
  background: #FDFCFA;
  box-shadow: 0 9px 24px 0 rgba(59, 61, 78, 0.05);
}

.contacts_grid-item-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.7px;
}

.contacts_grid-item-tel {}

.contacts_grid-item-email {}

.contacts_grid-item-icons {
  display: flex;
  gap: 18px;
  align-items: center;
}

/* ________ */


@keyframes rotate {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.slow-rotate {
  animation: rotate 30s linear infinite;
  /* 10 секунд, плавно, бесконечно */
  transform-origin: center center;
  /* ось вращения — центр изображения */
}


/* ==========================================
RESPONSIVE DESIGN
========================================== */



@media (max-width: 1300px) {


  .intro-title {
    font-size: 36px;
  }

  .footer-gobrew {
    font-size: 200px;
  }
}


@media (max-width: 1200px) {
  .subscribe_right {
    padding: 10px 0;
  }

  .button_subscribe {
    margin-top: 20px;
  }
}

@media (max-width: 1100px) {


  .intro-title {
    font-size: 36px;
  }

  .nav-menu li {
    max-height: 26px;
  }

  .why_us-item {
    padding: 10px;
  }
}





@media (max-width: 992px) {

  .intro {
    background-image: none;
  }

  .burger-icon {
    display: flex;
  }

  .footer-main {
    gap: 30px;
  }

  .nav-menu a::after {
    left: -25%;
    width: 150%;
  }

  .footer-nav {
    justify-content: flex-start;
    gap: 40px;
  }

  .footer-company {
    max-width: 100%;
  }

  .intro-subtitle {
    max-width: 250px;
  }


  .header-actions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .header-actions.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }


  .footer-gobrew {
    font-size: 150px;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .main-header {
    background: var(--white);
  }

  .logo {
    background-color: transparent;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .why_us-item {
    height: auto;
  }

  .inside_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .container_subscribe {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    gap: 10px;
  }

  .subscribe_left {
    margin-left: 0;
    margin-bottom: 0;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 10px;
  }
}




@media (max-width: 768px) {

  .main-header {
    padding: 0;
  }

  .intro_img-mobile {
    display: flex;
  }

  .intro_img-mobile img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
  }

  .intro-title {
    font-size: 24px;
    line-height: 1.2;
  }


  .site-footer {
    padding: 30px 0 15px;
    margin-top: 40px;
  }



  .footer-container {
    padding: 0 15px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 25px;
  }

  .footer-nav-column {
    width: 100%;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .address-item {
    gap: 3px;
  }

  .footer-social {
    justify-content: flex-start;
  }


  .footer-gobrew {
    font-size: 100px;

  }


  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 600px) {


  .top-bar-left span {
    display: none;
  }

  .top-bar-right {
    display: flex;
    width: 100%;
    justify-content: space-between
  }



  .intro-subtitle {
    max-width: 350px;
    line-height: 1.5;
    font-size: 20px;
  }

  .main-container {
    display: grid;
  }

  .button {
    width: 100%;
    padding: 13px 20px;
  }

  .button-text {
    font-size: 16px;
  }

  .why_us-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .why_us-content {
    grid-template-columns: auto;
  }

  .why_us-item {
    max-width: none;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-company-info {
    display: none;
  }

  .footer-company-info-mobile {
    margin-top: 30px;
    display: flex;
    flex-direction: column;

  }

  .footer-gobrew {
    display: none;
  }

  .footer-gobrew-mobile {
    display: flex;
    text-align: start;
    font-size: 48px;
    line-height: 1.3;
    color: #F2F3F4;
    font-weight: 500;
    letter-spacing: -5.4px;
    wrap: nowrap;
    text-align: center;
  }

  .footer-addresses {
    display: none;
  }

  .footer-legal-links {
    text-align: start;
  }
}

@media (max-width: 480px) {
  .footer-main {
    gap: 20px;
  }

  .footer-addresses {
    gap: 12px;
  }

  .address-label,
  .address-text {
    font-size: 13px;
  }

  .footer-nav-title {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .footer-nav-link {
    font-size: 13px;
  }

  .company-info-label,
  .company-info-value {
    font-size: 13px;
  }
}


@media (max-width: 768px) {
  .intro_section {
    margin-top: 0;
  }

  .intro-text {
    margin-top: 24px;
    padding-bottom: 50px;
  }

  .intro-image img {
    display: none;
  }
}
.why_us-item img{border-radius:15px}

.about_intro-img-front img, .about_born-img-front img, .about_born-img-back img{
    width: 100%;
}
#button_formalize{color#000}
.lots_item-text p{
	line-height: 1.2rem;
}
.lots_item-title {
    padding-bottom: 10px;
}

.subscription-loyalty {
    margin: 10px 0;
    padding: 8px 12px;
    background: #f9f9f9;
    border-radius: 4px;
    font-size: 14px;
}
.subscription-loyalty div {
    margin: 2px 0;
}