/* Home Index */
/* Index Module */
/* Common Reset CSS Module */
*,
*::before,
*::after {
  box-sizing: border-box;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Common Mixins Partials */
/* Common Variables Partials */
/* Common Typography Partials */
h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 2rem;
  margin: 0 0 1rem;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 18.72px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 13.28px;
}

h6 {
  font-size: 10.72px;
}

/* Common Base Partials */
html {
  font-size: 16px;
  line-height: 24px;
}

body {
  background-color: #333333;
  color: #5d5d5d;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
}

main {
  height: 100%;
  margin: 0 auto;
  max-width: 1600px;
  position: relative;
  top: 0;
  overflow: hidden;
}

footer {
  background-color: #6d2276;
  height: 60vh;
  position: relative;
}
@media only screen and (max-width: 800px) {
  footer {
    height: 40vh;
  }
}
@media only screen and (max-width: 600px) {
  footer {
    height: 120vh;
  }
}

h4 {
  margin: 0;
}

.-hide-me {
  display: none;
}

.-show-me {
  display: block;
}

.separator {
  border-top: 1px solid #caad80;
  height: 5px;
  margin: 0 auto;
  width: 70%;
}

.arrow {
  border: solid #000;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

#scrollTopButton {
  background-color: rgba(0, 0, 0, 0.2);
  border: 0;
  border-radius: 20px;
  bottom: 30px;
  cursor: pointer;
  display: none;
  line-height: 0.6;
  outline: none;
  padding: 10px;
  position: fixed;
  right: 50%;
  z-index: 999;
}

#scrollTopButton:hover {
  background-color: #555;
}

/* Home Index Modules */
/* Home - Header Module */
header {
  background-color: #6d2276;
  height: 90px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 98;
  transition: all 0.5s;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}
header.scrollUp {
  transform: translate(-90px);
}

.header__logo {
  padding-left: 2rem;
  position: absolute;
  top: 8px;
  width: 220px;
}
@media only screen and (max-width: 600px) {
  .header__logo {
    padding-left: 1rem;
    width: 200px;
  }
}

.header__socialMedias {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  padding-right: 2rem;
}
@media only screen and (max-width: 600px) {
  .header__socialMedias {
    display: none;
  }
}
.header__socialMedias a {
  margin: 16px 10px 10px 10px;
}
.header__socialMedias img {
  min-width: 32px;
}

.header__menubar {
  display: block;
  margin-top: 3px;
  padding-right: 2.2rem;
}
@media only screen and (max-width: 600px) {
  .header__menubar {
    display: none;
  }
}

.header__menubar > ul {
  display: flex;
  justify-content: flex-end;
  margin: 0;
}

.header__menubar > ul > li {
  list-style: none;
  padding-left: 0.75rem;
  padding-right: 1rem;
}
.header__menubar > ul > li a {
  color: white;
  display: block;
  font-size: 1rem;
  text-decoration: none;
}
.header__menubar > ul > li a:hover {
  border-bottom: 4px solid white;
  color: #caad80;
  cursor: pointer;
}

.header__menubar--dropdown {
  display: block;
}
.header__menubar--dropdown img {
  display: inline;
  max-width: 100%;
  vertical-align: middle;
  margin-left: 2px;
}

.header__menubar--dropdown .header__menubar--dropdownContents {
  background-color: #008080;
  border-radius: 0 0 12px 12px;
  display: none;
  padding: 12px;
  position: absolute;
  width: 170px;
}
.header__menubar--dropdown .header__menubar--dropdownContents a {
  color: white;
  padding: 2px;
}
.header__menubar--dropdown .header__menubar--dropdownContents a:hover {
  border-bottom: 0;
  color: white;
  cursor: pointer;
  padding-left: 8px;
}

