@font-face {
  font-family: "Titillium Web";
  src: url("../fonts/titilliumweb-regular.eot");
  src: url("../fonts/titilliumweb-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/titilliumweb-regular.woff2") format("woff2"), url("../fonts/titilliumweb-regular.woff") format("woff"), url("../fonts/titilliumweb-regular.svg#titillium_webregular") format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Titillium Web";
  src: url("../fonts/titilliumweb-bold.eot");
  src: url("../fonts/titilliumweb-bold.eot?#iefix") format("embedded-opentype"), url("../fonts/titilliumweb-bold.woff2") format("woff2"), url("../fonts/titilliumweb-bold.woff") format("woff"), url("../fonts/titilliumweb-bold.svg#titillium_webbold") format("svg");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
html {
  font-size: 16px;
  /* default browser */
  font-weight: 400;
}

body {
  margin: 0;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  color: #1a1a1a;
  background: white;
}

.container {
  /* width: 100% !important;
  margin: 0 auto;
  padding: 1rem; */
  /* @include respond-to(md) {
  	padding: 1rem;
  } */
  /* @include respond-to(xl) {
  	width: 1440px;
  } */
}
@media (max-width: 768px) {
  .container {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }
}
@media (min-width: 1280px) {
  .container {
    width: 1280px;
  }
}

.topbar {
  background: #001f4c;
  color: white;
  font-size: 0.9rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  padding: 0 1.25rem;
}
.topbar a {
  color: white;
  text-decoration: none;
}
.topbar a:hover {
  text-decoration: underline;
}
.topbar .left img {
  padding-right: 0.6rem;
}
.topbar .right {
  position: relative;
  padding-left: 1rem;
}
.topbar .right::after {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  height: 32px;
  width: 1px;
  background: white;
}
.topbar .right .user_icon {
  width: 24px;
  height: 24px;
}
.topbar .right .user_label {
  display: none;
}
@media (min-width: 1024px) {
  .topbar .right .user_label {
    display: inline-block;
    padding-left: 5px;
  }
}

.hero {
  background: white;
  padding: 1rem 0;
}
.hero .hero-logo {
  margin-top: 1rem;
}
.hero .hero-logo img {
  width: 50%;
}
@media (min-width: 1024px) {
  .hero .hero-logo img {
    width: 300px;
  }
}
.hero .hero-content {
  display: flex;
  /* justify-content: space-between;
  align-items: center; */
  margin-top: 1.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .hero .hero-content {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 5%;
    margin-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero .text {
    flex: 1 1 55%;
  }
}
.hero .text h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .hero .text h1 {
    font-size: 4.5rem;
    line-height: 1.2;
  }
}
.hero .text h1 span {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.hero .text h1 span::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: -8px;
  width: 100%;
  height: 15px;
  background-image: url("../images/underline-yellow.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: -1;
}
@media (min-width: 1024px) {
  .hero .text h1 span::after {
    bottom: -4px;
    width: 100%;
    height: 25px;
  }
}
.hero .text p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .hero .text p {
    font-size: 1.5rem;
  }
}
.hero .graphic {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .hero .graphic {
    flex: 1 1 45%;
  }
}
.hero .graphic .circle {
  position: relative;
  width: 100%;
  height: 100vw;
  display: block;
  background-image: url("../images/graphic.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position-x: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.9rem;
  text-align: center;
  max-height: 400px;
}
@media (min-width: 1024px) {
  .hero .graphic .circle {
    height: 450px;
    max-height: 450px;
  }
}
.hero .graphic .circle .slice {
  position: absolute;
  width: 50%;
  height: 180px;
  text-align: center;
}
.hero .graphic .circle .slice a {
  display: block;
  height: 100%;
}
.hero .graphic .circle .slice .icon {
  font-size: 1.5rem;
}
.hero .graphic .circle .slice p {
  margin: 0.3rem 0 0;
}
.hero .graphic .circle .s1 {
  top: 10%;
  left: 50%;
}
.hero .graphic .circle .s2 {
  top: 60%;
  left: 25%;
}
.hero .graphic .circle .s3 {
  top: 15%;
  left: 0%;
}

@media (min-width: 480px) {
  .servizi {
    background-image: url("../images/user-section.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 90%;
    position: relative;
  }
  .servizi::after {
    content: "";
    width: 50%;
    height: 100%;
    background: #fcd34d;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
  }
  .servizi::before {
    content: "";
    width: 50%;
    height: 100%;
    background: #004d99;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
  }
}
.servizi .container {
  padding: 0;
  width: 100%;
}
@media (min-width: 480px) {
  .servizi .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .servizi .container {
    max-width: 960px;
  }
}
@media (min-width: 992px) {
  .servizi .container {
    max-width: 960px;
  }
}
@media (min-width: 1280px) {
  .servizi .container {
    width: 1280px;
    max-width: 1176px;
  }
}
@media (min-width: 1400px) {
  .servizi .container {
    max-width: 1320px;
  }
}
.servizi .grid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 768px) {
  .servizi .grid {
    flex-direction: row;
  }
}
.servizi .grid .col {
  padding: 2.2rem 1rem;
  color: white;
  flex: 1 1 100%;
  /* @include respond-to(md) {
  	padding: 2.2rem 7%;
  } */
}
@media (max-width: 768px) {
  .servizi .grid .col {
    padding: 2.2rem 2.5rem;
  }
}
@media (min-width: 480px) {
  .servizi .grid .col {
    flex: 1 1 50%;
  }
}
@media (min-width: 768px) {
  .servizi .grid .col {
    padding: 2.2rem 4%;
  }
}
@media (min-width: 1280px) {
  .servizi .grid .col {
    padding: 2.2rem 0rem;
  }
}
.servizi .grid .col h2 {
  font-size: 1.5rem;
  margin-top: 0;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .servizi .grid .col h2 {
    font-size: 2.5rem;
    margin-bottom: 1.6rem;
  }
}
.servizi .grid .col p {
  font-size: 0.9rem;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .servizi .grid .col p {
    font-size: 1.25rem;
    line-height: 1.8;
  }
}
.servizi .grid .col .btn {
  justify-content: center;
  margin-top: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}
@media (min-width: 1024px) {
  .servizi .grid .col .btn {
    margin-top: 1.4rem;
    font-size: 1.25rem;
    line-height: 1.8;
  }
}
.servizi .grid .col .btn svg {
  width: 20px;
  padding-left: 5px;
}
.servizi .grid .col-blue {
  background-image: url("../images/services-section.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 80%;
  background-color: #004d99;
}
@media (min-width: 1024px) {
  .servizi .grid .col-blue {
    padding-right: 4%;
    padding-left: 0;
  }
}
.servizi .grid .col-blue .btn-outline-light {
  width: 100%;
}
@media (min-width: 480px) {
  .servizi .grid .col-blue .btn-outline-light {
    width: auto;
  }
}
.servizi .grid .col-yellow {
  background-color: #fcd34d;
  background-image: url("../images/user-section.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 90%;
  color: #001f4c;
}
@media (min-width: 1024px) {
  .servizi .grid .col-yellow {
    padding-left: 4%;
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .servizi .grid .col-yellow {
    background-image: none;
    background-color: transparent;
  }
}

.appuntamenti {
  background: #f8f9fc;
  text-align: center;
  padding-top: 1.5rem;
}
@media (min-width: 1024px) {
  .appuntamenti {
    padding-bottom: 2rem;
  }
}
.appuntamenti .icon {
  font-size: 2rem;
  padding-right: 15px;
}
@media (min-width: 1024px) {
  .appuntamenti .icon {
    width: 55px;
    padding-right: 10px;
  }
}
.appuntamenti h2 {
  color: #004d99;
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
}
@media (max-width: 400px) {
  .appuntamenti h2 {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .appuntamenti h2 {
    font-size: 2.5rem;
    margin-bottom: 1.6rem;
  }
}
.appuntamenti p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .appuntamenti p {
    font-size: 1.25rem;
  }
}
.appuntamenti .btn {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}
@media (min-width: 1024px) {
  .appuntamenti .btn {
    font-size: 1.25rem;
  }
}

.area-personale {
  background: #f9fafc;
  color: #0a1633;
  padding: 3rem 0rem 0rem;
  position: relative;
}
@media (min-width: 1280px) {
  .area-personale {
    padding-bottom: 6rem;
  }
}
.area-personale .content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .area-personale .content {
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 4rem;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .area-personale .image-section {
    margin-left: -1.3rem;
  }
}
@media (min-width: 768px) {
  .area-personale .image-section {
    flex: 1;
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 700px;
    width: 50%;
  }
}
.area-personale .image-section img {
  width: 100%;
}
@media (min-width: 1024px) {
  .area-personale .image-section img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
}
.area-personale .text-section {
  max-width: 700px;
}
@media (min-width: 768px) {
  .area-personale .text-section {
    max-width: 50%;
    padding: 1rem 1rem;
  }
}
.area-personale .text-section h2 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .area-personale .text-section h2 {
    font-size: 2.5rem;
    line-height: 1.4;
  }
}
.area-personale .text-section .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
@media (min-width: 1024px) {
  .area-personale .text-section .features-grid {
    gap: 1.8rem;
  }
}
.area-personale .text-section .features-grid .feature {
  flex: 1 1 calc(50% - 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.area-personale .text-section .features-grid .feature .icon {
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 1024px) {
  .area-personale .text-section .features-grid .feature .icon {
    width: 64px;
    height: 64px;
  }
}
.area-personale .text-section .features-grid .feature .icon.notif {
  background-image: url("../images/icons/notification.svg");
}
.area-personale .text-section .features-grid .feature .icon.pratiche {
  background-image: url("../images/icons/document.svg");
}
.area-personale .text-section .features-grid .feature .icon.appuntamenti {
  background-image: url("../images/icons/appointment.svg");
}
.area-personale .text-section .features-grid .feature .icon.assistenza {
  background-image: url("../images/icons/assistance.svg");
}
.area-personale .text-section .features-grid .feature .icon.documenti {
  background-image: url("../images/icons/folder.svg");
}
.area-personale .text-section .features-grid .feature .icon.servizi {
  background-image: url("../images/icons/job.svg");
}
.area-personale .text-section .features-grid .feature h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .area-personale .text-section .features-grid .feature h3 {
    font-size: 1.5rem;
    line-height: 2;
  }
}
.area-personale .text-section .features-grid .feature p {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .area-personale .text-section .features-grid .feature p {
    font-size: 1.1rem;
  }
}

.footer-torino {
  background-color: #213266;
  color: #fff;
  padding: 2.5rem 0;
  font-size: 0.9rem !important;
  /* .footer-container {
  	max-width: 1100px;
  	margin: 0 auto;
  	display: flex;
  	flex-direction: column;
  	gap: 1rem;
  } */
}
.footer-torino a {
  color: #fff;
  text-decoration: none;
}
.footer-torino a:hover {
  text-decoration: underline;
}
.footer-torino .footer-top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer-torino .footer-top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.footer-torino .footer-top .footer-logo img {
  width: 80%;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .footer-torino .footer-top .footer-logo img {
    width: 100%;
  }
}
.footer-torino .footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .footer-torino .footer-content {
    flex-direction: row;
    gap: 12%;
    margin-bottom: 2rem;
  }
}
.footer-torino .footer-content .footer-info {
  font-size: 0.9rem;
}
.footer-torino .footer-content .footer-info p {
  margin: 0.3rem 0;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .footer-torino .footer-content .footer-info {
    flex: 1 1 45%;
  }
}
.footer-torino .footer-content .footer-contact {
  display: flex;
  gap: 2rem;
  flex-direction: column;
}
.footer-torino .footer-content .footer-numero-verde {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-torino .footer-content .footer-numero-verde p {
  width: 40%;
  font-size: 0.9rem;
  margin: 0 0 0 0.7rem;
}
@media (min-width: 1024px) {
  .footer-torino .footer-content .footer-numero-verde p {
    width: 44%;
    margin: 0 0 0 0.7rem;
    font-size: 1.25rem;
  }
}
.footer-torino .footer-social {
  text-align: left;
  margin-bottom: 1.5rem;
}
.footer-torino .footer-social p {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .footer-torino .footer-social p {
    font-size: 1.5rem;
  }
}
.footer-torino .footer-social .social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-torino .footer-social .social-icons a {
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-torino .footer-social .social-icons a:hover {
  background: rgba(255, 255, 255, 0.8);
}
@media (min-width: 1024px) {
  .footer-torino .footer-social .social-icons a {
    width: 36px;
    height: 36px;
  }
}
.footer-torino .footer-social .social-icons .icon {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  fill: #fff !important;
}
.footer-torino .footer-social .social-icons .icon.x {
  background-image: url("icons/x.svg");
}
.footer-torino .footer-social .social-icons .icon.facebook {
  background-image: url("icons/facebook.svg");
}
.footer-torino .footer-social .social-icons .icon.instagram {
  background-image: url("icons/instagram.svg");
}
.footer-torino .footer-social .social-icons .icon.youtube {
  background-image: url("icons/youtube.svg");
}
.footer-torino .footer-social .social-icons .icon.telegram {
  background-image: url("icons/telegram.svg");
}
.footer-torino .footer-social .social-icons .icon.rss {
  background-image: url("icons/rss.svg");
}
.footer-torino hr {
  border: none;
  border-top: 1px solid white;
  margin: 0.5rem 0;
}
.footer-torino .footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .footer-torino .footer-bottom {
    flex-direction: row;
    gap: 2rem;
  }
}
.footer-torino .footer-bottom a {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .hero .hero-content {
    flex-direction: column;
  }

  /* .servizi .grid {
  	flex-direction: column;

  	.col {
  		flex: 1 1 100%;
  	}
  } */
}
.btn {
  padding: 0.3rem 0.9rem;
  border-radius: 6.5px;
}
.btn span {
  display: flex;
  align-items: center;
}
.btn span svg {
  margin-left: 10px;
}

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