@import url("font-awesome.min.css");
body {
  font-family: "Montserrat", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Animation keyframes */
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes fadeInLeft {
      from {
          opacity: 0;
          transform: translateX(-30px);
      }
      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
      }
      to {
          opacity: 1;
      }
  }

  @keyframes pulse {
      0%, 100% {
          transform: scale(1);
      }
      50% {
          transform: scale(1.02);
      }
  }

.layout_padding {
  background-color: #100d20;
  padding-top: 110px;
  padding-bottom: 70px;
}

.layout_padding2 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

/* Blog section */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Blog Posts Grid */
.blog-grid {
    display: grid;
    gap: 30px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.blog-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:nth-child(1) { animation-delay: 0.1s; }
.blog-post:nth-child(2) { animation-delay: 0.2s; }
.blog-post:nth-child(3) { animation-delay: 0.3s; }
.blog-post:nth-child(4) { animation-delay: 0.4s; }
.blog-post:nth-child(5) { animation-delay: 0.5s; }

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

/* Featured Post (First Post) */
.blog-post.featured {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 0;
    min-height: 300px;
}

.blog-post.featured .post-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-post.featured .post-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.blog-post.featured .post-excerpt {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.blog-post.featured .post-image {
    width: 300px;
    height: 100%;
    padding-bottom: 0;
    background: url('/images/blog/post6.png');
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* Regular Posts (Smaller) */
.blog-post:not(.featured) {
    display: block;
    min-height: auto;
}

.blog-post:not(.featured) .post-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* Fixed 1:1 aspect ratio */
    position: relative;
    overflow: hidden;
}

.blog-post:not(.featured) .post-content {
    padding: 20px;
    display: block;
}

.blog-post:not(.featured) .post-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-post:not(.featured) .post-excerpt {
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-post:not(.featured) .post-category {
    font-size: 0.75rem;
    padding: 4px 10px;
    margin-bottom: 10px;
}

.blog-post:not(.featured) .post-meta {
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
}

/* Grid layout for smaller posts - 2 columns */
.regular-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

/* Individual card image styles */
.post-image.blog1 {
    background-image: url('/images/blog/post5.png');
    background-size: cover;
    background-position: center;
}

.post-image.blog2 {
    background-image: url('/images/blog/post4.png');
    background-size: cover;
    background-position: center;
}

.post-image.blog3 {
    background-image: url('/images/blog/post3.png');
    background-size: cover;
    background-position: center;
}

.post-image.blog4 {
    background-image: url('/images/blog/post2.png');
    background-size: cover;
    background-position: center;
}

.post-category {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
    width: 75px;
}

.post-category1 {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
    width: 95px;
}


.post-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
    line-height: 1.3;
}

.post-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #999;
}

.post-date {
    font-weight: 500;
}

.read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #2980b9;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 20px;
    animation: fadeInLeft 0.8s ease-out 0.4s both;
}

.sidebar-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    animation: fadeInUp 0.6s ease-out both;
}

.sidebar-section:nth-child(1) { animation-delay: 0.5s; }
.sidebar-section:nth-child(2) { animation-delay: 0.6s; }

.sidebar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-list a:hover {
    color: #3498db;
}

.category-count {
    background: #ecf0f1;
    color: #7f8c8d;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.recent-posts {
    list-style: none;
}

