<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600;700&amp;display=swap");
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,300;0,400;0,500;0,700;0,800;1,400;1,700;1,800&amp;family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600&amp;family=Noto+Serif:ital,wght@0,300;0,400;0,500;0,700;0,800;1,400;1,700;1,800&amp;family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --first-color: #F5DDE0;
    --black-color: hsl(0, 0%, 0%);
    --black-color-light: hsl(0, 0%, 40%);
    --white-color: hsl(0, 0%, 95%);
    --title-color: hsl(0, 0%, 0%);
    --text-color: hsl(0, 0%, 35%);
    --text-color-light: hsl(0, 0%, 64%);
    --body-color: rgba(231, 231, 231, 0.317);;
    --container-color: #efdfcc;
    --green: #657260;
    --nezno-rozeva: #AA336A;
    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: 'Bitter', serif;
    --title-font: 'Noto Serif', serif;
    ;
    --biggest-font-size: 2.6rem;
    --h1-font-size: 1.75rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
    :root {
        --biggest-font-size: 4.5rem;
        --h1-font-size: 3rem;
        --h2-font-size: 1.7rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}
body{
    background-color: red;
}
/* dark theme */
body.dark-theme {
    --black-color: hsl(0, 0%, 18%);
    --black-color-light: hsl(0, 0%, 30%);
    --title-color: hsl(0, 0%, 95%);
    --text-color: hsl(0, 0%, 70%);
    --body-color: hsl(0, 0%, 8%);
    --container-color: hsl(0, 0%, 12%);
}
body.dark-theme .navbar__links a{
    color: hsl(0, 4%, 73%);
}
body.dark-theme .footer__info li{
    color: rgba(0, 0, 0, 0.758);
}
body.dark-theme .navbar{
    background-color: #56052b;
}
body.dark-theme .navbar__links{
    background-color: #56052b;
}
body.dark-theme .navbar__links li a:hover{
    color: white;
}
body.dark-theme .theme-button:hover{
    color: white;
}
body.dark-theme .nav__top h3{
    color: black !important;
}
body.dark-theme footer h3{
     color: black !important;
}
body.dark-theme .dropdown__links{
    background-color: #56052b;
}
body.dark-theme .erazmus__article:hover {
   background-color: black;
}
body.dark-theme .active__link {
    color: white !important;
}
body.dark-theme .active{
    color: white !important;
}
body.dark-theme .pagination a{
    color: white !important;
}
/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: var(--body-font);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
}

h1,
h2,
h3,
h4 {
    color: var(--title-color);
    font-weight: var(--font-bold);
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

section {
    width: 90%;
        margin: 3rem auto;
}

.toggle{
    display: none;
}
.close__navbar{
    display: none ;
}
@media screen and (max-width:420px){
    .nav__top-links a{
        font-size: 0.9rem !important;
    }
    .nav__top-links{
        column-gap: 0.3rem !important;
    }
}
/* HEADER */
.nav__top {
    background-color:#F5DDE0;
    color: black !important;
    padding: 1.3rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    height: 6rem;
}

.nav__top p {
    font-size: var(--small-font-size);
    color: var(--black-color);
    font-weight: 300;
}

.nav__top h3 {
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.navbar {
    display: flex;
    justify-content: center;
    padding: 1rem 2rem;
    column-gap: 5rem;
    align-items: center;
    background-color: white;
    position: fixed;
    top: 6rem;
    width: 100%;
    z-index: 100;
}


section:nth-child(1){
    background-color: red;
}

.navbar__links {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1rem;

}

.navbar__links li a, .theme-button{
    color: var(--black-color-light);
    font-weight: 500;
    font-size: 1.07rem;
}

.active__link{
    color: var(--black-color) !important;
}
.active__link::after{
    width: 50% !important;
}
.navbar__links a {
    position: relative;
}

.navbar__links a:hover, .theme-button:hover{
    color: black;
}

.navbar__links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--first-color);
    bottom: -10px;
    left: 0;
    transition: 500ms;
}
.navbar__links .active::after{
    width: 50%;
}
.active{
    color: black !important;
}
.navbar__links a:hover::after {
    width: 50%;
}
.dropdown__links{
    position: fixed;
    top: 11rem;
    background-color: white;
    padding: 1.2rem;
}
.dropdown__links li {
    position: relative;
}

.dropdown__links li a::after {
    height: 0;
}
.dropdown__links li::before{
    height: 6px;
    width: 6px;
    background-color: var(--nezno-rozeva);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
    display: none;
    content: "";
    position: absolute;
   transition: 0.5s;
}
.dropdown__links li a{
   margin: 0px;
   transition: 0.5s;
   width: 100%;
}

.dropdown__links li a:hover{
    margin: 0px 1.3rem;
}

.dropdown__links li:hover::before{
   display: block;
   left: 0;
}
.dropdown__close{
    display: none;
}
.dropdown__links li{
    margin: 10px 0px;
}
.navbar__logo img{
    height: 80px;
    width: 80px;
    cursor: pointer;
    border-radius: 50%;
}

