/**************************************************/
/**         GENERAL RESET & BASE STYLES          **/
/**************************************************/

@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&family=Wix+Madefor+Display:wght@400..800&display=swap");

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

* {
  margin: 0;
  padding: 0;
  font-family: "Wix Madefor Display", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: auto;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

strong {
  font-weight: 700;
}

b {
  font-weight: 500;
}

img {
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin: 0;
}

p {
  margin: 0;
}

input,
textarea,
select {
  vertical-align: middle;
  padding: 0;
  box-sizing: border-box;
  resize: none;

  border: 1px solid transparent;
  color: #000c49;
  background-color: #fff;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: #000c49;
  font-size: 16px;
}

textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
  color: #b9b9b9;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #000000;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px transparent;
}

.hover {
  transition: opacity 0.4s;
}

.hover:hover {
  opacity: 0.5;
}

.container {
  display: block;
  position: relative;
  width: 1200px;
  padding: 0;
  margin: 0 auto;
  height: auto;
}

/**************************************************/
/**                 MAIN STYLES                  **/
/**************************************************/
.hero__slide-data {
  color: #f9f9f9;
  font-size: 14px;
  margin-top: 16px;
}

.hero {
  height: 90vh;
  position: relative;
  overflow: hidden;
}

.hero__videos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__videos img,
.hero__videos video {
  height: 100%;
  width: 100%;
  object-position: bottom;
  object-fit: cover;
}

.heroSwiper,
.hero__inner {
  height: 100%;
  z-index: 2;
}

.hero__content {
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: 100%;
  padding-bottom: 100px;
}

.hero__btns {
  display: flex;
  gap: 16px;
}

.hero__slides {
  overflow: hidden;
  width: 30%;
}