.header__menubar--dropdown:hover .header__menubar--dropdownContents {
  display: block;
  -webkit-animation: opac 0.5s;
  animation: opac 0.5s;
}
@-webkit-keyframes opac {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes opac {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fs-show-menu {
  display: block !important;
}

.header__hiddenMenu {
  -webkit-animation: left 0.4s;
  animation: animateleft 0.4s;
  -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.35);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.35);
  background-color: #008080;
  border-bottom-right-radius: 20px;
  display: none;
  height: auto;
  opacity: 90%;
  padding-left: 1rem;
  position: fixed;
  top: 90px;
  width: 75%;
}
@-webkit-keyframes animateleft {
  from {
    left: -300px;
    opacity: 0;
  }
  to {
    left: 0px;
    opacity: 1;
  }
}
@keyframes animateleft {
  from {
    left: -300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
.header__hiddenMenu ul {
  margin: 0.75rem auto;
  padding: 0;
}
.header__hiddenMenu ul li {
  font-size: 0.75em;
  list-style: none;
  padding: 0.5rem;
}
.header__hiddenMenu ul li a {
  color: white;
  text-decoration: none;
}

.header__hamburguer {
  display: none;
  width: 100%;
}
@media only screen and (max-width: 600px) {
  .header__hamburguer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: flex-end;
    padding: 1.75rem 2rem;
  }
}
.header__hamburguer img {
  width: 35px;
  cursor: pointer;
}

/* Home - Hero Module */
.hero {
  height: 100%;
}

.hero__image {
  background-image: url("../images/fs_hero_image.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
}
@media only screen and (max-width: 800px) {
  .hero__image {
    background-position: 52%;
    background-attachment: scroll;
  }
}

.hero__title {
  font-family: "Playfair Display", serif;
  font-size: min(4.0rem, 10vw);
  line-height: 1.1;
  text-align: left;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 600px) {
  .hero__title {
    padding-top: 20vh;
    padding-right: 11vw;
    padding-bottom: 2rem;
    padding-left: 11vw;
  }
}
@media only screen and (max-width: 800px) {
  .hero__title {
    padding-top: 33vh;
    padding-right: 11vw;
    padding-bottom: 2rem;
    padding-left: 11vw;
  }
}
@media only screen and (max-width: 1200px) {
  .hero__title {
    padding-top: 33vh;
    padding-right: 11vw;
    padding-bottom: 2rem;
    padding-left: 11vw;
  }
}
@media only screen and (min-width: 1201px) {
  .hero__title {
    padding-top: min(270px, 35vh);
    padding-right: max(480px, 35vw);
    padding-bottom: 2rem;
    padding-left: min(150px, 11vw);
  }
}

.hero__title--color {
  color: white;
}

.hero__subtitle {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.2;
  padding-left: min(150px, 11vw);
  padding-bottom: 2rem;
  text-align: left;
  width: 60vw;
}
@media only screen and (max-width: 800px) {
  .hero__subtitle {
    display: none;
  }
}

.hero__subtitle--color {
  color: white;
}

.hero__button {
  width: 220px;
  height: 50px;
  border-radius: 25px;
  margin-left: min(150px, 11vw);
  cursor: pointer;
}
.hero__button:hover {
  background-color: #008080;
}

.hero__button--color {
  background-color: #6d2276;
}
.hero__button--color a {
  text-decoration: none;
}
.hero__button--color a p {
  color: white;
  text-align: center;
  padding: 12px;
}

/* Home - Who We Are Module */
.whoWeAre__main {
  background-color: #fff;
  width: 100%;
}

.whoWeAre__container {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.whoWeAre__felgiBlock {
  border-right: 1px solid #333333;
  flex: 50%;
  margin: auto 0;
  padding: 1rem;
  position: relative;
  right: 50px;
  text-align: right;
}
@media only screen and (max-width: 800px) {
  .whoWeAre__felgiBlock {
    display: none;
    flex: 100%;
  }
}

.whoWeAre__felgiBlock__smallText {
  font-size: 1.1rem;
}

.whoWeAre__felgiBlock__bigText {
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
}

.whoWeAre__textBlock {
  padding: 2rem 3.5rem;
  flex: 50%;
}
@media only screen and (max-width: 800px) {
  .whoWeAre__textBlock {
    padding: 2rem;
    flex: 100%;
  }
}

.whoWeAre__textBlock__title {
  color: #6d2276;
  font-family: "Roboto", sans-serif;
  font-size: min(2.5rem, 8vw);
  font-weight: 100;
  padding-bottom: 0.85rem;
  text-align: left;
}

.whoWeAre__textBlock__body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  text-align: left;
}
@media only screen and (max-width: 800px) {
  .whoWeAre__textBlock__body {
    font-weight: 400;
    line-height: 1.4;
  }
}

.whoWeAre__textBlock__paragraph {
  padding-bottom: 0.5rem;
}

.whoWeAre__textBlock__paragraph--bold {
  color: #6d2276;
  font-size: 1.1rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
}

.whoWeAre__textBlock__paragraph--title {
  color: #008080;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

/* Home - Our Products Module */
.products__main {
  background-color: #efefef;
  width: 100%;
}

.products__block {
  padding: 2rem 3.5rem;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 800px) {
  .products__block {
    padding: 2rem;
  }
}

.products__block__title {
  color: #6d2276;
  font-family: "Roboto", sans-serif;
  font-size: min(2.5rem, 8vw);
  font-weight: 100;
  padding-bottom: 0.85rem;
  text-align: left;
}

.products__block__text {
  display: block;
  line-height: 1.4;
  padding-bottom: 2rem;
}

.products__container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
}
@media only screen and (max-width: 800px) {
  .products__container {
    width: 100%;
    flex-wrap: wrap;
    flex: 100%;
  }
}

.products__buttonBlock {
  width: 100%;
  height: auto;
  padding-bottom: 2rem;
}
@media only screen and (max-width: 600px) {
  .products__buttonBlock {
    flex: 100%;
  }
}
.products__buttonBlock:last-child {
  padding-bottom: 0;
  margin-bottom: 10px;
}
.products__buttonBlock a {
  text-decoration: none;
}

.products__button {
  border-radius: 2rem;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  margin: 0 auto;
  padding: 0.75rem;
  text-align: center;
  width: 450px;
}
@media only screen and (max-width: 600px) {
  .products__button {
    width: 290px;
  }
}
.products__button:hover {
  background-color: #caad80;
}

.products__button--left {
  background-color: #6d2276;
  color: white;
}

.products__button--right {
  background-color: #008080;
  color: white;
}

.products__button--left img, .products__button--right img {
  display: inline;
  margin: 3px;
  vertical-align: middle;
  width: 20px;
}

/* Home - Insurance Companies Module */
.insuranceCompany__main {
  background-color: #fff;
  width: 100%;
}

.insuranceCompany__block {
  padding: 2rem 3.5rem;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 800px) {
  .insuranceCompany__block {
    padding: 0;
  }
}

.insuranceCompany__block__title {
  color: #6d2276;
  font-family: "Roboto", sans-serif;
  font-size: min(2.5rem, 8vw);
  font-weight: 100;
  line-height: 1.3;
  padding-bottom: 1.85rem;
  text-align: left;
}
@media only screen and (max-width: 800px) {
  .insuranceCompany__block__title {
    padding: 2rem;
  }
}

.insuranceCompany__container {
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 2rem;
  width: 80%;
}
@media only screen and (max-width: 800px) {
  .insuranceCompany__container {
    width: 80%;
  }
}
@media only screen and (max-width: 600px) {
  .insuranceCompany__container {
    max-width: 80%;
  }
}

.home-auto-grid > * {
  max-width: 400px;
}

.home-auto-grid > * + * {
  margin-top: 1rem;
}

@supports (display: grid) {
  .home-auto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    grid-gap: 1rem;
  }
  @media only screen and (max-width: 800px) {
    .home-auto-grid {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
  }
  @media only screen and (max-width: 1200px) {
    .home-auto-grid {
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
  }

  .home-auto-grid > * {
    max-width: unset;
  }

  .home-auto-grid > * + * {
    margin-top: unset;
  }
}
/* Home - Contact Us Module */
.contactUs__main {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/fs_contact_background_image.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  width: 100%;
}
@media only screen and (max-width: 800px) {
  .contactUs__main {
    background-position: 70%;
    background-attachment: scroll;
  }
}

.contactUs__title {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: min(2.5rem, 8vw);
  font-weight: 100;
  line-height: 1.2;
  padding: 2rem 3.5rem;
  text-align: left;
}
@media only screen and (max-width: 800px) {
  .contactUs__title {
    padding: 2rem;
  }
}

.contactUs__subtitle {
  display: block;
  color: white;
  padding: 0 3.5rem;
}
@media only screen and (max-width: 800px) {
  .contactUs__subtitle {
    padding: 0 2rem;
  }
}

.contactUs__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: auto;
  width: 100%;
}

.contactUs__form {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  font-style: normal;
  padding: 2rem 3.5rem;
  flex: 50%;
}
@media only screen and (max-width: 800px) {
  .contactUs__form {
    flex: 100%;
    padding: 1rem 2rem;
  }
}

input[type=text], textarea {
  width: 100%;
  padding: 12px;
  border: 0;
  border-radius: 5px;
  margin-top: 0.75rem;
  opacity: 0.8;
}
@media only screen and (max-width: 800px) {
  input[type=text], textarea {
    width: 100%;
  }
}

input[type=submit] {
  background-color: #008080;
  color: white;
  font-size: 1rem;
  font-weight: 400;
  padding: 10px 30px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  margin-top: 0.8rem;
}
input[type=submit]:hover {
  background-color: #caad80;
}

.contactUs__data {
  color: white;
  flex: 50%;
  padding: 2rem;
  text-align: center;
}
.contactUs__data a {
  color: white;
  text-decoration: none;
}
.contactUs__data a:hover {
  color: #caad80;
}
.contactUs__data .phone {
  margin-top: 120px;
}
@media only screen and (max-width: 800px) {
  .contactUs__data .phone {
    margin-top: 0;
  }
}

.contactUs__socialMedias {
  display: grid;
  grid-template-columns: 80px 80px 80px;
  justify-content: center;
  padding-top: 1rem;
}
@media only screen and (max-width: 600px) {
  .contactUs__socialMedias {
    display: none;
  }
}
.contactUs__socialMedias a {
  margin: 10px;
}
.contactUs__socialMedias img {
  width: 50px;
}

/* Home - Quotes Module */
.quoteBlock {
  display: flex;
  flex-flow: row nowrap;
  height: auto;
  width: 100%;
}

.quoteBlock--purple {
  background-color: #6d2276;
}

.quoteBlock--green {
  background-color: #008080;
}

.quoteBlock--grey {
  background-color: #424448;
}

.quote__aspas {
  margin-left: min(6.0rem, 5vw);
  margin-top: 1rem;
  height: 60px;
  width: 60px;
}
@media only screen and (max-width: 800px) {
  .quote__aspas {
    height: 40px;
    width: 40px;
  }
}
@media only screen and (min-width: 1201px) {
  .quote__aspas {
    margin-left: min(10.0rem, 10vw);
  }
}

.quoteBlock__quoteText {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  font-size: min(2.0rem, 5vw);
  line-height: 1.2;
  padding: 1rem min(10.0rem, 5vw) 1rem 2rem;
}
@media only screen and (max-width: 600px) {
  .quoteBlock__quoteText {
    padding: 1rem max(2.0rem, 5vw) 1rem 1rem;
  }
}

.quoteBlock__quoteText--white {
  color: white;
}

.quoteBlock__quoteText--black {
  color: black;
}

.quoteBlock__quoteAuthor {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: min(1.0rem, 3vw);
  padding-top: 0.85rem;
}

.quoteBlock__quoteAuthor--white {
  color: white;
}

.quoteBlock__quoteAuthor--black {
  color: black;
}

/* Home - WhatsApp Module */
.whatsapp__container {
  bottom: 20px;
  position: fixed;
  right: 20px;
  width: 4rem;
}

/* Footer Module */
.footer__container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  padding: 2rem 4rem;
}

.footer__logo {
  margin: 2rem 0 3rem;
}
.footer__logo a > img {
  width: min(250px, 60vw);
}

.footer__title {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1.75rem;
  font-weight: 100;
  padding-bottom: 1.5rem;
  text-align: left;
}

.footer__connect {
  border-left: 1px solid white;
  height: 13rem;
  padding-left: 2rem;
}
@media only screen and (max-width: 600px) {
  .footer__connect {
    border: 0;
    padding-bottom: 15rem;
  }
}

.footer__connect--contents > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__connect--contents > ul li {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  padding-bottom: 1rem;
}
.footer__connect--contents > ul li a {
  color: white;
  text-decoration: none;
}

.footer__info {
  border-left: 1px solid white;
  height: 13rem;
  padding-left: 2rem;
}
@media only screen and (max-width: 600px) {
  .footer__info {
    border: 0;
  }
}

.footer__link {
  color: white;
  display: inline;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  padding-bottom: 2rem;
  text-align: left;
  text-decoration: none;
}
.footer__link img {
  width: 35px;
}

.footer__socialMedias > a img {
  display: inline-block;
  width: 35px;
  margin: 1.75rem 10px 0 0;
}

.copyright {
  color: white;
  font-size: 0.75rem;
  margin: 0 auto;
  padding: 2rem 0 1rem 0;
  text-align: center;
  max-width: 90%;
}

/* Private Index Modules */
/* Private Products - Hero Module */
.privateProducts__hero {
  height: 100%;
}

.privateProducts__hero__image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/private_hero_image.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 80vh;
}
@media only screen and (max-width: 800px) {
  .privateProducts__hero__image {
    background-position: 70%;
    background-attachment: scroll;
  }
}
@media only screen and (max-width: 600px) {
  .privateProducts__hero__image {
    background-position: 64%;
    background-attachment: scroll;
  }
}