.navbar__logo span {
    font-size: var(--smaller-font-size);
    font-weight: 200;
}


.navbar__icons {
    display: flex;
    column-gap: 0.5rem;
}

.navbar__icons i {
    font-size: 1.2rem;
    cursor: pointer;
    color: black;
    font-weight: 400;
}

header{
    position: relative;
    /* background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(95, 92, 92, 0.7) 100%), url(images/homepage.jpg); */
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}
#myVideo{
    position: absolute;
    min-height: 100% !important;
    min-width: 100% !important;
    top: 0;
    left: 0;
    object-fit: cover;
}
.home__text{
    position: absolute;
    top: 50%;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    width: 100%;
}

.home__text h3{
    color: white;
    font-size: var(--biggest-font-size);
        text-shadow: 3.5px 3px 2px black;
        text-transform: capitalize;
}

.home__text p{
    width: 30%;
    margin: 10px auto 20px;
}
.home__btns{
    display: flex;
    justify-content: center;
    gap: 3rem;
}
.home__button{
    background-color: transparent;
    padding: 0.8rem 2.5rem;
    outline: none;
    cursor: pointer;
    color: white;
    border: 2px solid white;
    position: relative;
    font-size: 1rem;
    transition: 0.5s;
}
.home__button a{
    color: white;
}
.home__button::before{
    content: "";
    height: 2px;
    width: 20px;
    background-color: white;
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
            transition: 0.5s;}

.home__button::after{
    content: "";
        height: 2px;
        width: 20px;
        background-color: white;
        position: absolute;
        top: 50%;
        right: -10px;
        transform: translateY(-50%);
            transition: 0.5s;}

.home__button:hover{
    background-color: #df404b;
    border-color: #df404b;
}

.home__button:hover::after,.home__button:hover::before{
    background-color: #df404b;
}

.welcome__section{
    text-align: center;
        padding: 2rem 0;
        margin-top: 0;
}

.welcome__desc{
    width: 75%;
    margin:1rem auto;
    line-height: 1.8;
}

.title{
    font-size: 2rem;
    text-align: center;
    margin: 0 auto;
    z-index: 5;
}

/* contact */
.contact__container {
    display: grid;
    grid-template-columns: 350px 600px;
    gap: 0;
    justify-content: center;
}
.contact__group{
    display: flex;
    gap: 1.2rem;
}
.contact__data {
    height: 250px;
    background-color: var(--container-color);
    padding: 3rem 1.5rem 3.5rem;
    /* margin-left: auto; */
    border-bottom: 4px solid #df404b;
    z-index: 5;
   transform: translateX(2rem);
   margin-top: 5rem;
}

.contact__data h2{
    margin: 0 0 1.5rem;
    transform: translateX(-3rem);
    font-size: 1.8rem;
}

.contact__description{
    font-weight: var(--font-medium);
}


.contact__mail {
    position: relative;
    background-color: var(--black-color);
    padding: 2rem 2rem 2.5rem;
    padding-left: 4rem;
}

.contact__title {
    color: var(--white-color);
    font-size: var(--h2-font-size);
    margin-bottom: 2rem;
    text-align: center;
}

.contact__form{
  display: grid;
  gap: 1.2rem;
}
.contact__box {
    position: relative;
    width: 100%;
    height: 58px;
}

.contact__input,
.contact__button {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    outline: none;
    border: none;
}

.contact__input {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--black-color);
    border: 3px solid var(--black-color-light);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    font-weight: var(--font-medium);
    transition: border 0.4s, background-color 0.4s;
}

.contact__input::placeholder {
    color: var(--text-color-light);
    transition: opacity 0.4s;
}

.contact__input:focus {
    border: 3pxx solid var(--white-color);
}

.contact__input:-webkit-autofill {
    transition: background-color 6000s, color 6000s;
}

.contact__label {
    position: absolute;
    top: 8px;
    left: 10px;
    color: var(--text-color-light);
    font-weight: var(--font-medium);
    font-size: var(--small-font-size);
    background-color: var(--black-color);
    padding: 8px;
    pointer-events: none;
    transition: top 0.4s, opacity 0.4s;
    opacity: 0;
}

.contact__form .contact__area {
    height: 10rem;
}

.contact__area textarea {
    resize: none;
    padding-top: 1rem;
}

.contact__button {
    background-color: var(--first-color);
    cursor: pointer;
}

.contact__input:focus {
    border: 3px solid var(--white-color);
}

.contact__input:focus::placeholder {
    opacity: 0;
}

.contact__input:focus+.contact__label,
.contact__input:not(:placeholder-shown).contact__input:not(:focus)+.contact__label {
    opacity: 1;
    top: -16px;
}


.contact__social-description-1 {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
    margin-bottom: 0.5rem;
}

.contact__social-description-2 {
    color: var(--white-color);
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
}

.contact__social-links {
    display: flex;
    justify-content: center;
    column-gap: 0.75rem;
}

.contact__social-link {
    background-color: var(--black-color-light);
    padding: 6px;
    color: var(--white-color);
    font-size: 1.25rem;
    display: grid;
    place-items: center;
}