.hero__btn {
  display: flex;
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #fff;
  cursor: pointer;
  background: var(--White, #f9f9f93b);

  transition: all 0.4s;
}

.hero__btn:hover {
  background: var(--White, #f9f9f9a1);
}

.hero__slide-arrow {
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #fff;
  background: #f9f9f9;
}

.hero__slide-title {
  color: #fff;
  font-family: Bounded !important;
  font-size: 20px;
  line-height: 120%;
  /* 24px */
  margin: 16px 0 8px;
}

.hero__slide-text {
  color: #fff;

  line-height: 130%;
  /* 20.8px */
}

.section-margin {
  margin-top: 180px;
}

.about__inner {
  display: flex;
  flex-direction: column;

  gap: 45px;
}

.about__line {
  width: 100%;
  height: 1px;
  background-color: #d7d7cb;
}

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

.about__title {
  color: #202020;
  text-align: right;
  font-family: Bounded !important;
  font-size: 40px;

  width: 95%;
  line-height: 120%;
  /* 48px */
}

.about__top {
  display: flex;
  justify-content: end;
}

.about__text {
  color: #202020;
  font-size: 18px;
  line-height: 140%;
  /* 25.2px */
}

.about__counter {
  color: var(--Black, #202020);
  font-family: Bounded !important;
  font-size: 64px;
  font-weight: 500;
  line-height: 140%;
  /* 89.6px */
}

.about__item {
  padding-left: 40px;
  border-left: 1px solid #d7d7cb;
}

.about__item:first-child {
  padding: 0;
  border: none;
}

.about__counter-wrap {
  display: flex;
  align-items: center;
}

.section-list__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.section-list__item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-list__item img {
  height: 70%;
}

.title-block {
  padding-top: 32px;
  border-top: 1px solid #d7d7cb;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.title {
  color: #202020;
  font-family: Bounded !important;
  font-size: 40px;
  line-height: 120%;
  /* 48px */
}

.title-block__content {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.title-block__text {
  color: #202020;
  width: 100%;
  line-height: 130%;
  /* 20.8px */
}

input[type="submit"].custom-btn,
.custom-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: #187ada;
  color: #f9f9f9;
  font-weight: 500;
  height: 40px;
  padding: 0 20px;
  white-space: nowrap;
  position: relative;
  font-size: 16px;
  line-height: normal;
  transition: all 0.4s;
}

.custom-btn:hover {
  color: #d7d7cb;
  background-color: #1845da;
}

.template__slider {
  margin-top: 70px;
  position: relative;
}

.template__slider-list .template__item-img {
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 16px;
}

.template__item-img img {
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-out;
}

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

.template__item-title {
  color: #202020;
  font-family: Bounded !important;
  font-size: 18px;
  line-height: 140%;
  /* 25.2px */
}

.template__item:first-child {
  margin-left: calc((100vw - 1200px) / 2);
}

/* .template__item:last-child {
  margin-right: calc((100vw - 1200px) / 2);
} */
html {
  height: auto;
}

/* .template__drug {
  position: absolute;
  z-index: 10;
  display: flex;
  width: 80px;
  height: 80px;
  justify-content: center;
  align-items: center;
  background-color: #187ada;
  border-radius: 50%;
  color: #f9f9f9;
  font-weight: 500;
  line-height: 140%; 
  top: 0;
  left: 0;
  pointer-events: none;
  scale: 0;
  opacity: 0;
} */
.approach__list {
  margin-top: 70px;
}

.approach__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 32px 0;

  border-top: 1px solid var(--Pale-Grey, #d7d7cb);
  border-bottom: 1px solid var(--Pale-Grey, #d7d7cb);
}

.approach__row:last-child {
  border-bottom: none;
}

.approach__subtitle {
  color: #202020;
  font-family: Bounded !important;
  font-size: 18px;

  line-height: 120%;
  /* 21.6px */
}

.approach__text {
  color: #202020;
  font-size: 18px;
  line-height: 120%;
  /* 21.6px */
}

.section-video-full video {
  width: 100%;
}

.template__item-text {
  color: var(--Black, #202020);
  font-family: "Wix Madefor Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  margin-top: 5px;
}

.template__slider-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.template__item-data {
  color: var(--Black, #202020);
  font-size: 14px;
  line-height: 130%;
  /* 18.2px */
}

.template__slider-list .template__item {
  margin: 0;
}

.connect {
  margin-bottom: 60px;
}

.connect__inner {
  position: relative;
}

.connect__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.connect__title {
  width: 90%;
  color: var(--White, #f9f9f9);
  text-align: center;
  font-family: Bounded !important;
  font-size: 40px;

  line-height: 130%;
  /* 52px */
  margin-bottom: 32px;
}

.template__item:hover img {
  scale: 1.05;
}

.hoverBlock {
  position: fixed;
  z-index: 5;
  top: 0;
  background-color: #187ada;
  pointer-events: none;
  scale: 0;
  display: flex !important;
  width: 80px;
  height: 80px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;

  color: var(--White, #f9f9f9);
  font-weight: 500;
  line-height: 140%;
  /* 22.4px */
}

.templateSwiper {
  cursor: grab;
}

.section-image-mobile {
  display: none;
}

#pagetitle {
  display: none;
}

/* ----------------------------------------NEW--------------------------------- */
section {
  overflow: hidden;
}

.hero-image-text__top {
  display: grid;
  grid-template-columns: 1fr 1fr;

  margin-bottom: 48px;
}

.hero-image-text__text {
  margin-top: 16px;
  font-size: 18px;
  color: var(--Black, #202020);
}

.hero-image-text__btn {
  width: max-content;
  align-self: flex-end;
}

.hero-image-text__item {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.hero-image-text__bottom video,
.hero-image-text__bottom img {
  width: 100vw;
}

.box-list__inner {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.box-list__item {
  padding: 24px;
  border: 1px solid #202020;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 1;
}

.box-list__icon {
  border-radius: 50%;
  background-color: #187ada;

  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box-list__icon img {
  width: 50%;
}

.box-list__subtitle {
  font-size: 24px;
  font-family: Bounded !important;
  margin-bottom: 24px;
}

.box-list__text {
  color: #202020;
}

.team-list__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 72px;
}

.team-list__bottom {
  position: relative;
}

.team-list__subtitle {
  color: var(--Black, #202020);
  font-family: Bounded !important;
  font-size: 18px;
}

.team-list__text {
  margin-top: 4px;
  color: var(--Black, #202020);
}

.team-list__bottom {
  margin-top: 16px;

  position: relative;
}

.team-list__plus {
  position: absolute;
  right: 8px;
  top: 0;
  width: 1px;
  height: 17px;
  background: #202020;
}

.team-list__plus::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  width: 17px;
  height: 1px;
  background: #202020;
}

.title-block__text a {
  color: #187ada;
}

.careers__content {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.careers__item {
  padding: 24px;
  border: 1px solid #202020;
  display: grid;
  gap: 32px;
  grid-template-columns: 2fr 3fr;
}

.careers__left,
.careers__left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.careers__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.careers__subtitle {
  color: var(--Black, #202020);
  font-family: Bounded !important;
  font-size: 24px;
}

.careers__location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--Dark-grey, #a2a2a2);
}

.careers__text {
  font-size: 14px;
  color: var(--Black, #202020);
  margin: 24px 0 32px;
}

.careers__btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.custom-btn-border {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: #fff;
  color: #202020;
  font-weight: 500;
  height: 40px;
  padding: 0 20px;
  white-space: nowrap;
  position: relative;
  transition: all 0.4s;
  border: 1px solid #187ada;
}

.custom-btn-border:hover {
  background-color: #187ada;
  color: #fff;
}

.four-box__content {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.four-box__item {
  padding: 24px;
  border: 1px solid #202020;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 1;
}

.four-box__subtitle {
  color: var(--Black, #202020);
  font-family: Bounded !important;
  font-size: 24px;
}

.four-box__text {
  color: #202020;
}

.form {
  position: relative;
}

.form__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form__inner {
  margin: 124px auto;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #fff;
}

.form__text {
  font-size: 18px;
  color: #202020;
}

.form__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.form__item:first-child {
  padding: 24px 0;
  width: 80%;
}

textarea.input,
input.input {
  width: 100%;
  border-radius: 2px;
  border: 1px solid #202020;
  padding: 12px 24px;
}

textarea.input {
  height: 80px;
}

.form__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.input__wrap {
  margin-bottom: 24px;
  width: 100%;
}

.news-page .input__wrap {
  margin-bottom: 0;
}

button.custom-btn {
  cursor: pointer;
  border: none;
}

.blog__content {
  margin-top: 72px;
}

.blog__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

.blog-tax {
  display: flex;
  gap: 16px;
}

.blog-tax__item {
  width: 100px;
  padding: 8px 16px;
  border-radius: 30px;
  background: var(--White, #f9f9f9);
  color: #202020;
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-tax__item:hover,
.blog-tax__item.active {
  background-color: #187ada;
  color: #fff;
}

.blog-sort {
  display: flex;
  gap: 16px;
  align-items: center;
  white-space: nowrap;
}

.blog-sort .nice-select:after {
  font-size: 12px;
  color: #ffffff;
  position: absolute;
  right: 18px;
}

.blog-sort .nice-select,
.blog-sort select {
  background-color: #187ada;
  border-radius: 30px;
  color: #f9f9f9;
  width: 130px;
  height: 37px;
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-content: center;
}

.blog-sort .nice-select ul.list {
  color: #000;
  left: auto;
}

.blog__middle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-item {
  position: relative;
  overflow: hidden;
}

.blog-item__image {
  overflow: hidden;
  aspect-ratio: 1;
}

.blog-item .blog-item__image img {
  width: 100%;
  transition: all 0.5s;
  object-fit: cover;
}

.blog-item:hover .blog-item__image img {
  scale: 1.05;
}

.blog-item__tags {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 16px;
}

.blog-item__tags-item {
  background: var(--Blood-Rust, #1828da);
  padding: 8px 16px;
  font-size: 14px;
  color: #f9f9f9;
}

.blog-item__data {
  margin: 10px 0 4px;
  font-size: 14px;
  color: #202020;
}

.blog-item__title {
  color: var(--Black, #202020);
  font-family: Bounded !important;
  font-size: 18px;
  line-height: 120%;
  /* 21.6px */
}

.blog__bottom {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-pagination {
  display: flex;
  gap: 16px;
}

.page-numbers.next,
.page-numbers.prev {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.4s;
  border: 1px solid var(--Rich-Blue, #187ada);
  background: var(--Rich-Blue, #187ada);
}

.page-numbers.next.disabled,
.page-numbers.prev.disabled {
  background: #fff;
  pointer-events: none;
}

.page-numbers.next.disabled path,
.page-numbers.prev.disabled path {
  stroke: #000;
}

.page-numbers.next:hover,
.page-numbers.prev:hover {
  background-color: #1845da;
  border-color: #1845da;
}

.page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-numbers.current,
.page-numbers a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.4s;
  background: var(--White, #f9f9f9);
  width: 40px;
  height: 40px;
}

.page-numbers a {
  color: #000;
}

.page-numbers a:hover,
.page-numbers.current {
  background-color: #187ada;
  color: #f9f9f9;
}

.line__wrap {
  margin-top: 48px;
}

.line-line {
  width: 100%;
  background: #d7d7cb;
  height: 2px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.line-line__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  transition: all 0.5s;
  background: #187ada;
}

.line__round {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #d7d7cb;
  transition: all 0.4s;
  z-index: 2;
}

.line__round.active {
  background-color: #187ada;
}

.lines {
  margin-top: 36px;
}

.line__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.line__content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.line__inner,
.lines,
.line__item .container,
.line__item,
.line__image img,
.line__image {
  height: 100%;
}

.line__image img {
  object-fit: cover;
  object-position: center;
}

.line__content div {
  width: 70%;
  font-size: 18px;
}

.line__item {
  width: 100vw;
}

.lines {
  display: flex;
  overflow: hidden;
  width: max-content;
}

.line {
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 70px 0;
  justify-content: center;
}

.line__wrap {
  height: 100%;
}

#content {
  padding: 0 !important;
  margin: 0 !important;
}

.hero-image-text {
  padding-top: 72px;
}

.wpcf7-response-output {
  border: none !important;
  padding: 0 !important;
  margin: 20px 0 10px 0 !important;
  font-size: 14px !important;
  width: 100% !important;
  position: absolute;
  bottom: -30px;
}

.wpcf7-submit {
  cursor: pointer;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7-not-valid {
  border: 1px solid red !important;
}

.wpcf7-form {
  position: relative;
  overflow: visible;
}

.wpcf7-form .wpcf7-form-control-wrap {
  margin-bottom: 0px;
}

/* ----------------------------------------END NEW--------------------------------- */

/*! ----------------------------------------career-item--------------------------------- */
.career-item__inner {
  margin-top: 48px;
}

.career-item__top {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--Pale-Grey, #e1e1d5);
}

.career-item__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 32px 24px 32px;
}

.career-item__logo {
  border-radius: 8px;
  background: var(--Rich-Blue, #187ada);
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  margin-top: -60px;
}

.career-item__logo img {
  width: 100%;
}

.career-item__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.career-item_it {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.career-item__title {
  font-family: Bounded !important;
  font-size: 24px;
}

.career-item__local {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  color: #a2a2a2;
}

.career-item__bottom {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.career-item__block {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.career-item__subtitle {
  font-family: Bounded !important;
  font-size: 18px;
}

.career-item__text {
  font-size: 18px;
  color: var(--Black, #202020);

  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.career-item__list ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 20px;
}

.career-item__list li {
  position: relative;
}

.career-item__list li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 7px;
  border-radius: 10px;
  background: var(--Blood-Rust, #bb2a1c);
  width: 8px;
  height: 8px;
}

.career-item__wrap {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--Pale-Grey, #e1e1d5);
  background: var(--White, #f9f9f9);
  margin-bottom: 32px;
}

.career-item__price {
  color: var(--Black, #202020);

  font-family: Bounded !important;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 12px;
}

.career-item__wrap span {
  color: var(--Dark-grey, #a2a2a2);
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 24px;
  display: block;
}

.career-item-row-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.career-item-row-item__image {
  border-radius: 4px;
  background: var(--Rich-Blue, #187ada);
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
}

.career-item-row-item__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.career-item-row-item__title {
  color: var(--Black, #202020);
  font-family: Bounded !important;
  font-size: 16px;
  line-height: 130%;
}

.career-item-row-item__text {
  color: var(--Dark-grey, #a2a2a2);
  font-size: 14px;
  line-height: 130%;
  /* 18.2px */
}

.career-item-row-item__image-grey {
  background-color: #e1e1d5;
}

.career-item-row-item-mb0 {
  margin-bottom: 0;
}

.career-item__btn {
  width: 200px;
}

/*! ----------------------------------------career-item end--------------------------------- */
/*! ----------------------------------------post--------------------------------- */
.post__image {
  margin-bottom: 48px;
}

.post__image img {
  width: 100%;
}

.post__categories {
  margin-top: 48px;
  display: flex;
  gap: 16px;
}

.post__title {
  margin-top: 24px;
  color: var(--Black, #202020);
  font-family: Bounded !important;
  font-size: 40px;
  line-height: 120%;
  /* 48px */
}

.post__data {
  font-size: 14px;
  margin-top: 16px;
  margin-bottom: 48px;
}

.post__short {
  color: var(--Black, #202020);
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  /* 23.4px */
}

.post__block {
  margin-top: 48px;
}

.post__block__subtitle {
  color: var(--Black, #202020);
  font-family: Bounded !important;
  font-size: 18px;
  line-height: 120%;
  /* 21.6px */
  margin-bottom: 24px;
}

.post__content {
  margin-top: 72px;
}

.post-item__wrap {
  width: fit-content;
}

.template__item-img {
  overflow: hidden;
  margin-bottom: 16px;
}

.template__item-img img {
  width: 100%;
}

/*! ----------------------------------------post end--------------------------------- */
/*! ----------------------------------------rent--------------------------------- */
.image-text__top {
  margin-bottom: 72px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 32px;
  border-top: 1px solid var(--Pale-Grey, #e1e1d5);
}

.image-text__left {
  width: 70%;
}

.image-text__text {
  margin-top: 16px;
}

.image-text__bottom {
  display: flex;
  gap: 32px;
  height: 580px;
}

.image-text__bottom img {
  flex: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-margin-small {
  margin-top: 72px;
}

.boxes-icons__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.title__small {
  color: var(--Black, #202020);
  font-family: Bounded !important;
  font-size: 24px;
  line-height: 120%;
}

.boxes-icons__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.boxes-icons__item {
  display: flex;
  padding: 24px;
  flex-direction: column;
  height: 170px;
  justify-content: space-between;
  border: 1px solid var(--Black, #202020);
  background: var(--White, #f9f9f9);
}

.boxes-icons__image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 10px;
  background-color: #187ada;
  border-radius: 50%;
}

.boxes-icons__subtitle {
  color: var(--Black, #202020);
  font-family: Bounded !important;
  font-size: 18px;
  line-height: 120%;
  /* 21.6px */
}

.downloads__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.downloads__item {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--Pale-Grey, #e1e1d5);
  border-bottom: 1px solid var(--Pale-Grey, #e1e1d5);
}

.downloads__left {
  width: 70%;
}

.downloads__text {
  margin-top: 16px;
  color: var(--Black, #202020);
  font-size: 18px;
  line-height: 130%;
}

.fleets__btns {
  margin: 72px 0 48px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.fleets__btn {
  display: flex;
  width: 100px;
  padding: 8px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.4s;
  background: var(--White, #f9f9f9);
}

.fleets__btn.active {
  background-color: #187ada;
  color: #f9f9f9;
  pointer-events: none;
}

.fleets__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.fleets__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fleets__subtitle {
  color: var(--Black, #202020);
  font-family: Bounded !important;
  font-size: 18px;
  line-height: 120%;
  /* 21.6px */
}

.tab-content-js {
  height: 0;
  overflow: hidden;
}

.fleets__image {
  height: 400px;
  object-fit: cover;
}

.image-cover__image {
  margin-top: 72px;
}

.image-cover__image img,
.image-cover__image {
  width: 100%;
  height: auto;
}

.base-grid__content {
  margin-top: 72px;
}

.base-grid__content {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.base-grid__subtitle {
  margin-top: 16px;
  color: var(--Black, #202020);
  font-family: Bounded !important;
  font-size: 18px;
  line-height: 120%;
}

.base-grid__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.faqs__wrap {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faqs__item {
  padding: 16px 0;
  border-bottom: 1px solid var(--Black, #202020);
}

.faqs__content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: all 0.3s;
  overflow: hidden;
}

.faqs__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faqs__subtitle {
  color: var(--Black, #202020);
  font-family: Bounded !important;
  font-size: 18px;
  line-height: 120%;
  /* 21.6px */
}

.faqs__plus {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faqs__plus span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #202020;
  transition: all 0.4s;
}

.faqs__plus span:first-child {
  rotate: 90deg;
}

.faqs__item.active .faqs__plus span:first-child {
  rotate: 0;
}

.faqs__item.active .faqs__content {
  grid-template-rows: 1fr;
}

.faqs__content>* {
  min-height: 0;
}

/*! ----------------------------------------rent end--------------------------------- */
.my-breadcrumbs * {
  color: #202020;
}

.elementor-widget-wrap {
  padding: 0 !important;
}

.post__add__image {
  width: 100vw;
}

.post__add__image {
  width: 100vw;
}

.elementor-section {
  width: 100%;
}

.hero-image-text__top-full {
  grid-template-columns: 1fr;
}

.form__wrap .nice-select {
  border-color: #000;
  color: #000;
}

/*! ----------------------------------------rent item--------------------------------- */
.post-params__top {
  background: var(--Pale-Grey, #e1e1d5);
  padding: 16px;
  margin-bottom: 48px;
}

.post-params__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.post-params__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--Pale-Grey, #e1e1d5);
}

.post-params__left {
  color: var(--Black, #202020);
  font-family: Bounded !important;
  font-size: 18px;
}

.post-params__right {
  text-align: right;
  color: var(--Black, #202020);
  font-size: 18px;
  line-height: 130%;
  /* 23.4px */
}

.rent-item__btn {
  width: 375px;
  margin-top: 32px;
}

.post-params__comment {
  margin-top: 40px;
  width: 50%;
}

.rent-item-gallery .swiper-slide {
  aspect-ratio: 1;
  overflow: hidden;
}

.rent-item-gallery .swiper-slide img {
  height: 100%;
  object-fit: cover;
}

.rent-item-gallery {
  margin-top: 72px;
}

.rent-item__arrows {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
}

.rent-item__arrow {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  border: 1px solid var(--Rich-Blue, #187ada);
  background: var(--Rich-Blue, #187ada);
  cursor: pointer;
  transition: all 0.5s;
}

.our-yachts__arrow-prev,
.rent-item__arrow-prev {
  rotate: 180deg;
}

.rent-item__arrow.swiper-button-disabled {
  border-radius: 30px;
  border: 1px solid var(--Rich-Blue, #187ada);
  background: var(--White, #f9f9f9);
}

.rent-item__arrow.swiper-button-disabled svg path {
  stroke: #202020;
}

.rent-item-gallery .swiper-slide:first-child {
  margin-left: calc((100vw - 1200px) / 2);
}

.our-yachts__wrap {
  margin-top: 72px;
}

.our-yachts-slide:first-child {
  margin-left: calc((100vw - 1200px) / 2);
}

/*! ----------------------------------------rent item end--------------------------------- */
/*! ----------------------------------------sale--------------------------------- */
.collections__wrap {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.collections__item {
  display: flex;
  flex-direction: column;

  padding: 16px;
  border: 1px solid var(--Pale-Grey, #e1e1d5);
  background: var(--White, #f9f9f9);
}

.collections__image {
  height: 400px;
  overflow: hidden;
}

.collections__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  transition: all 0.4s;
}

.collections__title {
  color: var(--Black, #202020);
  font-family: Bounded !important;
  font-size: 24px;
  line-height: 120%;
  /* 28.8px */
  margin: 16px 0 0;
}

.collections__text {
  color: var(--Black, #202020);
  line-height: 130%;
  /* 20.8px */
  margin-top: 12px;
}

.collections__item:hover .collections__image img {
  scale: 1.03;
}

.product-cart {
  position: relative;
}

.product-cart__image {
  aspect-ratio: 1;
  overflow: hidden;
}

.product-cart__image img {
  transition: all 0.4s;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.product-cart__title {
  color: var(--Black, #202020);
  font-family: Bounded !important;
  margin-top: 16px;
  font-size: 16px;
}

.product-cart__custom {
  margin-top: 12px;
}

.product-cart__custom ul {
  display: flex;
  gap: 12px;
  align-items: center;
}

.product-cart__custom li {
  color: var(--Black, #202020);
  font-size: 14px;
  line-height: 130%;
  /* 18.2px */
}

.product-cart__custom li:last-child {
  display: none !important;
}

.product-cart__custom-dot {
  border-radius: 10px;
  background: var(--Blue-blue, #1828da);
  display: block;
  width: 4px;
  height: 4px;
}

.product-cart__price {
  margin-top: 16px;
  color: var(--Blood-Rust, #1828da);
  font-family: Bounded !important;
  font-size: 18px;
  line-height: 120%;
  /* 21.6px */
}

.product-cart__tags {
  position: absolute;
  top: 16px;
  left: 16px;
}

.recommendation-product__wrap {
  margin-top: 72px;
}

.product-cart:hover .product-cart__image img {
  scale: 1.03;
}

.rent-itemSwiper .swiper-slide:first-child {
  margin-left: calc((100vw - 1200px) / 2);
}

/*! ----------------------------------------sale end--------------------------------- */
.woocommerce .woocommerce-topbar .woocommerce-ordering .nice-select:after {
  font-size: 12px;
  color: #ffffff;
  position: absolute;
  right: 18px;
}

.woocommerce .woocommerce-topbar .woocommerce-ordering .nice-select,
.woocommerce .woocommerce-topbar .woocommerce-ordering select {
  background-color: #187ada;
  border-radius: 30px;
  color: #f9f9f9;
  width: 130px;
  height: 37px;
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-content: center;
}

.woocommerce .woocommerce-topbar .woocommerce-ordering .nice-select ul.list {
  color: #000;
  left: auto;
}

.woocommerce .woocommerce-topbar .woocommerce-ordering {
  min-width: auto;
}

.woocommerce-result-count {
  color: var(--Black, #202020) !important;
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 130%;
  /* 23.4px */
}

.woocommerce ul.products li.product {
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
  padding: 0;
  width: 100% !important;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 0;
}

.woocommerce #primary.content-has-sidebar {
  padding: 0 0 0 34px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce .woocommerce-product-inner {
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  background-color: transparent;
}

.woocommerce .woocommerce-product-inner .woocommerce-product-header {
  aspect-ratio: 1;
  overflow: hidden;
}

.woocommerce ul.products li.product a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.woocommerce-product-holder {
  display: flex;
  flex-direction: column-reverse;
}

.woocommerce .woocommerce-product-inner .woocommerce-product-content {
  margin-top: 16px;
  text-align: left;
}

.wcsob_soldout {
  color: var(--White, #f9f9f9);
  top: 16px;
  left: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 18.2px */
  background: var(--Blue-blue, #1828da);
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.woocommerce-product-title * {
  color: var(--Black, #202020) !important;
  font-family: Bounded !important;
  font-size: 16px !important;
  line-height: 130% !important;
  /* 20.8px */
  margin-bottom: 12px !important;
}

.woocommerce ul.products li.product .price * {
  color: var(--Blood-Rust, #bb2a1c);

  font-family: Bounded !important;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 21.6px */
}

.widget-title {
  color: var(--Black, #202020);

  font-family: Bounded !important;
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 120%;
  /* 21.6px */
  margin-bottom: 0;
}

.widget-title::before {
  display: none;
}

.custom-inner {
  margin-top: 72px;
  margin-left: 0;
  margin-right: 0;
}

.custom-inner aside {
  order: -1;
}

.woocommerce #secondary .widget_price_filter .price_slider_amount .button,
.price_slider_amount input.button,
.wpfFilterButtons .wpfFilterButton {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border-radius: 30px !important;
  background: #187ada !important;
  color: #f9f9f9 !important;
  font-weight: 500 !important;
  height: 40px !important;
  padding: 0 20px !important;
  white-space: nowrap !important;
  position: relative !important;
  font-size: 16px !important;
  line-height: normal !important;
  transition: all 0.4s !important;
}

.woocommerce #secondary .widget_price_filter .price_slider_amount .button,
.price_slider_amount input.button:hover,
.wpfFilterButtons .wpfFilterButton:hover {
  color: #d7d7cb !important;
  background-color: #1845da !important;
}

.woocommerce #secondary .widget_price_filter .price_slider_amount {
  flex-wrap: wrap;
  gap: 12px 0;
}

.woocommerce .woocommerce-topbar .woocommerce-ordering .nice-select {
  width: 200px;
}

.woocommerce-pagination {
  margin-top: 48px;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers:after {
  border-radius: 30px;
  background: var(--Rich-Blue, #187ada);
}

.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 2.5;
}

.woocommerce #secondary .widget {
  margin-bottom: 22px;
}

.woocommerce #secondary .custom-filter-search.widget_product_search .search-field {
  height: 50px;
  color: #222;
  border-color: #e1e1d5 !important;
  font-size: 15px;
  border-radius: 30px;
  height: 42px;
  color: #202020 !important;
}

.woocommerce #secondary .custom-filter-search.widget_product_search button {
  padding: 0;
  width: 53px;
  height: 100%;
  border-left: 1px solid #e1e1d5 !important;
  background-color: transparent !important;
}

.term-description {
  display: none;
}

.sidebar-sticky {
  padding: 16px;
  border: 1px solid #e1e1d5 !important;
  margin-top: 26px;
}

.aside-heading__title {
  color: var(--Black, #202020);
  font-family: Bounded !important;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 21.6px */
  margin-top: 4px;
}

.wpc-custom-selected-terms {
  display: none;
}

.woocommerce #secondary.widget-has-sidebar {
  padding: 0;
}

.custom-cat-block__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
}

.custom-cat-block__title {
  color: var(--Black, #202020);

  font-family: Bounded !important;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 48px */
}

.wpfFilterWrapper .wpfFilterTaxNameWrapper {
  font-size: 18px !important;
}

.wpfFilterVerScroll {
  display: flex !important;
  flex-direction: column;
  gap: 24px;
}

.wpfFilterVerScroll::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.wpfFilterVerScroll::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
  border: 2px solid #f0f0f0;
}

.wpfFilterVerScroll {
  scrollbar-width: thin;
  scrollbar-color: #888 #f0f0f0;
}

.woocommerce #secondary .widget_price_filter .ui-slider .ui-slider-handle {
  height: 14px !important;
  width: 14px !important;
  background-color: #2367dd;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px !important;
  -ms-border-radius: 0px;
  -o-border-radius: 0px !important;
  border-color: transparent !important;
  border-radius: 50% !important;
  top: -4px !important;
}

.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 6px;
  padding: 0 !important;
}

.woocommerce #secondary .widget_price_filter .ui-slider-horizontal {
  height: 6px !important;
}

.woocommerce-product-tags {
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.woocommerce-product-tags * {
  pointer-events: none;

  color: var(--Black, #202020);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 18.2px */
}

.woocommerce ul.products li.product .price .amount {
  background-image: none;
  background-color: #1845da;
}

/* .product-template-default #pagetitle {
  display: block;
  margin-bottom: 50px;
} */
.single-product section.related ul.products {
  margin-bottom: 50px !important;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.woocommerce-sg-product-title {
  font-size: 32px;
  margin-bottom: 24px;
}

.rent-page .fleets {
  margin-top: 0;
}

input#min_price,
input#max_price {
  display: block !important;
  flex: 50%;
}

.block-gallery__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.block-gallery__image {
  padding: 12px;
  margin-bottom: 12px;
  object-fit: cover;
}

.block-gallery__subtitle {
  margin-bottom: 8px;
  color: #202020;
  font-family: Bounded !important;
  font-size: 20px;
  line-height: 120%;
}

.block-gallery__subtext {
  font-size: 16px;
}

.block-gallery {
  padding: 50px 0 100px;
}

.block-gallery__title {

  margin-bottom: 24px;
  text-align: center;
}

.block-gallery__item * {
  text-align: center;
}

/* .block-gallery__item {
  display: grid;
  grid-template-rows: 7fr 1fr 2fr;
} */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #00000046;
  display: flex;
  justify-content: center;
  align-items: center;


  z-index: -100;
  opacity: 0;
  pointer-events: none;

  transition: all 0.5s;
}

.modal.active {
  z-index: 1000;
  opacity: 1;
  pointer-events: all;
}

.modal__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;

  height: auto;
  background: #fff;
}

.modal__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.modal__form {
  padding: 32px;
  padding-top: 64px;
}

.model__image,
.model__image img {
  height: 100%;
  object-fit: cover;
}

.modal__close {
  position: absolute;
  right: 0;
  top: 0;
  align-self: flex-end;
  cursor: pointer;
}

.modal__close svg {
  padding: 8px;
  margin: 12px;
}

.fixed-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  background: #187ADA;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 100;
  cursor: pointer;
}