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

html {
  font-family: "Nunito", sans-serif;
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  background-color: #dbe2ef;
}

h1 {
  font-size: 6rem;
}

h2 {
  font-size: 3.6rem;
  padding: 2rem 0;
}

img {
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

p:not([class]) {
  font-size: 1.9rem;
}

.header {
  position: relative;
  width: 100%;
  padding: 1.5rem 0;
  background-color: #3f72af;
  opacity: 0.95;
}
.header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin: 0 8rem;
}
.header .nav-title {
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-size: 3.2rem;
  font-family: "JetBrains Mono", monospace;
}
.header .nav-list {
  display: flex;
  gap: 2rem;
  list-style-type: none;
  color: #ffffff;
}
.header .nav-list a {
  color: inherit;
  text-decoration: none;
}
.header .nav-list .nav-list-flag {
  width: 32px;
}
.header .hamburger-menu {
  display: none;
}
@media (max-width: 1024px) {
  .header .nav {
    margin: 0 2rem;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 4rem 0;
  }
  .header .nav-title {
    margin-top: 1rem;
  }
  .header .nav {
    display: none;
  }
  .header .nav.is-active {
    display: flex;
    flex-direction: column;
  }
  .header .nav.is-active .nav-list {
    flex-direction: column;
  }
  .header .nav.is-active a {
    margin-bottom: 2rem;
  }
  .header .hamburger-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
  }
  .header .hamburger-menu:hover {
    cursor: pointer;
  }
  .header .hamburger-menu .line {
    width: 50px;
    height: 5px;
    background-color: #ecf0f1;
    display: block;
    margin: 8px 0;
    transition: all 0.3s ease-in-out;
  }
  .header .hamburger-menu.is-active .line:nth-child(2) {
    opacity: 0;
  }
  .header .hamburger-menu.is-active .line:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
  }
  .header .hamburger-menu.is-active .line:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
  }
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}
.image-wrapper h1,
.image-wrapper h2 {
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.image-wrapper h2 {
  font-size: 2.5rem;
  width: 50%;
}
@media (max-width: 768px) {
  .image-wrapper {
    height: 80vh;
  }
}

.image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./../../images/background-image.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: zoomInOut 10s infinite alternate;
}

@keyframes zoomInOut {
  0% {
    background-size: 100%;
  }
  50% {
    background-size: 120%;
  }
  100% {
    background-size: 100%;
  }
}
.image-text {
  position: absolute;
  z-index: 2;
  left: 8rem;
  color: #ffffff;
}
.image-text h1 {
  font-size: 4rem;
}
.image-text h2 {
  font-size: 2rem;
}
.image-text a {
  display: inline-block;
  border: none;
  margin-top: 1rem;
  padding: 1rem 3.5rem;
  border-radius: 5px;
  background-color: #3f72af;
  color: inherit;
  letter-spacing: 2.5px;
  font-family: inherit;
  text-decoration: none;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .image-text {
    left: 2rem;
  }
}
@media (max-width: 768px) {
  .image-text h1 {
    font-size: 3rem;
  }
  .image-text h2 {
    font-size: 1.5rem;
    width: 80%;
  }
  .image-text a {
    padding: 0.5rem 2rem;
  }
  @keyframes zoomInOut {
    0% {
      background-size: cover;
    }
    50% {
      background-size: cover;
    }
    100% {
      background-size: cover;
    }
  }
}

