@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Open+Sans:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600;1,700;1,800&family=Roboto:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");

:root {
  --c-color1: #191970;
  /* Midnight Blue */
  --c-color2: #A9F0D1;
  /* Magic Mint */
  --c-color3: #FF7700;
  /* Safety Orange */
  --c-color4: #41463d;
  /* Black Olive */
  --c-color5: #93B7BE;
  /* Pewter Blue */
  --c-ltbg: #eef;
}

/* Normalize */

html {
  box-sizing: border-box;
  overflow-x: hidden;
  transition: 0.5s all;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  margin: 0 auto;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section {
  display: block;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: Courier, monospace;
  font-size: 1.2rem;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: var(--c-color1);
}

a:active,
a:hover {
  outline-width: 0;
  border-bottom: solid var(--c-color1) 0.2rem;
}

abbr[title] {
  border-bottom: none;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 80%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  line-height: 1.5;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
  resize: none;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[hidden],
template {
  display: none;
}

figure {
  margin: 1em 40px;
}

audio,
canvas,
progress,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

/* End of Normalize */

body {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.2;
}

h1 {
  letter-spacing: 0.2rem;
  font-size: 2.4rem;
}

h2 {
  letter-spacing: 0.2rem;
  font-size: 1.9rem;
}

h3 {
  letter-spacing: 0.2rem;
  font-size: 1.7rem;
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.3rem;
}

h6 {
  font-size: 1.2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 700;
}

p {
  line-height: 1.5;
  margin: 0;
}

main {
  margin: 100px 0 0;
}

section {
  margin: 0 auto;
  padding: 2rem 0;
  overflow: hidden;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  font-size: inherit;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.4rem;
  border: solid 2px var(--c-color1);
  border-radius: 1vh;
}

input[type="submit"],
input[type="reset"] {
  cursor: pointer;
  font-weight: 700;
  transition: all 0.5s;
}

input[type="submit"]:hover,
input[type="reset"]:hover {
  color: var(--c-color3);
  background-color: var(--c-color1);
}

legend {
  display: none;
}

.grecaptcha-badge {
  z-index: 600 !important;
}

.radius1 {
  border-radius: 1rem;
}

.shadow1 {
  box-shadow: 0 0 0.6vh 0.6vh rgba(65, 70, 61, 0.5);
}

.shadow2 {
  box-shadow: 0 0 0.6vh 0.6vh rgba(65, 70, 61, 0.8);
}


.border1 {
  border-bottom: solid var(--c-color3) 0.5rem;
  border-top: solid var(--c-color3) 0.5rem;
}

.insahadow1 {
  box-shadow:
    inset 0 0.2rem 0.2rem var(--c-color5),
    inset 0 -0.2rem 0.2rem var(--c-color5);
}

.widsm {
  width: min(1100px, 90%);
}

.widlr {
  width: min(1400px, 97%);
}

.flexcontainer {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
  width: min(1400px, 97%);
}

.header1 {
  margin: 0 auto;
  padding: 1rem;
  font-weight: 900;
  text-align: center;
  color: var(--c-color1);
  background-color: var(--c-color5);
}

.header2 {
  margin: 2rem auto 0;
  padding: 1rem;
  text-align: center;
  color: var(--c-color4);
  background-color: var(--c-color2);
}

.textcenter {
  text-align: center;
}

.underlink {
  margin: 0.6rem;
  padding: 0.6rem;
  border-radius: 1rem;
}

.underlink:hover {
  background-color: white;
  border-bottom: solid var(--c-color3) 0.5rem;
}

.sidelink {
  padding: 1rem;
  border-radius: 0.5rem;
}

.sidelink:hover {
  background-color: var(--c-color3);
  border-left: solid var(--c-color1) 0.3rem;
  border-right: solid var(--c-color1) 0.3rem;
}

.margintop1rem {
  margin-top: 1rem;
}

.topicon {
  font-size: 3em;
  color: var(--c-color3);
}

/* Style The Dropdown Button */
.dropbtn {
  font-size: 1.6rem;
  cursor: pointer;
  color: black;
  transition: all 0.5s;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--c-ltbg);
  min-width: 160px;
  z-index: 1;
  transition: all 0.5s;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 0.8rem 1.2rem;
  text-decoration: none;
  display: block;
  transition: all 0.5s;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  color: var(--c-color1);
  background-color: var(--c-color3);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: var(--c-color1);
  color: var(--c-color3);
}

#topfixedhead {
  position: fixed;
  z-index: 1030;
  background-color: var(--c-color4);
  padding: 0.8rem 0;
  top: 0.1rem;
  right: -0.1rem;
  left: -0.1rem;
  box-shadow:
    inset 0 0.2rem 0.2rem var(--c-color5),
    inset 0 -0.2rem 0.2rem var(--c-color5),
    0 -0.2rem 0.2rem var(--c-color5),
    0 0.2rem 0.2rem var(--c-color5);
}

#topsection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

#navbar>button {
  border-radius: 1vh;
  border: 0;
  padding: 1vh 1vw;
}

