/* !--------------CSS Reset------------------ */
/* https://andy-bell.co.uk/a-modern-css-reset/ */

/* Box sizing rules and margin & padding removed*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* !----------------end of css reset------------------ */
:root {
  /* ----------colors -------------*/
  --primary-clr: rgb(255, 255, 255);
  --accent-clr: rgb(0, 20, 80);
  --secondary-clr: rgb(228, 58, 25);
  --dark-clr: rgb(0, 0, 0);
  /* light mode */
  --background: var(--primary-clr);
  --text-clr: var(--dark-clr);

  /* ---------- font colors -------------*/
  --font-clr: var(--dark-clr);
  /* ----------font -------------*/
  --montserrat: "Montserrat", sans-serif;
  --roboto: "Roboto", sans-serif;
  --work-sans: "Work Sans", sans-serif;
}

/* dark mode */
@media (prefers-color-scheme: dark) {
  :root {
    --text-clr: var(--primary-clr);
    --background: var(--dark-clr);
  }
  .back__totop {
    border: none;
  }
  .new__logo-txt {
    background-color: transparent;
  }
}
html {
  color-scheme: dark light;
}

/* ------------ utility classes------------------ */
.flex {
  display: flex;
}
.centered {
  align-items: center;
  justify-content: center;
}
.space__between {
  justify-content: space-between;
}
.grid {
  display: grid;
}
.wrapper {
  width: 900px;
  margin: 0 auto;
}
.section-margin {
  margin: 50px 0;
}

/* -----------------CTA-s-------------- */
.cta__container {
  margin-top: 40px;
  column-gap: 20px;
}
.primary__cta {
  font-family: var(--work-sans);
  font-size: 16px;

  background-color: var(--accent-clr);
  color: var(--primary-clr);

  border: none;
  border-radius: 50px;

  padding: 10px 30px;

  text-align: center;
  text-decoration: none;

  cursor: pointer;

  transition: all 0.3s ease-in;
}
.primary__cta:hover,
.primary__cta:focus {
  background-color: var(--accent-clr);
  border: var(--accent-clr);
  transform: scale(1.1, 1.1);
  color: var(--primary-clr);
}
.secondary__cta {
  font-family: var(--work-sans);
  font-size: 16px;
  border: 2px solid var(--accent-clr);
  border-radius: 50px;
  background-color: transparent;
  color: var(--primary-clr);
  padding: 10px 30px;

  text-align: center;
  text-decoration: none;

  cursor: pointer;

  transition: all 0.3s ease-in;
}

.secondary__cta:hover,
.secondary__cta:focus {
  background-color: var(--accent-clr);
  border-color: var(--accent-clr);
  color: var(--primary-clr);
  transform: scale(1.1);
}
p {
  text-align: justify;
}
/* ------------------------------------------------ */
html {
  background-color: var(--background);
  color: var(--text-clr);
}
/* ---------js style for header scrolled----------- */
.nav__scrolled {
  background-color: var(--accent-clr);
}

.scroll-down header {
  transform: translate3d(0, -100%, 0);
}
.scroll-up header {
  padding: 0.1px;
}

/* ---------------------------------------------- */
.watermark {
  position: fixed;
  margin: 0 auto;
  width: 100%;
  top: 40%;
  padding: 30px;
  z-index: 9999999;
  background-color: rgba(149, 176, 185, 0.438);
  display:none;
}
.watermark__txt {
  font-size: 2rem;
  text-transform: uppercase;
  font-family: var(--montserrat);
  font-weight: 500;
  color: red;
  text-align: center;
}
/* ----------------nav bar----------------------- */
.nav__section {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.5s ease;
  z-index: 1000;
}
.navbar {
  margin-block: 20px;
}
.nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}
.nav__link {
  position: relative;
}
.nav__link::after {
  content: "";
  height: 2px;
  width: 100%;
  background-color: var(--primary-clr);
  left: 0;
  bottom: -7px;
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
.nav__link:hover {
  transform: scale(1.1);
  transition: all 0.2s ease-in;
}
.nav__link:hover::after {
  opacity: 1;
}
.nav__item {
  font-size: 1rem;
  font-family: var(--montserrat);
  text-decoration: none;
  font-weight: 500;
  text-transform: capitalize;
  padding: 1rem 1.2rem;
  color: var(--primary-clr);
}
.dropdown {
  position: relative;
  font-size: 14px;
}

.dropdown:hover .dropdown__list {
  display: block;
}
.dropdown__list {
  list-style: none;
  background-color: var(--accent-clr);
  position: absolute;
  left: 0;
  top: 155%;
  display: none;
  width: 100%;
}
.dropdown__item {
  padding: 10px 15px;
  cursor: pointer;
}
.dropdown__item:hover {
  background-color: rgb(179, 179, 179);
}
.dropdown__link {
  font-size: 0.6rem;
  font-family: var(--montserrat);
  text-decoration: none;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--primary-clr);
}