.contact__social-link:hover {
    background-color: var(--first-color);
}

.contact__button {
    background-color: #df404b;
    cursor: pointer;
    padding: 1.1rem 1.5rem;
    color: var(--white-color);
    font-weight: var(--font-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
    width: max-content;
}

/* ************* Novosti page********************** */
.novosti__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    width: 100%;
    margin: 3rem auto;
}

.novost img {
    width: 100%;
    height: 250px;
}
    .novosti__title {
            text-align: center;
            font-size: 2.8rem;
            font-family: var(--title-font);
        }
    .novosti__grid {
    
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 3rem;
            margin: 3rem auto;
        }
    .novost__text{
        margin-top: 10px;
    }
 
/* Ucenicka kompanija */

.ucenickakompanija__p{
    margin: 2rem 0;
}

.ucenickakompanija__p-title{
    font-size: 1.4rem;
    display: flex;
    column-gap: 0.3rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.ucenickakompanija__p-title i{
    color: #df404b;
    font-size: 1.7rem;
}

b{
    color: black;
}

.ucenickakompanija__grid{
    display: flex;
    justify-content: center;
    column-gap: 5rem;
}



/* Erazmus + */
.erazmus__container {
    gap: 2rem;
    display: grid;
    grid-template-columns: 500px 500px;
    justify-content: center;
    margin-top: 2rem;
}
.erazmus__img img{
    width: 100%;
    height: 250px;
}

.erazmus__article {
    padding: 1rem 1rem 1.1rem;
    transition: background-color 0.4s;
    cursor: pointer;
    max-height: fit-content;
}


.erazmus__subtitle {
    position: relative;
    display: inline-block;
    font-size: var(--small-font-size);
    font-weight: var(--font-bold);
    color: var(--text-color);
    margin: 0.75rem 0;
    padding-left: 1.75rem;
}

.erazmus__subtitle::after {
    content: "";
    width: 20px;
    height: 1px;
    background-color: var(--text-color);
    position: absolute;
    top: 50%;
    left: 0;
}

.erazmus__buttons{
    display: flex;
    align-items: center;
    column-gap: 0.6rem;
}
.erazmus__buttons button{
    display: flex;
    align-items: center;
    column-gap: 0.25rem;
    font-size: var(--small-font-size);
    transition: color 0.4s;
    color: var(--text-color);
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    margin-top: 1rem;
    cursor: pointer;
    outline: none;
    border: 0px;
    background-color: transparent;
}

.erazmus__buttons button i {
    font-size: 1rem;
    color: var(--title-color);
    transition: color 0.4s;
}

.erazmus__buttons button:hover,
.erazmus__buttons button:hover i {
    color: #df404b;
}

.erazmus__article:hover {
    background-color: white;
}

.no-show{
    display: none;
}

/* Istorija na skoloto */
.istorijaNaSkoloto__section{
    display: flex;
    justify-content: center;
    column-gap: 2rem;
    /* align-items: center; */
}

.istorijaNaSkoloto__section .spomenik__img{
    flex: 2;
}
.spomenik__img img{
    width: 100%;
    height: 100%;
    border-right: 5px solid #8d1f26;
    border-bottom: 5px solid #8d1f26;
    cursor: pointer;
}

.spomenik__img img:hover{
    border-radius: 10px;
}
.istorijaNaSkoloto__text-container{
    flex: 2;
}

.istorijaNaSkoloto__section li{
    list-style-type: square;
}

.istorijaNaSkoloto__section li{
    font-size: 1.3rem;
    color: #8d1f26;
    margin: 10px 0;
}

.istorijaNaSkoloto__text-container li span{
    color: var(--text-color);
    font-size: var(--small-font-size);
}

.misija-vizija__section{
    display: grid;
    grid-template-columns: 450px 500px;
    justify-content: center;
    gap: 2rem;
}

.misija, .vizija{
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    border-left: 8px solid #8d1f26;
    border-top-left-radius: 30px;
    border-bottom: 8px solid #8d1f26;
    border-bottom-right-radius: 50px;
    padding: 2rem 1.8rem 1rem;
}

.istorijaNaSkoloto__section,
.section__ucenickakompanija,
.section__erazmus,.section__novosti,
.obrazovanieStruki__section,.obrazovanieStrukiTri__section,
.vonrednoO__section,.oglas__section,.contact__section,.strucnaSluza__section,.dodadiNovost__section,.oglas__section,.nastavenKadar__section,.strucnaSluzba__section,.avtoskola__section,.section__oglasnaTabla,.contact1__section,.section_dokumentacija{
    margin-top: 14.5rem !important;
}


/* obrazovanie cetirigodisnoo */

.obrazovanieStruka{
    margin: 0 auto;
    margin-top: 1rem;
    display: flex;
    gap: 2rem;
    width: 90%;
}
.obrazovanieStruka div{
    flex: 1;
}
.obrazovanieStruka img{
    width: 100%;
    height: 300px;
    border-radius: 10px;
}

.obrazovanieStruka__title,.title__vondredno{
    font-size: 1.5rem;
    position: relative;
    margin-bottom: 15px;
}
.obrazovanieStruka__title::first-letter{
    text-transform: uppercase;
}

.obrazovanieStruka__title::after,.vonrednoO__section .title__vondredno::after{
    width: 10%;
    height: 3px;
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0px;
    background-color: #AA336A;
}
.title__vondredno::after{
    width: 3% !important;
}
.obrazovanieStruka__predmeti{
    margin-top: 1rem;
}

.obrazovanieStruka__predmeti li,.vonrednoO__section li,.avtoskola__section li{
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.2rem
}

.obrazovanieStruka__predmeti li i,.vonrednoO__section li i,.avtoskola__section li i{
    font-size: 0.5rem;
    color: #AA336A;
}

.obrazovanieStruka__grid-info,.obrazovanieStrukaTri__grid-info{
    display: flex;
    justify-content: center;
    align-items: center;
}

.obrazovanieStruka__grid-info img,.obrazovanieStrukaTri__grid-info img{
    height: 300px;
    width: 380px;
}



.obrazovanieStruka__grid-info h1{
    margin-bottom: 0.5rem;
}
.profesori__buttons{
    display: flex;
    flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin: 2rem 0 0.2rem;
        width: 80%;
        margin: 2rem auto;
}
.obrazovanieStruka__buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0 0.2rem;
}


