@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@keyframes first-button-animate--open {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(6.05px) rotate(0deg);
    transform: translateY(6.05px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(6.05px) rotate(45deg);
    transform: translateY(6.05px) rotate(45deg);
  }
}
@keyframes first-button-animate--close {
  0% {
    -webkit-transform: translateY(6.05px) rotate(45deg);
    transform: translateY(6.05px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(6.05px) rotate(0deg);
    transform: translateY(6.05px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
}
@keyframes second-button-animate--open {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@keyframes second-button-animate--close {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes third-button-animate--open {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-6.05px) rotate(0deg);
    transform: translateY(-6.05px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-6.05px) rotate(-45deg);
    transform: translateY(-6.05px) rotate(-45deg);
  }
}
@keyframes third-button-animate--close {
  0% {
    -webkit-transform: translateY(-6.05px) rotate(-45deg);
    transform: translateY(-6.05px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-6.05px) rotate(0deg);
    transform: translateY(-6.05px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.7;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.header {
  position: absolute;
  width: 100%;
  z-index: 99;
}
.header__container {
  padding-block: 10px 32px;
}
.header__container--desktop {
  display: block;
}
.header__container--mobile {
  display: none;
}
.header__navigation {
  margin-top: 18px;
}

.blog .header .contacts__phone,
.single .header .contacts__phone,
.page-template-contact-tmpl .header .contacts__phone {
  color: #140629;
}
.blog .header .phone__link,
.single .header .phone__link,
.page-template-contact-tmpl .header .phone__link {
  color: #1FBBEE;
}
.blog .header .navigation__menu,
.single .header .navigation__menu,
.page-template-contact-tmpl .header .navigation__menu {
  border-block: 1px solid rgba(99, 151, 196, 0.3490196078);
}
.blog .header .navigation__wrapper ul a,
.single .header .navigation__wrapper ul a,
.page-template-contact-tmpl .header .navigation__wrapper ul a {
  color: #140629;
}
.blog .header .contacts__phone,
.single .header .contacts__phone,
.page-template-contact-tmpl .header .contacts__phone {
  color: #140629;
}

.contacts {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.contacts__social {
  display: flex;
  column-gap: 48px;
}
.contacts__phone {
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 16px;
  margin-left: 5px;
}

.phone__link {
  color: #FFF917;
  font-weight: 700;
  text-transform: uppercase;
}

.social__link {
  display: inline-block;
}

.navigation {
  display: grid;
  align-items: center;
  grid-template-columns: calc(50% - 137px) 274px calc(50% - 137px);
}
.navigation__logo {
  padding-inline: 35px;
}
.navigation__menu {
  height: calc(100% - 5px);
  margin-top: 5px;
  border-block: 1px solid rgba(255, 255, 255, 0.3490196078);
}
.navigation__menu--left {
  padding-right: 80px;
}
.navigation__menu--right {
  padding-left: 80px;
}
.navigation__wrapper {
  height: 100%;
}
.navigation__wrapper ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.navigation__wrapper ul li {
  list-style: none;
}
.navigation__wrapper ul a {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 1440px) {
  .navigation {
    grid-template-columns: calc(50% - 112px) 224px calc(50% - 112px);
  }
  .navigation__menu--left {
    padding-right: 50px;
  }
  .navigation__menu--right {
    padding-left: 50px;
  }
  .navigation__logo {
    padding-inline: 20px;
  }
  .navigation__logo img {
    height: 50px;
    margin-inline: auto;
  }
}
@media (max-width: 991px) {
  .contacts__phone {
    font-size: 14px;
  }
  .navigation {
    grid-template-columns: calc(50% - 91px) 182px calc(50% - 91px);
  }
  .navigation__menu--left, .navigation__menu--right {
    padding-inline: 0;
  }
  .menu a {
    font-size: 12px !important;
  }
}
@media (max-width: 767px) {
  html {
    margin-top: 0 !important;
  }
  html #wpadminbar {
    display: none !important;
  }
  .header {
    position: fixed;
    z-index: 999;
  }
  .header__container {
    padding-block: 10px;
  }
  .header__container--desktop {
    display: none;
  }
  .header__container--mobile {
    display: block;
  }
  .header__navigation {
    display: flex;
  }
  .header.is-stuck {
    background: #201456;
    box-shadow: 0 0 40px 0 rgba(1, 1, 1, 0.3098039216);
  }
  .blog .header,
  .single .header,
  .page-template-contact-tmpl .header {
    background: #201456;
    box-shadow: 0 0 40px 0 rgba(1, 1, 1, 0.3098039216);
  }
  .blog .header .contacts__phone,
  .single .header .contacts__phone,
  .page-template-contact-tmpl .header .contacts__phone {
    color: #fff;
  }
  .blog .header .phone__link,
  .single .header .phone__link,
  .page-template-contact-tmpl .header .phone__link {
    color: #1FBBEE;
  }
  .blog .header .navigation__wrapper ul a,
  .single .header .navigation__wrapper ul a,
  .page-template-contact-tmpl .header .navigation__wrapper ul a {
    color: #fff;
  }
  .blog .header .contacts__phone,
  .single .header .contacts__phone,
  .page-template-contact-tmpl .header .contacts__phone {
    color: #FFF917;
  }
  .mobile-menu__main-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile-menu__dynamic-line {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    z-index: 999;
    width: 100vw;
    height: calc(100vh - 58px);
    left: 100%;
    top: 58px;
    padding: 24px 20px 32px;
    background: #201456;
    border-top: 1px solid #E4E5E7;
    transition: left 0.6s ease;
  }
  .mobile-menu__dynamic-line--open {
    left: 0;
  }
  .mobile-menu__navigation {
    grid-template-columns: none;
    max-height: 82%;
    overflow-y: auto;
  }
  .mobile-menu__navigation ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-inline: 0;
  }
  .mobile-menu__navigation ul a {
    color: #fff;
    font-size: 16px !important;
  }
  .mobile-menu__contacts {
    padding-top: 24px;
    border-top: 1px solid #E4E5E7;
  }
  .mobile-menu__contacts .contacts__phone {
    margin: 0;
    color: #fff;
  }
  .mobile-menu__contacts .contacts__phone a {
    color: #1FBBEE;
  }
  .burger-menu-btn__lines {
    position: relative;
    padding: 12px;
    width: fit-content;
    margin-inline: auto 0;
    cursor: pointer;
  }
  .burger-menu-btn__line {
    height: 2px;
    width: 24px;
    background: #fff;
    border-radius: 1px;
  }
  .burger-menu-btn__line--second {
    margin-block: 4px;
  }
  .burger-menu-btn--open .burger-menu-btn__line--first {
    animation: first-button-animate--open 0.6s forwards;
  }
  .burger-menu-btn--open .burger-menu-btn__line--second {
    animation: second-button-animate--open 0.6s forwards;
  }
  .burger-menu-btn--open .burger-menu-btn__line--third {
    animation: third-button-animate--open 0.6s forwards;
  }
  .burger-menu-btn--close .burger-menu-btn__line--first {
    animation: first-button-animate--close 0.6s forwards;
  }
  .burger-menu-btn--close .burger-menu-btn__line--second {
    animation: second-button-animate--close 0.6s forwards;
  }
  .burger-menu-btn--close .burger-menu-btn__line--third {
    animation: third-button-animate--close 0.6s forwards;
  }
}
@media (max-width: 480px) {
  .mobile-menu__contacts {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding-top: 18px;
  }
}
.footer {
  background: #F8F9FB;
}
.footer__container {
  max-width: 1680px !important;
  padding-block: 42px 34px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-right: clamp(0rem, -11rem + 17.188vw, 9.625rem);
}
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 24px;
}
.footer__social:before, .footer__social:after {
  content: "";
  background: #E4E5E7;
  width: 100%;
  height: 2px;
  margin-inline: 0 16px;
}
.footer__social:after {
  margin-inline: 16px 0;
}
.footer__social-link {
  display: flex;
  align-items: center;
  height: 38px;
  width: 38px;
  min-width: 38px;
  border: 1px solid #E4E5E7;
  border-radius: 4px;
}
.footer__social-icon {
  margin-inline: auto;
}
.footer__copyright-block {
  display: flex;
  justify-content: space-between;
  gap: 90px;
}
.footer__copyright-pages {
  display: flex;
  gap: 40px;
}
.footer__copyright-title, .footer__copyright-single-page {
  font-weight: 400;
  font-size: 13px;
  color: #999999;
}
.footer__seo-text {
  width: 90%;
  max-width: 1210px;
  margin-inline: auto;
  margin-block: 24px 48px;
}
.footer__seo-text * {
  margin-bottom: 20px;
}
.footer__seo-text p {
  color: #999999;
  font-weight: 300;
  font-size: 13px;
  text-align: center;
}

.menu__wrapper #menu-footer-menu-first-column {
  column-count: 2;
  column-gap: 20px;
}
.menu__item {
  display: flex;
  align-items: center;
  column-gap: 6px;
  margin-bottom: 20px;
}
.menu__item span {
  font-size: 16px;
  font-weight: 500;
}
.menu__item--red span {
  color: #E61B24;
}
.menu__item--oal img {
  object-fit: contain;
}
.menu__title {
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1.625;
  text-transform: uppercase;
}
.menu a {
  color: #999999;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
}

@media (max-width: 1440px) {
  .footer__logo img {
    width: 100%;
    max-width: 16vw;
    height: auto;
  }
  .footer__social {
    margin-top: 20px;
  }
  .menu__item {
    margin-bottom: 12px;
  }
  .menu__item span {
    font-size: 14px;
  }
}
@media (max-width: 1120px) {
  .footer__inner {
    flex-wrap: wrap;
    padding: 0;
  }
  .footer .menu a {
    font-size: 16px !important;
  }
  .menu__contacts {
    width: 100%;
    margin-top: 20px;
  }
  .menu__contacts .menu__wrapper {
    display: flex;
    justify-content: center;
    gap: 38px;
  }
  .menu__item {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .footer__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 40px 42px;
  }
  .footer__logo {
    grid-column: span 3;
  }
  .footer__logo img {
    max-width: 240px;
  }
  .footer .menu__contacts {
    grid-column: span 3;
    margin-top: 0;
  }
  .footer__menu--second-column nav.menu__wrapper {
    margin-inline: auto;
    width: fit-content;
  }
}
@media (max-width: 768px) {
  .footer__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto auto;
    gap: 40px 20px;
  }
  .footer__logo {
    grid-column: span 2;
  }
  .footer__logo img {
    max-width: 240px;
  }
  .footer__menu--first-column {
    grid-column: span 2;
  }
  .footer__menu--second-column nav.menu__wrapper {
    margin-inline: 0;
    width: unset;
  }
  .footer .menu__contacts {
    grid-column: span 2;
    margin-top: 0;
  }
  .footer .menu__contacts .menu__wrapper {
    flex-wrap: wrap;
    gap: 20px 38px;
  }
  .footer .menu__contacts .menu__wrapper li {
    margin-bottom: 6px;
  }
  .footer .menu__contacts .menu__wrapper li a {
    line-height: 1.625;
  }
  .footer .menu__item:nth-last-child(2) {
    order: 3;
  }
  .footer .menu__item:nth-child(2) {
    order: 4;
  }
  .footer .menu__item--red span {
    color: #140629;
  }
  .footer__seo-text {
    margin-block: 42px 32px;
  }
  .footer__social {
    column-gap: 14px;
  }
  .footer__social:before, .footer__social:after {
    margin-inline: 0;
  }
  .footer__social-link {
    height: 32px;
    width: 32px;
    min-width: 32px;
  }
  .footer__copyright-block {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 100px;
  }
}
.hero {
  background: #0a7aff;
}
.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__text-block {
  z-index: 1;
  width: 100%;
  max-width: 660px;
  margin-block: 240px;
}
.hero__subtitle {
  margin-bottom: 6px;
  color: transparent;
  font-family: "Montserrat", serif;
  font-weight: 700;
  font-size: clamp(34px, 32px + 0.5178vw, 42px);
  line-height: 1.25;
  font-family: "Poppins", serif;
  -webkit-text-stroke: 2px #FFF917;
}
.hero__title {
  margin-bottom: 24px;
}
.hero__title h2 {
  font-size: clamp(2.25rem, 2.0299rem + 0.939vw, 2.875rem);
}
.hero__text {
  width: 100%;
  max-width: 500px;
}
.hero__text * {
  color: #fff;
  font-size: clamp(0.875rem, 0.784rem + 0.3883vw, 1.25rem);
  font-weight: 300;
}
.hero__button {
  margin-top: 46px;
}
.hero__images {
  width: 100%;
  max-width: 874px;
}
.hero__images img {
  width: 100%;
  object-fit: contain;
}
.hero__images img.hero__image-right {
  position: absolute;
  width: 60%;
  max-width: 1057px;
  top: 820px;
  right: 0;
  transform: translate(0, -54%);
}
.hero__images--mobile {
  display: none;
}
.hero__bottom-line a {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 20px;
  width: fit-content;
}
.hero__bottom-line a span {
  color: #fff;
  font-size: clamp(0.875rem, 0.8143rem + 0.2589vw, 1.125rem);
  font-weight: 600;
}
.hero__bottom-line a:before {
  content: "";
  position: absolute;
  display: block;
  left: 21px;
  width: 30px;
  height: 35px;
  background-image: url("../../assets/img/arrow_vertical.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.hero--expanded-text-block .hero__text-block {
  max-width: 1010px;
}
.hero--expanded-text-block .hero__images {
  max-width: 524px;
}
.hero--expanded-text-block .hero__text {
  max-width: 1010px;
}

main.purses .hero__images img.hero__image-right {
  top: 630px;
}

@media (max-width: 1919px) {
  .hero__text-block {
    margin-block: 160px 120px;
  }
  .hero__images img.hero__image-right {
    top: 630px;
  }
  main.purses .hero__images img.hero__image-right {
    top: 500px;
  }
}
@media (max-width: 1440px) {
  .hero {
    max-height: 100vh;
  }
  .hero__text-block {
    margin-block: 130px 80px;
  }
}
@media (max-width: 1240px) {
  .hero__text-block {
    margin-block: 60px 50px;
  }
  .hero__images img.hero__image-right {
    top: 580px;
  }
}
@media (max-width: 880px) {
  .hero__text-block {
    margin-block: 20px 50px;
  }
}
@media (max-width: 767px) {
  .hero {
    max-height: fit-content;
    padding-top: 68px !important;
  }
  .hero__container {
    padding-block: 0 !important;
  }
  .hero__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero__subtitle {
    font-size: 28px;
  }
  .hero_text * {
    font-size: 15px;
  }
  .hero__text-block {
    margin-block: 20px;
  }
  .hero__images {
    display: none;
  }
  .hero__images--mobile {
    display: block;
  }
  .hero__images--mobile img {
    transform: translateX(20px);
    width: 80%;
    margin-inline: auto 0;
  }
  .hero__button.button-with-background {
    margin-top: 20px;
  }
  main.jewelry .hero__images--mobile img {
    transform: translateX(0);
  }
}
@media (max-width: 540px) {
  .hero__title * {
    text-align: center;
  }
  .hero__subtitle {
    font-size: 30px;
    text-align: center;
  }
  .hero__button.button-with-background {
    width: 100%;
    padding-block: 14px;
    text-align: center;
  }
  .hero__images--mobile img {
    width: 100%;
  }
  .hero__bottom-line {
    display: none;
  }
  main.main .hero__images--mobile img {
    transform: translateX(0);
  }
}
.pawn {
  position: relative;
}
.pawn__container {
  padding-block: 80px 20px;
}
.pawn__title {
  margin-bottom: 24px;
}
.pawn__text {
  padding-right: 20px;
}
.pawn__text * {
  color: #fff;
  font-size: clamp(0.875rem, 0.8447rem + 0.1294vw, 1rem);
  font-weight: 300;
}
.pawn__product-categories {
  margin-top: 50px;
}
.pawn__swiper {
  overflow: visible;
}
.pawn__pagination {
  bottom: 0 !important;
}
.pawn__pagination .swiper-pagination-bullet {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  opacity: 1;
  background: #1E134D;
  border: 1px solid;
}
.pawn__pagination .swiper-pagination-bullet-active:before {
  content: "";
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  top: calc(-50% - 3px);
  left: calc(-50% - 3px);
  background: transparent;
  border: 1px solid #1E134D;
  border-radius: 50%;
}

.product-categories {
  justify-content: space-between;
}
.product-categories__item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 278px;
  height: 240px;
  padding-left: 20px;
  background: #fff;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2901960784);
  border-radius: 24px 24px 24px 0;
}
.product-categories__item:hover {
  background: #E61B24;
}
.product-categories__item:hover:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 10px;
  left: 40%;
  display: block;
  width: 300px;
  height: 300px;
  background: #EE5F66;
  border-radius: 50%;
}
.product-categories__item:hover .product-categories__item-arrow {
  background: #fff;
}
.product-categories__item:hover .product-categories__item-title {
  color: #fff;
}
.product-categories__item:hover svg path {
  fill: #E61B24;
}
.product-categories__item-title {
  z-index: 1;
  width: 100%;
  max-width: 125px;
  color: #140629;
  font-family: "Montserrat", serif;
  font-size: clamp(0.75rem, 0.659rem + 0.3883vw, 1.125rem);
  font-weight: 600;
  line-height: 1.55;
}
.product-categories__item-image {
  position: absolute;
  height: 100%;
  top: auto;
  right: -1px;
  bottom: -2px;
}
.product-categories__item-arrow {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-flex;
  width: 30px;
  height: 30px;
  padding: 9px;
  background: #E61B24;
}

@media (max-width: 1570px) {
  .product-categories__item {
    max-width: 246px;
    height: 220px;
  }
}
@media (max-width: 1340px) {
  .pawn__title {
    padding-inline: 40px;
  }
  .pawn__text {
    padding-inline: 40px 60px;
  }
  .pawn__container {
    padding-inline: 0 !important;
  }
  .pawn__swiper {
    padding-inline: 40px;
  }
  .pawn__pagination {
    bottom: 0 !important;
  }
  .pawn__pagination .swiper-pagination-bullet {
    position: relative;
    display: inline-block;
    width: 6px;
    height: 6px;
    opacity: 1;
    background: #1E134D;
    border: 1px solid;
  }
  .pawn__pagination .swiper-pagination-bullet-active:before {
    content: "";
    position: absolute;
    display: block;
    width: 14px;
    height: 14px;
    top: calc(-50% - 3px);
    left: calc(-50% - 3px);
    background: transparent;
    border: 1px solid #1E134D;
    border-radius: 50%;
  }
  .product-categories {
    justify-content: normal;
  }
}
@media (max-width: 991px) {
  .pawn__title {
    padding-inline: 25px;
  }
  .pawn__text {
    padding-inline: 25px 40px;
  }
  .pawn__swiper {
    padding-inline: 25px;
  }
  .product-categories__item-title {
    max-width: 110px;
  }
}
@media (max-width: 880px) {
  .pawn__container {
    padding-block: 60px 0;
  }
  .pawn__title {
    margin-bottom: 16px;
  }
  .pawn__product-categories {
    margin-top: 30px;
  }
  .product-categories__item {
    max-width: 198px;
    height: 180px;
    border-radius: 14px;
    padding-left: 10px;
  }
  .product-categories__item-title {
    max-width: 90px;
  }
}
.our-conditions__container {
  padding-block: 50px 40px;
}
.our-conditions__inner {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 21px));
  gap: 56px 42px;
}

