* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, sans-serif;
  background: #000;
  color: #fff;
  scroll-behavior: auto;
}

html {
    scroll-behavior: smooth;
}

body.menu-open {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}

a {
  text-decoration: none;
}

.btn {
  padding: 20px 40px;
  border-radius: 10px;
  font-weight: bold;
  color: #1E265B;
  transition: all 0.3s;
}

.btn:hover {
  opacity: 0.8;
}

.wrap {
  width: min(1320px, 100% - 80px);  /*padding-inline: 52px;*/
  margin: 0 auto;
  position: relative;
}

.flex {
  display: flex;  /*justify-content: center;*/

  /*align-items: center;*/
}

.flex-space {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.halftext-color {
  color: rgb(138, 143, 152);
}

.go-catalog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #264AB4;
  padding: 20px;
  color: #264AB4;
  font-size: 14px;
  margin-top: auto;
  transition: all 0.3s;
}

.go-catalog::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 10px;
  background: url('../img/arrow-dark.svg') no-repeat center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.go-catalog:hover::after {
  transform: translateX(5px);
}

.hero {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-inline: 50px;
}

.hero-header {
  display: flex;
  justify-content: center;
  padding-top: 24px;
  position: relative;
  z-index: 1001;
}

.header-glass {
  width: 100%;
  height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(30px)
  saturate(180%);
  -webkit-backdrop-filter: blur(30px)
  saturate(180%);
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 10px 40px rgba(0, 0, 0, .25);
}

.header-glass {
  position: relative;
  overflow: hidden;
}

.header-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .20) 0%, rgba(255, 255, 255, .06) 25%, transparent 50%);
  pointer-events: none;
}

.logo img {
  height: 70px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: .3s;
}