.recent-post-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-title {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.recent-post-title:hover {
    color: #3498db;
}

.recent-post-date {
    color: #999;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Load More Button */
.load-more-section {
    text-align: center;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.load-more-btn {
    background: #3498db;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.load-more-btn:hover {
    background: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    #container_naslovi {
      padding-top: 0 !important;
    }

    .blog-post.featured {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .blog-post.featured .post-image {
        width: 100%;
        height: 0;
        padding-bottom: 100%;
    }

    .blog-post.featured .post-content {
        padding: 30px 20px;
    }

    .blog-post.featured .post-title {
        font-size: 1.5rem;
    }

    .blog-post:not(.featured) {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .blog-post:not(.featured) .post-image {
        width: 100%;
        height: 0;
        padding-bottom: 100%;
    }

    .blog-post:not(.featured) .post-content {
        padding: 20px;
    }

    .blog-post:not(.featured) .post-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .blog-post:not(.featured) .post-category {
        font-size: 0.8rem;
        padding: 6px 12px;
        margin-bottom: 12px;
    }

    .regular-posts {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-post:not(.featured) .post-content {
        padding: 20px;
    }

    .sidebar-section {
        padding: 20px;
    }
}

/* Blog section end */

/* Individual blog pages */

.container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.post-header1 {
    background: white;
    padding: 60px 0;
}

.header-content1 {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: center;
}

.post-featured-image1 {
    width: 400px;
    height: 400px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background-image: url('/images/blog/post6.png');
    background-size: cover;
    background-position: center;
}

.post-featured-image2 {
    width: 400px;
    height: 400px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background-image: url('/images/blog/post5.png');
    background-size: cover;
    background-position: center;
}

.post-featured-image3 {
    width: 400px;
    height: 400px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background-image: url('/images/blog/post4.png');
    background-size: cover;
    background-position: center;
}

.post-featured-image4 {
    width: 400px;
    height: 400px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background-image: url('/images/blog/post3.png');
    background-size: cover;
    background-position: center;
}

.post-featured-image5 {
    width: 400px;
    height: 400px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background-image: url('/images/blog/post2.png');
    background-size: cover;
    background-position: center;
}

.post-header-info1 {
    padding: 20px 0;
}

.post-category-header1 {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.post-title-header1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 20px;
}

.post-subtitle1 {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.4;
}

.post-meta-header1 {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: #777;
}

.meta-item1 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-icon1 {
    width: 16px;
    height: 16px;
    fill: #3498db;
}

.social-share1 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-share-label1 {
    font-weight: 600;
    color: #555;
}

.social-icon1 {
    width: 40px;
    height: 40px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon1:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.social-icon1 svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Main Content */
.main-content1 {
    padding: 60px 0;
}

.content-wrapper1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.post-content1 {
    background: white;
    border-radius: 12px;
    padding: 40px;
}

.f1 h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.post-content1 h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 25px 0 12px 0;
    font-weight: 600;
}

.post-content1 p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.post-content1 ul, .post-content1 ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-content1 li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.post-content1 blockquote {
    border-left: 4px solid #3498db;
    padding: 20px 30px;
    margin: 30px 0;
    background: #f8f9fa;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.post-content1 img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* Sidebar - Same as blog listing */
.sidebar1 {
    position: sticky;
    top: 20px;
}

.sidebar-section1 {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.sidebar-title1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.category-list1 {
    list-style: none;
}

.category-list1 li {
    margin-bottom: 12px;
}

.category-list1 a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-list1 a:hover {
    color: #3498db;
}

.category-count1 {
    background: #ecf0f1;
    color: #7f8c8d;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.recent-posts1 {
    list-style: none;
}

.recent-post-item1 {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.recent-post-item1:last-child {
    border-bottom: none;
}

.recent-post-title1 {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.recent-post-title1:hover {
    color: #3498db;
}

.recent-post-date1 {
    color: #999;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Back to Blog Button */
.back-to-blog1 {
    background: #3498db;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
    margin: 20px;
    display: inline-block;
}

.back-to-blog1:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content1 {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .post-featured-image1 {
        width: 100%;
        height: 300px;
        margin: 0 auto;
    }

    .post-featured-image2 {
        width: 100%;
        height: 300px;
        margin: 0 auto;
    }


    .post-title-header1 {
        font-size: 2rem;
    }

    .post-subtitle1 {
        font-size: 1.1rem;
    }

    .post-meta-header1 {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .social-share1 {
        justify-content: center;
    }

    .content-wrapper1 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .post-content1 {
        padding: 25px;
    }

    .sidebar-section1 {
        padding: 20px;
    }

    .back-to-blog1 {
        position: static;
        display: inline-block;
        margin: 20px;
    }
}

/* Custom navbar styles */
.navbar-custom {
    background-color: #0F0F20;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
}

.logo {
  padding: 16px;
}

.logo img {
  height: 85px;
  object-fit: contain;
}

.navbar-collapse {
  flex-grow: 0 !important;
}


.navbar-custom .navbar-nav .nav-link {
    color: #f3f3f3;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-custom .navbar-nav .nav-link:hover {
    color: #349ED6;
}

.navbar-custom .navbar-toggler {
    border: none;
    padding: 0.25rem 1.25rem;
}

.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28243, 243, 243, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-custom .navbar-toggler:focus {
  box-shadow: none;
}

/* Center menu items when collapsed (mobile hamburger menu) */
@media (max-width: 991.98px) {
    .navbar-custom .navbar-nav {
        text-align: right;
        margin-top: 1rem;
    }
    
    .navbar-custom .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
}

.logo-placeholder {
    width: 150px;
    height: 40px;
    background-color: #f3f3f3;
    border: 2px dashed #349ED6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F0F20;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Novi Nav 
.navbar {
  background-color: #0F0F20;
  padding: 0.2rem 0.7rem !important;
  top: 0;
}

.navbar-container {
  max-width: 1400px;
  height: 80px;
  display: flex;
  align-items: center;        
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  padding: 16px;
}

.logo img {
  height: 95px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex: 1;                    
  justify-content: center;     
  align-items: center;
  margin-bottom: 0 !important;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-links a {
  font-size: 18px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #349ED6;
}

.cta-button {
  position: absolute;
  right: 32px;          
}

.cta-button a {
  background-color: white;
  color: black;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cta-button a:hover {
  background-color: #349ED6;
  color: white;
}

.cta-button span {
  color: #349ED6;
  font-size: 1.1rem;
  margin-left: 0.3rem;
}

.cta-button span:hover {
  color: white;
}

 Hamburger Menu 
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #f3f3f3;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

 Hamburger Animation 
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

 Mobile Nav (Animated) 
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: #050f14;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    z-index: 999;
  }

  .nav-links.show {
    padding: 1rem 0;
    max-height: 300px; 
  }

  .nav-links a {
    font-size: 16px;
  }
} */

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  padding-bottom: 10px;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.heading_container.heading_center h2::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*header section*/
.hero_area {
  background: url('../images/insight_bg1.png');
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}

.hero_bg_box {
  position: absolute;
  background: url('../images/insight_bg1.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero_bg_box_blog {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}


#linije {
  position: absolute;
  top: 20%;
  width: 100%;
  height: 137%;
  background-image: url("../images/linije.png");
  background-position: center;
  background-size: cover;
}

.hero_bg_box .img-box img {
  min-width: 100%;
  min-height: 100%;
}

.hero_bg_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.35)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.35));
}

.sub_page .hero_area {
  min-height: auto;
}

.sub_page .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
  padding-bottom: 21px;
}

.hero_area.sub_pages {
  height: auto;
}

.header_section {
  padding: 0;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.header_section .nav_container {
  margin: 0 auto;
}

.header_top {
  background-color: #1c1c1c;
  padding: 15px 0;
}

.header_top .contact_link-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header_top .contact_link-container a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-size: 15px;
}

.header_top .contact_link-container a i {
  font-size: 20px;
  color: #f1db25;
  margin-right: 5px;
}

#navbarSupportedContent {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.custom_nav-container {
  z-index: 99999;
  padding: 0;
  color: #000;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 0;
  padding: 10px 15px 10px 15px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 1.1rem !important;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #349ED6;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}


#naslov1 {
  font-size: 6vh;
}



.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding-right: 50px;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 32px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 15px;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  border-radius: 15px;
  top: -10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

#klip_container {
  padding-top: 27%; 
  padding-bottom: 2%;
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  height: 120vh;
}

#container_naslovi {
  padding-top: 7%;
}

#naslov_insight {
  font-weight: 700;
  color: #100d20;
}

.responsive-iframe {
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .detail-box {
  width: 100%;
  margin: 0 auto;
}

.slider_section .detail-box h1 {
  font-size: 3rem;
  color: #ffffff;
  font-weight: 600;
  font-family: 'Montserrat';
}

.tekst1 {
  background: #2D6BAC;
  background: linear-gradient(to right, #2D6BAC 0%, #52AFB5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tekst2 {
  background: #2D6BAC;
  background: linear-gradient(to right, #2D6BAC 0%, #52AFB5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tekst3 {
  background: #2D6BAC;
  background: linear-gradient(to right, #2D6BAC 0%, #52AFB5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slider_section .detail-box p {
  margin-top: 25px;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

.slider_section .detail-box .btn-box a {
  width: 200px;
  text-align: center;
  margin-top: 2%;
}

.slider_section .detail-box .btn-box .btn-1 {
  display: inline-block;
  padding: 15px 30px;
  background: #2D6BAC;
  background: linear-gradient(to right, #2D6BAC 47%, #52AFB5 100%);
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 10px;
  border: none;
  font-size: 2.2vh !important;
  font-family: 'Montserrat';
  font-weight: 500;
  width: 22%;
}

.slider_section .detail-box .btn-box .btn-1:hover {
  background: rgb(103,224,227);
  background: linear-gradient(90deg, rgba(103,224,227,1) 0%, rgba(67,158,161,1) 100%);
  color: #ffffff;
}

.slider_section .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .idicator_container {
  position: relative;
}

.slider_section ol.carousel-indicators {
  margin: 0;
  bottom: -75px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.slider_section ol.carousel-indicators li {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  text-align: center;
  background-color: #f1db25;
  opacity: 1;
  border: none;
  margin: 0 4px;
}

.slider_section ol.carousel-indicators li.active {
  background-color: #ffffff;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img_container .img-box img {
  width: 100%;
}

#tekst4 {
  font-size: 5vh;
  font-family: 'Montserrat';
  font-weight: 700 !important;
  color: #ffffff;
}

.btn-2 {
  position: relative;
  display: inline-block;
  padding: 15px 25px;
  background: rgb(56,162,218);
  background: linear-gradient(90deg, rgba(56,162,218,1) 0%, rgba(5,106,159,1) 100%);
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 10px;
  border: none;
  font-size: 2.3vh;
  font-family: 'Montserrat';
  font-weight: 500;
  width: 100%;
  z-index: 1;
}

.btn-2:hover { 
  background: rgb(103,224,227);
  background: linear-gradient(90deg, rgba(103,224,227,1) 0%, rgba(67,158,161,1) 100%);
  color: #ffffff;
}

#modules_red2 {
  position: relative;
  margin-top: 3%;
}

.btn-3 {
  display: inline-block;
  padding: 15px 25px;
  background: rgb(56,162,218);
  background: linear-gradient(90deg, rgba(56,162,218,1) 0%, rgba(5,106,159,1) 100%);
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 10px;
  border: none;
  font-size: 2.3vh;
  font-family: 'Montserrat';
  font-weight: 500;
  width: 100%;
}

.btn-3:hover { 
  background: rgb(103,224,227);
  background: linear-gradient(90deg, rgba(103,224,227,1) 0%, rgba(67,158,161,1) 100%);
  color: #ffffff;
}



/* Typing effect */

#typing_container {
  width: 100%;
  background-color: #100d20;
  text-align: center;
  margin-top: 0 !important;
}

.typing-demo1 {
  width: 30ch;
  animation: typing 2s steps(22), blink .5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid;
  font-family: monospace;
  font-size: 5vh;
  text-align: center;
}
.typing-demo2 {
  width: 19ch;
  animation: typing 2s steps(22), blink .5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid;
  font-family: monospace;
  font-size: 5vh;
}
.typing-demo3 {
  width: 38ch;
  animation: typing 2s steps(22), blink .5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid;
  font-family: monospace;
  font-size: 5vh;
}
.typing-demo4 {
  width: 28ch;
  animation: typing 2s steps(22), blink .5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid;
  font-family: monospace;
  font-size: 5vh;
}

#why_red1 {
  margin-top: 5%;
}

#why_red2 {
  margin-top: 6%;
}

#why_naslov1 {
  font-size: 4.3vh;
  color: #ffffff;
}

#why_naslov2 {
  font-size: 4.3vh;
  color: #ffffff;
}

#why_naslov3 {
  font-size: 4.3vh;
  color: #ffffff;
}

#why_naslov4 {
  font-size: 4.3vh;
  color: #ffffff;
}

.why_tekst1 {
  color: #fd666d;
}

.why_tekst2 {
  color: #38a2da;
}

.why_tekst3 {
  color: #38a2da;
}

.why_tekst4 {
  color: #67e0e3;
}

#ikonica1 {
  scale: 0.6;
}

#ikonica2 {
  scale: 0.6;
}