.condition {
  display: flex;
  gap: 22px;
}
.condition__title {
  margin-bottom: 10px;
  color: #140629;
  font-size: clamp(1.125rem, 1.0643rem + 0.2589vw, 1.375rem);
  font-weight: 600;
}
.condition__text * {
  color: #140629;
  font-size: clamp(0.875rem, 0.8447rem + 0.1294vw, 1rem);
  font-weight: 400;
}

@media (max-width: 1440px) {
  .our-conditions__inner {
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 12px));
    gap: 36px 24px;
  }
}
@media (max-width: 991px) {
  .our-conditions__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .condition {
    gap: 16px;
  }
  .condition__title {
    margin-bottom: 0;
  }
  .condition img {
    width: 36px;
    object-fit: contain;
  }
}
.our-offers__container {
  padding-block: 40px 62px;
}
.our-offers__inner {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 15px));
  gap: 56px 30px;
}

.offer {
  display: flex;
  justify-content: space-between;
  padding-right: 10px;
  background: #F8F9FB;
  border-radius: 24px;
}
.offer__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  width: 54%;
  padding: 36px;
}
.offer__title {
  margin-bottom: 16px;
  font-size: clamp(1.125rem, 1.034rem + 0.3883vw, 1.5rem);
  font-weight: 600;
}
.offer__subtitle {
  margin-bottom: 16px;
}
.offer__subtitle * {
  font-size: clamp(0.875rem, 0.8447rem + 0.1294vw, 1rem);
  font-weight: 400;
}
.offer__image {
  display: flex;
  align-items: flex-end;
}
.offer__image img {
  height: 100%;
  max-height: 350px;
  object-fit: cover;
}

.items-list__single-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 10px;
  font-size: clamp(0.875rem, 0.8447rem + 0.1294vw, 1rem);
  font-weight: 400;
}
.items-list__single-item:before {
  content: "";
  display: block;
  width: 10px;
  height: 7px;
  background-image: url("../../assets/img/check_mark.svg");
  background-size: contain;
}