.obrazovanieStruka__buttons button,.profesori__buttons button{
    outline: none;
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid #c75289;
    background-color: transparent;
    color: #c75289;
    cursor: pointer;
    transition: 0.5s;
}

.obrazovanieStruka__buttons button:hover,.profesori__buttons button:hover{
    background-color: #c75289 !important;
    color: white !important;
}
.struka__active,.profesori__active{
    background-color: #c75289 !important;
     color: white !important;
}
.obrazovanieStruka:nth-child(2),
.obrazovanieStruka:nth-child(4),
.obrazovanieStruka:nth-child(6){
    flex-direction: row-reverse;
}

/* vonredno obrazovanie */

.vonrednoO__section div{
    margin-top: 2rem;
}

.vonrednoO__section p,.avtoskola__section-desc{
    width: 60%;
    margin-top: 2.3rem;
}

.vonrednoO__section ul,.avtoskola__section ul{
    margin-top: 0.5rem;
}

/* avtoskola */
.avtoskola__section div{
    margin-top: 2rem;
}
.avtoskola__section h4{
    margin-bottom: 0.8rem;
}

.avtoskola__img-section{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.2rem;
}
.avtoskola__img-section img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 2px solid black;
}
.ri-menu-line{
    font-size: 1.4rem;
    cursor: pointer;
}
.close__navbar{
    font-size: 1.8rem;
    position: absolute;
    top: 7rem;
    right: 2.5rem;
    cursor: pointer;
}

/* footer */
footer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background-color: var(--first-color);
    padding: 3rem 5rem 2rem 8rem;
    margin-top: 30px;
}
.footer__title{
    position: relative;
}
.footer__title::after{
    content: "";
    background-color: #AA336A;
    position: absolute;
    height: 2px;
    width: 30px;
    bottom: -3px;
    left: 0;
}

footer ul{
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    row-gap: 0.3rem;
}

footer ul li a{
    color: var(--black-color-light);
    transition: 0.5s;
}

footer ul li a:hover{
    color: var(--black-color);
    margin-left: 8px;
}

.footer__socials{
    flex-direction: row;
    column-gap: 0.5rem;
    font-size: 1.2rem;
}
.footer__socials a{
        color: var(--black-color-light);
        background-color: #AA336A;
        color: white;
        height: 25px;
        width: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        margin-top: 5px;
        transition: 0.5s;
}

