@charset "UTF-8";
/* Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 62.5%;
  text-decoration: none;
  font-family: "Quicksand", sans-serif;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  position: relative;
}

/*  */
.light-border {
  width: 20%;
  margin: 15px 40%;
  height: 1px;
  background-color: rgba(60, 154, 120, 0.6078431373);
}

/* -----GO UP BUTTON----- */
.go-up {
  background-color: #333;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  position: sticky;
  display: none;
  align-items: center;
  justify-content: center;
  bottom: 20px;
  place-self: end;
  left: 5px;
  padding-top: 5px;
  font-size: 50px;
  z-index: 10;
  color: #fff;
}

/* *****OPEN IMAGES ON CLICK***** */
#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  background-color: rgba(34, 34, 34, 0.9176470588);
  align-items: center;
  z-index: 1000;
}

#popup {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
#popup img {
  border-radius: 15px;
}

#close {
  position: absolute;
  top: 5px;
  color: #fff;
  font-size: 4rem;
  right: 20px;
  cursor: pointer;
}

/* -----DONACIJE BUTTON----- */
@keyframes donacije {
  0% {
    box-shadow: 0px 0px 2px 5px rgba(60, 154, 120, 0.4156862745);
  }
  50% {
    box-shadow: 0px 0px 0px 0px;
  }
  100% {
    box-shadow: 0px 0px 2px 5px rgba(60, 154, 120, 0.4156862745);
  }
}
.donacija-btn {
  position: fixed;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  z-index: 10;
  font-size: 1.8rem;
  animation: donacije linear 1.5s infinite;
  color: #fff;
  transform: all 0.3s;
  font-weight: 500;
  background-color: #3c9a78;
  padding: 5px 10px;
  border-radius: 15px 10px 5px 15px;
}
.donacija-btn:hover {
  opacity: 0.8;
}

/* -----NAVBAR----- */
#navbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  display: flex;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  justify-content: space-between;
  align-items: center;
  height: 8vh;
  padding: 30px 20px;
  z-index: 10;
  transition: all 0.5s;
}
#navbar h1 {
  font-size: 2.2rem;
  color: #fff;
  font-weight: 800;
}
#navbar h1:hover {
  opacity: 0.8;
}
#navbar #nav-logo {
  width: 30px;
  z-index: 200;
  transition: src 0.5s ease;
}
#navbar #nav-logo:hover {
  opacity: 0.8;
}

.donacija-btn h2 {
  display: none;
}

.nav-links {
  list-style: none;
}
.nav-links li {
  margin: 8px 0;
}
.nav-links li a {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  list-style: none;
}

.submenu {
  display: none;
  list-style: none;
}
.submenu li a {
  font-size: 1.6rem !important;
  font-weight: 500 !important;
}

.nav-links li:hover .submenu {
  display: block;
}

.link-border {
  height: 1px;
  width: 20%;
  margin: 5px auto;
  background-color: rgba(255, 255, 255, 0.2509803922);
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 15;
}
.hamburger .bar {
  display: block;
  border-radius: 5px;
  margin: 6px auto;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  /*  */
}
.hamburger .bar:nth-child(1), .hamburger .bar:nth-child(3) {
  width: 35px;
  height: 1.5px;
}
.hamburger .bar:nth-child(2) {
  width: 25px;
  height: 1px;
}

/* -----MAIN----- */
main {
  width: 100%;
  text-align: center;
  position: relative;
}
main .main-img {
  position: relative;
}

@keyframes animation1 {
  0% {
    -o-object-position: 30%;
       object-position: 30%;
  }
  50% {
    -o-object-position: 80%;
       object-position: 80%;
  }
  100% {
    -o-object-position: 30%;
       object-position: 30%;
  }
}
.main-img img {
  animation: animation1 20s linear infinite;
  width: 100%;
  height: 500px;
  background-color: #333;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  border-bottom-left-radius: 50% 25%;
  border-bottom-right-radius: 50% 25%;
  z-index: 1;
}

.main-img::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background-color: rgba(5, 0, 0, 0.6392156863);
  width: 100%;
  height: 500px;
  z-index: 2;
  border-bottom-left-radius: 50% 25%;
  border-bottom-right-radius: 50% 25%;
}

