:root {
    --blue: #000153;
    --white: #ffffff;
    --black: #000000;
    --orange: #FE7236;
    --light-blue: #EBF5FF;
    --green: #236422;
    --purple: #BD216B;
    --blue-secondary: #294694;
    --yellow: #F5B61D;
    --purple-secondary: #E45394;
  }

body, html {
    padding: 0;
    margin: 0;
}

.navbar {
    background-color: var(--blue); 
    display: flex;
    justify-content: center;
}

#menu {
    padding: 12px 64px !important;
    max-width: 1440px;
}

@media (max-width: 768px) {
    #menu {
        padding: 12px 16px !important;
    }
    .navbar-nav .nav-item:last-child {
        padding: 0 15px !important;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .navbar-nav .nav-item:last-child {
        padding: 0 15px !important; 
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .navbar-nav .nav-item:last-child {
        padding: 0 15px !important; 
    }
}

.dropdown-menu {
    position: absolute;
    top: 100%; 
    left: 0; 
    z-index: 1000; 
    background-color: var(--light-blue);
    color: var(--white)!important;
    border-radius: 0px;
}

.dropdown-menu li a {
    color: var(--blue) !important;    
    font-size: 16px;    
    font-weight: 600;
    line-height: 18px;
    margin: 15px 0;
}

.dropdown-menu li a:hover {
    color: var(--orange) !important; 
}

.dropdown-menu .dropdown-item {
    color: var(--blue) !important; 
    padding: 0 25px;
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--light-blue) !important; 
    color: var(--orange) !important; 
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-item-text {
    color: var(--white) !important; /* Dodato: Boja teksta za sve ostale tekstualne elemente unutar dropdown menija */
}

.navbar-brand img {
    border-radius: 50%;
}

.navbar-nav .nav-item {
    padding: 0 15px;
    position: relative;
}

.navbar-nav .nav-item:last-child {
    padding: 0 0;
}

.navbar-nav .nav-link {
    color: var(--white);
}

.navbar-nav .nav-link:hover {
    color: var(--orange)!important; 
}

.active-btn {
    color: var(--orange)!important; 
}

.nav-item.dropdown .nav-link.active {
    color: var(--orange)!important;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* -------------------------- HOMEPAGE -------------------------------------------- */
/* hero section */
.hero {
    background-image: url('/assets/images/homepage/hero/hero-section.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    min-height: 757px;
}

.elements {
    padding: 64px!important;
    max-width: 1440px;
}

.left-side {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.hero h3 {
    color: var(--orange)!important; 
    padding-bottom: 42px;
    font-weight: 700;
    line-height: 25px;
}

.hero h1 {
    color: var(--white)!important; 
    padding-bottom: 42px;
    text-transform: uppercase;
    font-size: 55px;    
    font-weight: 700;
    line-height: 61px;
}

.hero p {
    color: var(--white)!important; 
    padding-bottom: 42px;
    font-size: 16px;    
    font-weight: 600;
    line-height: 22px;  
}

.btn-contact {
    color: var(--white)!important; 
    border: 3px solid var(--orange);
    background-color: var(--orange);
    box-sizing: border-box;
    padding: 12px 45px;
    font-size: 24px;
    font-weight: 700;
    line-height: 25px;
    border-radius: 20px;
    width: 205px; /* Precizna širina */
    height: auto; /* ili fiksna visina */
    margin-bottom: 30px;
    transition: all 0.2s ease-in-out; /* Dodaj tranziciju za glatkiji efekat */
}



.btn-contact:hover {
    color: var(--orange)!important; 
    border: 3px solid var(--orange)!important;
    background-color: var(--white)!important;
}

#rounded-image {
    margin-top: 65px;
}

#img-certified {
    padding-top: 80px;
    width: 240px;
}

.img-british-council {
    width: 160px;
    height: 50px;
}
/* hero section */

/* services section */
.services {
    display: flex;
    justify-content: center;
}

.service-section {
    max-width: 1440px;
    padding: 164px 64px;
}

.service-section h3 {
    text-align: center;    
    text-transform: uppercase;
    font-size: 24px;    
    font-weight: 600;
    line-height: 54px;
    color: var(--blue);
}

.service-section h2 {
    text-align: center;    
    font-size: 48px;    
    font-weight: 700;
    line-height: 54px;
    color: var(--blue);
    margin-bottom: 60px;
}

.divider {
    margin: 0 auto;
    text-align: center;
    width: 150px;
    border-bottom: 3px solid var(--orange);
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--light-blue);
    border-radius: 30px;
    border-color: transparent;
    padding: 70px 50px;
    color: var(--black);
    transition: all .3s ease-in-out; 
}

.card-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 54px;
    margin-bottom: 20px;
}

.card-text {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
}

.hide {
    display: none;
}

.card:hover .hide {
    margin: auto;
    margin-top: 30px;
    display: block;
}

.card-hover:hover {
    background-color: var(--blue);
    border-radius: 30px;
    border-color: transparent;
    padding: 70px 50px 50px 50px;
    color: var(--white);
    transform: scale(1.2);
    z-index: 1;
    cursor: pointer;
}

/* services section */

/* about section */
.about {
    background-image: url('/assets/images/homepage/about/about-section.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 1176px;
    color: var(--white);
}

.about-section {
    max-width: 1440px;
    padding: 88px 64px;
}

.first-section {
    margin-bottom: 129px;
}

.first-section > div > h5 {
    font-weight: 600;
    font-size: 24px;
    line-height: 54px;
}

.first-section > div > h2,
.second-section > div > h2  {
    font-weight: 700;
    font-size: 48px;
    line-height: 54px;
    margin-bottom: 40px;
}

.first-section > div > h2 span,
.second-section > div > h2 span {
    color: var(--orange);
}

.first-section > div > p {
    margin-top: 10px;
    margin-bottom: 74px;
}

.second-section > div > p {
    padding-right: 127px;
}

.first-section > div > p,
.second-section > div > p  {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
}

.counter-number {
    color: var(--orange);
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 20px;
}

.counter-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
}

.img-about {
    width: 540px;
    height: 540px;
}

.img-exam {
    max-width:  205px;
    max-height: 135px;
}

.circle-experience {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgb(0, 1, 83);
    background: linear-gradient(135deg, rgba(0, 1, 83, 1) 0%, rgba(0, 1, 83, 1) 35%, rgba(39, 40, 147, 1) 100%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    float: inline-end;
    margin-top: -250px;
    margin-right: 50px;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    position: relative;
}
/* about section */

/* blog section */
.blog {
    display: flex;
    justify-content: center;
}

.blog-section {
    width: 1440px;
    padding: 88px 64px;
    color: var(--blue);
}

.blog-section h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 54px;
}

.blog-section h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
    margin-top: 20px;
    margin-bottom: 42px;
}

.post {
    background-color: var(--light-blue);
    padding: 41px;
    border-radius: 30px;
}

.post-body {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    height: 100%;
}

.post-image {
    border-radius: 30px;
    width: 100%;
    height: 312px;
    margin-bottom: 22px;
}

.post-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}

