@import url("typo.css");
@import url("header.css?v=141125");
@import url("img.css");
@import url("btn.css");
@import url("form.css");
@import url("footer.css");
@import url("swiper-bundle.min.css");
@import url("swiper-custom.css?v=141125");
@import url("preloader.css");
:root {
  /*Setting Color*/
  --white-color: #FFF;
  --black-color: #111111;
  --pink-color: rgb(231, 33, 132);
  --green-color: #7bb529;
  --yellow-color: rgb(222, 173, 18);
  --cyan-color: rgb(101, 223, 255);
  --grey-color: #cccccc;
  --lightgrey-color: #f7f7f7;
  --lightgrey-color: rgba(0, 0, 0, .05);
  --border-color: #cccccc;
  --orange-color: rgb(239, 115, 1);
  --blue-color: rgba(34, 107, 173, 1);
  /*Setting Font*/
  --xxs-text: 0.8rem;
  --xs-text: 0.85rem;
  --rg-text: clamp(1rem, 2vw, 1.15rem);
  --md-text: clamp(1.35rem, 2vw, 1.5rem);
  --lg-text: clamp(1.5rem, 2.5vw, 1.75rem);
  --xl-text: clamp(1.85rem, 3vw, 2.25rem);
  /*Setting Space*/
  --xs-space: 0.65rem;
  --rg-space: clamp(1rem, 2vw, 1.25rem);
  --md-space: clamp(1.25rem, 3vw, 2rem);
  --lg-space: clamp(2rem, 4vw, 3.5rem);
  --xl-space: clamp(2.25rem, 4.5vw, 4rem);
  --header-height: 100px;
  --container-width: 1450px;
  --logo-height: 60px;
  /*Setting Btn*/
  --btn-space: 10px 25px 10px 25px;
  /*Setting Radius*/
  --btn-radius: 5px;
  --regular-radius: 20px;
  /*Setting Shadow*/
  --box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.07);
}
html, body {
  padding: 0;
  margin: 0;
  color: var(--black-color);
  background: var(--white-color);
  outline: none;
  scroll-behavior: smooth !important;
}
html, body {
  -webkit-font-smoothing: antialiased;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
}
* {
  outline: none !important;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
.align-center {
  text-align: center !important;
}
.align-left {
  text-align: left !important;
}
.align-right {
  text-align: right !important;
}
.align-justify {
  text-align: justify !important;
}
.ov-hidden {
  overflow: hidden !important;
}
dl, ol, ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
div:last-child {
  margin-bottom: 0 !important;
}
ul:last-child {
  margin-bottom: 0 !important;
}
li:last-child {
  margin-bottom: 0 !important;
}
.hide-desktop, .hide-desktop-xs {
  display: none !important;
}
.sticky-top {
  top: calc(var(--header-height) + var(--md-space));
}
/**main setting**/
.container-main {
  overflow: hidden;
  overflow: unset;
  z-index: 1;
}
section {
  position: relative;
  margin-bottom: var(--xl-space);
  overflow: hidden;
  overflow: unset;
  z-index: 2;
}
section.section-pad {
  padding: var(--xl-space) 0;
  background-color: var(--lightgrey-color);
}
section.section-pad-top {
  padding: var(--xl-space) 0 0 0;
}
section.section-border {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
section.section-hero {
  padding-top: var(--header-height);
}
section.section-hero::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  content: "";
  background: var(--pink-color);
  background: -moz-linear-gradient(left, rgba(255, 102, 167, 1) 0%, rgba(255, 102, 167, 1) 0%, rgba(179, 99, 248, 1) 20%, rgba(24, 70, 124, 1) 40%, rgba(38, 112, 199, 1) 60%, rgba(39, 200, 154, 1) 80%, rgba(227, 203, 44, 1) 100%);
  background: -webkit-linear-gradient(left, rgba(255, 102, 167, 1) 0%, rgba(255, 102, 167, 1) 0%, rgba(179, 99, 248, 1) 20%, rgba(24, 70, 124, 1) 40%, rgba(38, 112, 199, 1) 60%, rgba(39, 200, 154, 1) 80%, rgba(227, 203, 44, 1) 100%);
  background: linear-gradient(to right, rgba(255, 102, 167, 1) 0%, rgba(255, 102, 167, 1) 0%, rgba(179, 99, 248, 1) 20%, rgba(24, 70, 124, 1) 40%, rgba(38, 112, 199, 1) 60%, rgba(39, 200, 154, 1) 80%, rgba(227, 203, 44, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff66a7', endColorstr='#e3cb2c', GradientType=1);
  z-index: 3;
}
.container, .cont-w {
  position: relative;
  max-width: var(--container-width);
  width: 95%;
  margin: 0 auto;
  margin-bottom: var(--xl-space);
  z-index: 2;
}
.container:last-child, .cont-w:last-child {
  margin-bottom: 0;
}
.container.container-full {
  width: calc(100% - 60px);
  max-width: calc(100% - 60px);
  padding: 0;
}
.row {
  margin-bottom: var(--md-space);
}
.row:last-of-type {
  margin-bottom: 0 !important;
}
/*margin*/
.nomargin {
  margin: 0 !important;
}
.m-top {
  margin-top: var(--rg-space) !important;
}
.m-top-xs {
  margin-top: var(--xs-space) !important;
}
.m-top-md {
  margin-top: calc(var(--md-space)) !important;
}
.m-top-xl {
  margin-top: var(--xl-space) !important;
}
.m-top-xxl {
  margin-top: calc(var(--xl-space) * 2) !important;
}
.m-bottom {
  margin-bottom: var(--rg-space) !important;
}
.m-bottom-xs {
  margin-bottom: var(--xs-space) !important;
}
.m-bottom-md {
  margin-bottom: calc(var(--md-space)) !important;
}
.m-bottom-lg {
  margin-bottom: var(--lg-space) !important;
}
.m-bottom-xl {
  margin-bottom: var(--xl-space) !important;
}
.m-left {
  margin-left: var(--rg-space) !important;
}
.m-right {
  margin-right: var(--rg-space) !important;
}
/*padding*/
.nopadding {
  padding: 0 !important;
}
.p-top {
  padding-top: var(--rg-space) !important;
}
.p-top-xs {
  padding-top: var(--xs-space) !important;
}
.p-top-md {
  padding-top: calc(var(--md-space)) !important;
}
.p-top-xl {
  padding-top: var(--xl-space) !important;
}
.p-top-xxl {
  padding-top: calc(var(--xl-space) * 2) !important;
}
.p-bottom {
  padding-bottom: var(--rg-space) !important;
}
.p-bottom-xs {
  padding-bottom: var(--xs-space) !important;
}
.p-bottom-md {
  padding-bottom: calc(var(--md-space)) !important;
}
.p-bottom-xl {
  padding-bottom: var(--xl-space) !important;
}
.p-left {
  padding-left: var(--rg-space) !important;
}
.p-right {
  padding-right: var(--rg-space) !important;
}
.border-top {
  border-top: 1px solid var(--border-color) !important;
}
.border-bottom {
  border-bottom: 1px solid var(--border-color) !important;
}
/**hackrow*/
.no-gutters {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.no-gutters > .col, .no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}
@media screen and (min-width: 1200px) {
  .container .row {
    margin-right: -15px !important;
    margin-left: -15px !important;
  }
  .container .row > .col, .container .row > [class*=col-] {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.row.margin-row {
  margin-bottom: -2rem !important;
}
.row.margin-row > .col, .row.margin-row > [class*=col-] {
  margin-bottom: 2rem !important;
}
.row.margin-row-mini {
  margin-bottom: -10px !important;
  margin-right: -5px !important;
  margin-left: -5px !important;
}
.row.margin-row-mini > .col, .row.margin-row-mini > [class*=col-] {
  margin-bottom: 10px !important;
  padding-right: 5px;
  padding-left: 5px;
}
/**end hackrow*/
hr {
  width: 100%;
  margin-bottom: var(--xl-space);
  background-color: var(--border-color);
  opacity: 1;
}
/**color settings**/
.color-white {
  color: var(--white-color) !important;
}
.color-pink {
  color: var(--pink-color) !important;
}
.bg-dinamico {
  background-color: var(--bg) !important;
}
.bg-white {
  background-color: var(--white-color) !important;
}
.bg-pink {
  background-color: var(--pink-color) !important;
}
.bg-yellow {
  background-color: var(--yellow-color) !important;
}
.bg-green {
  background-color: var(--green-color) !important;
}
.bg-cyan {
  background-color: var(--cyan-color) !important;
}
.bg-lightgrey {
  background-color: var(--lightgrey-color) !important;
}
/**end color settings**/
/*page*/
section.section-bread {
  margin-bottom: var(--lg-space);
}
.breadcrumb {
  padding: var(--rg-space);
  background-color: var(--lightgrey-color);
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}
.breadcrumb a {
  margin-right: 10px;
}
.breadcrumb a.active {
  font-weight: 600;
}
.breadcrumb a:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  section.section-bread {
    overflow: auto;
  }
  .breadcrumb {
    flex-wrap: nowrap;
    font-size: 12px;
    min-width: max-content;
  }
}
.banner-hero {
  position: absolute;
  width: 100%;
  height: calc(100% - var(--header-height));
  bottom: 0;
  z-index: 3;
  /**/
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-hero-inside {
  position: relative;
  width: 90%;
  text-align: center;
}
.banner-hero-home {
  background: linear-gradient(135deg, rgba(233, 231, 24, 0.9) 0%, rgba(229, 171, 14, 0.9) 100%);
  background: linear-gradient(to right, rgba(24, 70, 124, .9) 0%, rgba(38, 112, 199, .9) 60%, rgba(39, 200, 154, 1) 100%);
  width: 40%;
  min-width: 550px;
  height: auto;
  min-height: 300px;
  padding: var(--md-space);
  left: var(--md-space);
  bottom: var(--xl-space);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  box-shadow: var(--box-shadow);
}
@media screen and (max-width: 767px) {
  .banner-hero-home {
    width: 100%;
    min-width: 320px;
    min-height: 250px;
    bottom: 5rem;
  }
}
@media screen and (max-width: 575px) {
  .banner-hero-home {
    width: 100%;
    min-width: 100%;
    min-height: 0;
    bottom: 2rem;
  }
}
.banner-hero-home h1 {
  color: var(--white-color);
}
.banner-hero.banner-hero-home div {
  width: 100%;
}
.item {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.img-item {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 2;
  transition: background 0.3s;
  padding-left: 15px;
  padding-top: 15px;
}
.img-item img {
  position: relative;
  z-index: 2;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.img-item .underlay {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 1;
}
.img-item .overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  opacity: .5;
  z-index: 3;
}
.img-item .overlay-item {
  position: absolute;
  top: 15px;
  left: 15px;
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 4;
}
.item-inside {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  width: max-content;
  max-width: 70%;
  background-color: aqua;
  padding: 15px 25px;
  z-index: 10;
  border-top-left-radius: 15px;
}
.text-item {
  font-size: 1.5rem;
  color: var(--white-color);
  width: 100%;
  z-index: 10;
  transition: transform 0.3s;
}
.icon-top {
  height: 160px;
  width: 160px;
  border-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  background-color: var(--lightgrey-color);
}
.icon-top img {
  max-height: 75%;
}
@media screen and (min-width: 1200px) {
  .item:hover .overlay-item {
    opacity: 0.6;
  }
}
.item-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 15px;
  padding-left: 15px;
  /**border-bottom: 1px solid var(--border-color);**/
  border-radius: 10px;
  cursor: pointer;
}
.item-row:first-of-type {
  padding-top: 15px;
  /**border-top: 1px solid var(--border-color);**/
  margin-top: 0;
}
.item-row:nth-child(odd) {
  background-color: rgba(0, 0, 0, .05);
}
.img-item-row {
  display: block;
  position: relative;
  overflow: hidden;
  width: 220px;
  aspect-ratio: 3 / 2;
  transition: background 0.3s;
  padding-left: 15px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.img-item-row img {
  position: relative;
  z-index: 2;
}
.img-item-row .underlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 100%;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  z-index: 1;
}
.text-item-row {
  width: calc(70% - 220px);
}
.title-item-row {
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: var(--xs-space);
}
.item-line {
  display: flex;
  height: 250px;
  /*padding: 15px;
	border-bottom-right-radius:15px;*/
}
.col-12:nth-child(odd) .item-line {
  /*background-color: rgba(0,0,0,.05);*/
}
.item-line, .item-row {
  transition: 0.3s;
}
@media screen and (min-width: 1200px) {
  .item-line:hover, .item-row:hover {
    transform: scale(1.015);
  }
}
.item-line .img-item {
  display: block;
  position: relative;
  overflow: hidden;
  width: calc(35% + 15px);
  height: 100%;
  transition: background 0.3s;
  padding-left: 25px;
  padding-top: 0;
}
.item-line .img-item img {
  position: relative;
  z-index: 2;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.item-line .img-item .underlay {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 25px);
  height: 100%;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 1;
}
.item-line .img-item .overlay {
  position: absolute;
  top: 0;
  left: 25px;
  width: calc(100% - 25px);
  height: calc(100%);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  opacity: .5;
  z-index: 3;
}
.item-line .img-item .overlay-item {
  display: none;
}
.item-line .item-inside {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex: 1;
  margin-left: 15px;
  position: relative;
  bottom: auto;
  right: auto;
  width: auto;
  max-width: none;
  height: 100%;
  background-color: black;
  padding: 15px 25px;
  z-index: 10;
  border-radius: 15px;
}
.item-col:nth-child(even) .bg-dinamico {
  filter: brightness(1.3);
}
.item-col .overlay {
  opacity: .15 !important;
}
@media screen and (max-width: 1550px) {
  .item-line {
    height: 200px;
  }
}
@media screen and (max-width: 575px) {
  .item-line {
    height: auto;
    flex-wrap: wrap;
  }
  .item-line .img-item {
    width: 100%;
  }
  .item-line .item-inside {
    width: 100%;
    margin: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
  }
  .item-line .img-item .overlay, .item-line .img-item .underlay, .img-item .overlay-item {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .item-line .img-item .overlay {
    width: 100%;
    left: 0;
  }
  .item-line .img-item {
    padding: 0;
  }
  .text-item {
    font-size: 1.25rem;
  }
  .item-row {
    margin-bottom: 1.5rem;
    background-color: rgba(0, 0, 0, .05);
  }
  .img-item-row {
    width: 100%;
    margin-bottom: 1.25rem;
  }
  .text-item-row {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.item {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}
.img-item {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 2;
  transition: background 0.3s;
  padding-top: 30px;
  padding-left: 30px;
}
.img-item img {
  position: relative;
  border-radius: 4px;
  z-index: 2;
}
.img-item .underlay {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border-radius: 4px;
  z-index: 1;
}
.img-item .overlay {
  position: absolute;
  top: 30px;
  left: 30px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  z-index: 3;
  border-radius: 4px;
}
.img-item .overlay-item {
  position: absolute;
  top: 30px;
  left: 30px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 4;
  border-radius: 4px;
}
.text-item {
  position: absolute;
  font-size: 1.5rem;
  font-weight: 700;
  bottom: 0;
  left: 30px;
  color: var(--white-color);
  padding: 30px 60px 30px 30px;
  width: 100%;
  z-index: 10;
  transition: transform 0.3s;
}
@media screen and (min-width: 576px) {
  .text-item.bg-dinamico {
    background-color: transparent !important;
  }
}
.icon-item {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  border: 1px solid var(--white-color);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
  background-image: url("/newlayout/img/icon/plus.svg");
  bottom: 30px;
  left: 60px;
  opacity: 0;
  transition-delay: 0.3s;
  transition: opacity 0.3s;
  z-index: 11;
}
@media screen and (min-width: 1200px) {
  .item:hover .overlay-item {
    opacity: 0.7;
  }
  .item:hover .text-item {
    transform: translate(0, -50px);
  }
  .item:hover .icon-item {
    opacity: 1;
  }
}
.section-banner {
  background: linear-gradient(to right, rgba(31, 99, 182, 1) 0%, rgba(62, 156, 225, 1) 100%);
}
.section-banner .container {
  padding-top: var(--xl-space);
  padding-bottom: var(--xl-space);
  margin-bottom: 0;
}
.section-banner figure {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  opacity: .2;
  mix-blend-mode: multiply
}
.img-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .5);
}
@media screen and (max-width: 1199px) {
  .img-circle {
    width: 170px;
  }
}
@media screen and (max-width: 991px) {
  .img-circle {
    width: 110px;
  }
}
.img-circle img {
  max-width: 60%;
  max-height: 50%;
}
.logo-partner-page {
  width: 100%;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, .05);
  border-radius: 10px;
}
.logo-partner-page img {
  max-width: 80%;
  max-height: 85%;
  mix-blend-mode: multiply;
}
.item-storia {
  background-color: rgba(0, 0, 0, .05);
  border-radius: 10px;
  padding: var(--md-space);
}
.col-storia .item-storia {
  color: var(--white-color);
}
.col-storia:nth-child(1) .item-storia {
  background-color: var(--pink-color);
}
.col-storia:nth-child(2) .item-storia {
  background-color: var(--orange-color);
}
.col-storia:nth-child(3) .item-storia {
  background-color: var(--blue-color);
}
.col-storia:nth-child(4) .item-storia {
  background-color: var(--green-color);
}
.col-storia:nth-child(5) .item-storia {
  background-color: var(--yellow-color);
}
.col-storia:nth-child(6) .item-storia {
  background-color: var(--blue-color);
}
.col-storia:nth-child(7) .item-storia {
  background-color: var(--green-color);
}
.col-storia:nth-child(8) .item-storia {
  background-color: var(--pink-color);
}
.col-storia:nth-child(9) .item-storia {
  background-color: var(--green-color);
}
.col-storia:nth-child(10) .item-storia {
  background-color: var(--orange-color);
}
.col-storia:nth-child(11) .item-storia {
  background-color: var(--blue-color);
}
.col-storia:nth-child(12) .item-storia {
  background-color: var(--yellow-color);
}
/*video*/
.video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 6px;
  overflow: hidden;
}
iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*selection*/ ::-moz-selection {
  color: white;
  background: black;
}
::selection {
  color: white;
  background: black;
}
.swiper::-moz-selection {
  color: transparent;
  background: transparent;
}
.swiper::selection {
  color: transparent;
  background: transparent;
}
/*end selection*/
/*responsive*/
@media screen and (max-width: 1920px) {
  html, body {
    font-size: 20px;
  }
}
@media screen and (max-width: 1450px) {
  html, body {
    font-size: 18px;
  }
}
@media screen and (max-width: 1199px) {
  html, body {
    font-size: 18px;
  }
  .hide-lg {
    display: none !important;
  }
  .align-center-lg {
    text-align: center !important;
  }
  .align-left-lg {
    text-align: left !important;
  }
  .m-top-lg-m {
    margin-top: var(--md-space) !important;
  }
}
@media screen and (max-width: 991px) {
  :root {
    --header-height: 70px;
    --logo-height: 40px;
  }
  html, body {
    font-size: 16px;
  }
  .hide-md {
    display: none !important;
  }
  .hide-desktop {
    display: block !important;
  }
  .align-center-md {
    text-align: center !important;
  }
  .align-left-md {
    text-align: left !important;
  }
  .m-top-lg-m, .m-top-md-m {
    margin-top: var(--lg-space) !important;
  }
  .col-text {
    width: 100%;
    min-width: 100%;
  }
  footer .m-top-md-m {
    margin-top: var(--rg-space) !important;
  }
  .icon-top {
    height: 90px;
    width: 90px;
  }
}
@media screen and (max-width: 767px) {
  :root {}
  html, body {
    font-size: 16px;
  }
  .hide-sm {
    display: none !important;
  }
  .align-center-sm {
    text-align: center !important;
  }
  .align-left-sm {
    text-align: left !important;
  }
  .m-top-lg-m, .m-top-md-m, .m-top-sm-m {
    margin-top: var(--lg-space) !important;
  }
  footer .m-top-sm-m {
    margin-top: var(--md-space) !important;
  }
  footer .row-events br {
    display: none;
  }
  footer .row-events {
    font-size: 12px;
  }
}
@media screen and (max-width: 575px) {
  :root {}
  html, body {
    font-size: 18px;
  }
  .hide-xs {
    display: none !important;
  }
  .align-center-xs {
    text-align: center !important;
  }
  .align-left-xs {
    text-align: left !important;
  }
  .m-top-lg-m, .m-top-md-m, .m-top-sm-m, .m-top-xs-m {
    margin-top: var(--lg-space) !important;
  }
  footer .m-top-xs-m {
    margin-top: var(--rg-space) !important;
  }
  /**/
  .row.margin-row > .col, .row.margin-row > [class*="col-"] {
    margin-bottom: 15px !important;
  }
  .img-item {
    aspect-ratio: 4 / 3;
    padding-top: 0;
    padding-left: 0;
  }
  .img-item .underlay {
    width: 100%;
    height: 100%;
  }
  .text-item {
    left: 0;
    color: var(--white-color);
    width: calc(100%);
    padding: 20px;
    font-size: 22px;
  }
  .img-item .overlay-item, .img-item .overlay {
    top: 0;
    left: 0;
    width: calc(100%);
    height: calc(100%);
  }
}