.footer__socials a:hover{
    margin-top: 0px;

}
.footer__info{
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
}
.footer__info i{
    margin-right: 5px;
    color: #56052b;
}
.map__section{
    text-align: center;
}
.extra__links{
    display: none;
}
@media screen and (max-width:550px) {
        .title {
                width: 100%;
            }
    .nav__top h3{
        font-size: 1em;
    }
    .close__navbar{
        display: block;
    }
    .delete {
        display: none;
    }

    .nav__top {
        column-gap: 3rem;
    }
    header{
        min-height: fit-content;
    }
    .navbar__links {
        display: flex;
        flex-direction: column;
        row-gap: 1.2rem;
        position: fixed;
        background-color: #fff;
        top: 0;
        width: 70%;
        right: -1000px;
        height: 100vh;
    }
    .home__btns{
        flex-direction: column;
        width: 50%;
        margin: 0 auto;
        gap: 1rem;
    }
    .extra__links{
        display: flex;
            flex-direction: column;
            row-gap: 1.2rem;
            text-align: center;
    }
    .navbar__links li a::after{
         left: 50%;
         transform: translateX(-50%);
    }
    .navbar__open {
        right: 0;
    }
    .ri-menu-line , .toggle{
        display: block !important;
    }
    .dropdown__links{
        /* display: none; */
        flex-direction: column;
        row-gap: 1.2rem !important;
        position: static;
    }
    .dropdown-navbar{
        text-align: center;
    }
    .home__top {
        flex-direction: column;
        align-items: center;
        margin: 2rem auto;
        row-gap: 1rem;
    }
      
    .dropdown__links li a:hover {
            margin: 0px 0rem;
        }
    .dropdown__links li:hover::before {
        display: none;
    }

    .navbar__logo img{
        height: 60px;
        width: 60px;
    }
    .navbar{
        justify-content: space-between;
        padding: 1rem 3rem;
    }
    .home__text p{
        width: 90%;
    }
    .welcome__desc{
        width: 95%;
    }
        .map__section{
            width: 100%;
        }
        iframe{
            width: 95%;
        }
        .contact__container {
            display: grid;
            grid-template-rows: 300px fit-content;
            grid-template-columns: 100%;
            gap: 0;
            justify-content: center;
        }
        .contact__group{
            flex-direction: column;
        }
        .contact__data{
            padding: 3.5rem 1.5rem;
            transform: translateX(1.45rem);
            width: 100%;
            margin-top: 2rem;
        }
        .contact__mail{
            padding-left: 2rem;
        }
       
        .contact__section{
            overflow: hidden;
        }

.istorijaNaSkoloto__section{
    flex-direction: column;
    row-gap: 2rem;
}
.misija-vizija__section{
    grid-template-columns: 400px;
}

.title__decor::after{
   display: none;
}

.obrazovanieStruka__buttons{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.obrazovanieStruka__buttons button{
    padding: 10px 10px;
}
.obrazovanieStruka__grid-info,.obrazovanieStrukaTri__grid-info{
    flex-direction: column;
    margin-top: 2rem;
}
.obrazovanieStruka{
    flex-direction: column;
}
.obrazovanieStruka:nth-child(2),
.obrazovanieStruka:nth-child(4),
.obrazovanieStruka:nth-child(6) {
    flex-direction: column;
}
.vonrednoO__section p,
.avtoskola__section-desc {
    width: 90%;
    margin-top: 2.3rem;
}
.ucenickakompanija__grid{
    flex-direction: column;
}
.erazmus__container{
    grid-template-columns: 400px;
}
footer{
    padding: 2rem 2rem;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.izbori__grid{
    flex-direction: column;
    height: fit-content !important;
    gap: 3rem;
}
.fakti__grid{
    grid-template-columns: 1fr !important;
    gap: 2rem;
}
   .swiper__section {
       width: 100% !important;
   }
   .mySwiper{
    width: 100% !important;
   }
   .section__oglasi{
    grid-template-columns:1fr !important;
   }
   .avtoskola__img-section{
    grid-template-columns: 1fr;
   }
}

@media screen and (max-width:730px) and (min-width:551px)  {
    .title{
        width: 100%;
    }
    .nav__top h3 {
        font-size: 1em;
    }
         .close__navbar {
             display: block;
         }
    .delete {
        display: none;
    }

    .nav__top {
        column-gap: 3rem;
    }

    .navbar__links {
        display: flex;
        flex-direction: column;
        row-gap: 1.2rem;
        position: fixed;
        background-color: #fff;
        top: 0;
        width: 70%;
        right: -1000px;
        height: 100vh;
    }
       .extra__links{
        display: flex;
            flex-direction: column;
            row-gap: 1.2rem;
            text-align: center;
    }
   
 .navbar__links li a::after {
     left: 50%;
     transform: translateX(-50%);
 }
    .navbar__open {
        right: 0;
    }

    .ri-menu-line, .toggle {
        display: block !important;
    }

    .dropdown__links {
        /* display: none; */
        flex-direction: column;
        row-gap: 0.3rem;
        position: static;
    }

    .home__top {
        flex-direction: column;
        align-items: center;
        margin: 2rem auto;
        row-gap: 1rem;
    }

    .dropdown__links li a:hover {
        margin: 0px 0rem;
    }

    .dropdown__links li:hover::before {
        display: none;
    }

    .navbar__logo img {
        height: 60px;
        width: 60px;
    }

    .navbar {
        justify-content: space-between;
        padding: 1rem 3rem;
    }

    .home__text p {
        width: 90%;
    }

    .welcome__desc {
        width: 95%;
    }
    .map__section {
        width: 100%;
    }

    iframe {
        width: 95%;
    }

    .contact__container {
        display: grid;
        grid-template-rows: 300px fit-content;
        grid-template-columns: 100%;
        gap: 0;
        justify-content: center;
    }


    .contact__data {
        padding: 3.5rem 1.5rem;
        transform: translateX(1.45rem);
        width: 70%;
        margin: 2rem auto -1rem;
    }

    .contact__mail {
        padding-left: 2rem;
    }

    .contact__section {
        overflow: hidden;
    }

   

    .istorijaNaSkoloto__section {
        flex-direction: column;
        row-gap: 2rem;
    }

    .misija-vizija__section {
        grid-template-columns: 1fr;
    }

    .title__decor::after {
        display: none;
    }

    .novosti__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        width: 100%;
        margin: 3rem auto;
    }

    .obrazovanieStruka__buttons {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
    }

    .obrazovanieStruka__buttons button {
        padding: 10px 10px;
    }

    .obrazovanieStruka__grid-info,
    .obrazovanieStrukaTri__grid-info {
        flex-direction: column;
        margin-top: 2rem;
    }

    .obrazovanieStruka {
        flex-direction: column;
    }

    .obrazovanieStruka:nth-child(2),
    .obrazovanieStruka:nth-child(4),
    .obrazovanieStruka:nth-child(6) {
        flex-direction: column;
    }

    .vonrednoO__section p,
    .avtoskola__section-desc {
        width: 90%;
        margin-top: 2.3rem;
    }

    .ucenickakompanija__grid {
        flex-direction: column;
    }

    .erazmus__container {
        grid-template-columns: 80%;
    }
    footer{
        grid-template-columns: 1fr 1fr 1fr;
        padding: 2rem 2rem;
    }
    .izbori__grid{
         flex-direction: column;
        height: max-content !important;
    }
    .fakti__grid{
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem;
    } .swiper__section {
         width: 100% !important;
     }
    
     .mySwiper {
         width: 100% !important;
     }
     .section__oglasi{
        grid-template-columns: 1fr !important;
        text-align: center;
     }
     .oglas{
        width: 80%;
        margin: 0 auto;
     }
     .avtoskola__img-section{
        grid-template-columns: 1fr 1fr;
     }
}
@media screen and (min-width:731px) and (max-width:929px) {
    .nav__top h3 {
        font-size: 1em;
    }

    .close__navbar {
        display: block;
    }

    .delete {
        display: none;
    }

    .nav__top {
        column-gap: 3rem;
    }

    .navbar__links {
        display: flex;
        flex-direction: column;
        row-gap: 1.2rem;
        position: fixed;
        background-color: #fff;
        top: 0;
        width: 70%;
        right: -1000px;
        height: 100vh;
    }
 .navbar__links li a::after {
     left: 50%;
     transform: translateX(-50%);
 }
    .navbar__open {
        right: 0;
    }

    .ri-menu-line,
    .toggle {
        display: block !important;
    }

        .dropdown__links {
            /* display: none; */
            flex-direction: column;
            row-gap: 1.2rem !important;
            position: static;
        }
    
        .dropdown-navbar {
            text-align: center;
        }
    
        .home__top {
            flex-direction: column;
            align-items: center;
            margin: 2rem auto;
            row-gap: 1rem;
        }
    
        .dropdown__links li a:hover {
            margin: 0px 0rem;
        }
    
        .dropdown__links li:hover::before {
            display: none;
        }

    .navbar__logo img {
        height: 60px;
        width: 60px;
    }

    .navbar {
        justify-content: space-between;
        padding: 1rem 3rem;
    }

    .home__text p {
        width: 90%;
    }

    .welcome__desc {
        width: 95%;
    }
    .map__section {
        width: 100%;
    }

    iframe {
        width: 95%;
    }
    .contact__section{
        width: 95%;
    }
    .contact__container{
        grid-template-columns: 35% 65%;
    }
    
    .contact__section {
        overflow: hidden;
    }

    .istorijaNaSkoloto__section {
        flex-direction: column;
        row-gap: 2rem;
    }

    .misija-vizija__section {
        grid-template-columns: 1fr 1fr;
    }

    .title__decor::after {
        display: none;
    }

    .novosti__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        width: 100%;
        margin: 3rem auto;
    }

    .obrazovanieStruka__buttons {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
    }

    .obrazovanieStruka__buttons button {
        padding: 10px 10px;
    }


    .obrazovanieStruka {
        flex-direction: column;
    }

    .obrazovanieStruka:nth-child(2),
    .obrazovanieStruka:nth-child(4),
    .obrazovanieStruka:nth-child(6) {
        flex-direction: column;
    }

    .vonrednoO__section p,
    .avtoskola__section-desc {
        width: 90%;
        margin-top: 2.3rem;
    }

    .ucenickakompanija__grid {
        flex-direction: column;
    }

    .erazmus__container {
        grid-template-columns: 1fr 1fr;
    }
         footer {
             grid-template-columns: 1fr 1fr 1fr;
             padding: 2rem 2rem;
         }
         .izbori__grid{
            width: 75%;
            margin: 0 auto;
            flex-direction: column;
            height: fit-content !important;
         }
         .fakti__grid{
            width: 100% !important;
         } .swiper__section {
             width: 100% !important;
         }
        
         .mySwiper {
             width: 100% !important;
         }
         .section__oglasi{
            grid-template-columns: 1fr 1fr !important;
         }
}