@keyframes animation2 {
  0% {
    left: 0;
    opacity: 0.8;
  }
  100% {
    position: absolute;
    bottom: 15%;
    width: 60%;
    left: 20%;
    opacity: 1;
    z-index: 4;
  }
}
.main-dusa {
  animation: animation2 1.6s ease forwards;
}
.main-dusa h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 500;
}
.main-dusa p {
  font-size: 2rem;
  font-weight: 100;
  color: #fff;
}

/* *****FORM***** */
#form {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: 15px auto;
}
#form label {
  font-size: 1.8rem;
  color: #333;
  margin-top: 10px;
  font-weight: 500;
  margin-bottom: 5px;
}
#form input,
#form textarea {
  padding: 15px 15px;
  border-radius: 30px;
  font-size: 1.6rem;
  background-color: rgba(196, 201, 199, 0.431372549);
  border: none;
  resize: none;
}
#form input::-moz-placeholder, #form textarea::-moz-placeholder {
  font-weight: 500;
  font-size: 1.6rem;
  color: #333;
}
#form input::placeholder,
#form textarea::placeholder {
  font-weight: 500;
  font-size: 1.6rem;
  color: #333;
}
#form input:last-child {
  font-size: 1.6rem;
  margin-top: 20px;
  background-color: #3c9a78;
  font-weight: 500;
  border: none;
}
#form input:last-child:hover {
  background-color: rgba(77, 185, 145, 0.9529411765);
  color: #fff;
}
#form input:last-child:active {
  background-color: #398b6d;
}

