.hero {
  background-image: linear-gradient(to right, #163D7F, #1C4689, #214F92, #27589C, #2C61A6, #2C61A6, #2C61A6, #2C61A6, #27589C, #214F92, #1C4689, #163D7F);
  padding: 150px 5% !important;
}

.the-world {
  background-image: linear-gradient(to right, #163D7F, #1C4689, #214F92, #27589C, #2C61A6, #2C61A6, #2C61A6, #2C61A6, #27589C, #214F92, #1C4689, #163D7F);
  height: 100vh;
  padding: 20px 5% 100px 0% !important;
}

h1 {
  font-size: 130px !important;
  line-height: 115px !important;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700 !important;
  color: #fff !important;
}

h2 {
  font-size: 130px !important;
  line-height: 150px !important;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700 !important;
  color: #fff;
  text-align: right;
}

p {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  color: #131A24;
}

.hero p {
  color: #fff;
  padding:25px;
}

span.fa.fa-star.checked {
    font-size: 0.85rem !important;
}

.stroke-heading {
  -webkit-text-stroke: 0.7px #7BAFDF;
  color: transparent !important;
}

.stroke-heading-2 {
  -webkit-text-stroke: 0.7px #7BAFDF;
  color: transparent !important;
  position: absolute;
  bottom: 0;
  right: 5%;
}

.stroke-heading-3 {
  -webkit-text-stroke: 0.7px #7BAFDF;
  color: transparent !important;
  position: relative;
  bottom: 0;
  right: 5%;
}

body {
  background-image: linear-gradient(to right, #163D7F, #1C4689, #214F92, #27589C, #2C61A6, #2C61A6, #2C61A6, #2C61A6, #27589C, #214F92, #1C4689, #163D7F) !important;
}

/* WHITE BUTTON */
.tbs-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 20px;
  border: none;
  border-radius: 100px;
  background-color: #DFECF7;
  color: #214C8F;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s;
  font-family: "Titillium Web", sans-serif;
  font-weight: 600 !important;
  width: fit-content;
}
.tbs-button .button-text {
  margin-right: 20px;
}
.tbs-button .circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #214C8F;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s;
}
.tbs-button:hover .circle {
  transform: scale(2.4);
}
.tbs-button .arrow {
  font-size: 5px !important;
  color: #fff;
  position: absolute;
  left: -30px;
  transition: left 0.3s, opacity 0.3s;
  opacity: 0;
}
.tbs-button:hover .arrow {
  left: 3px;
  opacity: 1;
}

/* BLUE BUTTON */
.tbs-button-blue {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 20px;
  border: none;
  border-radius: 100px;
  background-color: #214C8F;
  color: #FFF;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s;
  font-family: "Titillium Web", sans-serif;
  font-weight: 600 !important;
}
.tbs-button-blue .button-text {
  margin-right: 20px;
}
.tbs-button-blue .circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #BBD6EF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s;
}
.tbs-button-blue:hover .circle {
  transform: scale(2.4);
}
.tbs-button-blue .arrow {
  font-size: 5px !important;
  color: #fff;
  position: absolute;
  left: -30px;
  transition: left 0.3s, opacity 0.3s;
  opacity: 0;
}
.tbs-button-blue:hover .arrow {
  left: 3px;
  opacity: 1;
}

.hero .row > * {
  padding-right: 0px;
  padding-left: 0px;
}

#myVideo {
  height: 100%;
  object-fit: cover;
  width: 100%;
  border-radius: 30px;
}

#videoContainer {
  height: 100%;
  object-fit: cover;
  width: 100%;
  overflow: hidden;
}

.video-col {
  position: relative;
  height: 70vh;
}

h2.stroke-heading-3.do-best {
    margin: 0px;
    padding: 0px;
    margin-bottom: -50px;
    z-index: 2;
    right: 10%;
}

h2.stroke-heading-3.do-best-2 {
margin: 0px;
    padding: 0px;
    z-index: 2 !important;
    margin-top: -65px;
    margin-bottom: 0px ! IMPORTANT;
    right: 10%;
    mix-blend-mode: darken;
}