.post-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;  
    margin-top: 6px;
    margin-bottom: 12px;
}

.post-button {
    font-size: 24px;
    font-weight: 700;
    line-height: 54px;
    text-decoration: none;
    color: var(--orange);
}

.post-button:hover {
    color: var(--orange);
    transform: scale(1.05);
}

.post-arrow {
    width: 16px;
    height: 23px;
    margin: -4px 8px 0 8px;
}

.post-arrow-sm {
    width: 10px;
    height: 16px;
    margin: -4px 8px 0 8px;
}

.side-post {
    background-color: var(--light-blue);
    padding: 41px;
    border-radius: 30px;
}

.side-post-title {
    font-size: 24px;
    font-weight: 700;
}

.side-post-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;  
    margin-top: 6px;
    margin-bottom: 12px;
}

.side-post-button {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: var(--orange);
    float: inline-end;
    margin-top: -20px;
}

.side-post-button:hover {
    color: var(--orange);
    transform: scale(1.05);
}
/* blog section */

/* testemonial section */
.testemonial {
    background-image: url('/assets/images/homepage/testemonial/testemonial-section.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.testemonial-section {
    width: 100%;
    max-width: 1440px;
    padding: 88px 64px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.testemonial-section h2{
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;  
}

#testemonial-carousel {
    margin: 50px 0;
}

.testimonial-card>div>p {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px; 
    text-align: start;
}

/* testemonial section */

/* client section */
.client {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--blue);
}

.client-section {
    width: 100%;
    max-width: 1440px;
    padding: 88px 64px 115px 64px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.client-section h2{
    line-height: 54px;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 99px;
}

.slide-img {
    width: 200px;
    height: 150px;
}
.splide__pagination {
    display: none;
}

.splide__arrows {
    display: none;
}
/* client section */

@media (min-width: 1200px) and (max-width: 1440px) {
    .hero {
        min-height: 757px;
    }

    #rounded-image {
        margin-top: 165px;
        width: 100%;
    }

    .circle-experience {
        width: 120px;
        height: 120px;
        margin-right: 0;
        margin-top: -150px;
    }
}

/* Responsive adjustments */
@media screen and (max-width: 1200px) {
    /* hero section */
    .hero {
        height: auto;
        padding: 40px 20px;
    }

    .elements {
        padding: 40px 20px !important;
        flex-direction: column;
    }

    .right-side {
        display: none;
    }

    .left-side {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 42px;
    }

    .hero p {
        font-size: 14px;
        line-height: 20px;
    }

    #img-certified,
    .img-british-council {
        width: 100%;
        max-width: 150px;
        height: auto;
    }

    /* services section */
    .service-section {
        padding: 80px 20px;
    }

    .service-section h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .card {
        padding: 40px 30px;
    }

    .card-title {
        font-size: 24px;
        line-height: 30px;
    }

    .card-text {
        font-size: 14px;
        line-height: 20px;
    }

    /* about section */
    .about {
        height: auto;
        padding: 40px 20px;
    }

    .about-section {
        padding: 40px 20px;
    }

    .first-section-img {
        display: none;
    }

    .first-section,
    .second-section {
        margin-bottom: 40px;
        flex-direction: column;
    }

    .first-section > div,
    .second-section > div {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .img-about,
    .img-exam {
        width: 100%;
        height: auto;
    }

    .circle-experience {
        width: 100px;
        height: 100px;
        margin-right: 0;
        margin-top: -120px;
    }

    .second-section > div > p {
        padding-right: 0;
    }

    /* blog section */
    .blog-section {
        padding: 40px 20px;
    }

    .blog-section h2 {
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 20px;
    }

    .post, 
    .side-post {
        padding: 20px;
        margin-bottom: 20px;
    }

    .post-body, 
    .side-post-body {
        padding: 20px;
    }

    .post-title, 
    .side-post-title {
        font-size: 20px;
        line-height: 28px;
    }

    .post-text, 
    .side-post-text {
        font-size: 14px;
        line-height: 20px;
    }

    .post-button, 
    .side-post-button {
        font-size: 18px;
        line-height: 22px;
    }

    .post-arrow,
    .post-arrow-sm {
        width: 12px;
        height: 16px;
    }

    .row.p-0.m-0.d-flex.align-items-stretch {
        flex-direction: column;
    }

    .col-5, 
    .col-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* testemonial section */
    .testemonial-section {
        padding: 40px 20px;
    }

    .testemonial-section h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .testimonial-card>div>p {
        font-size: 14px;
        line-height: 20px;
    }

    /* client section */
    .client-section {
        padding: 40px 20px;
    }

    .client-section h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .slide-img {
        width: 150px;
        height: 100px;
    }
}


/* footer section */
.footer {
    background-image: url('/assets/images/footer/footer-section.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    /* height: 335px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-section {
    max-width: 1440px;
    padding: 35px 64px;
}

.footer-section h2 {
    color: var(--orange)!important;
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    margin-bottom: 35px;
}

.info {
    gap: 60px;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 35px;
}

.location {
    margin-bottom: 35px;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
}

.location-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-menu {
    gap: 40px;    
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 45px;
}

.footer-menu a { 
    color: var(--white);
    text-decoration: none;
}

.footer-menu a:hover { 
    color: var(--orange);
    text-decoration: none;
    transform: scale(1.1);
}

.menu-item {
    position: relative;
}

.menu-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white)!important;
}

.arrow {
    margin-left: 5px;
    font-size: 12px;
}

.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    /* left: 0; */
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    white-space: nowrap; 
    background-color: var(--blue);
    color: var(--white);
    left: 50%; /* Adjusted to center */
    transform: translateX(-50%); 
}

.menu-item:hover .sub-menu {
    display: block;
}

.sub-menu a {
    display: inline-block; 
    padding: 5px 10px;
    text-decoration: none;
}

.social {
    gap: 20px;
}

.social a:hover {
    transform: scale(1.2);
}

.img-location {
    width: 14px;
    height: 14px;
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--blue);
    color: var(--white);
    height: 50px;
    text-decoration: none;
}

.copyright a {
    color: var(--orange);
    text-decoration: none; 
}

.copyright a:hover {
    color: var(--orange);
    text-decoration: none;
    
}

/* Media Query for screens smaller than 1200px */
@media (max-width: 1200px) {
    .info {
        flex-direction: column;
        gap: 20px;
    }
    
    .location {
        display: none; /* Hides the location section */
    }

    .footer-menu {
        flex-direction: column;
        gap: 20px;
    }

    .footer-section {
        padding: 0!important;
    }
}

/* footer section */
/* -------------------------- HOMEPAGE -------------------------------------------- */

