@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com');

/* variables */
:root {
    --white: #ffffff;
    --black: #1C1D20;
    --dark-gray: #727885;
    --light-gray: #B7BAC2;
    --brand-yellow: #FFFF00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Satoshi', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    max-width: 100%;
}

/* navigation */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    padding: 1rem 5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: transparent;
    transition: 
      background-color 0.3s ease,
      box-shadow 0.3s ease,
      backdrop-filter 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--white);
    box-shadow: 0 1px 10px rgba(28, 29, 32, 0.1);
}

.navbar_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
}

/* logo */
.navbar_container .navbar_logo img {
    width: 56px;
    height: 56px;
}

/* nav list */
.navbar_container .navbar_menu {
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
}

/* klasa iz js */
.navbar_container .navbar_menu.active {
    display: flex;
}

.navbar_container .navbar_menu li {
    display: flex;
    align-items: center;
    height: 48px;
}

.navbar_container .navbar_menu a {
    width: 100%;
    height: auto;
    text-decoration: none;
    color: var(--black);
    font-size: 1rem;
    font-weight: 700;
    padding: 6px 12px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.navbar_container .navbar_menu a:hover {
    color: var(--dark-gray);
}

.navbar_container .navbar_menu .primary_button {
    padding: 12px 24px;
    height: 48px;
    border-radius: 8px;
    border: 2px solid var(--black);
    background-color: var(--black);
    color: var(--white);
    transition: 0.3s ease;
    cursor: pointer;
}

.navbar_container .navbar_menu .primary_button a {
    padding: 0;
}

.navbar_container .navbar_menu .primary_button:hover {
    background-color: var(--brand-yellow);
    color: var(--black);
    border: 2px solid var(--black);
}

/* hamburger */
.navbar_toggle {
    display: none; /* nestajanje hamburgera na desktop ekranima 
    display: none dodati na kraju, kada se .navbar_toggle i .bar stilizuju i utvrdi im se dizajn*/
    background: transparent;
    padding: 12px;
    border: none;
    cursor: pointer;
    width: 56px;
    height: 56px;
}

.navbar_toggle.active .bar:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.navbar_toggle.active .bar:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

/* stilizovanje hamburger ikonice */
.navbar_toggle .bar {
    display: block;
    width: 32px;
    height: 2.5px;
    margin: 6px auto;
    border-radius: 10px;
    background-color: var(--black);
    transition: all 0.3s ease-in-out;
}

/* responsive style */
@media screen and (min-width: 320px) and (max-width: 1024px) {

.navbar {
    padding: 1rem 2rem;
}

/* stilizovanje hamburgera za tablet i mobile (sidebar) */
.navbar_container .navbar_menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    gap: 3rem !important;
    position: absolute;
    width: 100%;
    height: 100vh;
    max-width: 320px;
    /* pozicioniranje sa koje strane iskace sidemenu */
    top: 0;
    right: 0;
    padding: 9rem 1rem 3rem 1rem;
    box-shadow: 0 12px 12px rgba(28, 29, 32, 0.1);
    background-color: var(--white);
    color: var(--black);
    transition: 0.5s ease-in;
}

.navbar_container .navbar_menu a {
    display: block;
    width: 100%;
    white-space: normal;
    text-align: left;
    line-height: 120%;
    font-size: 2.25rem;
    font-weight: 500;
}

.navbar_container .navbar_menu .primary_button {
    width: 100%;
    font-weight: 500;
    height: 56px;
    margin-top: 1rem;
}

/* pojavljivanje hamburger ikonice */
.navbar_toggle {
    display: block;
    z-index: 999;
}

.navbar_toggle.active {
    width: 56px;
    height: 56px;
    border-radius: 100px;
    background-color: var(--black);
}

.navbar_toggle.active .bar {
    background-color: var(--white);
}

}

@media screen and (max-width: 480px) {

.navbar {
    padding: 1rem;
}

.navbar_container .navbar_menu {
    height: 100vh;
}

}





/* hero section*/
.hero_section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 700px;
    padding: 5rem;
    /* overflow: hidden; */
    /* border: 1px solid red; */
}

.hero_section .container {
    display: flex;
    justify-content: start;
    align-items: start;
    width: 100%;
    max-width: 1280px;
    height: 100%;
    /* border: 1px solid green; */
}

.hero_section .container .left_container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 70%;
    height: 100%;
    /* border: 1px solid brown; */
}