/* -----FOOTER----- */
footer {
  width: 100%;
  padding: 15px 0px 10px;
  background-color: #3c9a78;
  text-align: center;
  border-top-left-radius: 25% 10%;
  border-top-right-radius: 25% 10%;
}
footer .footer-links,
footer .footer-contact {
  width: 80%;
  padding: 10px;
  margin: 5px auto;
}
footer .footer-links h3,
footer .footer-contact h3 {
  font-size: 2.4rem;
  color: #333;
  margin: 10px 0px;
}
footer .footer-links:last-child,
footer .footer-contact:last-child {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .footer-links a,
footer .footer-contact a {
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
}
footer .footer-links a i,
footer .footer-contact a i {
  font-size: 2.4rem;
  margin: 5px 10px;
  color: #fff;
  font-weight: 400;
}
footer p {
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
  margin: 40px 0 15px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-border {
  width: 40%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.462745098);
  margin: 10px auto;
}
.footer-border:last-of-type {
  margin: 25px auto 5px;
  width: 100%;
  background-color: #333;
}

/* -----MEDIA QUERIES----- */
/* TABLET */
@media only screen and (min-width: 725px) and (max-width: 1023px) {
  #navbar {
    padding: 5px 5%;
  }
  /* *****OPEN IMAGES ON CLICK***** */
  #popup {
    width: 70%;
  }
  /* -----FOOTER----- */
  footer .footer-links,
  footer .footer-contact {
    width: 80%;
    padding: 10px;
    margin: 5px auto;
  }
  footer .footer-links h3,
  footer .footer-contact h3 {
    font-size: 2.6rem;
  }
  footer .footer-links a,
  footer .footer-contact a {
    font-size: 2.2rem;
  }
  footer .footer-links a i,
  footer .footer-contact a i {
    font-size: 3rem;
    margin: 5px 10px;
    color: #fff;
    font-weight: 400;
  }
  footer p {
    text-align: center;
    font-weight: 500;
    font-size: 1.8rem;
    margin: 40px 0 15px;
  }
  .footer-contact a {
    font-size: 2rem;
    color: #fff;
  }
  .footer-border {
    width: 20%;
  }
}
/* -----TABLET & MOBILE NAVBAR----- */
@media only screen and (max-width: 1024px) {
  /* -----NAVBAR----- */
  .hamburger {
    display: block;
    z-index: 100;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  .nav-links {
    position: fixed;
    top: -1000%;
    left: 0;
    height: 500px;
    max-height: 500px;
    overflow: hidden;
    flex-direction: column;
    background-color: rgba(60, 154, 120, 0.9254901961);
    width: 100%;
    box-shadow: 2px 5px 10px rgba(18, 75, 54, 0.4588235294);
    text-align: center;
    transition: 0.3s;
    padding: 30px 20px;
    z-index: 100;
    border-bottom-left-radius: 50% 15%;
    border-bottom-right-radius: 50% 15%;
  }
  .nav-links ul {
    margin: 20px 0;
  }
  .nav-links.active {
    top: 0%;
  }
  .social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  .social-links a {
    font-size: 5rem;
    color: #fff;
    text-decoration: none;
  }
}
/* *****DESKTOP***** */
@media only screen and (min-width: 1024px) {
  /* -----NAVBAR----- */
  .logo {
    width: 180px;
  }
  #navbar {
    width: 100%;
    padding: 0 15%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 90;
  }
  #navbar .social-links,
  #navbar h1 {
    display: none;
  }
  #navbar .submenu {
    margin-top: 5px;
    padding: 0 10px;
    display: none;
    position: absolute;
    list-style: none;
    /* background: #3c9a78; */
    padding-bottom: 10px;
    border-radius: 0px 5px 15px 25px;
  }
  #navbar .submenu li {
    margin: 10px 0;
  }
  #navbar .submenu li a {
    border-radius: 10px;
    font-size: 1.6rem;
    font-weight: 600;
    background: rgba(60, 154, 120, 0.662745098);
    margin-bottom: 15px;
  }
  #navbar .submenu li a:hover {
    color: #333 !important;
    font-weight: 700 !important;
  }
  #navbar .nav-links li:hover .submenu {
    display: block;
  }
  .nav-links {
    display: flex;
    gap: 5px;
  }
  .nav-links li a {
    padding: 5px 10px;
    transition: ease-in 0.3s;
    font-size: 2rem;
    /* background-color: #3c9a78; */
    /* box-shadow: 0px 0px 10px 5px #33333376; */
    color: #fff;
    border-radius: 15px 5px 15px 5px;
  }
  .nav-links li a:hover {
    background: #3c9a78;
    color: #333 !important;
    border-radius: 15px 5px 15px 5px;
  }
  .nav-links li a:active {
    background-color: #333;
    color: #3c9a78;
  }
  .link-border {
    display: none;
  }
  /* -----MAIN----- */
  main {
    width: 100%;
    margin: 0 0%;
  }
  .main-img img {
    border-bottom-left-radius: 45%;
    border-bottom-right-radius: 45%;
  }
  .main-img::after {
    border-bottom-left-radius: 45%;
    border-bottom-right-radius: 45%;
  }
  /* *****OPEN IMAGES ON CLICK***** */
  #popup {
    width: 50%;
  }
  /* -----FOOTER----- */
  footer {
    border-top-left-radius: 25% 25%;
    border-top-right-radius: 25% 25%;
  }
  footer .footer-links h3,
  footer .footer-contact h3 {
    font-size: 2.6rem;
    color: #333;
    margin: 10px 0px;
  }
  footer .footer-links a,
  footer .footer-contact a {
    font-size: 2.2rem;
  }
  footer .footer-links a i,
  footer .footer-contact a i {
    font-size: 2.6rem;
    transition: all 0.5s;
  }
  footer .footer-links a i:hover,
  footer .footer-contact a i:hover {
    color: #333;
  }
  footer .footer-links a i:active,
  footer .footer-contact a i:active {
    color: #555;
  }
  footer .footer-links a:hover,
  footer .footer-contact a:hover {
    color: #333;
  }
  footer .footer-links a:active,
  footer .footer-contact a:active {
    color: #555;
  }
  footer p {
    font-size: 2rem;
  }
  .footer-contact a {
    font-size: 2rem;
  }
  .footer-contact a:hover {
    color: #333;
  }
  .footer-contact a:active {
    color: #555;
  }
}
/* Variables */
.zupa-buttons {
  position: sticky;
  top: 9vh;
  display: flex;
  flex-grow: 1;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 0 20px;
  margin-top: 15px;
}
.zupa-buttons a {
  margin: 0 2px;
  flex-grow: 1;
  font-size: 1.6rem;
  padding: 5px 10px;
  background-color: #3c9a78;
  color: #fff;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.5s;
}
.zupa-buttons a:hover {
  background-color: #3c9a78;
  color: #333;
  font-weight: 500;
}

.povijest-box {
  margin: 20px 0;
}
.povijest-box p {
  text-align: left;
  margin: 10px 0;
  font-size: 1.8rem !important;
  padding: 5px 0 5px 20px;
  border-radius: 15px;
}