#ikonica3 {
  scale: 0.6;
}

#ikonica4 {
  scale: 0.6;
}

#ikonica1_red {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#ikonica2_red {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#ikonica3_red {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#ikonica4_red {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

@keyframes typing {
  from {
    width: 0
  }
}
    
@keyframes blink {
  50% {
    border-color: transparent
  }
}

.about_section .detail-box {
  background-color: #100d20;
  padding: 35px 25px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  margin-left: -45px;
}

.about_section .detail-box p {
  margin-top: 5px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: #38a2da;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
  text-transform: uppercase;
}

.about_section .detail-box a:hover {
  background-color: transparent;
  border-color: #67e0e3 ;
  color: #67e0e3 ;
}

.service_section {
  width: 100%;
  background-color: #ffffff;
}

#red_moduli {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#module1 {
  width: 80px;
  color: #67e0e3;
}

#module2 {
  width: 80px;
}

#module3 {
  width: 80px;
}

#readmore1 {
  position: relative;
  top: 20%;
}

#offer_red {
  position: relative;
  margin-top: 10%;
}

#offer_dugme {
  display: inline-block;
  padding: 20px 40px;
  background: rgb(56,162,218);
  background: linear-gradient(90deg, rgba(56,162,218,1) 0%, rgba(5,106,159,1) 100%);
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 10px;
  border: none;
  font-size: 3vh;
  font-family: 'Montserrat';
  font-weight: 500;
}