.nav a:hover {
  opacity: .7;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.header-btn {
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: #1E40AF;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  transition: .3s;
}

.header-btn span {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
}

.header-btn:hover {
  transform: translateY(-2px);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.phone {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.hero-body {
  flex: 1;
  display: flex;
  align-items: flex-end;
  margin-bottom: 50px;
  justify-content: space-between;
  gap: 80px;
}

.hero-left {
  max-width: 700px;
}

.hero-left h1 {
  font-size: 44px;
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 32px;
}

.hero-line {
  width: 70px;
  height: 4px;
  background: #fff;
  margin-bottom: 32px;
}

.hero-left p {
  font-size: 16px;
  line-height: 1.6;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 48px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  height: 64px;
  padding: 0 36px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: 0.3s;
}

.btn--blue {
  background: #1E40AF;
  color: #fff;
  font-weight: 600;
}

.btn--blue:hover {
  opacity: 0.8;
}

.btn--glass {
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(10px);
  color: #fff;
}

.btn--outline {
  border: 1px solid rgba(255, 255, 255, .4);
  background: transparent;
  color: #fff;
}

.hero-steps {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 10px 40px rgba(0, 0, 0, .25);
}

.step span {
  font-size: 24px;
  font-weight: 700;
  opacity: 0.8;
}

.step p {
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 240px 240px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 120px 30px 40px;
  background: rgba(10, 10, 10, .9);
  backdrop-filter: blur(30px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: .4s;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 32px;
  font-weight: 600;
}

.mobile-menu-bottom {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu-bottom a:first-child {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: .3s;
}

.about-oil {
  background: #f8f8f8;
  color: #0f1e5a;
  padding: 100px 0;    /*border-radius: 50px 50px 0 0;*/
}

.oil-stats {

  /*background: #1e40af;*/
  padding: 50px 0;
  border-radius: 50px 50px 0 0;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 10px 40px rgba(0, 0, 0, .25);
}

.items-oil-stats {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.stats-oil-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
}

.stat {
  border-left: 1px solid rgba(15, 30, 90, .1);
  padding-left: 40px;
}

.stat strong {
  display: block;
  font-size: 50px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 12px;
}

.stat span {
  font-size: 18px;
}

.about-oil-content {
  display: flex;
  gap: 60px;
  align-items: stretch
}

.about-oil-left {
  flex: 2;
}

.about-oil-right {

  /*width: 45%;*/
  flex: 1;
  display: flex; /* background: #eef1f7;
  padding: 24px;
  border-radius: 24px*/
}

.about-oil-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.title {
  font-size: 44px;
  line-height: 1.05;
  margin-bottom: 32px;
  color: #0f1e5a;
}

.about-oil-desc {
  max-width: 700px;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 40px;
}

.about-oil-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.about-card {
  display: flex;
  justify-content: center;
  padding: 30px 20px;
  align-items: center;
  overflow: hidden;
  border-radius: 24px;    /*min-height: 260px;*/

  /*background: radial-gradient(circle at 86% 57%, #1c68a2 0%, #151257 65%);*/
  background: #1e40af;
}

/*.about-card img {
width: 100%;
height: 100%;
object-fit: cover;
}*/

/*.about-card::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
    to top,
    rgba(0,0,0,.8),
    rgba(0,0,0,.2)
);
}*/

.about-card-content {

  /* position: absolute;
   left: 24px;
   right: 24px;
   bottom: 24px;*/
  color: #fff;
}

.about-card-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.about-card-content p {
  font-size: 14px;
  line-height: 1.4;
}

.about-benefits {
  background: #fff;
  border-radius: 24px;
  padding: 35px;
}

.about-benefits h3 {
  font-size: 36px;
  margin-bottom: 25px;
}

.about-benefits ul {
  list-style: none;
}

.about-benefits li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
  font-size: 20px;
}

.about-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: url("../img/cards/check.svg") center/contain no-repeat;
}

.label {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #1E40AF;
  color: #fff;
  font-size: 14px;
  margin-bottom: 24px;
}

.benefits {
  padding: 100px 0;
  background: #f3f5f9;
}

.benefits .item {
  background: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 73%, #90bdff 129%);
  border-radius: 20px;
  flex: 1;
  padding: 30px;
  position: relative;
  flex-direction: column;
}

.benefits h2 {
  font-size: 20px;
  color: #1E265B;
  margin-top: 30px;
}

.benefits p {
  font-size: 14px;
  color: #6B6B6B;
  position: relative;
  padding-left: 32px;
  margin: 10px 0;
}

.benefits .results {
  padding: 15px 10px;
  background: #fff;
  text-align: center;
  border-radius: 10px;
  margin-top: 20px;  /* box-shadow: 0px 14px 31px -6px rgba(225, 225, 225, 0.69); */
  color: #1E265B;
}

.benefits p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: url("../img/cards/check.svg") center/contain no-repeat;
}

.benefits .bot-img {
  width: 100%;
  margin-top: auto;
}

.benefits hr {
  border: none;
  height: 1px;
  background-color: #D9D9D9;
  margin: 10px 0;
}

.benefits > .wrap > .flex {
  gap: 20px;
}

.benefits .benefits-title {
  color: #0f1e5a;
}

.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #004aad;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  z-index: 1000;
  transition: .3s;
  border: none;
  cursor: pointer;
}

.scroll-top:hover {
  transform: translateY(-3px);
}

.scroll-top {
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 1000;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.title-animation {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity .8s ease, transform .8s ease;
}

.title-animation.show {
  opacity: 1;
  transform: translateY(0);
}

.factory {

  /*padding: 0 0 100px 0;*/
  padding: 100px 0; /* background: #0f1115;*/
  background: #eef1f7;  /* overflow: hidden;*/
}

.factory-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 20px;
}

.factory-grid > .item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.factory-grid > .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
  display: block;
}

.factory-grid > .item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.factory-grid > .item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.factory-grid > .item:hover::after {
  opacity: 1;
}

.factory-grid > .item--large {
  grid-row: span 2;
}

.factory-grid > .item--wide {
  grid-column: span 2;
}

.factory-grid > .item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.factory-grid > .item:hover video {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.item--video {
  cursor: pointer;
}

.item--video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .25), transparent);
}

.item--video::before {
  content: "▶";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgb(255 255 255 / 76%);
  backdrop-filter: blur(10px);
  color: #2e4cb8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(8px);
}

.video-modal__content {
  position: relative;
  width: min(1100px, 92vw);
  z-index: 2;
}

.video-modal video {
  width: 100%;
  max-height: 85vh;
  border-radius: 20px;
  background: #000;
}

.video-modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 3;
}

.products {
  padding: 100px 0;
  background: #eef1f7;
}

.products > .wrap > .flex > .item {
  flex: 1;
  margin-bottom: 20px;
}

.products > .wrap > .flex > .item > .flex-column {
  height: 100%;
}