.zupa-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5px;
  margin: 10px 0;
}
.zupa-grid .zupa-box {
  display: flex;
}
.zupa-grid .zupa-box h5 {
  display: flex;
  font-size: 2rem;
  color: #3c9a78;
  padding: 6px;
}
.zupa-grid .zupa-box p {
  width: -moz-fit-content !important;
  width: fit-content !important;
  font-size: 1.8rem;
  margin: 7px 0 5px 10px;
}
.zupa-grid p {
  margin: 10px 0;
  font-size: 1.8rem !important;
  text-align: left;
}
.zupa-grid ul {
  margin: 10px 0;
  list-style: none;
  text-align: left;
}
.zupa-grid ul li {
  display: flex;
}
.zupa-grid ul li div {
  margin-top: 6px;
  margin-left: 10px;
  width: 80%;
  font-size: 1.8rem !important;
  color: #555 !important;
}

.animatori-grid img {
  width: 100%;
  margin: 15px 0;
  background-color: #3c9a78;
  border-top-left-radius: 15% 35%;
  border-bottom-left-radius: 15% 35%;
  border-top-right-radius: 15% 35%;
  border-bottom-right-radius: 15% 35%;
}

/* TABLET */
/* *****DESKTOP***** */
@media only screen and (min-width: 1024px) {
  .zupa-buttons {
    width: 50%;
    margin: 15px auto 0;
  }
  .zupa-buttons a:hover {
    background-color: #333;
    color: #fff;
  }
}
.section {
  width: 100%;
  padding: 20px;
  width: 100%;
  padding: 20px;
  text-align: center;
}
.section h2 {
  text-align: center;
  font-size: 2.6rem;
  margin: 10px auto;
  font-size: 3rem;
}
.section h3 {
  font-size: 2.6rem;
}
.section iframe {
  width: 90%;
  height: 300px;
  margin: 10px auto;
  border-radius: 15px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 80%;
  margin: 5px 10%;
  padding: 10px 0;
  text-align: center;
}
.contact-link h4 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #3c9a78;
}
.contact-link p {
  margin: 5px auto;
  font-size: 2rem;
  font-weight: 500;
  color: #555;
}
.contact-link i {
  font-size: 2rem;
  color: #3c9a78;
}
.contact-link a {
  font-size: 2rem;
  color: #333;
}
.contact-link a span {
  font-size: 2.2rem;
  font-weight: 500;
  color: #333;
}

/*  */
.raspored-misa {
  width: 80%;
  margin: 15px 10%;
  text-align: center;
}
.raspored-misa h3 {
  font-size: 2.2rem;
  color: #3c9a78;
  border-left: 5px solid;
  padding-left: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.raspored-misa div h5 {
  margin-top: 15px;
  font-size: 2.2rem;
  font-weight: 600;
}
.raspored-misa div h5 span {
  font-size: 1.8rem;
  color: #3c9a78;
}
.raspored-misa div p {
  margin: 5px auto;
  font-size: 2.2rem;
  font-weight: 500;
  color: #555;
}
.raspored-misa div p span {
  font-size: 2rem;
  color: #3c9a78;
  font-weight: 500;
}

/* -----MEDIA QUERIES----- */
/* TABLET */
@media only screen and (min-width: 725px) and (max-width: 1023px) {
  .contact-link h4 {
    font-size: 2.4rem;
  }
  .contact-link i {
    font-size: 2.2rem;
  }
  .contact-link a {
    font-size: 2.2rem;
  }
  .contact-link a span {
    font-size: 2.4rem;
  }
  /*  */
  .raspored-misa h3 {
    font-size: 2.4rem;
  }
  .raspored-misa div h5 {
    font-size: 2.4rem;
  }
  .raspored-misa div h5 span {
    font-size: 2rem;
  }
  .raspored-misa div p {
    font-size: 2.4rem;
  }
  .raspored-misa div p span {
    font-size: 2.2rem;
  }
}
/* Variables */
.section h1 {
  text-align: center;
  font-size: 2.8rem;
}

.misa h5 {
  font-size: 2rem;
  color: #333;
  margin-top: 10px;
  margin-bottom: 5px;
  font-family: "Quicksand", sans-serif;
}

.misa p {
  margin: 5px auto;
  font-size: 2rem;
  font-weight: 500;
  color: #555;
  font-weight: 400;
}
.misa p:last-of-type {
  margin-bottom: 20px;
}

/* -----PASTORALNI CENTAR----- */
@keyframes animationPastoralni {
  0% {
    box-shadow: 0px 0px 5px 0px rgba(60, 154, 120, 0.3921568627);
  }
  50% {
    box-shadow: 0px 0px 4px 5px rgba(62, 176, 134, 0.4274509804);
  }
  100% {
    box-shadow: 0px 0px 5px 0px rgba(60, 154, 120, 0.3921568627);
  }
}
#section-pastoralni {
  position: relative;
  width: 100%;
  margin: 10px 0;
  padding: 30px 20px 40px;
  text-align: center;
}

