 html {
     scroll-behavior: smooth;
 }

 body {
     margin: 0;
     font-family: Poppins;
     background: #fff;
     color: #333;
 }




 .container {
     width: 1240px;
     margin: 0 auto;

 }

 /* Header */
 .site-header {
     position: sticky;
     top: 0;
     background-color: #c7c7c7;
     /* Siva boja */
     height: 100px;
     display: flex;
     align-items: center;
     z-index: 1000;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }

 .site-header.scrolled {
     background-color: #c7c7c7;
     transition: background-color 0.3s ease;
 }

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

 .logo img {
     height: 80px;
     /* prilagodi po potrebi */
     display: block;
 }

 .main-nav ul {
     list-style: none;
     display: flex;
     gap: 30px;
     margin: 0;
     padding: 0;
 }

 .menu-toggle {
     display: none;
     flex-direction: column;
     justify-content: space-between;
     width: 30px;
     height: 22px;
     cursor: pointer;
     z-index: 1001;
 }

 .menu-toggle span {
     display: block;
     height: 3px;
     background-color: #121a43;
     border-radius: 2px;
     transition: 0.3s;
 }

 .main-nav a {
     text-decoration: none;
     color: #121a43;
     font-size: 18px;
     font-weight: bold;
     text-transform: uppercase
 }

 .main-nav a:hover {
     text-decoration: none;
     color: #f79239;
     font-size: 18px;
     font-weight: bold;
     text-transform: uppercase
 }

 .main-nav .dropdown {
     display: none;
     position: absolute;
     background-color: #fff;
     min-width: 200px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     z-index: 1000;
 }

 .main-nav .dropdown li {
     display: block;
 }

 .main-nav .dropdown li a {
     color: #fff;
     padding: 10px 15px;
     display: block;
     text-decoration: none;
     font-size: 16px;
     border-bottom: 1px solid #f79239;
     background-color: #121a43;
 }

 .main-nav .dropdown li a:hover {
     background-color: #f79239;
     color: #121a43;
 }

.language-switcher {
  font-weight: bold;
  white-space: nowrap; /* da se ne razdvaja SR | EN */
}

.language-switcher a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
}