.hero_section .container .left_container .heading {
    width: 100%;
}

.hero_section .container .left_container .heading span {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--dark-gray);
    text-transform: uppercase;
}

.hero_section .container .left_container .heading h1 {
    font-family: "Bebas Neue", sans-serif;    
    font-size: 5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 95%;
    color: var(--black);
    text-transform: uppercase;
    width: 55%;
    margin-top: 8px;
} 

.hero_section .container .left_container .buttons {
    display: flex;
    gap: 1rem;
}

.hero_section .container .left_container .buttons .primary_button {
    padding: 12px 24px;
    height: 48px;
    border-radius: 8px;
    border: 2px solid var(--black);
    background-color: var(--black);
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.hero_section .container .left_container .buttons .primary_button:hover {
    background-color: var(--brand-yellow);
    color: var(--black);
    border: 2px solid var(--black);
}

.hero_section .container .left_container .buttons .secondary_button {
    padding: 12px 24px;
    height: 48px;
    border-radius: 8px;
    background-color: #ffffff00;
    border: 2px solid var(--black);
    color: var(--black);
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.hero_section .container .left_container .buttons .secondary_button:hover {
    background-color: var(--black);
    color: var(--white);
}

.hero_section .container .right_container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 1rem;
    width: 30%;
    height: 100%;
    /* border: 1px solid blue; */
}

.hero_section .container .right_container img {
    width: 250px;
    height: auto;
}

.hero_section .container .right_container p {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 1px;
    width: 100%;
    color: var(--black);
}

.hero_section .hero_character {
    position: absolute;
    width: auto;
    height: 140%;
    object-fit: cover;
    left: 50%;
    bottom: -115px;
    transform: translateX(-50%);
    z-index: -1;
}

.hero_section .yellow_background {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
    right: 0;
    bottom: 0;
    z-index: -2;
}

@media screen and (min-width: 1025px) and (max-width: 1370px) {

.hero_section .container .left_container .buttons {
    flex-direction: column;
    width: fit-content;
}

.hero_section .hero_character {
    height: 110%;
}

}

@media screen and (min-width: 320px) and (max-width: 1024px) {

.hero_section {
    padding: 1rem 2rem 3rem 2rem;
    height: 900px;
}

.hero_section .container {
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.hero_section .container .left_container {
    width: 100%;
}

.hero_section .container .left_container .heading h1 {
    font-size: 4rem;
    width: 500px;
}

.hero_section .container .right_container {
    width: 100%;
}

.hero_section .container .right_container p {
    width: 480px;
    line-height: 150%;
    color: var(--white);
}

.hero_section .container .right_container img {
    display: none;
}

.hero_section .hero_character {
    height: 95%;
    left: 60%;
}

.hero_section .yellow_background {
    bottom: 0;
}

.gradient_black {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    z-index: -1;
    background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(28, 29, 32, 1) 100%);
}

}

@media screen and (max-width: 550px) {
    
.hero_section .container .right_container p {
      width: 100%;
      font-size: 1rem;
}

}

@media screen and (max-width: 480px) {

.hero_section {
    padding: 1rem 1rem 2rem 1rem;
    height: 800px;
}

.hero_section .container .left_container .heading span {
    font-size: 0.75rem;
    width: 100%;
    text-align: center;
    display: block; 
    margin: 0 auto;
}

.hero_section .container .left_container .heading h1 {
    font-size: 2.75rem;
    width: 100%;
    text-align: center;
}

.hero_section .container .left_container .buttons {
    flex-direction: column;
}
}





/* services section */
.services_section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6.25rem 5rem;
    width: 100%;
    height: auto;
    background-color: var(--white);
}

.services_section .container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1280px;
    height: auto;
}

.services_section .container .header {
    display: flex;
    width: 100%;
    margin-bottom: 6.25rem;
}

.services_section .container .header h2 {
    font-family: "Bebas Neue", sans-serif;    
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 100%;
    width: 100%;
    color: var(--black);
}

.services_section .container .header .description {
    width: 640px;
}

.services_section .container .header .description p {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 1px;
    width: 100%;
    margin-bottom: 24px;
    color: var(--dark-gray);
}