.pastoralni-video::before {
  animation: animationPastoralni 1s ease-in-out infinite;
  overflow: hidden;
  content: "";
  padding: 10px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -10;
  transform: skewY(3deg);
  background-color: #3c9a78;
  border-top-left-radius: 25% 15%;
  border-top-right-radius: 25% 15%;
  border-bottom-left-radius: 35% 15%;
  border-bottom-right-radius: 25% 15%;
}

#video {
  width: 90%;
  height: 200px;
  margin: 10px auto;
  border-radius: 15px;
  border: 6px solid #222;
}

.pastoralni-text {
  padding: 10px 20px;
  text-align: center;
  margin: 5px auto;
  font-size: 2rem;
  font-weight: 500;
  color: #555;
  color: #fff;
}

.pastoralni-video a,
.oratorij-text a {
  font-size: 2rem;
  color: #333;
  font-weight: 600;
  border-radius: 5px;
  margin-top: 15px;
}

/* -----SECTION OBAVIJESTI----- */
.obavijesti-box {
  display: none;
  padding: 10px 10px;
}
.obavijesti-box h5 {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 15px;
}
.obavijesti-box h3 {
  font-size: 2rem;
  color: #3c9a78;
}
.obavijesti-box:first-of-type {
  display: block;
}
.obavijesti-box .obavijesti-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.obavijesti-box .obavijesti-container .testimonial {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.obavijesti-box .obavijesti-container .testimonial .slide-row {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.obavijesti-box .obavijesti-container .testimonial .slide-row .slide-col {
  width: 100%;
  flex: 0 0 auto;
  cursor: pointer;
}
.obavijesti-box .obavijesti-container .testimonial .slide-row .slide-col .obavijesti-text {
  display: flex;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  border-radius: 100px;
  margin: 10px auto;
  list-style: none;
  background-color: #3c9a78;
  padding: 20px 20px;
  white-space: nowrap;
  transition: white-space 0.5s;
}
.obavijesti-box .obavijesti-container .testimonial .slide-row .slide-col .obavijesti-text p {
  width: 80%;
  font-size: 2rem;
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
}
.obavijesti-box .obavijesti-container .testimonial .slide-row .slide-col .obavijesti-text .arrow-box {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.obavijesti-box .obavijesti-container .testimonial .slide-row .slide-col .obavijesti-text .arrow-box .arrow {
  display: block;
  border-radius: 5px;
  transition: transform 0.4s;
  background-color: #fff;
}
.obavijesti-box .obavijesti-container .testimonial .slide-row .slide-col .obavijesti-text .arrow-box .arrow:first-child {
  width: 15px;
  transform: rotate(45deg) translateX(4px);
  height: 2.5px;
}
.obavijesti-box .obavijesti-container .testimonial .slide-row .slide-col .obavijesti-text .arrow-box .arrow:last-child {
  width: 15px;
  transform: rotate(-45deg) translateX(-4px);
  height: 2.5px;
}
.obavijesti-box .obavijesti-container .testimonial .slide-row .slide-col .obavijesti-text.active-text {
  max-height: 500px;
  white-space: normal;
  border-radius: 25px;
}

.obavijesti-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}
.obavijesti-dots .dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  border: 2px solid #3c9a78;
  margin: 4px;
  border-radius: 15px;
  cursor: pointer;
}

.dot.active-dot {
  height: 14px;
  width: 34px;
  background-color: #3c9a78;
  border-radius: 15px;
}

/* -----SECTION LJETNI ORATORIJ----- */
#section-novosti {
  padding-bottom: 30px;
}

