@charset "UTF-8";
/*
	================
	   BASE STYLE
	================
*/
/*Was found https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  box-sizing: border-box;
  font-size: 80%;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/*Was found http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  font-family: inherit;
  vertical-align: baseline;
}

/* remember to define focus styles! */
:focus {
  outline: 0;
}

a:link,
a:visited {
  text-decoration: none;
  color: #4a5eff;
  line-height: 150%;
  transition: color 0.4s;
}

a:hover,
a:active {
  text-decoration: none;
  color: #1730ff;
}

ol, ul {
  list-style: none;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
}

body {
  color: #5a5a5a;
  background: #fff;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  /*	Prevent the menu to be shown*/
  overflow-x: hidden;
  height: 100%;
}

header {
  flex: 0 0 0;
  width: 100%;
}

nav {
  flex: 0 0 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: stretch;
  position: relative;
  min-height: 50px;
  max-height: 50px;
  width: 100%;
  background-color: #000;
  color: #fff;
}

main {
  flex: 16 0 auto;
  width: 100%;
}

footer {
  flex-shrink: 0;
  position: relative;
  width: 100%;
  background-color: #323848;
  color: #fff;
  padding-top: 1.4375rem;
}

.full-width1 {
  width: 100% !important;
  grid-column: 1/-1;
  /* if using CSS grid */
}

@media screen and (min-width: 700px) {
  nav {
    justify-content: center;
    align-items: center;
  }

  html {
    font-size: 100%;
  }
}
/*
	================
	   PADDING
	================
*/
/*
	================
	   MARGIN
	================
*/
.m-bottom-xl {
  margin-bottom: 2.5rem;
}

.m-bottom-xxl {
  margin-bottom: 3rem;
}

.m-right-xxl {
  margin-right: 3rem;
}

.u-m-bottom--xl {
  margin-bottom: 50px;
}

.u-m-bottom--lg {
  margin-bottom: 40px;
}

.heading-secondary {
  font-size: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
.heading-secondary--bottom-line {
  position: relative;
}
.heading-secondary--bottom-line:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 140%;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 50%;
  background-color: #26bac7;
}

/*
	================
	   LAYOUTS
	================
*/
.l-row-start {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: stretch;
}

.l-row-center {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: start;
}

