/* import the fonts 
*/

@font-face {
  font-family: Poppins;
  src: url(assets/fonts/Poppins-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: Poppins;
  src: url(assets/fonts/Poppins-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-family: Poppins;
  src: url(assets/fonts/Poppins-Bold.ttf);
  font-weight: 700;
}



/* Replace the fonts
*/

body { font-family: Poppins, Helvetica, Arial, sans-serif; }


/* Define text styles
*/

.menu_items {
  font-weight: 400;
  font-size: 13px;
  line-height: 131%;
}

.menu_items_main_cat {
  font-weight: 400;
  font-size: 14px;
  line-height: 123%;
}


.menu_items_main_cat_mobile {
  font-weight: 400;
  font-size: 14px;
  line-height: 116%;
}

.menu_items_main_cat_header_mobile {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
}

.lang_btn {
  font-weight: 500;
  font-size: 15px;
  line-height: 115%;
}

.panorama_title {
  font-weight: 500;
  font-size: 17px;
}

.panorama_description {
  font-weight: 400;
  font-size: 14px;
}

.infohs_title {
  font-weight: 500;
  font-size: 15px;
  line-height: 115%;
}

.infohs_description {
  font-weight: 400;
  font-size: 13px;
}




.button_text {
  font-weight: 400;
  font-size: 12px;
}

.startscr_title {
  line-height: 1.2;
  font-weight: 700;
  font-size: 34px;
}

.startscr_title_mobile {
  line-height: 1.2;
  font-weight: 700;
  font-size: 28px;

}

.startscr_logocenter_mobile {
  line-height: 1.2;
  font-weight: 700;
  font-size: 28px;

}

.startscr_description {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}



.startscr_button_txt {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
}

.navihotspot {
  /* font-family: Poppins; */
  font-weight: 500;
  font-size: 14px;
}


/* Scrollbar style
*/

::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-thumb {
  background: #424242;
}

/* Track */
::-webkit-scrollbar-track {
  background: #d5d5d5;
}


/* LINKS */


/* unvisited link */
a:link {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}

/* visited link */
a:visited {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}

/* mouse over link */
a:hover {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}

/* selected link */
a:active {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}