#topsection>h2 {
  display: none;
}

#topsection>img {
  display: block;
  max-height: 35px;
}

#langnav ul {
  position: relative;
  padding: 0;
  margin: 0.5vw 0 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  align-items: center;
  list-style: none;
}

#langnav a {
  padding: 0.5vw 0.5vw;
  white-space: nowrap;
  border-radius: 4px;
}

#langnav a:hover {
  background-color: var(--c-color1);
  border-bottom: solid var(--c-color3) 3px;
}

#intro {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  background: url("../images/introbg.jpg") top;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
}

#activities>article {
  margin: 2rem 1rem 0;
  padding: 1rem;
  overflow: hidden;
  background-color: #fff;
  width: max(310px, 20%);
}

#activities h3 {
  padding: 1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--c-color1);
  background-color: var(--c-color3);
  text-align: center;
  letter-spacing: 0.1vw;
}

#activities p {
  margin: 1rem 0 0;
}

#about {
  background-color: white;
}

#aboutdescr p {
  width: max(500px, 45%);
  box-sizing: border-box;
  padding: 1rem;
  margin: 2rem 1rem 0;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Open Sans", Arial, sans-serif;
  background-color: #fff;
}

#aboutdescr p::first-letter {
  font-weight: 700;
}

#objectives {
  background-color: white;
}

#objectives h2 {
  margin: 0 auto;
}

#objdescr {
  padding: 0;
  align-items: center;
}

#objdescr>div {
  box-sizing: border-box;
  overflow: hidden;
  width: max(500px, 45%);
}

#objdescr ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#objdescr li {
  margin: 2rem 1rem 0;
  padding: 1rem;
  line-height: 1.2;
  background-color: var(--c-color5);
  border-radius: 1rem;
  border-left: solid var(--c-color1) 0.6rem;
}

#objdescr li::first-letter {
  font-weight: 700;
}

#objdescr img {
  box-sizing: border-box;
  padding: 0;
  overflow: hidden;
  width: max(250px, 92%);
  height: 100%;
}

#results {
  background-color: var(--c-color5);
}

#results h2 {
  margin: 0 auto;
}

#resdescr>div {
  text-align: center;
  padding: 1rem;
  margin: 2rem 1rem 0;
  width: max(500px, 45%);
  background-color: white;
}

#resdescr p::first-letter {
  font-weight: 700;
}

#partners {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  background-color: white;
  position: relative;
}

.partnerssection {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
  margin: 0 auto;
  padding: 0;
}

.partnerssection>div {
  margin: 2rem 1rem 0;
  padding: 1rem;
  overflow: hidden;
  background-color: #fff;
  text-align: center;
  width: max(500px, 45%);
}

.partnerssection a {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.partnerssection img {
  max-width: 90%;
}

#news {
  background: url("../images/introbg.jpg") top;
  background-attachment: fixed;
  background-size: cover;
}

#newsarticles div {
  width: max(500px, 45%);
  box-sizing: border-box;
  padding: 1rem;
  margin: 2rem 1rem 0;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Open Sans", Arial, sans-serif;
  background-color: #fff;
}

#contactus {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  background-color: var(--c-color2);
  position: relative;

}

#contactus fieldset {
  width: max(500px, 45%);
  box-sizing: border-box;
  padding: 1rem;
  margin: 2rem 1rem 0;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Open Sans", Arial, sans-serif;
  background-color: #fff;
}

#formcompany {
  margin: 0;
}

#formend {
  font-weight: 700;
  display: flex;
  flex-direction: column;
  height: auto;
  width: min(900px, 90%);
  margin: 1rem auto 0;
  text-align: center;
}

#formend input {
  padding: 0.4rem 2rem;
  border: solid 2px var(--c-color1);
  font-size: 1.4rem;
}

#contactinfo {
  margin: 2rem 0;
  padding: 1rem;
  color: white;
  background-color: var(--c-color1);
}

#formresult {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  background: url("../images/introbg.jpg") top;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
}

#formresult p {
  margin: 2rem auto 0;
  padding: 2rem;
  background-color: white;
  text-align: center;
}

#formresult>p>a {
  background-color: var(--c-color2);
  border: solid 2px var(--c-color1);
  padding: 0.4rem 2rem;
  transition: all 0.5s;
}

#formresult>p>a:hover {
  color: var(--c-color3);
  background-color: var(--c-color1);
}

#botfooter {
  z-index: 650;
  margin: 0 -0.6rem;
  color: white;
  background-color: var(--c-color4);
  box-shadow: inset 0 0.2rem 0.2rem white, inset 0 -0.2rem 0.2rem white;
}

#botfooter>div {
  margin: 0 auto;
  padding: 2rem 0;
  overflow: hidden;
  align-items: start;
}

#botfooter p {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1;
  margin-top: 1rem;
}

#erasmuslogo {
  margin: 0 2rem;
  max-height: 70px;
}

@media (min-width: 768px) {
  #topsection>h2 {
    display: block;
  }

  #topsection>img {
    max-height: 70px;
  }
}