.about-me {
  padding: 0 8rem 2rem;
  display: flex;
  justify-content: space-between;
  background-color: #dbe2ef;
  color: #1f1f1f;
  opacity: 0;
  transition: 800ms;
}
.about-me.active {
  opacity: 1;
}
.about-me h2 {
  color: #3f72af;
}
.about-me p {
  padding-bottom: 2rem;
}
.about-me .texts {
  width: 70%;
}
.about-me .image {
  --b: 0.5rem;
  --c: #3f72af;
  --w: 3rem;
  max-width: 100%;
  padding: 1rem;
  box-shadow: none;
  border: var(--b) solid rgba(0, 0, 0, 0);
  --_g: #0000 90deg, var(--c) 0;
  --_p: var(--w) var(--w) border-box no-repeat;
  background: conic-gradient(from 90deg at top var(--b) left var(--b), var(--_g)) 0 0/var(--_p), conic-gradient(from 180deg at top var(--b) right var(--b), var(--_g)) 100% 0/var(--_p), conic-gradient(from 0deg at bottom var(--b) left var(--b), var(--_g)) 0 100%/var(--_p), conic-gradient(from -90deg at bottom var(--b) right var(--b), var(--_g)) 100% 100%/var(--_p);
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: none;
  margin: 2rem 0 2rem 2rem;
  width: 30%;
  max-height: 60rem;
}
@media (max-width: 1024px) {
  .about-me .texts {
    width: 60%;
  }
  .about-me .image {
    width: 40%;
  }
  .about-me {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .about-me {
    flex-direction: column;
  }
  .about-me .texts {
    width: 90%;
  }
  .about-me .image {
    width: 80%;
  }
}

.digital-dentistry {
  padding: 0 8rem 2rem;
  background-color: #dbe2ef;
  opacity: 0;
  transition: 800ms;
}
.digital-dentistry.active {
  opacity: 1;
}
.digital-dentistry .digital-dentistry-box {
  display: grid;
  gap: 1rem;
  grid-template-columns: 3fr 7fr;
  align-items: center;
  margin-bottom: 1rem;
}
.digital-dentistry .digital-dentistry-box img {
  --b: 0.5rem;
  --c: #3f72af;
  --w: 3rem;
  max-width: 100%;
  padding: 1rem;
  box-shadow: none;
  border: var(--b) solid rgba(0, 0, 0, 0);
  --_g: #0000 90deg, var(--c) 0;
  --_p: var(--w) var(--w) border-box no-repeat;
  background: conic-gradient(from 90deg at top var(--b) left var(--b), var(--_g)) 0 0/var(--_p), conic-gradient(from 180deg at top var(--b) right var(--b), var(--_g)) 100% 0/var(--_p), conic-gradient(from 0deg at bottom var(--b) left var(--b), var(--_g)) 0 100%/var(--_p), conic-gradient(from -90deg at bottom var(--b) right var(--b), var(--_g)) 100% 100%/var(--_p);
}
.digital-dentistry .digital-dentistry-box div h3 {
  font-size: 3.2rem;
}
.digital-dentistry .digital-dentistry-box div p {
  margin-top: 1rem;
}
.digital-dentistry h2 {
  color: #3f72af;
}
.digital-dentistry p {
  padding-bottom: 2rem;
  color: #1f1f1f;
}
@media (max-width: 1024px) {
  .digital-dentistry {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .digital-dentistry .digital-dentistry-box {
    grid-template-columns: 1fr;
  }
}

.courses {
  padding: 2rem 8rem;
  background-color: #ebebeb;
  color: #1f1f1f;
  opacity: 0;
  transition: 800ms;
}
.courses.active {
  opacity: 1;
}
.courses .course-description {
  text-align: center;
}
.courses .course-description h3 {
  color: #656565;
  font-size: 3rem;
}
.courses .course-description h2 {
  padding: 0;
  font-size: 4.5rem;
}
.courses .course {
  display: flex;
}
.courses .course video {
  width: 50%;
  margin-right: 10rem;
  --b: 0.5rem;
  --c: #3f72af;
  --w: 3rem;
  max-width: 100%;
  padding: 1rem;
  box-shadow: none;
  border: var(--b) solid rgba(0, 0, 0, 0);
  --_g: #0000 90deg, var(--c) 0;
  --_p: var(--w) var(--w) border-box no-repeat;
  background: conic-gradient(from 90deg at top var(--b) left var(--b), var(--_g)) 0 0/var(--_p), conic-gradient(from 180deg at top var(--b) right var(--b), var(--_g)) 100% 0/var(--_p), conic-gradient(from 0deg at bottom var(--b) left var(--b), var(--_g)) 0 100%/var(--_p), conic-gradient(from -90deg at bottom var(--b) right var(--b), var(--_g)) 100% 100%/var(--_p);
}
.courses .course .wrapper {
  display: grid;
  place-items: center;
}
.courses .course .wrapper ol {
  list-style-type: none;
}
.courses .course .wrapper li {
  margin: 2rem;
}
.courses .course .wrapper ol li::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-image: url("./../../images/icons/check-mark.png");
  background-size: cover;
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  .courses .course-description h3 {
    font-size: 1.8rem;
  }
  .courses .course-description h2 {
    font-size: 2.4rem;
  }
  .courses .course {
    flex-direction: column;
  }
  .courses .course video {
    width: 90%;
  }
}
.courses h2 {
  margin-top: 0;
  color: #3f72af;
}
.courses a {
  display: inline-block;
  border: none;
  margin-top: 1rem;
  padding: 1rem 3.5rem;
  border-radius: 5px;
  background-color: #3f72af;
  color: inherit;
  letter-spacing: 2.5px;
  font-family: inherit;
  text-decoration: none;
  margin: 2rem;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .courses {
    padding: 0 2rem;
  }
}

.services-list {
  padding: 2rem 8rem;
  background-color: #ebebeb;
  opacity: 0;
  transition: 800ms;
}
.services-list.active {
  opacity: 1;
}
.services-list h2 {
  margin-top: 0;
  color: #3f72af;
}
.services-list .list-element {
  display: flex;
  margin-bottom: 2rem;
}
.services-list .list-element img {
  box-shadow: none;
  width: 80px;
  height: 80px;
}
.services-list .list-element .list-element-description {
  margin-left: 2rem;
}
.services-list .list-element .list-element-description h4 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .services-list {
    padding: 2rem 2rem;
  }
}