.oratorij-box {
  padding-bottom: 15px;
}
.oratorij-box h3 span {
  color: #000;
  margin-left: 5px;
}
.oratorij-box img {
  width: 70%;
  margin: 10px auto;
  border-radius: 15px 10px 5px 15px;
  margin-top: 15px;
  transform: skewY(2deg);
  background-color: #3c9a78;
  border-top-left-radius: 15% 35%;
  border-bottom-left-radius: 35% 25%;
  border-top-right-radius: 25% 35%;
  border-bottom-right-radius: 25% 45%;
  transition: src ease-in 0.5s;
}

.oratorij-text p {
  margin: 5px auto;
  font-size: 2rem;
  font-weight: 500;
  color: #555;
}

.oratorij-text h5 {
  font-size: 2rem;
  color: #333;
  margin-top: 10px;
  margin-bottom: 5px;
}

/* -----UKLJUČI SE U ŽUPU----- */
.join-us {
  width: 90%;
  margin: 10px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.join-us .join-us-box {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.join-us .join-us-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.join-us .join-us-box h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  background: linear-gradient(rgba(51, 194, 146, 0.6039215686), rgba(47, 50, 49, 0.9254901961));
}
.join-us .join-us-box h4:hover {
  background: linear-gradient(rgba(63, 162, 129, 0.6549019608), rgba(41, 44, 43, 0.9294117647));
}

/* -----MEDIA QUERIES----- */
/* ----------TABLET---------- */
@media only screen and (min-width: 725px) and (max-width: 1023px) {
  /* -----PASTORALNI CENTAR----- */
  .pastoralni-video::before {
    animation: animationPastoralni 1s ease-in-out infinite;
    overflow: hidden;
    content: "";
    padding: 10px;
    position: absolute;
    left: 10%;
    right: 10%;
    top: 0;
    bottom: 0;
    z-index: -10;
    transform: skewY(3deg);
    background-color: #3c9a78;
    border-top-left-radius: 25% 25%;
    border-top-right-radius: 25% 25%;
    border-bottom-left-radius: 25% 25%;
    border-bottom-right-radius: 25% 25%;
  }
  #video {
    width: 65%;
    height: 250px;
  }
  .pastoralni-text {
    width: 80% !important;
    margin: 5px auto !important;
  }
  .pastoralni-video a,
  .oratorij-text a {
    font-size: 2.4rem;
  }
  /* -----SECTION OBAVIJESTI----- */
  .obavijesti-box {
    padding: 10px 20px;
  }
  .obavijesti-box h3 {
    font-size: 2.4rem;
  }
  .obavijesti-box h5 {
    font-size: 1.8rem;
  }
  .obavijesti-text p {
    font-size: 1.8rem;
  }
  /* -----SECTION LJETNI ORATORIJ----- */
  .oratorij-box {
    padding-bottom: 15px;
  }
  .oratorij-box h3 span {
    color: #3c9a78;
    font-size: 2.2rem;
  }
  .oratorij-box img {
    width: 80%;
    margin: 20px auto;
    border-top-left-radius: 25% 25%;
    border-top-right-radius: 25% 25%;
    border-bottom-left-radius: 25% 25%;
    border-bottom-right-radius: 25% 25%;
  }
}
/* ----------DESKTOP---------- */
@media only screen and (min-width: 1024px) {
  /* -----PASTORALNI CENTAR----- */
  #section-pastoralni {
    width: 70%;
    margin: 10px 15%;
  }
  .pastoralni-video::before {
    left: 10%;
    right: 10%;
    border-top-left-radius: 25% 25%;
    border-top-right-radius: 25% 25%;
    border-bottom-left-radius: 25% 25%;
    border-bottom-right-radius: 25% 25%;
  }
  #video {
    width: 50%;
    height: 300px;
  }
  .pastoralni-text {
    width: 80% !important;
    margin: 5px auto !important;
  }
  .pastoralni-video a,
  .oratorij-text a {
    font-size: 2.4rem;
  }
  .dot.active-dot {
    height: 16px;
    width: 32px;
  }
  .dot {
    height: 16px;
    width: 16px;
  }
  /* -----SECTION OBAVIJESTI----- */
  .obavijesti-box {
    padding: 10px 20px;
  }
  .obavijesti-box h3 {
    font-size: 2.4rem;
  }
  .obavijesti-box h5 {
    font-size: 1.8rem;
  }
  .obavijesti-text p {
    font-size: 2.2rem;
  }
  /* -----SECTION LJETNI ORATORIJ----- */
  .oratorij-box {
    padding-bottom: 15px;
  }
  .oratorij-box h3 span {
    color: #3c9a78;
    font-size: 2.2rem;
  }
  .oratorij-box img {
    width: 60%;
    margin: 20px auto;
    border-top-left-radius: 25% 25%;
    border-top-right-radius: 25% 25%;
    border-bottom-left-radius: 25% 25%;
    border-bottom-right-radius: 25% 25%;
  }
}
.nakane-table {
  width: 90%;
  margin: 10px auto;
  overflow: hidden;
  border: 2px solid #3c9a78;
  border-radius: 15px;
  background-color: rgba(191, 199, 196, 0.2039215686);
}
.nakane-table .nakane-day {
  padding: 10px 5px;
  border-bottom: 1px solid #3c9a78;
  border-right: 1px solid #3c9a78;
}
.nakane-table .nakane-day h4 {
  font-size: 2rem;
}
.nakane-table .nakane-day span {
  font-size: 1.6rem;
  color: #3c9a78;
  font-weight: 600;
}
.nakane-table .nakane-rows {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 3fr;
}
.nakane-table .nakane-rows .nakane-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
}
.nakane-table .nakane-rows .nakane-grid h6 {
  font-size: 1.6rem;
  padding: 10px 0;
  border-right: 1px solid #3c9a78;
  border-bottom: 1px solid #3c9a78;
}
.nakane-table .nakane-rows .nakane-names {
  width: 100%;
  border-bottom: 1px solid #3c9a78;
  padding: 5px;
}
.nakane-table .nakane-rows .nakane-names p {
  text-align: left;
  font-size: 1.6rem;
  font-weight: 500;
}