.products > .wrap > .flex > .item > .flex-column > .bottom {
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 30px;
  position: relative;  /*height: 100%;*/
  gap: 20px;
}

.products > .wrap > .flex > .item > .flex-column > .bottom > .flex-space > i {
  color: #6B6B6B;
  font-size: 14px;
}

.products > .wrap > .flex > .item > .flex-column > .bottom > b {
  font-size: 14px;
}

.products > .wrap > .flex > .item > .flex-column > .bottom > .cert-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: auto;
  transition: all 0.3s;
  color: #fff;
  border-radius: 10px;
  padding: 20px;
}

.products > .wrap > .flex > .item > .flex-column > .bottom > .cert-btn:hover {
  opacity: 0.6;
}

.products > .wrap > .flex > .item > .flex-column > .bottom > .cert-btn:hover::after {
  transform: translateX(5px);
}

.products > .wrap > .flex > .item > .flex-column > .bottom > .cert-btn::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 10px;
  background: url('../img/arrow-white.svg') no-repeat center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.products > .wrap > .flex > .item > .flex-column > .bottom .green {
  background: #1F8D24;
}

.products > .wrap > .flex > .item > .flex-column > .bottom .blue {
  background: #264AB4;
}

.products > .wrap > .flex > .item > .flex-column > .bottom .blue-txt {
  color: #264AB4;
}

.products > .wrap > .flex > .item > .flex-column > .bottom .yellow {
  background: #E0A10B;
}

.products > .wrap > .flex > .item > .flex-column > .bottom .yellow-txt {
  color: #E0A10B;
}

.products > .wrap > .flex > .item > .flex-column > .bottom .green-txt {
  color: #1F8D24;
}

.products > .wrap > .flex > .item > .flex-column > .top {

  /* background: linear-gradient(236deg, #FDE68A 0%, #78350F 100%); */

  /* background: radial-gradient(circle at 55% 45%, #1c68a2 0%, #151257 65%); */
  background: #000;    /* padding: 20px; */
  border-radius: 20px 20px 0 0;    /* position: relative; */
  min-height: 250px;    /*border-bottom: 1px solid #f7f7f7;*/
}

.products > .wrap > .flex > .item > .flex-column > .top img {

  /*position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);*/
  width: 60%;
  border-radius: 20px 20px 0 0;
}

.products > .wrap > .flex > .item > .flex-column > .bottom > .flex-space > h2 {
  color: #1E265B;
  margin: 0;
}

.products > .wrap > .flex > .item > .flex-column > .bottom > .approvals > h2 {
  font-size: 14px;
  color: #78350f;
  margin: 0;
}

.products > .wrap > .flex > .item > .flex-column > .bottom > .approvals > a {
  font-size: 14px;
  color: #6B6B6B;
  margin: 0;  /*border: 1px solid #1E265B;*/
  background: #fde68a;
  border-radius: 5px;
  padding: 5px 10px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.products > .wrap > .flex > .item > .flex-column > .bottom > .approvals > a::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 10px;
  background: url(../img/arrow-mini.svg) no-repeat center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.products > .wrap > .flex > .item > .flex-column > .bottom > .approvals > a:hover::after {
  transform: translateX(5px);
}

.products > .wrap > .flex > .item > .flex-column > .bottom > p {
  font-size: 14px;
  color: #6B6B6B;
  margin: 0;
}

.products > .wrap > .flex > .item > .flex-column > .bottom > .flex > .item {
  padding: 10px;
  background: #F1F2F1;
  border-radius: 10px;
  font-size: 12px;
  color: #1e265b;
  margin-right: 5px;
}

.products > .wrap > .flex > .item > .flex-column > .bottom > hr {
  border: none;
  height: 1px;
  background-color: #D9D9D9;
  margin: 0;
}

.products > .wrap > .flex {
  gap: 20px;
}

.products > .wrap > .flex > .item > .flex-column > .top > .product-badge {
  background: #f3f4f6;
  border-radius: 25px;
  display: inline-flex;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  color: #6b6b6b;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

section.advantages {

  /*background: radial-gradient(circle at 86% 57%, #1c68a2 0%, #151257 65%);*/

  /*background: linear-gradient(119deg, #040F2E 48%, #1E40AF 100%);*/

  /* background: url(../img/singa.png);
   background-size: cover;
   background-repeat: none;
   background-position: center center;
   background-attachment: fixed;*/
  padding: 120px 0;
  position: relative;
  overflow: hidden;  /*margin: 100px auto;*/
}

.advantages__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.advantages__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
  z-index: 2;
}

.advantages > .wrap {
  z-index: 3;
}

.advantages > .wrap > .item-box {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 0.6fr;  /*grid-template-rows: 1fr 1fr;*/
  gap: 20px;
}

.advantages > .wrap > .item-box > .item {
  color: #fff;
  border-radius: 20px;
  padding: 35px;  /*display: grid;*/
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 10px 40px rgba(0, 0, 0, .25);
}

.advantages > .wrap > .item-box > .item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .18) 0%, rgba(255, 255, 255, .06) 15%, transparent 45%);
  pointer-events: none;
}