@media (max-width: 1440px) {
  .offer__image img {
    height: fit-content;
    object-fit: contain;
  }
}
@media (max-width: 1240px) {
  .our-offers__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .offer {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2901960784);
  }
  .offer__content {
    padding: 32px 18px;
  }
}
@media (max-width: 540px) {
  .our-offers__container {
    padding-bottom: 40px;
  }
  .offer__content {
    width: 100%;
    padding: 24px 18px;
  }
  .offer__image {
    display: none;
  }
}
.estimator {
  position: relative;
}
.estimator--with-background:before, .estimator--with-background:after {
  content: "";
  position: absolute;
  display: block;
  z-index: 0;
  top: -62px;
  left: -52px;
  right: auto;
  width: 345px;
  height: 140%;
  background: url("../../assets/img/money__left.png") no-repeat;
  background-size: contain;
}
.estimator--with-background:after {
  left: auto;
  right: -82px;
  background: url("../../assets/img/money__right.png") no-repeat;
  background-size: contain;
}
.estimator__container {
  position: relative;
  z-index: 1;
  max-width: 1554px !important;
  margin-block: 62px 54px;
  padding-block: 40px 80px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 0 40px 0 rgba(145, 145, 145, 0.1490196078);
}
.estimator__title {
  width: 100%;
  max-width: 625px;
  margin-bottom: 20px;
  margin-inline: auto;
  font-family: "Montserrat", serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.estimator__subtitle {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  margin-bottom: 35px;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}
.estimator__background {
  position: absolute;
  z-index: -2;
  width: 100%;
  left: 0;
}
.estimator__background--top {
  height: calc(50% + 62px);
  top: -63px;
}
.estimator__background--bottom {
  height: calc(50% + 54px);
  bottom: -54px;
}
.estimator__background--full {
  height: calc(100% + 116px);
  top: -63px;
}

@media (max-width: 1560px) {
  .estimator__container {
    width: calc(100% - 80px) !important;
    margin-inline: 40px !important;
  }
}
@media (max-width: 1280px) {
  .estimator__container {
    padding-block: 30px !important;
  }
}
@media (max-width: 991px) {
  .estimator__container {
    width: calc(100% - 50px) !important;
    margin-inline: 25px !important;
  }
}
@media (max-width: 768px) {
  .estimator__container {
    width: calc(100% - 20px) !important;
    margin-inline: 10px !important;
    margin-block: 30px 20px;
  }
  .estimator__container {
    padding-block: 20px !important;
  }
  .estimator__title {
    font-size: 18px;
  }
  .estimator__subtitle {
    margin-bottom: 24px;
    font-size: 15px;
  }
}
@media (max-width: 640px) {
  .estimator .contact-request__submit {
    margin-top: 28px;
  }
  .estimator .button-with-background {
    width: 100%;
  }
}
.reviews {
  margin-top: -1px;
}
.reviews * {
  color: #fff;
}
.reviews__title {
  position: relative;
  z-index: 9;
  margin-bottom: 38px;
  color: #FFF917;
  font-weight: 700;
  font-size: clamp(2rem, 1.818rem + 0.7767vw, 2.75rem);
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}
.reviews__wrapper {
  padding-bottom: 36px;
}
.reviews__pagination {
  bottom: 38px !important;
}
.reviews__pagination .swiper-pagination-bullet {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  opacity: 1;
  background: #fff;
  border: 1px solid;
}
.reviews__pagination .swiper-pagination-bullet-active:before {
  content: "";
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  top: calc(-50% - 3px);
  left: calc(-50% - 3px);
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
}

.single-review {
  width: 100%;
  max-width: 366px;
}
.single-review__author {
  margin-left: 58px;
  margin-bottom: 6px;
  font-weight: 400;
  font-size: 18px;
}
.single-review__content-block {
  position: relative;
  padding: 24px 22px 18px;
  background: #302443;
  border-radius: 24px;
}
.single-review__content-block:before {
  content: "";
  position: absolute;
  top: -15px;
  left: 13px;
  border-top: 24px solid transparent;
  border-right: 34px solid #302443;
  border-bottom: 24px solid transparent;
  border-radius: 3px;
}
.single-review__text {
  height: 216px;
}
.single-review__text p {
  font-weight: 300;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  line-clamp: 9;
  -webkit-box-orient: vertical;
}
.single-review__bottom-line {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-top: 20px;
}
.single-review__date {
  color: rgba(255, 255, 255, 0.5215686275);
}
.single-review__platform {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 10px;
  margin-top: 10px;
}
.single-review__platform span {
  font-weight: 600;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.431372549);
}

@media (max-width: 1600px) {
  .reviews__container {
    padding-inline: 0 !important;
  }
  .reviews__swiper {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .reviews__title {
    padding-inline: 25px;
  }
  .reviews__swiper {
    padding-left: 25px;
  }
}
@media (max-width: 768px) {
  .reviews__title {
    margin-bottom: 24px;
    padding-inline: 20px;
  }
  .reviews__swiper {
    padding-left: 20px;
  }
  .single-review {
    max-width: 306px;
  }
}
.last-posts__container {
  padding-block: 40px 42px;
}
.last-posts__inner {
  display: flex;
  justify-content: space-between;
  gap: 94px;
  margin-top: 26px;
}
.last-posts__title {
  color: #140629;
  text-align: center;
}
.last-posts__list-posts {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 62%;
  max-width: 960px;
}
.last-posts__main-post {
  position: relative;
  width: 38%;
  max-width: 498px;
  height: fit-content;
}

.short-single-post {
  display: flex;
  gap: 30px;
}
.short-single-post__thumbnail {
  object-fit: cover;
  object-position: center;
  aspect-ratio: 14/10;
  border-radius: 12px;
}
.short-single-post__content-block {
  margin-top: 12px;
}
.short-single-post__title {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: clamp(1.125rem, 1.0947rem + 0.1294vw, 1.25rem);
  line-height: 1.2;
}
.short-single-post__text {
  height: 96px;
  margin-bottom: 12px;
}
.short-single-post__text > * {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}
.short-single-post__text p {
  font-weight: 400;
  font-size: clamp(0.875rem, 0.8447rem + 0.1294vw, 1rem);
}
.short-single-post__bottom_line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
}
.short-single-post__date {
  color: #7CA4C8;
}

.main-post-banner {
  position: relative;
  border-radius: 24px;
}
.main-post-banner:before {
  content: "";
  position: absolute;
  height: 60%;
  width: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(32, 20, 86, 0.6) 80%);
  border-radius: 0 0 20px 20px;
}
.main-post-banner__content-block {
  position: absolute;
  width: 70%;
  max-width: 328px;
  bottom: 20px;
  left: 30px;
}
.main-post-banner__title {
  margin-bottom: 16px;
  color: #fff;
  font-weight: 600;
  font-size: clamp(1.125rem, 1.034rem + 0.3883vw, 1.5rem);
}
.main-post-banner__bottom_line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 30px;
}
.main-post-banner__date {
  color: #fff;
}

@media (max-width: 1440px) {
  .last-posts__inner {
    gap: 48px;
  }
  .last-posts__list-posts {
    width: 80%;
  }
}
body:not(.blog):not(.single) article.short-single-post:nth-child(1) {
  display: none;
}

@media (max-width: 991px) {
  .last-posts__list-posts {
    width: 100%;
  }
  .last-posts__main-post {
    display: none;
  }
  body:not(.blog) article.short-single-post:nth-child(1) {
    display: flex;
  }
}
@media (max-width: 768px) {
  .last-posts__inner {
    margin-top: 18px;
  }
  .last-posts__list-posts {
    width: 100%;
    flex-wrap: wrap;
    flex-direction: unset;
    gap: 40px 20px;
  }
  .short-single-post {
    gap: 8px;
    flex-direction: column;
    width: 100%;
    max-width: calc(50% - 10px);
  }
  .short-single-post__thumbnail {
    width: 100%;
    height: fit-content;
  }
  .short-single-post__content-block {
    margin-top: 4px;
  }
  .short-single-post__text {
    height: 64px;
  }
  .short-single-post__text p {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  .date {
    font-size: 12px;
  }
  .btn {
    line-height: 1;
  }
  .btn--with-arrow:before {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 480px) {
  .short-single-post {
    max-width: 100%;
  }
}
.faq {
  position: relative;
}
.faq__container {
  padding-block: 42px 54px;
}
.faq__inner {
  display: flex;
  justify-content: space-between;
  gap: 90px;
}
.faq__title {
  color: #140629;
  font-weight: 700;
  font-size: clamp(2.25rem, 2.0983rem + 0.6472vw, 2.875rem);
}
.faq__big-text {
  position: absolute;
  z-index: -1;
  left: -62px;
  color: #F4F5F7;
  font-family: "Montserrat", serif;
  font-weight: 900;
  font-size: clamp(10.625rem, 7.7427rem + 12.2977vw, 22.5rem);
  line-height: 1.25;
}
.faq__list-questions {
  width: 58%;
  max-width: 894px;
  margin-top: 28px;
}

.list-questions__single-question {
  padding-block: 14px;
  border-bottom: 1px solid rgba(99, 151, 196, 0.3490196078);
}
.list-questions__single-question:last-child {
  border: none;
}
.list-questions__accordion {
  position: relative;
  cursor: pointer;
}
.list-questions__accordion:after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 600;
  font-size: clamp(1rem, 0.9697rem + 0.1294vw, 1.125rem);
  color: #1FBBEE;
}
.list-questions__accordion.open:after {
  content: "-";
}
.list-questions__title {
  padding-right: 40px;
  font-weight: 500;
  font-size: clamp(1rem, 0.9697rem + 0.1294vw, 1.125rem);
}
.list-questions__panel {
  max-height: 0px;
  overflow: hidden;
  transition: all 0.5s ease;
}
.list-questions__content {
  padding-top: 14px;
  padding-right: 50px;
}
.list-questions__content * {
  font-size: clamp(0.875rem, 0.8447rem + 0.1294vw, 1rem);
}

@media (max-width: 1200px) {
  .faq__inner {
    gap: 40px;
  }
  .faq__list-questions {
    width: 80%;
    margin-top: 18px;
  }
  .faq__big-text {
    left: -22px;
  }
}
@media (max-width: 991px) {
  .faq__list-questions {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .faq__inner {
    flex-direction: column;
    gap: 0;
  }
  .faq__big-text {
    top: -65px;
    left: -22px;
  }
}
.slogan-banner__container {
  position: relative;
  padding-block: 40px 108px;
}
.slogan-banner__main-image {
  position: absolute;
  z-index: 1;
  width: 50%;
  max-width: 780px;
  bottom: 0;
  left: -10%;
}
.slogan-banner__main-image:before {
  content: "";
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.3019607843);
  width: 660px;
  height: 660px;
  bottom: -30%;
  left: calc(50% - 330px);
  border-radius: 50%;
  z-index: 0;
}
.slogan-banner__main-image img {
  position: relative;
  z-index: 1;
  width: 100%;
}
.slogan-banner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: end;
  padding-right: 86px;
}
.slogan-banner__content-block {
  width: 100%;
  max-width: 876px;
}
.slogan-banner__title {
  width: 100%;
}
.slogan-banner__title p {
  color: #fff;
  font-family: "Montserrat", serif;
  font-weight: 900;
  font-size: clamp(2.375rem, 1.4345rem + 4.0129vw, 6.25rem);
  line-height: 1.2;
  text-transform: uppercase;
}
.slogan-banner__title p:last-child {
  text-align-last: end;
}
.slogan-banner__subtitle {
  width: 100%;
  max-width: 728px;
  margin-top: 58px;
  padding-left: 120px;
}
.slogan-banner__subtitle p {
  color: #fff;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.0643rem + 0.2589vw, 1.375rem);
}
.slogan-banner__link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 26px;
  padding-left: 120px;
}
.slogan-banner__link span {
  color: #fff;
  font-weight: 600;
  font-size: clamp(1rem, 0.9697rem + 0.1294vw, 1.125rem);
}