@media screen and (min-width:930px) and (max-width:1200px) {
        .home__text p {
                width: 90%;
            }
        .welcome__desc{
            width:95%;
        }
                  .map__section {
                      width: 100%;
                  }
          iframe {
             width: 95%;
         }
        .istorijaNaSkoloto__section{
            flex-direction: column;
            gap: 1rem;
        }
        .istorijaNaSkoloto__section .spomenik__img{
            text-align: center;
        }
.spomenik__img img {
    height: auto;
    width: 70%;
    margin: 0 auto;
}
.misija-vizija__section{
    grid-template-columns: 1fr 1fr;
}
.novosti__grid{
    grid-template-columns: 1fr 1fr ;
}
.erazmus__container{
    grid-template-columns: 1fr 1fr;
}
.izbori__grid{
    height: fit-content !important;
}
.section__oglasi{
            grid-template-columns: 1fr 1fr !important;
         }
}
@media screen and (max-width:1120px) and (min-width:920px){
    .close__navbar {
            display: block;
        }
    
        .delete {
            display: none;
        }
    
        .nav__top {
            column-gap: 3rem;
        }
    
        .navbar__links {
            display: flex;
            flex-direction: column;
            row-gap: 1.2rem;
            position: fixed;
            background-color: #fff;
            top: 0;
            width: 50%;
            right: -1000px;
            height: 100vh;
        }
         .navbar__links li a::after {
             left: 50%;
             transform: translateX(-50%);
         }
        .navbar__open {
            right: 0;
        }
    
        .ri-menu-line,
        .toggle {
            display: block !important;
        }
    
        .dropdown__links {
            /* display: none; */
            flex-direction: column;
            row-gap: 0.3rem;
            position: static;
        }
    
        .dropdown-navbar {
            padding-left: 1rem;
        } 
         .navbar__logo img {
               height: 85px;
               width: 85px;
           }
                  .dropdown__links {
                      /* display: none; */
                      flex-direction: column;
                      row-gap: 1.2rem !important;
                      position: static;
                  }
        
                  .dropdown-navbar {
                      text-align: center;
                  }
        
                  .home__top {
                      flex-direction: column;
                      align-items: center;
                      margin: 2rem auto;
                      row-gap: 1rem;
                  }
        
                  .dropdown__links li a:hover {
                      margin: 0px 0rem;
                  }
        
                  .dropdown__links li:hover::before {
                      display: none;
                  }
           .navbar {
               justify-content: space-around;
               padding: 1rem 3rem;
           }
}
hr{
    width: 20%;
    margin: 10px auto;
    background-color: var(--first-color);
    border: 2px solid var(--first-color);
}