.privateProducts__hero__title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: min(5.0rem, 9vw);
  line-height: 1.1;
  text-align: left;
}
@media only screen and (max-width: 600px) {
  .privateProducts__hero__title {
    padding-top: 10rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 800px) {
  .privateProducts__hero__title {
    padding-top: 20rem;
    padding-left: 3rem;
  }
}
@media only screen and (max-width: 1200px) {
  .privateProducts__hero__title {
    padding-top: 15rem;
    padding-left: 3rem;
  }
}
@media only screen and (min-width: 1201px) {
  .privateProducts__hero__title {
    padding-top: 15rem;
    padding-left: 5rem;
  }
}

.privateProducts__hero__title--color {
  color: white;
}

.privateProducts__hero__subtitle {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: min(1.2rem, 10vw);
  line-height: 1.5;
  text-align: left;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 600px) {
  .privateProducts__hero__subtitle {
    padding-top: 8rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 800px) {
  .privateProducts__hero__subtitle {
    padding-top: 5rem;
    padding-left: 3rem;
  }
}
@media only screen and (max-width: 1200px) {
  .privateProducts__hero__subtitle {
    padding-top: 1rem;
    padding-left: 3rem;
    width: 90vw;
  }
}
@media only screen and (min-width: 1201px) {
  .privateProducts__hero__subtitle {
    padding-top: 1rem;
    padding-left: 5rem;
    width: 60vw;
  }
}

.privateProducts__hero__subtitle--color {
  color: white;
}

/* Private Products Module */
.privateProducts__main {
  background-color: #fff;
  width: 100%;
}

.privateProducts__block {
  padding: 2rem 3.5rem;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 800px) {
  .privateProducts__block {
    padding: 0;
  }
}

.privateProducts__block__title {
  color: #6d2276;
  font-family: "Roboto", sans-serif;
  font-size: min(2.5rem, 8vw);
  font-weight: 100;
  line-height: 1.3;
  padding-bottom: 0.85rem;
  text-align: left;
}
@media only screen and (max-width: 800px) {
  .privateProducts__block__title {
    padding: 2rem 2rem 0.85rem 2rem;
  }
}

.privateProducts__block__text {
  display: block;
  line-height: 1.4;
  margin: 0 auto;
  padding: 0 3.5rem 1rem;
  text-align: center;
  width: 80%;
}
@media only screen and (max-width: 800px) {
  .privateProducts__block__text {
    padding: 0 2rem 0.85rem 2rem;
    text-align: left;
    width: 100%;
  }
}

.privateProducts__block__text p {
  font-size: 1.2rem;
}

.privateProducts__container {
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 2rem;
  width: 85%;
}
@media only screen and (max-width: 800px) {
  .privateProducts__container {
    width: 90%;
  }
}
@media only screen and (max-width: 600px) {
  .privateProducts__container {
    display: none;
  }
}

.auto-grid a {
  color: #5d5d5d;
  text-decoration: none;
}

.auto-grid > * {
  line-height: 1.2;
  max-width: 400px;
  margin: 0 auto;
  font-size: 1.1rem;
  text-align: center;
}

.auto-grid > * + * {
  margin-top: 1rem;
}

@supports (display: grid) {
  .auto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    grid-gap: 1rem;
  }
  @media only screen and (max-width: 800px) {
    .auto-grid {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
  }
  @media only screen and (max-width: 1200px) {
    .auto-grid {
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
  }

  .auto-grid > * {
    max-width: unset;
  }

  .auto-grid > * + * {
    margin-top: unset;
  }
}
/* Private Products - rightColumn Module */
.privateProducts__rightColumn__main {
  background-color: white;
  width: 100%;
}

.privateProducts__rightColumn__block {
  padding: 1rem 3.5rem;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 800px) {
  .privateProducts__rightColumn__block {
    padding: 0;
  }
}

.privateProducts__rightColumn__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: auto;
  width: 100%;
}

.privateProducts__rightColumn__textBlock {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  font-style: normal;
  padding: 1rem 2rem;
  flex: 50%;
}
@media only screen and (max-width: 800px) {
  .privateProducts__rightColumn__textBlock {
    font-weight: 400;
    line-height: 1.4;
    padding: 1rem 2rem;
  }
}
.privateProducts__rightColumn__textBlock ul {
  margin: 0;
  padding-left: 2rem;
  padding-top: 0.5rem;
}
.privateProducts__rightColumn__textBlock ul li {
  padding-right: 1rem;
}

.privateProducts__rightColumn__textBlock__title,
.privateProducts__rightColumn__fsImage__title {
  color: #6d2276;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: min(2.5rem, 8vw);
  font-weight: 100;
  line-height: 1.3;
  padding-bottom: 0.85rem;
  text-align: left;
}
@media only screen and (max-width: 800px) {
  .privateProducts__rightColumn__textBlock__title,
.privateProducts__rightColumn__fsImage__title {
    display: none;
  }
}

.privateProducts__rightColumn__fsImage__title {
  display: none;
}
@media only screen and (max-width: 800px) {
  .privateProducts__rightColumn__fsImage__title {
    display: block;
    padding: 1rem 2rem 0.85rem;
  }
}

.privateProducts__rightColumn__textBlock__paragraph {
  line-height: 1.3;
  padding-bottom: 0.85rem;
}

.privateProducts__rightColumn__fsImage {
  flex: 50%;
}
@media only screen and (max-width: 800px) {
  .privateProducts__rightColumn__fsImage {
    flex: 100%;
  }
}
.privateProducts__rightColumn__fsImage img {
  margin: 0 auto;
  max-width: 600px;
}
@media only screen and (max-width: 600px) {
  .privateProducts__rightColumn__fsImage img {
    max-width: 350px;
  }
}

.privateProducts__rightColumn__buttonBlock {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  padding: 1rem 0;
}
.privateProducts__rightColumn__buttonBlock a {
  text-decoration: none;
}

.privateProducts__rightColumn__button {
  background-color: #008080;
  border-radius: 2rem;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
  text-align: center;
  width: 200px;
}
@media only screen and (max-width: 600px) {
  .privateProducts__rightColumn__button {
    margin: 0 auto;
  }
}
.privateProducts__rightColumn__button:hover {
  background-color: #caad80;
}

/* Private Products - leftColumn Module */
.privateProducts__leftColumn__main {
  background-color: white;
  width: 100%;
}

.privateProducts__leftColumn__block {
  padding: 1rem 3.5rem;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 800px) {
  .privateProducts__leftColumn__block {
    padding: 0;
  }
}

.privateProducts__leftColumn__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: auto;
  width: 100%;
}

.privateProducts__leftColumn__textBlock {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  font-style: normal;
  padding: 1rem 2rem;
  flex: 50%;
}
@media only screen and (max-width: 800px) {
  .privateProducts__leftColumn__textBlock {
    font-weight: 400;
    line-height: 1.4;
    padding: 1rem 2rem;
  }
}

.privateProducts__leftColumn__textBlock__title,
.privateProducts__leftColumn__fsImage__title {
  color: #6d2276;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: min(2.5rem, 8vw);
  font-weight: 100;
  line-height: 1.3;
  padding-bottom: 0.85rem;
  text-align: left;
}
@media only screen and (max-width: 800px) {
  .privateProducts__leftColumn__textBlock__title,
.privateProducts__leftColumn__fsImage__title {
    display: none;
  }
}

.privateProducts__leftColumn__fsImage__title {
  display: none;
}
@media only screen and (max-width: 800px) {
  .privateProducts__leftColumn__fsImage__title {
    display: block;
    padding: 1rem 2rem 0.85rem;
  }
}

.privateProducts__leftColumn__textBlock__paragraph {
  line-height: 1.3;
  padding-bottom: 0.85rem;
}

.privateProducts__leftColumn__fsImage {
  flex: 50%;
}
@media only screen and (max-width: 800px) {
  .privateProducts__leftColumn__fsImage {
    flex: 100%;
    order: -1;
  }
}
@media only screen and (max-width: 1200px) {
  .privateProducts__leftColumn__fsImage {
    flex: 100%;
    order: -1;
  }
}
.privateProducts__leftColumn__fsImage img {
  margin: 0 auto;
  max-width: 600px;
}
@media only screen and (max-width: 600px) {
  .privateProducts__leftColumn__fsImage img {
    width: 350px;
  }
}

/* Solutions Index Modules */
/* Corporate Products - Hero Module */
.corporateProducts__hero {
  height: 100%;
}

.corporateProducts__hero__image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/corporate_hero_image.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 80vh;
}
@media only screen and (max-width: 800px) {
  .corporateProducts__hero__image {
    background-position: 70%;
    background-attachment: scroll;
  }
}
@media only screen and (max-width: 600px) {
  .corporateProducts__hero__image {
    background-position: 64%;
    background-attachment: scroll;
  }
}