/* TABLET */
/* *****DESKTOP***** */
.pastoralni-box {
  width: 100%;
  margin: 5px auto;
  padding: 10px 20px;
}
.pastoralni-box img {
  width: 80%;
  border-radius: 15px;
  margin: 10px auto;
}
.pastoralni-box p {
  margin: 5px auto;
  font-size: 2rem;
  font-weight: 500;
  color: #555;
}

#donation {
  color: #fff;
  background-color: #333;
  font-weight: 600;
  font-size: 2.4rem;
  border-radius: 50px;
  padding: 10px 20px;
  border: none;
}

/* -----MEDIA QUERIES----- */
/* TABLET */
@media only screen and (min-width: 725px) and (max-width: 1023px) {
  .pastoralni-box {
    width: 100%;
  }
  .pastoralni-box img {
    width: 80%;
  }
  #donation {
    font-size: 2.6rem;
  }
}
@media only screen and (min-width: 1023px) {
  .pastoralni-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .pastoralni-grid .pastoralni-box img {
    width: 100%;
  }
  .pastoralni-grid .pastoralni-box p {
    margin: 5px auto;
    font-size: 2rem;
    font-weight: 500;
    color: #555;
  }
}
.salezijanci-lenta {
  width: 90%;
  margin: 0px 5%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding: 20px 0;
}
.salezijanci-lenta .salezijanci-box h5 {
  margin-left: 20px;
  border-left: 3px solid #3c9a78;
  padding-left: 5px;
  text-align: left;
  font-size: 2rem;
}
.salezijanci-lenta .salezijanci-box h5 span {
  font-size: 1.6rem;
}
.salezijanci-lenta .salezijanci-box p {
  padding: 15px 0px 15px 30px;
  font-size: 1.6rem;
  text-align: left;
  border-left: 2px dashed #3c9a78;
}