@media (max-width: 1600px) {
  .slogan-banner__inner {
    padding-right: 0;
  }
  .slogan-banner__content-block {
    max-width: 756px;
  }
}
@media (max-width: 1200px) {
  .slogan-banner__content-block {
    max-width: 656px;
  }
}
@media (max-width: 991px) {
  .slogan-banner__content-block {
    max-width: 556px;
  }
  .slogan-banner__subtitle {
    margin-top: 18px;
  }
  .slogan-banner__link img {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 768px) {
  .slogan-banner__content-block {
    max-width: 100%;
    padding-bottom: 250px;
  }
  .slogan-banner__subtitle {
    margin-top: 18px;
    padding-left: 0;
  }
  .slogan-banner__link {
    margin-top: 12px;
    padding-left: 0;
  }
  .slogan-banner__main-image:before {
    width: 460px;
    height: 460px;
    left: calc(50% - 230px);
  }
}
@media (max-width: 620px) {
  .slogan-banner__main-image {
    width: 70%;
  }
}
@media (max-width: 480px) {
  .slogan-banner__content-block {
    padding-bottom: 160px;
  }
  .slogan-banner__main-image:before {
    width: 360px;
    height: 360px;
    left: calc(50% - 180px);
  }
}
.contact-with-map {
  padding-top: 0 !important;
}
.contact-with-map__container {
  padding-top: 220px;
}
.contact-with-map__inner {
  display: flex;
  align-items: center;
  gap: 84px;
}
.contact-with-map__content-block {
  width: calc(62% - 42px);
}
.contact-with-map__title {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.25;
}
.contact-with-map__subtitle {
  margin-top: 8px;
  font-family: "Montserrat", serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 1.22;
}
.contact-with-map__methods-communication {
  display: flex;
  justify-content: space-between;
  gap: 44px;
  margin-top: 100px;
  padding-right: 20px;
}
.contact-with-map__google-map {
  width: calc(38% - 42px);
  max-width: 730px;
  height: 594px;
  margin-top: -50px;
  aspect-ratio: 12/10;
}
.contact-with-map__google-map--mobile {
  display: none;
}
.contact-with-map__google-map--desktop {
  display: block;
}
.contact-with-map__google-map iframe {
  position: absolute;
  width: 38vw;
  max-width: 730px;
  height: auto;
  right: 35px;
  aspect-ratio: 12/10;
  border-radius: 24px;
}
.contact-with-map__contacts-block {
  width: 100%;
  position: relative;
  margin-top: 46px;
  padding-block: 44px 66px;
}
.contact-with-map__contacts-block:before {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  left: calc((100vw - (100% + 42px) / 0.62) / 2 * -1);
  top: 0;
  width: 100vw;
  height: 100%;
  background: #1E1350;
}
.contact-with-map__text {
  width: 100%;
  max-width: 750px;
}
.contact-with-map__text p {
  color: #fff;
  font-weight: 300;
  font-size: 16px;
}
.contact-with-map__contact-form {
  width: 100%;
  max-width: 750px;
  margin-top: 40px;
}

.methods-communication__single-methods {
  display: flex;
  gap: 84px;
  margin-top: 100px;
}
.methods-communication__title {
  margin-top: 20px;
  font-weight: 600;
  font-size: 18px;
}
.methods-communication__subtitle {
  margin-top: 4px;
  font-weight: 300;
  font-size: 16px;
}
.methods-communication__link {
  margin-top: 20px;
}

@media (max-width: 1520px) {
  .contact-with-map__subtitle {
    font-size: 68px;
  }
}
@media (max-width: 1440px) {
  .contact-with-map__container {
    padding-top: 160px;
  }
  .contact-with-map__methods-communication {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    margin-top: 60px;
  }
}
@media (max-width: 1290px) {
  .contact-with-map__title {
    font-size: 38px;
  }
  .contact-with-map__subtitle {
    font-size: 58px;
  }
  .contact-with-map__content-block {
    width: 100%;
  }
  .contact-with-map__google-map {
    width: 100%;
    max-width: 100%;
    height: fit-content;
    margin: 40px auto;
    aspect-ratio: unset;
  }
  .contact-with-map__google-map--mobile {
    display: block;
  }
  .contact-with-map__google-map--desktop {
    display: none;
  }
  .contact-with-map__google-map iframe {
    position: relative;
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 500px;
    max-height: 80vh;
    border: 0;
    aspect-ratio: unset;
  }
  .contact-with-map__contacts-block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-with-map__contacts-block:before {
    left: -40px;
  }
}
@media (max-width: 768px) {
  .contact-with-map__contacts-block:before {
    left: -16px;
  }
  .contact-with-map__title {
    font-size: 24px;
  }
  .contact-with-map__subtitle {
    font-size: 40px;
  }
  .contact-with-map__methods-communication {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 40px;
    margin-top: 40px;
    padding: 0;
  }
  .methods-communication__single-method {
    width: calc(50% - 20px);
  }
  .methods-communication__image {
    width: 26px;
    aspect-ratio: 1;
  }
}
@media (max-width: 540px) {
  .contact-with-map__methods-communication {
    gap: 26px;
    margin-top: 28px;
  }
  .methods-communication__single-method {
    width: 100%;
  }
  .methods-communication__title {
    margin-top: 16px;
  }
}
.instagram-slider__container {
  padding: 0 !important;
  max-width: 100% !important;
}
.instagram-slider #sb_instagram {
  height: 320px;
  padding: 0 !important;
}
.instagram-slider #sb_instagram #sbi_images {
  display: flex !important;
  gap: 0 !important;
  width: 100% !important;
  padding: 0 !important;
  transition-timing-function: linear;
}
.instagram-slider #sb_instagram #sbi_images .sbi_item {
  aspect-ratio: 1;
  width: auto !important;
}
.instagram-slider #sb_instagram #sbi_images .sbi_photo_wrap {
  height: 320px;
}
.instagram-slider #sb_instagram #sbi_images .sbi_photo_wrap .sbi_photo {
  height: 320px !important;
  aspect-ratio: 1;
}
.instagram-slider #sb_instagram #sbi_images .sbi_type_video .sbi_photo {
  position: relative;
  height: 320px !important;
}
.instagram-slider #sb_instagram #sbi_images .sbi_type_video .sbi_photo:before {
  content: "";
  position: absolute;
  display: block;
  z-index: 1;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background-image: url("../../assets/img/instagram-reel.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.instagram-slider #sb_instagram #sbi_images .sbi_type_video .sbi_photo svg {
  display: none !important;
}

@media (max-width: 768px) {
  .instagram-slider #sb_instagram #sbi_images .sbi_item {
    aspect-ratio: 10/15;
  }
  .instagram-slider #sb_instagram #sbi_images .sbi_photo_wrap .sbi_photo {
    aspect-ratio: 10/15;
  }
}
.blog header {
  top: 0;
}
.blog main {
  overflow: visible;
}

.blog-page .last-posts {
  padding-top: 116px;
}
.blog-page .title {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 51.2px;
  text-align: start;
}
.blog-page .subtitle {
  margin-top: 8px;
  color: #140629;
  font-family: "Montserrat", serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 87.77px;
}
.blog-page .container {
  margin-top: 100px;
}
.blog-page .inner {
  margin-top: 52px;
}

.sidebar-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
  width: 38%;
  max-width: 498px;
  height: fit-content;
}

.main-post-banner {
  margin-bottom: 30px;
}
.main-post-banner__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.side-banner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  border-radius: 24px;
}
.side-banner__img-block {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 50%;
  height: 100%;
}
.side-banner__img-block:before {
  content: "";
  position: absolute;
  display: block;
  z-index: 0;
  top: 5%;
  left: 13%;
  height: 90%;
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.3019607843);
  border-radius: 50%;
}
.side-banner__img {
  position: relative;
  z-index: 1;
  width: 100%;
}
.side-banner__content {
  width: 50%;
  padding: 36px 26px 10px 10px;
}
.side-banner__title {
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.35;
}
.side-banner__btn {
  margin-top: 20px;
}

.btn--white {
  color: #fff !important;
}
.btn--white:after {
  background-image: url("../../assets/img/arrow_white.svg") !important;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 1440px) {
  .blog-page .last-posts {
    padding-top: 0;
  }
  .side-banner__btn {
    margin-top: 20px;
    font-size: 14px;
  }
  .side-banner__content {
    padding: 26px 26px 10px 10px;
  }
  .side-banner__title {
    font-size: 18px;
  }
}
@media (max-width: 1240px) {
  .blog .inner,
  .single .inner {
    flex-direction: column;
    gap: 40px;
  }
  .blog .inner .main-post-banner,
  .single .inner .main-post-banner {
    grid-row: span 2;
    margin-bottom: 0;
  }
  .blog .inner .side-banner,
  .single .inner .side-banner {
    margin-bottom: 0;
  }
  .blog .sidebar-sticky,
  .single .sidebar-sticky {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px 40px;
  }
  .side-banner {
    align-items: center;
  }
  .side-banner__img-block:before {
    top: auto;
    bottom: 5%;
    left: 8%;
    width: 90%;
    height: auto;
  }
  .side-banner__title {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .blog .sidebar-sticky,
  .single .sidebar-sticky {
    gap: 18px;
  }
  .blog .side-banner__title,
  .single .side-banner__title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .blog-page .last-posts__container.container {
    padding-top: 40px;
  }
  .blog-page .last-posts .title {
    font-size: 34px;
  }
  .blog-page .last-posts .subtitle {
    font-size: 54px;
    line-height: 1.2;
  }
}
@media (max-width: 680px) {
  .blog .sidebar-sticky,
  .single .sidebar-sticky {
    display: flex;
    flex-direction: column;
  }
  .main-post-banner__thumbnail {
    aspect-ratio: 1;
  }
  .side-banner {
    align-items: flex-end;
  }
  .side-banner__content {
    padding-bottom: 46px;
  }
}
@media (max-width: 400px) {
  .side-banner__img-block {
    width: 40%;
  }
  .side-banner__content {
    width: 60%;
    padding: 40px 10px 40px 10px;
  }
  .side-banner__title {
    font-size: 16px;
  }
  .side-banner__btn.btn {
    font-size: 12px;
  }
  .main-post-banner__btn-with-arrow.btn {
    font-size: 12px;
  }
  .btn--with-arrow:after {
    width: 12px !important;
    height: 12px !important;
  }
}
.single-post main {
  overflow: visible;
}

.single-article__container {
  padding-block: 224px 0;
}
.single-article__inner {
  display: flex;
  justify-content: space-between;
  gap: 94px;
}
.single-article__main-content {
  width: 62%;
  max-width: 960px;
  padding-bottom: 77px;
}
.single-article__main-post {
  width: 38%;
  max-width: 498px;
  height: fit-content;
}
.single-article__title {
  margin-bottom: 30px;
  color: #140629;
  font-family: "Montserrat", serif;
  font-weight: 700;
  font-size: 55px;
  line-height: 1.2;
}
.single-article__image {
  width: 100%;
  aspect-ratio: 14/10;
  object-fit: cover;
  border-radius: 24px;
}
.single-article__social-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block: 20px 28px;
}
.single-article__date {
  color: #7CA4C8;
}
.single-article__social-block {
  display: flex;
  align-items: center;
  gap: 16px;
}
.single-article__social-block span {
  color: #7CA4C8;
  font-weight: 600;
  font-size: 13px;
}
.single-article__social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.single-article__content h3 {
  margin-block: 28px 8px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
}
.single-article__content p {
  font-weight: 300;
  font-size: 16px;
}
.single-article__content p strong,
.single-article__content p b {
  font-weight: 500;
}