.map {
  width: 100%;
  opacity: 0;
  transition: 800ms;
}
.map.active {
  opacity: 1;
}

.contact {
  padding: 2rem 8rem;
  display: flex;
  background-color: #dbe2ef;
  opacity: 0;
  transition: 800ms;
}
.contact.active {
  opacity: 1;
}
.contact .contact-form {
  width: 65%;
}
.contact .contact-form h2 {
  margin-top: 0;
  color: #3f72af;
}
.contact .contact-form p {
  color: #1f1f1f;
  padding: 2rem 0;
}
.contact .contact-form form {
  display: flex;
  flex-direction: column;
}
.contact .contact-form input,
.contact .contact-form textarea,
.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
  width: 75%;
  border: none;
  outline: none;
  border-bottom: 1px solid #959595;
}
.contact .contact-form .rodo {
  width: 75%;
  margin: 2rem 0;
}
.contact .contact-form #rodo-checkbox {
  width: auto;
}
.contact .contact-form input,
.contact .contact-form textarea {
  padding: 10px 10px 10px 0;
  background-color: inherit;
  font-family: inherit;
}
.contact .contact-form textarea {
  height: 200px;
  resize: none;
}
.contact .contact-form button {
  width: 15%;
  margin: 1rem 0;
  padding: 1.5rem 0;
  background-color: #3f72af;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-family: inherit;
  cursor: pointer;
}
.contact img {
  max-width: 40%;
  height: auto;
  box-shadow: none;
}
@media (max-width: 1024px) {
  .contact {
    padding: 2rem 2rem;
  }
}
@media (max-width: 768px) {
  .contact .contact-form {
    width: 100%;
  }
  .contact img {
    display: none;
  }
  .contact .contact-form input,
  .contact .contact-form textarea,
  .contact .contact-form input:focus,
  .contact .contact-form textarea:focus {
    width: 100%;
  }
  .contact .contact-form .rodo {
    width: 100%;
  }
  .contact .contact-form button {
    width: 50%;
  }
}

.footer {
  width: 100%;
  padding: 2rem 0;
  background-color: #3f72af;
  color: #ffffff;
}
.footer a {
  color: inherit;
}
.footer p {
  margin: 0 8rem;
}
@media (max-width: 1024px) {
  .footer p {
    margin: 0 2rem;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 1rem 0;
  }
  .footer p {
    font-size: 1.4rem;
  }
}

.eu-programs {
  padding: 2rem 8rem;
  opacity: 0;
  transition: 800ms;
}
.eu-programs h2 {
  margin-top: 0;
  color: #3f72af;
}
.eu-programs p {
  color: #1f1f1f;
  padding: 2rem 0;
}
.eu-programs img {
  --b: 0.5rem;
  --c: #3f72af;
  --w: 3rem;
  max-width: 100%;
  padding: 1rem;
  box-shadow: none;
  border: var(--b) solid rgba(0, 0, 0, 0);
  --_g: #0000 90deg, var(--c) 0;
  --_p: var(--w) var(--w) border-box no-repeat;
  background: conic-gradient(from 90deg at top var(--b) left var(--b), var(--_g)) 0 0/var(--_p), conic-gradient(from 180deg at top var(--b) right var(--b), var(--_g)) 100% 0/var(--_p), conic-gradient(from 0deg at bottom var(--b) left var(--b), var(--_g)) 0 100%/var(--_p), conic-gradient(from -90deg at bottom var(--b) right var(--b), var(--_g)) 100% 100%/var(--_p);
  width: 800px;
}
.eu-programs .projects-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 4px;
}
.eu-programs img:last-child {
  grid-column: span 2;
}
.eu-programs.active {
  opacity: 1;
}
@media (max-width: 1024px) {
  .eu-programs {
    padding: 2rem 2rem;
  }
  .eu-programs .projects-container {
    grid-template-columns: 1fr;
  }
  .eu-programs img:last-child {
    grid-column: span 1;
  }
}

.arrow-image {
  width: 70px;
  height: 70px;
  position: sticky;
  bottom: 0px;
  left: 100%;
  cursor: pointer;
  box-shadow: none;
}

.arrow-image.closed {
  display: none;
}/*# sourceMappingURL=main.css.map */