@charset "UTF-8";
/* Удаление стилей браузера по умолчанию */
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

/* /Удаление стилей браузера по умолчанию */
html {
  overflow-y: scroll !important;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

img {
  opacity: 1;
  transition: opacity 0.3s;
}

img[data-src] {
  opacity: 0;
}

.hidden {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  background-color: #3d3d3b;
}
.wrapper .content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

a.active {
  color: #f2cf68 !important;
}

.container {
  max-width: 1490px;
  margin: 0 auto;
  padding: 0 23px;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Навигация */
header {
  background-color: #3d3d3b;
  width: 100%;
}

nav {
  display: flex;
  align-items: center;
  padding: 25px 0;
}

.logo {
  min-width: 362px;
  position: relative;
  margin: 0 5px 0 0;
  display: flex;
  align-items: center;
}
.logo a {
  display: flex;
}
.logo a img {
  width: 155px;
  height: 55px;
}
.logo .logo_title {
  position: absolute;
  left: 155px;
  margin-left: 5px;
}
.logo .logo_title div {
  line-height: 1.2;
  color: #fff;
}
.logo .logo_title div:first-child {
  text-transform: uppercase;
  font-size: 24px;
}
.logo .logo_title div:last-child {
  text-align: center;
  font-size: 14px;
}
.logo .logo_title div span.gold {
  color: #f2cf68;
}

ul.menu {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
ul.menu li {
  margin: 0 10px 0 0;
}
ul.menu li:last-child {
  margin: 0;
}
ul.menu li a {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0;
  color: #ffffff;
}
ul.menu li a:hover {
  color: #f2cf68;
}
ul.menu li.lang {
  margin: 0 7px 0 0;
}
ul.menu li.lang:first-child {
  margin: 0 10px 0 20px;
}
ul.menu li.lang:last-child {
  margin: 0;
}
ul.menu li.lang img {
  width: 30px;
  height: 30px;
}
ul.menu li.lang {
  position: relative;
}
ul.menu li.lang::after {
  content: '';
  display: none;
  position: absolute;
  bottom: -35px;
  left: -65%;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #5e5e5e;
  color: #fff;
  z-index: 99;
}
ul.menu li.lang:hover::after {
  display: flex;
}
ul.menu li.lang.EN::after {
  content: 'English';
}
ul.menu li.lang.FR::after {
  content: 'Français';
}
ul.menu li.lang.IT::after {
  content: 'Italiano';
}
ul.menu li.lang.DE::after {
  content: 'Deutsch';
}
ul.menu li.lang.SP::after {
  content: 'Español';
}

ul.langs {
  display: flex;
}
ul.langs.mobile {
  margin-top: 20px;
}
ul.langs.mobile li {
  margin: 0 10px 0 0;
  position: relative;
}
ul.langs.mobile li:first-child {
  margin: 0 10px 0 0;
}
ul.langs.mobile li:last-child {
  margin: 0;
}
ul.langs.mobile li img {
  width: 30px;
  height: 30px;
}
ul.langs.mobile li::after {
  content: '';
  display: none;
  position: absolute;
  bottom: -35px;
  left: -65%;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #5e5e5e;
  color: #fff;
  z-index: 99;
}
ul.langs.mobile li:hover::after {
  display: flex;
}
ul.langs.mobile li.EN::after {
  content: 'English';
}
ul.langs.mobile li.FR::after {
  content: 'Français';
}
ul.langs.mobile li.IT::after {
  content: 'Italiano';
}
ul.langs.mobile li.DE::after {
  content: 'Deutsch';
}
ul.langs.mobile li.SP::after {
  content: 'Español';
}

ul.mobile-menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 50px;
  height: 25px;
}
ul.mobile-menu-icon li {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  background-color: #3d3d3b;
  min-width: 100%;
  margin: 30px 0;
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-name: fadeInDown;
}
.mobile-nav ul.mobile-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
}
.mobile-nav ul.mobile-menu li {
  padding: 15px 0;
}
.mobile-nav ul.mobile-menu li:last-child {
  border: none;
}
.mobile-nav ul.mobile-menu li a {
  display: block;
  font-size: 16px;
  line-height: 1;
  color: #fff;
}
.mobile-nav ul.mobile-menu li a:hover {
  color: #f2cf68;
}

/* /Навигация */
.main {
  width: 100%;
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.main .main-image {
  width: 100%;
  padding-top: 14vw;
  position: relative;
}
.main .main-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 2;
}

.about-caviar {
  background-color: #292929;
  text-align: center;
  padding: 15px 7%;
  font-family: Georgia, 'Times New Roman', Times, serif;
}
.about-caviar .special-title {
  color: #0cc;
}
.about-caviar h2 {
  font-size: 40px;
  line-height: 1.1;
  color: #fff;
  font-weight: 600;
  margin: 0 0 20px;
}
.about-caviar p {
  font-size: 16px;
  line-height: 1.2;
  color: #f2cf68;
  margin: 0 0 16px;
}
.about-caviar p.delivery {
  font-weight: 600;
  font-size: 20px;
}

.special-title {
  text-align: center;
  font-size: 41px;
  line-height: 1;
  font-weight: 700;
  color: #3059ce;
  margin: 5px 0 7px 0;
}

.offer {
  background-color: #ffffff;
  padding: 20px 7% 13px 7%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.offer h1 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 0 0 20px 0;
}

.to-thank-you {
  color: #ff0202;
  font-weight: 700;
  font-size: 17px;
}

.contacts {
  text-align: center;
  font-family: Georgia, 'Times New Roman', Times, serif;
  padding: 10px 5px 15px 5px;
}
.contacts p {
  font-size: 16px;
  line-height: 1.1;
  margin: 7px 0 7px;
}
.contacts a {
  color: #3f51bd;
}
.contacts .address {
  font-size: 16px;
  line-height: 1.2;
  margin: 20px 0 20px 0;
}
.contacts .website-link {
  margin: 20px 0;
}
.contacts .website-link a {
  color: #000000;
  font-size: 18px;
  line-height: 1.1;
}
.contacts .website-link a:hover {
  color: #3f51bd;
}
.contacts img {
  width: 60%;
}

.thank-you-block {
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.thank-you-block h3 {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 30px;
  margin: 0 0 20px 0;
}
.thank-you-block img {
  width: 45px;
  height: 45px;
  margin: 0 18px 0 0;
}
.thank-you-block p {
  font-size: 16px;
  line-height: 1.1;
  margin: 7px 0 7px;
}

.offer-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  border: 2px solid #f2cf68;
  margin: 0 0 30px 0;
}
.offer-body h2 {
  text-align: center;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 20px;
}
.offer-body h2.about-us-heading {
  text-transform: uppercase;
  text-align: center;
  font-size: 33px;
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 10px;
}
.offer-body h2.about-us-heading-s {
  font-size: 33px;
}

.policy {
  font-family: Georgia, 'Times New Roman', Times, serif;
  padding: 10px 10px 0;
}
.policy .policy-info-section {
  margin: 0 0 20px;
}
.policy .policy-info-section h3 {
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
  margin: 0 0 10px 0;
}
.policy .policy-info-section p {
  font-size: 16px;
  line-height: 1.2;
  margin: 10px 0 10px;
}
.policy .policy-info-section p a {
  color: #3f51bd;
}
.policy .shipping-handling-section {
  margin: 0 0 20px;
}
.policy .shipping-handling-section:last-child {
  margin: 0;
}

.about-us {
  font-family: Georgia, 'Times New Roman', Times, serif;
}
.about-us .about-us-inner {
  display: flex;
}
.about-us .about-us-inner .text {
  flex: 1 1 45%;
  padding: 0 10px;
}
.about-us .about-us-inner .text p {
  font-size: 16px;
  line-height: 1.2;
  margin: 10px 0 10px;
}
.about-us .about-us-inner .photos {
  flex: 1 1 50%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  height: -moz-fit-content;
  height: fit-content;
}
.about-us .about-us-inner .photos .img {
  flex: 1 1 45%;
  width: 100%;
  padding-top: 15vw;
  position: relative;
  margin: 1.2%;
}
.about-us .about-us-inner .photos .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 2;
}