.l-row-center__center {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.l-row-start__center {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.l-row-end__center {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.l-row-space-between {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: unset;
}

.l-row-space-between__start {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
}

.l-row-space-between__center {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.l-row-space-around {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
}

.l-row-space-around__center {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.l-col-start {
  display: flex;
  flex-direction: column;
  align-items: initial;
  justify-content: initial;
}

.l-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: initial;
}

.l-table {
  display: table;
}

.l-block {
  display: block;
}

.l-none {
  display: none;
}

.l-full-width {
  width: 100%;
}

.l-inner-wrapper {
  width: 90%;
}

.l-outer-wrapper {
  width: 95%;
}

.l-wrapper__padding {
  padding-top: 1.4375rem;
  padding-bottom: 3rem;
}

.l-sub-menu-wrapper {
  width: 100%;
}

@media screen and (min-width: 700px) {
  .l-outer-wrapper {
    width: 80%;
  }

  .l-wrapper__padding {
    padding-top: 2.0625rem;
  }
}
@media screen and (min-width: 900px) {
  .l-inner-wrapper {
    width: 80%;
  }

  .l-wrapper__padding {
    padding-top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .l-inner-wrapper,
.l-sub-menu-wrapper {
    width: 65%;
  }

  .l-outer-wrapper {
    width: 93%;
  }

  .l-wrapper__padding {
    padding-top: 3rem;
  }
}
@media screen and (min-width: 1500px) {
  .l-outer-wrapper {
    width: 75%;
  }
}
/*
	====================
	   NAV MENUS STYLE
	====================
*/
/* MAIN MENU */
.main-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  position: absolute;
  top: 50px;
  height: 55vh;
  background-color: #1d212a;
  transform: translateX(-100vh);
  transition: transform 1.2s;
}
.main-menu__item {
  opacity: 0;
}
.main-menu__link:link, .main-menu__link:visited {
  font-size: 1.25rem;
  text-transform: uppercase;
  height: 35px;
  color: #fff;
  transition: transform 0.5s, color 0.5s, border-bottom 0.3s;
}
.main-menu__link:hover, .main-menu__link:active {
  color: #5a5a5a;
  border-bottom: 2px solid #fff;
  transform: scale(1.2);
}

.social-links__link {
  justify-content: center;
  width: 40px;
}
.social-links__link:link > i, .social-links__link:visited > i {
  color: #fff;
  font-size: 1.45rem;
  transition: transform 0.5s, color 0.5s;
}
.social-links__link:hover > i, .social-links__link:active > i {
  color: #5a5a5a;
  transform: scale(1.1);
}

.burger {
  display: block;
  align-self: center;
  padding-left: 0.5625rem;
  cursor: pointer;
}
.burger__line1, .burger__line2, .burger__line3 {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
  transition: transform 0.4s;
}

/* SUB MENU IN APPLICATION PAGE */
.sub-menu__item {
  width: 50%;
  line-height: 0;
  transition: transform 0.3s;
}
.sub-menu__item:nth-child(1) {
  background-color: #48b7b0;
}
.sub-menu__item:nth-child(2) {
  background-color: #a4c969;
}
.sub-menu__item:nth-child(3) {
  background-color: #2d5e7e;
}
.sub-menu__item:nth-child(4) {
  background-color: #f1bc48;
}
.sub-menu__item:nth-child(5) {
  background-color: #e97c67;
}
.sub-menu__item:nth-child(6) {
  background-color: #ad4673;
}
.sub-menu__item:nth-child(1) {
  background-color: #48b7b0;
}
.sub-menu__item:nth-child(2) {
  background-color: #a4c969;
}
.sub-menu__item:nth-child(3) {
  background-color: #2d5e7e;
}
.sub-menu__item:nth-child(4) {
  background-color: #f1bc48;
}
.sub-menu__item:nth-child(5) {
  background-color: #e97c67;
}
.sub-menu__item:nth-child(6) {
  background-color: #ad4673;
}
.sub-menu__img {
  width: 60%;
  height: auto;
}

/*
	========================
	   NAV MENUS MEDIA QUERY
	========================
*/
@media screen and (min-width: 500px) {
  .sub-menu__img {
    width: 50%;
  }
}
@media screen and (min-width: 700px) {
  .main-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    top: unset;
    height: unset;
    background-color: transparent;
    transform: translateX(0);
  }
  .main-menu__item {
    opacity: 1;
  }
  .main-menu__link:link, .main-menu__link:visited {
    font-size: 1.15rem;
  }

  .social-links__link {
    justify-content: flex-end;
  }
  .social-links__link:link > i, .social-links__link:visited > i {
    font-size: 1.25rem;
  }

  .burger {
    display: none;
  }

  .sub-menu__item {
    width: 33.3333%;
  }
}
@media screen and (min-width: 900px) {
  .main-menu__link:link, .main-menu__link:visited {
    font-size: 1.25rem;
  }

  .social-links__link:link > i, .social-links__link:visited > i {
    font-size: 1.45rem;
  }

  .sub-menu__item {
    width: 16.6666%;
  }

  .sub-menu__img {
    width: 80%;
  }
}
@media screen and (min-width: 1200px) {
  .sub-menu__img {
    width: 100%;
  }
}
/*
	================
	   HEADER STYLE
	================
*/
.top-logo {
  display: none;
  background-color: #323848;
}
.top-logo__link {
  display: inline-flex;
  align-items: center;
  padding: 0.5625rem;
}
.top-logo__link > img {
  width: 28px;
  margin-right: 0.5625rem;
}
.top-logo__link > span {
  color: #fff;
  font-size: 1.25rem;
}

.banner {
  background-image: url(../images/Banner_min.jpg);
  background-position: 24%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 160px;
}

.wrap-title {
  width: 46.3%;
  height: 100%;
  color: #185A61;
}

.cont-title__img {
  width: 75px;
  height: auto;
  margin-bottom: 0.5625rem;
}
.cont-title__title {
  display: none;
  font-weight: 500;
  font-size: 1.6875rem;
  line-height: 120%;
  margin-bottom: 1.4375rem;
}
.cont-title__sub-title {
  display: none;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.cont-title::after {
  content: "U ALBANIA";
}

/*
	============================
	   HEADER STYLE MEDIA QUERY
	============================
*/
@media screen and (min-width: 500px) {
  .wrap-title {
    width: 41.3%;
  }
}
@media screen and (min-width: 700px) and (max-width: 750px) {
  .wrap-title {
    width: 44.3%;
  }
}
@media screen and (min-width: 700px) {
  .banner {
    height: 247px;
    background-position: 2%;
  }

  .cont-title::after {
    content: "";
  }

  .cont-title__img {
    width: 100px;
    margin-bottom: 2.0625rem;
  }

  .cont-title__title {
    display: block;
  }

  .cont-title__sub-title {
    display: block;
  }
}
@media screen and (min-width: 900px) and (max-width: 950px) {
  .wrap-title {
    width: 43.3%;
  }
}
@media screen and (min-width: 900px) {
  .top-logo {
    display: block;
  }

  .banner {
    height: 340px;
    background-position: 26%;
  }

  .cont-title__img {
    width: 110px;
  }
}
@media screen and (min-width: 1200px) {
  .banner {
    height: 410px;
    background-position: 0;
  }

  .cont-title__img {
    width: 130px;
    margin-bottom: 3rem;
  }

  .cont-title__title {
    font-size: 2.375rem;
  }

  .cont-title__sub-title {
    font-size: 1.6875rem;
  }
}
@media screen and (min-width: 1500px) {
  .banner {
    height: 450px;
  }

  .cont-title {
    margin-left: -20%;
  }

  .cont-title__title {
    font-size: 3.25rem;
  }

  .cont-title__img {
    width: 145px;
  }
}
@media screen and (min-width: 1500px) and (max-width: 1550px) {
  .cont-title {
    margin-left: -15%;
  }
}
/*
	================
	   FOOTER STYLE
	================
*/
.footer__back-to-top {
  position: absolute;
  top: -16px;
  right: 16px;
  background-color: #323848;
  padding: 20px;
  border-radius: 0 20px 0 0;
  transform: rotate(-45deg);
}
.footer__back-to-top i {
  color: white;
  font-size: 1.7em;
  transform: rotate(45deg);
  margin-top: -9px;
  margin-right: -5px;
}
.footer__info {
  width: 85%;
  display: grid;
  grid-template-areas: "address span" "tel span" "email logo";
  grid-template-columns: 3fr 1fr;
  grid-gap: 15px;
  padding: 10px;
  font-size: 0.625rem;
  line-height: 60%;
}
.footer__copy {
  width: 100%;
  background-color: #000;
  text-align: center;
  padding: 1.25rem;
  font-size: 0.975rem;
}
.footer__copy p {
  margin: 0;
}
.footer__address {
  grid-area: address;
}
.footer__tel {
  grid-area: tel;
}
.footer__email {
  grid-area: email;
}
.footer__logo {
  grid-area: logo;
}
.footer__address-label, .footer__tel-label, .footer__email-label {
  margin-right: 1.25rem;
  width: 50px;
}
.footer__address-label::before, .footer__tel-label::before, .footer__email-label::before {
  font-weight: 900;
  font-family: "Font Awesome 5 Free", serif;
  color: white;
  display: block;
  font-size: 1em;
  margin-right: 8px;
}
.footer__address-label::before {
  content: "";
}
.footer__tel-label::before {
  content: "";
}
.footer__email-label::before {
  content: "";
}
.footer__logo-img {
  width: 75px;
  height: auto;
}
.footer__email-value:link, .footer__email-value:visited {
  color: #fff;
  transition: color 1.2s;
  line-height: 60%;
}
.footer__email-value:hover, .footer__email-value:visited {
  color: #1730ff;
}

/*
	============================
	   FOOTER STYLE MEDIA QUERY
	============================
*/
@media screen and (min-width: 500px) {
  .footer__info {
    width: 70%;
  }
}
@media screen and (min-width: 700px) {
  .footer__info {
    width: 90%;
    grid-template-areas: "address tel email" "logo span span";
    grid-template-columns: 1.5fr 1fr 1fr;
    font-size: 0.775rem;
  }

  .footer__address-label,
.footer__tel-label,
.footer__email-label {
    width: unset;
  }

  .footer__logo {
    grid-column: 1/4;
    text-align: center;
  }
}
@media screen and (min-width: 900px) {
  .footer__info {
    grid-template-areas: "address tel email logo";
    grid-template-columns: 1.5fr repeat(3, 1fr);
    font-size: 0.675rem;
  }

  .footer__logo {
    grid-column: unset;
  }
}
@media screen and (min-width: 1200px) {
  .footer__info {
    width: 65%;
    font-size: 0.775rem;
  }
}
@media screen and (min-width: 1500px) {
  .footer__info {
    font-size: 0.875rem;
  }
}
/*
$breakpoint argument choses:
- extra-small
- small
- medium
- large
- extra-large

ORDER: base + typography > general layout + grid layout > components

*/
/*
	========================
	 APPLICATION PAGE STYLE
	========================
*/
.section-article {
  margin-bottom: 60px;
  display: flex;
}
@media only screen and (max-width: 50em) {
  .section-article {
    flex-direction: column;
  }
}

.article-application:not(:last-of-type) {
  margin-bottom: 1.4375rem;
}
.article-application__img {
  width: 30px;
  margin-right: 0.5625rem;
}
.article-application__link {
  font-size: 1.15rem;
}

.section-info {
  border-bottom: 1px solid #d8d8d8;
  padding: 60px 0;
}
.section-info:first-of-type {
  border-top: 1px solid #d8d8d8;
}
.section-info__header {
  display: grid;
  grid-template-areas: "title title" "desc cta";
  grid-template-columns: 1.6fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}
.section-info__title {
  grid-area: title;
  font-size: 1.55rem;
  color: #2762a7;
}
.section-info__name {
  grid-area: title;
  font-size: 1.55rem;
  color: #2762a7;
}
.section-info__desc {
  grid-area: desc;
  font-size: 1.075rem;
  line-height: 1.5;
}
.section-info__cta {
  grid-area: cta;
  display: flex;
  justify-content: space-between;
}
.section-info__btn {
  cursor: pointer;
}
.section-info__btn:not(:last-child) {
  margin-right: 25px;
}
.section-info__btn > img {
  width: 70px;
}
.section-info__body {
  display: flex;
  justify-content: space-between;
}
.section-info__frame:first-of-type {
  margin-right: 50px;
}
@media only screen and (max-width: 62.5em) {
  .section-info__body {
    justify-content: center;
    flex-wrap: wrap;
  }
  .section-info__frame:first-of-type {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 50em) {
  .section-info__header {
    grid-template-areas: "title" "desc" "cta";
    grid-template-columns: 1fr;
  }
  .section-info__cta {
    justify-content: center;
  }
}
@media only screen and (max-width: 31.25em) {
  .section-info_cta {
    justify-content: space-between;
  }
}

.manuali {
  width: 33%;
  margin-left: -11%;
}
@media only screen and (max-width: 75em) {
  .manuali {
    width: 71%;
    margin-left: -2%;
  }
}

.section-info__udhezues {
  margin-top: 84px;
}
.section-info__udhezues .button-label {
  margin-top: 1.5%;
  font-size: 26px;
}
@media only screen and (max-width: 75em) {
  .section-info__udhezues .button-label {
    margin-top: 1.5%;
    font-size: 30px;
    margin-left: 21%;
  }
}
@media only screen and (max-width: 62.5em) {
  .section-info__udhezues .button-label {
    margin-left: 24%;
    margin-top: 1.5%;
    font-size: 23px;
  }
}
@media only screen and (max-width: 50em) {
  .section-info__udhezues .button-label {
    margin-left: 17%;
  }
}
@media only screen and (max-width: 50em) {
  .section-info__udhezues .button-label {
    width: 10%;
  }
}
@media only screen and (max-width: 62.5em) {
  .section-info__udhezues {
    width: 120px;
    margin-top: 73px;
    margin-left: 39%;
  }
}
@media only screen and (max-width: 75em) {
  .section-info__udhezues {
    width: 98%;
    margin-left: 21%;
    margin-top: 29px;
  }
}

.section-info__name {
  grid-area: title;
  font-size: 1.55rem;
  color: #2762a7;
}
@media only screen and (max-width: 50em) {
  .section-info__name {
    margin-top: -15%;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 62.5em) {
  .section-info__name {
    margin-top: -5%;
    font-size: 1.8rem;
  }
}

.kartolina {
  width: 65%;
  margin-left: 46%;
  margin-top: -141px;
}
.kartolina .button-label {
  margin-left: 70%;
  margin-top: 1.5%;
  font-size: 26px;
}
@media only screen and (max-width: 50em) {
  .kartolina .button-label {
    margin-left: 10%;
  }
}
@media only screen and (max-width: 62.5em) {
  .kartolina .button-label {
    margin-left: 38%;
    margin-top: 1.5%;
    font-size: 23px;
  }
}
@media only screen and (max-width: 75em) {
  .kartolina .button-label {
    margin-left: 38%;
    font-size: 30px;
  }
}
@media only screen and (max-width: 50em) {
  .kartolina {
    width: 83%;
    margin-left: 9%;
    margin-top: 36px;
  }
}
@media only screen and (max-width: 75em) {
  .kartolina {
    width: 85%;
    margin-left: 9%;
    margin-top: 36px;
  }
}

.video {
  width: 65%;
  margin-left: 17%;
  margin-top: -142px;
}
.video .button-label {
  margin-left: 33%;
  margin-top: 1.5%;
  font-size: 26px;
}
@media only screen and (max-width: 75em) {
  .video .button-label {
    margin-left: 32%;
    margin-top: 1.5%;
    font-size: 30px;
  }
}
@media only screen and (max-width: 62.5em) {
  .video .button-label {
    margin-left: 38%;
    margin-top: 1.5%;
    font-size: 23px;
  }
}
@media only screen and (max-width: 50em) {
  .video .button-label {
    margin-left: 21%;
  }
}
@media only screen and (max-width: 50em) {
  .video {
    width: 77%;
    margin-left: 11%;
    margin-top: 5px;
  }
}
@media only screen and (max-width: 62.5em) {
  .video {
    width: 85%;
    margin-left: 9%;
    margin-top: 21px;
  }
}
@media only screen and (max-width: 75em) {
  .video {
    width: 85%;
    margin-left: 9%;
    margin-top: 21px;
  }
}

.info-application {
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  padding-top: 1.4375rem;
  padding-bottom: 1.4375rem;
  margin-bottom: 2.0625rem;
}
.info-application__section {
  width: 100%;
  margin-bottom: 1.4375rem;
}
.info-application__title {
  font-size: 1.15rem;
  margin-bottom: 0.5625rem;
  color: #2762a7;
}
.info-application__text {
  font-size: 0.875rem;
  line-height: 150%;
}
.info-application__icons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: initial;
  width: 100%;
}
.info-application__icon {
  width: 70px;
  cursor: pointer;
}

.videos-application {
  width: 100%;
  margin: 0 auto;
}
.videos-application__container {
  width: 100%;
  margin-bottom: 2.0625rem;
}
.videos-application__span {
  display: block;
  margin-bottom: 1.25rem;
}
.videos-application__video {
  width: 100%;
}

/*
	============================
	APPLICATION PAGE MEDIA QUERY
	============================
*/
@media screen and (min-width: 700px) {
  .article-application__link:link,
.article-application__link:visited {
    font-size: 1.25rem;
  }

  .info-application__icons {
    justify-content: space-evenly;
  }

  .info-application__title {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 900px) {
  .article-application__link:link,
.article-application__link:visited {
    font-size: 1.25rem;
  }

  .info-application__section {
    width: 55%;
    margin-bottom: 0;
  }

  .info-application__icons {
    justify-content: space-between;
    width: 35%;
  }

  .videos-application {
    width: 70%;
    align-self: center;
  }
}
@media screen and (min-width: 1200px) {
  .info-application__section {
    width: 60%;
  }

  .info-application__text {
    font-size: 0.975rem;
  }

  .videos-application {
    width: 100%;
  }
  .videos-application__container {
    width: 46%;
    margin-bottom: 2.0625rem;
  }
}
@media screen and (min-width: 1500px) {
  .info-application__icons {
    justify-content: space-between;
    width: 25%;
  }
}
/*
	========================
	 OTHER PAGES STYLE
	========================
*/
.title_other-pages {
  color: #2762a7;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.about-as__content {
  line-height: 150%;
}
.about-as__content > strong {
  display: block;
  font-weight: 500;
  padding: 0.5625rem 0;
}
.about-as__list {
  list-style: initial;
  padding-left: 2.0625rem;
  margin-bottom: 1.4375rem;
}
.about-as__list > li {
  margin-bottom: 0.5625rem;
}

.article__title {
  line-height: 150%;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 0.9375rem;
  margin-bottom: 2.0625rem;
}

/*
	============================
	QUOTA PAGE
	============================
*/
.quota-content {
  width: 90%;
}

.statistics-round-content {
  width: 100%;
}

/*
	============================
	OTHER PAGES MEDIA QUERY
	============================
*/
@media screen and (min-width: 500px) {
  .quota-content {
    width: 70%;
  }
}
@media screen and (min-width: 500px) {
  .statistics-round-content {
    width: 100%;
  }
}
@media screen and (min-width: 700px) {
  .title_other-pages {
    margin-bottom: 1.4375rem;
  }
}
@media screen and (min-width: 900px) {
  .title_other-pages {
    margin-bottom: 2.0625rem;
  }
}
/*
	===========================
	   UNIVERSITIES PAGE STYLE
	===========================
*/
.universities {
  display: flex;
  flex-wrap: wrap;
}
.universities:first-of-type {
  margin-bottom: 50px;
}
.universities__title {
  align-self: center;
  font-size: 30px;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.universities__link {
  width: 100%;
  padding: 10px 5px;
}

.uni-card {
  border: 1px solid #d2d2d2;
  position: relative;
  display: flex;
  justify-content: center;
}
.uni-card__img {
  width: 80%;
  height: auto;
  opacity: 1;
  transition: opacity 0.8s ease;
}
.uni-card__name {
  transition: opacity 0.8s ease;
  transition-delay: 0.2s;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  color: #555;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
}
.uni-card:hover .uni-card__img {
  opacity: 0.1;
}
.uni-card:hover .uni-card__name {
  opacity: 1;
}

/*
	===============================
	 UNIVERSITIES PAGE MEDIA QUERY
	==============================
*/
@media screen and (min-width: 500px) {
  .universities__title {
    margin-bottom: 40px;
  }

  .universities__link {
    width: 50%;
  }

  .uni-card__img {
    width: 100%;
  }
}
@media screen and (min-width: 700px) {
  .universities__title {
    margin-bottom: 30px;
  }

  .universities__link {
    width: 33.33%;
  }
}
@media screen and (min-width: 1200px) {
  .universities__link {
    width: 25%;
    padding: 15px;
  }
}
/*
	===========================
	   FACULTIES PAGE STYLE
	===========================
*/
.section-faculties {
  /******************/
  /*Called from java*/
  /******************/
  /* NOT USED FOR NOW */
}
.section-faculties__logo {
  margin-bottom: 3rem;
}
.section-faculties__img {
  width: 200px;
  margin-top: -20px;
}
.section-faculties__programs {
  margin-bottom: 3rem;
}
.section-faculties__tables {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: unset;
  border-left: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  padding: 2.0625rem 2.0625rem 0 2.0625rem;
}
.section-faculties__criteria {
  width: 100%;
  margin-bottom: 20px;
}
.section-faculties__average-value {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: unset;
  width: 80%;
  font-size: 1.0625rem;
  font-weight: 500;
  margin-left: 2.0625rem;
}
.section-faculties__average-value > p {
  width: 100%;
  margin-bottom: 1.25rem;
}
.section-faculties__quotes {
  width: 100%;
}
.section-faculties__info {
  padding-bottom: 40px;
  font-weight: 500;
}
.section-faculties__alert {
  text-align: center;
  padding-bottom: 40px;
  color: #f54c4c;
  font-weight: 500;
}
.section-faculties__program-label {
  background-color: #26bac7;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 0.875rem;
}
.section-faculties__program-label:before {
  content: url(" ../../images/baseline-criteria-white-24px.svg");
  margin: 0 0.5625rem 0 0.9375rem;
  width: 45px;
}

/*
	==============================
	   FACULTIES PAGE MEDIA QUERY
	=============================
*/
@media screen and (min-width: 700px) {
  .section-faculties__average-value > p {
    width: unset;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 900px) {
  .section-faculties__criteria,
.section-faculties__quotes {
    width: 70%;
  }
}
@media screen and (min-width: 1200px) {
  .section-faculties__criteria {
    width: 48%;
    margin-bottom: 0;
  }

  .section-faculties__tables {
    justify-content: space-between;
  }

  .section-faculties__quotes {
    width: 48%;
  }
}
.section-criteria__body {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: unset;
}

@media screen and (min-width: 1200px) {
  .section-criteria__body {
    justify-content: space-between;
  }
}
/*
	===========================
	   ACCORDION STYLE
	===========================
*/
.accordion__radio {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.accordion__heading {
  display: flex;
  cursor: pointer;
  padding: 0.5625rem;
  margin-bottom: 0.5625rem;
  background-color: #dddee0;
  color: #000;
  line-height: 150%;
  letter-spacing: 1px;
  border-radius: 3px;
  transition: background-color 0.5s;
}
.accordion__heading span {
  display: inline-block;
  padding-right: 0.3125rem;
}
.accordion__heading::after {
  content: "❯";
  display: inline-block;
  color: #000;
}
.accordion__heading:hover {
  background-color: #b5b7bc;
}
.accordion__content {
  max-height: 0;
  font-size: 0.875rem;
  line-height: 150%;
  overflow: hidden;
  transition: all 0.6s ease-in-out;
}
.accordion__list {
  list-style: decimal;
  margin-top: 0.5625rem;
  padding-left: 2.0625rem;
}
.accordion__radio:checked + .accordion__heading {
  background-color: #26bac7;
  color: #fff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}
.accordion__radio:checked + .accordion__heading::after {
  transform: rotate(90deg);
  color: #fff;
}
.accordion__radio:checked ~ .accordion__content {
  max-height: 100vh;
  padding: 2.0625rem;
  border: 1px solid #d8d8d8;
  border-top: 0;
  margin-bottom: 0.9375rem;
}

a {
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

button {
  outline: none;
  border: none;
  cursor: pointer;
}

.btn-container {
  display: flex;
  flex-direction: column;
  padding: 0 3rem;
}
@media screen and (min-width: 500px) {
  .btn-container {
    padding: 0;
    flex-direction: row;
    justify-content: center;
  }
}

.btn {
  display: inline-block;
  padding: 0.75em 1.9em;
  border-radius: 8px;
  border: 1px solid #26bac7;
  background-color: #daf6f8;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}
.btn:not(:last-of-type) {
  margin-right: 0;
  margin-bottom: 2rem;
}
@media screen and (min-width: 500px) {
  .btn:not(:last-of-type) {
    margin-right: 3rem;
    margin-bottom: 0;
  }
}
.btn:link, .btn:visited {
  color: #26bac7;
  transition: all 0.8s;
}
.btn:hover, .btn:active {
  color: #1a7e87;
  border-color: #24aeba;
}
.btn--flat {
  border: 1px solid #daf6f8;
  background-color: #26bac7;
}
.btn--flat:link, .btn--flat:visited {
  color: #fff;
}
.btn--flat:hover, .btn--flat:active {
  color: #1a7e87;
  background-color: #daf6f8;
}

.section-info__udhezues .btn-icon2 {
  height: 11%;
}
.section-info__udhezues .btn-icon2 > svg {
  margin-top: 21%;
  width: 66%;
  height: 50px;
}
@media only screen and (max-width: 50em) {
  .section-info__udhezues .btn-icon {
    height: 4%;
  }
  .section-info__udhezues .btn-icon > svg {
    margin-top: 9%;
    width: 63%;
  }
}
@media only screen and (max-width: 62.5em) {
  .section-info__udhezues .btn-icon {
    margin-top: 5%;
    width: 63%;
  }
}
@media only screen and (max-width: 75em) {
  .section-info__udhezues .btn-icon {
    height: 4%;
  }
  .section-info__udhezues .btn-icon > svg {
    margin-top: 5%;
    width: 63%;
  }
}

.btn-icon {
  flex: 0.21 0 21%;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  line-height: 1.5;
  color: #097987;
  text-align: center;
  border: 1px solid #097987;
  border-radius: 20px;
  padding: 15px;
  transition: color 0.5s ease-out;
}
.btn-icon:not(:last-of-type) {
  margin-right: 15px;
}
.btn-icon:link, .btn-icon:visited {
  color: #097987;
}
.btn-icon:hover, .btn-icon:active {
  color: #064e57;
}
.btn-icon > svg {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  transition: all 0.5s ease-out;
}
.btn-icon:hover > svg, .btn-icon:active > svg {
  transform: scale(1.2);
}
@media only screen and (max-width: 50em) {
  .btn-icon {
    flex: 0.15 0 15%;
  }
  .btn-icon:not(:last-of-type) {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 37.5em) {
  .btn-icon {
    flex: 0.16 0 16%;
  }
  .btn-icon:not(:last-of-type) {
    margin-right: 15px;
  }
}
@media only screen and (max-width: 31.25em) {
  .btn-icon {
    flex: 0.24 0 24%;
    padding: 11px;
  }
}

/*
	===========================
	   CARDS STYLE
	===========================
*/
.card-blue {
  width: 100%;
  margin: 15px 0;
}
.card-blue__heading {
  display: flex;
  flex-direction: row;
  flex-wrap: unset;
  justify-content: space-between;
  align-items: center;
  background-color: #26bac7;
  color: white;
  padding: 10px;
  border-radius: 4px 4px 0 0;
}
.card-blue__title {
  width: 93%;
  font-size: 19px;
  line-height: 140%;
  text-align: center;
}
.card-blue__body {
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
  padding: 20px 10px 0 10px;
}
.card-blue__sub-title {
  align-self: flex-start;
  margin-bottom: 15px;
  font-size: 16px;
}
.card-blue__span {
  display: block;
  font-size: 16px;
}
.card-blue__btn-close {
  width: 3%;
  font-size: 21px;
  cursor: pointer;
}

.card-gray {
  width: 100%;
  margin-bottom: 30px;
}
.card-gray__heading {
  background-color: #dbdcdc;
  font-weight: 500;
  padding: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.card-gray__heading > h3 {
  font-size: 16px;
}
.card-gray__sub-title {
  align-self: flex-start;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
}

.card-mini {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-weight: 500;
  margin-left: 5px;
  margin-bottom: 30px;
}
.card-mini__heading {
  font-size: 16px;
  text-transform: uppercase;
  background-color: #dbdcdc;
  padding: 12px;
  margin-bottom: 20px;
  width: 100%;
}
.card-mini__body {
  display: flex;
  flex-direction: column;
  width: 95%;
  margin-bottom: 20px;
}
.card-mini__body p:first-of-type {
  margin-bottom: 20px;
}

/*
    ==============================
       CARDS MEDIA QUERY
    =============================
*/
@media screen and (min-width: 700px) {
  .card-average__body {
    flex-direction: row;
  }
}
@media screen and (min-width: 900px) {
  .card-blue {
    width: 70%;
  }

  .card-mini__body {
    flex-direction: row;
    justify-content: space-between;
  }
  .card-mini__body p:first-of-type {
    margin-bottom: 0;
  }

  .quota-body {
    flex-direction: column !important;
  }
}
@media screen and (min-width: 1200px) {
  .card-blue {
    width: 48%;
  }
}
@media screen and (min-width: 1500px) {
  .card-mini__body {
    width: 85%;
  }
}
/*
	====================
	   MODALS STYLE
	====================
*/
.overlay-pane {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .overlay-pane {
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    background-color: rgba(0, 0, 0, 0.3);
  }
}
.overlay-pane.open {
  display: flex;
}

.modal {
  display: flex;
  flex-direction: column;
  height: min-content;
  background-color: #fff;
  padding-bottom: 1.4375rem;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
}
.modal--info {
  width: 95%;
}
.modal--info > img {
  width: 100%;
}
@media screen and (min-width: 700px) {
  .modal--info {
    width: 80%;
  }
}
@media screen and (min-width: 900px) {
  .modal--info {
    width: 70%;
  }
}
@media screen and (min-width: 1200px) {
  .modal--info {
    width: 55%;
  }
}
.modal--see-more {
  width: 95%;
}
.modal--see-more > img {
  width: 100%;
}
@media screen and (min-width: 500px) {
  .modal--see-more {
    width: 75%;
  }
}
@media screen and (min-width: 700px) {
  .modal--see-more {
    width: 65%;
  }
}
@media screen and (min-width: 900px) {
  .modal--see-more {
    width: 50%;
  }
}
.modal--angle-senior {
  width: 75%;
}
.modal--angle-senior > img {
  width: 82%;
}
@media screen and (min-width: 500px) {
  .modal--angle-senior {
    width: 75%;
  }
}
@media screen and (min-width: 700px) {
  .modal--angle-senior {
    width: 45%;
  }
}
@media screen and (min-width: 900px) {
  .modal--angle-senior {
    width: 35%;
  }
}
@media screen and (min-width: 1200px) {
  .modal--angle-senior {
    width: 20%;
  }
}
.modal__title {
  padding: 10px 10px;
  font-size: 17px;
  font-weight: bold;
}
.modal__note {
  padding: 10px 25px;
  font-size: 15px;
  line-height: 135%;
  text-align: justify;
}
.modal__close-btn {
  align-self: flex-end;
  font-size: 1.8875rem;
  padding-top: 0.5625rem;
  padding-right: 0.5625rem;
  cursor: pointer;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #26bac7;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.list__item:not(:last-of-type) {
  margin-bottom: 10px;
}
.list__link {
  font-size: 1.25rem;
}

/*
	===========================
	   TABLES PAGE STYLE
	===========================
*/
.table-base {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin-bottom: 30px;
  line-height: 1.4;
}
.table-base th {
  font-size: 0.9625rem;
  color: #fff;
  padding: 9px 12px;
}
.table-base td {
  font-size: 0.875rem;
  color: #5a5a5a;
  padding: 9px 12px;
  overflow-y: auto;
}
.table-base a {
  color: #4a5eff;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.4s;
}
.table-base a:hover {
  color: #1730ff;
}

.table-base--blue thead {
  border-left: 1px solid #26bac7;
  border-right: 1px solid #26bac7;
}
.table-base--blue thead tr {
  background-color: #26bac7;
}
.table-base--blue th {
  display: flex;
  align-items: center;
  letter-spacing: 1px;
}
.table-base--blue tbody {
  border-left: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}
.table-base--blue tbody tr:hover {
  cursor: pointer;
  background-color: #abd2dc;
}
.table-base--blue:first-child th:before {
  content: url("../images/table-header-faculty-white-24px.svg");
}
.table-base--blue:last-child th:before {
  content: url("../images/table-header-deget-white-24px.svg");
}
.table-base--blue:first-child th:before, .table-base--blue:last-child th:before {
  margin: 0 10px 0 10px;
  width: 22px;
}

.table-base--grey thead tr {
  background-color: #cecfcf;
}
.table-base--grey thead th {
  background: #94e0e0;
  color: #5a5a5a;
}
.table-base--grey thead th.last {
  border-right: none;
}

.two-column-table th:first-child {
  width: 73%;
}

.three-column-table th:first-child {
  width: 29%;
}

.four-column-table th:first-child {
  width: 19%;
}

.three-column-table th:last-child {
  width: 45%;
}

.four-column-table th:last-child {
  width: 39%;
}

/*
	==============================
	   TABLES MEDIA QUERY
	=============================
*/
@media screen and (min-width: 700px) {
  .three-column-table th:first-child {
    width: 35%;
  }

  .four-column-table th:first-child {
    width: 20%;
  }

  .three-column-table th:last-child {
    width: 52%;
  }

  .four-column-table th:last-child {
    width: 50%;
  }
}
@media screen and (min-width: 900px) {
  .table-base--blue {
    width: 48%;
    margin-bottom: 0;
  }
}
/******************/
/*Called from java*/
/******************/
.set-back-light-gray {
  background-color: #e6e6e6;
}

.set-back-white {
  background-color: white;
}

.set-back-strong-gray {
  background-color: #9c9696;
}

/*
	===========================
	   SELECT STYLE
	===========================
*/
.dropdown-base {
  width: 100%;
}
.dropdown-base__cont {
  width: 86%;
  position: relative;
}
.dropdown-base__select {
  width: 100%;
  padding: 0.6625rem 2.0625rem 0.6625rem 0.6625rem;
  font-size: 0.875rem;
  background-color: white;
  border: 1px solid #aaa;
  box-shadow: 0 2px 0 1px rgba(0, 0, 0, 0.135);
  border-radius: 0.5em;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.dropdown-base__label {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: rgba(90, 90, 90, 0.6);
}
.dropdown-base__icon {
  position: absolute;
  top: 0.5625rem;
  right: 0.5625rem;
  font-size: 1.6875rem;
  pointer-events: none;
}
.dropdown-base--uni {
  margin-bottom: 1.25rem;
}
.dropdown-base--program__cont {
  width: 95%;
}
.dropdown-base--program__btn {
  width: 10%;
  font-size: 43px;
  background-color: white;
  color: #26bac7;
  margin-left: 10px;
  cursor: pointer;
}
.dropdown-base--quote__cont {
  width: 85%;
}

/*
	==============================
	   SELECT MEDIA QUERY
	=============================
*/
@media screen and (min-width: 500px) {
  .dropdown-base--quote__cont {
    width: 60%;
  }
}
@media screen and (min-width: 700px) {
  .dropdown-base {
    width: 70%;
  }
}
@media screen and (min-width: 900px) {
  .dropdown-base {
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .dropdown-base {
    width: 40%;
  }
}
.news {
  flex-grow: 0.5;
}
.news:not(:last-of-type) {
  margin-right: 50px;
}
@media only screen and (max-width: 50em) {
  .news:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.news__title {
  display: flex;
  align-items: flex-end;
  margin-bottom: 30px;
  color: #2762a7;
}
.news__title > svg {
  width: 40px;
  height: 40px;
  margin-right: 20px;
}
.news__title--free-quota {
  margin-bottom: 35px;
}

.msg-attention {
  background-color: #2D5E7E;
  padding: 1.25rem;
  width: 560px;
}
.msg-attention__container {
  border: 1px solid #fff;
  padding: 1.25rem 3rem;
  color: #fff;
}
.msg-attention__header {
  text-align: center;
  margin-bottom: 1.4375rem;
  line-height: 140%;
}
.msg-attention__text-cont {
  display: flex;
  align-items: center;
}
.msg-attention__text-cont:not(:last-child) {
  margin-bottom: 0.9375rem;
}
.msg-attention__point, .msg-attention__point > svg {
  min-width: 20px;
  min-height: 20px;
  margin-right: 1.25rem;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}
.msg-attention__point--green, .msg-attention__point > svg--green {
  background-color: #87C663;
}
.msg-attention__point--yellow, .msg-attention__point > svg--yellow {
  background-color: #FDDA41;
}
.msg-attention__point--red, .msg-attention__point > svg--red {
  background-color: #F3725D;
}
.msg-attention__para {
  line-height: 140%;
}

/*
	==================================
	   STYLES FOR THE DIFFERENT STATES
	==================================
*/
.main-menu.open {
  transform: translateX(0);
}

.main-menu__link.active {
  color: #5a5a5a;
  font-weight: 500;
  border-bottom: 2px solid #fff;
}

.modal-base.appear {
  display: flex;
}

.message-no-info {
  text-align: center;
  color: #f54c4c;
  font-weight: bold;
}

/*
  ==========================
      ANIMATION
  ==========================
*/
/*======== added from java ==========*/
@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(70px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*======== .toggle added from java ==========*/
.toggle .burger__line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .burger__line2 {
  opacity: 0;
}

.toggle .burger__line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

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