#offer_dugme:hover { 
  background: rgb(116,204,250);
  background: linear-gradient(90deg, rgba(116,204,250,1) 0%, rgba(17,160,235,1) 100%);
  color: #ffffff;
}

.service_section .heading_container {
  color: #ffffff;
}

.service_section .box {
  background-color: #ffffff;
  padding: 25px 15px;
  text-align: center;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  margin-top: 45px;
  height: 380px;
  z-index: -2;
  border-radius: 10px;
  width: 100%;
  margin-right: 5%;
}

.service_section .box .img-box svg {
  width: 75px;
  height: auto;
  fill: #1c1c1c;
}

.service_section .box .detail-box {
  margin-top: 25px;
}

.service_section .box .detail-box h6 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.service_section .box .detail-box a {
  display: inline-block;
  padding: 8px 35px;
  background-color: #38a2da;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
  margin-top: 10px;
}

.service_section .box .detail-box a:hover {
  background-color: #100d20;
  border-color: #100d20;
  color: #ffffff;
}

#why_section {
  height: 75vh;
  padding-top: 3% !important;
}

#linije2 {
  position: absolute;
  top: 210vh;
  width: 100%;
  height: 137%;
  background-image: url("../images/linije.png");
  background-position: center;
  background-size: cover;
}

#tekst5 {
  font-size: 4.5vh;
  font-family: 'Montserrat';
  font-weight: bold;
}