.continue-reading__container {
  padding-block: 76px 174px;
}
.continue-reading__title {
  margin-bottom: 26px;
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
}
.continue-reading__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 1240px) {
  .single-article__container {
    padding-block: 154px 0;
  }
  .single-article__title {
    font-size: 44px;
  }
  .single-article__main-content {
    width: 100%;
    max-width: 100%;
    padding-bottom: 0;
  }
  .continue-reading__container {
    padding-block: 76px;
  }
  .continue-reading__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .single-article__container {
    padding-block: 124px 0;
  }
  .single-article__title {
    margin-bottom: 16px;
    font-size: 36px;
  }
  .single-article__social-line {
    flex-wrap: wrap;
    gap: 12px;
  }
  .continue-reading__container {
    padding-block: 40px;
  }
  .continue-reading__inner {
    flex-direction: unset;
    flex-wrap: wrap;
    gap: 20px;
  }
  .continue-reading__title {
    margin-bottom: 16px;
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .single-article__social-block {
    justify-content: space-between;
  }
  .single-article__social-block span {
    width: 72%;
  }
}
.steps {
  margin-top: -1px;
}
.steps__container {
  padding-block: 42px;
}
.steps__title {
  position: relative;
  z-index: 1;
  display: flex;
}
.steps__title h2 {
  font-size: 36px;
  line-height: 1;
}
.steps__title h2 strong {
  font-family: "Montserrat", serif;
  font-size: 44px;
  line-height: 1;
}
.steps__title h2 span {
  position: relative;
  font-size: 16px;
  top: -25px;
}
.steps__title * {
  color: #FFF917;
  font-weight: 400;
  line-height: 1;
}
.steps__title * strong {
  font-weight: 700;
}
.steps__list-items {
  display: flex;
  justify-content: flex-start;
  margin-top: 36px;
}
.steps__item {
  width: 25%;
  height: unset;
  padding-inline: 36px;
  border-right: 1px solid #1FBBEE;
}
.steps__item:first-child {
  padding-left: 0;
}
.steps__item:last-child {
  padding-right: 0;
  border: none;
}
.steps__item-number {
  display: flex;
  align-items: center;
  gap: 12px;
}
.steps__item-number * {
  font-size: 14px;
}
.steps__item-step {
  color: #1FBBEE;
  font-weight: 600;
}
.steps__item-duration {
  color: #FFF917;
  font-weight: 300;
}
.steps__item-title {
  margin-top: 14px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.8;
}
.steps__item-text {
  margin-top: 10px;
}
.steps__item-text * {
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  text-wrap: balance;
}
.steps__item-text a {
  display: flex;
  align-items: center;
  flex-direction: row;
  column-gap: 10px;
  width: fit-content;
  color: #E61B24;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
  align-items: flex-end;
  column-gap: 5px;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-decoration: underline;
  text-transform: none;
}
.steps__item-text a--with-arrow:after {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url("../../assets/img/arrow_red.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.steps__item-text a--with-circle-arrow {
  line-height: 1;
}
.steps__item-text a--with-circle-arrow:after {
  content: "";
  width: 26px;
  height: 26px;
  background-image: url("../../assets/img/circle_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.steps__item-text a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.steps__item-text a:after {
  content: "";
  display: flex;
  width: 11px;
  height: 12px;
  background-image: url("../../assets/img/arrow_red.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.steps__note {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 2px;
  padding: 0 25px 10px;
}
.steps__note p {
  display: inline-block;
  color: #fff;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  text-align: end;
}
.steps__note p:last-child {
  line-height: 2.4;
}

@media (max-width: 1240px) {
  .steps__container.container {
    padding-inline: 0;
  }
  .steps__title, .steps__swiper {
    padding-inline: 40px;
  }
  .steps__item {
    width: 100%;
    max-width: 300px;
    padding: 18px !important;
    border: 1px solid #1FBBEE !important;
    border-radius: 16px;
  }
}
@media (max-width: 991px) {
  .steps__title, .steps__swiper {
    padding-inline: 25px;
  }
}
@media (max-width: 767px) {
  .steps__title h2 {
    font-size: 34px;
  }
  .steps__title h2 strong {
    font-size: 38px;
  }
  .steps__title h2 span {
    position: relative;
    font-size: 16px;
    top: -16px;
  }
  .steps__item {
    padding: 20px;
  }
  .steps__title, .steps__swiper {
    padding-inline: 16px;
  }
}
@media (max-width: 480px) {
  .steps__item {
    padding: 20px 0;
  }
}
.content-type-section {
  position: relative;
  margin: 0;
}
.content-type-section--with-hands .container {
  padding-block: 346px 94px;
}
.content-type-section--with-hands:before {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  width: 50%;
  max-width: 895px;
  height: auto;
  max-height: 350px;
  top: 0;
  left: -3px;
  background-image: url("../../assets/img/hand_1.png");
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 24/10;
}
.content-type-section--with-hands:after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  width: 27%;
  max-width: 895px;
  height: auto;
  max-height: 295px;
  bottom: 52px;
  right: -3px;
  background-image: url("../../assets/img/hand_5.png");
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 19/10;
}
.content-type-section.single-ring-video .container {
  padding-bottom: 0;
}
.content-type-section.single-ring-video .content-type-section__video {
  margin-bottom: -24px;
}
.content-type-section__container {
  padding-block: 52px 44px;
}
.content-type-section__inner--two-column {
  display: flex;
  column-gap: 80px;
}
.content-type-section__inner--one-column {
  width: 100%;
  max-width: 1054px;
  margin-inline: auto;
}
.content-type-section__title-column {
  width: 100%;
}
.content-type-section__title-column h2 {
  color: #140629;
  font-size: 44px;
  line-height: 1.5;
  text-shadow: 0 0 22px rgb(255, 255, 255);
}
.content-type-section__title-column--one-column h2 {
  text-align: center;
}
.content-type-section__title-column--two-column {
  max-width: 580px;
}
.content-type-section__text-column--two-column {
  width: fit-content;
}
.content-type-section__text--one-column {
  margin-top: 30px;
}
.content-type-section__text p {
  font-weight: 300;
  font-size: 16px;
}
.content-type-section__text--two-column {
  margin-top: 6px;
}
.content-type-section__text--tree-column-text h4 {
  font-weight: 500;
  margin-bottom: 10px;
}
.content-type-section__tree-column {
  display: grid;
  grid-template-columns: repeat(3, 30%);
  justify-content: space-between;
  gap: 20px 40px;
}
.content-type-section__btn {
  margin-top: 20px;
}
.content-type-section__btn--left {
  margin-inline: 0 auto;
}
.content-type-section__btn--right {
  margin-inline: auto 0;
}
.content-type-section__btn--center {
  margin-inline: auto;
}
.content-type-section__video-block {
  position: relative;
  width: 100%;
  height: fit-content;
  margin-inline: auto;
}
.content-type-section__video-block--full-size {
  max-width: 100vw;
}
.content-type-section__video-title {
  position: absolute;
}
.content-type-section__video-title * {
  color: #140629;
}
.content-type-section__video-title h2 {
  color: #140629;
  font-size: clamp(32px, 34px + 0.5178vw, 44px);
}
.content-type-section__video-title h3 {
  font-weight: 700;
  font-size: 32px;
}
.content-type-section__video {
  display: block;
  max-width: 100%;
  max-height: 100vh;
  margin-block: 24px 15px;
  margin-inline: auto;
}
.content-type-section__video--full-size {
  width: 100vw;
  max-width: 100vw;
  max-height: fit-content;
  translate: -40px 0;
}
.content-type-section--remove-margin .container {
  padding-block: 0 !important;
}
.content-type-section--remove-margin .video {
  margin-block: 0 !important;
}

.list-block__title {
  margin-top: 24px;
  font-weight: 600;
}
.list-block__list {
  display: grid;
  gap: 0 46px;
  justify-content: space-between;
  margin-top: 8px !important;
}
.list-block__list--two-column {
  grid-template-columns: repeat(2, 1fr);
}
.list-block__list--three-column {
  grid-template-columns: repeat(3, 1fr);
}
.list-block__list li {
  display: flex;
  align-items: flex-start;
  column-gap: 15px;
}
.list-block__list li:before {
  content: "";
  display: block;
  width: 11px;
  min-width: 11px;
  height: 8px;
  margin-top: 10px;
  background-image: url("../../assets/img/list-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.list-block__list li p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
}
.list-block__list li p strong {
  font-weight: 500;
}

@media (min-width: 1632px) {
  .content-type-section__video--full-size {
    translate: calc((100vw - 1554px) / 2 * -1) 0;
  }
}
@media (max-width: 1440px) {
  .content-type-section--with-hands:before {
    top: -50px;
  }
  .content-type-section--with-hands:after {
    bottom: -60px;
  }
  .content-type-section--with-hands .container {
    padding-block: 216px 60px;
  }
}
@media (max-width: 1240px) {
  .content-type-section__video {
    height: auto !important;
  }
  .content-type-section--with-hands:before {
    top: -70px;
  }
  .content-type-section--with-hands .container {
    padding-block: 160px 60px;
  }
}
@media (max-width: 1024px) {
  .content-type-section__title-column h2 {
    font-size: 36px;
  }
  .content-type-section__video-title h2 {
    font-size: 36px;
  }
  .content-type-section__video-title h3 {
    font-size: 28px;
  }
  .content-type-section--with-hands:before {
    top: -70px;
  }
  .content-type-section--with-hands .container {
    padding-block: 130px 60px;
  }
}
@media (max-width: 991px) {
  .content-type-section--with-hands:before {
    top: -50px;
  }
  .content-type-section__inner--two-column {
    flex-direction: column;
    gap: 16px;
  }
  .content-type-section__video-title h2 {
    font-size: 32px;
  }
  .content-type-section__video-title h3 {
    font-size: 24px;
  }
  .content-type-section__title-column--two-column {
    max-width: 700px;
  }
}
@media (max-width: 767px) {
  .content-type-section--with-hands:before {
    top: -20px;
  }
  .content-type-section--with-hands:after {
    bottom: auto;
    top: 0;
  }
  .content-type-section--with-hands .container {
    padding-block: 60px 20px;
  }
  .content-type-section__container {
    padding-block: 20px;
  }
  .content-type-section__tree-column {
    display: flex;
    flex-direction: column;
    gap: 26px;
  }
  .content-type-section__video-title h2 {
    text-align: center;
    font-size: 28px;
    text-shadow: 0 0 22px #fff;
  }
  .content-type-section__video-title h3 {
    font-size: 22px;
    text-shadow: 0 0 22px #fff;
  }
  .content-type-section__title-column h2 {
    font-size: 28px;
    line-height: 1.4;
  }
  .content-type-section__text--one-column {
    margin-top: 16px;
  }
  .content-type-section__text p {
    font-size: 15px;
    line-height: 1.5;
  }
  .content-type-section__video--full-size {
    translate: -20px 0;
  }
}
@media (max-width: 580px) {
  .list-block__list--three-column, .list-block__list--two-column {
    grid-template-columns: 1fr;
  }
}
.videos__container {
  padding-block: 24px 80px;
}
.videos__single {
  position: relative;
  width: 100%;
  max-width: 300px;
}
.videos__play-pause-btn {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  border: none;
  font-size: 76px;
  font-family: system-ui;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  transition: opacity 0.3s ease-in-out;
}
.videos__play-pause-btn--paused {
  opacity: 0;
}
.videos__play-pause-btn--paused:hover {
  opacity: 1;
}
.videos__play-pause-btn span {
  color: #fff;
}
.videos__single-video {
  height: 520px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
}
.videos .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin-inline: 6px !important;
}

@media (max-width: 1440px) {
  .videos__container {
    padding-inline: 0 !important;
  }
  .videos__swiper {
    padding-inline: 40px;
    padding-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .videos__container {
    padding-block: 24px;
  }
  .videos__swiper {
    padding-inline: 25px;
  }
}
@media (max-width: 767px) {
  .videos__container {
    padding-block: 20px;
  }
  .videos__single {
    position: relative;
    max-width: 240px;
  }
  .videos__swiper {
    padding-inline: 16px;
    padding-bottom: 40px;
  }
  .videos__single-video {
    height: 420px;
  }
  .videos .swiper-pagination {
    bottom: 0;
  }
  .videos__play-pause-btn span {
    position: absolute;
    left: calc(50% - 38px);
    top: calc(50% - 38px);
    display: block;
    width: 76px;
    color: #fff;
    aspect-ratio: 1;
    background: #2689c5;
    border-radius: 4px;
  }
  .videos__play-pause-btn span.pause {
    line-height: 0.9;
  }
  .videos__play-pause-btn span.play {
    line-height: 1;
  }
}
.latest-loan__container {
  padding-block: 44px 70px;
}
.latest-loan__title {
  position: relative;
  z-index: 1;
  padding-inline: 16px;
}
.latest-loan__title * {
  color: #140629;
  text-align: center;
  line-height: 1.5;
}
.latest-loan__title h2 {
  font-size: 44px;
}
.latest-loan__title h3 {
  font-size: 28px;
}
.latest-loan__title--white * {
  color: #fff;
}
.latest-loan__title--with-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.latest-loan__title span {
  text-decoration: underline;
}
.latest-loan__btn:after {
  content: "";
  width: 26px;
  height: 26px;
  background-image: url(../../assets/img/circle_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.latest-loan__loan-examples {
  margin-top: 30px;
}

.loan-examples {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, calc(20% - 16px));
  gap: 40px 20px;
  user-select: none;
}
.loan-examples__single-examples {
  display: flex;
  flex-direction: column;
  width: 292px;
  max-width: 292px;
}
.loan-examples__image {
  max-width: 292px;
  max-height: 300px;
  width: 100%;
  height: fit-content;
  object-fit: contain;
  border-radius: 24px;
}
.loan-examples__bottom-group {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.loan-examples__title {
  margin-top: 10px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}
.loan-examples__price {
  color: #1FBBEE;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}

@media (max-width: 1440px) {
  .latest-loan__container.container {
    padding-inline: 0;
  }
  .loan-examples {
    padding-inline: 40px;
  }
}
@media (max-width: 1024px) {
  .latest-loan__title h2 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .loan-examples {
    padding-inline: 25px;
  }
  .loan-examples__single-examples {
    width: 242px;
    max-width: 242px;
  }
}
@media (max-width: 768px) {
  .latest-loan__container {
    padding-block: 20px;
  }
  .latest-loan__loan-examples {
    margin-top: 16px;
  }
  .latest-loan__title h2 {
    font-size: 28px;
  }
  .latest-loan__title--with-btn {
    display: grid;
    grid-template-columns: calc(68% - 12px) 32%;
    align-items: center;
    gap: 12px;
  }
  .latest-loan__title--with-btn h3 {
    margin-inline: 0 auto;
    font-size: 22px;
    text-align: start;
  }
  .latest-loan__title--with-btn .latest-loan__btn.btn {
    width: 100%;
    justify-content: flex-end;
  }
  .loan-examples {
    padding-inline: 16px;
  }
  .loan-examples__single-examples {
    width: 202px;
    max-width: 202px;
  }
}
.interesting-suggestions__container {
  max-width: 100vw !important;
  padding-inline: 0 !important;
}
.interesting-suggestions__title {
  padding-block: 44px 34px;
  color: #140629;
  line-height: 1.5;
  text-align: center;
}
.interesting-suggestions__blocks {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(2, calc(50% - 2px));
  padding-top: 4px;
}
.interesting-suggestions__block {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  padding: 100px 25px 25px;
}
.interesting-suggestions__block-img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
}
.interesting-suggestions__content {
  position: relative;
  z-index: 2;
  inset: 0;
  width: 100%;
  max-width: 455px;
  padding: 25px;
  background: #EFEFEF;
  border-radius: 24px;
}
.interesting-suggestions__content-title {
  font-family: "Montserrat", serif;
  font-weight: 700;
  font-size: 32px;
}
.interesting-suggestions__content-text {
  margin-top: 16px;
  font-weight: 300;
  font-size: 16px;
}
.interesting-suggestions__content-btn-link {
  display: inline-block;
  width: fit-content;
  padding: 14px 54px;
  color: #fff;
  background-color: #140629;
  border: 1px solid #140629;
  border-radius: 8px;
  font-family: "Poppins", serif;
  font-size: clamp(12px, 11.52px + 0.1294vw, 14px);
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 24px;
}

@media (max-width: 767px) {
  .interesting-suggestions__blocks {
    display: flex;
    flex-direction: column;
  }
  .interesting-suggestions__title {
    padding-block: 40px 26px;
    padding-inline: 16px;
  }
  .interesting-suggestions__content {
    width: fit-content;
    padding: 16px;
  }
  .interesting-suggestions__content-title {
    font-size: 24px;
  }
  .interesting-suggestions__content-text {
    display: none;
  }
  .interesting-suggestions__content-btn-link {
    margin-top: 12px;
  }
}
.jewelry-collection__subtitle {
  font-weight: 600;
  font-size: 16px;
}
.jewelry-collection__list-items {
  display: grid;
  gap: 28px 210px;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  margin-bottom: 54px;
}
.jewelry-collection__item-title {
  font-weight: 500;
  font-size: 16px;
}
.jewelry-collection__item-text {
  margin-top: 8px;
}
.jewelry-collection__item-text p {
  font-weight: 300;
  font-size: 16px;
}
.jewelry-collection__bottom-note {
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

.jewelry-slider__container {
  max-width: 100vw !important;
  padding-inline: 0 !important;
}
.jewelry-slider__title {
  margin-bottom: 26px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}
.jewelry-slider__wrapper {
  transition-timing-function: linear;
}
.jewelry-slider .single-jewelry {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content !important;
}

@media (max-width: 1240px) {
  .jewelry-collection__list-items {
    column-gap: 80px;
  }
}
@media (max-width: 768px) {
  .jewelry-collection__list-items {
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
  }
  .jewelry-collection__item {
    width: 100%;
    max-width: calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .jewelry-collection__list-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 40px;
  }
  .jewelry-collection__item {
    width: fit-content;
    max-width: 100%;
  }
  .jewelry-collection__item-img {
    margin-inline: auto;
  }
  .jewelry-collection__item-title {
    width: fit-content;
  }
  .jewelry-collection__item-text {
    display: none;
  }
}
.top-items * {
  color: #fff;
}
.top-items__container.container {
  max-width: 100vw;
  width: 100%;
  margin-inline: 0;
  padding-inline: 0;
  padding-block: 40px 30px;
}
.top-items__title {
  margin-bottom: 20px;
  color: #140629;
  font-size: 44px;
  text-align: center;
}
.top-items__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 700px;
  min-height: fit-content;
}
.top-items__background-img {
  position: absolute;
  z-index: -1;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.top-items__background-img:not(:first-child) {
  display: none;
}
.top-items__single-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 24px 40px 40px;
  cursor: pointer;
}
.top-items__single-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}
.top-items__single-item.active-item .top-items__single-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-items__single-item.active-item .top-items__single-btn:after {
  content: "";
  display: block;
  width: 26px;
  min-width: 26px;
  height: 26px;
  background-image: url("../../assets/img/discover-more-btn.svg");
}
.top-items__single-title {
  font-family: "Montserrat", serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.4;
}
.top-items__single-text {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}
.top-items__single-text > * {
  padding-block: 20px 10px;
}
.top-items__single-text * {
  font-weight: 300;
  font-size: 16px;
}
.top-items__single-btn {
  margin-top: 16px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 1240px) {
  .top-items__inner {
    display: flex;
    flex-direction: column;
  }
  .top-items__single-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.2901960784);
  }
}
@media (max-width: 1024px) {
  .top-items__title {
    font-size: 36px;
  }
  .top-items__single-title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .top-items__container.container {
    padding-block: 20px;
  }
  .top-items__title {
    margin-bottom: 16px;
    padding-inline: 16px;
    font-size: 28px;
  }
  .top-items__single-title {
    font-size: 18px;
  }
  .top-items__single-item {
    padding: 26px 16px 26px 16px;
  }
  .top-items__single-text * {
    font-size: 15px;
    line-height: 1.35;
  }
}
.content-with-image__container {
  padding-block: 30px 0;
}
.content-with-image__inner {
  display: grid;
  grid-template-columns: calc(50% - 45px) calc(50% - 45px);
  justify-content: space-between;
  align-items: flex-end;
  gap: 90px;
}
.content-with-image__content-block {
  width: 100%;
  max-width: 712px;
  padding-bottom: 130px;
}
.content-with-image__title {
  font-size: 44px;
}
.content-with-image__text {
  margin-top: 25px;
}
.content-with-image__text * {
  font-weight: 300;
  font-size: 16px;
}
.content-with-image__img {
  width: 100%;
  max-width: 630px;
  margin-inline: 0 auto;
}

.content-cash-steps {
  display: grid;
  grid-template-columns: repeat(4, 407px);
  align-items: center;
  margin-top: -10px;
  padding-bottom: 170px;
}
.content-cash-steps--small-padding {
  padding-bottom: 36px;
}
.content-cash-steps__single-step {
  width: 100%;
  padding-inline: 40px;
  padding-block: 36px 64px;
  border: 1px solid #D2EAFF;
  background-color: #fff;
  box-shadow: 0 0 40px 0 rgba(145, 145, 145, 0.1490196078);
}
.content-cash-steps__single-step:nth-child(2) {
  padding-block: 46px 74px;
  margin-left: -25px;
}
.content-cash-steps__single-step:nth-child(3) {
  padding-block: 56px 84px;
  margin-left: -50px;
}
.content-cash-steps__single-step:nth-child(4) {
  padding-block: 66px 94px;
  margin-left: -75px;
}
.content-cash-steps__top-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content-cash-steps__top-line span {
  color: #1FBBEE;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
}
.content-cash-steps__icon {
  object-fit: contain;
}
.content-cash-steps__title {
  margin-top: 30px;
}
.content-cash-steps__title * {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.6;
}
.content-cash-steps__text {
  width: 100%;
  max-width: 300px;
  margin-top: 50px;
}
.content-cash-steps__text * {
  font-weight: 300;
  font-size: 16px;
}

@media (max-width: 1640px) {
  .content-cash-steps {
    grid-template-columns: repeat(4, calc(25% + 19px));
  }
}
@media (min-width: 1024px) and (max-width: 1640px) {
  .content-cash-steps__single-step {
    max-height: 332px;
  }
  .content-cash-steps__single-step:nth-child(2) {
    max-height: 352px;
  }
  .content-cash-steps__single-step:nth-child(3) {
    max-height: 372px;
  }
  .content-cash-steps__single-step:nth-child(4) {
    max-height: 392px;
  }
}
@media (max-width: 1024px) {
  .content-with-image__title {
    font-size: 36px;
  }
  .content-cash-steps__single-step {
    padding-inline: 16px;
    padding-block: 26px 44px;
  }
  .content-cash-steps__single-step:nth-child(2) {
    padding-block: 36px 54px;
    margin-left: -25px;
  }
  .content-cash-steps__single-step:nth-child(3) {
    padding-block: 46px 64px;
    margin-left: -50px;
  }
  .content-cash-steps__single-step:nth-child(4) {
    padding-block: 56px 74px;
    margin-left: -75px;
  }
}
@media (max-width: 991px) {
  .content-with-image__content-block {
    padding-bottom: 60px;
  }
  .content-cash-steps {
    display: flex;
    flex-direction: column;
  }
  .content-cash-steps__single-step {
    width: calc(100% - 120px);
    padding-inline: 40px;
    margin-left: 0 !important;
  }
  .content-cash-steps__single-step:nth-child(2) {
    width: calc(100% - 80px);
    margin-top: -20px;
  }
  .content-cash-steps__single-step:nth-child(3) {
    width: calc(100% - 40px);
    margin-top: -20px;
  }
  .content-cash-steps__single-step:nth-child(4) {
    width: 100%;
    margin-top: -20px;
  }
  .content-cash-steps__top-line {
    flex-direction: row-reverse;
    justify-content: center;
    gap: 20px;
  }
  .content-cash-steps__title {
    margin-top: 16px;
  }
  .content-cash-steps__title * {
    text-align: center;
  }
  .content-cash-steps__text {
    margin-top: 26px;
    margin-inline: auto;
  }
  .content-cash-steps__text * {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .content-with-image__container {
    padding-block: 20px 0;
  }
  .content-with-image__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }
  .content-with-image__content-block {
    padding-bottom: 40px;
  }
  .content-with-image__title {
    font-size: 28px;
  }
  .content-with-image__text {
    margin-top: 16px;
  }
  .content-with-image__text * {
    font-size: 15px;
    line-height: 1.35;
  }
  .content-with-image__image-block {
    margin-inline: auto;
  }
  .content-with-image__img {
    max-width: 400px;
  }
  .content-cash-steps {
    padding-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .content-cash-steps__single-step {
    width: calc(100% - 30px);
    padding-block: 26px 34px !important;
    padding-inline: 24px;
  }
  .content-cash-steps__single-step:nth-child(2) {
    width: calc(100% - 20px);
    margin-top: -20px;
  }
  .content-cash-steps__single-step:nth-child(3) {
    width: calc(100% - 10px);
    margin-top: -20px;
  }
  .content-cash-steps__single-step:nth-child(4) {
    width: 100%;
    margin-top: -20px;
  }
}
.cash-steps {
  background: #140629;
}
.cash-steps__container {
  padding-top: 62px;
}
.cash-steps__title {
  text-align: center;
  font-size: 42px;
}
.cash-steps__list {
  display: flex;
  justify-content: space-between;
  gap: 0;
  margin-top: 42px;
}
.cash-steps__single-step {
  width: calc(25% - 15px);
  max-width: 366px;
  height: unset;
  padding: 24px 15px 32px 30px;
  background-color: #1b1130;
  border: 1px solid rgba(255, 255, 255, 0.1490196078);
  border-radius: 16px;
}
.cash-steps__top-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cash-steps__top-line span {
  color: #1FBBEE;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
}
.cash-steps__single-title {
  margin-top: 36px;
}
.cash-steps__single-title * {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}
.cash-steps__single-text {
  margin-top: 12px;
}
.cash-steps__single-text * {
  color: #fff;
  font-weight: 300;
  font-size: 16px;
}

@media (max-width: 1240px) {
  .cash-steps__container.container {
    padding-inline: 0 !important;
  }
  .cash-steps__title {
    font-size: 36px;
    padding-inline: 40px;
  }
  .cash-steps__swiper {
    padding-inline: 40px;
  }
  .cash-steps__single-step {
    width: 365px;
    max-width: 100%;
    padding: 24px 15px 32px 30px;
  }
}
@media (max-width: 991px) {
  .cash-steps__title, .cash-steps__swiper {
    padding-inline: 25px;
  }
}
@media (max-width: 768px) {
  .cash-steps__title {
    font-size: 28px;
    padding-inline: 16px;
  }
  .cash-steps__swiper {
    padding-inline: 16px;
  }
  .cash-steps__single-step {
    padding: 16px 12px 16px 20px;
  }
  .cash-steps__single-text * {
    font-size: 15px;
  }
}
@media (max-width: 520px) {
  .cash-steps__single-step {
    width: 90%;
    padding: 16px 16px 24px 16px;
  }
  .cash-steps__single-title {
    font-size: 18px;
  }
}
.fastest-personal-loans__container {
  padding-block: 44px 38px;
}
.fastest-personal-loans__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  align-items: flex-end;
  gap: 34px 30px;
}
.fastest-personal-loans__content {
  grid-column: span 2;
  grid-row: span 1;
  padding-top: 14px;
  padding-right: 50px;
}
.fastest-personal-loans__title * {
  font-family: "Montserrat", serif;
  font-weight: 700;
  font-size: 32px;
}
.fastest-personal-loans__text {
  margin-top: 24px;
}
.fastest-personal-loans__text * {
  font-weight: 300;
  font-size: 16px;
}
.fastest-personal-loans__single-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  grid-column: span 1;
  grid-row: span 1;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  width: 100%;
  max-width: 366px;
  padding: 26px 30px;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
}
.fastest-personal-loans__single-card:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 45%;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(32, 20, 86, 0) 0%, #201456 100%);
}
.fastest-personal-loans__single-card:after {
  content: "";
  background-image: url(../../assets/img/arrow_red.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  height: 15px;
  width: 11px;
}

@media (max-width: 1240px) {
  .fastest-personal-loans__inner {
    gap: 18px 16px;
  }
  .fastest-personal-loans__title * {
    font-size: 28px;
  }
  .fastest-personal-loans__single-card {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .fastest-personal-loans__inner {
    gap: 24px;
  }
  .fastest-personal-loans__content {
    grid-column: span 4;
  }
  .fastest-personal-loans__single-card {
    padding: 16px;
    border-radius: 14px;
  }
}
@media (max-width: 768px) {
  .fastest-personal-loans__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .fastest-personal-loans__content {
    grid-column: span 3;
  }
}
@media (max-width: 540px) {
  .fastest-personal-loans__container {
    padding-block: 14px;
  }
  .fastest-personal-loans__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .fastest-personal-loans__content {
    grid-column: span 2;
    padding-inline: 0;
    margin-bottom: 20px;
  }
  .fastest-personal-loans__title * {
    font-size: 22px;
  }
  .fastest-personal-loans__text {
    margin-top: 20px;
  }
  .fastest-personal-loans__text * {
    line-height: 1.35;
  }
}
.full-video-image {
  padding-top: 20px;
}
.full-video-image.watches {
  padding-top: 0;
}
.full-video-image .container {
  position: relative;
}
.full-video-image__container:not(.full-video-image__container--limit-size) {
  max-width: 100vw !important;
  padding-inline: 0 !important;
}
.full-video-image__video {
  height: 852px;
  max-height: 100vh;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.full-video-image__title {
  position: absolute;
  width: fit-content;
}
.full-video-image__title * {
  color: #fff;
  text-align: center;
  text-shadow: 0 0 22px #000;
}
.full-video-image__title h2 {
  font-size: 62px;
}
.full-video-image__title h3 {
  font-weight: 700;
  font-size: 44px;
}
.full-video-image__title h4 {
  font-weight: 700;
  font-size: 32px;
}
.full-video-image__title--white * {
  color: #fff;
}
.full-video-image__title--dark * {
  color: #140629;
  text-shadow: 0 0 22px #fff;
}
.full-video-image__img {
  margin-inline: auto;
}

@media (max-width: 1440px) {
  .full-video-image__title h2 {
    font-size: 58px;
  }
  .full-video-image__title h3 {
    font-size: 38px;
  }
  .full-video-image__title h4 {
    font-size: 28px;
  }
}
@media (max-width: 1240px) {
  .full-video-image.watches {
    margin-bottom: -170px !important;
  }
}
@media (max-width: 1024px) {
  .full-video-image.watches {
    margin-bottom: -130px !important;
  }
  .full-video-image__title h2 {
    font-size: 52px;
  }
  .full-video-image__title h3 {
    font-size: 34px;
  }
  .full-video-image__title h4 {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .full-video-image.watches {
    margin-bottom: -80px !important;
  }
  .full-video-image .container {
    padding-top: 20px;
  }
  .full-video-image__title {
    padding-top: 0 !important;
  }
  .full-video-image__title h2 {
    font-size: 36px;
  }
  .full-video-image__title h3 {
    font-size: 28px;
  }
  .full-video-image__title h4 {
    font-size: 24px;
  }
  .full-video-image__video {
    height: 560px;
    max-height: 80vh;
  }
  .full-video-image__img {
    height: 400px;
    object-fit: cover;
  }
}
@media (max-width: 640px) {
  .full-video-image.watches {
    margin-bottom: -60px !important;
  }
}
@media (max-width: 540px) {
  .full-video-image.watches {
    margin-bottom: -40px !important;
  }
}
.image-slider__conttainer {
  padding-top: 12px;
}
.image-slider__wrapper {
  transition-timing-function: linear;
}
.image-slider__slide {
  max-width: 354px;
}
.image-slider .swiper-horizontal:after {
  position: absolute;
  display: block;
  z-index: -1;
  content: "";
  width: 100%;
  bottom: 0;
  box-shadow: 0 20px 30px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1440px) {
  .image-slider__slide {
    max-width: 264px;
  }
}
@media (max-width: 768px) {
  .image-slider__slide {
    max-width: 200px;
  }
}
.demo-slider {
  position: relative;
  margin-bottom: -20%;
}
.demo-slider__background-image {
  width: 100%;
}
.demo-slider__title {
  position: absolute;
  width: 100%;
  top: 120px;
  text-align: center;
}
.demo-slider__title h2 {
  font-size: 62px;
  line-height: 1.5;
}
.demo-slider__title * {
  color: #fff;
  text-align: center;
  text-shadow: 0 0 22px rgba(0, 0, 0, 0.2509803922);
}
.demo-slider__swiper {
  position: absolute;
  z-index: 4;
  width: 100%;
  top: 46%;
  left: 0;
  margin-inline: auto;
  padding-bottom: 60px;
  transform: translate(0, -54%);
}
.demo-slider__wrapper {
  align-items: flex-end;
}
.demo-slider__slide {
  opacity: 0;
  transition: opacity 0.75s ease;
}
.demo-slider__slide.swiper-slide-next, .demo-slider__slide.swiper-slide-prev {
  opacity: 0;
  transition: opacity 0.75s ease;
}
.demo-slider__slide.swiper-slide-active {
  opacity: 1;
}
.demo-slider__slide-img {
  display: block;
  margin-inline: auto;
}
.demo-slider--collectible {
  margin-bottom: -10%;
}
.demo-slider--collectible .demo-slider__slide-img {
  max-width: 23vw;
}
.demo-slider--collectible .demo-slider__swiper {
  top: 50%;
  margin-inline: auto;
  padding-bottom: 60px;
  transform: translate(0, -50%);
}

@media (min-width: 1620px) {
  .demo-slider {
    margin-bottom: -23%;
  }
  .demo-slider--collectible {
    margin-bottom: -10%;
  }
}
@media (max-width: 1440px) {
  .demo-slider__title {
    top: 64px !important;
  }
  .demo-slider__title h2 {
    font-size: 44px;
  }
}
@media (max-width: 991px) {
  .demo-slider__title {
    top: 26px !important;
  }
  .demo-slider__title h2 {
    font-size: 38px;
  }
  .demo-slider--purses:after {
    bottom: -16px !important;
  }
}
@media (max-width: 820px) {
  .demo-slider--purses:after {
    bottom: 0px !important;
  }
}
@media (max-width: 767px) {
  .demo-slider__title {
    position: relative;
  }
  .demo-slider__title h2 {
    color: #140629;
  }
  .demo-slider--purses:after {
    bottom: 20px !important;
  }
}
@media (max-width: 640px) {
  .demo-slider__title h2 {
    font-size: 34px;
  }
  .demo-slider__swiper {
    padding-bottom: 0;
  }
  .demo-slider--purses:after {
    bottom: -15px !important;
    background-size: 230vw !important;
  }
}
@media (max-width: 480px) {
  .demo-slider__title {
    top: 0 !important;
  }
  .demo-slider__title * {
    color: #140629;
  }
  .demo-slider__swiper {
    padding-bottom: 0;
    top: 50%;
  }
  .demo-slider--purses:after {
    bottom: -25px !important;
    background-size: 230vw !important;
  }
}
* {
  font-family: "Poppins", serif;
  line-height: 1.5;
  color: #140629;
}

h1 {
  color: #FFF917;
  font-family: "Montserrat", serif;
  font-weight: 900;
  font-size: clamp(42px, 34.72px + 1.9417vw, 72px);
  line-height: 1.25;
}

h2 {
  color: #FFF917;
  font-family: "Montserrat", serif;
  font-weight: 700;
  font-size: clamp(34px, 32px + 0.5178vw, 42px);
  line-height: 1.25;
}

a {
  text-decoration: none;
}

main {
  overflow: hidden;
}

@media (max-width: 767px) {
  section:first-child .container {
    padding-top: 112px;
  }
}
@media (min-width: 768px) {
  section:first-child {
    padding-top: 156px;
  }
}
blockquote {
  font-style: italic;
}

.container {
  max-width: 1634px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 40px;
}

.sentinel {
  position: absolute;
  top: 2px;
}

.text {
  color: #fff;
}

.border-text {
  color: transparent;
  -webkit-text-stroke: 2px #000;
}

.button-with-background {
  display: inline-block;
  width: fit-content;
  padding: 14px 54px;
  color: #000;
  background-color: #FFF917;
  border: 1px solid #FFF917;
  border-radius: 8px;
  font-family: "Poppins", serif;
  font-size: clamp(12px, 11.52px + 0.1294vw, 14px);
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.button-with-background--red {
  display: inline-block;
  width: fit-content;
  padding: 14px 54px;
  color: #E61B24;
  background-color: transparent;
  border: 1px solid #E61B24;
  border-radius: 8px;
  font-family: "Poppins", serif;
  font-size: clamp(12px, 11.52px + 0.1294vw, 14px);
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button-with-background--red:hover {
  background: rgba(230, 27, 36, 0);
}

.btn {
  display: flex;
  align-items: center;
  flex-direction: row;
  column-gap: 10px;
  width: fit-content;
  color: #E61B24;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.btn--with-arrow:after {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url("../../assets/img/arrow_red.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.btn--with-circle-arrow {
  line-height: 1;
}
.btn--with-circle-arrow:after {
  content: "";
  width: 26px;
  height: 26px;
  background-image: url("../../assets/img/circle_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.btn:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.date {
  font-weight: 600;
  font-size: 13px;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-response-output {
  width: fit-content;
  margin-inline: auto !important;
  padding: 12px 36px !important;
  color: #E61B24 !important;
  border-color: #E61B24 !important;
  border-radius: 12px;
}

.wpcf7 form .wpcf7-response-output {
  border: none;
  font-size: 14px;
  margin: 0;
}

.contact-request__field p .wpcf7-not-valid-tip,
.contact-request__field span .wpcf7-not-valid-tip {
  font-size: 14px;
}

.text-content a {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #E61B24;
}

.contact-request {
  display: grid;
  grid-template-columns: repeat(4, 250px);
  justify-content: center;
  gap: 44px;
}
.contact-request__field {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 10px;
  width: 100%;
  max-width: 250px;
  padding: 16px 22px 16px 10px;
  background: #F8F9FB;
  border: 1px solid #EEF0F4;
  border-radius: 8px;
}
.contact-request__field input,
.contact-request__field select,
.contact-request__field textarea {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #8C8DA3;
  font-size: 14px;
  font-weight: 300;
}
.contact-request__field input::placeholder,
.contact-request__field select::placeholder,
.contact-request__field textarea::placeholder {
  color: #8C8DA3;
  font-size: 14px;
  font-weight: 300;
}
.contact-request__field select {
  cursor: pointer;
}
.contact-request__field p,
.contact-request__field span {
  position: static;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.contact-request__field p .wpcf7-not-valid-tip,
.contact-request__field span .wpcf7-not-valid-tip {
  position: absolute;
  height: fit-content;
  left: 14px;
  bottom: -28px;
}
.contact-request__field--transaction-type .wpcf7-form-control-wrap, .contact-request__field--category .wpcf7-form-control-wrap, .contact-request__field--condition .wpcf7-form-control-wrap {
  background: url("../../assets/img/select_vector.svg") no-repeat transparent;
  background-position: 100% 50%;
}
.contact-request__field--transaction-type .wpcf7-form-control-wrap > select, .contact-request__field--category .wpcf7-form-control-wrap > select, .contact-request__field--condition .wpcf7-form-control-wrap > select {
  width: 100%;
  font-size: 14px;
  background: transparent;
  border: 0;
  overflow: hidden;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.contact-request__field--transaction-type:before {
  content: "";
  display: block;
  width: 10px;
  min-width: 10px;
  height: 16px;
  background: url("../../assets/img/usd__gray.svg") no-repeat;
  background-size: contain;
}
.contact-request__field--name:before {
  content: "";
  display: block;
  width: 14px;
  min-width: 14px;
  height: 17px;
  background: url("../../assets/img/name__gray.svg") no-repeat;
  background-size: contain;
}
.contact-request__field--email:before {
  content: "";
  display: block;
  width: 16px;
  min-width: 16px;
  height: 16px;
  background: url("../../assets/img/mail__gray.svg") no-repeat;
  background-size: contain;
}
.contact-request__field--tel:before {
  content: "";
  display: block;
  width: 16px;
  min-width: 16px;
  height: 16px;
  background: url("../../assets/img/phone__gray.svg") no-repeat;
  background-size: contain;
}
.contact-request__field--zip-code:before {
  content: "";
  display: block;
  width: 14px;
  min-width: 14px;
  height: 16px;
  background: url("../../assets/img/map_pin__gray.svg") no-repeat;
  background-size: contain;
}
.contact-request__field--category:before {
  content: "";
  display: block;
  width: 18px;
  min-width: 18px;
  height: 18px;
  background: url("../../assets/img/star__gray.svg") no-repeat;
  background-size: contain;
}
.contact-request__field--condition:before {
  content: "";
  display: block;
  width: 17px;
  min-width: 17px;
  height: 16px;
  background: url("../../assets/img/like__gray.svg") no-repeat;
  background-size: contain;
}
.contact-request__field--photo {
  padding: 0;
  background: none;
  border: none;
}
.contact-request__field--photo span {
  display: none;
}
.contact-request__field--message {
  grid-column: span 2;
  width: 750px;
  max-width: 100% !important;
}
.contact-request__img-label {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  color: #8C8DA3;
  font-weight: 300;
  font-size: 14px;
  cursor: pointer;
}
.contact-request__img-label:before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: url("../../assets/img/camera__gray.svg") no-repeat;
  background-size: contain;
}
.contact-request__submit {
  margin-top: 55px;
  text-align: center;
}
.contact-request--cf-page {
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 50px;
}
.contact-request__field--cf-page {
  max-width: 350px;
}
.contact-request__field--message {
  max-width: 750px;
  padding: 34px 10px 10px;
}
.contact-request__field--message textarea {
  resize: none;
}
.contact-request__submit--cf-page {
  position: relative;
  grid-column: span 2;
  max-width: 750px;
  margin-top: 0;
}
.contact-request__submit--cf-page input {
  width: 100%;
  background: rgba(230, 27, 36, 0.1411764706);
  cursor: pointer;
}
.contact-request__submit--cf-page:after {
  content: "";
  position: absolute;
  display: block;
  z-index: -1;
  top: 17px;
  left: calc(50% + 35px);
  width: 15px;
  height: 15px;
  background: url("../../assets/img/plane--red.svg") no-repeat;
  background-size: contain;
}

@media (max-width: 1280px) {
  .contact-request {
    display: grid;
    grid-template-columns: repeat(3, 250px);
    justify-content: center;
    gap: 24px;
  }
}
@media (max-width: 991px) {
  .container {
    padding-inline: 25px;
  }
}
@media (max-width: 880px) {
  .button-with-background {
    padding: 8px 28px;
  }
  .contact-request {
    grid-template-columns: repeat(2, calc(50% - 24px));
    gap: 34px 24px;
  }
  .contact-request__field {
    max-width: 100%;
  }
  .contact-request__submit--cf-page:after {
    top: 10px;
  }
}
@media (max-width: 767px) {
  .container {
    padding-inline: 16px;
  }
  .contact-request {
    display: flex;
    flex-direction: column;
  }
  .btn {
    font-size: 14px;
  }
  .contact-request__submit--cf-page:after {
    left: calc(50% + 17px);
  }
  .contact-request .button-with-background {
    padding: 8px 49px 8px 28px;
  }
}
@media (max-width: 640px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 34px;
  }
  h3 {
    font-size: 30px;
  }
  .contact-request {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-request__field p .wpcf7-not-valid-tip,
  .contact-request__field span .wpcf7-not-valid-tip {
    font-size: clamp(12px, 11.52px + 0.1294vw, 14px);
    bottom: -22px;
  }
  .contact-request__submit {
    margin-top: 0;
  }
  .contact-request .button-with-background {
    width: 100%;
  }
}
@media (max-width: 540px) {
  main.main .pawn__container {
    padding-top: 20px;
  }
  main.main .pawn__title {
    margin-bottom: 12px;
    font-size: 24px;
    text-align: center;
  }
  main.main .our-conditions__container {
    padding-bottom: 20px;
  }
  main.main .our-conditions__inner {
    gap: 20px;
  }
  main.main .condition__title {
    display: flex;
    align-items: center;
    height: 100%;
    font-weight: 400;
    font-size: 15px;
  }
  main.main .condition__text {
    display: none;
  }
  main.main .our-offers__container {
    padding-top: 20px;
  }
  main.main .offer {
    position: relative;
    overflow: hidden;
    padding: 0;
  }
  main.main .offer__subtitle *, main.main .offer__single-item {
    max-width: 210px;
    font-size: 15px;
    font-weight: 300;
  }
  main.main .offer__image {
    position: absolute;
    z-index: 0;
    display: block;
    top: 0;
    height: 100%;
    right: -38%;
  }
  main.main .offer__image img {
    height: 100%;
  }
  main.main .offer:last-child .offer__image {
    top: auto;
    bottom: 0;
    left: auto;
    height: 80%;
    right: -28%;
  }
  main.main .offer .btn {
    font-size: 12px;
  }
  main.main .reviews__title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  main.main .slogan-banner {
    margin-top: 30px;
  }
  main.main .slogan-banner__container {
    padding-bottom: 0;
  }
  main.main .slogan-banner__title {
    margin-top: 8px;
  }
  main.main .slogan-banner__title p {
    text-align: center;
    text-align-last: center;
  }
  main.main .slogan-banner__subtitle {
    margin-top: 6px;
  }
  main.main .slogan-banner__subtitle p {
    font-size: 15px;
    text-align: center;
  }
  main.main .slogan-banner__link {
    width: 100%;
    justify-content: center;
  }
  main.main .slogan-banner__content-block {
    margin-block: 210px 0;
    padding-block: 0 40px;
    background: #1fbbee;
  }
  main.main .slogan-banner__main-image {
    width: 100%;
    bottom: auto;
    top: -84px;
    left: 0;
  }
  main.main .slogan-banner__main-image:before {
    width: calc(100% - 36px);
    height: auto;
    aspect-ratio: 1;
    left: 16px;
  }
}

/*# sourceMappingURL=styles.css.map */
