:root {
  --white: #fff;
  --brown1: #e1c6b4;
  --brown2: #b29786;

  --blue1: #487eae;
  --blue2: #1e3448;
  --blue3: #1b6a91;

  --gray-1: #f3f3f3;
  --colorAlert: #bf4d28;
  --transition1: all 0.3s cubic-bezier(0.21, 0.53, 0.37, 0.72);

  --radius-full: 100px;

  --bulletSpanWidth: 8px;
  --bulletSpanHeight: 8px;
  --bulletWidth: 18px;
  --bulletHeight: 18px;
  --bulletLeft: -5px;
  --bulletTop: -5px;

  --sea: #daf3fd;
  --newGray: #f3f3f3;
}

@keyframes fixedAnim {
  0% {
    top: -150px;
  }

  100% {
    top: 0px;
  }
}

body {
  font-family: 'Open Sans', sans-serif;
}

.section-title {
  font-family: 'Dosis', sans-serif;
}

body.sub-pages {
  background: #f5f5f561;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

:focus {
  outline: 0px;
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  color: rgb(17, 17, 17);
}

a {
  transition: all 0.15s linear;
}

main {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.list-unstyled {
  padding: 0;
  margin: 0;
}

.list-unstyled li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.radius-full {
  border-radius: 500px;
}

.gray-1 {
  background-color: var(--gray-1);
}

.gray-2 {
  background-color: rgb(251, 251, 251);
}

.color-blue3 {
  color: var(--blue3);
}

.colorAlert {
  color: var(--colorAlert);
}

.offcanvas > img,
.offcanvas .footer-icon {
  display: none !important;
}

.navbar-toggler {
  padding: 2px 4px;
  font-size: 32px;
  border: 0;
  color: #fff;
}

.nav-link {
  padding-inline: 0 !important;
  margin-inline: 12px;
}

:focus,
a:focus,
button:focus {
  outline: 0px !important;
  box-shadow: none !important;
}

a.nav-link::before {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0px;
  left: 0px;
  background-color: rgb(34, 34, 34);
  transform-origin: right bottom;
  transition: transform 0.25s ease-out 0s;
  z-index: 1;
}

.dropdown-toggle::after {
  border-width: 0px 0px 1px 1px;
  border-top-style: initial;
  border-top-color: initial;
  border-right-style: initial;
  border-right-color: initial;
  border-left-style: solid;
  border-left-color: rgb(255, 255, 255);
  border-bottom-style: solid;
  border-bottom-color: rgb(255, 255, 255);
  width: 7px;
  height: 7px;
  transform: rotate(-45deg);
}

.navs-containers.fixed .dropdown-toggle::after {
  /* border-bottom-color: #666; */
  /* border-left-color: #666; */
}

/**********************/
@keyframes fixedAnim {
  0% {
    top: -150px;
  }

  100% {
    top: 0px;
  }
}

header {
  position: relative;
  z-index: 9 !important;
}

.navs-containers {
  position: relative;
}

.navs-containers.fixed {
  animation-timing-function: cubic-bezier(0.78, 0.09, 0.03, 1.01);
  animation-name: fixedAnim;
  animation-duration: 1s;
  z-index: 99999;
  top: 0px;
  left: 0px;
  right: 0px;
  box-shadow: rgb(0 0 0 / 11%) 0px 5px 16px;
  background: rgb(255, 255, 255);
  position: fixed !important;
}

header.fixed {
  margin-top: 52px;
}

header.fixed .banner-container {
  margin-top: 60px;
}

.sub-pages header.fixed + main {
  padding-top: 58px;
}

/* logo and affix */

.navs-containers .logo-light {
  display: inline-flex;
}

.navs-containers .logo-dark {
  display: none !important;
}

.navs-containers.fixed .logo-light {
  /* display: none; */
}

.navs-containers.fixed .logo-dark {
  display: inline-flex;
  width: 116px;
}

.navs-containers .navbar-toggler {
  color: #fff;
}

.navs-containers.fixed .navbar-toggler {
  color: #666;
}

.country-select .country-list .country {
  color: #666;
}

.sub-pages .navs-containers.fixed .lang-container > span:first-child {
  color: #666;
}

.search-toggle {
  display: inline-flex;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

.search-toggle svg {
  width: 100%;
  height: 100%;
}

.navs-containers .search-toggle svg #Path_1,
.navs-containers .search-toggle svg #Path_2 {
  stroke: #fff;
}

.navs-containers.fixed .search-toggle svg #Path_1,
.navs-containers.fixed .search-toggle svg #Path_2 {
  stroke: #333;
}

/* underlined */

.underlined {
  position: relative;
  padding-bottom: 5px;
}

.underlined::before {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0px;
  left: 0px;
  background-color: rgb(34, 34, 34);
  transform-origin: right bottom;
  transition: transform 0.25s ease-out 0s;
  z-index: 1;
}

.underlined.white-line::before {
  background-color: #fff;
}

.navs-containers.fixed .underlined.white-line::before {
  /* background-color: var(--blue3); */
}

.underlined.blue-line::before {
  background-color: var(--blue3);
}

.active .underlined::before,
.underlined:hover::before,
.underlined.active::before {
  transform: scaleX(1);
  transform-origin: left bottom;
}

/*footer*/

.footer {
  padding-block: 50px 10px;
}

.footer hr {
  opacity: 0.1;
}

.footer h5 {
  color: var(--blue3);
  font-size: 140%;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer-icon {
  margin-block: 20px 5px;
}

.footer-icon a {
  font-size: 22px;
  color: var(--blue3);
  width: 40px;
  display: flex;
  height: 40px;
  /* background: red; */
  margin-inline: 6px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 500px;
}

.footer-icon a:hover {
  border: 2px solid var(--blue3);
}

.logo-footer {
  display: flex;
  max-width: 200px;
  transform: translate(0px, -5px);
}

.footer-desc {
  margin-top: 10px;
}

.dl-info {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  margin-top: 20px;
  border-top: 4px solid #cfcfcf;
  padding-top: 20px;
}

.trade-with {
  align-items: center;
  display: flex;
  /* margin-inline-end: 16px; */
  justify-content: flex-end;
}

.appdownload .flex {
  display: flex;
  align-items: center;
}

.appdownload .flex a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 152px;
}

.app-btn {
  width: 45%;
  max-width: 160px;
  color: rgb(255, 255, 255);
  margin: 0px;
  text-align: left;
  border-radius: 5px;
  text-decoration: none;
  font-family: 'Lucida Grande', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  padding-block: 6px;
  margin-block: 10px;
}

.section-0-1 .app-btn {
  margin-block: 12px 15px;
}

.app-btn:not(:last-child) {
  margin-inline-end: 20px;
}

.app-btn.blu {
  background-color: rgb(16, 16, 16);
  transition: all 0.1s linear 0s;
}

.app-btn.blu:hover {
  background-color: rgb(71 71 71);
  transform: translate(0px, -3px);
  color: #fff;
}

.app-btn i {
  width: 20%;
  text-align: center;
  font-size: 28px;
  margin-right: 7px;
}

.app-btn p {
  margin-bottom: 0px;
}

.app-btn .big-txt {
  font-size: 17px;
  text-transform: capitalize;
}

/*header*/

header {
  position: relative;
  height: 100vh;
}

.sub-pages header {
  position: relative;
  height: 130px;
}

@media screen and (max-width: 991px) {
  .sub-pages header {
    position: relative;
    height: unset;
  }
}

.sub-pages .lang-container {
  color: #fff;
  margin-inline-start: 15px;
}

.sub-pages .lang-container > span:first-child {
  color: #fff;
}

header {
  background-position: 50%;
  background-size: cover;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  position: relative;
  z-index: 0;
}

header:before {
  content: '';
  background: linear-gradient(45deg, #000000d9, transparent 90%);
  inset: 0;
  position: absolute;
  z-index: -1;
}

.navs-containers {
  box-shadow: 0 0 5px 0 #00000024;
  position: absolute;
  background: #1e25ac2e;
  inset-inline: 0;
  z-index: 2;
}

.banner-search {
  position: relative;
}

.banner-search a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: max-content;
  margin-inline: auto 5px;
  display: flex;
  align-items: center;
}

.banner-search input {
  padding: 11px;
  padding-inline: 30px 126px;
}

.banner-search a {
  margin-top: 5px;
  padding-inline: 15px;
}

.banner-search input,
.banner-search a {
  border-radius: var(--radius-full);
}

.banner-search a img {
  margin-inline: auto 10px;
}

.banner-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  padding-top: 40px;
}

.banner-container *:not(.banner-search input) {
  color: #fff;
  font-weight: 600;
}

.banner-video-link {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  margin-bottom: 24px;
  display: inline-flex;
}

.banner-video-link i,
.banner-video-link i:before {
  transition: All 0.2s linear;
}

.banner-video-link:hover i {
  background: #fff;
}

.banner-video-link:hover i:before {
  color: var(--blue2);
}

.banner-video-link:hover i {
  color: var(--blue2);
  box-shadow: 0 0 0px 5px #ffffff54;
}

.banner-container *:not(.banner-search) i {
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 500px;
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-inline-end: 10px;
}

.banner-container *:not(.banner-search) i:before {
  margin-inline-start: 2px;
}

.banner-title {
  font-size: 2.3rem;
  margin-bottom: 15px;
}

.banner-desc {
  font-size: 1.2rem;
  margin-bottom: 32px;
}

/* top bar */

.topbar {
  background: linear-gradient(234deg, var(--blue1) 0%, var(--blue2) 100%);
  color: #fff;
  padding-block: 5px;
  position: relative;
  top: 0;
  z-index: 1;
}

.topbar a,
.get-offer {
  color: #fff;
  padding-block: 5px;
}

.get-offer,
.topbar-title {
  font-size: 1.1rem;
}

/* buttons */
.btn-primary.active,
.btn-primary {
  background-color: var(--blue1);
  border-color: var(--blue1);
}

.btn-primary.active:hover,
.btn-primary.active:focus,
.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--blue2);
  border-color: var(--blue2);
}

/* flags */

.country-select {
  /* width: 54px; */
  margin-inline-end: 1px;
  margin-inline-start: 20px;
}

.sub-pages .country-select {
  margin-inline-start: 0px;
}

#country_selector {
  text-align: right;
}

.country-select input {
  width: 64px;
  text-transform: uppercase;
  color: #fff;
}

.country-select,
.country-select input {
  border: 0;
  background: transparent;
}

.country-select.inside .selected-flag {
  padding-inline: 0;
  margin-inline-start: 10px;
}

.country-select.inside input,
.country-select.inside input[type='text'] {
  padding-inline-start: 28px;
}

.country-select .country-list {
  width: 100px !important;
  text-transform: uppercase;
}

.country-select .selected-flag .arrow {
  display: none;
}

.navs-containers.fixed #country_selector {
  color: #666;
}

/*menu-rows*/