#tekst6 {
  font-size: 2.8vh;
  font-family: 'Montserrat';
  font-weight: 500;
  text-align: left;
  text-wrap: wrap;
}

#tekst61 {
  font-size: 2.8vh;
  font-family: 'Montserrat';
  font-weight: 500;
  text-align: left;
  margin-left: 33%;
}

.tekst611 {
  color: #fd666d;
}

.tekst612 {
  color: #67e0e3;
}

.tekst613 {
  color: #38a2da;
}

#goal_section {
  background: rgb(204, 204, 204);
  background-size: cover;
  padding-top: 6%;
}

#goal_tekst {
  margin-top: 3%;
}

#moduli_tekst {
  font-size: 1.9vh;
}

#modules_tekst {
  font-size: 3.2vh;
  font-family: 'Montserrat';
  font-weight: 500;
  color: #000000 !important;
  text-align: left !important;
  margin-left: 8%;
}

#modules_tekst2 {
  font-size: 4.5vh;
  font-family: 'Montserrat';
  font-weight: 500;
  color: #000000 !important;
  text-align: left !important;
  margin-left: 8%;
}

.tekst7 {
  color: #38a2da;
}

.tekst8 {
  color: #38a2da;
}

.goal_naslov {
  color: #38a2da;
  font-size: 5vh;
  font-family: 'Montserrat';
  font-weight: 700;
}

#ikonica5 {
  scale: 0.6;
  position: relative;
  float: left;
}

.client_section {
  text-align: center;
}

.client_section #carouselExampleControls {
  padding: 0 10%;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 45px;
}

.client_section .box .img-box {
  width: 145px;
}

.client_section .box .img-box img {
  width: 100%;
}

.client_section .box .detail-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

.client_section .box .detail-box h4 {
  font-weight: bold;
  font-size: 18px;
  padding: 0 10px;
  border-bottom: 1px solid #ffffff;
}

.client_section .box .detail-box p {
  margin-top: 10px;
}

.client_section .carousel_btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  position: absolute;
  top: 50%;
  width: 45px;
  height: 45px;
  border: none;
  opacity: 1;
  background-color: #1c1c1c;
  color: #ffffff;
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 18px;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background-color: #f1db25;
}

.client_section .carousel-control-prev {
  left: 0;
}

.client_section .carousel-control-next {
  left: initial;
  right: 0;
}


/* contact section */
.contact_section {
  padding-top: 3%;
  position: relative;
  color: #ffffff;
}

.contact_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact_section .contact_form-container {
  margin-top: 35px;
}

.contact_section .contact_form-container input {
  border: none;
  outline: none;
  color: #000000;
  height: 45px;
  width: 100%;
  margin: 15px 0;
  padding-left: 15px;
  background-color: #ffffff;
  border-radius: 10px;
}

.contact_section .contact_form-container input::-webkit-input-placeholder {
  color: #000000;
  text-transform: uppercase;
}

.contact_section .contact_form-container input:-ms-input-placeholder {
  color: #000000;
  text-transform: uppercase;
}

.contact_section .contact_form-container input::-ms-input-placeholder {
  color: #000000;
  text-transform: uppercase;
}

.contact_section .contact_form-container input::placeholder {
  color: #000000;
  text-transform: uppercase;
}

.contact_section .contact_form-container input.message_input {
  height: 120px;
}

.contact_section .contact_form-container .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 25px;
}

.contact_section .contact_form-container button {
  display: inline-block;
  padding: 10px 60px;
  background-color: #38a2da;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
  font-weight: bold;
}

.contact_section .contact_form-container button:hover {
  background-color: transparent;
  border-color: #67e0e3;
  color: #67e0e3;
}

.contact_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact_bg_box .img-box {
  width: 100%;
}

.contact_bg_box .img-box img {
  min-width: 100%;
  min-height: 100%;
}

.contact_bg_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.35)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.35));
}

#contact_dugme {
  display: inline-block;
  padding: 15px 25px;
  background: rgb(56,162,218);
  background: linear-gradient(90deg, rgba(56,162,218,1) 0%, rgba(5,106,159,1) 100%);
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 10px;
  border: none;
  font-size: 2.2vh !important;
  font-family: 'Montserrat';
  font-weight: 500;
  width: 23%;
}