/* -----MEDIA QUERIES----- */
/* TABLET */
/* DESKTOP */
#section-donacije p {
  margin: 5px auto;
  font-size: 2rem;
  font-weight: 500;
  color: #555;
}
#section-donacije h5 {
  font-size: 2rem;
  color: #333;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 2rem;
  color: #3c9a78;
}
@keyframes amount {
  0% {
    width: 0;
    font-size: 0;
  }
  50% {
    font-size: 1;
  }
  100% {
    width: 25%;
    color: #fff;
    font-size: 1.4rem;
  }
}
#section-donacije .bank-amout {
  width: 80%;
  height: 35px;
  border-radius: 30px;
  border: 2px solid #3c9a78;
  position: relative;
  overflow: hidden;
  margin: 25px auto;
  display: flex;
  align-items: center;
  color: #3c9a78 !important;
  justify-content: flex-end;
  padding-right: 15px;
  font-size: 1.4rem;
  font-weight: 500;
}
#section-donacije .bank-amout .amout-line {
  animation: amount 3.5s ease forwards;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 35px;
  background-color: #3c9a78;
  display: flex;
  align-items: center;
  justify-content: center;
}

.donacije-box {
  width: 100%;
  position: relative;
  margin: 20px 0;
  padding: 30px 20px 40px;
  text-align: center;
}
.donacije-box h4 {
  font-size: 2rem;
}
.donacije-box img {
  width: 50px;
}
.donacije-box p {
  color: #fff !important;
  text-align: left;
  width: 80%;
  margin: 5px auto;
}

.donacije-box::before {
  animation: animationPastoralni 1s ease-in-out infinite;
  overflow: hidden;
  content: "";
  padding: 10px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -10;
  transform: skewY(3deg);
  background-color: #3c9a78;
  border-top-left-radius: 25% 25%;
  border-top-right-radius: 25% 25%;
  border-bottom-left-radius: 25% 25%;
  border-bottom-right-radius: 25% 25%;
}

.thanks {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.thanks::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(#3c9a78, rgba(47, 50, 49, 0.9019607843));
}
.thanks .thanks-img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.thanks .thanks-box {
  position: absolute;
  text-align: center;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 15px 25px 30px;
  background: rgba(64, 58, 58, 0.3137254902);
  border-radius: 30px;
}
.thanks .thanks-box img {
  width: 40%;
  margin: 10px auto;
}
.thanks .thanks-box h2 {
  margin: 5px auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3rem;
  color: #3c9a78;
}
.thanks .thanks-box p {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 30px;
}
.thanks .thanks-box a {
  padding: 10px 15px;
  background-color: #3c9a78;
  font-size: 2rem;
  border-radius: 30px;
  color: #fff;
}

/* TABLET */
@media only screen and (min-width: 725px) and (max-width: 1023px) {
  .thanks .thanks-box {
    width: 60%;
    padding-bottom: 40px;
  }
}
/* *****DESKTOP***** */
@media only screen and (min-width: 1024px) {
  .thanks .thanks-box {
    width: 35%;
    padding-bottom: 60px;
  }
}
/* -----SECTIONS----- */
.section {
  width: 100%;
  margin: 10px 0;
  padding: 20px;
  text-align: center;
}
.section h1 {
  text-align: center;
  font-size: 2.8rem;
  font-family: "Quicksand", sans-serif;
}
.section h3 {
  font-size: 2rem;
  color: #3c9a78;
}
.section p {
  width: 90%;
  margin: 5px 5%;
  font-size: 2rem;
  font-weight: 400;
}
.section span {
  font-size: 2.6rem;
  color: #3c9a78;
}

/* -----MEDIA QUERIES----- */
/* TABLET */
@media only screen and (min-width: 725px) and (max-width: 1023px) {
  /* -----SECTIONS----- */
  .section {
    width: 80%;
    margin: 10px 10%;
  }
  .section h1 {
    font-size: 3rem;
  }
  .section h3 {
    font-size: 2.4rem;
  }
  .section p {
    font-size: 2rem;
  }
  .section iframe {
    width: 80%;
    margin: 0 10%;
  }
}
/* ----------DESKTOP---------- */
@media only screen and (min-width: 1024px) {
  /* -----SECTIONS----- */
  .section {
    width: 60%;
    margin: 10px 20%;
  }
  .section h1 {
    font-size: 3.2rem;
  }
  .section h3 {
    font-size: 2.6rem;
  }
  .section p {
    font-size: 2.2rem;
  }
  .section iframe {
    width: 70%;
    margin: 0 15%;
    height: 400px;
  }
}/*# sourceMappingURL=style.css.map */