/* -------------------------- CONTACT -------------------------------------------- */
/* hero section */
.contact-hero {
    background-image: url('../assets/images/contact/hero-contact.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: -72px;
    width: 100%;
    height: 460px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-hero-section {
    width: 100%; 
    max-width: 1440px;
    padding: 115px 396px 64px 396px; 
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: var(--white);
}

.contact-hero-section h1 {
    margin-bottom: 33px;
    font-size: 55px; /* Veličina za velike ekrane */
    font-weight: 700;
    line-height: 61px;
}

.contact-hero-section p {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

/* Media Query za ekrane manje od 1200px */
@media (max-width: 1200px) {
    .contact-hero {
        height: auto; 
        padding: 40px 20px; 
    }

    .contact-hero-section {
        padding: 20px; 
    }

    .contact-hero-section h1 {
        font-size: 36px; 
        line-height: 42px;
    }

    .contact-hero-section p {
        font-size: 14px; 
        line-height: 20px;
    }
}

/* hero section */

/* info section */
.info-section {
    width: 100%; /* Omogućava prilagodljivost širine */
    /* width: 1440px; */
    padding: 92px 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--blue);
}

.contact-form {
    margin-bottom: 26px;
    padding: 28px 44px 66px 44px;
    border-radius: 10px;
    border-top: none;
    border-left: none;
    border-bottom: 2px solid var(--light-blue);
    border-right: 2px solid var(--light-blue);
}

.contact-form h3 {
    margin: 28px 0 50px 0;
    font-size: 29px;
    font-weight: 700;
    line-height: 34px;
}

.contact-form label {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
}

.contact-form input {
    margin-bottom: 26px;
    background-color: var(--light-blue);
    border: none;
}

.contact-form textarea {
    margin-bottom: 26px;
    background-color: var(--light-blue);
    height: 144px;
    border: none;
}

.info-card {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: var(--light-blue);
    border-radius: 5px;
    padding: 12px 34px;
    width: 100%; /* Puna širina za manje ekrane */
    margin-bottom: 10px;
}

.info-card image {
    width: 20px;
    height: 18px;
    margin-bottom: 8px;
}

.info h6 {
    font-size: 15px;
    font-weight: 700;
    line-height: 20px; 
}

.info p {
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;  
    margin: 0;
}

.map-location {
    padding: 0 35px;
    background-color: var(--light-blue);
    margin-bottom: 12px;
}

.map-location h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;  
    color: var(--orange);
    margin-top: 24px;
}

.card-location {
    margin-top: 24px;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.card-location>div>img {
    width: 12px;
    height: 17px;
    margin-right: 13px;
    margin-top: 4px;
}

.card-location>div>h6 {
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
}

.card-location>div>p {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

/* Media Query za ekrane manje od 1200px */
@media (max-width: 1200px) {
    .info-section {
        padding: 40px 20px;
    }
    .map-location {
        display: flex;
        flex-direction: column;
        align-items: center; /* Centriranje sadržaja horizontalno */
        justify-content: center; /* Centriranje sadržaja vertikalno */
        text-align: center; /* Centriranje teksta */
        padding: 10px; /* Smanjen padding */
    }

    .location-img {
        flex-direction: column;
        justify-content: center;
    }

    .left-side, .right-side {
        width: 100%;
    }

    .contact-form {
        padding: 20px;
    }

    .info-card {
        width: 100%; /* Puna širina za kartice na manjim ekranima */
    }

    .map-location {
        padding: 10px;
    }

    .card-location {
        margin-bottom: 20px;
    }

    .google-map {
        height: 300px; /* Smanjena visina mape na manjim ekranima */
    }

    .card-location>div>p {
        font-size: 14px;
    }
}

/* info section */

/* faq section */

.faq {
    background-color: var(--light-blue);
    display: flex;
    justify-content: center;
}

.faq-section {
    width: 100%; 
    max-width: 1440px;
    padding: 92px 64px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.faq-section h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
    margin-bottom: 81px;
    color: var(--blue);
    text-align: center;
}

.question {
    margin: 0 134px 51px 26px;
}

.question h5 {
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    color: var(--orange);
}

.question p {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

/* Media Query za ekrane manje od 1200.01px */
@media (max-width: 1200px) {
    .faq-section {
        padding: 40px 20px; /* Smanjen padding za manje ekrane */
    }

    .d-flex img {
        margin: 0 10px 0 0 !important;
    }
    .d-flex {
        flex-direction: column; /* Prikaz kolona jedna ispod druge */
    }

    .col-6 {
        width: 100%; /* Širina kolona sada zauzima celu širinu */
        margin-bottom: 40px; /* Razmak između kolona */
    }

    .question {
        margin: 0 0 40px 0; /* Smanjen margin unutar pitanja */
    }

    .question h5, .question p {
        font-size: 14px; /* Smanjena veličina fonta za manje ekrane */
        line-height: 20px;
    }

    .faq-section h2 {
        font-size: 36px; /* Smanjena veličina naslova za manje ekrane */
        line-height: 42px;
        margin-bottom: 60px;
    }
}

/* faq section */

/* -------------------------- CONTACT -------------------------------------------- */

/* -------------------------- ABOUT -------------------------------------------- */
/* hero section */
.about-hero {
    background-image: url('../assets/images/about/header-about.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 460px;
}

.about-hero-section {
    width: 100%;
    max-width: 1440px;
    padding: 115px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: var(--white);
}

.about-hero-section h1{
    margin-bottom: 20px;
    font-size: 44px;
    font-weight: 700;
    line-height: 50px;
}

.about-hero-section p{
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    max-width: 648px;
}

/* partnership section */
.partnership {
    display: flex;
    justify-content: center;
}

.partnership-section {
    width: 100%;
    max-width: 1440px;
    padding: 80px 5%;
}

.partnership-section h2 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    color: var(--blue);
}

.partnership-section h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--orange);
}

.partnership-section p {
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

/* method section */
.method {
    background-image: url('../assets/images/about/metode-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* max-height: 382px; */
}

.method-section { 
    width: 100%;
    max-width: 1440px;
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.method-section h2{ 
    margin-bottom: 28px;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px; 
}

.method-section p{     
    margin-top: 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

/* cooperation section */
.cooperation {
    display: flex;
    justify-content: center;
}

.cooperation-section {
    width: 100%;
    max-width: 1440px;
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.cooperation-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    color: var(--blue);
}

.cooperation-card {
    margin-top: 30px;
    padding: 20px 30px;
    background-color: var(--light-blue);
    border-radius: 20px;
}

.cooperation-card h5 {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--orange);
}

.cooperation-card p {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

/* access section */
.access {
    background-image: url('../assets/images/about/pristup-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* max-height: 500px; */
}

.access-section { 
    width: 100%;
    max-width: 1440px;
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
}

.access-section h2{ 
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
}

.access-section h5{ 
    margin-top: 28px;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--orange);
}

.access-section p{ 
    margin-top: 14px;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

/* teacher section */
.teacher {
    display: flex;
    justify-content: center;
}

.teacher-section {
    width: 100%;
    max-width: 1440px;
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.card-teacher{ 
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 20px;
}

.card-teacher h3{ 
    margin-bottom: 28px;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    color: var(--blue);
}

.card-teacher h5{ 
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--orange);
}

.card-teacher p{ 
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

/* gallery section */

.gallery {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.gallery-section {
    width: 100%;
    /* max-width: 1440px; */
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.gallery-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    color: var(--blue);
}

.gallery-section p {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;    
    color: var(--black);
}

#tab-gallery-content {
    width: 100%;
    max-width: 1440px;
    padding: 32px 5%;
    margin: auto;
}

.uniform-image {
    width: 100%;
    height: 200px !important; 
    object-fit: cover; 
    object-position: center;
    border-radius: 5px; 
}

.access-section-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

/* Responsive adjustments */
@media screen and (max-width: 1200px) {
    .teacher-img,
    .partnership-img {
        width: 100%;
    }    
    .about-hero-section,
    .partnership-section,
    .method-section,
    .cooperation-section,
    .access-section,
    .teacher-section,
    .gallery-section {
        padding: 60px 20px;
    }

    .partnership-section,
    .access-section,
    .teacher-section,
    .cooperation-section {
        flex-direction: column;
    }

    .card-teacher,
    .cooperation-card {
        padding: 20px;
    }

    .about-hero-section h1 {
        font-size: 36px;
        line-height: 42px;
    }

    .method-section h2, 
    .partnership-section h2, 
    .cooperation-section h2,
    .access-section h2,
    .gallery-section h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .teacher-section {
        flex-direction: column;
    }

    .card-teacher h3 {
        font-size: 36px;
        line-height: 42px;
    }

    .access-img {
        display: none!important;
    }
    
    .teacher-img {
        display: none!important;
    }
}

/* -------------------------- ABOUT -------------------------------------------- */
/* -------------------------- TRANSLATION -------------------------------------------- */

/* translation hero section */
.translation-hero {
    background-image: url('../assets/images/translation/header-translation.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 360px;
}

.translation-hero-section { 
    width: 1440px;
    align-items: center;
    padding: 106px 396px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    text-align: center;
}

.translation-hero-section h2{ 
    margin-bottom: 28px;
    font-size: 55px;
    font-weight: 700;
    line-height: 61px;
}

.translation-hero-section p{ 
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}
/* translation hero section */

/* translation section */
.translation {
    display: flex;
    justify-content: center;
    text-align: center;
}

.translation-section {
    width: 1440px;
    padding: 168px 64px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.translation-section h2{
    font-size: 44px;
    font-weight: 700;
    line-height: 50px;
    color: var(--blue);
    margin-bottom: 28px;
}

.translation-section p{
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;    ;
    margin-top: 18px;
    text-align: start;
}

.card-translation {
    background-color: var(--light-blue);
    border: none;
    border-radius: 20px;
    padding: 18px 25px;
    margin: 86px 0;
}

.translation-side {
    text-align: start;
    padding: 76px 0;
}

.translation-side h3 {   
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
    margin-bottom: 28px;
    color: var(--blue);
}

.translation-side p {   
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin-top: 28px;
}
/* translation section */

/* contact section */
.translation-contact {
    display: flex;
    justify-content: center;
    background-color: var(--light-blue);
    height: 316;
}

.translation-contact-section {
    width: 1440px;
    padding: 72px 0 110px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.translation-contact-section h2{
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
    margin-bottom: 32px;
    color: var(--blue);
}
/* contact section */

/* Media query for screens smaller than 1200px */
@media (max-width: 1200px) {

    .translation-img {
        width: 100%;
    }
    .translation-hero-section {
        width: 100%;
        padding: 80px 40px;
    }

    .translation-hero-section h2 {
        font-size: 40px;
        line-height: 48px;
    }

    .translation-hero-section p {
        font-size: 14px;
        line-height: 20px;
    }

    .translation-section {
        width: 100%;
        padding: 100px 40px;
    }

    .translation-section h2 {
        font-size: 36px;
        line-height: 44px;
    }

    .translation-section p {
        font-size: 14px;
        line-height: 20px;
    }

    .card-translation {
        margin: 40px 0;
        padding: 16px 20px;
    }

    .translation-side {
        padding: 40px 0;
    }

    .translation-side h3 {
        font-size: 36px;
        line-height: 44px;
    }

    .translation-side p {
        font-size: 14px;
        line-height: 20px;
    }

    .translation-contact-section {
        width: 100%;
        padding: 50px 0 80px 0;
    }

    .translation-contact-section h2 {
        font-size: 36px;
        line-height: 44px;
    }
}

/* Media query for screens smaller than 768px */
@media (max-width: 768px) {
    .translation-hero {
        max-height: 240px;
    }

    .translation-hero-section {
        padding: 60px 20px;
    }

    .translation-hero-section h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .translation-hero-section p {
        font-size: 12px;
        line-height: 18px;
    }

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

    .translation-section h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .card-translation {
        margin: 20px 0;
        padding: 12px 16px;
    }

    .translation-side {
        padding: 20px 0;
    }

    .translation-side h3 {
        font-size: 28px;
        line-height: 34px;
    }

    .translation-side p {
        font-size: 12px;
        line-height: 18px;
    }

    .translation-contact-section {
        padding: 40px 0 60px 0;
    }

    .translation-contact-section h2 {
        font-size: 28px;
        line-height: 34px;
    }
}

/* -------------------------- TRANSLATION -------------------------------------------- */

/* -------------------------- COURSE -------------------------------------------- */

/* course hero section */
.course-hero {
    background-image: url('../assets/images/course/header-kursevi.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 360px;
}

.course-hero-section {
    width: 100%;
    max-width: 1440px;
    align-items: center;
    padding: 106px 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    text-align: center;
}

.course-hero-section h1 {
    margin-bottom: 28px;
    font-size: 55px;
    font-weight: 700;
    line-height: 61px;
}

.course-hero-section p {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    max-width: 648px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .course-hero-section {
        padding: 80px 50px;
        max-height: 100%;
    }

    .course-hero-section h2 {
        font-size: 48px;
        line-height: 54px;
    }

    .course-hero-section p {
        font-size: 15px;
        line-height: 20px;
    }
}

@media (max-width: 992px) {
    .course-hero-section {
        padding: 60px 30px;
        max-height: 100%;
    }

    .course-hero-section h2 {
        font-size: 40px;
        line-height: 45px;
    }

    .course-hero-section p {
        font-size: 14px;
        line-height: 18px;
    }
}

@media (max-width: 768px) {
    .course-hero-section {
        padding: 40px 20px;
        max-height: 100%;
    }

    .course-hero-section h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .course-hero-section p {
        font-size: 13px;
        line-height: 16px;
    }
}

@media (max-width: 576px) {
    .course-hero-section {
        padding: 20px 10px;
        max-height: 100%;
    }

    .course-hero-section h2 {
        font-size: 24px;
        line-height: 28px;
    }

    .course-hero-section p {
        font-size: 12px;
        line-height: 14px;
    }
}
/* course hero section */

/* course tabs section */

.nav {
    background-color: var(--light-blue);
    padding: 21px 0;
    color: var(--blue)!important;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    border: none !important;
}

.nav-tabs .nav-link {
    transition: none;
    color: var(--blue);
}

a:hover {
    border: none !important;
}

.active {
    border: none !important;
    color: var(--orange) !important;
    background-color: var(--light-blue) !important;
}

/* tab nemacki */
#nemacki {
    background-color: var(--white) !important;
    padding-top: 84px;
}

.flag-de {
    background-image: url('../assets/images/course/baner-de.png');
    height: 206px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.flag-de h2{
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
    margin-bottom: 30px;
}

.explanation-de {
    background-color: var(--light-blue);
    padding: 60px 64px 0px 64px;
    display: flex;
    justify-content: center;
    margin: 92px 0;
}

.orange-line {
    height: 230px;
    margin-top: 10px;
}

.tab-card {
    max-height: 132px!important;
    margin-bottom: 85px!important;
    max-width: 600px!important;
}

.tab-card h4 {
    font-size: 28px!important;
    font-weight: 600!important;
    line-height: 30px!important;
    text-align: left!important;
    margin-bottom: 18px!important;
}

.tab-card p {
    font-size: 16px!important;
    font-weight: 600!important;
    line-height: 22px!important;
    text-align: left!important;    
    color: var(--black)!important   ;
}

.level-de {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 1440px;
    padding: 44px 64px;
}

.level-de h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    margin-bottom: 32px;
}

.level-card {
    background-color: var(--blue);
    border-radius: 20px;
    margin: 12px 8px;
    padding: 27px 32px;
}

.level-card h4{
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;

}

.level-card p{
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-align: left;
    color: var(--white);
}

/* tab nemacki */
/* tab engleski */
#engleski {
    padding: 168px 0 0 0;
    background-color: var(--white)!important;
}
.title-eng {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--white);
    margin-bottom: 223px;
}

.title-eng h2{
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
    color: var(--blue);
    margin-bottom: 30px;    
}

.title-eng h4{
    font-size: 28px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;  
    margin-top: 22px;    
}

.background-eng {
    background-image: url('../assets/images/course/baner-card-eng.png');
    height: 382px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 0 64px;
}

.background-section-eng {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    max-width: 1440px;
    width: 100%;
}

.card-eng {
    background-color: var(--light-blue);
    border-radius: 20px;
    padding: 48px 36px;
    margin-top: -295px;
    max-width: 30%;
}

.card-eng h5{
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
    text-align: left;
    color: var(--blue);
    margin-bottom: 30px;
}

.card-eng p {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    color: var(--black);
    max-width: 354px;
}

.nav-background {
    background-color: var(--white);
    border-bottom: 8px solid var(--blue)!important;
    padding: 92px 0 0 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    
}

.nav-background .nav-item{
    margin: 0 45px;
}

.nav-background .nav-tabs .nav-link {
    transition: none;
    color: var(--blue);
}

.nav-background .active {
    border: none !important;
    color: var(--orange) !important;
    background-color: var(--white) !important;
    border-bottom: 9px solid var(--orange) !important;
    margin-bottom: -9px ;
}

.eng-last {
    background-image: url('../assets/images/course/background.png');
    height: 723px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 94px 64px;
}

.eng-last-section {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    width: 1440px;
}

.text-eng h3{
    font-size: 28px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    margin-top: 25px;
    margin-bottom: 48px;
}

.text-eng p {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-align: left;
    color: var(--white);
}

.text-eng h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 18px;
}

.explanation-eng {
    background-color: var(--light-blue);
    padding: 90px 64px 90px 64px;
    display: flex;
    justify-content: center;
}

.orange-line-eng {
    height: 180px;
    margin-top: 10px;
}

.tab-card-eng {
    height: 132px;
    margin-bottom: 35px;
    max-width: 385px;
}

.tab-card-eng h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    margin-bottom: 18px;
    color: var(--blue);
}

.tab-card-eng p {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-align: left;       
    color: var(--black);
}
/* tab engleski */
/* tab francuski */
#francuski {
    background-color: var(--white) !important;
    padding-top: 84px;
}

.flag-fr {
    background-image: url('../assets/images/course/baner-fr.png');
    height: 206px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.flag-fr h2{
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
    margin-bottom: 30px;
}

.explanation-fr {
    background-color: var(--light-blue);
    padding: 60px 64px 0px 64px;
    display: flex;
    justify-content: center;
    margin: 92px 0;
}
/* tab francuski */
/* tab spanski */
#spanski {
    background-color: var(--white) !important;
    padding-top: 84px;
}

.flag-es {
    background-image: url('../assets/images/course/baner-es.png');
    height: 206px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.flag-es h2{
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
    margin-bottom: 30px;
}

.explanation-es {
    background-color: var(--light-blue);
    padding: 60px 64px 0px 64px;
    display: flex;
    justify-content: center;
    margin: 92px 0;
}
/* tab spanski */
/* tab italijanski */
#italijanski {
    background-color: var(--white) !important;
    padding-top: 84px;
}

.flag-it {
    background-image: url('../assets/images/course/baner-it.png');
    height: 206px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.flag-it h2{
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
    margin-bottom: 30px;
}

.explanation-it {
    background-color: var(--light-blue);
    padding: 60px 64px 0px 64px;
    display: flex;
    justify-content: center;
    margin: 92px 0;
}
/* tab italijanski */
/* tab ruski */
#ruski {
    background-color: var(--white) !important;
    padding-top: 84px;
}

.flag-rus {
    background-image: url('../assets/images/course/baner-rus.png');
    height: 206px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.flag-rus h2{
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
    margin-bottom: 30px;
}

.explanation-rus {
    background-color: var(--light-blue);
    padding: 60px 64px 0px 64px;
    display: flex;
    justify-content: center;
    margin: 92px 0;
}
/* tab ruski */
/* tab madjarski */
#madjarski {
    background-color: var(--white) !important;
    padding-top: 84px;
}

.flag-hu {
    background-image: url('../assets/images/course/baner-hu.png');
    height: 206px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.flag-hu h2{
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
    margin-bottom: 30px;
}

.explanation-hu {
    background-color: var(--light-blue);
    padding: 60px 64px 0px 64px;
    display: flex;
    justify-content: center;
    margin: 92px 0;
}
/* tab madjarski */

/* tab srpski */
#srpski {
    background-color: var(--white) !important;
    padding-top: 84px;
}

.flag-srb {
    background-image: url('../assets/images/course/baner-srb.png');
    height: 206px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.title-srb{
    color: var(--blue)!important;
    font-size: 28px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    margin-top: 92px;
}

#srpski h2{
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
    margin-bottom: 30px;
}

.explanation-srb {
    background-color: var(--light-blue);
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    margin: 62px 0;
}

.srb-foreing {
    background-color: var(--blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 206px;
}

.srb-foreing-section {
    width: 100%;
    max-width: 1440px;    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.srb-foreing-section h5 {
    font-size: 28px!important;
    font-weight: 600!important;
    line-height: 30px!important;
    color: var(--orange)!important;
    margin-bottom: 30px!important;
    text-align: center;
}

.srb-foreing-section p {font-family: Open Sans;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    max-width: 648px;
    text-align: center;  
    color: var(--white);
}

/* tab srpski */

/* Default styles are already provided above */

/* Media Queries for responsiveness */

/* For screens smaller than 1440px */
@media (max-width: 1439px) {

    .tab-card {
        max-height: 100%;
        margin-bottom: 65px!important;
        max-width: 100%;
    }

    .nav {
        padding: 18px 0;
        font-size: 14px;
        line-height: 20px;
    }

    .nav-tabs .nav-link {
        font-size: 14px;
    }

    .flag-de h2,
    .title-eng h2,
    .flag-fr h2,
    .flag-es h2,
    .flag-it h2,
    .flag-rus h2,
    .flag-hu h2,
    #srpski h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .title-eng {
        margin-bottom: 50px;
    }

    .explanation-de,
    .explanation-fr,
    .explanation-es,
    .explanation-it,
    .explanation-rus,
    .explanation-hu,
    .explanation-srb,
    .explanation-eng {
        padding: 40px 32px 0px 32px;
    }

    .level-de,
    .background-section-eng,
    .eng-last-section,
    .srb-foreing-section {
        width: 100%;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .tab-card,
    .tab-card-eng {
        height: auto;
        max-width: 100%;
        margin-bottom: 50px;
    }

    .tab-card h4,
    .tab-card-eng h4 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .tab-card p,
    .tab-card-eng p {
        font-size: 14px;
        line-height: 20px;
    }

    .level-card,
    .card-eng {
        padding: 20px;
        margin: 12px 0;
    }

    .level-card h4,
    .card-eng h5 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .level-card p,
    .card-eng p {
        font-size: 14px;
        line-height: 20px;
    }

    .nav-background {
        font-size: 20px;
        padding: 60px 0 0 0;
    }

    .nav-background .nav-item {
        margin: 0 20px;
    }

    .eng-last,
    .background-eng {
        height: auto;
        padding: 40px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .orange-line,
    .orange-line-eng {
        display: none;
    }
}

@media (min-width:1023px) and (max-width:1200px) {

    .tab-card {
        max-height: 100%;
        margin-bottom: 65px!important;
        max-width: 100%!important;
    }
​}

/* For screens smaller than 1024px */
@media (max-width: 1023px) {
    .nav {
        padding: 15px 0;
        font-size: 12px;
        line-height: 18px;
    }

    .flag-de h2,
    .title-eng h2,
    .flag-fr h2,
    .flag-es h2,
    .flag-it h2,
    .flag-rus h2,
    .flag-hu h2,
    #srpski h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .title-eng {
        margin-bottom: 50px;
    }

    .explanation-de,
    .explanation-fr,
    .explanation-es,
    .explanation-it,
    .explanation-rus,
    .explanation-hu,
    .explanation-srb,
    .explanation-eng {
        padding: 30px 20px 0px 20px;
    }

    .level-de,
    .background-section-eng,
    .eng-last-section,
    .srb-foreing-section {
        width: 100%;
        padding: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .tab-card,
    .tab-card-eng {
        height: auto;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .tab-card h4,
    .tab-card-eng h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .tab-card p,
    .tab-card-eng p {
        font-size: 12px;
        line-height: 18px;
    }

    .level-card,
    .card-eng {
        padding: 15px;
        margin: 10px 0;
    }

    .level-card h4,
    .card-eng h5 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .level-card p,
    .card-eng p {
        font-size: 12px;
        line-height: 18px;
    }

    .nav-background {
        font-size: 16px;
        padding: 40px 0 0 0;
    }

    .nav-background .nav-item {
        margin: 0 15px;
    }

    .eng-last,
    .background-eng {
        height: auto;
        padding: 20px 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .orange-line,
    .orange-line-eng {
       display: none;
    }

    
    .tab-card {
        max-height: 100%;
        margin-bottom: 65px!important;
        max-width: 100%;
    }
}


@media (max-width: 768px) {
    .card-eng {
        max-width: 100%;
    }

    
    .tab-card {
        max-height: 100%;
        margin-bottom: 85px!important;
        padding-bottom: 180px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .tab-card {
        max-height: 100%;
        margin-bottom: 85px!important;
        padding-bottom: 180px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .tab-card {
        max-height: 100%;
        margin-bottom: 85px!important;
        padding-bottom: 230px;
        max-width: 100%;
    }
}
/* course tabs section */

/* online section */
.online {
    background-color: var(--light-blue);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: row;
    min-height: 417px;
    margin: 210px 0;
}

.online-section { 
    width: 100%;
    max-width: 1440px;
    align-items: center;
    padding: 0 64px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    color: var(--white);
    text-align: center;
}

.online-section > div {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 33px 0;
}

.online-section h2{ 
    margin-bottom: 28px;
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
    text-align: start;
    color: var(--blue);
}

.online-section p{ 
    margin-top: 24PX;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-align: start;
    color: var(--black);
    padding-right: 121PX;
}

/* Default stilovi su već dati iznad */

/* Media Queries za responzivnost */

/* Za ekrane manje od 1440px */
@media (max-width: 1200px) {
    .online {
        height: auto;
        margin: 150px 0;
        padding: 20px 0;
    }

    .online-section {
        padding: 0 32px;
        flex-direction: column;
        align-items: center;
    }

    .online-section > div {
        align-items: center;
        padding: 20px 0;
        text-align: center;
    }

    .online-section h2 {
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 20px;
        text-align: center;
    }

    .online-section p {
        font-size: 14px;
        line-height: 20px;
        padding-right: 0;
        margin-top: 16px;
    }
    
    .orange-line,
    .explanation-eng-img,
    .eng-last-img {
        display: none;
    }
}

/* Za ekrane manje od 1024px */
@media (max-width: 1023px) {
    .online {
        height: auto;
        margin: 100px 0;
        padding: 10px 0;
    }

    .online-section {
        padding: 0 16px;
        flex-direction: column;
        align-items: center;
    }

    .online-section > div {
        align-items: center;
        padding: 15px 0;
        text-align: center;
    }

    .online-section h2 {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 16px;
        text-align: center;
    }

    .online-section p {
        font-size: 12px;
        line-height: 18px;
        padding-right: 0;
        margin-top: 12px;
    }

    .explanation-eng-img,
    .eng-last-img {
        display: none;
    }
}

/* online ssection */

/* -------------------------- COURSE -------------------------------------------- */

/* -------------------------- TESTS -------------------------------------------- */

/* test hero section */
.test-hero {
    background-image: url('../assets/images/course/header-kursevi.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 360px;
}

.test-hero-section { 
    width: 100%;
    max-width: 1440px;
    align-items: center;
    padding: 106px 396px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    text-align: center;
}

.test-hero-section h1{ 
    text-transform: uppercase;
    margin-bottom: 28px;
    font-size: 55px;
    font-weight: 700;
    line-height: 61px;
}

.test-hero-section p{ 
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}
/* test hero section */

/* preparation section */

.preparation {
    padding: 164px 64px 92px 64px;
}

.preparation-text {
    padding: 10px 110px 50px 0;
}

.preparation-text h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
    text-align: left;
    color: var(--blue);
    margin-bottom: 28px;
    margin-top: 40px;
}

.preparation-text p {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-align: left;
    max-width: 680px;
    margin-top: 28px;
}

.cambridge-img {
    background-image: url('../assets/images/test/cambridge.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* max-height: 660px; */
}

/* preparation section */

/* test logo section */

.test-logo {
    background-color: var(--blue);
}

.test-logo-section {
    max-width: 1440px;
    padding: 90px 64px;
}

.slide-img {
    width: 136px;
    height: 88px;
}

/* test logo section */

/* preparation section */

.suport {
    padding: 92px 64px 168px 64px;
}

.suport-text {
    padding: 10px 0 50px 110px;
}

.suport-text h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
    text-align: left;
    color: var(--blue);
    margin-bottom: 28px;
    margin-top: 40px;
}

.suport-text p {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-align: left;
    max-width: 680px;
    margin-top: 28px;
}

.suport-img {
    background-image: url('../assets/images/test/podrška-img.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* max-height: 660px; */
}

/* preparation section */

/* test-tab section */
#engleski-test {
    background-color: var(--white)!important;
}

#tab-test-content {
    margin: 92px 0;
}

.eng-tab {
    background-image: url('../assets/images/test/baner-eng.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 206px;
}

.eng-tab-section {
    max-width: 1440px;
}

.eng-tab-section h2 {
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
    text-align: center;
    margin-bottom: 28px;
}

.cambrige-test {
    padding: 92px 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.cambrige-test h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    margin-bottom: 28px;
    align-self: flex-start;
}

.cambrige-test h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    text-align: left;
    color: var(--blue);
    margin-bottom: 28px;
    align-self: flex-start;
}

.cambrige-test p {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-align: left; 
    color: var(--black);   
}

.cambrige-test img {
    margin-top: 44px;
}

.link {
    padding-top: 40px;
}

.link a {
    text-decoration: none;
    font-size: 28px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    color: var(--orange);
    margin-top: 40px!important;
}

.general-title {
    background-color: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0;
    max-height: 80px;
}

.general-title h2{
    font-size: 28px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    
}

.general-text {
    padding: 92px 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.general-text p {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-align: left;
    color: var(--black);
}

.video {
    margin-top: 44px;
}

.sub-title {
    background-color: var(--blue);
    color: var(--white);
    max-width: 380px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.permanent-diplomas {
    padding: 92px 64px;
    display: flex;
    flex-direction: column;
}

.business-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 15px;
}

.business {
    background-color: var(--light-blue);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 0 27px 27px 27px;
}

.business h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    margin: 20px 0;
}

.business p {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-align: left;   
    color: var(--black); 
}

.bec1 {
    color: var(--purple);
}

.bec2 {
    color: var(--green);
}

.bec3 {
    color: var(--blue-secondary);
}

.bec4 {
    color: var(--yellow);
}

.bec5 {
    color: var(--purple-secondary);
}

.title-it {
    color: var(--blue);
    font-size: 24px!important;
    font-weight: 700!important;
    line-height: 30px!important;
    
}

.permanent-diplomas p {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-align: left;
    color: var(--black); 
}

.business-text {
    margin: 46px 0 92px 0;
}

.business ul > li{
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-align: left;
    
}

.bg-orange {
    background-color: var(--orange)!important;
}

.bg-white {
    background-color: var(--white)!important;
}

.aptis-ul > li {
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-align: left;
    
}

.italian-test {
    padding: 92px 64px;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
}

.italian-test ul > li{
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-align: left;
    
}

.italian-test h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    margin-bottom: 28px;
    align-self: flex-start;
}

.italian-test h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    text-align: left;
    color: var(--blue);
    margin-bottom: 28px;
    align-self: flex-start;
}

.italian-test p {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-align: left; 
    color: var(--black);   
}

.italian-test img {
    margin-top: 44px;
}

.title-cefr {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    color: var(--blue)!important;
}

.cerf {
    padding: 92px 64px;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: row;
}

.cerf h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
    margin-bottom: 24px;    
}

.cerf p { 
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-align: left;
    color: var(--black);
}

.cerf ol > li {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    text-align: left;
    color: var(--blue);
    margin-top: 35px;
    margin-bottom: 24px;
}

.cerf ol > li > ul {
    margin-top: 24px;
}

.cerf ol > li > ul > li {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-align: left;    
    color: var(--black);
}

/* test-tab section */
/* Default stilovi su već dati iznad */

/* Media Queries za responzivnost koristeći Bootstrap 5 breakpoints */

/* Ekrani ispod 1440px */
@media (max-width: 1439px) {
    .test-eng-img {
        width: 80%;
    }
    .test-hero-section {
        padding: 80px 200px;
    }

    .test-hero-section h1 {
        font-size: 45px;
        line-height: 51px;
    }

    .preparation {
        padding: 120px 32px 60px 32px;
    }

    .preparation-text {
        padding: 10px 60px 30px 0;
    }

    .preparation-text h2 {
        font-size: 40px;
        line-height: 46px;
    }

    .suport {
        padding: 60px 32px 120px 32px;
    }

    .suport-text {
        padding: 10px 0 30px 60px;
    }

    .suport-text h2 {
        font-size: 40px;
        line-height: 46px;
    }

    .cambrige-test, 
    .italian-test, 
    .cerf {
        padding: 60px 32px;
    }

    .cambrige-test h3, 
    .italian-test h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .cambrige-test h5, 
    .italian-test h5 {
        font-size: 18px;
        line-height: 22px;
    }

    .cambrige-test p, 
    .italian-test p, 
    .cerf p {
        font-size: 14px;
        line-height: 20px;
    }

    .cerf h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .cerf ol > li {
        font-size: 18px;
        line-height: 24px;
        margin-top: 24px;
        margin-bottom: 20px;
    }

    .cerf ol > li > ul > li {
        font-size: 14px;
        line-height: 20px;
    }
}

/* Ekrani ispod 1200px (Bootstrap xl) */
@media (max-width: 1199px) {
    .test-eng-img {
        width: 80%;
    }
    
    .test-young-eng-img,
    .video {
        display: none !important;
    }
    .test-hero-section {
        padding: 70px 150px;
    }

    .test-hero-section h1 {
        font-size: 40px;
        line-height: 46px;
    }

    .preparation-text h2,
    .suport-text h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .cambrige-test h3, 
    .italian-test h3 {
        font-size: 22px;
        line-height: 26px;
    }

    .cambrige-test h5, 
    .italian-test h5 {
        font-size: 16px;
        line-height: 20px;
    }

    .cambridge-img {
        display: none;
    }
}

/* Ekrani ispod 992px (Bootstrap lg) */
@media (max-width: 991px) {
    .test-eng-img {
        width: 80%;
    }
    
    .test-young-eng-img,
    .video {
        display: none !important;
    }
    .test-hero-section {
        padding: 60px 100px;
    }

    .test-hero-section h1 {
        font-size: 35px;
        line-height: 41px;
    }

    .preparation,
    .suport {
        padding: 80px 32px;
    }

    .preparation-text h2,
    .suport-text h2 {
        font-size: 32px;
        line-height: 38px;
    }

    .cambrige-test h3, 
    .italian-test h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .cambrige-test h5, 
    .italian-test h5 {
        font-size: 16px;
        line-height: 20px;
    }
}

/* Ekrani ispod 768px (Bootstrap md) */
@media (max-width: 767px) {
    .test-eng-img {
        width: 80%;
    }
    
    .test-young-eng-img,
    .video {
        display: none !important;
    }
    .test-hero {
        min-height: 300px;
    }

    .test-hero-section {
        padding: 50px 50px;
    }

    .test-hero-section h1 {
        font-size: 28px;
        line-height: 34px;
    }

    .preparation,
    .suport {
        padding: 60px 16px;
    }

    .preparation-text,
    .suport-text {
        padding: 10px 0 20px 0;
    }

    .preparation-text h2,
    .suport-text h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .cambrige-test h3, 
    .italian-test h3 {
        font-size: 18px;
        line-height: 22px;
    }

    .cambrige-test h5, 
    .italian-test h5 {
        font-size: 16px;
        line-height: 20px;
    }
}

/* Ekrani ispod 576px (Bootstrap sm) */
@media (max-width: 575px) {
    .eng-tab-section h2{
        font-size: 26px;
        line-height: 32px;
    }
    .test-eng-img {
        width: 80%;
    }

    .test-young-eng-img,
    .video {
        display: none !important;
    }

    .test-hero-section {
        padding: 40px 20px;
    }

    .test-hero-section h1 {
        font-size: 24px;
        line-height: 30px;
    }

    .preparation,
    .suport,
    .cambrige-test, 
    .italian-test, 
    .cerf {
        padding: 40px 16px;
    }

    .preparation-text h2,
    .suport-text h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .cambrige-test h3, 
    .italian-test h3 {
        font-size: 16px;
        line-height: 20px;
    }

    .cambrige-test h5, 
    .italian-test h5 {
        font-size: 14px;
        line-height: 18px;
    }

    .cerf h3 {
        font-size: 20px;
        line-height: 26px;
    }

    .cerf ol > li {
        font-size: 16px;
        line-height: 22px;
        margin-top: 20px;
        margin-bottom: 16px;
    }

    .cerf ol > li > ul > li {
        font-size: 14px;
        line-height: 20px;
    }
}

/* -------------------------- TESTS -------------------------------------------- */

/* -------------------------- BLOG -------------------------------------------- */
/* hero section */
.blog-hero {
    background-image: url('../assets/images/blog/blog-hero.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 360px; /* Ostavljen isti visina za velike ekrane */
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-hero-section {
    width: 100%; /* Omogućava prilagodljivost širine */
    max-width: 1440px;
    padding: 115px 20px; /* Smanjen padding za manje ekrane */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: var(--white);
}

.blog-hero-section h1 {
    margin-bottom: 33px;
    font-size: 55px;
    font-weight: 700;
    line-height: 61px;
}

.blog-hero-section p {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    max-width: 648px;
}

/* Media Query za ekrane manje od 1200px */
@media (max-width: 1200px) {
    .blog-hero {
        height: auto; /* Visina prilagođena sadržaju na manjim ekranima */
        padding: 40px 20px; /* Smanjen padding oko hero sekcije */
    }

    .blog-hero-section h1 {
        font-size: 36px; /* Smanjena veličina naslova za manje ekrane */
        line-height: 42px;
        margin-bottom: 20px; /* Smanjen razmak ispod naslova */
    }

    .blog-hero-section p {
        font-size: 14px; /* Smanjena veličina teksta za paragraf */
        line-height: 20px;
        max-width: 100%; /* Puna širina za manji ekran */
    }

    .blog-section {
        padding: 32px 20px; /* Smanjen padding unutar blog sekcije */
    }

    .blog-section h2 {
        font-size: 24px; /* Smanjena veličina za naslov blog sekcije */
        line-height: 28px;
        margin-top: 20px;
        margin-bottom: 20px;
        text-align: center; /* Centriran tekst za manje ekrane */
    }
}

/* blog section */
/* posts section */

.blog-post {
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    flex-direction: row;
}

/* Ensures the image covers the entire div */
.image-container {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    align-items: center; 
    position: relative;
}

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

.content {
    padding: 20px;
    background-color: var(--light-blue);
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rounded-custom {
    border-radius: 15px;
}

.btn-read-more {
    color: var(--orange);
    font-weight: bold;
    text-decoration: none;
    margin-top: auto; 
    display: inline-block; 
}

.btn-read-more:hover {
    color: var(--orange);
    text-decoration: underline;
}

.blog-post-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
    text-align: left;  
    color: var(--blue);
}

.blog-post-date {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;  
    color: var(--black);  
    margin-bottom: 20px;
}

.blog-post-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-align: left;
    color: var(--black);   
    margin-bottom: 32px;
    display: block;   
}

/* Media query for screens smaller than 1200px */
@media (max-width: 1200px) {
    .blog-post {
        flex-direction: column;
    }

    .image-container {
        max-height: none;
        height: 300px;
        flex-basis: auto;
    }

    .content {
        flex-basis: auto;
        padding: 15px;
    }

    .blog-post-title {
        font-size: 24px;
        line-height: 30px;
    }

    .blog-post-date, .blog-post-text {
        font-size: 14px;
        line-height: 20px;
    }
}
/* posts section */
/* -------------------------- BLOG -------------------------------------------- */

/* -------------------------- POST -------------------------------------------- */

.post-page {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.post-section {
    width: 1440px;
    padding: 64px 64px;
    display: flex;
    justify-content: start;
    flex-direction: column;
}

.blog-btn {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    text-align: left;
    color: var(--blue);
    text-transform: uppercase;
    text-decoration: none;
}

.title-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

#single-post {
    padding: 64px 0;
    width: 100%;
    box-sizing: border-box; 
}

#single-post img {
    width: 100%; 
    max-height: 650px; 
}

#single-post h1,
#single-post p,
#single-post figure {
    margin: 0; 
    padding: 16px 0; 
    width: 100%; 
    text-align: left; 
}

#single-post figure img {
    width: 100%; 
    max-height: 650px; 
    max-width: 100%; 
    display: block; 
    margin: 0 auto; 
}

#single-post figure {
    margin: 32px 0; 
}

/* Media query for screens smaller than 1200px */
@media (max-width: 1200px) {
    .post-section {
        width: 100%;
        padding: 32px 24px;
    }

    .title-img {
        height: 400px;
    }

    #single-post {
        padding: 32px 0;
    }

    .blog-btn {
        font-size: 18px;
    }

    #single-post h1 {
        font-size: 28px;
        line-height: 34px;
    }

    #single-post p {
        font-size: 16px;
        line-height: 24px;
    }

    #single-post figure {
        margin: 24px 0;
    }

    #single-post figure img {
        max-height: 500px;
    }
}

/* Media query for screens smaller than 768px */
@media (max-width: 768px) {
    .post-section {
        width: 100%;
        padding: 24px 16px;
    }

    .title-img {
        height: 300px;
    }

    #single-post {
        padding: 24px 0;
    }

    .blog-btn {
        font-size: 16px;
    }

    #single-post h1 {
        font-size: 24px;
        line-height: 30px;
    }

    #single-post p {
        font-size: 14px;
        line-height: 22px;
    }

    #single-post figure {
        margin: 16px 0;
    }

    #single-post figure img {
        max-height: 400px;
    }
}


/* -------------------------- POST -------------------------------------------- */