#contact_dugme:hover { 
  background: rgb(103,224,227);
  background: linear-gradient(90deg, rgba(103,224,227,1) 0%, rgba(67,158,161,1) 100%);
  color: #ffffff;
}

/* end contact section */

/* Slajfna */

#slajfna {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

#slajfna_container {
  position: relative;
  width: 47%;
  text-align: center;
}

#slajfna_tekst {
  font-family: 'Montserrat';
  font-size: 2vh;
  font-weight: bold;
  padding-bottom: 3%;
  padding-top: 6%;
}

#slajfna2 {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

#slajfna2_container {
  position: relative;
  width: 100%;
}

#logostrip {
  width: 100%;
}

/* Slajfna end */

/* Contact form */

#forma_container2 {
  padding-bottom: 5%;
  width: 60%;
}

.contact-section {
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1rem;
}

.contact-intro > * + * {
  margin-top: 1rem;
}

.contact-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
}

.contact-description {
  color: rgb(255, 255, 255);
}

.form-group-container {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.form-input::placeholder,
.form-textarea:focus-visible {
  color: #6b7280;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.form-textarea {
  min-height: 120px;
}

.form-submit {
  width: 100%;
  margin-top: 1.2rem;
  background: rgb(56,162,218);
  background: linear-gradient(90deg, rgba(56,162,218,1) 0%, rgba(5,106,159,1) 100%);
  color: #fff;
  padding: 13px 5px;
  border-radius: 0.375rem;
  width: 30%;
  border: none;
}

.form-submit:hover {
  background: linear-gradient(90deg, rgb(48, 134, 180) 0%, rgb(4, 92, 139) 100%);
}

/* End Contact form */

/* Team Section */
#team {
  padding-top: 3%;
  padding-bottom: 3%;
  background: #e6e6e6;
}

#team_naslov {
  font-size: 4.5vh;
  font-family: 'Montserrat';
  font-weight: bold;
}

#team_container {
  margin-top: 3%;
}

#team_ime {
  font-size: 2.5vh;
}

img.img-thumbnail.team-img {
  height: auto;
  width: 200px;
  border: 0;
  border-radius: 0;
  background-color: #f6f6f6;
}
@media (min-width: 992px) {
  #team .teamNewFirst {
    margin-left: 16%;
  }
  #team .teamNewSecond {
    margin-left: 8%;
  }
}
#team .thumbnail {
  background: transparent;
  border: 0;
}
#team .thumbnail .caption {
  padding: 9px;
  color: #777;
}

#team_section {
  padding-top: 2%;
  background: #ffffff;
}

.team_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  margin-top: 45px;
  position: relative;
}

.team_section .box .img-box {
  width: 100%;
}

.team_section .box .img-box img {
  width: 70%;
}

.team_section .box .detail-box {
  position: absolute;
  width: 70%;
  color: #ffffff;
  padding: 10px 5px;
  text-align: center;
  bottom: 0;
  background-color: rgba(28, 28, 28, 0.75);
  font-size: 1.5vh;
}

.team_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.team_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #f1db25;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.team_section .btn-box a:hover {
  background-color: transparent;
  border-color: #f1db25;
  color: #f1db25;
}

.info_section {
  background-color: #000000;
  color: #ffffff;
  padding: 75px 0 10px 0;
}

.info_section .row > div {
  margin-bottom: 25px;
}

.info_section h5 {
  margin-bottom: 25px;
  font-size: 24px;
}

.info_section .info_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.info_section .info_logo .navbar-brand {
  padding: 0;
  margin-bottom: 20px;
}

.info_section .info_logo .navbar-brand span {
  font-size: 24px;
  color: #ffffff;
}

.info_section .info_links ul {
  padding: 0;
}

.info_section .info_links ul li {
  list-style-type: none;
}

.info_section .info_links ul li a {
  color: #ffffff;
}

.info_section .info_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#mapa {
  position: relative;
  width: 350px;
  height: 350px;
  padding: 3%;
  border: none;
}

.info_contact {
  margin-top: 10%;
  position: relative;
}

.info_section .info_contact a {
  color: #ffffff;
  margin-bottom: 10px;
}

.info_section .info_contact a i {
  font-size: 20px;
  margin-right: 5px;
}

.info_section .info_form form input {
  outline: none;
  border: none;
  width: 100%;
  padding: 7px 10px;
  border-radius: 30px;
}

.info_section .info_form form button {
  padding: 8px 35px;
  outline: none;
  border: none;
  color: #ffffff;
  background: #38a2da;
  border-radius: 30px;
  margin-top: 15px;
  text-transform: uppercase;
}