.izbori__grid{
    display: flex;
    height: 35vh;
    gap: 2rem;
    margin-top: 2rem;
}

.izbori__article{
    flex: 1;
    text-align: center;
    padding: 1rem;
   display: flex;
   flex-direction: column;
    gap: 0.5rem;
    box-shadow: 1px 2px 2px #AA336A;
    position: relative;
}

.izbori__article i{
    font-size: 2.1rem;
    color: #AA336A;
    margin-bottom: 1rem;
}

.izbori__article-text h1{
    margin-bottom: 0.5rem;
}

.fakti__grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 80%;
    margin: 0 auto;
    padding: 2rem 0;
    border-top: 2px solid rgba(212, 210, 210, 0.625);
    border-bottom: 2px solid rgba(212, 210, 210, 0.625);
}

.fakt{
    display: flex;
    align-items: center;
    gap: 1rem;
    
}

.fakt i{
    font-size: 2.5rem;
    color: #AA336A;
}

.fakt__titlte{
    font-size: 1.4rem;
}

   .swiper {
       width: 100%;
       height: 100%;
   }

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

   .swiper-slide img {
       display: block;
       width: 100%;
       height: 100%;
       object-fit: contain;
       /* object-position: center; */
   }


   .swiper {
       width: 100%;
       height: 300px;
       margin-left: auto;
       margin-right: auto;
   }

   .swiper-slide {
       background-size: cover;
       background-position: center;
   }

   .mySwiper2 {
       height: 80%;
       width: 100%;
   }

   .mySwiper {
       height: 20%;
       box-sizing: border-box;
       padding: 10px 0;
   }

   .mySwiper .swiper-slide {
       width: 25%;
       height: 100%;
       opacity: 0.4;
   }

   .mySwiper .swiper-slide-thumb-active {
       opacity: 1;
   }

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

   .mySwiper2{
    height: 70vh !important;
   }
   .mySwiper{
    height: 20vh !important;
    width: 90%;
   }

   .swiper__section{
    width: 65%;
    margin: 0 auto;
   }