.corporateProducts__hero__title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: min(5.0rem, 9vw);
  line-height: 1.1;
  text-align: left;
}
@media only screen and (max-width: 600px) {
  .corporateProducts__hero__title {
    padding-top: 10rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 800px) {
  .corporateProducts__hero__title {
    padding-top: 20rem;
    padding-left: 3rem;
  }
}
@media only screen and (max-width: 1200px) {
  .corporateProducts__hero__title {
    padding-top: 15rem;
    padding-left: 3rem;
  }
}
@media only screen and (min-width: 1201px) {
  .corporateProducts__hero__title {
    padding-top: 15rem;
    padding-left: 5rem;
  }
}

.corporateProducts__hero__title--color {
  color: white;
}

.corporateProducts__hero__subtitle {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: min(1.2rem, 10vw);
  line-height: 1.5;
  text-align: left;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 600px) {
  .corporateProducts__hero__subtitle {
    padding-top: 8rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 800px) {
  .corporateProducts__hero__subtitle {
    padding-top: 5rem;
    padding-left: 3rem;
  }
}
@media only screen and (max-width: 1200px) {
  .corporateProducts__hero__subtitle {
    padding-top: 1rem;
    padding-left: 3rem;
    width: 90vw;
  }
}
@media only screen and (min-width: 1201px) {
  .corporateProducts__hero__subtitle {
    padding-top: 1rem;
    padding-left: 5rem;
    width: 60vw;
  }
}

.corporateProducts__hero__subtitle--color {
  color: white;
}

/* Corporate Products Module */
.corporateProducts__main {
  background-color: #fff;
  width: 100%;
}

.corporateProducts__block {
  padding: 2rem 3.5rem;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 800px) {
  .corporateProducts__block {
    padding: 0;
  }
}

.corporateProducts__block__title {
  color: #6d2276;
  font-family: "Roboto", sans-serif;
  font-size: min(2.5rem, 8vw);
  font-weight: 100;
  line-height: 1.3;
  padding-bottom: 0.85rem;
  text-align: left;
}
@media only screen and (max-width: 800px) {
  .corporateProducts__block__title {
    padding: 2rem 2rem 0.85rem 2rem;
  }
}

.corporateProducts__block__text {
  display: block;
  line-height: 1.4;
  margin: 0 auto;
  padding: 0 3.5rem 1rem;
  text-align: center;
  width: 80%;
}
@media only screen and (max-width: 800px) {
  .corporateProducts__block__text {
    padding: 0 2rem 0.85rem 2rem;
    text-align: left;
    width: 100%;
  }
}

.corporateProducts__block__text p {
  font-size: 1.2rem;
}

.corporateProducts__container {
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 2rem;
  width: 85%;
}
@media only screen and (max-width: 800px) {
  .corporateProducts__container {
    width: 90%;
  }
}
@media only screen and (max-width: 600px) {
  .corporateProducts__container {
    display: none;
  }
}

.auto-grid a {
  color: #5d5d5d;
  text-decoration: none;
}

.auto-grid > * {
  line-height: 1.2;
  max-width: 400px;
  margin: 0 auto;
  font-size: 1.1rem;
  text-align: center;
}

.auto-grid > * + * {
  margin-top: 1rem;
}

@supports (display: grid) {
  .auto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    grid-gap: 1rem;
  }
  @media only screen and (max-width: 800px) {
    .auto-grid {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
  }
  @media only screen and (max-width: 1200px) {
    .auto-grid {
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
  }

  .auto-grid > * {
    max-width: unset;
  }

  .auto-grid > * + * {
    margin-top: unset;
  }
}
.corporateProducts__fullBlock {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  font-style: normal;
  line-height: 1.3;
  padding: 1rem 2rem;
  width: 100%;
}

.corporateProducts__fullBlock__title {
  color: #008080;
  font-size: 1.2rem;
  font-weight: 600;
  padding-top: 0.85rem;
}

/* Corporate Products - rightColumn Module */
.corporateProducts__rightColumn__main {
  background-color: white;
  width: 100%;
}

.corporateProducts__rightColumn__block {
  padding: 1rem 3.5rem;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 800px) {
  .corporateProducts__rightColumn__block {
    padding: 0;
  }
}

.corporateProducts__rightColumn__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: auto;
  width: 100%;
}

.corporateProducts__rightColumn__textBlock {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  font-style: normal;
  padding: 1rem 2rem;
  flex: 50%;
}
@media only screen and (max-width: 800px) {
  .corporateProducts__rightColumn__textBlock {
    font-weight: 400;
    line-height: 1.4;
    padding: 1rem 2rem;
  }
}
.corporateProducts__rightColumn__textBlock ul {
  margin: 0;
  padding-left: 2rem;
  padding-top: 0.5rem;
}
.corporateProducts__rightColumn__textBlock ul li {
  padding-right: 1rem;
}

.corporateProducts__rightColumn__textBlock__title,
.corporateProducts__rightColumn__fsImage__title {
  color: #6d2276;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: min(2.5rem, 8vw);
  font-weight: 100;
  line-height: 1.3;
  padding-bottom: 0.85rem;
  text-align: left;
}
@media only screen and (max-width: 800px) {
  .corporateProducts__rightColumn__textBlock__title,
.corporateProducts__rightColumn__fsImage__title {
    display: none;
  }
}

.corporateProducts__rightColumn__fsImage__title {
  display: none;
}
@media only screen and (max-width: 800px) {
  .corporateProducts__rightColumn__fsImage__title {
    display: block;
    padding: 1rem 2rem 0.85rem;
  }
}

.corporateProducts__rightColumn__textBlock__paragraph {
  line-height: 1.3;
  padding-bottom: 0.85rem;
}

.corporateProducts__rightColumn__fsImage {
  flex: 50%;
}
@media only screen and (max-width: 800px) {
  .corporateProducts__rightColumn__fsImage {
    flex: 100%;
  }
}
.corporateProducts__rightColumn__fsImage img {
  margin: 0 auto;
  max-width: 600px;
}
@media only screen and (max-width: 600px) {
  .corporateProducts__rightColumn__fsImage img {
    max-width: 350px;
  }
}

.corporateProducts__rightColumn__buttonBlock {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  padding: 1rem 0;
}
.corporateProducts__rightColumn__buttonBlock a {
  text-decoration: none;
}

.corporateProducts__rightColumn__button {
  background-color: #008080;
  border-radius: 2rem;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
  text-align: center;
  width: 200px;
}
@media only screen and (max-width: 600px) {
  .corporateProducts__rightColumn__button {
    margin: 0 auto;
  }
}
.corporateProducts__rightColumn__button:hover {
  background-color: #caad80;
}

/* Corporate Products - leftColumn Module */
.corporateProducts__leftColumn__main {
  background-color: white;
  width: 100%;
}

.corporateProducts__leftColumn__block {
  padding: 1rem 3.5rem;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 800px) {
  .corporateProducts__leftColumn__block {
    padding: 0;
  }
}

.corporateProducts__leftColumn__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: auto;
  width: 100%;
}

.corporateProducts__leftColumn__textBlock {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  font-style: normal;
  padding: 1rem 2rem;
  flex: 50%;
}
@media only screen and (max-width: 800px) {
  .corporateProducts__leftColumn__textBlock {
    font-weight: 400;
    line-height: 1.4;
    padding: 1rem 2rem;
  }
}
.corporateProducts__leftColumn__textBlock ul {
  margin: 0;
  padding-left: 2rem;
  padding-top: 0.5rem;
}
.corporateProducts__leftColumn__textBlock ul li {
  padding-right: 1rem;
}

.corporateProducts__leftColumn__textBlock__title,
.corporateProducts__leftColumn__fsImage__title {
  color: #6d2276;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: min(2.5rem, 8vw);
  font-weight: 100;
  line-height: 1.3;
  padding-bottom: 0.85rem;
  text-align: left;
}
@media only screen and (max-width: 800px) {
  .corporateProducts__leftColumn__textBlock__title,
.corporateProducts__leftColumn__fsImage__title {
    display: none;
  }
}

.corporateProducts__leftColumn__fsImage__title {
  display: none;
}
@media only screen and (max-width: 800px) {
  .corporateProducts__leftColumn__fsImage__title {
    display: block;
    padding: 1rem 2rem 0.85rem;
  }
}

.corporateProducts__leftColumn__textBlock__paragraph {
  line-height: 1.3;
  padding-bottom: 0.85rem;
}

.corporateProducts__leftColumn__fsImage {
  flex: 50%;
}
@media only screen and (max-width: 800px) {
  .corporateProducts__leftColumn__fsImage {
    flex: 100%;
    order: -1;
  }
}
@media only screen and (max-width: 1200px) {
  .corporateProducts__leftColumn__fsImage {
    flex: 100%;
    order: -1;
  }
}
.corporateProducts__leftColumn__fsImage img {
  margin: 0 auto;
  max-width: 600px;
}
@media only screen and (max-width: 600px) {
  .corporateProducts__leftColumn__fsImage img {
    width: 350px;
  }
}

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