.services_section .container .header .description .secondary_button {
    padding: 12px 24px;
    height: 48px;
    border-radius: 8px;
    background-color: var(--brand-yellow);
    border: 2px solid var(--black);
    color: var(--black);
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.services_section .container .header .description .secondary_button:hover {
    background-color: var(--black);
    color: var(--white);
}

.services_section .container .legal_entities_services, .companies_services {
    width: 100%;
    height: auto;
    margin-bottom: 5rem;
}

.services_section .container .legal_entities_services h3 {
    font-family: "Bebas Neue", sans-serif;    
    font-size: 2.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 100%;
    width: 100%;
    margin-bottom: 24px;
    color: var(--black);
}

.services_section .container .legal_entities_services .services_cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
}

.services_section .container .legal_entities_services .card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 1.25rem;
    width: 290px;
    height: 385;
    background-color: var(--white);
    border-radius: 32px;
    box-shadow: 0 4px 12px rgba(28, 29, 32, 0.08);
    z-index: 1;
}

.services_section .container .legal_entities_services .card .card_header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services_section .container .legal_entities_services .card .card_header img {
    width: 64px;
}

.services_section .container .legal_entities_services .card .card_header h4 {
    font-family: "Bebas Neue", sans-serif;    
    font-size: 2.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 100%;
    width: 100%;
    color: var(--black);
}

.services_section .container .legal_entities_services .card p {
    font-size: 1rem;
    width: 100%;
    font-weight: 500;
    line-height: 140%;
    color: var(--dark-gray);
}

.services_section .container .companies_services h3 {
    font-family: "Bebas Neue", sans-serif;    
    font-size: 2.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 100%;
    width: 100%;
    margin-bottom: 24px;
    color: var(--black);
}

.services_section .container .companies_services .services_cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
}

.services_section .container .companies_services .card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 1.25rem;
    width: 290px;
    height: 385;
    background-color: var(--white);
    border-radius: 32px;
    box-shadow: 0 4px 12px rgba(28, 29, 32, 0.08);
    z-index: 1;
}

.services_section .container .companies_services .card .card_header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services_section .container .companies_services .card .card_header img {
    width: 64px;
}

.services_section .container .companies_services .card .card_header h4 {
    font-family: "Bebas Neue", sans-serif;    
    font-size: 2.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 100%;
    width: 100%;
    color: var(--black);
}

.services_section .container .companies_services .card p {
    font-size: 1rem;
    width: 100%;
    font-weight: 500;
    line-height: 140%;
    color: var(--dark-gray);
}

.services_section .container .legal_entities_services .services_cards .yellow_vector {
    position: absolute;
    left: 0;
    max-width: 100%;
}

.services_section .container .companies_services .services_cards .yellow_vector {
    position: absolute;
    left: 0;
    max-width: 100%;
}

@media screen and (max-width: 1024px) {

.services_section {
    padding: 6.25rem 2rem;
}

.services_section .container .header {
    flex-direction: column;
}

.services_section .container .header h2 {
    margin-bottom: 4px;
}

.services_section .container .header .description p {
    margin-bottom: 32px;
    width: 430px;
}

}

@media screen and (max-width: 671px) {

.services_section .container .legal_entities_services .services_cards {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    padding: 16px 0;
    overflow-x: auto;
}

.services_section .container .legal_entities_services .services_cards::-webkit-scrollbar {
    width: 0;
}

.services_section .container .legal_entities_services .services_cards .card {
    min-width: 280px;
    height: auto;
}

.services_section .container .companies_services .services_cards {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    padding: 16px 0;
    overflow-x: auto;
}

.services_section .container .companies_services .services_cards::-webkit-scrollbar {
    width: 0;
}

.services_section .container .companies_services .services_cards .card {
    min-width: 280px;
    height: auto;
}

}

@media screen and (max-width: 480px) {

.services_section {
    padding: 5rem 1rem;
}

.services_section .container .header h2 {
    font-size: 2.25rem;
}

.services_section .container .header .description {
    width: 100%;
}

.services_section .container .header .description p {
    width: 100%;
    font-size: 1rem;
}

.services_section .container .legal_entities_services h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.services_section .container .companies_services h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.services_section .container .legal_entities_services .card .card_header h4 {
    font-size: 1.5rem;
}

.services_section .container .companies_services .card .card_header h4 {
    font-size: 1.5rem;
}

}





/* clients section*/
.clients_section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7.5rem 5rem;
    width: 100%;
    height: auto;
    background-color: var(--black);
}

.clients_section .container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    width: 100%;
    max-width: 1280px;
    height: auto;
}