.language-switcher a:hover {
  text-decoration: underline;
}




 /* Prikaz dropdowna na hover (desktop) */
 .main-nav li.has-dropdown {
     position: relative;
 }

 .main-nav li.has-dropdown:hover>.dropdown {
     display: block;
 }




 /* Hero Section */
 .hero-section {
     position: relative;
     height: 70vh;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     color: white;
     text-align: center;
 }

 .hero-section::before {
     content: "";
     position: absolute;
     inset: 0;
     background-image: url('../../images/heade2.jpg');
     /* zameni sa stvarnom putanjom */
     background-size: cover;
     background-position: center;
     filter: blur(3px) brightness(60%);
     z-index: 0;
 }

 .hero-section .container {
     position: relative;
     z-index: 1;
     max-width: 1240px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .hero-section h1 {
     font-size: 60px;
     margin-bottom: 10px;
     line-height: 1.2;
     font-weight: 800;
     color: #fff;
 }

 .hero-section p {
     font-size: 26px;
     margin-top: 0;
     line-height: 1.4;
     color: #fff;
 }

 /* Sekcija O Nama */

 .about-section {
     background-color: #121a43;
     padding: 60px 20px;
     color: #fff;
 }

 .about-section .container {
     width: 1240px;
     margin: 0 auto;
 }

 .about-section h2 {
     text-align: center;
     color: #f79239;
     font-size: 36px;
     margin-bottom: 30px;
 }

 .about-section p {
     font-size: 18px;
     line-height: 1.6;
     margin-bottom: 15px;
     text-align: center;
 }

 /* Mreža sa 4 kartice */
 .features-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 30px;
     margin-top: 50px;
 }

 /* Kartica (glass effect) */
 .feature-card {
     background: rgba(255, 255, 255, 0.15);
     backdrop-filter: blur(10px);
     border-radius: 16px;
     padding: 30px;
     color: #fff;
     box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
     transition: transform 0.3s ease;
 }

 .feature-card:hover {
     transform: translateY(-5px);
 }

 .feature-card h3 {
     font-size: 22px;
     margin: 15px 0 10px;
     color: #f79239;
 }

 .feature-card p {
     font-size: 16px;
     line-height: 1.5;
     text-align: start;
 }

 /* Ikonica */
 .feature-card .icon {
     background-color: white;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .feature-card .icon span {
     color: #121a43;
     font-size: 30px;
 }

 /* Responsive fallback (ako zatreba) */
 @media (max-width: 1024px) {
     .features-grid {
         grid-template-columns: 1fr;
     }
 }

 /* Resetuj box-sizing da padding ne širi element */
 *,
 *::before,
 *::after {
     box-sizing: border-box;
 }

 /* Sekcija: wrapper za pozadinu i raspored */
 #one.wrapper.style2.spotlights {
     background-color: #e0e0e0;
     padding: 0;
     overflow-x: hidden;
     width: 100%;
     /* sprečava horizontalni skrol */
 }

 /* Jedan red unutar spotlights */
 #one.wrapper.style2.spotlights>section {
     display: flex;
     flex-direction: row;
     width: 100%;
     min-height: 600px;
     align-items: stretch;
     margin: 0 auto;
 }

 /* Slika - 40% */
 #one .image {
     flex: 0 0 40%;
     max-width: 40%;
     height: 600px;
     overflow: hidden;
 }

 #one .image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center top;
     display: block;
 }

 /* Tekst - 60% */
 #one .content {
     flex: 0 0 60%;
     max-width: 60%;
     display: flex;
     align-items: center;
     background-color: #e0e0e0;
     padding: 2% 5% 2% 2%;
 }

 /* Unutrašnji tekstualni deo */
 #one .content .inner {
     width: 100%;
 }

 /* Naslov */
 #one h2 {
     font-size: 36px;
     margin-bottom: 15px;
     color: #121a43;
 }

 /* Paragrafi */
 #one p {
     font-size: 16px;
     line-height: 1.6;
     margin-bottom: 15px;
     color: #121a43;
 }

 /* Dugme */
 #one .btn-secondary {
     display: inline-block;
     background-color: #f79239;
     color: #fff;
     padding: 10px 20px;
     margin-top: 15px;
     border-radius: 6px;
     text-decoration: none;
     font-weight: bold;
     transition: background-color 0.3s ease;
 }

 #one .btn-secondary:hover {
     background-color: #e67c1e;
 }

 /* Ukloni nepotrebni <button> element oko linka */
 #one .actions button {
     all: unset;
     /* uklanja padding, border itd. */
 }

 #one .content1 {
     flex: 0 0 60%;
     max-width: 60%;
     display: flex;
     align-items: center;
     background-color: #c7c7c7;
     padding: 2% 5% 2% 2%;
 }

 /* Reset */
 *,
 *::before,
 *::after {
     box-sizing: border-box;
 }

 /* Glavni footer */
 .main-footer {
     background-color: #121a43;
     color: #fff;
     font-family: 'Poppins', sans-serif;
 }

 /* Gornji deo footera */
 .footer-top {
     padding: 60px 20px;
 }

 /* Centralni kontejner */
 .footer-container {
     max-width: 1240px;
     margin: 0 auto;
     text-align: center;
 }

 /* Naslov */
 .footer-container h2 {
     font-size: 36px;
     color: #f79239;
     margin-bottom: 20px;
 }

 /* Paragraf */
 .footer-container p {
     font-size: 16px;
     line-height: 1.6;
     margin-bottom: 40px;
     color: #ffffff;
 }

 /* Grid 4 kolone */
 .footer-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     justify-items: center;
 }

 /* Pojedinačna kutija */
 .footer-box {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(12px);
     border-radius: 10px;
     padding: 25px;
     width: 100%;
     max-width: 260px;
     text-align: left;
     color: #fff;
 }

 /* Naslovi unutar box-a */
 .footer-box h3 {
     font-size: 20px;
     color: #f79239;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     margin-bottom: 12px;

 }

 /* Paragrafi u box-u */
 .footer-box p {
     margin: 0;
     font-size: 15px;
     line-height: 1.5;
     text-align: center;
 }

 /* Material icons */
 .footer-box .material-icons {
     font-size: 20px;
     color: #f79239;
 }

 /* Ikone društvenih mreža */
 .footer-box a.fa-brands {
     font-size: 20px;
     padding-right: 20px;
     color: #fff;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-box a.fa-brands:hover {
     color: #f79239;
 }

 /* Donji deo footera */
 .footer-bottom {
     background-color: #121a43;
     padding: 20px;
     text-align: center;
     color: #fff;
     font-size: 14px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 /* Responsive */
 @media (max-width: 992px) {
     .footer-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 600px) {
     .footer-grid {
         grid-template-columns: 1fr;
     }

     .footer-box {
         max-width: 100%;
     }
 }

 #tel,
 #mail {
     text-decoration: none;
     color: #fff;

 }

 #tel:hover,
 #mail:hover {
     text-decoration: none;
     color: #f79239;

 }

 #wrapper {
     background-color: #121a43;
     padding: 0;
     margin: 0;
 }

 /* Unutrašnji sadržaj sekcije */
 .wrapper {
     max-width: 100%;
     width: 1240px;
     margin: 0 auto;
     padding: 60px 0px;
     align-items: center;
     justify-content: center;
 }

 /* Naslov */
 .wrapper h1.major {
     font-size: 50px;
     color: #f79239;
     /* narandžasta */
     margin-bottom: 20px;
     position: relative;
     display: inline-block;
     /* da linija prati širinu naslova */
 }

 .wrapper h1.major::after {
     content: "";
     display: block;
     width: 1240px;
     height: 4px;
     margin-top: 10px;
     background: linear-gradient(to right, #f79239, #c7c7c7);
     /* narandžasta ka sivoj */
     border-radius: 2px;
 }

 /* Paragrafi */
 .wrapper p {
     font-size: 16px;
     color: #ffffff;
     /* bela boja */
     line-height: 1.6;
     margin-bottom: 20px;
 }

 .slider-container {
     position: relative;
     overflow: hidden;
     width: 100%px;
     max-width: 1240px;
     margin: 0 auto;
     padding-top: 30px;
     padding-bottom: 30px;
     border-radius: 10px;
     align-content: center;
     justify-content: center;
 }

 .slider {
     display: flex;
     transition: transform 0.5s ease-in-out;
 }

 .slide {
     min-width: 100%;
     box-sizing: border-box;
 }

 .slide img {
     width: 100%;
     height: auto;
     display: block;
     border-radius: 10px;
 }

 /* Strelice */
 .slider-container .prev,
 .slider-container .next {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background-color: rgba(0, 0, 0, 0.5);
     color: #fff;
     font-size: 32px;
     border: none;
     padding: 10px 15px;
     cursor: pointer;
     z-index: 10;
     border-radius: 5px;
 }

 .slider-container .prev {
     left: 10px;
 }

 .slider-container .next {
     right: 10px;
 }

 /* ===== Modal (Fullscreen Preview) ===== */
 .modal-indoor {
     display: none;
     position: fixed;
     z-index: 1000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.8);
     justify-content: center;
     align-items: center;
     cursor: pointer;
 }

 .modal-indoor img {
     max-width: 90%;
     max-height: 90%;
     object-fit: contain;
     cursor: default;
 }

 .modal-indoor .navigation {
     position: absolute;
     top: 50%;
     width: 100%;
     display: flex;
     justify-content: space-between;
     padding: 0 20px;
 }

 .modal-indoor .prev,
 .modal-indoor .next {
     background-color: rgba(0, 0, 0, 0.5);
     color: #fff;
     font-size: 24px;
     border: none;
     padding: 10px 15px;
     cursor: pointer;
     border-radius: 5px;
 }

 @media (max-width: 768px) {
     .modal-indoor img {
         max-width: 100%;
         max-height: 100%;
     }
 }

 @media screen and (min-width: 1920px) {
     #one .image {
         flex: 0 0 35%;
         max-width: 35%;
     }


     #one .content,
     #one .content1 {
         flex: 0 0 65%;
         max-width: 65%;
     }
 }




 @media screen and (min-width: 1201px) and (max-width: 1366px) {
     .container {
         width: 1000px;
         margin: 0 auto;
     }

     /* Header */
     .site-header {
         position: sticky;
         top: 0;
         background-color: #c7c7c7;
         /* Siva boja */
         height: 90px;
         display: flex;
         align-items: center;
         z-index: 1000;
         box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
     }



     .logo img {
         height: 70px;
         /* prilagodi po potrebi */
         display: block;
     }

     .hero-section h1 {
         font-size: 50px;
         margin-bottom: 10px;
         line-height: 1.2;
         font-weight: 800;
         color: #fff;
     }

     .hero-section p {
         font-size: 22px;
         margin-top: 0;
         line-height: 1.4;
         color: #fff;
     }



     .about-section .container {
         width: 1000px;
     }

     .about-section p {
         font-size: 16px;
     }

     .feature-card {
         padding: 20px;
     }

     .feature-card h3 {
         font-size: 20px;
     }

     .feature-card p {
         font-size: 16px;
     }

     .feature-card .icon {
         width: 50px;
         height: 50px;
     }

     .feature-card .icon span {
         font-size: 26px;
         /* možeš prilagoditi po želji */
     }

     #one.wrapper.style2.spotlights>section {
         min-height: 500px;
         height: 500px;

     }

     #one .image {
         flex: 0 0 40%;
         max-width: 40%;
         height: 500px;
     }

     #one .content,
     #one .content1 {
         flex: 0 0 60%;
         max-width: 60%;
         height: 500px;
         padding: 50px;
     }

     .footer-container {
         width: 1000px;
     }

     .wrapper {
         width: 1000px;
         padding: 50px 0px;
     }


     .wrapper h1.major::after {
         width: 1000px;

     }

 }



 @media screen and (min-width: 1025px) and (max-width: 1200px) {
     .container {
         width: 950px;
         margin: 0 auto;
     }

     /* Header */
     .site-header {
         position: sticky;
         top: 0;
         background-color: #c7c7c7;
         /* Siva boja */
         height: 90px;
         display: flex;
         align-items: center;
         z-index: 1000;
         box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
     }



     .logo img {
         height: 70px;
         /* prilagodi po potrebi */
         display: block;
     }

     .hero-section h1 {
         font-size: 50px;
         margin-bottom: 10px;
         line-height: 1.2;
         font-weight: 800;
         color: #fff;
     }

     .hero-section p {
         font-size: 22px;
         margin-top: 0;
         line-height: 1.4;
         color: #fff;
     }


     .about-section .container {
         width: 950px;
     }

     .about-section p {
         font-size: 15px;
     }

     .feature-card {
         padding: 20px;
     }

     .feature-card h3 {
         font-size: 20px;
     }

     .feature-card p {
         font-size: 15px;
     }

     .feature-card .icon {
         width: 50px;
         height: 50px;
     }

     .feature-card .icon span {
         font-size: 26px;
         /* možeš prilagoditi po želji */
     }

     #one.wrapper.style2.spotlights>section {
         min-height: 500px;
         height: 500px;

     }

     #one .image {
         flex: 0 0 50%;
         max-width: 50%;
         height: 500px;

     }

     #one h2 {
         font-size: 30px;
         line-height: 1.2;
     }


     #one .content,
     #one .content1 {
         flex: 0 0 50%;
         max-width: 50%;
         height: 500px;
         padding: 50px;


     }


     #one .content p,
     #one .content1 p {
         font-size: 15px;

     }

     .footer-container {
         width: 950px;
     }

     .footer-container h2 {
         font-size: 30px;
     }

     .footer-container p {
         font-size: 15px;
     }

     .wrapper {
         width: 950px;
         padding: 50px 0px;
     }

     .wrapper h1.major {
         font-size: 45px;

     }

     .wrapper h1.major::after {
         width: 950px;

     }

     /* Paragrafi */
     .wrapper p {
         font-size: 15px;
     }
 }





 @media screen and (min-width: 881px) and (max-width: 1024px) {
     .container {
         width: 800px;
         margin: 0 auto;
     }

     /* Header */
     .site-header {
         position: sticky;
         top: 0;
         background-color: #c7c7c7;
         /* Siva boja */
         height: 90px;
         display: flex;
         align-items: center;
         z-index: 1000;
         box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
     }

     .logo img {
         height: 70px;
         /* prilagodi po potrebi */
         display: block;
     }

     .main-nav ul li a {
         text-decoration: none;
         color: #121a43;
         font-size: 16px;
         font-weight: bold;
         text-transform: uppercase
     }

     .main-nav ul li a:hover {
         text-decoration: none;
         color: #f79239;
         font-size: 16px;
         font-weight: bold;
         text-transform: uppercase
     }

     .hero-section h1 {
         font-size: 50px;
         margin-bottom: 10px;
         line-height: 1.2;
         font-weight: 800;
         color: #fff;
     }

     .hero-section p {
         font-size: 18px;
         margin-top: 0;
         line-height: 1.4;
         color: #fff;
     }

     .about-section .container {
         width: 800px;
     }

     .about-section h2 {
         font-size: 28px;
     }

     .about-section p {
         font-size: 15px;
     }

     .features-grid {
         grid-template-columns: 1fr;
     }

     .feature-card {
         width: 800px;
         padding: 20px;
     }

     .feature-card h3 {
         font-size: 18px;
     }

     .feature-card p {
         font-size: 15px;
     }

     .feature-card .icon {
         width: 50px;
         height: 50px;
     }

     .feature-card .icon span {
         font-size: 24px;
     }

     #one.wrapper.style2.spotlights>section {
         min-height: 500px;
         height: 500px;

     }

     #one .image {
         flex: 0 0 50%;
         max-width: 50%;
         height: 500px;
     }

     #one h2 {
         font-size: 30px;
         line-height: 1.2;
     }

     #one .content,
     #one .content1 {
         flex: 0 0 50%;
         max-width: 50%;
         height: 500px;
         padding: 30px;
     }

     #one .btn-secondary {
         font-size: 15px;
     }

     .footer-container {
         width: 800px;
     }

     .footer-container h2 {
         font-size: 30px;
     }

     .footer-container p {
         font-size: 15px;
     }

     .wrapper {
         width: 800px;
     }

     .wrapper h1.major {
         font-size: 40px;

     }

     .wrapper h1.major::after {
         content: "";
         display: block;
         width: 800px;

     }

     /* Paragrafi */
     .wrapper p {
         font-size: 15px;

     }
 }

 @media (max-width: 880px) {
     .container {
         width: 100%;
         padding-left: 20px;
         padding-right: 20px;
         margin: 0 auto;
     }

     .site-header {
         position: sticky;
         top: 0;
         background-color: #c7c7c7;
         /* Siva boja */
         height: 80px;
         display: flex;
         align-items: center;
         z-index: 1000;
         box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
     }


     .logo img {
         height: 50px;
         width: 170px;
         /* prilagodi po potrebi */
         display: block;
     }

     .menu-toggle {
         display: flex;
     }

     .main-nav {
         position: absolute;
         top: 80px;
         left: 0;
         right: 0;
         background-color: #c7c7c7;
         display: none;
         flex-direction: column;
         align-items: start;
         padding: 20px 0;
     }

     .main-nav.open {
         display: flex;
     }

     .main-nav ul {
         flex-direction: column;
         gap: 20px;
         padding-left: 20px;
     }

     .main-nav li.has-dropdown>.dropdown {
         display: block !important;
         position: static !important;
         background-color: inherit !important;
         /* koristi pozadinu od menija */
         box-shadow: none !important;
         padding-left: 10px;
         margin-top: 5px;

     }

     .main-nav .dropdown li a {
         background-color: inherit !important;
         color: #121a43 !important;
         font-size: 16px;
         font-weight: bold;
         border-bottom: 0px;
         text-transform: uppercase;
         padding: 6px 0;


     }

     .main-nav .dropdown li a:hover {
         color: #f79239 !important;
         background-color: transparent !important;
     }

     .main-nav ul li a {
         text-decoration: none;
         color: #121a43;
         font-size: 16px;
         font-weight: bold;
         text-transform: uppercase
     }

     .hero-section {
         position: relative;
         height: 60vh;
         width: 100%;
         padding: 0 5%;
         display: flex;
         align-items: center;
         justify-content: center;
         overflow: hidden;
         color: white;
         text-align: center;
     }

     .hero-section h1 {
         font-size: 40px;
         margin-bottom: 10px;
         line-height: 1.2;
         font-weight: 800;
         color: #fff;
     }

     .hero-section p {
         font-size: 18px;
         margin-top: 0;
         line-height: 1.4;
         color: #fff;
     }


     .about-section .container {
         width: 100%;
         padding-left: 5%;
         padding-right: 5%;

     }

     .about-section h2 {
         font-size: 28px;
     }

     .about-section p {
         font-size: 15px;
     }

     .features-grid {
         grid-template-columns: 1fr;
     }

     .feature-card {
         width: 100%;
         padding: 20px;
     }

     .feature-card h3 {
         font-size: 18px;
     }

     .feature-card p {
         font-size: 15px;
     }

     .feature-card .icon {
         width: 50px;
         height: 50px;
     }

     .feature-card .icon span {
         font-size: 24px;
     }

     #one.wrapper.style2.spotlights>section {
         flex-direction: column;

     }

     #one .image {
         width: 100%;
         max-width: 100%;
         height: 600px;

     }

     #one .image img {
         width: 100%;
         max-width: 100%;
         height: 600px;
     }

     #one .content,
     #one .content1 {
         width: 100%;
         max-width: 100%;
         padding: 10% 5%;
         margin: 0 auto;

     }

     #one h2 {
         font-size: 28px;
     }

     #one .btn-secondary {
         font-size: 14px;
     }
     .footer-container{
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
     }

     .footer-container h2 {
         font-size: 28px;
     }

     .footer-container p {
         font-size: 15px;
     }

      .wrapper {
         width: 100%;
         padding: 50px 20px;
     }

     .wrapper h1.major {
         font-size: 36px;

     }

     .wrapper h1.major::after {
         content: "";
         display: block;
         width: 100%;

     }

     /* Paragrafi */
     .wrapper p {
         font-size: 15px;

     }

 }

 @media (max-width: 431px) {
     .hero-section h1 {
         font-size: 30px;
         margin-bottom: 10px;
         line-height: 1.2;
         font-weight: 800;
         color: #fff;
     }

     .hero-section {
         position: relative;
         height: 50vh;
         width: 100%;
         display: flex;
         align-items: center;
         justify-content: center;
         overflow: hidden;
         color: white;
         text-align: center;
     }

     .hero-section p {
         font-size: 16px;
         margin-top: 0;
         line-height: 1.4;
         color: #fff;
     }

     .about-section h2 {
         font-size: 26px;
     }

     .feature-card h3 {
         font-size: 18px;
     }

     .feature-card p {
         font-size: 14px;
     }

     .feature-card .icon {
         width: 40px;
         height: 40px;
     }

     .feature-card .icon span {
         font-size: 22px;
     }

     #one .image {
         width: 100%;
         max-width: 100%;

     }

     #one .image img {
         width: 100%;
         max-width: 100%;
         height: 400px;
     }

     #one .content,
     #one .content1 {
         width: 100%;
         max-width: 100%;
         padding: 50px 20px;


     }

     #one h2 {
         font-size: 26px;
         line-height: 1.2;
     }

     #one .btn-secondary {
         font-size: 14px;
     }

     .footer-container h2 {
         font-size: 26px;
     }

     .footer-container p {
         font-size: 15px;
     }
      .wrapper {
         width: 100%;
         padding: 10% 5%;
     }

     .wrapper h1.major {
         font-size: 30px;

     }

     .wrapper h1.major::after {
         content: "";
         display: block;
         width: 100%;

     }

     /* Paragrafi */
     .wrapper p {
         font-size: 15px;

     }

 }