/* -------------------header section--------------- */
.header__section {
  position: relative;
  overflow: hidden;
  height: 90vh;
}
.header__content {
  position: absolute;
  z-index: 100;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header__left {
  flex-direction: column;
}
.video__background {
  width: 100%;
  filter: brightness(30%);
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1000;
}

.title {
  font-family: var(--montserrat);
  color: var(--primary-clr);
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
}

.subtitle {
  font-family: var(--roboto);
  color: var(--primary-clr);
  font-size: 1.5em;
  padding-top: 40px;
}

.header__logo-img {
  max-width: 300px;
  transition: all 0.3s ease;
}
.header__logo-img:hover {
  transform: scale(1.5);
}
/* ----------------about us--------------------------- */

.about__content {
  padding-top: 80px;
  padding-bottom: 80px;
  grid-template-columns: repeat(2, 1fr);
}

.about__title {
  font-family: var(--montserrat);
  color: var(--text-clr);
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.2ch;
  text-transform: uppercase;
}
.about__txt {
  font-family: var(--work-sans);
  color: var(--text-clr);
  font-size: 1rem;
  margin-top: 20px;
  padding: 30px 50px 30px 0px;
}

.about__img {
  margin-top: 60px;
  width: 450px;
  height: 500px;
}
.about__left > button {
  margin-top: 30px;
  color: var(--text-clr);
}
.phone__about-img {
  display: none;
}
/* ----------------about us page---------------------- */
.img__background {
  background-attachment: fixed;
  background-size: cover;
  position: absolute;
  height: 90vh;
  z-index: -10;
  top: 0;
  filter: brightness(30%);
  overflow: hidden;
}
.title__about-p {
  font-size: 4rem;
}

.about__content-p {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 30px;
}
.about__txt-p {
  text-align: justify;
  font-family: var(--roboto);
  color: var(--text-clr);
  font-size: 1rem;
}
.statement__content-p {
  margin-block: 60px;
  flex-direction: column;
  gap: 20px;
}
.statement__img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.statement,
.statement__signature {
  text-align: center;
  color: var(--text-clr);
  font-family: var(--work-sans);
  font-size: 1rem;
}
.statement__content-p > hr {
  margin-block: 30px;
  width: 600px;
  color: var(--background);
}
.old__building {
  flex-direction: column;
  margin-block: 40px;
  gap: 40px;
}
.old__building-txt {
  color: var(--text-clr);
  font-family: var(--roboto);
}
.about__img-2 {
  width: 300px;
}
.about__section-2 {
  margin-block: 50px;
}
.about__img-responsive {
  width: 100%;
  position: relative;
  background-size: cover;
  margin-block: 30px;
}
.facebook__section {
  gap: 10px;
  margin-block: 40px;
  grid-template-columns: 1fr 1fr;
  height: 60vh;
  overflow: hidden;
}
/* -------------------profesori------------------------ */
.profesori {
  flex-direction: column;
  gap: 40px;
}

.table__razrednici,
.table__profesori {
  width: 100%;
}

td {
  border: 1px solid var(--text-clr);
}
table > p {
  font-family: var(--roboto);
}
/* --------------------------------------------------- */
/* gallery */
.coming__soon {
  height: 90vh;
  flex-direction: column;
}
.coming__soon-txt {
  font-family: var(--roboto);
  color: var(--text-clr);
  font-size: 2rem;
  letter-spacing: 1ch;
}
.gallery__section {
  grid-template-columns: repeat(4, 1fr);
  margin-block: 80px;
}
.gallery__img {
  width: 250px;
  transition: transform 0.3s ease;
  padding-block: 20px;
  padding-inline: 5px;
}
.gallery__img:hover {
  transform: scale(1.1);
}

/* ---------------vijece ucenika------------------------ */
.vijece__content {
  padding-top: 80px;
  padding-bottom: 80px;
  gap: 50px;
  grid-template-columns: repeat(2, 1fr);
}
.vijece__left > img {
  width: 550px;
}
.vijece__title {
  font-family: var(--montserrat);
  color: var(--text-clr);
  font-size: 3rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
}
.vijece__txt {
  font-family: var(--roboto);
  color: var(--text-clr);
  font-size: 1rem;
  margin-top: 40px;
  margin-bottom: 80px;
}

.mobile__view-img {
  display: none;
}

/* ------------vijece ucenika page----------------- */

.vijece__facebook {
  gap: 20px;
  margin-bottom: 50px;
}
.vijece__txt-2 {
  width: 390px;
  font-family: var(--roboto);
  color: var(--text-clr);
  font-size: 1rem;
}
.vijece__txt-1 {
  font-family: var(--roboto);

  color: var(--text-clr);
  font-size: 1rem;
  margin-bottom: 50px;
  text-align: justify;
}
/* -------------biblioteka---------------- */

.background__img {
  filter: brightness(30%);
  position: absolute;
  z-index: -10;
  height: 90vh;
  width: 100%;
}
.library__content {
  flex-direction: column;
  position: relative;
  z-index: 10;
  height: 90vh;
}
.library__title {
  font-family: var(--montserrat);
  color: var(--primary-clr);
  font-size: 3rem;
  font-weight: 600;
  text-transform: uppercase;
}
.library__txt {
  font-family: var(--roboto);
  color: var(--primary-clr);
  font-size: 1rem;
  margin-top: 40px;
  text-align: center;
}
.library__content > .cta__container {
  margin-top: 80px;
}
/* -------------biblioteka page---------------- */
.library__txt-1 {
  font-family: var(--roboto);
  color: var(--text-clr);
  font-size: 1rem;
}
.library__section-1-content {
  margin-bottom: 70px;
  gap: 20px;
}
.title__about-p {
  padding-bottom: 50px;
}
/* ------------------------------------------------- */
/* ------------------CONTACT PAGE------------------ */
.contact__container-1 {
  padding-top: 70px;
}
.contact__title {
  font-family: var(--roboto);
  color: var(--primary-clr);
  font-size: 1.5em;
}
.contact__txt {
  font-family: var(--roboto);
  color: var(--primary-clr);
  font-size: 1rem;
  margin-block: 40px;
}

/* ----------------contact---------------------- */
/* footer form */
.footer__section {
  background-color: var(--accent-clr);
}
.footer__content {
  padding-top: 50px;
  gap: 20px;
}
.left-footer__content {
  flex-direction: column;
  align-items: start;
  row-gap: 30px;
}
.social__media {
  padding: 10px 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.social__link {
  font-family: var(--roboto);
  text-decoration: none;
  color: var(--primary-clr);
  gap: 3px;
  transition: all 0.2s ease-in;
  border-bottom: 1px solid transparent;
  padding: 5px;
}
.social__link:hover {
  transform: scale(1.1);
  border-bottom: 1px solid white;
}
.page-content__list {
  flex-wrap: wrap;
  gap: 15px;
  padding: 0 10px;
  list-style: none;
}
.page-content__item {
  color: var(--primary-clr);
  font-family: var(--roboto);
  text-transform: capitalize;
  text-decoration: none;
  font-size: 0.75rem;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease-in;
  padding-bottom: 5px;
}
.page-content__item:hover {
  border-bottom: 1px solid white;
}
.location__container {
  padding: 0 9px;
}
.right-footer__content {
  row-gap: 10px;
}
textarea,
input[type="text"] {
  font-family: var(--roboto), sans-serif;
  width: 100%;
  padding: 12px 20px;
  margin: 10px 0;
  border-radius: 10px;
  border: 2px solid var(--primary-clr);
  resize: none;
  background-color: var(--primary-clr);
  color: var(--accent-clr);
}
.form__btn {
  width: 100%;
  padding: 20px 20px;
  font-size: 1rem;
  font-family: var(--roboto);
  color: var(--primary-clr);
  background-color: var(--accent-clr);
  border-radius: 10px;
  border: 2px solid var(--primary-clr);
  text-transform: uppercase;
  letter-spacing: 0.5ch;
}
.end__content {
  justify-content: space-between;
  padding-block: 50px;
}
.copyright,
.made__by {
  font-size: 13px;
  font-family: var(--montserrat), serif;
  color: var(--primary-clr);
  padding: 15px;
  transition: scale 0.5s ease-in-out;
}
.made__by > a {
  text-decoration: none;
  color: var(--primary-clr);
}
.made__by:hover {
  transform: scale(1.1);
}

/* ----------------------------------------- */
.back__totop {
  position: fixed;
  width: 60px;
  height: 60px;
  right: 50px;
  bottom: 100px;
  background-color: var(--primary-clr);
  border: 1px solid var(--accent-clr);
  border-radius: 30px;
  transition: transform 0.2s ease-in;
}
.back__totop:is(:hover, :focus) {
  transform: scale(1.2);
}
.back__totop > svg {
  width: 25px;
  height: 25px;
  fill: var(--accent-clr);
}
.new__logo {
  position: fixed;
  z-index: 10000;
  left: 50px;
  top: 70px;
  flex-direction: column;
  gap: 20px;
}
.new__logo-txt {
  font-size: 10px;
  font-family: var(--montserrat), serif;
  color: var(--primary-clr);
  padding: 10px 10px;
  background-color: var(--accent-clr);
  border-radius: 50px;
  border: 1px solid white;
  top: -100px;
  cursor: default;
}
/* ------------------------------------------ */
/* ---------------------hamburger menu---------------- */
.hamburger {
  cursor: pointer;
  position: relative;
  right: 3rem;
  top: 4rem;
  display: none;
}

.hamburger input {
  display: none;
}

.hamburger svg {
  /* The size of the SVG defines the overall size */
  height: 3em;
  padding: 10px;
  /* Define the transition for transforming the SVG */
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--accent-clr);
  border-radius: 50px;
}

.line {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  /* Define the transition for transforming the Stroke */
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
  transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}
.background-header__img {
  display: none;
}

.header__logo-img {
  display: block;
  width: 200px;
  margin-top: 40px;
}
.stara-zgrada-2 {
  display: none;
}
.mobile__vijece-img {
  display: none;
}
.vijece1-ucenici,
.contact-mobile-img,
.conact-us-mobile-img {
  display: none;
}
@media (width <= 1024px) {
  .navbar {
    margin-top: 0px;
    display: none;
    right: 0px;
  }
  .hamburger {
    position: fixed;
    top: 3rem;
    right: 2rem;
    display: block;
  }
  .is-active {
    display: block;
    background-color: hsla(232, 100%, 16%, 0.85);
    width: 60%;
    height: 100vh;
    right: 0;
    top: 0;
  }
  .nav__scrolled {
    background-color: transparent;
  }
  .scroll-down {
    transform: translate3d();
  }
  .nav__section {
    display: flex;
    justify-content: right;
  }
  .nav__list {
    padding: 100px;
    flex-direction: column;
    align-items: end;
    justify-content: right;
    list-style: none;
  }
  .nav__link {
    padding-block: 10px;
  }
  .nav__link::after {
    display: none;
  }
  .dropdown:hover .dropdown__list {
    display: none;
  }
  .nav__item span {
    display: none;
  }

  .header__section {
    max-width: 1024px;
    height: 55vh;
  }
  .header__content {
    margin-top: 100px;
    width: auto;
    position: absolute;
    top: 100px;
    flex-direction: column-reverse;
  }
  .video__background video {
    max-width: 100%;
    height: auto;
  }
  .title {
    font-size: 2.2rem;
    text-align: center;
    padding: 0 0 20px;
  }
  .subtitle {
    font-size: 1rem;
    text-align: center;
  }
  .primary__cta,
  .secondary__cta {
    font-size: 12px;
  }
  .about__content-p {
    width: auto;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 10px;
  }
  .about__content {
    grid-template-columns: 1fr;
    width: fit-content;
    padding: 40px 0;
  }
  .about__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .about__title {
    font-size: 2.2rem;
    text-align: center;
  }
  .about__txt {
    margin-top: 20px;
    font-size: 0.8rem;
    text-align: justify;
    padding: 25px 80px 25px 80px;
  }
  .about__left.secondary__cta {
    margin: 0px;
  }
  .about__img {
    margin: 0 auto;
    display: none;
  }
  .about__img-2 {
    display: none;
  }
  .about__img-responsive {
    display: block;
  }
  .stara-zgrada-mobile {
    display: none;
  }
  .statement__content-p {
    margin: 0 auto;
  }
  .vijece__content {
    width: auto;
    padding-bottom: 10px;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 0;
  }

  .vijece__left > img {
    margin: 0 auto;
  }
  .mobile__view-img {
    display: block;
  }
  .desktop__view-img {
    display: none;
  }
  .vijece__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .vijece__title {
    margin-top: 20px;
    font-size: 2.2rem;
    text-align: center;
  }
  .vijece__txt {
    margin-block: 30px;
    font-size: 0.8rem;
    text-align: center;
    padding: 25px 40px 25px 40px;
  }
  .background__img {
    width: 100%;
    height: 60vh;
  }
  .library__section {
    margin-top: 20px;
  }
  .library__content {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
  }
  .library__title {
    margin-top: 20px;
    font-size: 2.2rem;
    text-align: center;
  }
  .library__subtitle {
    display: none;
  }
  .library__txt {
    margin-top: 10px;
    font-size: 0.8rem;
    text-align: center;
    padding: 25px 80px 25px 80px;
  }
  .library__content > .cta__container {
    margin-top: 30px;
  }
  .library__section-1-content{
      flex-direction:column;
  }
  .library__section-1-content > img{
      width:415px;
  }
  .contact__subtitle {
    display: none;
  }
  .footer__content {
    width: auto;
    flex-direction: column-reverse;
  }
  .right-footer__content {
    max-width: 500px;
    margin: 0 auto;
  }
  form > textarea,
  input[type="text"],
  .form__btn {
    font-size: 0.8rem;
  }
  .social__media {
    flex-direction: row;
    margin: 40px auto 0 auto;
    gap: 20px;
  }
  .page-content__list {
    max-width: 500px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  .location__container {
    margin: 0 auto;
  }
  .end__content {
    flex-direction: column;
    align-items: center;
    width: auto;
  }
  .back__totop {
    width: 48px;
    height: 48px;

    bottom: 3rem;
    right: 2rem;
    padding: 10px;
  }
  .back__totop > svg {
    height: 1.5em;
  }
  .new__logo {
    display: none;
  }
}

@media (width <= 425px) {
  .desktop__video {
    display: none;
  }
  .background-header__img {
    display: block;
  }
  .is-active {
    background-color: hsla(232, 100%, 16%, 0.95);
    width: 100%;
  }
  .nav__list {
    align-items: center;
    justify-content: center;
  }
  .nav__item {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
  }
  .header__section {
    height: 654px;
  }
  .header__content {
    margin-top: 200px;
    gap: 20px;
  }
  .title {
    font-size: 2.1rem;
  }
  .cta__container {
    margin-top: 50px;
    flex-direction: column;
    gap: 10px;
  }
  .about__img {
    display: none;
  }
  .img__background-1 {
    display: none;
  }
  .phone__about-img {
    display: block;
    filter: brightness(40%);
  }
  .about__content {
    width: fit-content;
    grid-template-columns: 1fr;
  }
  .statement__content-p {
    width: 415px;
  }
  .statement__img {
    width: 150px;
    height: 150px;
  }
  .statement {
    width: 415px;
    text-align: justify;
    font-size: 0.8rem;
    padding: 25px 80px 25px 80px;
  }
  .statement__signature {
    font-size: 0.7rem;
  }
  .statement__content-p > hr {
    margin-block: 10px;
    width: 200px;
    color: var(--background);
  }
  .stara-zgrada {
    display: none;
  }
  .old__building {
    width: 415px;
  }
  .stara-zgrada-2 {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }
  .old__building-txt {
    width: 415px;
    font-size: 0.8rem;
    text-align: justify;
    padding: 25px 80px 25px 80px;
  }
  .about__txt-p {
    width: 415px;
    font-size: 0.8rem;
    text-align: justify;
    padding: 25px 80px 25px 80px;
  }
  .facebook__section {
    flex-direction: column;
    width: 400px;
    margin: 0 auto;
    padding: 0px;
  }

  .vijece__content {
    padding-bottom: 10px;
  }
  .desktop__vijece-img {
    display: none;
  }
  .mobile__vijece-img {
    display: block;
    width: 100%;
    filter: brightness(40%);
    margin-bottom: 40px;
  }

  .vijece__txt-1,
  .vijece__txt-2,
  .library__txt-1,
  .contact__txt {
    width: 415px;
    font-size: 0.8rem;
    text-align: justify;
    padding: 25px 80px 25px 80px;
  }
  .vijece__img-p {
    display: none;
  }
  .vijece__facebook {
    flex-direction: column;
    width: 350px;
    margin: 0;
    padding: 0px;
  }
  .vijece__facebook iframe {
    width: 415px;
    overflow: auto;
  }
  .library__title,
  .library__txt {
    margin-top: 20px;
  }

  .library__content > .cta__container {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .contact__title {
    text-align: center;
    width: 415px;
  }
  .conact-us-desktop-img {
    display: none;
  }
  .contact-us-mobile-img {
    display: block;
    width: 250px;
  }
  .contact-us-desktop-img {
    display: none;
  }
  .contact-mobile-img {
    display: block;
    filter: brightness(40%);
  }
  .right-footer__content {
    max-width: 300px;
    margin: 0 auto;
  }
  .location__container {
    margin: 0 auto;
    width: 300px;
  }
  .profesori{
      display:none;
  }
}

/* 
mob 320px 480px
tab 481px 768px
lap 769px 1024px
large 1025px 1200px
sve preko 1200px






manje od 685 jer sjebe header kad se smanji manje od ovog
*/
