@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");

.calendar {
  width: 60vw;
  margin-bottom: 70px;
  font-size: 24px;
}

.calendar td{
  width: 33%;
  padding: 20px 10px;
  vertical-align: top;
}

.calendar tr:nth-child(odd) {
  background-color: #f2f2f2;
}

.calendar tr.plenarno, td.plenarno{
  background-color: #f7c240;
}


.calendar tr.edukativno, td.edukativno{
  background-color: #879fd2;
}

.calendar tr.satelitski, td.satelitski{
  background-color: #f87777;
}

.calendar tr.oralna, td.oralna{
  background-color: #bf2089;
}

.calendar tr.poster, td.poster{
  background-color: #bfdbb0;
}

.calendar tr.mladi, td.mladi{
  background-color: #fce39a;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope";
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1 {
  font-size: calc(41px + (81 - 41) * ((100vw - 360px) / (1920 - 360)));
  font-weight: 400;
  line-height: 55px;
}

h2 {
  font-size: calc(34px + (53 - 34) * ((100vw - 360px) / (1920 - 360)));
  font-weight: 800;
  position: relative;
  width: fit-content;
}
h2::after {
  content: "";
  position: absolute;
  width: 85px;
  height: 4px;
  left: 50%;
  background-color: #000;
  transform: translate(-50%);
  bottom: -10px;
}

h3 {
  font-size: calc(29px + (45 - 29) * ((100vw - 360px) / (1920 - 360)));
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
h3::after {
  content: "";
  position: absolute;
  width: 85px;
  height: 4px;
  left: 50%;
  background-color: #000;
  transform: translate(-50%);
  bottom: -10px;
}

h4 {
  font-size: calc(26px + (42 - 26) * ((100vw - 360px) / (1920 - 360)));
  font-weight: 400;
  line-height: 30px;
}

h5 {
  font-size: calc(23px + (38 - 23) * ((100vw - 360px) / (1920 - 360)));
  font-weight: 400;
  line-height: 30px;
}

h6 {
  font-size: calc(20px + (28 - 20) * ((100vw - 360px) / (1920 - 360)));
}

button {
  padding: 20px 32px;
  font-size: calc(16px + (24 - 16) * ((100vw - 360px) / (1920 - 360)));
  text-transform: uppercase;
  font-weight: 500;
  background-color: rgba(109, 11, 128, 0.64);
  border: 3px solid #AD21D6;
  color: #fff;
  cursor: pointer;
  transition: background-color linear 0.3s;
}
button:hover {
  background-color: #C69EFFD9;
}
button.submit {
  display: flex;
  margin-left: auto;
  background-color: #6D0B80;
  border: none;
  margin-left: 0;
}
button.submit:hover {
  background-color: #C69EFFD9;
}

label {
  font-weight: 700;
  font-size: calc(15px + (18 - 15) * ((100vw - 360px) / (1920 - 360)));
  margin-bottom: 4px;
}
label span.required {
  color: #f5380e;
  font-weight: 300;
  font-size: 14px;
}

input:not([type=file]), textarea, select {
  min-height: 50px;
  font-size: 16px;
  color: #9ea0a4;
  border: 1px solid #e2e2e2;
  padding: 0 15px;
  outline: none;
}
input:not([type=file]):focus, textarea:focus, select:focus {
  border-color: #65bc7b;
}

textarea {
  padding: 15px;
  font-family: "Manrope";
}

select {
  cursor: pointer;
}

.bubbles {
  margin-top: 12px;
}

span.bubble {
  background-color: #f0f0f0;
  width: fit-content;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
  margin: 2px 4px;
}
span.bubble .remove-btn {
  display: inline-block;
  margin-left: 8px;
  color: red;
  cursor: pointer;
}

input[type=file] {
  opacity: 0;
  height: 0;
}

.remove-file-btn {
  display: inline-block;
  margin-left: 4px;
  color: red;
  cursor: pointer;
}

.type-file {
  cursor: pointer;
  min-height: 50px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23333' stroke-width='1' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}

.custom-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
}
@media (min-width: 400px) {
  .custom-container {
    padding: 0 20px;
  }
}

@media (min-width: 768px) {
  .custom-container {
    padding: 0 50px;
  }
}
@media (min-width: 1024px) {
  .custom-container {
    max-width: 964px;
  }
}
@media (min-width: 1132px) {
  .custom-container {
    max-width: 1132px;
  }
}
@media (min-width: 1280px) {
  .custom-container {
    max-width: 1220px;
  }
}
@media (min-width: 1380px) {
  .custom-container {
    max-width: 1380px;
  }
}
@media (min-width: 1536px) {
  .custom-container {
    max-width: 1472px;
  }
}
@media (min-width: 1740px) {
  .custom-container {
    max-width: 1740px;
  }
}
.form-control {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
}

.swiper-slide img {
  width: 100%;
  object-fit: cover;
}

header {
  background-color: rgba(87, 52, 140, 0.49);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
header .burger {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
header nav {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav .logo a {
  display: flex;
  align-items: center;
}
header nav ul {
  display: flex;
}
header nav ul li {
  margin-left: calc(10px + (60 - 40) * ((100vw - 768px) / (1920 - 768)));
  text-transform: uppercase;
  color: #fff;
  position: relative;
  font-size: 16px;
}
header nav ul li::after, header nav ul li::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FABBE3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.52, 0.01, 0, 1);
}
header nav ul li::before {
  bottom: -5px;
  background-color: #C69EFFD9;
  transition-delay: 0s;
}
header nav ul li::after {
  transition-delay: 0.2s;
}
header nav ul li:hover::after, header nav ul li:hover::before {
  transform: scaleX(1);
}
header nav ul li:hover::after {
  transition-delay: 0s;
}
header nav ul li:hover::before {
  transition-delay: 0.2s;
}
header nav ul li:first-child {
  margin-left: 0;
}
header nav ul li a {
  padding: 5px;
  text-transform: uppercase;
}

.hero {
  min-height: 100vh;
}
.hero .swiper {
  position: relative;
  height: 969px;
}
.hero .swiper .custom-container {
  height: inherit;
}
.hero .swiper .swiper-slide {
  color: #fff;
}
.hero .swiper .swiper-slide img {
  object-fit: cover;
  left: 0;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.hero .swiper .swiper-slide__contentWrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero .swiper .swiper-slide__contentWrapper__inner {
  position: relative;
  z-index: 2;
}
.hero .swiper .swiper-slide__contentWrapper h1 {
  margin: 32px 0 18px;
}
.hero .swiper .swiper-slide__contentWrapper h5 {
  background-color: rgba(109, 11, 128, 0.64);
  width: fit-content;
  margin: 0 auto;
  padding: 12px 40px 20px;
}
.hero .swiper .swiper-slide__contentWrapper button {
  margin-top: 45px;
}
.hero .remaining-time {
  background-color: #AD21D6;
}
.hero .remaining-time__inner {
  min-height: 207px;
  padding: 30px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.hero .remaining-time__inner h6 {
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  letter-spacing: 4.48px;
}
.hero .remaining-time__inner__counter {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.hero .remaining-time__inner__counter__day {
  padding: 0 40px 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
}
.hero .remaining-time__inner__counter__day::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-60%);
  width: 4px;
  height: 48px;
  background-color: #fff;
}
.hero .remaining-time__inner__counter__day__count {
  font-size: calc(29px + (68 - 29) * ((100vw - 360px) / (1920 - 360)));
  line-height: 58px;
}
.hero .remaining-time__inner__counter__day__label {
  font-size: calc(13px + (21 - 13) * ((100vw - 360px) / (1920 - 360)));
  line-height: 24px;
}

.announcementsAndNews {
  padding: 100px 0;
}
.announcementsAndNews__grid {
  padding-left: 200px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.announcementsAndNews__grid__announcements, .announcementsAndNews__grid__news {
  grid-column: span 4/span 4;
}
.announcementsAndNews__grid__announcements h6 {
  letter-spacing: -1.12px;
  font-weight: 500;
  font-size: calc(22px + (32 - 22) * ((100vw - 360px) / (1920 - 360)));
}
.announcementsAndNews__grid__announcements h6.top {
  margin: 54px 0 12px;
}
.announcementsAndNews__grid__announcements p {
  font-size: calc(16px + (21 - 16) * ((100vw - 360px) / (1920 - 360)));
  line-height: 37px;
  padding-right: 10%;
}
.announcementsAndNews__grid__announcements .read-more {
  margin-top: 91px;
  display: flex;
  margin-left: auto;
  background-color: #6D0B80;
  border: none;
}
.announcementsAndNews__grid__announcements .read-more:hover {
  background-color: #C69EFFD9;
}
.announcementsAndNews__grid__news {
  grid-column: span 4/span 4;
  grid-column-start: 8;
}
.announcementsAndNews__grid__news h2 {
  margin-bottom: 54px;
}
.announcementsAndNews__grid__news__single {
  margin-right: 20%;
  border-bottom: 1px solid rgba(87, 52, 140, 0.49);
  margin-top: 24px;
}
.announcementsAndNews__grid__news__single h6 {
  font-size: calc(22px + (31 - 22) * ((100vw - 360px) / (1920 - 360)));
  line-height: 37px;
  font-weight: 400;
}
.announcementsAndNews__grid__news__single .date {
  font-weight: 500;
  color: #3D0281;
}
.announcementsAndNews__grid__news__single p {
  line-height: 28px;
}
.announcementsAndNews__grid__news__single .read-more {
  display: flex;
  margin-left: auto;
  width: fit-content;
  padding: 5px;
  font-weight: 500;
  color: #3D0281;
}

.more-than {
  padding: 50px 0 175px;
  background: url("../assets/more-than-bg.png") no-repeat center;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.more-than h3 {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 80px;
}
.more-than h3::after {
  background-color: #fff;
}
.more-than__numbers {
  display: flex;
  justify-content: center;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.more-than__numbers__single__number {
  font-size: calc(29px + (71 - 29) * ((100vw - 360px) / (1920 - 360)));
}
.more-than__numbers__single__label {
  font-size: calc(15px + (18 - 15) * ((100vw - 360px) / (1920 - 360)));
  font-weight: 300;
}
.more-than__numbers__single:nth-child(1), .more-than__numbers__single:nth-child(3) {
  position: absolute;
  left: 0;
}
.more-than__numbers__single:nth-child(3) {
  left: auto;
  right: 0;
}

.why-attend {
  padding: 80px 0 160px;
}
.why-attend h2 {
  text-transform: uppercase;
  margin: 0 auto;
  margin-bottom: 80px;
}
.why-attend__grid {
  margin: 0 auto;
  max-width: 65%;
  display: flex;
  gap: 10%;
}
.why-attend__grid > div {
  flex: 1;
}
.why-attend__grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.why-attend__grid .imgWrapper {
  margin: 0 auto;
  align-self: center;
  width: 65px;
  margin-bottom: 24px;
}
.why-attend__grid .imgWrapper img {
  width: 100%;
}

.speakers {
  padding: 80px 0 300px;
  background: url("../assets/speakers-bg.png") no-repeat center;
  background-size: cover;
  color: #fff;
}
.speakers h3 {
  margin-bottom: 100px;
}
.speakers h3::after {
  display: none;
}
.speakers .speakersSwiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.speakers .speakersSwiper .swiper-slide .info {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.schedule {
  padding: 150px 0;
  text-align: center;
}
.schedule h2 {
  margin: 0 auto 120px;
}
.schedule .swiper {
  max-width: 550px;
}
.schedule .swiper .swiper-slide {
  padding: 10px;
}
.schedule .swiper .swiper-slide .header {
  background-color: #A52CC8;
  padding: 26px 10px;
  display: flex;
  color: #fff;
  font-weight: 500;
  font-size: calc(18px + (24 - 18) * ((100vw - 360px) / (1920 - 360)));
}
.schedule .swiper .swiper-slide .header > div:first-child {
  margin-right: 50px;
}
.schedule .swiper .swiper-slide .body .row {
  display: flex;
  padding: 26px 10px;
  box-shadow: 0px 3px 6px #00000029;
  border: 1px solid #F1F1F1;
  font-size: calc(15px + (18 - 15) * ((100vw - 360px) / (1920 - 360)));
}
.schedule .swiper .swiper-slide .body .row > div:first-child {
  min-width: 30%;
  text-align: left;
}
.schedule .swiper .swiper-slide .body .row:last-child {
  box-shadow: 0px 3px 6px 0px #00000029;
}

.sponsors {
  padding-bottom: 200px;
}
.sponsors h2 {
  margin: 0 auto 100px;
}
.sponsors__grid {
  margin: 0 auto;
  text-align: center;
}
.sponsors__grid__item {
  display: inline-block;
  padding: 0 45px;
}

.sponsors__grid img {
  display: block;
  margin: 0 auto;
}

footer {
  background-color: #191150;
  padding: 64px 0 32px;
  color: rgba(255, 255, 255, 0.75);
}
footer .logo {
  margin-bottom: 20px;
}
footer .flex {
  display: flex;
  align-items: flex-end;
}
footer .flex .info {
  font-size: calc(12px + (13 - 12) * ((100vw - 360px) / (1920 - 360)));
  margin-right: 40px;
  display: flex;
  flex-direction: column;
}
footer .flex ul {
  display: flex;
}
footer .flex ul li {
  margin-left: 65px;
  font-size: calc(14px + (16 - 14) * ((100vw - 360px) / (1920 - 360)));
}
footer .flex ul li:first-child {
  margin-left: 0;
}
footer .flex ul li a {
  padding: 5px;
}

.first_call {
  padding: 100px 0 150px;
}

.first_call p a{
  font-size: 24px;
  padding: 5px 10px 5px 0px;
}

.first_call a:hover{
  text-decoration: underline;
}

.first_call h2 {
  padding-left: 8%;
  margin-bottom: 100px;
}
.first_call__grid {
  display: grid;
  padding-left: 8%;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.first_call__grid p {
  grid-column: span 8/span 8;
  font-size: calc(16px + (19 - 16) * ((100vw - 360px) / (1920 - 360)));
}

.equal-cols {
  display: flex;
  gap: 20px;
}
.equal-cols > div {
  flex: 1;
}

@media (max-width: 1024px) {
  .equal-cols {
    flex-direction: column;
  }
}
section.abstract {
  padding: 150px 0 100px;
}
section.abstract.register h4 {
  margin-top: 54px;
  font-size: calc(24px + (32 - 24) * ((100vw - 360px) / (1920 - 360)));
}
section.abstract.register h4:not(:first-child) {
  margin-bottom: 30px;
}
section.abstract.register .face-to-face-btn {
  margin: 20px 0;
}
section.abstract.register button, section.abstract.register .info {
  width: 75%;
}

.abstract-form {
  margin-top: 54px;
}
.abstract-form button {
  padding: 12px 24px;
  font-size: calc(16px + (18 - 16) * ((100vw - 360px) / (1920 - 360)));
  margin-top: 30px;
}
.abstract-form .error {
  font-size: 15px;
  color: red;
  display: none;
}

.abstract__grid {
  margin-top: 40px;
  font-size: 18px;
}
.abstract__grid p {
  margin: 10px 0;
}
.abstract__grid a {
  color: #A52CC8;
}

.register-table {
  margin: 54px 0 20px;
  width: 75%;
  border-collapse: collapse;
  text-align: center;
}
.register-table thead {
  background-color: #A52CC8;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
.register-table thead span {
  font-size: 21px;
}
.register-table thead td {
  padding: 10px 10px;
  border: none;
}
.register-table tbody td:first-child {
  text-align: left;
}
.register-table tbody tr {
  border-bottom: 1px solid #dcdcdc;
}
.register-table tbody tr td {
  padding: 10px 20px;
}

@media (max-width: 1600px) {
  footer .flex {
    align-items: flex-start;
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 1366px) {
  .announcementsAndNews__grid__announcements {
    grid-column: span 5/span 5;
  }

  .first_call {
    padding: 80px 0 180px;
  }
  .first_call h2 {
    margin-bottom: 80px;
  }
  .first_call__grid p {
    grid-column: span 10/span 10;
  }
}
@media (max-width: 968px) {
  .announcementsAndNews__grid {
    padding-left: 20%;
  }
  .announcementsAndNews__grid__announcements {
    grid-column: span 7/span 7;
  }

  .first_call {
    padding: 80px 0 120px;
  }
  .first_call h2 {
    margin-bottom: 80px;
    margin: 0 auto 80px;
    padding-left: 0;
  }
  .first_call__grid {
    padding-left: 0;
  }
  .first_call__grid p {
    grid-column: span 12/span 12;
  }
}
@media (max-width: 800px) {
  .hero .remaining-time__inner__counter__day {
    padding: 0 20px 0 30px;
  }
}
@media (max-width: 600px) {
  header .burger {
    display: block;
  }
  header .burger .close {
    visibility: hidden;
  }
  header nav ul {
    transition: transform 0.4s cubic-bezier(0.52, 0.01, 0, 1);
    transform: translate(100%);
    position: fixed;
    left: 35%;
    padding-left: 20px;
    right: 0;
    top: 100px;
    bottom: 0;
    padding-top: 75px;
    background: rgba(109, 11, 128, 0.75);
    flex-direction: column;
  }
  header nav ul li {
    font-size: 22px;
    margin: 20px 0;
    width: fit-content;
    font-weight: 500;
  }
  header nav ul li:last-child {
    margin-top: 100px;
    font-size: 18px;
  }
  header.opened .burger .close {
    visibility: visible;
  }
  header.opened .burger .lines {
    visibility: hidden;
  }
  header.opened nav ul {
    transform: translate(0);
  }

  .announcementsAndNews__grid {
    padding-left: 0;
  }
  .announcementsAndNews__grid__announcements {
    grid-column: span 12/span 12;
  }

  .hero .remaining-time__inner__counter__day {
    padding: 0 15px;
  }
  .hero .remaining-time__inner__counter__day::after {
    width: 3px;
    height: 40px;
  }

  .more-than__numbers {
    max-width: 335px;
  }

  footer .flex ul {
    display: flex;
    flex-direction: column;
  }
  footer .flex ul li {
    margin: 5px 0;
  }
}

/*# sourceMappingURL=style.css.map */