﻿/*FONT*/
@font-face {
  font-family: "TitilliumWeb";
  src: url("/media/templates/site/templatebaseld/fonts/TitilliumWeb/TitilliumWeb-Regular.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("/media/templates/site/templatebaseld/fonts/Roboto/Roboto-Regular.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "TitilliumWeb", sans-serif;
}
/*FONT*/
/*GENERALE*/
a {
  text-decoration: none;
  color: var(--primary-color);
}
a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}
/*GENERALE*/
/*HEADER*/
.header-top {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
.header-middle {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}
.header-bottom {
  background-color: var(--terziary-color);
  color: var(--primary-color);
}

.header-logo img {
  width: clamp(40px, 100%, 200px);
  max-height: 80px;
  object-fit: contain;
}

.header-text {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-content {
  height: 100%;
}
/*HEADER*/
/*BREADCRUMP*/
.breadcrump{
  color: var(--secondary-color);
}
/*BREADCRUMP*/
/*FOOTER*/
.footer-top {
  background-color: var(--terziary-color);
  color: var(--primary-color);
}
.footer-middle {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
.footer-bottom {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}
.footer-logo img {
  width: clamp(40px, 100%, 200px);
  max-height: 80px;
  object-fit: contain;
}
/*FOOTER*/