.clients_section .container .header {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.clients_section .container .header h2 {
    font-family: "Bebas Neue", sans-serif;    
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 100%;
    width: 460px;
    color: var(--white);
}

.clients_section .container .header .description {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: fit-content;
}

.clients_section .container .header .description p {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 1px;
    width: 430px;
    margin-bottom: 24px;
    color: var(--light-gray);
}

.clients_section .container .header .description .secondary_button {
    padding: 12px 24px;
    width: 152px;
    height: 48px;
    border-radius: 8px;
    background-color: var(--brand-yellow);
    border: none;
    color: var(--black);
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.clients_section .container .header .description .secondary_button:hover {
    -webkit-box-shadow: 0px 0px 20px 0px #FFFF00; 
    box-shadow: 0px 0px 20px 0px #FFFF00;
}

.clients_section .container .carousel {
    display: flex;
    margin: 1rem auto;
    width: 100%;
    overflow-x: auto;
}

.clients_section .container .carousel::-webkit-scrollbar {
    display: none;
}

.clients_section .container .carousel .reviews_container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-right: 1rem;
    animation: spin 30s infinite linear;
}

@keyframes spin {
    from {translate: 0;}
    to {translate: -100%;}
}

@media screen and (max-width: 1024px) {

.clients_section {
    padding: 6.25rem 2rem;
}
    
.clients_section .container .header {
    flex-direction: column;
}
    
.clients_section .container .header h2 {
    margin-bottom: 4px;
}
    
.clients_section .container .header .description p {
    margin-bottom: 32px;
    width: 430px;
}
    
}

@media screen and (max-width: 480px) {

.clients_section {
    padding: 5rem 1rem;
}
    
.clients_section .container .header h2 {
    font-size: 2.25rem;
    width: 100%;
}
    
.clients_section .container .header .description {
    width: 100%;
}
    
.clients_section .container .header .description p {
    width: 100%;
    font-size: 1rem;
}

.clients_section .container .carousel .reviews_container img {
    width: 320px;
}

}





/* contact section*/
.contact_section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7.5rem 5rem;
    width: 100%;
    height: auto;
    background-color: var(--brand-yellow);
    background-image: url("/graphics/contact_section_pattern.png");
    /* background-repeat: no-repeat; */
    background-position: center;
    background-size: 95%;
}

.contact_section .container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    width: 100%;
    max-width: 1280px;
    height: auto;
}

.contact_section .container .header {
    width: 100%;
}

.contact_section .container .header h2 {
    font-family: "Bebas Neue", sans-serif;    
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 100%;
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
    color: var(--black);
}

.contact_section .container .header p {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
    color: var(--dark-gray);
}

.contact_section .container .cards_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 24px;
}

.contact_section .container .cards_container .contact_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-radius: 32px;
    background-color: var(--white);
    width: 305px;
    height: 185px;
    box-shadow: 0 0px 12px rgba(28, 29, 32, 0.08);
}

.contact_section .container .cards_container .contact_card img {
    width: 44px;
    height: 44px;
    margin-bottom: 0.75rem;
}

.contact_section .container .cards_container .contact_card h5 {
    font-family: "Bebas Neue", sans-serif;    
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 100%;
    width: 100%;
    text-align: center;
    margin-bottom: 1.25rem;
    color: var(--black);
}

.contact_section .container .cards_container .contact_card a {
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--black);
    transition: 0.3s all;
}

.contact_section .container .cards_container .contact_card a:hover {
    text-decoration: underline;
}

@media screen and (min-width: 481px) and (max-width: 1024) {
.contact_section {
    padding: 6.25rem 2rem;
}

}

@media screen and (max-width: 768px) {

.contact_section {
    background-size: 160%;
}

}

@media screen and (max-width: 550px) {

    .contact_section {
        background-size: 310%;
    }
    
    }

@media screen and (max-width: 480px) {

.contact_section {
    padding: 6.25rem 1rem;
}

.contact_section .container .header h2 {
    font-size: 2.25rem;
}

.contact_section .container .header p {
    font-size: 1rem;
}

.contact_section .container .header h5 {
    font-size: 1.25rem;
}

}





/* footer */
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5rem 3rem 5rem;
    width: 100%;
    background-color: var(--black);
}

footer .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    max-width: 1280px;
}

footer .container .top_content {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
}

footer .container .top_content .secondary_button {
    padding: 12px 24px;
    width: 152px;
    height: 48px;
    border-radius: 8px;
    background-color: var(--brand-yellow);
    border: none;
    color: var(--black);
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

footer .container .top_content .secondary_button:hover {
    -webkit-box-shadow: 0px 0px 20px 0px #FFFF00; 
    box-shadow: 0px 0px 20px 0px #FFFF00;
}

footer .container .middle_container {
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--light-gray);
}