.advantages > .wrap > .item-box > .item > h3 {
  color: #fff;
  font-size: 18px;
  margin: 10px 0;
}

.advantages > .wrap > .item-box > .item > p {
  color: #bebebe;
  font-size: 16px;
  margin: 10px 0;
}

.advantages > .wrap > .item-box > .item > hr {
  border: none;
  height: 1px;
  background-color: #D9D9D9;
}

.advantages > .wrap > .item-box > .item-1 {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 20px;  /*background: #fff;*/
  padding-bottom: 0;
  gap: 20px;
}

.advantages > .wrap > .item-box > .item-1 > img {
  margin-top: auto;
  display: block;
  width: 100%;
}

.advantages > .wrap > .item-box > .item-2 {
  grid-column: 2;
  grid-row: 1;
}

.advantages > .wrap > .item-box > .item-3 {
  grid-column: 3;
  grid-row: 1;
}

.advantages > .wrap > .item-box > .item-4 {
  grid-column: 2;
  grid-row: 2;
}

.advantages > .wrap > .item-box > .item-5 {
  grid-column: 3;
  grid-row: 2;  /*background: #1E40AF;*/
}

/*.advantages > .wrap > .item-box > .item-5 > h3,
.advantages > .wrap > .item-box > .item-5 > p{
 color: #fff;
}
*/
.advantages > .wrap > .item-box > .item-5 > a,
.advantages > .wrap > .item-box > .item-3 > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid #fff;
  padding: 10px 20px;
  color: #fff;
  font-size: 14px;
  margin-top: auto;
  transition: all 0.3s
}

.advantages > .wrap > .item-box > .item-5 > a::after,
.advantages > .wrap > .item-box > .item-3 > a::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 10px;
  background: url(../img/arrow-white.svg) no-repeat center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.advantages > .wrap > .item-box > .item-5 > a:hover::after,
.advantages > .wrap > .item-box > .item-3 > a:hover::after {
  transform: translateX(5px);
}

/*.advantages > .wrap > .item-box > .item-3 > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid #1E265B;
  padding: 10px;
  color: #1E265B;
  font-size: 14px;
  margin-top: auto;
  transition: all 0.3s
}

.advantages > .wrap > .item-box > .item-3 > a::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 10px;
  background: url(../img/arrow-dark.svg) no-repeat center;
  background-size: contain;
  transition: transform 0.3s ease;
}*/

.advantages > .wrap > .item-box > .item-3 > a:hover::after {
  transform: translateX(5px);
}

.advantages > .wrap > .item-box > .item-logos {
  grid-column: 4;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.advantages > .wrap > .item-box > .item-logos img {
  width: 100%;
}

.advantages > .wrap > h1.title {
  color: #fff;
}

.about-oil, .products, .factory, .oil-stats, .advantages, .advantages, .partners, .instagram-section, .about-brand, .footer, .benefits {
  position: relative;
  z-index: 2;
}

.partners {
  padding: 120px 0;
  background: #f5f5f5;
}

.partners-top {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  margin-bottom: 60px;
}

.partners-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.partners-circle {
  position: relative;
  width: 120px;
  height: 120px;
}

.partners-circle svg {
  width: 100%;
  height: 100%;
}

.partners-circle-arrow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #1f3359;
}

.partners-text {
  font-size: 16px;
  line-height: 1.5;
  color: #6b7280;
}

.partners-label {
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #7c879a;
  text-transform: uppercase;
}

.partners-title {
  max-width: 760px;
  font-size: clamp(42px, 4vw, 72px);
  line-height: 1.05;
  font-weight: 500;
  color: #111827;
}

