@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    -webkit-tap-highlight-color: transparent;
}
:root {
    --main-yellow-color: #fff164;
    --main-black-color: #000;
    font-size: 18px;
}
.loader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 222;
    transition: 0.5s;
    background-color: #fcec5e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
}
.loader img {
    max-width: 100%;
}
body {
    background-color: #f4f4f4;
}
a {
    color: inherit;
}
button,
input,
textarea {
    border: 0;
    outline: 0;
}
.bg__white {
    background-color: #fff;
}

.bg__dark {
    background-color: var(--main-black-color);
}
.bg__yellow {
    background-color: var(--main-yellow-color);
}
.container {
    width: 1162px;
    max-width: 100%;
    margin: 0 auto;
}
header .logo {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}
header {
    height: 64px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .logo img {
    width: 216px;
    height: 26px;
    display: block;
}
header .logo p {
    font-size: 0.8rem;
}
header ul {
    height: 26px;
    display: flex;
    align-items: center;
}
header ul li {
    display: flex;
    align-items: center;
    padding: 0 16px;
}
header ul li:last-of-type {
    padding-right: 0;
}
nav {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}
nav a {
    display: flex;
    align-items: center;
    font-weight: 700;
}
.black__btn {
    background-color: var(--main-black-color);
    display: flex;
    align-items: center;
    color: #fff;
    padding: 24px;
    width: max-content;
    font-weight: 900;
    font-size: 2rem;
    gap: 10px;
    transition: 0.5s color, background-color;
}
.black__btn svg {
    width: 40px;
    fill: #fff;
    transition: 0.5s;
}
.black__btn:hover {
    background-color: var(--main-yellow-color);
    color: var(--main-black-color);
}
.black__btn:hover svg,
.black__btn:hover svg path {
    fill: var(--main-black-color);
}
.hero__bg {
    background-image: url("../images/hero-background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 190px;
    padding-bottom: 100px;
}
.hero {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}
.hero .text {
    width: 40%;
}
.hero .text h1 {
    font-weight: 900;
    font-size: 2.5rem;
}
.hero .text p {
    font-size: 1.3rem;
    margin: 30px 0;
    font-weight: 600;
}
.hero .image {
    width: 860px;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translate(250px, 155px);
    z-index: 2;
}
.hero .image img {
    width: 100%;
}
.right__arrow {
    width: 40px;
}
.full__width__slider {
    width: 100%;
    height: 72vh;
    min-height: 450px;
}
.full__width__slider .swiper {
    width: 100%;
    height: 100%;
}
.full__width__slider .swiper .slide-text {
    width: 50%;
    position: absolute;
    top: 20px;
    left: 30px;
    color: #fff;
    z-index: 1;
}
.anim {
    transform: translateX(-200px);
    opacity: 0;
    visibility: hidden;
}
.swiper-slide-active .anim {
    transform: translateX(0) !important;
    opacity: 1;
    visibility: visible;
}
.full__width__slider .swiper .slide-text h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}
.full__width__slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comments .swiper-button-prev {
    transform: translateX(-15px);
}
.comments .swiper-button-next {
    transform: translateX(15px);
}
@media screen and (max-width: 768px) {
    .comments .swiper-button-prev {
        transform: translateX(-35px);
    }
    .comments .swiper-button-next {
        transform: translateX(35px);
    }
}
.comments .swiper-button-prev img {
    transform: rotate(180deg);
    width: 27px !important;
    height: 29px !important;
}
.comments .swiper-button-prev::after,
.comments .swiper-button-next::after {
    display: none !important;
}
.comments .swiper-button-next img {
    width: 27px !important;
    height: 29px !important;
}
.swiper-button-prev::after,
.swiper-button-next::after {
    color: var(--main-yellow-color);
}
.swiper-pagination-bullet {
    background-color: var(--main-yellow-color);
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--main-yellow-color);
}
.full__width__slider .swiper-button-prev {
    padding-left: 50px;
}
.full__width__slider .swiper-button-next {
    padding-right: 50px;
}
.black__btn.reversed {
    background: linear-gradient(to right, #6ce9f4, #e393e0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.youtube__video video {
    width: 100%;
    height: 760px;
    object-fit: cover;
    display: block;
}
.product__catalog__single {
    display: block;
    transition: 0.5s;
    padding: 10px;
}
.product__catalog__single > img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}
.product__catalog__single:hover {
    background-color: var(--main-yellow-color);
}
.product__catalog__single ul {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}
.product__catalog__single ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.product__catalog__single ul img {
    width: 40px;
    display: block;
    margin-bottom: 10px;
}
.product__catalog__single h2 {
    font-size: 2.2rem;
}
.product__catalog {
    margin-top: 75px;
}
.section__title {
    font-size: 2.1rem;
    text-align: center;
}
.alert-danger {
    margin: 10px 0;
}
.alert-danger li {
    color: #fd1014;
    margin-bottom: 5px;
}
.section__title.single {
    padding: 45px 0;
}
.product__catalog__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    margin-top: 30px;
}
.product__catalog .black__btn {
    margin: 0 auto;
    margin-top: 30px;
    font-size: 1.6rem;
}
.how__it__works {
    margin-top: 80px;
}
.how__it__works ul {
    margin-top: 40px;
}
/* .how__it__works ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 400px;
  margin-bottom: 20px;
  background-color: #fff;
  box-shadow: 0px 3px 1.5px rgb(94 99 71 / 15%);
  border-radius: 15px;
  padding: 20px 50px;
}
.how__it__works ul li:last-of-type {
  margin-bottom: 0;
}
.how__it__works ul li > div {
  display: flex;
  align-items: center;
  gap: 20px;
}
.how__it__works .count {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-yellow-color);
  font-weight: 900;
  font-size: 3.6rem;
}
.how__it__works p {
  font-size: 2rem;
  margin-bottom: 20px;
}
.how__it__works .black__btn {
  font-size: 1.2rem;
}
.how__it__works .text {
  width: 500px;
}
.how__it__works img {
  width: 400px;
} */
.btn__sm {
    font-size: 1.5rem;
}
.demo__mosaic {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 3px 1.5px rgb(94 99 71 / 15%);
    margin-top: 45px;
    padding: 60px;
}
.demo__mosaic img {
    width: 460px;
    height: 460px;
}
.demo__mosaic .text {
    text-align: center;
    width: 400px;
}
.demo__mosaic label input {
    display: none;
}
.demo__mosaic label {
    margin: 0 auto;
    cursor: pointer;
}
.demo__mosaic .text h3 {
    font-size: 2rem;
    margin-bottom: 100px;
}
.demo__mosaic .image {
    position: relative;
    width: 460px;
    max-width: 100%;
    height: 460px;
}
.demo__mosaic .image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
.demo__mosaic .image img:first-of-type {
    clip-path: inset(0 50% 0 0);
    z-index: 2;
}
.demo__mosaic svg {
    transition: 0.5s;
}
.dont__know {
    margin-top: 45px;
}
.dont__know .swiper {
    height: 330px;
    margin-top: 25px;
}
.dont__know .swiper .swiper-slide {
    background-size: cover;
    background-position: left top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 80px 40px;
}
.dont__know .swiper .swiper-slide.text__left {
    flex-direction: row-reverse;
}
.dont__know .swiper .text {
    width: 530px;
    text-align: center;
    border: 3px solid #000;
    padding: 15px 17px 19px;
}
.section__subtitle {
    color: grey;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
}
.dont__know ul {
    margin-top: 40px;
}
.dont__know ul li {
    height: 330px;
    background-size: cover;
    background-position: left top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 80px 40px;
    margin-bottom: 30px;
}
.dont__know ul li.text__left {
    flex-direction: row-reverse;
}
.dont__know ul li .text {
    width: 530px;
    text-align: center;
    border: 3px solid #000;
    padding: 15px 17px 19px;
}
.dont__know ul li .text h4 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.dont__know ul li .text p {
    font-weight: 500;
    font-size: 1.6rem;
}
footer {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
footer .logo img {
    width: 216px;
}
footer a {
    color: #959595;
    font-weight: 600;
    transition: 0.4s color;
}
footer a:hover {
    color: #fff;
}
footer ul li {
    margin-bottom: 20px;
}
footer .banner {
    display: flex;
    border: 3px solid transparent;
    border-image: linear-gradient(to right, #6ce9f4, #d068ca, #e393e0);
    border-image-slice: 1;
    padding: 20px;
    margin-bottom: 30px;
}
footer .right .info {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .right .info a {
    color: #fe9a90;
    font-size: 30px;
    line-height: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}
footer .right .info.mail {
    justify-content: flex-end;
    transform: translateY(-10px);
}
footer .right .info.mail a {
    color: #c79af1 !important;
    font-weight: 600 !important;
    font-size: 18px !important;
}
footer .right .info p {
    text-transform: uppercase;
    font-weight: 700;
    line-height: 27px;
    color: #959595;
    margin-bottom: 10px;
}
footer .right .info span {
    font-size: 18px;
    letter-spacing: 1.8px;
    font-weight: 700;
}
footer .banner h5,
footer .banner p {
    background: linear-gradient(to right, #6ce9f4, #e393e0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
footer .banner .text {
    padding-right: 20px;
}
footer .banner h5 {
    font-size: 1.4rem;
    text-transform: uppercase;
}
footer .banner p {
    font-size: 1.1rem;
}
.demo__swipe__mosaic {
    margin-top: 45px;
    position: relative;
    padding: 0 30px;
}
.demo__swipe__mosaic::before {
    content: "";
    width: 100%;
    height: 50%;
    background-color: var(--main-yellow-color);
    position: absolute;
    bottom: -30px;
    left: 0;
}
.demo__swipe__mosaic > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.demo__swipe__mosaic__element {
    height: 400px;
    position: relative;
}
.demo__swipe__mosaic__element img {
    object-fit: cover;
}
.demo__swipe__mosaic img {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
.demo__swipe__mosaic img:first-of-type {
    clip-path: inset(0 50% 0 0);
    z-index: 2;
}
.demo__swipe__mosaic__element .divider {
    width: 6px;
    height: 100%;
    position: absolute;
    background-color: var(--main-yellow-color);
    z-index: 3;
    top: 0;
    left: 50%;
    cursor: pointer;
    transform: translateX(-50%);
}
.demo__swipe__mosaic__element .divider::before {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    background-image: url("../images/divider-icon.png");
    background-color: #fff;
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}
.comments {
    padding: 30px 0;
    margin-top: 30px;
}
.comments .swiper {
    height: 370px;
    text-align: center;
    padding: 10px;
}
.text__left {
    text-align: left !important;
}
.comments .swiper img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    margin-bottom: 20px;
}
.comments .swiper-slide > div {
    width: 100%;
    height: 100%;
    box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.1);
    padding: 10px;
    border-radius: 10px;
}
.comments .line {
    width: 70%;
    height: 2px;
    background-color: #000;
    margin: 0 auto;
}
.comments .section__title {
    margin-top: 40px;
}
.text__comments .images {
    display: flex;
    gap: 5px;
}
.text__comments .images img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}
.text__comments li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.text__comments li .text {
    display: flex;
    align-items: center;
}
.text__comments li .content {
    padding-right: 20px;
    flex: 1;
}
.text__comments li .content p {
    margin-top: 5px;
}
.text__comments li {
    border-bottom: 3px solid rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    display: none;
}
.text__comments li:last-of-type {
    border-bottom: 0;
}
.text__comments .letter {
    width: 60px;
    height: 60px;
    border: 3px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 20px;
}
.comments .show__more {
    position: relative;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    z-index: 0;
    cursor: pointer;
}
.comments .show__more p {
    margin: 0 auto;
    padding: 28px 40px;
    width: max-content;
    background-color: var(--main-yellow-color);
}
.comments .show__more::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: -1;
}
.hamburger__icon {
    display: none;
}
.socials img {
    width: 24px;
    height: 24px;
}
.mobile__sidebar {
    background-color: #000;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    z-index: 999;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: 0.4s;
}
.mobile__sidebar__opened .mobile__sidebar {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.text__comments img {
    cursor: pointer;
}
.image__modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
}
.success__modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.success__modal__inner {
    background-color: #fff;
    padding: 30px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.success__modal__inner p {
    font-size: 1.5rem;
    font-weight: 500;
}
.success__modal__inner img {
    width: 140px;
    height: 140px;
    margin-top: 10px;
}
.image__modal__open {
    overflow: hidden;
}
.image__modal__open .image__modal {
    opacity: 1;
    visibility: visible;
}
.image__modal img {
    max-width: 90%;
    max-height: 90vh;
}
.about__us {
    padding-bottom: 30px;
}
.about__us .text__image {
    display: flex;
    gap: 20px;
}
.about__us .text__image div,
.about__us .text__image img {
    flex: 1;
}
.text__image h3 {
    font-weight: 400;
    font-size: 2.5rem;
}
.text__image div h3 {
    margin-bottom: 70px;
}
.text__image p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.text__image.column {
    flex-direction: column;
}
.text__image:not(:first-of-type) {
    margin-top: 20px;
}
.with__banner__image {
    flex: unset !important;
    height: 746px;
    position: relative;
    display: flex;
    align-items: center;
}
.with__banner__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.with__banner__image p {
    width: 50%;
}
.about__us ul li {
    font-size: 1.5rem;
}
.contact {
    padding-bottom: 50px;
}
.contact .bg__yellow {
    padding-top: 30px;
    margin-bottom: 80px;
}
.contact__header {
    background-color: #fff;
    padding: 40px 80px;
    border-radius: 10px;
    transform: translateY(50px);
    box-shadow: 0px 3px 1.5px rgb(94 99 71 / 15%);
}
.contact__header h3 {
    margin-bottom: 20px;
}
.contact__header p {
    font-size: 1.5rem;
}
.contact h3 {
    font-size: 2.4rem;
    font-weight: 400;
}
.contact p {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.dealers__banner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 0;
}
.dealers__banner .text,
.dealers__banner .image {
    flex: 1;
}
.dealers__banner .image img {
    width: 100%;
}
.dealers__banner .text p {
    font-size: 2rem;
    font-weight: 900;
    line-height: 50px;
}
.dealers__banner .text img {
    width: 65px;
    margin-top: 100px;
    cursor: pointer;
}
.btn__center {
    margin: 0 auto;
}
.dealers__inner {
    padding: 20px 0;
}
.dealers__inner .black__btn {
    font-size: 1rem;
}
.dealers__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}
.dealers__grid li {
    background-color: #fff;
    padding: 30px;
    text-align: center;
}
.dealers__grid li img {
    margin-bottom: 26px;
    height: 170px;
    object-fit: cover;
}
.dealers__grid li p {
    font-size: 1rem;
    font-weight: 600;
    line-height: 28px;
}
.yellow__section {
    display: flex;
    box-shadow: 0 0 65px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}
.yellow__section .text {
    width: 45%;
    background-color: var(--main-yellow-color);
    padding: 48px 36px;
    text-align: center;
}
.yellow__section .image {
    width: 65%;
}
.yellow__section .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.section__title.half {
    width: 60%;
    margin: 0 auto;
}
.yellow__section .text p {
    margin-bottom: 20px;
}
.promo__bg {
    background-image: url("../images/promo-bg.png");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding-bottom: 160px;
}
.promo__bg .section__title {
    color: #fff;
}
.promo__bg ul {
    background-color: #fff;
    padding: 20px 50px;
}
.promo__bg ul li {
    display: flex;
    padding: 30px 40px;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 3px solid #f4f4f4;
}
.promo__bg ul li:last-of-type {
    border-bottom: 0;
}
.promo__bg ul li img {
    width: 90px;
}
.promo__bg ul li p {
    width: 80%;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 26px;
}
.image__banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px;
    box-shadow: 0 0 65px rgba(0, 0, 0, 0.2);
    transform: translateY(-50px);
}
.image__banner h1 {
    font-size: 3rem;
    text-transform: uppercase;
}
.image__banner .logo {
    margin-bottom: 130px;
}
.image__banner .logo img {
    width: 200px;
}
.contact__specialist {
    background-color: #fff;
    padding: 20px 100px;
}
.contact__specialist .section__subtitle {
    width: 70%;
    margin: 0 auto;
}
.manager__info {
    display: flex;
    margin-top: 30px;
    gap: 30px;
    justify-content: space-between;
}
.manager__info img {
    max-width: 90%;
    width: 370px;
    height: 370px;
    object-fit: cover;
}
.manager__info h3 {
    font-size: 2.5rem;
}
.manager__info span {
    color: gray;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 20px;
}
.manager__info p {
    font-size: 1.4rem;
    font-weight: 600;
    color: gray;
}
.manager__info a {
    font-weight: 900;
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: block;
}
.faq {
    padding: 30px 0;
}
.faq h1 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 120%;
}
.faq ul {
    margin-top: 20px;
}
.faq ul li {
    text-align: center;
    cursor: pointer;
    margin-bottom: 10px;
}
.faq ul li span {
    display: block;
    border: 4px solid black;
    position: relative;
    padding: 10px 25px;
    transition: 0.4s;
}
.faq ul li span:hover {
    background-color: #000;
    color: #fff;
}
.faq ul li span::before {
    content: "-";
    position: absolute;
    right: 10px;
    top: 50%;
    font-size: 2rem;
    font-weight: 700;
    transform: translateY(-50%);
}
.faq ul li.opened span::before {
    content: "+";
}
.faq ul li span {
    font-size: 1.2rem;
}
.faq__answer {
    background-color: #fff;
    text-align: left;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
}
.faq__answer p {
    margin-bottom: 20px;
    font-size: 1.3rem;
    padding: 10px 20px;
}
.delivery__header {
    margin-top: 30px;
}
.delivery__header h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 30px;
}
.delivery__header p {
    font-size: 1.2rem;
}
.delivery__types {
    margin-top: 30px;
    padding-bottom: 30px;
}
.delivery__type h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.delivery__type ul li {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 3px 1.5px rgb(94 99 71 / 15%);
    padding: 40px 60px;
    margin-bottom: 20px;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.delivery__type ul li div {
    position: relative;
    height: 100%;
}
.delivery__type ul li:last-of-type {
    margin-bottom: 0;
}
.delivery__type ul li h3 {
    font-size: 0.9rem;
}
.delivery__type ul li span {
    color: green;
    margin-top: 30px;
    display: block;
}
.delivery__type ul li > div {
    flex: 1;
}
.delivery__type ul li > div:nth-of-type(2) {
    padding: 0 20px;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
}
.delivery__type ul li p {
    font-weight: 700;
    margin-top: 10px;
}
.delivery__type ul li small {
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}
.product__thumb__swiper {
    width: 100%;
    height: 590px;
}
.product__thumb__swiper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.product__swiper {
    height: 46px;
    width: 100%;
    margin-top: 10px;
}
.product__info .left {
    width: 440px;
    position: relative;
}
.left .swiper-button-next {
    position: absolute;
    bottom: 0;
    right: 0;
    top: unset;
    transform: translateX(15px);
}
.left .swiper-button-next img {
    transform: rotate(180deg);
    cursor: pointer;
}
.left .swiper-button-next::after,
.left .swiper-button-prev::after {
    display: none;
}
.left .swiper-button-prev {
    position: absolute;
    bottom: 0;
    left: 0;
    top: unset;
    transform: translateX(-15px);
}
.product__info {
    margin-top: 60px;
    display: flex;
    gap: 30px;
}
.product__swiper img {
    width: 46px;
    height: 46px;
    object-fit: cover;
}
.product__swiper .swiper-slide {
    width: 46px;
    height: 46px;
}
.swiper-slide-thumb-active {
    opacity: 1 !important;
}
.product__swiper .swiper-slide {
    opacity: 0.4;
}
.pricing {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.pricing .price {
    padding: 15px 30px;
    border: 3px solid #000;
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}
.add__to__basket {
    background-color: #000;
    color: var(--main-yellow-color);
    padding: 15px 30px;
    display: block;
    font-size: 1.2rem;
    border: 3px solid #000;
    cursor: pointer;
    animation: basket__anim 1.5s 2s linear infinite;
}
@keyframes basket__anim {
    16.65% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }

    33.3% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }

    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }

    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }

    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.green {
    color: green;
    font-weight: 700;
    font-size: 1.3rem;
}
.product__info h1 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}
.product__info ul {
    margin-top: 20px;
}
.product__info ul li {
    margin-bottom: 10px;
}
.delivery__price {
    display: flex;
    align-items: center;
    padding: 15px 35px;
    background-color: #dfdfdf;
    margin-top: 30px;
    gap: 30px;
}
.product__additional__info {
    margin-top: 30px;
    display: flex;
    gap: 30px;
}
.product__additional__info .left {
    width: 440px;
}
.product__additional__info .right {
    width: calc(100% - 500px);
}
.product__additional__info video {
    width: 100%;
    object-fit: cover;
}
.product__additional__info .left ul img {
    width: 60px;
}
.product__additional__info .left ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}
.product__additional__info .left ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.product__additional__info .left ul li p {
    font-weight: 700;
    font-size: 13px;
}
.product__additional__info .left ul li small {
    font-weight: 400;
    font-size: 14px;
}
.product__manual p {
    margin: 10px 0;
}
.product__manual ul {
    margin: 20px 0;
}
.product__manual ul li {
    padding-left: 10px;
    list-style-type: square !important;
    list-style-position: inside;
    margin-bottom: 10px;
}
.reviews {
    margin-top: 30px;
}
.reviews .swiper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.product__manual pre {
    text-wrap: wrap;
}
.reviews .swiper {
    height: 350px;
}
.basket__outer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2222;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}
.basket__opened .basket__outer {
    opacity: 1;
    visibility: visible;
}
.basket__inner {
    width: 70%;
    max-width: 1200px;
    padding: 30px;
    position: absolute;
    top: 80px;
    left: 50%;
    background-color: #fff;
    transform: translateX(-50%);
}
.basket__inner table {
    width: 100%;
}
.basket__inner table,
.basket__inner table td,
.basket__inner table th {
    border: 1px solid #000;
    border-collapse: collapse;
    text-align: center;
    padding: 10px;
}
.basket__inner table button {
    background-color: transparent;
    border: 2px solid #000;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    font-weight: 800;
    cursor: pointer;
}
.basket__inner table span {
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 10px;
}
.links {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}
.links a {
    display: block;
    padding: 15px 35px;
    border: 3px solid #000;
    font-weight: 600;
    font-size: 1.3rem;
}
.links a.yellow {
    color: var(--main-yellow-color);
    background-color: var(--main-black-color);
    transition: 0.4s;
}
.links a.yellow:hover {
    opacity: 0.7;
}
.cart {
    margin: 30px 0;
}
.cart h1 {
    font-size: 2.5rem;
}