.info_section .info_form .social_box {
  margin-top: 25px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info_section .info_form .social_box a {
  margin-right: 10px;
  color: #ffffff;
  font-size: 20px;
}

/* footer section*/
.footer_section {
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  background-color: #101010;
}

.footer_section p {
  color: rgba(254, 254, 255, 0.7);
  margin: 0;
  text-align: center;
}

.footer_section a {
  color: rgba(254, 254, 255, 0.7);
}

#footer_container {
  text-align: center;
  width: 50%;
}

#footer_p1 {
  line-height: 3.5vh;
}

#contact2 {
  font-size: 2.7vh;
  margin-left: 0 !important;
  position: relative;
  margin-bottom: 5%;
}

#contactus {
  text-indent: 18%;
}


#forma_container {
  width: 55%;
}

#info_red {
  margin-top: 3%;
}

#forma_div {
  margin-right: 0 !important;
}

.broj {
  color: #ffffff !important;
}

.mail {
  color: #ffffff !important;
}


/* end footer section*/
/*# sourceMappingURL=style.css.map */

/* Back to top dugme */
/* Scroll To TOP*/
.top-link {
  transition: all 0.2s ease-in-out;
  position: fixed;
  bottom: 0;
  right: 0;
  display: inline-flex !important;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin: 0 3em 3em 0;
  border-radius: 3px;
  padding: 0.25em;
  width: 45px;
  height: 45px;
  background: #38a2da;
  opacity: 2;
}
.top-link.show {
  visibility: visible;
  opacity: 1;
}
.top-link.hide {
  visibility: hidden;
  opacity: 0;
}
.top-link svg {
  fill: #000;
  width: 20px;
  height: 8px;
}
.top-link:hover {
  color: white;
  transform: scale(1.1);
}
.top-link:hover svg {
  fill: white;
}
.screen-reader-text {
  position: absolute;
  clip-path: inset(50%);
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  word-wrap: normal !important;
  clip: rect(1px, 1px, 1px, 1px);
}
.screen-reader-text:focus {
  display: block;
  top: 5px;
  left: 5px;
  z-index: 100000;
  clip-path: none;
  background-color: #eee;
  padding: 15px 23px 14px;
  width: auto;
  height: auto;
  text-decoration: none;
  line-height: normal;
  color: #444;
  font-size: 1em;
  clip: auto !important;
}
/*end scroll*/

/* Contact form */
#contact_container{
  width:500px;
  box-shadow: 0 15px 35px rgba(50,50,93,.1),0 5px 15px rgba(0,0,0,.07);
  padding:2em;
  background-color:#fff;
}
.form-group{
  margin-bottom:1.5em;
  transition:all .3s;
}
.form-label{
  font-size:.75em;
  color:var(--font-color);
  display:block;
  opacity:0;
  transition: all .3s;
  transform:translateX(-50px);
}
.form-control{
  box-shadow:none;
  border-radius:0;
  border-color:#ccc;
  border-style:none none solid none;
  width:100%;
  font-size:1.25em;
  transition:all .6s;
}
.form-control::placeholder{
  color:#aaa;
}
.form-control:focus{
  box-shadow:none;
  border-color:var(--font-hover-color);
  outline:none;
}
.form-group:focus-within{
  transform:scale(1.1,1.1);
}

.form-control:invalid:focus{
  border-color:red;
}
.form-control:valid:focus{
  border-color:green;
}

.btn{
  background: 0 0 #fff;
  border:1px solid #aaa;
  border-radius:3px;
  color:var(--font-color);
  font-size:1em;
  padding:10 50px;
  text-transform:uppercase;
}
.btn:hover{
  border-color:var(--font-hover-color);
  color:var(--font-hover-color);
}

textarea{
  resize:none;
}

.focused > .form-label{
  opacity:1;
  transform:translateX(0px);

}


/* Smartphone responsive */