.payment-method {
  display: flex;
  justify-content: flex-end;
}
.payment-method .icons img {
  height: 40px;
  width: 100%;
}
.payment-method .currency {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #000000;
  text-align: center;
  padding: 4px 6px 6px 6px;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
}
.payment-method .currency div {
  color: #fff;
  font-weight: 700;
}
.payment-method .currency div img {
  width: 15px;
  height: 15px;
}
.payment-method .currency div:first-child {
  display: flex;
  align-items: center;
  font-size: 18px;
}

.special-proposal {
  margin: 0 0 30px;
}
.special-proposal .title {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
  margin: 10px 0 15px 0;
}
.special-proposal .special-offer-title {
  font-size: 22px;
}

.caviar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 10px 0 0 0;
}
.caviar .image {
  margin: 0 0 14px 0;
}
.caviar .image img {
  min-width: 100%;
}

.price .old {
  color: #ff0000;
  text-decoration: line-through;
}

.about-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 30px 0;
}
.about-product h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 0 0 14px;
}
.about-product h3 a {
  color: #000000;
}
.about-product h3 a:hover {
  color: #3f51bd;
}

.description {
  text-align: center;
}
.description p {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.1;
  margin: 0 0 14px 0;
}
.description p.shipping {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
}

.payment {
  text-align: center;
  font-size: 13px;
  line-height: 1;
}
.payment h4 {
  font-weight: 700;
}
.payment .icons {
  margin: 0 0 14px 0;
  display: flex;
  justify-content: center;
}
.payment .icons img {
  display: inline-flex;
  flex: 0 1 5%;
}
.payment .icons img:first-child {
  max-width: 140px;
  max-height: 55px;
}
.payment .icons img:last-child {
  max-width: 87px;
  max-height: 55px;
}
.payment p {
  margin: 0 0 13px 0;
}

.footer {
  width: 100%;
}
.footer .copyright {
  background-color: #292929;
  text-align: center;
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: 0.03em;
  padding: 10px 0;
  color: #fff;
  opacity: 0.4;
}