.section__oglasi{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.oglas__top img{
    height: 300px;
    width: 100%;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    transition: 0.5s;
    border-top: 10px solid var(--first-color);
    border-right: 10px solid var(--first-color);
}
.oglas{
    cursor: pointer;
}

.oglas:hover .oglas__top img{
    border-top: 10px solid #c75289;
        border-right: 10px solid #c75289;
}
.oglas__top{
    position: relative;
}

.oglas__top .oglas__data{
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.oglas .oglas__data h1{
    font-size: 2.9rem;
}

.oglas .oglas__text h1{
    margin: 10px 0px;
}
.oglas__section{
    width: 86%;
    margin: 0 auto;
    margin-top: 13.5rem !important;
}
.oglas__section .oglas__title{
     font-size: 2rem;
     /* margin-bottom: 2rem; */
}
.oglas__section__top{
    text-align: center;
}
.oglas__section img{
    width: 100%;
    height: auto;
    margin: 1.5rem 0;
}

.oglas__section .oglas__data{
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    margin: 0.2rem 1.3rem;
}

.oglas__section .oglas__data h1{
    font-weight: 500;
    color: var(--text-color);
}

.oglas__section a{
    color: #8d1f26;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.4rem;
}

.ri-moon-line,.ri-sun-line{
    font-size: 1.3rem;
    cursor: pointer;
}

.scrollup {
    position: fixed;
    right: 1rem;
    bottom: -50%;
    background-color: var(--black-color);
    display: inline-flex;
    padding: 8px;
    font-size: 1.25rem;
    color: var(--white-color);
    z-index: var(--z-tooltip);
    transition: bottom 0.6s, transform 0.6s;
}

.scrollup:hover {
    transform: translateY(-0.5rem);
}

/* Show Scroll Up */
.show-scroll-up {
    bottom: 3rem;
}

/* dodadi novost */
.dodadiNovost__title{
    text-align: center;
    font-size: var(--h1-font-size);
    font-weight: var(--font-semi-bold);
}

.dodadiNovost__subtitle{
    text-align: center;
    margin: 10px 0;
}
.login__form {
    border: 2px solid #56052b;
    margin-inline: 1.5rem;
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    width: 50%;
    margin: 0 auto;
}



.login__content,
.login__box {
    display: grid;
}

.login__content {
    row-gap: 1.75rem;
    margin-bottom: 1.5rem;
}

.login__box {
    grid-template-columns: max-content 1fr;
    align-items: center;
    column-gap: 0.75rem;
    border-bottom: 2px solid var(--white-color);
}
.login__icon,
.login__eye {
    font-size: 1.25rem;
}

.login__input {
    width: 100%;
    padding-block: 0.8rem;
    background-color: transparent !important;
    position: relative;
    z-index: 1;
    outline: none;
    border: none;
}

.login__box-input {
    position: relative;
}

.login__label {
    position: absolute;
    left: 0;
    top: 13px;
    font-weight: var(--font-medium);
    transition: top 0.3s, font-size 0.3s;
}

.login__eye {
    position: absolute;
    right: 0;
    top: 18px;
    z-index: 10;
    cursor: pointer;
}

.login__box:nth-child(2) input {
    padding-right: 1.8rem;
}


.login__button {
    width: 50%;
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: #56052b;
    color: white;
    font-weight: var(--font-medium);
    cursor: pointer;
    border: none;
}


/* Input focus move up label */
.login__input:focus+.login__label {
    top: -12px;
    font-size: var(--small-font-size);
}

/* Input focus sticky top label */
.login__input:not(:placeholder-shown).login__input:not(:focus)+.login__label {
    top: -12px;
    font-size: var(--small-font-size);
}

.kadar__grid{
    margin-top: 2rem;
    display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 5rem;
}

.person__article img{
border-radius: 5px;
    border: 2px solid #c75289;
    box-shadow: 3px 3px 5px #56052b;
    width: 190px;
    height: 250px;
    background: #290114;
}
.person__article h4{
    margin-top: 0.5rem;
}

.buttons_toggle{
    margin: 2rem auto 1rem;
    text-align: center;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    border: 0px;
    background-color: #c75289;
    color: white;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.profesori__buttons{
    display: none;
}

.profesori__show{
    display: flex;
   flex-wrap: wrap;
}

::-webkit-scrollbar {
    width: 0.6rem;
    border-radius: 0.5rem;
    background-color: hsl(207, 4%, 75%);
}

::-webkit-scrollbar-thumb {
    background-color: hsl(204, 2%, 59%);
    border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
    background-color: hsl(210, 1%, 41%);
}
body.dark-theme b {
    color: white !important;
}
.pagination{
    display: flex;
    justify-content: center;
    margin-top: 22px;
}
.pagination a{
   color: #290114;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #ddd;
    margin: 0 4px;
    border-radius: 10px;
}

.pagination a:hover{
    color: white;
    background-color: #56052b;
}

.active__pag{
    color: white !important;
    background-color: #56052b;
}

/* Dokumentacija */

.dokumenti{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}
.dokument{
				color:white !important;

    cursor: pointer;
    position: relative;
  
}
.dokument img{
    width: 100%;
    height: 300px;
}

.dokument__info{
		color:white;

    position: absolute;
    width: 50%;
    height: 100%;
    background-color: #AA336A;
    display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 1.7rem;
}

.dokument__info h1{
	color:white !important;
}
@media screen and (max-width:720px){
    .dokumenti{
        grid-template-columns: 1fr;
	}} 

@media screen and (min-width:721px) and (max-width:900px) {
	    .dokumenti {
        grid-template-columns: 1fr 1fr;
	}}
@media screen and (min-width:900px) and (max-width:1200px){
 .dokumenti{
        grid-template-columns: 1fr 1fr;
	}}
</pre></body></html>