@media only screen and (max-width: 600px) {
  body, html {
    overflow-x: hidden !important;
  }

  .navbar {
    width: 100vw;
    padding: 0;
  }

  .top-link {
    display: none !important;
  }

  .hero_area {
  background: url('../images/insight_bg2_mobile.png');
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 100%;
  height: auto;
  background-size: contain;
  background-repeat: no-repeat;
}

  #modules {
    padding-top: 40px !important;
  }

  .slider_section {
    height: 100vh;
    padding-bottom: 25px !important;
    padding-top: 20px !important;
  }

  .service_section .box {
    height: 52vh !important;
  }

  #forma_container2 {
    padding-bottom: 5%;
    width: 100% !important;
  }

  #forma_container {
    width: 100%;
  }

  .form-submit {
    width: 40vw;
  }

  #linije {
    position: absolute;
    top: 65vh;
    width: 100%;
    height: 40%;
    background-image: url("../images/linije.png");
    background-position: center;
    background-size: cover;
  }

  #linije2 {
    position: absolute;
    top: 285vh !important;
    width: 100%;
    height: 40%;
    background-image: url("../images/linije.png");
    background-position: center;
    background-size: cover;
  }

  .slider_section .detail-box .btn-box .btn-1 {
    width: 45vw !important;
    padding: 15px 22px !important;
    font-size: 2.6vh !important;
  }
  
  #offer_red {
    margin-top: 6vh;
  }

  #insight_tamno {
    top: 15px;
    left: 8px;
    width: 28.5vw;
    position: absolute;
  }

  #naslov1 {
    font-size: 4.9vh;
  }

  #moduli_tekst {
    font-size: 2.3vh;
  }

  .service_section .box {
    background-color: #ffffff;
    padding: 25px 15px;
    text-align: center;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
    margin-top: 45px;
    height: 410px;
    z-index: -2;
    border-radius: 10px;
    width: 100%;
    margin-right: 5%;
  }

  #why_section {
    height: 102vh !important;
    padding-top: 5vh !important;
    padding-bottom: 3vh !important;
  }

  #why_red1 {
    margin-top: 0 !important;
    padding-left: 4vw;
    padding-right: 4vw;
  }

  #why_red2 {
    margin-top: 0 !important;
    padding-left: 4vw;
    padding-right: 4vw;
  }

  #why_naslov1 {
    font-size: 3.2vh;
    color: #ffffff;
  }

  #why_naslov2 {
    font-size: 3.2vh;
    color: #ffffff;
  }

  #why_naslov3 {
    font-size: 3.2vh;
    color: #ffffff;
  }

  #why_naslov4 {
    font-size: 3.2vh;
    color: #ffffff;
  }

  #tekst61 {
    font-size: 2.8vh;
    font-family: 'Montserrat';
    font-weight: 500;
    text-align: left;
    margin-left: 20vw !important;
  }

  #ikonica4 {
    margin-top: 1.5vh;
  }

  #modules {
    padding-bottom: 5vh !important;
  }

  #modules_red2 {
    margin-top: 8vh;
  }

  #modules_tekst {
    padding-bottom: 0 !important;
  }
  
  #modules_tekst2 {
    font-size: 3.8vh;
    width: 70vw !important;
    padding-bottom: 2vh !important;
  }

  #goal_section {
    height: 100vh;
    padding-bottom: 4vh !important;
    background: linear-gradient(rgba(255, 255, 255, 0.53), rgba(255, 255, 255, 0.23)), url('../images/insight_bg1_mobile.png');
    background-size: cover;
    padding-top: 6%;
  }


  #goal_tekst {
    margin-top: 0 !important;
  }
  
  #tekst4 {
    font-size: 5vh;
    font-family: 'Montserrat';
    font-weight: 700 !important;
    color: #ffffff;
  }

  #ikonica2_red {
    display:block;
  }

  #team_container {
    margin-top: 9vh;
  }

  #team_naslov {
    margin-top: 3vh;
  }

  .contact_section {
    padding-left: 3vw;
    padding-right: 3vw;
  }

  #contact {
    padding-top: 5vh;
    height: 190vh;
  }

  .info_contact {
    margin-top: 3vh !important;
  }

  #mail_a {
    width: 55vw;
  }

  .heading_container h2 {
    padding-bottom: 5vh !important;
  }

  #contact2 {
    position: relative;
    bottom: 64vh !important;
    margin-top: 2vh !important;
    margin-bottom: 6vh !important;
    text-align: center;
  }

  #contactus {
    text-indent: unset;
  }

  .about_section .row {
    flex-direction: unset !important;
  }

  #forma_div {
    margin-top: 13vh;
    width: 100vw;
  }

  #contact_dugme {
    display: inline-block;
    padding: 15px 25px;
    background: rgb(56,162,218);
    background: linear-gradient(90deg, rgba(56,162,218,1) 0%, rgba(5,106,159,1) 100%);
    color: #ffffff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 10px;
    border: none;
    font-size: 2.2vh !important;
    font-family: 'Montserrat';
    font-weight: 500;
    width: 30vw;
  }

  .info_section {
    padding-top: 5vh !important;
  }

  #mapa {
    width: 350px;
    height: 350px;
    margin-top: 10vh;
    align-self: center;
  }

  #get_in_touch {
    width: 70vw;
  }

  #footer_container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #slajfna_tekst {
    font-size: 1.6vh;
    white-space: normal;
    padding-left: 3vw;
    padding-right: 3vw;
  }

  #slajfna_container {
    width: 100%;
  }

  .responsive-iframe {
    width: 90vw;
    height: 22.5vh;
  }

  #klip_container {
    padding-top: 38vh;
  }

  #naslov_insight {
    font-size: 4vh;
  }

}

/* Laptop responsive */
@media (max-width: 1536px) {
  .slider_section .detail-box .btn-box .btn-1 {
    width: 18%;
    padding: 15px 25px;
  }

  #linije2 {
    top: 222vh;
  }
}