.bite-bottom-right {
  /* 1) overall corner radius, bite size, and optional offsets */
  --r: 30px;   /* border‐radius */
  --s: 30px;   /* size of the inner concave curve */
  --x: 50px;    /* horizontal shift of the bite */
  --y: 50px;    /* vertical shift of the bite */

  border-radius: var(--r);

  /* 2) helper gradients */
  --_m: / calc(2*var(--r)) calc(2*var(--r))
          radial-gradient(#000 70%, #0000 72%);
  --_g: conic-gradient(
           from 90deg
           at calc(100% - var(--r)) calc(100% - var(--r)),
           #0000 25%, #000 0
         );
  --_d: calc(var(--s) + var(--r));

  /* 3) the actual mask */
  mask:
    /* horizontal arm of the bite */
    calc(100% - var(--_d) - var(--x)) 100% var(--_m),
    /* vertical arm of the bite */
    100% calc(100% - var(--_d) - var(--y)) var(--_m),
    /* rounded inner corner */
    radial-gradient(
      var(--s) at 100% 100%, 
      #0000 99%, #000 calc(100% + 1px)
    )
      calc(-1*var(--r) - var(--x)) calc(-1*var(--r) - var(--y)),
    /* two conic masks to carve out the concave shape */
    var(--_g) calc(-1*var(--_d) - var(--x)) 0,
    var(--_g) 0 calc(-1*var(--_d) - var(--y));

  mask-repeat: no-repeat;
}

.bite-arrow-subpage {
  /* 1) overall corner radius, bite size, and optional offsets */
  --r: 30px;   /* border‐radius */
  --s: 30px;   /* size of the inner concave curve */
  --x: 50px;    /* horizontal shift of the bite */
  --y: 50px;    /* vertical shift of the bite */

  border-radius: var(--r);

  /* 2) helper gradients */
  --_m: / calc(2*var(--r)) calc(2*var(--r))
          radial-gradient(#000 70%, #0000 72%);
  --_g: conic-gradient(
           from 90deg
           at calc(100% - var(--r)) calc(100% - var(--r)),
           #0000 25%, #000 0
         );
  --_d: calc(var(--s) + var(--r));

  /* 3) the actual mask */
  mask:
    /* horizontal arm of the bite */
    calc(100% - var(--_d) - var(--x)) 100% var(--_m),
    /* vertical arm of the bite */
    100% calc(100% - var(--_d) - var(--y)) var(--_m),
    /* rounded inner corner */
    radial-gradient(
      var(--s) at 100% 100%, 
      #0000 99%, #000 calc(100% + 1px)
    )
      calc(-1*var(--r) - var(--x)) calc(-1*var(--r) - var(--y)),
    /* two conic masks to carve out the concave shape */
    var(--_g) calc(-1*var(--_d) - var(--x)) 0,
    var(--_g) 0 calc(-1*var(--_d) - var(--y));

  mask-repeat: no-repeat;
}


.video-col .tbs-button-blue {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 9;
}

.arrow-down {
  position: absolute;
  right: 0px;
  bottom: 0px;
  background: transparent;
  width: 100px;
  height: 100px;
  justify-content: center;
  display: flex;
  align-items: center;
  border-top-left-radius: 30px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 5rem !important;
}

.top-right {
  position: absolute;
  top: -50px;
  right: 12px;
  transform: rotate(270deg);
}

.bottom-right {
  position: absolute;
  bottom: 0px;
  left: -50px;
  transform: rotate(270deg);
}

.what-we-do {
  background-image: linear-gradient(to right, #163D7F, #1C4689, #214F92, #27589C, #2C61A6, #2C61A6, #2C61A6, #2C61A6, #27589C, #214F92, #1C4689, #163D7F);
}

.we-love {
  padding: 100px 5% 0px 5% !important;
  background: #fff;
  padding-top: 3rem !Important;
}

.about {
  padding: 100px 10% 100px 5% !important;
}

.zero-touch {
  padding: 100px 10% 100px 5% !important;
}

.we-love h2 {
  color: #214C8F !important;
  text-align: left;
}

.about .col-5 {
  padding-left: 5%;
}

.about {
  padding: 100px;
  background: #fff;
}

.about img {
  border-radius: 30px;
}

.tabs h2 {
  font-size: 32px !important;
  line-height: 42px !important;
  text-align: left;
  padding-bottom: 20px;
  cursor: pointer;
  color: #7BAFDF;
}

.tabs a {
  font-size: 32px !important;
  line-height: 42px !important;
  text-align: left;
  padding-bottom: 20px;
  cursor: pointer;
  color: #7BAFDF !important;
  text-decoration: none;
}

.tabs {
  background-image: linear-gradient(to right, #163D7F, #1C4689, #214F92, #27589C, #2C61A6, #2C61A6, #2C61A6, #2C61A6, #27589C, #214F92, #1C4689, #163D7F);
  padding: 0px 5% 0px 0% !important;
  position: relative;
}

.tabs .col-5 img {
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.tabs .col-5 {
  position: relative;
}

.what-we-do-left {
  background: #fff;
  border-top-right-radius: 60px;
  padding: 200px 200px 200px 10%;
  padding-left: 4rem !important;
    padding-right: 0rem !important;
	z-index: 2;
}

.we-love h2 {
  font-size: 130px !important;
  line-height: 120px !important;
}

.tabs .col-5 {
  padding: 200px 10% 100px 50px;
}

.blue-paragraph {
  color: #214C8F;
  font-weight: 600;
  padding-bottom: 20px;
}

.about-buttons {
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
}

.values {
  height: fit-content;
  background-image: linear-gradient(to right, #163D7F, #1C4689, #214F92, #27589C, #2C61A6, #2C61A6, #2C61A6, #2C61A6, #27589C, #214F92, #1C4689, #163D7F);
  border-radius: 60px;
  padding: 80px 6% !important;
  margin: 0px 5%;
}

.values-outer {
  background-color: #fff;
}

.tabs svg {
  margin-right: 30px;
}

.zgoraj {
	padding-right: 2rem;
}	

.what-we-do-left .col-5 {
    min-height: 350px;
}

.tabs .col-5 img {
  min-width: 250px !important;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.tabs .col-6 {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding-right: 3rem;
}

.tabs h2:hover {
  color: #fff !important;
  transition: ease-in-out;
  transition-duration: 0.3s;
}

.tabs a:hover {
  color: #fff !important;
  transition: ease-in-out;
  transition-duration: 0.3s;
}

.about-image {
  background-image: url("http://www.tbs.com/wp-content/uploads/2024/11/we-love-tbs-1.jpg");
  border-radius: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.values {
  position: relative;
}

.content-values {
  padding: 20% 0px 0px 100px !important;
}

.content-values h4, .content-values-2 h4 {
  color: #fff !important;
  font-size: 32px;
  line-height: 38px;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700 !important;
}

.content-values p, .content-values-2 p {
  color: #7BAFDF !important;
  font-size: 32px;
}

.background-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #7bafdf !important;
  z-index: 1;
  pointer-events: none;
  text-align: center;
}

.custom-layout .col-sm {
  border: 1px solid #fff;
  background: #ffffff27;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  padding: 50px;
  min-height: 300px;
}


/*  A) Centriraj celotno vrstico (col-7 + col-5) v containerju */
.container.values > .row {
  display: flex;
  justify-content: center;
  gap: 2rem; /* po potrebi prilagodi horizontalni razmik */
}

/*  B) Levi sklop (mission+vision) + desni panel naj stojita sredi višine */
.container.values .row > .col-7 > .row.gap-row {
  display: flex;
  align-items: center;  /* skupi oba col-sm in custom-layout-column na sredino */
  gap: 1.5rem;          /* horizontalni razmik med njima */
}

/*  C) Odstrani vsak vertikalni “margin-top” na desnem panelu */
.custom-layout-column {
  margin-top: 0 !important;
}

.content-values-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: flex-end;
    align-items: flex-end;
}

/* mobile/smaller screens */
@media (max-width: 1275px) {
  .content-values-2 {
    align-items: flex-start;
    align-content: flex-start;
    text-align: left;
    padding: 0 1rem;     /* optional: give it some breathing room */
  }

}

.top-column {
  align-self: flex-start;
}

.middle-column {
  align-self: center;
}

.bottom-column {
  align-self: flex-end;
}

.values-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
}

.values-heading h4 {
  color: #fff !important;
  font-size: 30px !important;
  line-height: 40px !important;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700 !important;
}

.custom-layout p,
.top-column p {
  color: #fff !important;
}

.testimonials .blue {
  border-top-left-radius: 60px;
  height: 700px;
  margin-top: -40px;
  position: relative;
}

.blue img {
  position: absolute;
  top: 39px;
  left: -1px;
  transform: rotate(90deg);
}

.white {
  position: relative;
}

.white img {
  position: absolute;
  bottom: 0px;
  right: -1px;
  transform: rotate(90deg);
}

.testimonials .col-5 {
  background: #fff;
  border-bottom-right-radius: 60px;
}

.testimonials h2 {
  -webkit-text-stroke: 1px #7BAFDF;
  color: #fff;
}

.news h2 {
  -webkit-text-stroke: 1px #7BAFDF;
  text-align: left;
  color: #fff;
  position: relative;
  z-index: 2;
}

.news {
  padding: 100px 5% !important;
  background: #fff;
  padding-bottom: 0% !important;
}

.gap-row {
  gap: 40px !important;
}

.swiper-horizontal {
  touch-action: pan-y;
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide {
  background-color: #F4F6F9;
  border-radius: 20px;
  padding: 50px !important;
  position: relative;
  min-height: 350px;
}

.swiper-container-testimonials {
  padding: 100px 0% 50px 25% !important;
  margin-top: -660px !important;
}

.swiper-slide .podjetje p {
  color: #7BAFDF !important;
  text-transform: uppercase;
  font-weight: 400;
  text-align: left;
  position: absolute;
  bottom: 30px;
}

.swiper-slide .mnenje {
  padding-top: 40px;
  font-size: 18px;
  line-height: 30px;
  text-align: left;
}

.swiper-slide .rating {
  text-align: left;
  gap: 5px;
  display: flex;
}

.swiper-button-next,
.swiper-button-prev {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: relative !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

/* MAP & INFO BOX */
.col-sm.mapa {
    position: relative;
    display: flex;
    align-content: stretch;
    justify-content: space-evenly;
    align-items: center;
}
#map {
  width: 100%;
  max-width: 1000px;
  height: 500px;
  margin-bottom: 20px;
  background: transparent;
  z-index: 9;
}

.info-box {
    position: absolute;
    top: 20px;
    left: 20px;
    margin-top: 0;
    z-index: 10;
    background-color: #f1f1f1 !important;
    padding: 25px;
    border-radius: 25px;
}

.leaflet-control {
  display: none !important;
}

.mapa {
  position: relative;
}

/* PIN ICON BEFORE EACH COUNTRY NAME */
.countries {
  padding-top: 50px;
}
.countries p {
  font-size: 22px;
  color: #3865A3;
}
.countries-flex {
  display: flex;
  align-items: center;
  gap: 12px;
}
.countries-flex p {
  position: relative;
  padding-left: 22px;
  cursor: pointer;
}
.countries-flex p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 19px;
  background: url("https://tbs-team24.com.mp10.si/wp-content/uploads/2025/04/marker.svg") no-repeat center center;
  background-size: contain;
}

/* SELECTED STATE */
.countries-flex p.selected {
  font-weight: bold !important;
  color: #224d8c !important;
}

.countries .tbs-button-blue {
  margin-top: 10%;
  float: right;
}

/* Popup styling (if used) */
#popup {
  position: absolute;
  display: none;
  background: #fff;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  z-index: 1000;
}

/* GLOBE POINTS (if used elsewhere) */
.globe-point {
  transition: background-color 0.3s ease;
  background-color: rgba(255, 100, 50, 0.8);
}
.globe-point:hover {
  background-color: rgba(50, 200, 255, 0.8);
}
.globe-ring {
  transition: stroke 0.3s ease;
  stroke: rgba(255, 100, 50, 0.8);
}
.globe-ring:hover {
  stroke: rgba(50, 200, 255, 0.8);
}

/* MEDIA QUERIES */
@media only screen and (max-width: 600px) {
  .col-6,
  .col-7,
  .col-5 {
    width: 100% !important;
  }
  h1 {
    font-size: 70px !important;
    line-height: 80px !important;
  }
  .hero-row {
    flex-direction: column-reverse;
  }
  #myVideo {
    height: 450px;
  }
  .sidebar {
    top: 200%;
  }
  .tabs .col-7 {
    background: #fff;
    border-top-right-radius: 60px;
    padding: 100px 20px;
  }
  .hero {
    background: #214C8F;
    height: fit-content;
  }
}

/* 1) Flex container za ikonico + besedilo */
.info-box-country-hero,
.info-box-country {
  display: flex;
  align-items: center;
  gap: 10px;             /* prostor med ikonico in besedilom */
  margin-bottom: 16px;   /* navpični prostor med vrsticami */
}

.info-box-country-hero img,
.info-box-country img {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.info-box-country-hero img,
.info-box-country img:nth-child(2) {
  width: 32px !important;
  height: 32px !important;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

/* 3) Override inline barve (če je SVG s path-om) */
.info-box-country-hero svg path,
.info-box-country svg path,
.info-box-country-hero svg rect,
.info-box-country svg rect,
.info-box-country-hero svg circle,
.info-box-country svg circle {
  fill: currentColor !important;
}

/* 4) Osnovna barva in tipografija besedila */
.info-box-country-hero h4,
.info-box-country p {
  color: #131A24;        /* barva besedila */
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

/* 5) Dodatni styling za hero naslov (velik partnerjev) */
.info-box-country-hero h4 {
  font-size: 1.2rem;
  font-weight: 700;
}

/* 6) Če želiš hover/active efekte, lahko dodaš: */
.info-box-country:hover h4,
.info-box-country-hero:hover h4 {
  color: #214C8F;
}

.hero-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: space-between;
    justify-content: space-around;
    align-items: center;
}


.rounded-bot-left {
    border: solid;
    border-width: 0;
    border-bottom-width: 50px;
    border-bottom-left-radius: 100px;
    border-left-width: 50px;
    border-top-left-radius: 0px 0px;
    border-color: white;
    margin-bottom: -50px;
    z-index: 0;
    margin-left: -50px;
    border-top: 5px transparent;
    margin-top: 50px !important;
    padding-top: 150px !important;
}

.we-love {
    padding-top: 100px ! IMPORTANT;
    padding-bottom: 50px ! IMPORTANT;
}

div#linkedin-feed {
    margin: 0px !important;
    padding: 0px !important;
    margin-top: -25px !important;
	margin-left: -25px !important;
	z-index: 1;
	padding-bottom: 5rem !important;
}

#linkedin-feed .swiper-slide {
    background-color: transparent;
    border-radius: 5px;
    padding: 0px !important;
    position: relative;
    border: 5px solid #F4F6F9;
}

.Main__Inner-sc-129s5zi-0.eFUpYn {
    max-width: 1920px ! IMPORTANT;
}

.container.swiper-arrows {

    width: 100%;
}

.arrows-custom {
    display: flex;
    justify-content: space-between;
    background-color: transparent;


}

.puscice {
    display: flex;
    justify-content: end;
    flex-direction: row-reverse;
    gap: 50px;
    padding-right: 5% !important;

}

.swiper-button-next,
.swiper-button-prev {
    min-width: 50px;
    margin-top: -50px !important;
}

a[href*="elfsight.com/linkedin-feed-widget"] {
  display: none !important;
  clip-path: inset(0 100% 0 0) !important;
}

.zero-touch p {
    color: white ! IMPORTANT;
}

.zero-image img {
    border-radius: 25px;
}

.zero-main-img {
	width: 405px;
}



div#location-info {
    position: absolute;
    z-index: 99;
    top: 0;
    right: 25%;
    border: 1px solid white;
    border-radius: 10px;
    padding: 10px;
    padding-top: 20px;
    padding-left: 35px;
    padding-right: 35px;
    color: white !important;
}

div#location-info p {
    color: white ! IMPORTANT;
}
.the-world {
    margin-bottom: -100px ! IMPORTANT;
}