.partners-title span {
  color: #9ca3af;
}

.partners-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.partners-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 32px;
  border-radius: 999px;
  background: #1e40af;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.partners-btn-arrow {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1e40af;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.partners-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}

.partners-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: floatingZoom 10s ease-in-out infinite;
}

@keyframes floatingZoom {
  0% {
    transform: scale(1) translateY(0);
  }

  50% {
    transform: scale(1.06) translateY(-10px);
  }

  100% {
    transform: scale(1) translateY(0);
  }

}

.partners-image {
  display: block;
  width: 100%;
  border-radius: 32px;
  object-fit: cover;
}


.about-brand {
  padding: 120px 0;
  background: #fff;
}

.about-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-brand-header {
  position: relative;
  margin-bottom: 40px;
}

.about-brand-title {
  max-width: 1000px;
  font-size: clamp(42px, 4vw, 72px);
  line-height: 1.05;
  font-weight: 500;
  color: #0e1b36;
}

.about-brand-title span {
  color: #98a1b3;
}

.about-brand-cover {
  border-radius: 32px;
  overflow: hidden;
  height: 700px;
}

.about-brand-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 12s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }

}

.about-brand-description {
  max-width: 900px;
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.7;
  color: #5f6878;
}

.about-brand-company {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 120px;
}

.about-brand-founder-image {
  height: 700px;
  border-radius: 24px;
  overflow: hidden;
}

.about-brand-label {
  margin-bottom: 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #8d96a8;
}

.about-brand-company-title {
  margin-bottom: 24px;
  font-size: 54px;
  line-height: 1.1;
  color: #0e1b36;
}

.about-brand-company-content p {
  color: #5f6878;
  line-height: 1.8;
}

.about-brand-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.about-brand-stat {
  padding-top: 24px;
  border-top: 1px solid #dfe3ea;
}

.about-brand-stat-number {
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 600;
  color: #1e40af;
}

.about-brand-stat-text {
  color: #6d7688;
  line-height: 1.5;
}

.about-brand-philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 120px;
}

.about-brand-philosophy-title {
  margin-bottom: 40px;
  font-size: 54px;
  line-height: 1.1;
  color: #0e1b36;
}

.about-brand-philosophy-title span {
  color: #9aa2b2;
}

.about-brand-philosophy-image {
  overflow: hidden;
  border-radius: 24px;
}

.about-brand-philosophy-left .about-brand-philosophy-image {
  height: 600px;
}

.about-brand-philosophy-right .about-brand-philosophy-image {
  height: 500px;
  margin-bottom: 40px;
}

.about-brand-feature {
  padding: 30px 0;
  border-bottom: 1px solid #dfe3ea;
}

.about-brand-feature h4 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #0e1b36;
}

.about-brand-feature p {
  color: #5f6878;
  line-height: 1.8;
}


.footer {
  border-top: 1px solid #dfe4ea;
  background: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 420px 1fr;
}

.footer-brand {
  padding: 80px 60px 80px 0;
  border-right: 1px solid #dfe4ea;
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: inline-block;
  width: 260px;
}

.footer-logo img {
  width: 100%;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 120px;
}

.footer-social {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f4f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.footer-social:hover {
  background: #173b82;
  color: #fff;
}

.footer-company {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #99a1af;
}

.footer-content {
  padding: 80px 0 80px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-label {
  margin-bottom: 6px;
  font-size: 14px;
  color: #9aa3b3;
}

.footer-group a, .footer-group p {
  color: #122549;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav a {
  transition: .3s;
}

.footer-nav a:hover {
  color: #173b82;
}

.footer-route {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 12px;
  border: 1px solid #dfe4ea;
  border-radius: 14px;
  transition: .3s;
  font-size: 14px;
}

.footer-route:hover {
  background: #173b82;
  color: #fff;
}

.footer-bottom {
  min-height: 90px;
  border-top: 1px solid #dfe4ea;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dev {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-bottom span, .footer-bottom a {
  color: #9aa3b3;
}

.instagram-section {
  padding: 100px 0;
  background: #fff;
}

.instagram-section .content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 20px;
}

.insta-item-large {
  grid-row: span 2;
}

.insta-item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
}

.insta-item video, .insta-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  object-fit: cover;
}

.insta-item:hover video, .insta-item:hover img {
  transform: scale(1.05);
}