footer .container .middle_container .left_side {
    width: 80%;
}

footer .container .middle_container .left_side h2 {
    font-family: "Bebas Neue", sans-serif;    
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 100%;
    width: 100%;
    color: var(--white);
    width: 340px;
    margin-bottom: 1rem;
}

footer .container .middle_container .left_side p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 1px;
    width: 100%;
    margin-bottom: 24px;
    color: var(--light-gray);
    width: 330px;
}

footer .container .middle_container .right_side {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 1.5rem;
}

footer .container .middle_container .right_side .contact_box {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    width: 100%;
}

footer .container .middle_container .right_side .contact_box .box_text {
    width: 100%;
}

footer .container .middle_container .right_side .contact_box h5 {
    font-size: 1.25rem;
    line-height: 100%;
    font-weight: 600;
    color: var(--white);
    width: 100%;
    margin-bottom: 0.375rem;
}

footer .container .middle_container .right_side .contact_box a {
    text-decoration: none;
    color: var(--light-gray);
    font-size: 1rem;
    line-height: 140%;
}

footer .container .middle_container .right_side .contact_box a:hover {
    text-decoration: underline;
}

footer .container .bottom_container {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    color: var(--light-gray);
}

footer .container .bottom_container .links {
    display: flex;
    gap: 1.5rem;
}

footer .container .bottom_container .links a {
    color: var(--light-gray);
}

@media screen and (max-width: 800px) {

footer {
    padding: 4rem 2rem;
}

footer .container .middle_container {
    flex-direction: column;
    align-items: start;
}

footer .container .middle_container .left_side {
    margin-bottom: 3rem;
}

}

@media screen and (max-width: 600px) {

footer .container .bottom_container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
    
}

@media screen and (max-width: 480px) {

footer {
    padding: 3rem 1rem;
}

footer .container .top_content  {
    flex-direction: column;
    gap: 2rem;
}

}





/* Dataschulsz */
.datenschultz {
    max-width: 100%;
    background-color: var(--black);
    color: var(--white);
}

.datenschultz .navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

.datenschultz .navigation .back_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.datenschultz .navigation .back_icon:hover {
    background-color: #ffffff0e;
}

.datenschultz .navigation .back_icon img {
    width: 24px;
}

.datenschultz .navigation img {
    width: 48px;
}

.datenschultz .heading {
    padding-left: 2rem;
}

.datenschultz .heading h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.25rem;
    font-weight: 500;
}

.datenschultz .poglavlje {
    padding: 2rem;
    width: 80%;
}

.datenschultz .poglavlje h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.datenschultz .poglavlje a {
    color: var(--brand-yellow);
    line-height: 160%;
}

@media screen and (max-width: 480px) {

.datenschultz .navigation {
    padding: 1rem;
}

.datenschultz .heading {
    padding-left: 1rem;
}

.datenschultz .heading h1 {
    font-size: 1.75rem;
}

.datenschultz .poglavlje {
    padding: 1rem;
}

.datenschultz .poglavlje h2 {
    font-size: 1.25rem;
}
}





/* Impressum */
.impressum {
    max-width: 100%;
    background-color: var(--black);
    color: var(--white);
}

.impressum .navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

.impressum .navigation .back_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.impressum .navigation .back_icon:hover {
    background-color: #ffffff0e;
}

.impressum .navigation .back_icon img {
    width: 24px;
}

.impressum .navigation img {
    width: 48px;
}

.impressum .heading {
    padding-left: 2rem;
}

.impressum .heading h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.25rem;
    font-weight: 500;
}

.impressum .poglavlje {
    padding: 2rem;
    width: 80%;
}

.impressum .poglavlje p {
    margin-bottom: 2rem;
}

.impressum .poglavlje a {
    color: var(--brand-yellow);
    line-height: 160%;
}

@media screen and (max-width: 480px) {

    .impressum .navigation {
        padding: 1rem;
    }
    
    .impressum .heading {
        padding-left: 1rem;
    }
    
    .impressum .heading h1 {
        font-size: 1.75rem;
    }
    
    .impressum .poglavlje {
        padding: 1rem;
    }
    
    .impressum .poglavlje h2 {
        font-size: 1.25rem;
    }
    }