.menu-rows {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.menu-row-1,
.menu-row-2 {
  display: flex;
  align-items: center;
  width: 100%;
}

.navbar--2 {
  display: flex;
  /* width: 100%; */
  justify-content: center;
  flex: 1;
  gap: 32px;
}

.menu-row-all > .banner-search {
  margin-inline-end: 20px;
  margin-inline-start: 10px;
}

.menu-row-all > .banner-search form {
  padding-inline-end: 15px;
  position: relative;
}

.menu-row-all > .banner-search input {
  padding-block: 8px !important;
  padding-inline-start: 20px;
}

.menu-row-all > .banner-search a {
  margin-top: 2px !important;
  margin-inline-end: 2px;
}

/* offcanvas-body */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.offcanvas-body .nav-item > a {
  color: var(--white);
}

.menu-button {
  margin-inline-start: 40px;
}

.menu-button a {
  min-width: 134px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 8px;
  color: var(--blue1);
  font-size: 90%;
  background: #4e5154;
  font-size: 100%;
}

.res-menu-bar > *:first-child a,
.menu-row-1 .menu-button a {
  background: #ffffff;
}

.menu-button a:hover {
  background: #fff !important;
  color: #333;
}

.fixed .menu-button a:hover {
  background: #ececec !important;
}

.navbar--1 > li:not(:last-child) {
  margin-inline-end: 20px;
}

/*section*/

.section {
  padding-block: 60px 20px;
}

.section-sub {
  padding-block: 40px 20px;
}

.section-title {
  position: relative;
  color: var(--blue3);
  margin-bottom: 50px;
}

.section-title .s-title {
  font-size: 2.5rem;
  font-weight: 500;
  position: relative;
}

.section-title .transparent-title {
  font-size: calc(100vh / 4.15);
  font-weight: 600;
  position: absolute;
  left: 0;
  opacity: 0.06;
  margin-top: -118px;
  z-index: -1;
}

.under-title {
  width: 104px;
  height: auto;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin-inline: auto -20px;
}

.section-title.sub-page {
  margin-bottom: 30px;
}

.section-title.sub-page .s-title {
  font-size: 2rem;
}

.section-title.sub-page.sss4 {
  margin-bottom: 12px !important;
}

.section-title.sub-page.sss4 .s-title {
  font-size: 1.8rem;
}

/*slides-style-2*/
.swiper-slide-style-2 {
  border-radius: 15px;
  overflow: hidden;
}

.slides-style-2 {
  position: relative;
  height: 68vh;
}

.slides-style-2 img {
  position: absolute;
  object-fit: cover;
  inset: 0;
  height: 100%;
  width: 100%;
  object-position: 50%;
}

.slide-data {
  position: absolute;
  inset: 0;
  padding: 20px 20px 55px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(0deg, #0000007a, transparent);
}

.sd-2 {
  display: flex;
  justify-content: space-between;
  margin-block: 15px;
}

.sd-3 a {
  padding-inline: 15px;
  min-width: 120px;
}

.swiper-slide-style-2 .swiper-pagination {
  margin-bottom: 8px;
}

.swiper-slide-style-2 .swiper-pagination > * {
  background: aliceblue;
  opacity: 1;
  width: var(--bulletSpanWidth);
  height: var(--bulletSpanHeight);
  position: relative;
  margin-inline: 6px !important;
}

.swiper-slide-style-2 .swiper-pagination *.swiper-pagination-bullet-active:before {
  content: '';
  position: absolute;
  width: var(--bulletWidth);
  height: var(--bulletHeight);
  border-radius: 20px;
  border: 1px solid #fff;
  left: var(--bulletLeft);
  top: var(--bulletTop);
}

/* swiper-slide-style-3 */

.swiper-slide-style-3 a {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #dbdbdb;
  border-radius: 12px;
  background: #f7f7f7;
  padding: 15px;
}

.swiper-slide-style-3 a img {
  object-fit: cover;
  height: 140px;
  width: 140px;
  overflow: hidden;
  display: flex;
}

.swiper-slide-style-3 a span {
  font-weight: 500;
  font-size: 115%;
  display: flex;
  color: var(--blue3);
  margin-top: 15px;
}

.swiper-slide-style-3 {
  position: relative;
  padding-top: 40px;
  margin-top: -40px;
}

.swiper-slide-style-3 .swiper-pagination {
  font-weight: 500;
  font-size: 115%;
  display: flex;
  color: var(--blue3);
  margin-top: 15px;
  position: absolute;
  top: 0;
  right: 0;
  justify-content: flex-end;
  height: 20px;
  /* max-width: 100px; */
  margin-top: 8px;
}

.swiper-slide-style-3 .swiper-pagination > * {
  background: var(--blue3);
  opacity: 1;
  width: var(--bulletSpanWidth);
  height: var(--bulletSpanHeight);
  position: relative;
  margin-inline: 6px !important;
}

.swiper-slide-style-3 .swiper-pagination *.swiper-pagination-bullet-active:before {
  content: '';
  position: absolute;
  width: var(--bulletWidth);
  height: var(--bulletHeight);
  border-radius: 20px;
  border: 1px solid var(--blue3);
  left: var(--bulletLeft);
  top: var(--bulletTop);
}

.swiper-slide-style-3 a {
  --c: var(--blue3);
  --b: 6px;
  --g: 3px;
  padding: calc(var(--g) + var(--b));
  --_g: #0000 25%, var(--c) 0;
  background:
    conic-gradient(from 180deg at top var(--b) right var(--b), var(--_g)) var(--_i, 200%) 0 /200% var(--_i, var(--b)) no-repeat,
    conic-gradient(at bottom var(--b) left var(--b), var(--_g)) 0 var(--_i, 200%) / var(--_i, var(--b)) 200% no-repeat;
  transition:
    0.3s,
    background-position 0.3s 0.3s;
  cursor: pointer;
}

.swiper-slide-style-3 a:hover {
  --_i: 100%;
  transition:
    0.3s,
    background-size 0.3s 0.3s;
}

/*adv*/

.adv {
  border-radius: 12px;
  display: flex;
  overflow: hidden;
}

.product-teaser-container {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 30px);
  align-items: stretch;
}

.product-teaser {
  display: flex;
  position: relative;
  flex-direction: column;
  border: 1px solid #cacaca;
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
}

.pimg-cont {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.pimg-cont img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.content {
  display: flex;
  flex-direction: column;
  margin: 4px 14px 14px;
}

.content .title {
  font-size: 110%;
  color: #000;
  font-weight: 600;
  display: flex;
  margin-block: 10px 5px;
}

.content .price {
  font-weight: 600;
  color: var(--blue1);
  font-size: 110%;
}

.ribbon {
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 1;
  overflow: hidden;
  width: 95px;
  height: 95px;
  text-align: right;
  pointer-events: none;
}

.ribbon span {
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  width: 120px;
  display: block;
  background: #79a70a;
  background: linear-gradient(#c90d0d 0%, #a70a0a 100%);
  box-shadow: 0 3px 10px -5px rgb(0 0 0 / 25%);
  position: absolute;
  top: 26px;
  left: -24px;
}

.ribbon span::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid #a70a0a;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #a70a0a;
}

.ribbon span::after {
  content: '';
  position: absolute;
  right: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-right: 3px solid #a70a0a;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #a70a0a;
}

.p-infos {
  display: flex;
  flex-direction: column;
  margin-top: 6px;
}

.p-infos i {
  color: var(--blue1);
  font-size: 110%;
  width: 22px;
  margin-top: 4px;
}

.p-info {
  display: flex;
  align-items: flex-start;
  margin-block: 3px;
}

/* Like Button */

.like-btn {
  width: 34px;
  height: 34px;
  background: rgb(255 255 255 / 38%);
  border-radius: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  border: 1px solid rgb(153 153 153 / 14%);
  margin-inline: auto 12px;
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
}

.liked path {
  stroke: var(--green);
  fill: var(--green);
}

.like-btn:hover:not(.liked) {
  background: rgb(228, 228, 228);
}

.like-btn:hover:not(.liked) path {
  stroke: var(--blue);
}

.like-btn,
.like-btn:active {
  outline: 0px !important;
}

.like-btn path {
  fill: rgb(185 185 185);
  stroke: rgb(185 185 185);
}

.like-btn.liked path {
  fill: var(--blue1);
  stroke: var(--blue1);
}

@keyframes expand {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }

  90% {
    transform: scale(2.6);
    opacity: 0;
  }

  100% {
    transform: scale(0);
    opacity: 0;
  }
}

.liked::before {
  content: '';
  position: absolute;
  width: 130%;
  height: 130%;
  z-index: -1;
  border-radius: 12px;
}

.liked {
  background: rgb(241, 241, 241);
  animation-name: expand;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  border: 0px;
}

/********************/

/*view-all*/
.view-all {
  font-size: 120%;
  min-width: 140px;
}

/*swiper-slide-4-link*/
.swiper-slide-style-4 .ribbon {
  top: 0;
  left: 0;
}

.swiper-slide-style-link-con {
  position: relative;
  padding: 4px;
}

.swiper-slide-4-link {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
}

.swiper-slide-4-link:before {
  right: 4px;
  content: '';
  position: absolute;
  left: 4px;
  height: 30%;
  bottom: 4px;
  background: linear-gradient(0deg, #00000094, transparent);
  z-index: 3;
  border-radius: 10px;
  transition: all 0.3s;
}

.swiper-slide-4-link:hover:before {
  height: 70%;
}

.swiper-slide-4-link img {
  position: relative;
  display: flex;
  z-index: 1;
  height: 400px;
  width: 100%;
  object-fit: cover;
  object-position: 50%;
}

.swiper-slide-4-link .slide-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 99;
  color: #fff;
  bottom: 0;
  padding: 20px;
  width: 100%;
}

.swiper-slide-4-link .slide-content .go {
  display: flex;
  justify-content: flex-end;
  font-size: 150%;
}

.swiper-slide-4-link .slide-content > span:first-child {
  font-size: 124%;
}

.swiper-slide-4-link .slide-content .Price {
  font-weight: 600;
  font-size: 120%;
}

.swiper-slide-4-link .slide-content .Price .old-price {
  color: #b41111;
  margin-inline-start: 40px;
  font-size: 80%;
  text-decoration: line-through;
}

.swiper-slide-style-5,
.swiper-slide-style-4 {
  padding-bottom: 40px;
}

.swiper-slide-style-5 .swiper-pagination,
.swiper-slide-style-4 .swiper-pagination {
  font-weight: 500;
  font-size: 115%;
  display: flex;
  color: var(--blue3);
  bottom: 10px;
  right: 0;
  justify-content: center;
}

.swiper-slide-style-5 .swiper-pagination > *,
.swiper-slide-style-4 .swiper-pagination > * {
  background: var(--blue3);
  opacity: 1;
  width: var(--bulletSpanWidth);
  height: var(--bulletSpanHeight);
  position: relative;
  margin-inline: 6px !important;
}

.swiper-slide-style-5 .swiper-pagination *.swiper-pagination-bullet-active:before,
.swiper-slide-style-4 .swiper-pagination *.swiper-pagination-bullet-active:before {
  content: '';
  position: absolute;
  width: var(--bulletWidth);
  height: var(--bulletHeight);
  border-radius: 20px;
  border: 1px solid var(--blue3);
  left: var(--bulletLeft);
  top: var(--bulletTop);
}

/*linked-logo*/

.per-supplier {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.linked-logo {
  width: 160px;
  height: 160px;
  display: flex;
  overflow: hidden;
  border-radius: 800px;
}

.linked-logo img {
  object-fit: cover;
  object-position: 50%;
  border-radius: 500px;
  margin-inline: auto;
}

.linked-logo {
  --color: var(--blue3);
  --border: 5px;
  --offset: 15px;
  --gap: 3px;
  cursor: pointer;
  padding: calc(var(--border) + var(--gap));
  border: var(--offset) solid #0000;
  --_m: radial-gradient(50% 50%, #000 calc(100% - var(--offset)), #0000 calc(100% - var(--border)));
  -webkit-mask: var(--_m);
  mask: var(--_m);
  --_g: #0000 calc(99% - var(--border)), var(--color) calc(100% - var(--border)) 99%, #0000;
  --_s: var(--offset);
  --_r: 100% 100% at;
  background:
    radial-gradient(var(--_r) 0 0, var(--_g)) calc(100% + var(--_s)) calc(100% + var(--_s)),
    radial-gradient(var(--_r) 100% 0, var(--_g)) calc(0% - var(--_s)) calc(100% + var(--_s)),
    radial-gradient(var(--_r) 0 100%, var(--_g)) calc(100% + var(--_s)) calc(0% - var(--_s)),
    radial-gradient(var(--_r) 100% 100%, var(--_g)) calc(0% - var(--_s)) calc(0% - var(--_s));
  background-size: 50% 50%;
  background-repeat: no-repeat;
  transition: 0.4s;
}

.per-supplier:hover .linked-logo {
  --_s: 0px;
}

.verfication-link {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.verfied {
  display: flex;
  margin-inline-start: 12px;
}

.verfied i {
  background: #4f90e9;
  display: flex;
  justify-content: center;
  align-items: Center;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 500px;
  margin-inline-end: 4px;
  font-size: 12px;
}

.supplier-page {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.supplier-page > * {
  margin-bottom: 45px;
}

/* franchiser */
.swiper-slide-style-7 .swiper-slide {
  height: auto;
}

.per-franchiser {
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 12px;
  margin-top: 50px;
  position: relative;
  z-index: 0;
  height: calc(100% - 50px);
}

.per-franchiser:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 20px;
  background: var(--blue3);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  z-index: -1;
}

.img-con {
  width: 90px;
  height: 90px;
  border-radius: 600px;
  overflow: hidden;
  margin-inline: auto;
  margin-top: -65px;
  margin-bottom: 12px;
}

.img-con img {
  object-fit: cover;
  object-position: 50%;
}

.franchiser-content .f-info {
  display: flex;
  align-items: center;
  margin-block: 12px;
}

.franchiser-content .f-info > * {
  width: 50%;
  display: inline-flex;
  align-items: center;
}

.franchiser-content .f-info > *:first-child {
  color: var(--blue3);
}

.franchiser-content .f-info > *:first-child i {
  margin-inline-end: 4px;
}

.per-franchiser .more-details {
  display: flex;
  justify-content: flex-end;
}

.per-franchiser .more-details a {
  display: inline-flex;
  align-items: center;
  color: var(--blue3);
  font-weight: 600;
}

.per-franchiser .more-details a i {
  margin-inline-start: 5px;
}

/*per-franchiser style2*/

.per-franchiser.style2 {
  border: 1px solid #36648b54;
  background: #fbfbfb;
}

.per-franchiser.style2 .img-con {
  margin-inline: 15px auto;
}

.per-franchiser.style2:before {
  display: none;
}

.per-franchiser.style2 .f-info {
  flex-direction: column;
}

.per-franchiser.style2 .f-info span {
  width: 100%;
}

.per-franchiser.style2 .f-info span:first-child {
  font-weight: 500;
  font-size: 110%;
}

.fc-title {
  font-size: 120%;
  color: var(--blue3);
  font-weight: 500;
  margin-bottom: 2px;
}

/*zoom-image-inside*/

.zoom-image-inside img {
  transition: all 0.6s cubic-bezier(0.67, 0.17, 0.26, 0.78);
}

.zoom-image-inside:hover img {
  transform: scale(1.12) rotate(2.5deg);
}

/**** COMPANY DETAILS PAGE  ****/

/* banner */

.banner {
  height: 15vh;
  min-height: 90px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

/*.breadcrumb*/

.breadcrumb-container {
  background: #eaeaea;
}

.breadcrumb {
  margin-bottom: 0px;
  padding: 10px;
}

.breadcrumb ul {
  display: flex;
  margin: 0px;
  padding: 0px;
}

.breadcrumb ul li {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  position: relative;
}

.breadcrumb ul li:not(:last-child)::before,
.breadcrumb ul li:not(:last-child)::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  border-color: rgb(119 119 119);
  transform: rotate(45deg);
  inset: 0px;
  margin-inline: auto -16px;
  margin-block: 9px auto;
}

.breadcrumb ul li::before {
  border-top: 1px solid;
  border-right: 1px solid;
}

.breadcrumb ul li:not(:last-child) {
  margin-inline-end: 28px;
}

.breadcrumb ul li a {
  color: #222;
}

.breadcrumb ul li a:hover {
  color: rgb(0, 0, 0);
}

.breadcrumb ul li a.active {
  color: var(--colorAlert);
}

/* section title */

.section-sub-title {
  background: #25415a;
  padding-block: 15px;
  position: relative;
}

.section-sub-title:before {
  content: '';
  inset: 0;
  position: absolute;
  background: url(../imgs/banner-subpage.jpg);
  background-position: 50%;
  background-size: cover;
  opacity: 0.15;
}

.section-page-sub-title {
  background: #1e3549;
  padding-block: 10px;
}

.section-page-title {
  font-size: 26px;
  position: relative;
  padding-inline-start: 40px;
  /* margin-bottom: 20px; */
  color: #333;
  font-weight: 600;
  text-transform: uppercase;
}

.section-page-title::before {
  content: '';
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin-block: auto;
  height: 3px;
  width: 30px;
  margin-inline-start: -40px;
}

.section-page-title {
  color: #ebebeb;
}

.section-page-title::before {
  background: #d3d3d3;
}

/* company details */

.company-info-details {
  background-color: rgb(246, 246, 246);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ebebeb;
}

.company-info-details .title {
  font-size: 24px;
  font-weight: 600;
  padding: 12px 10px;
  text-align: center;
  background: rgb(225, 198, 180);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.company-name-logo,
.more-info {
  padding: 20px;
}

.company-name-logo > *:first-child {
  height: 130px;
  position: relative;
  width: 130px;
  margin-inline: auto;
}

.company-name-logo img {
  width: 130px;
  height: 130px;
  border-radius: 500px;
  position: relative;
  overflow: hidden;
}

.company-name-logo > * .verfied {
  position: absolute;
  top: 2px;
  margin-inline: calc(50% + 25px) auto;
}

.main-contact,
.company-info-details .more-info {
  padding-inline: 18px 8px;
  border-top: 1px solid rgb(228, 228, 228);
  padding-top: 0px;
  margin-top: 16px;
}

.company-info-details .more-info {
  padding-bottom: 10px;
}

.company-name-logo > :last-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline-start: 4px;
}

.company-name {
  font-size: 112%;
  font-weight: 600;
  margin-block: 8px;
  text-align: center;
  text-transform: uppercase;
}

.rating-cont {
  text-align: center;
}

.location {
  display: flex;
  margin-top: 14px;
}

.location > * {
  margin-inline: 10px;
}

.location > * a {
  border: 1px solid #c7c7c7;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 500;
}

.location > * a:hover {
  background: var(--blue3);
  color: #fff;
}

.location > * a i {
  font-size: 120%;
  color: var(--blue3);
  transition: All 0.2s;
}

.location > * a:hover i {
  color: #fff;
}

.rating > span i {
  color: rgb(255, 191, 0);
  font-size: 110%;
}

.social-share {
  display: flex;
}

.a2a_full_footer {
  display: none !important;
}

.a2a_full {
  padding-bottom: 15px !important;
}

.social-share > :last-child .a2a_default_style > * > * {
  transition: all 0.1s linear 0s;
  background-color: rgb(90, 90, 90) !important;
}

.social-share > :last-child .a2a_default_style > :hover > * {
  background: var(--blue3) !important;
}

.social-share > :last-child .a2a_default_style .a2a_svg {
  width: 28px;
  height: 26px;
}

.social-share > :last-child .a2a_default_style .a2a_svg svg {
  width: 26px;
}

.more-info > div {
  margin-block: 15px;
}

.more-info > div > span:first-child {
  width: 98px;
  display: inline-flex;
  align-items: center;
  color: var(--blue3);
  font-weight: 500;
}

.more-info > div > span:first-child i {
  color: rgb(68, 68, 68);
  margin-inline-end: 6px;
}

/*****************/

.box-style-1 {
  padding-inline: 18px 8px;
  border: 1px solid rgb(228, 228, 228);
  border-radius: 10px;
  background: #f6f6f6;
  padding-block: 20px 20px;
}

.title-style-2 {
  color: var(--blue3);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.box-content {
}

.box-content ul li span:first-child {
  font-weight: 600;
}

.box-content ul li {
  margin-bottom: 6px;
}

.company-map-container {
  border-radius: 10px;
  overflow: hidden;
}

.company-map-container iframe {
  height: 100%;
  width: 100% !important;
}

/* tabs-style */

.tabs-style ul.nav {
  display: flex;
  justify-content: center;
}

.tabs-style ul li button {
  min-width: 100px;
  border-radius: 500px !important;
  background: rgb(218, 218, 218);
  color: #333 !important;
  font-weight: 500;
  min-width: 160px !important;
  font-size: 120%;
}

.tabs-style ul li button.active {
  min-width: 100px;
  border-radius: 500px !important;
  background: var(--blue3) !important;
  color: #fff !important;
}

@media screen and (max-width: 767px) {
  .tabs-style ul li button {
    min-width: 150px !important;
    margin-inline: 6px !important;
  }
}

/*horizontal-scroll*/

.horizontal-scroll {
  overflow: auto;
  flex-wrap: nowrap;
}

/*per-contact*/
.blue-text {
  color: var(--blue3);
  font-weight: 600;
  /* font-size: 125%; */
}

.tab-pane {
  padding-top: 24px;
}

.per-contact {
  margin-top: 0px;
  margin-bottom: 24px;
}

.per-contact .franchiser-content {
  display: flex;
  flex-direction: column;
}

.per-contact .franchiser-content > * {
  margin-block: 15px 20px;
}

.per-contact .franchiser-content > * > * {
  display: flex;
  flex-direction: column;
}

/* gallery-image */

.gallery-image {
  display: flex;
}

.gallery-image {
  display: flex;
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  margin-block: 12px;
}

.gallery-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: all 0.65s cubic-bezier(0.7, 0.08, 0.17, 0.86);
  object-fit: cover;
  object-position: 50%;
  -webkit-backface-visibility: hidden;
}

.gallery-image:hover img {
  transform: scale(1.1);
}

.gallery-image > .videos-popup,
.gallery-image > .videos-popup > span,
.gallery-image > .videos-popup > i {
  transition: all 0.8s cubic-bezier(0.42, 0, 0.24, 0.99);
}

.gallery-image > .videos-popup {
  position: absolute;
  z-index: 1;
  inset: 0;
  color: #fff;
  width: calc(50% + 68px);
  height: 68px;
  top: calc(50% - (68px / 2));
  left: calc(50% - (68px / 2));
  background: #00000038;
  border-radius: 800px;
  display: flex;
  align-items: center;
  font-size: 24px;
}

.gallery-image > .videos-popup > i {
  font-size: 68px;
  margin-inline-end: 3%;
  opacity: 0.9;
}

.gallery-image > .videos-popup > span {
  opacity: 0;
  font-weight: 600;
}

.gallery-image:hover > .videos-popup {
  left: 12.5%;
  width: calc(100% + 68px);
  background: #00000060;
}

.gallery-image:hover > .videos-popup > span {
  opacity: 1;
}

.gallery-popup {
  position: absolute;
  font-size: 42px;
  color: #fff;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-inline: 15px auto;
  opacity: 0.9;
}

/*rating-list */
.rating-list li {
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 20px;
}

.rating-list .per-rate {
  display: flex;
  padding-bottom: 15px;
}

.rating-list .per-rate > span {
  display: flex;
  flex-direction: column;
}

.rating-list .per-rate img {
  border-radius: 500px;
  width: 70px;
  height: 70px;
  margin-inline-end: 20px;
}

.rate-name {
  font-weight: 600;
  font-size: 125%;
}

.rating-stars {
  margin-block: 5px 2px;
}

.rating-stars i {
  color: rgb(255, 191, 0);
  font-size: 22px;
}

/*company-social-links*/

.company-social-links {
  display: flex;
  flex-wrap: wrap;
}

.social-connect {
  position: relative;
  display: inline-flex;
  min-width: calc(100% / 7 - 15px);
  border: 2px solid var(--blue3);
  border-radius: 8px;
  padding: 10px 14px;
  align-items: center;
  margin-bottom: 12px;
  transition: all 0.25s cubic-bezier(0.6, 0.04, 0.35, 0.96);
}

.social-connect:before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 8px;
  border: 2px dashed var(--blue3);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.6, 0.04, 0.35, 0.96);
}

.social-connect:not(:last-child) {
  margin-inline-end: 15px;
}

.social-connect > span {
  margin-inline-start: 10px;
  font-weight: 600;
  font-size: 110%;
}

.social-connect i {
  font-size: 30px;
  color: var(--blue3);
}

.social-connect:hover {
  background: #fff;
  transform: rotate(3.5deg) scale(1.05);
  border-color: transparent;
}

.social-connect:hover:before {
  opacity: 1;
}

/*business-card*/

.business-card {
  margin-bottom: 24px;
  border: 1px solid #efefef;
  padding: 20px;
  border-radius: 10px;
  background: #ffffffd4;
}

.empl {
  position: relative;
}

.empl > *:first-child {
  text-transform: uppercase;
  font-size: 130%;
}

.company-info {
  display: flex;
  flex-direction: column;
}

.company-info img {
  border-radius: 500px;
  width: 68px;
  height: 68px;
  margin-inline: auto;
}

.company-info > span > * {
  display: block;
  text-align: center;
}

.company-info > span > *:first-child {
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 5px;
}

.business-bar {
  display: flex;
  margin-top: 10px;
  width: 60%;
}

.business-bar > span {
  height: 3px;
}

.business-bar > span:first-child {
  width: 35%;
  background: var(--blue3);
}

.business-bar > span:last-child {
  width: 65%;
  background: #75b3e9;
}

.contact-info ul li > span:first-child {
  display: flex;
}

.contact-info ul li > span:first-child > span {
  display: flex;
  flex-direction: column;
}

.contact-info {
  margin-top: 16px;
}

.contact-info ul li:not(:last-child) {
  margin-block: 8px;
}

.contact-info ul li i {
  margin-block-start: 4px;
  margin-inline-end: 8px;
  color: #8f8f8f;
}

/* accourdion */

.accordion-button:not(.collapsed) {
  background-color: var(--blue3);
  color: #fff;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* login / register */

.register {
  color: var(--colorAlert);
  font-weight: 600;
}

.login-form-container {
  margin-bottom: 40px;
}

.form-container {
  max-width: 380px;
  margin: 0px auto;
}

.half-image {
  position: relative;
  z-index: 0;
}

.half-image::before {
  content: '';
  position: absolute;
  background-image: url('../imgs/register.jpg');
  inset: 0px;
  width: 50%;
  height: 100%;
  z-index: -1;
  background-position: 50% center;
  background-size: cover;
  background-attachment: fixed;
}

.form-control:focus {
  border-color: var(--colorAlert);
  outline: 0px;
  box-shadow: none;
}

.toggle-password {
  position: absolute;
  inset: 0px;
  height: 36px;
  width: 36px;
  background-color: rgb(243, 243, 243);
  margin-inline: auto 9px;
  margin-block: auto 1px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upload-img {
  background: rgb(248, 248, 248);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 15px 5px;
}

.upload-img {
  background: rgb(248, 248, 248);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 15px 5px;
}

.image-av-con {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.image-av-con img {
  width: 120px;
  border-radius: 500px;
  height: 120px;
  margin-bottom: 15px;
}

.image-av-con input[type='file'] {
  display: none;
}

.custom-file-upload {
  position: absolute;
  inset: 0px;
  font-size: 215%;
  width: 30px;
  height: 39px;
  margin-inline: auto 3px;
  margin-block: auto 20px;
  cursor: pointer;
}

.custom-file-upload i {
  color: var(--blue1);
  transition: all 0.2s linear 0s;
  background: rgb(255, 255, 255);
  border-radius: 800px;
}

.custom-file-upload:hover i {
  color: var(--blue3);
}

.upload-img .relative {
  width: 100%;
}

.file-drop-area {
  position: relative;
  display: flex;
  width: 450px;
  max-width: 100%;
  padding: 25px 10px;
  border: 1px solid rgb(209, 209, 209);
  border-radius: 6px;
  transition: all 0.2s ease 0s;
  flex-direction: column;
  align-items: center;
}

.file-drop-area .icocn-containr {
  margin-bottom: 10px;
}

.choose-file-button {
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 8px 15px;
  margin-right: 10px;
  font-size: 12px;
  text-transform: uppercase;
}

.file-message {
  font-size: small;
  font-weight: 300;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-input {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
  border: burlywood;
}

.otp-field {
  flex-direction: row;
  column-gap: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.otp-field input {
  height: 45px;
  width: calc((100% / 4) - 20px);
  border-radius: 6px;
  outline: none;
  font-size: 1.125rem;
  text-align: center;
  border: 1px solid #ddd;
}

.otp-field input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.otp-field input::-webkit-inner-spin-button,
.otp-field input::-webkit-outer-spin-button {
  display: none;
}

.timer {
  font-weight: 500;
  color: var(--blue);
}

.timer #timer {
  font-weight: 700;
}

#time-up {
  font-weight: 600;
  color: var(--colorAlert);
}

.outlined {
  border: 2px solid;
  padding: 6px 12px;
  display: flex;
  justify-content: center;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.2s linear;
}

.outlined.blue {
  color: var(--blue);
  border-color: var(--blue);
}

.outlined.blue:hover {
  color: #fff;
  background: var(--brown2);
  border-color: var(--brown2);
}

@media only screen and (max-width: 991px) {
  .form-container {
    background: #fbfbfb;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px #0000002e;
  }

  .accounts-types {
    flex-wrap: wrap;
  }
}

/****************************************/

@media only screen and (max-width: 991px) {
  .offcanvas-header .btn-close {
    order: 99;
    margin-inline-end: 5px;
  }

  .offcanvas .offcanvas-body {
    opacity: 0;
    transform: translate(10px, 0px);
    transition: all 0.6s cubic-bezier(0.29, 0.49, 0.25, 0.97) 0.3s;
  }

  .offcanvas.show .offcanvas-body {
    opacity: 1;
    transform: translate(0px, 0px);
    transition-delay: 0.5s;
  }

  .offcanvas .lang-container {
    opacity: 0;
    transform: translate(0px, 0px);
    transition: all 0.6s cubic-bezier(0.29, 0.49, 0.25, 0.97);
    position: relative;
    z-index: 9;
  }

  .offcanvas.show .lang-container {
    transition-delay: 1s;
    opacity: 1;
    transform: translate(0px, 0px);
  }

  .offcanvas .offcanvas-header img {
    transform: translate(10px, 0px) scale(1.2);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.29, 0.49, 0.25, 0.97) 0.3s;
    max-width: 150px;
  }

  .offcanvas.show .offcanvas-header img {
    transform: translate(0px, 0px) scale(1);
    opacity: 1;
    width: 180px;
  }

  .offcanvas > img {
    transform: scale(1.5);
    opacity: 0;
    transition: all 1s cubic-bezier(0.29, 0.49, 0.25, 0.97) 0.3s;
  }

  .offcanvas.show > img {
    transform: scale(1);
    opacity: 0.05;
    transition-delay: 0.5s;
    width: calc(100% - 30px);
  }

  .offcanvas {
    background-color: rgb(245, 245, 245);
  }

  .offcanvas .nav-link {
    border-bottom: 0px;
    font-weight: 500;
    color: var(--blue1) !important;
    /* min-height: 40px; */
  }

  .offcanvas ul:first-child .nav-link::before {
    display: none;
  }

  /*.offcanvas ul:first-child .nav-link {*/
  .offcanvas ul .nav-link {
    border-inline-start: 4px solid rgb(219, 219, 219);
    margin-inline-start: 0px;
    background: rgba(255, 255, 255, 0.46);
    padding-inline-start: 10px !important;
    color: #666 !important;
    margin-inline-end: 0 !important;
  }

  .navbar--1 > li:not(:last-child) {
    margin-inline-end: 0px;
  }

  /*.offcanvas ul:first-child .nav-link:hover {*/
  .offcanvas ul .nav-link:hover {
    color: var(--blue3) !important;
    border-color: var(--blue3);
  }

  /*.offcanvas ul:first-child .nav-link.active {*/
  .offcanvas ul .nav-link.active {
    border-color: var(--colorAlert);
  }

  /*.offcanvas ul:first-child>li {*/
  .offcanvas ul > li {
    margin-bottom: 10px;
  }

  /*
    .offcanvas .language a:hover,
    .offcanvas .language a:focus {
        color: rgb(0 0 0) !important;
    }
    */
  .offcanvas .post-your-ad a:hover {
    color: rgb(255, 255, 255) !important;
  }

  .offcanvas .nav-link:focus,
  .offcanvas .nav-link:hover {
    color: var(--orange1) !important;
  }

  .offcanvas-body {
    display: flex;
    flex-direction: column-reverse;
    flex-grow: inherit;
    height: 100%;
  }

  .offcanvas-body > * {
    justify-content: start !important;
  }

  .offcanvas-body > .right-nav {
    display: flex;
    flex-direction: row;
    margin-bottom: 15px;
    margin-top: 20px;
    border-bottom: 1px solid rgb(223, 223, 223);
    padding-bottom: 20px;
    justify-content: space-between !important;
    flex-grow: revert !important;
  }

  .offcanvas-body .right-nav a {
    border-bottom: 0px;
    margin-bottom: 2px;
  }

  .offcanvas > img,
  .offcanvas .footer-icon {
    display: flex !important;
  }

  .offcanvas .footer-icon {
    margin-block: auto 4%;
    display: flex;
    order: -10 !important;
    justify-content: center !important;
  }

  .offcanvas > img {
    position: absolute;
    bottom: 0px;
    height: 260px;
    right: 15px;
    z-index: -5;
  }

  .navbar--1 {
    display: flex;
    width: 100%;
  }

  .footer-icon a:hover {
    border-color: #666;
  }

  .company-info-details {
    margin-bottom: 18px;
  }

  .horizontal-scroll {
    justify-content: flex-start !important;
    padding-bottom: 12px;
  }

  .supplier-page {
    justify-content: space-around;
  }
}

@media only screen and (min-width: 992px) {
  .home-page .navs-containers:not(.fixed) .menu-row-all .banner-search {
    visibility: hidden !important;
    opacity: 0 !important;
  }

  .home-page .navs-containers.fixed + .banner-container .banner-search {
    display: none !important;
  }

  .res-menu-bar {
    display: none;
  }

  .menu-button1 {
    order: 88;
  }

  .navs-containers.fixed .nav-link {
    /* color: #333; */
    font-size: 90% !important;
  }

  .responsive-search,
  .search-toggle {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .responsive-search,
  .search-toggle {
    display: inline-flex;
  }

  .navs-containers.sub-pages .menu-row-all .banner-search {
    display: none !important;
  }

  .search-toggle {
    margin-inline: auto 42px;
  }

  .light-white {
    display: none;
  }

  .logo-dark {
    display: inline-flex;
  }

  #country_selector {
    color: #333;
  }

  .country-select.inside .selected-flag {
    width: 56px;
  }

  .menu-rows .menu-button {
    display: none;
  }

  .res-menu-bar {
    order: 9;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between !important;
  }

  .res-menu-bar > * {
    margin-inline: 0 !important;
    width: calc(50% - 8px);
  }

  .res-menu-bar > * a {
    padding-block: 6px;
  }

  .navbar-brand {
    width: 120px;
  }

  .section-title .s-title {
    font-size: 2rem;
  }

  .section-title .transparent-title {
    font-size: calc(100vh / 7.15);
  }

  .section-title .transparent-title {
    margin-top: -60px;
  }

  .section {
    padding-block: 45px 16px;
  }

  .social-connect {
    min-width: calc(100% / 4 - 15px);
  }

  /*responsive-search*/
  .navs-containers {
    position: relative;
  }

  @keyframes searchAnim {
    0% {
      opacity: 0;
    }

    10% {
      opacity: 0;
    }

    20% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  .responsive-search:before {
    content: '';
    left: calc(-1 * ((100vw / 2) - (720px / 2)));
    right: calc(-1 * ((100vw / 2) - (720px / 2)));
    background: white;
    position: absolute;
    top: 0;
    bottom: 0;
  }

  .responsive-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: #fff;
    padding-block: 8px;
    transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
    display: none;
  }

  .responsive-search.open {
    display: block;
    animation-timing-function: cubic-bezier(0.78, 0.09, 0.03, 1.01);
    animation-name: searchAnim;
    animation-duration: 0.6s;
    animation-iteration-count: 1;
  }

  .banner-search {
    width: calc(92% - 15px);
    margin-inline: auto;
  }
}

@media only screen and (max-width: 767px) {
  .responsive-search:before {
    left: calc(-1 * ((100vw / 2) - (520px / 2)));
    right: calc(-1 * ((100vw / 2) - (520px / 2)));
  }

  .topbar {
    display: none;
  }

  .swiper-slide-style-2 {
    margin-block: 12px;
  }

  .section-title .s-title {
    font-size: 1.8rem;
  }

  .section-title .transparent-title {
    font-size: calc(100vh / 12);
  }

  .section-title .transparent-title {
    margin-top: -38px;
  }

  .half-image::before {
    width: 100%;
  }

  .section {
    padding-block: 35px 15px;
  }

  .dl-info {
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
  }

  .footer {
    padding-block: 30px 10px;
    border-top: 4px solid var(--blue1);
  }

  .about-col {
    order: -2;
  }

  .apps-links-row {
    order: -1;
  }

  .footer-icon {
  }

  .footer h5 {
    margin-top: 20px;
  }

  .rate-name {
    font-size: 115%;
  }

  .rating-list .per-rate img {
    width: 50px;
    height: 50px;
    margin-inline-end: 10px;
  }

  .social-connect {
    min-width: calc(100% / 3 - 15px);
  }
}

/* order details */

.gallery-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.gallery-main {
  width: calc(100% - 90px);
  height: 440px;
  position: relative;
}

.gallery-main img {
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  border-radius: 10px;
}

.gallery-main .swiper-button-prev,
.gallery-main .swiper-button-next {
  color: rgb(255, 255, 255);
}

.gallery-title {
  position: absolute;
  top: 2px;
  right: 15px;
  font-family: Epilogue, sans-serif;
  font-size: 50px;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
  text-shadow: rgba(0, 0, 0, 0.18) 0px 0px 10px;
  color: rgb(255, 255, 255);
}

.swiper-slide-active .gallery-title {
  animation: 0.3s ease-in 0s 1 normal both running slide-in;
}

.gallery-thumbs {
  order: -1;
  width: 80px;
  height: 300px;
}

.gallery-thumbs .swiper-slide img {
  transition: all 0.3s ease 0s;
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: 50% center;
  border-radius: 8px;
}

.gallery-thumbs .swiper-slide-active {
  opacity: 0.9;
}

.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

/*****************/
.column-info-details {
  background-color: rgb(246, 246, 246);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ebebeb;
}

.column-info-details .title {
  text-align: center;
  padding: 10px;
  font-size: 140%;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 5px;
  border-bottom: 1px solid var(--blue3);
  color: var(--blue3);
}

.column-info-details .info--1 {
  display: flex;
  align-items: center;
  padding: 15px;
}

.column-info-details .info--1 img {
  width: 64px;
  height: 64px;
  border-radius: 800px;
  margin-inline-end: 12px;
}

.column-info-details .info--1 .com-name {
  display: flex;
  font-size: 115%;
  font-weight: 600;
}

.column-info-details .info--1 .com-name .verfied {
  transform: translate(0px, 5px);
}

.column-info-details .info--2 {
  padding: 0 15px 15px 18px;
}

.column-info-details .info--3 {
  padding: 0 15px 0px;
}

.info--3-item > * {
  display: flex;
}

.info--3-item > * {
  margin-bottom: 4px;
}

.info--3-item > * i {
  color: var(--blue3);
  display: inline-flex;
  width: 22px;
  margin-top: 4px;
  justify-content: center;
  margin-inline-end: 8px;
}

.info--3-item > * > span {
  width: calc(100% - 24px);
}

.info--4-item > * {
  display: flex;
}

.info--4-item > * {
  margin-bottom: 4px;
}

.info--4-item > * span:first-child {
  color: var(--blue3);
  display: inline-flex;
  /* width: 122px; */
  /* margin-inline-end: 4px; */
  margin-inline-end: 10px;
  align-items: center;
}

.info--4-item > * span:first-child i {
  width: 22px;
}

.info--4-item > * > span:last-child {
  width: calc(100% - 124px);
}

.column-info-details .more-info {
  padding: 10px 20px;
}

.column-info-details .social-connect {
  min-width: calc(100% / 8 - 6px);
  padding: 5px 7px;
  font-size: 80%;
  margin-inline-end: 8px;
}

.column-info-details .social-connect i {
  font-size: 22px;
}

.column-info-details .social-connect:hover {
  border: 2px solid transparent;
}

.single-wide-button-container button {
  min-width: 320px;
}

/* supplier-details-main-info */

.supplier-details-main-info {
  display: flex;
  flex-wrap: wrap;
}

.supplier-details-main-info > * {
  width: 50%;
}

.supplier-details-main-info > *:first-child,
.supplier-details-main-info > *:nth-child(2) {
  width: 100%;
}

/* more-info-values */

.more-info-values {
  display: inline-flex;
  flex-wrap: wrap;
  padding: 10px;
  background-color: rgb(246, 246, 246);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ebebeb;
  margin-top: 20px;
  width: calc(50% - 12px);
}

.more-info-values:last-child {
  margin-inline-start: 18px;
}

.col-title {
  width: 100%;
  color: var(--blue1);
  font-weight: 600;
  padding-inline-start: 10px;
  margin-top: 10px;
  font-size: 144%;
}

.more-info-values > *:not(.col-title) {
  padding: 10px;
  width: calc((100% / 2) - 20px);
  background: #fff;
  margin: 10px;
  border-radius: 8px;
  border-inline-start: 4px solid var(--blue3);
  font-size: 85%;
}

.more-info-values > * .label {
  font-weight: 600;
  display: flex;
  color: var(--blue3);
  margin-bottom: 5px;
}

/* modal */
.modal-header h1 {
  color: var(--blue3);
  font-weight: 600 !important;
}

.btn-close {
  transition: all 0.15s linear;
}

.btn-close:hover {
  transform: rotate(90deg);
}

.modal-header {
  border-color: var(--blue1);
  background: #f5f5f5;
}

.custom-modal-footer {
  padding: 8px 18px 20px;
  display: flex;
  justify-content: space-between;
}

.custom-modal-footer {
  padding: 8px 18px 20px;
}

.custom-modal-footer > * {
  width: calc(50% - 10px);
}

.modal .file-drop-area {
  width: 100% !important;
}

.modal-style-2 .modal-content {
  background: #e6e6e6;
  border: 0;
  border-top: 10px solid var(--blue1);
}

.modal-style-2 .modal-header {
  border: 0;
  background: transparent;
  padding-bottom: 0;
}

.modal-style-2 .modal-body {
  padding-top: 0;
}

.dialog-icon {
  text-align: center;
  position: absolute;
  background: var(--blue1);
  top: -80px;
  left: 0;
  right: 0;
  border-radius: 500px;
  width: 90px;
  height: 90px;
  margin-inline: 25px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dialog-icon i {
  font-size: 70px;
  color: #fff;
}

.style2-body {
  margin-top: 28px;
  margin-bottom: 20px;
  font-size: 112%;
  padding-inline: 18px;
}

.modal-style-2 .custom-modal-footer {
  padding: 8px 18px 10px;
}

.custom-modal-footer.text-center {
  display: flex;
  justify-content: center;
}

/* offer details */

.details-image-container {
  overflow: hidden;
  border-radius: 10px;
  overflow: hidden;
}

.looking-for {
  background: #73b386;
  color: #fff;
  padding: 6px 15px;
  display: flex;
  justify-content: center;
  font-weight: 500;
}

.expiration {
  background: var(--colorAlert);
  color: #fff;
  padding: 6px 15px;
  display: flex;
  justify-content: center;
  font-weight: 500;
}

.end-date {
  margin-inline-start: 6px;
}

.report-row {
  display: flex;
  justify-content: flex-start;
}

.report {
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  color: var(--colorAlert);
  border-radius: 8px;
  border: 2px solid var(--colorAlert);
  margin-top: 10px;
  font-weight: 500;
  min-width: 102px;
  justify-content: center;
}

.report i {
  margin-inline-end: 6px;
}

.report:hover {
  color: #fff;
  background: var(--colorAlert);
}

/* Notification */

.single-notification {
  display: flex;
  /* margin-bottom: 15px; */
  position: relative;
}

.notifications > * {
  background: #f4f4f4;
  padding: 16px 20px;
  /* border-bottom: 1px solid #e5e5e5; */
  border-radius: 8px;
  margin-bottom: 12px;
}

.notifications > *:nth-child(even) {
  /* background: #ededed; */
}

.noti-ctnt {
  width: calc(100% - 70px);
  padding-inline-start: 15px;
  display: flex;
  flex-direction: column;
  padding-inline-end: 28px;
}

.noti-ctnt span:last-child {
  color: #888;
  font-size: 84%;
}

.single-notification img {
  width: 60px;
  height: 60px;
  border-radius: 500px;
}

.single-notification .close {
  display: flex;
  width: 22px;
  height: 22px;
  border-radius: 500px;
  position: absolute;
  background: #818181;
  align-items: center;
  justify-content: center;
  margin-inline: auto 15px;
  left: 0;
  right: 0;
  cursor: pointer;
  color: #e9e9e9;
  font-size: 88%;
  transition: all 0.15s ease-in-out;
}

.single-notification .close:hover {
  transform: rotate(90deg);
}

.single-notification.unread {
  background: #d8e1e9;
}

/* order page */

/* sidebar-block */

.cus-filter-label {
}

.sidebar-filter-con {
  background: rgb(239, 239, 239);
  border-radius: 8px;
}

.sidebar-filter-con {
  margin-bottom: 20px;
}

.col-filter {
  margin-bottom: 0px;
  padding: 15px 20px 24px;
}

.col-filter .card {
  border: 0px;
  padding: 0px;
  background: transparent;
  /* font-size: 88%; */
  margin-top: 10px;
}

.cus-filter-label {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: rgb(102, 102, 102);
  margin-bottom: 10px;
  font-size: 120%;
}

.cus-filter-label svg {
  transform: rotate(270deg);
  height: 16px;
  transition: all 0.2s linear 0s;
}

.cus-filter-label.collapsed svg {
  transform: rotate(90deg);
}

.cus-filter-label svg path {
  stroke: rgb(102, 102, 102);
}

.col-cutom-3 hr {
  border-color: rgb(179, 179, 179);
}

.linked-filters li * {
  font-size: 110%;
  color: var(--blue3);
  padding-block: 5px;
  display: flex;
}

.linked-filters li:not(:last-child) {
  border-bottom: 1px dotted #cacaca;
  padding-bottom: 5px;
}

.linked-filters a:hover,
.linked-filters a.active {
  color: var(--colorAlert);
}

.linked-filters a.active {
  font-weight: 500;
}

/* tree menu */

.tree,
.tree ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tree ul {
  margin-left: 1em;
  position: relative;
}

.tree ul ul {
  margin-left: 0.5em;
}

.tree ul:before {
  content: '';
  display: block;
  width: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-left: 1px solid;
}

.tree li {
  margin: 0;
  padding: 0 1em;
  line-height: 2em;
  color: #369;
  font-weight: 700;
  position: relative;
}

.tree > li:first-child {
  padding: 0 !important;
}

.tree ul li:before {
  content: '';
  display: block;
  width: 10px;
  height: 0;
  border-top: 1px solid;
  margin-top: -1px;
  position: absolute;
  top: 1em;
  left: 0;
}

.tree ul li:last-child:before {
  background: transparent;
  height: auto;
  top: 1em;
  bottom: 0;
}

.indicator {
  margin-inline-end: 5px;
  display: inline-flex;
  height: 28px;
  width: 28px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tree li a {
  text-decoration: none;
  color: #369;
}

.tree li button,
.tree li button:active,
.tree li button:focus {
  text-decoration: none;
  color: #369;
  border: none;
  background: transparent;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  outline: 0;
}

ul .filter {
  display: inline-flex;
  flex: 1;
  width: calc(100% - 33px);
  cursor: pointer;
}

ul li.active > .filter,
ul .filter:hover,
ul .filter:active {
  color: var(--colorAlert);
}

#tree2.checked .level-1 li.active .level-1.checked li,
#tree2.checked .level-1.checked li {
  display: block !important;
}

/******************/

.orders-page .content {
  margin: 4px 14px 14px;
}

.orders-page .pimg-cont {
  height: 180px;
}

.orders-page .p-infos {
  color: var(--blue3);
  font-weight: 500;
}

.block-content {
  padding: 15px;
  margin-bottom: 15px;
}

/***********/

/*pagination*/

.pagination li:not(:last-child) {
  margin-inline-end: 10px;
}

.pagination li span,
.pagination li a {
  border-radius: 5px !important;
}

.pagination li a {
  background: #dedede;
  color: #222;
  border: 0;
}

.pagination li a:hover,
.pagination li.active a {
  background: var(--blue3);
  color: #fff;
}

/* Looking for agent */

.available-places {
  display: flex;
  margin-block: 5px;
  background: #ebebeb;
  border-radius: 8px;
  padding-inline: 6px;
  flex-direction: column;
}

.available-places > *:first-child {
  background: #ededed;
  display: inline-flex;
  border-radius: 8px;
  padding: 1px 0px;
  margin-inline-end: 8px;
  margin-bottom: 8px;
  margin-top: 5px;
  font-weight: 500;
}

.available-places ul li {
  background: #f5f5f5;
  display: inline-flex;
  border-radius: 8px;
  padding: 1px 8px;
  margin-inline-end: 5px;
  margin-block: 0 6px;
}

.available-places ul li:last-child {
  scroll-margin-inline-end: 0;
}

/*accounts-types*/
.accounts-types-desc {
  margin-bottom: 25px;
  font-size: 120%;
  font-weight: 500;
}

.accounts-types {
  display: flex;
  justify-content: space-between;
}

.accounts-types.center {
  justify-content: center;
}

.accounts-types a {
  width: calc(50% - 6px);
  border: 2px solid var(--blue3);
  display: inline-flex;
  align-items: center;
  color: var(--blue3);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 120%;
}

.accounts-types a:hover {
  background: var(--blue3);
  border-color: var(--blue3);
  color: var(--white);
}

.accounts-types a i {
  margin-inline-end: 6px;
  font-size: 140%;
}

.accounts-types .selected {
  background: var(--blue3);
  border-color: var(--blue3);
  color: #fff;
}

/*.accounts-types a:last-child {*/
/*    background: var(--blue3)*/
/*}*/

/*.accounts-types a:first-child:hover,*/
/*.accounts-types a:last-child {*/
/*    background: var(--blue3);*/
/*    border-color: var(--blue3);*/
/*    color: #fff*/
/*}*/

/* dashboard-content */
.dashboard-content {
  position: relative;
  z-index: 0;
  padding-top: 60px;
}

.dashboard-content:before {
  z-index: -1;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(45deg, #1f364a, #477dad);
}

.dashboard-content:after {
  z-index: -1;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: url(../imgs/logo_white.svg);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  opacity: 0.1;
  background-position: 50% calc(50% - 50px);
}

.col-content-heading {
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.col-content-heading .price {
  background: var(--blue3);
  color: #fff;
  display: inline-flex;
  padding-inline: 15px;
  padding-block: 2px;
  border-radius: 8px;
  margin-inline-start: 10px;
  font-size: 90%;
}

.dashboard-row {
  position: relative;
}

.dashboard-menu {
  display: none;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  cursor: pointer;
  background: #fff;
  border-radius: 5px;
}

.dashboard-menu,
.dashboard-menu svg,
.dashboard-menu svg path {
  transition: all 0.15s linear;
}

.dashboard-menu svg {
  width: 40px;
  height: 40px;
  padding: 5px;
}

.dashboard-menu:hover {
  background: #31343c;
}

.dashboard-menu:hover svg path {
  stroke: #fff !important;
}

/*nav-tabs*/

.side-admin-menu {
  background: #fff;
  border: 1px solid #f3f3f3;
  padding: 20px 0;
  border-radius: 8px;
  height: 100%;
}

.side-admin-menu hr {
  margin-block: 5px !important;
  opacity: 0.075;
}

.side-admin-menu ul {
  margin: 0;
  padding: 0;
  margin-block: 10px;
}

.side-admin-menu ul:last-child {
  margin-bottom: 0;
}

.side-admin-menu ul li {
  list-style-type: none;
}

.sam-1 {
  margin-bottom: 20px;
}

.sam-1 .profile-image {
  display: flex;
  width: 100px;
  height: 100px;
  border-radius: 800px;
  overflow: hidden;
  position: relative;
  margin-inline: auto;
  border: 3px solid #eaeaea;
}

.sam-1 .profile-image img {
  object-fit: cover;
  object-position: 50%;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sam-1 .profile-user {
  display: flex;
  justify-content: center;
  margin-top: 4px;
  font-weight: 500;
  color: var(--blue1) !important;
  padding-inline: 6px;
  font-size: 105%;
  text-transform: uppercase;
}

.sam-1 .profile-user:hover {
  color: #222;
}

.sam-2 a {
  display: flex;
  padding-block: 8px;
  padding-inline: 15px;
  color: #333;
}

.sam-2 ul:last-child li:not(:last-child) a {
  border-bottom: 1px dotted #e5e5e5;
}

.sam-2 a:hover,
.sam-2 a:focus {
  background: #efefef;
}

.sam-2 a.active {
  background: var(--blue2);
  color: #fff;
}

.sam-2 a i {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 8px;
}

.tab-content {
  padding-top: 40px;
}

.tabs-container {
  background: #fff;
  padding: 20px;
  border: 1px solid #f3f3f3;
  border-radius: 8px;
  min-height: 100%;
}

.nav-tabs {
  border-bottom: 0;
}

.tabs-container .nav-tabs {
  margin-bottom: -25px;
  position: relative;
  z-index: 2;
}

.tabs-container .nav-tabs li > * {
  font-size: 100%;
}

/*single-statistics*/

.single-statistics {
  display: flex;
  padding: 10px 0;
  align-items: center;
  background: #f5f5f5;
  border-radius: 10px;
  margin-bottom: 20px;
}

.single-statistics .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
}

.single-statistics .icon i {
  width: 50px;
  height: 50px;
  border-radius: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-statistics .icon span {
  font-size: 22px;
  font-weight: 600;
}

.single-statistics .ss-info {
  display: flex;
  flex-direction: column;
}

.single-statistics .ss-info > span {
  font-size: 18px;
}

.single-statistics .ss-info > span:first-child {
  font-size: 24px;
  font-family: fantasy;
  color: #555;
  letter-spacing: 1px;
}

.statistics-row > div:nth-child(3n + 1) .single-statistics .icon i {
  background: var(--colorAlert);
  color: #fff;
}

.statistics-row > div:nth-child(3n + 2) .single-statistics .icon i {
  background: var(--blue1);
  color: #fff;
}

.statistics-row > div:nth-child(3n + 3) .single-statistics .icon i {
  background: var(--blue2);
  color: #fff;
}

.white-style .dropdown-toggle::after {
  display: none;
}

.white-style .dropdown-menu {
  font-size: 82%;
  min-width: 100px;
}

.white-style .btn,
.white-style .btn:hover,
.white-style .btn:focus {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  color: #111 !important;
}

/* contact us */

.contact-us-form,
.infos-container {
  width: Calc(100% - 60px);
}

.single-ingo {
  display: flex;
  margin-bottom: 28px;
  align-items: center;
}

.single-ingo .icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue2);
  color: rgb(255, 255, 255);
  font-size: 30px;
  border-radius: 5px;
}

.single-ingo > :last-child {
  width: calc(100% - 50px);
  padding-inline-start: 10px;
}

.multiple-value > * {
  display: flex;
}

.contact-intro {
  margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .more-info-values:last-child {
    margin-inline-start: 0px;
  }

  .more-info-values {
    display: flex;
    width: 100%;
  }

  /* dashboard menu */
  .dashboard-row {
    overflow: hidden;
  }

  .dashboard-menu {
    display: inline-flex;
  }

  .dashboard-col-menu {
    transition: all 0.45s cubic-bezier(0.62, 0.03, 0.31, 0.93);
    position: absolute;
    transform: translate(-400px, 60px);
    position: absolute;
    z-index: 99;
    width: 300px;
    height: calc(100% - 61px);
  }

  .dashboard-col-menu > * {
    box-shadow: 6px 0px 32px #0000004d;
  }

  .dashboard-col-menu.open {
    transform: translate(0px, 60px);
  }

  .dashboard-col-content {
    width: 100% !important;
    margin-inline-start: 0;
  }
}

.latest-ads {
  background: rgb(237, 237, 237);
  border-radius: 8px;
  overflow: hidden;
  margin-block: 15px;
  position: relative;
}

.tab-content .latest-ads {
  margin-block: 0 30px;
  background: #f5f5f5;
}

.vip-ad.latest-ads {
  display: flex;
  flex-direction: row;
}

.vip-ad.latest-ads .latest-price {
  justify-content: flex-start;
}

.vip-ad.latest-ads .latest-price > :first-child {
  margin-inline-end: 15px;
  font-weight: 600;
}

.vip-ad.latest-ads .product-content {
  width: calc(100% - 220px);
  margin-inline: auto 0px;
  background: transparent;
  min-height: 168px;
  position: relative;
}

.vip-ad.latest-ads .product-content .info a {
  color: var(--blue3);
  font-weight: 600;
  font-size: 110%;
}

.vip-ad.latest-ads img {
  object-fit: cover;
  object-position: 50% center;
  height: 100%;
  width: 220px;
  position: absolute;
}

.latest-ads .overlay {
  position: absolute;
  background: rgba(52, 52, 52, 0.85);
  inset: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s cubic-bezier(0.6, 0.04, 0.35, 0.98) 0s;
  opacity: 0;
  z-index: 3;
}

.latest-ads:hover .overlay {
  opacity: 1;
  z-index: 3;
}

.section6 .latest-ads {
  background: rgb(251, 251, 251);
}

.latest-ads .overlay > div {
  display: flex;
}

.latest-ads .overlay > div > * {
  display: inline-flex;
  min-width: 100px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.latest-ads .overlay > div > * i {
  margin-inline-end: 8px;
}

.latest-ads .overlay * {
  color: rgb(255, 255, 255);
}

.latest-ads .overlay a {
  background: rgb(255, 255, 255);
  color: var(--colorAlert);
  font-weight: 500;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.latest-ads .overlay a:hover {
  background: var(--colorAlert);
  color: rgb(255, 255, 255);
}

.latest-ads .product-content {
  color: rgb(17, 17, 17);
  padding: 20px;
}

.latest-ads .product-content a {
  color: rgb(17, 17, 17);
}

.latest-ads .p-owner a::before,
.latest-ads .more-details::before {
  background: rgb(17, 17, 17);
}

.latest-ads .latest-price {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 110%;
}

.latest-ads .latest-price > * {
  font-weight: 500;
}

.latest-ads .latest-price > :first-child {
  color: var(--colorAlert);
}

.latest-ads .latest-price > :last-child {
  text-decoration: line-through;
  color: rgb(171 171 171);
}

.ptools {
  margin-top: 10px;
}

.ptools > * {
  display: flex;
  flex-direction: column;
}

.ptools > * i {
  color: var(--blue3);
}

@media screen and (max-width: 767px) {
  .supplier-details-main-info > * {
    width: 100%;
  }

  .vip-ad.latest-ads img {
    width: 170px;
  }

  .vip-ad.latest-ads .product-content {
    width: calc(100% - 170px);
  }

  .latest-ads .product-content {
    color: rgb(17, 17, 17);
    padding: 12px;
  }

  .latest-ads .latest-price {
    font-size: 95%;
  }

  .info--3-itemns-2 {
    padding-inline: 15px;
  }

  .footer-social {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media only screen and (max-width: 571px) {
  .vip-ad.latest-ads img {
    position: relative;
  }

  .vip-ad.latest-ads {
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
  }

  .vip-ad.latest-ads .product-content,
  .vip-ad.latest-ads img {
    width: 100%;
  }
}

/*subscriptions*/
.subscriptions li {
  margin-bottom: 10px;
}

.link-with-icon {
  font-weight: 600;
  margin-inline-start: 6px;
}

.link-with-icon i {
  color: var(--blue3);
  font-size: 120%;
}

/* checkboxes */

.form-check {
  display: flex;
  align-items: center;
  font-size: 85%;
  font-weight: 500;
  margin-bottom: 12px;
}

.form-check-input {
  width: 20px;
  height: 20px;
  margin-inline-end: 6px;
  margin-top: 0;
}

.form-check-input:checked {
  background-color: var(--blue2);
  border-color: var(--blue2);
}

.cus-filter-label {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 100%;
  padding-bottom: 6px;
  border-bottom: 1px solid #dadada;
}

.custom-scrollable {
  max-height: 210px;
}

.mCSB_dragger {
  background-color: transparent !important;
}

.mCSB_inside > .mCSB_container {
  margin-right: 0px;
  margin-inline-end: 10px;
}

.mCSB_scrollTools {
  width: 4px;
}

.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent !important;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.3) !important;
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 1) !important;
}

/*freflect*/
.freflect {
  padding: 10px;
}

.freflect i {
  color: #7e7e7e;
}

.freflect label {
  font-weight: 600;
  color: var(--blue1);
  font-size: 110%;
  margin-bottom: 2px;
}

.per-freflect {
  background: #f7f7f7;
  padding: 15px;
  padding-inline-end: 25px;
  margin-bottom: 20px;
  border-radius: 12px;
}

.per-freflect .dropdown {
  position: absolute;
  top: 15px;
  right: 0;
  left: 0;
  width: 30px;
  margin-inline: auto 5px;
}

.per-freflect .dropdown button {
  background: transparent;
  color: #5e5e5e;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  font-size: 120%;
}

.per-freflect .dropdown button:after {
  border: none;
}

.dropdown-menu {
  border: 0;
}

/* extra */

.links-modal > * {
  width: calc(100% / 3 - 15px);
}

/*new-services*/

.new-services a {
  background: #fff;
  border-bottom: 5px solid var(--blue1);
}

.new-services a:hover {
  background: #fff;
  border-bottom: 5px solid #6c6c6c;
}

.new-services .content .title {
  text-align: center;
  margin-bottom: 5px;
}

.new-services .content .price {
  color: var(--blue1);
  font-weight: 600;
  font-size: 110%;
}

.first-item-col-2 {
  margin-top: 50px !important;
}

.nsb-2 > * {
}

.nsb-2 > * > *:first-child {
  color: var(--blue1);
  width: unset;
  margin-inline-end: 10px;
}

.pis-2 {
  padding-inline-start: 30px;
}

/*new-product-style*/

.new-product-style {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  border: 1px solid #f1f1f1;
  border-inline-start: 5px solid var(--blue1);
  border-radius: 10px;
  padding: 12px;
  background: #fff;
  height: calc(100% - 20px);
}

.new-product-style:hover {
  border-inline-start-color: #b5b5b5;
  background: #f2f5f7;
  /* height: 100%; */
}

.new-product-style > .title {
  color: var(--blue1);
  display: flex;
  font-size: 116%;
  font-weight: 600;
  margin-bottom: 10px;
}

.new-product-style .cats {
  display: flex;
  flex-direction: column;
}

.new-product-style .cats > *:last-child {
  padding-inline-start: 20px;
}

.cats title {
  display: flex;
}

.no-data {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.no-data i {
  color: var(--blue1);
  font-size: 100px;
}

.no-data span {
  font-size: 30px;
}

.view-details-2 {
  font-size: 94%;
  margin-inline-start: 30px;
  font-weight: 600;
  color: var(--blue1);
  border: 2px solid var(--blue1);
  border-radius: 5px;
  padding: 1px 5px;
}

.view-details-2:hover {
  background: var(--blue1);
  color: #fff;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.plus-images {
  position: absolute;
  bottom: 0;
  inset-inline: auto 0;
  padding: 16px;
  background-color: #124069d9;
  border-start-start-radius: 30px;
  color: white;
  font-size: 130%;
  font-weight: 600;
}

/*exh-banner*/
.exh-banner {
  height: 40vh;
}

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

.object-fit-center {
  object-position: center;
}

.column-info-details.info--1.ex {
  align-items: unset;
  flex-wrap: wrap;
  display: flex;
  align-content: flex-start;
}

.column-info-details.info--1.ex .swiper-slide > *,
.column-info-details.info--1.ex > * {
  width: 50%;
  margin-bottom: 14px;
}

.column-info-details.info--1.ex > .swiper {
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 10px;
}

.column-info-details.info--1.ex > .swiper .swiper-pagination {
  bottom: 0px;
}

.column-info-details.info--1.ex > *.ex-title {
  width: 100%;
}

.column-info-details.info--1.ex > * b {
  color: var(--blue3);
}

.modal-body iframe {
  width: 100% !important;
}

.p-avatar {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 120%;
  color: var(--blue3);
  background: #eaeaea;
  padding: 8px;
  border-radius: 10px;
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 500px;
  margin-inline-end: 12px;
  border: 5px solid #fff;
  box-shadow: 0 0 7px 0px #00000030;
}

.avatar img {
  width: 100% !important;
  height: 100% !important;
}

.parent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 18px;
}

.div1 {
  grid-column: span 2 / span 2;
  grid-row: span 3 / span 3;
}

.div2 {
  grid-row: span 4 / span 4;
  grid-column-start: 1;
  grid-row-start: 4;
}

.div3 {
  grid-row: span 4 / span 4;
  grid-column-start: 2;
  grid-row-start: 4;
}

.div4 {
  grid-column: span 2 / span 2;
  grid-row: span 3 / span 3;
  grid-column-start: 3;
  grid-row-start: 5;
}

.div5 {
  grid-row: span 4 / span 4;
  grid-column-start: 3;
  grid-row-start: 1;
}

.div6 {
  grid-row: span 4 / span 4;
  grid-column-start: 4;
  grid-row-start: 1;
}

.parent > * {
  background: #ececec;
  min-height: 160px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.parent > * a {
  height: 100%;
  display: flex;
  margin-block: 0;
  /* position: absolute; */
}

.parent > * a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.parent > *:hover img {
  opacity: 0.7;
}

.parent > * img {
  transition: all 0.4s;
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
}

.section-title.ex {
  margin-bottom: 32px;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.h-100 {
  height: 100%;
}

.ex .f-info i {
  margin-inline-end: 5px;
  color: var(--blue1);
}

.ex-reg {
  padding: 26px 15px;
  display: flex;
  border-radius: 10px;
  color: #fff;
  align-items: center;
  font-size: 20px;
  border: 2px solid;
}

.ex-reg i {
  font-size: 36px;
  width: 35px;
}

.ex-reg span {
  width: calc(100% - 70px);
  display: flex;
  justify-content: center;
}

.reg1 {
  background: var(--blue1);
  border-color: var(--blue1);
}

.reg2 {
  background: var(--blue2);
  border-color: var(--blue2);
}

.reg1:hover {
  color: var(--blue1);
  background: transparent;
}

.reg2:hover {
  color: var(--blue2);
  background: transparent;
}

.video video {
  width: 100%;
}

.video-container {
  position: relative;
  display: inline-block;
  /* margin: 10px; */
  width: 100%;
  height: 225px;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('cover1.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.play-icon::after {
  content: 'Ã¢â€“Â¶';
  font-size: 30px;
  color: white;
  transform: translate(2px, 0px);
}

video:playing ~ .video-cover,
video:playing ~ .play-icon {
  display: none;
}

video:paused ~ .video-cover,
video:paused ~ .play-icon,
video:ended ~ .video-cover,
video:ended ~ .play-icon {
  display: block;
}

.q-val-cont {
  display: flex;
  flex-wrap: wrap;
}

.q-val {
  width: 50%;
  margin-bottom: 15px;
}

.q-val .s-title {
  font-weight: 600;
  color: var(--blue1);
}

.w-100 {
  width: 100%;
}

.s-val a {
  color: var(--blue1);
}

.b-title {
  color: var(--blue2);
  font-size: 24px;
  padding: 15px 15px 2px 15px;
  font-weight: 500;
}

.multi-links {
  display: flex;
  gap: 15px;
}

.multi-links a {
  display: inline-flex;
  font-weight: 500;
  align-items: center;
}

.extp {
  display: flex;
  align-content: flex-start;
}

.video-container {
  display: flex;
  gap: 20px;
}

.video-item {
  position: relative;
  width: 300px;
  cursor: pointer;
}

.cover-image {
  width: 100%;
  height: auto;
  display: block;
}

.video-player {
  width: 100%;
  display: none;
}

.controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.play-pause-icon {
  display: block;
}

.q-val-25 .q-val-cont {
  width: 100%;
}

.q-val-25 .q-val-cont .q-val {
  width: calc(100% / 4);
}

@media only screen and (max-width: 991px) {
  .q-val-25 .q-val-cont .q-val {
    width: calc(100% / 3);
  }

  .video-container {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .q-val {
    width: 100%;
  }

  .q-val-25 .q-val-cont .q-val {
    width: calc(100% / 2);
  }

  .parent {
    display: flex;
    flex-direction: column;
  }

  .parent > * {
    grid-row: unset;
    grid-column-start: unset;
    grid-row-start: unset;
    min-height: 200px;
  }

  .parent > * a {
    position: absolute;
  }
}

@media only screen and (max-width: 574px) {
  .q-val-25 .q-val-cont .q-val {
    width: calc(100% / 1);
  }
}

.nav-link {
  font-size: 90% !important;
}

/* */
.container-aside > * {
  padding-inline-start: calc((100vw / 2) - (var(--CusContainer) / 2)) !important;
}

@media only screen and (max-width: 7800px) {
  :root {
    --CusContainer: 1320px;
  }

  .container {
    max-width: 1320px;
  }
}

@media only screen and (max-width: 1400px) {
  :root {
    --CusContainer: 1140px;
  }

  .container {
    max-width: 1140px;
  }
}

@media only screen and (max-width: 1200px) {
  :root {
    --CusContainer: 1140px;
  }
}

@media only screen and (max-width: 992px) {
  :root {
    --CusContainer: 960px;
  }
}

@media only screen and (max-width: 768px) {
  /* :root {
    --CusContainer: 720px;
  } */

  .container-aside > * {
    padding-inline-start: 15px !important;
  }
}

@media only screen and (max-width: 576px) {
  /* :root {
    --CusContainer: 540px;
  } */

  .container-aside > * {
    padding-inline-start: 15px !important;
  }
}

@media only screen and (max-width: 539px) {
  /* :root {
    --CusContainer: 100%;
  } */

  .container-aside > * {
    padding-inline-start: 15px !important;
  }
}

.has-before-color > div {
  position: relative;
  z-index: 5;
}

.has-before-color::before {
  content: '';
  inset: 0px;
  z-index: 0;
  position: absolute;
  opacity: 0.6;
  background: var(--blue1) !important;
}

.fixed.has-before-color::before {
  opacity: 1;
}

.dropdown-mega .dropdown-menu {
  width: 100%;
  border-radius: 0px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--blue1);
  transform: scale(0.75);
}

@media only screen and (min-width: 768px) {
  .navbar-expand-lg {
    position: unset !important;
  }
}

.navbar-brand {
  width: 160px;
}

.banner-container::before {
  content: '';
  position: absolute;
  inset: 0px;
  background: rgba(73, 73, 73, 0.54);
  z-index: 0;
}

.banner-container > * {
  position: relative;
  z-index: 1;
}

.bannercontent-container {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
}

.newItemCard {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-radius: 12px;
  height: 100%;
}

.newItemCard .nic-title {
  font-weight: 600;
  font-size: 95%;
  margin-top: 8px;
}

.newItemCard .nic-price {
  color: var(--blue1);
  font-weight: 600;
  margin-block: 8px 6px;
}

.newItemCard .nic-vertified > span {
  color: var(--blue1);
  font-weight: 600;
}

.nic-vertified {
  margin-block: auto 0;
  font-size: 74%;
}

.newBgColor1 {
  background-color: var(--sea);
}

.newBgColor2 {
  background-color: var(--newGray);
}

.section-title .s-title > span {
  color: #444;
}

.blue-title {
  color: #444;
}

.blue-title > span {
  color: var(--blue1) !important;
}

.view-all-container {
  margin-top: 35px;
}

.view-all-container > a {
  color: #bee0ff;
  font-size: 115%;
  font-weight: 600;
}

.newBgImage {
  background-image: var(--blue1);
  background-size: cover;
  background-position: 50%;
  position: relative;
  z-index: 0;
}

.newBgImage .blue-title {
  color: #fff;
}

.newBgImage:before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(39 39 39 / 54%);
  z-index: -1;
}

.bgImg-1 {
  background-image: url(../imgs/bg6.jpg);
}

.menu-row-1 {
  margin-block: 13px 22px;
}

.qqqq h5 {
  font-size: 110%;
  color: var(--blue1);
  margin-bottom: 15px;
}

.qqqq {
  font-size: 90%;
}

.blue-text {
  color: var(--blue1);
}

.object-fit {
  height: 60px;
  width: 60px;
  border-radius: 500px;
  overflow: hidden;
}

.object-fit img {
  object-fit: cover;
  inset: 0;
  height: 100%;
  width: 100%;
  object-position: 50%;
}

.newCard1 {
  background-color: #fff;
  border-radius: 15px;
  padding: 25px;
}

.newCard1:first-child {
  margin-bottom: 30px;
}

.borderSep1 {
  border-bottom: 1px solid #e6e6e6;
}

.newCard1-row-1 {
}

.iconed {
  font-size: 95%;
}

.swiper.cards1 {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.type {
  border-radius: 22px;
  background-color: var(--blue1);
  color: #fff;
  padding: 10px 25px;
  margin-inline: auto 0;
}

.smallText {
  font-size: 90%;
}

.catLink {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  position: relative;
  height: 300px;
}

.catLink img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  color: #701c85;
}

.catLink:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(#ffffff1c, #ffffff3d);
}

.catLink > span {
  position: absolute;
  z-index: 1;
  top: 10px;
  inset-inline: 15px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.catLink:hover > span {
  top: 30px;
}

.half-gray {
  position: relative;
}

.half-gray:before {
  content: '';
  position: absolute;
  height: 35%;
  inset-inline: 0;
  bottom: 0;
  background: #f3f3f3;
}

.sub-page-padd-top {
  padding-top: 128px;
}

.sub-page header {
  height: unset;
}

.details-col h1 {
  font-size: 150%;
}

.company-owner button {
  border-radius: 500px;
  background-color: var(--sea);
  border: 1px solid var(--blue1);
  font-size: 90%;
  padding: 5px 13px;
  line-height: unset;
}

.lineared {
  background: linear-gradient(360deg, transparent 60%, var(--sea));
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #1111111c;
  font-size: 88%;
}

.outlined-btn {
  border: 1px solid var(--blue1);
  display: inline-flex;
  border-radius: 100px;
  padding: 4px 12px;
  background-color: var(--sea);
}

.outlined-btn:hover,
.outlined-btn:focus {
  border: 1px solid var(--sea);
  background-color: var(--blue1);
  color: #fff;
}

.btn-filled-new {
  border: 1px solid var(--blue1);
  display: inline-flex;
  border-radius: 100px;
  padding: 5px 12px;
  color: #fff;
  background-color: var(--blue1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-filled-new:hover,
.btn-filled-new:focus {
  border: 1px solid var(--sea);
  background-color: var(--sea);
}

.btn-filled-new i {
  margin-inline-end: 5px;
}

.small-font-1 {
  font-size: 70%;
}

.small-font-2 {
  font-size: 80%;
}

.small-font-3 {
  font-size: 90%;
}

/*********** navCont *******/

.navCont {
  position: absolute;
  top: calc(50% - 20px);
  inset-inline: -30px;
  z-index: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}

.navCont > * {
  width: 40px;
  height: 40px;
  border-radius: 500px;
  border: 2px solid var(--blue1);
  position: relative;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--blue1);
}

.two-levels .swiper-slide a:first-child {
  margin-bottom: 24px;
}

/* tabs-new-style */

.tabs-new-style .nav-link {
  border: 0;
  box-shadow: none;
  border-bottom: 4px solid #e2e2e2;
  flex: 1;
  padding-inline: 0 !important;
  margin-inline: 0;
  color: #333;
  font-size: 114% !important;
}

.tabs-new-style .nav-link.active {
  border-color: var(--blue1);
  color: var(--blue1);
}

.tabs-new-style > * {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.tabs-new-style.tab-content {
  padding-top: 10px !important;
}

.miniLinks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.miniLinks > * {
  border: 1px solid #cacaca;
  padding: 10px 20px;
  flex: 1;
  min-width: 22%;
  display: flex;
  justify-content: center;
}

.miniLinks > *:hover {
  border-color: var(--blue1);
  color: var(--blue1);
  background: #daf3fd45;
}

.expandable-container {
  max-width: 490px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.expandable-content-container {
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-radius: 15px;
  border: 1px solid #dadada;
}

.expandable-container button {
  display: inline-flex;
  width: 120px;
  margin-inline: auto 20px;
  justify-content: center;
  margin-top: -16px;
  font-size: 90%;
}

.collapsed {
  /* max-height: 277px; */
}

.expanded {
  max-height: 1000px;
}

.ecc {
  display: flex;
}

.ecc > * {
  padding: 10px 20px;
  min-width: 154px;
  border: 1px solid #ececec;
}

.ecc > *:first-child {
  background-color: var(--blue3);
  color: #fff;
  transform: translate(-1px, 0px);
  width: 200px;
}

.ecc > *:last-child {
  flex: 2;
}

.btn.more,
.btn.more:hover,
.btn.more:focus {
  border: 1px solid #cacaca;
  background-color: #fff;
  color: var(--blue1);
}

footer {
  position: relative;
}

.footer-bg,
.footer-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.footer-bg {
  overflow: hidden;
}

.footer-bg img {
  object-fit: cover;
  object-position: 50%;
  position: absolute;
  inset: 0;
}

.footer-bg:before {
  content: '';
  background: #00000096;
  position: absolute;
  inset: 0;
  z-index: 1;
}

footer .container {
  position: relative;
  z-index: 2;
}

footer .container,
footer .container .footer-link a {
  color: #fff;
}

.blue3-link {
  color: var(--blue3);
}

footer .underlined::before {
  background-color: #fff;
}

.keywords {
  gap: 10px;
  margin-bottom: 10px;
}

.keywords span {
  min-width: unset !important;
  padding: 6px 14px;
  flex: unset;
  border-radius: 500px;
  font-size: 80%;
}

.infos2-container {
  display: flex;
}

.infos2-container .row > * {
  margin-bottom: 24px;
}

.infos2 {
  background: var(--sea);
  padding: 15px;

  border-radius: 10px;
  height: 100%;
}

.infos2 h2,
.infos2 .i-title {
  font-size: 120%;
  font-weight: 700;
}

.infos2 .i-title {
  font-size: 105%;
  color: #11556c;
}

.infos2.bg2 {
  background-color: #ffffffe3;
}

.has-img-bg {
  background-size: cover;
  background-position: 50%;
  color: #fff;
  padding-top: 100px;
  position: relative;
}

.img-profile {
  width: 140px;
  height: 140px;
  border-radius: 200px;
  overflow: hidden;
  margin-bottom: 15px;
}

.img-profile img {
  object-fit: cover;
  object-position: 50%;
  width: 100%;
  height: 100%;
}

.height-min {
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.has-img-bg::before {
  content: '';
  inset: 0;
  position: absolute;
  background-color: rgb(108 108 108 / 67%);
}

.profile-info-2 > div:first-child {
  font-size: 124%;
}

.profile-info-2 > div:last-child {
  margin-top: 10px;
}

.bg-title {
  color: #fff;
  background: url(../imgsv02/title.jpg);
  padding: 16px 18px;
  border-radius: 15px 15px 0 0;
  background-position: 50% 60%;
  background-size: cover;
  font-size: 120%;
}

.bg-title span {
  color: #7cc5e9;
  margin-inline-start: 10px;
}

.pdf {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  border: 1px solid #d2dce5;
  padding: 15px;
  border-radius: 10px;
  background: #ffffffcc;
}

.pdf i {
  margin-inline-end: 10px;
  font-size: 200%;
  color: var(--blue2);
}

.pdf:hover {
  background: var(--blue3);
}

.pdf:hover,
.pdf:hover i {
  color: #fff;
}

.rounded .swiper-slide a {
  border-radius: 1000px;
  overflow: hidden;
  display: flex;
}

.rounded .swiper-slide a img {
  width: 100%;
  height: 100%;
}

.rounded .swiper-slide > div {
  text-align: center;
}

.rounded .swiper-pagination {
  bottom: 0;
}

.profile-style-1 {
  padding-bottom: 40px;
}

.profile-style-1 .swiper-pagination-bullet-active {
  background: var(--blue1) !important;
}

.perBranch {
  background-color: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
  /* padding: 24px; */
}

.pb-row {
  display: flex;
  justify-content: space-between;
  padding-block: 4px;
}

.perBranch {
  padding-block: 20px;
  background-color: #f1f9fd;
}

.perBranch > div {
  padding: 10px 20px;
  font-size: 90%;
}

.perBranch > div > *:first-child {
  color: var(--blue3);
  font-weight: 600;
}

.perBranch > div:nth-child(odd) {
  background-color: #f7fdff;
}

.perBranch > div:nth-child(even) {
  background-color: #f1f9fd;
}

.perBranch a {
  color: var(--blue1);
}

.map-container iframe {
  width: 100%;
  height: 380px;
}