.cart table {
    width: 100%;
    margin-top: 30px;
}
.cart table,
.cart table td,
.cart table th {
    border: 1px solid #000;
    border-collapse: collapse;
    padding: 10px;
    text-align: center;
}
.cart table button {
    background-color: transparent;
    border: 2px solid #000;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    font-weight: 800;
    cursor: pointer;
}
.cart table span {
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 10px;
}
.cart table .remove {
    color: #fd1014;
    border: 0;
    font-size: 1rem;
}
.cart form {
    background-color: #dcdcdc;
    padding: 20px;
    margin-top: 20px;
}
.cart form h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 25px;
}
.about__us img {
    max-width: 100%;
}
.form-row.full {
    grid-template-columns: 1fr;
}
.form-row input {
    height: 30px;
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid #000;
    font-size: 1.1rem;
    padding: 10px;
}
.cart form button {
    background-color: #00c853;
    width: 100%;
    display: block;
    padding: 20px 0;
    color: #fff;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 2px;
    cursor: pointer;
}
.relative {
    position: relative;
}
.cart__icon {
    position: relative;
}
.cart__icon span {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-yellow-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #000;
    font-size: 13px;
    top: -5px;
    left: 10px;
    font-weight: bold;
}
.delivery__price table {
    border-collapse: collapse;
    border-spacing: 0;
}
.delivery__price tr:not(:last-of-type) {
    border-bottom: 1px solid #6d6d6d;
}
.delivery__price td {
    padding: 10px;
}
