:root {
  --main: #00427E;
  --main-rgb: 0, 66, 126;
  --orange: #FEA200;
  --orange-rgb: 254, 162, 0;
  --beige: #FFF5E5;
  --beige-rgb: 255, 245, 229;
  --azzurro: #E5F1FC;
  --azzurro-rgb: 229, 241, 252;
  --font-family-default: 'Josefin Sans', sans-serif;
  --grey: #E3E3E3;

}
body {
  overflow-x: hidden;
  font-weight: 400;
  font-family: var(--font-family-default);
  color: var(--main);
}
img {
  max-width: 100%;
}
a, a:hover, a:focus, a:active {
  text-decoration: none;
  outline: none;
}
:hover, a{
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
strong, b {
  font-weight: 700 !important;
}

/* ANIMATION */
.floating {
  animation: floating 10s linear infinite alternate-reverse both;
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: rotate(0deg) translate(-10px) rotate(0deg);
            transform: rotate(0deg) translate(-10px) rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
            transform: rotate(360deg) translate(-10px) rotate(-360deg);
  }
}
@keyframes floating {
  0% {
    -webkit-transform: rotate(0deg) translate(-10px) rotate(0deg);
            transform: rotate(0deg) translate(-10px) rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
            transform: rotate(360deg) translate(-10px) rotate(-360deg);
  }
}
@keyframes animate-line-1 {
  0% {
    transform: translate3d 0, 0, 0 rotate(0deg);
  }
  50% {
    transform: translate3d(0, 22px, 0) rotate(0);
  }
  100% {
    transform: translate3d(0, 22px, 0) rotate(45deg);
  }
}
@keyframes animate-line-2 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes animate-line-3 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0);
  }
  50% {
    transform: translate3d(0, -22px, 0);
  }
  100% {
    transform: translate3d(0, -22px, 0) rotate(135deg);
  }
}
@keyframes animate-line-1-rev {
  0% {
    transform: translate3d(0, 22px, 0) rotate(45deg);
  }
  50% {
    transform: translate3d(0, 22px, 0) rotate(0);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}
@keyframes animate-line-2-rev {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes animate-line-3-rev {
  0% {
    transform: translate3d(0, -22px, 0) rotate(135deg);
  }
  50% {
    transform: translate3d(0, -22px, 0) rotate(0);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}
@-webkit-keyframes dropdownFadeIn {
  0% {
    opacity: 0;
    margin-top: 0
  }
  100% {
    opacity: 1;
    margin-top: 16px
  }
}

@keyframes dropdownFadeIn {
  0% {
    opacity: 0;
    margin-top: 0
  }
  100% {
    opacity: 1;
    margin-top: 16px
  }
}

@-webkit-keyframes dropdownFadeInTop {
  0% {
    opacity: 0;
    margin-top: 0
  }
  100% {
    opacity: 1;
    margin-top: -16px
  }
}

@keyframes dropdownFadeInTop {
  0% {
    opacity: 0;
    margin-top: 0
  }
  100% {
    opacity: 1;
    margin-top: -16px
  }
}
@-webkit-keyframes megamenuFadeIn {
  0% {
    opacity: 0;
    margin-top: 16px
  }
  100% {
    opacity: 1;
    margin-top: 16px
  }
}

@keyframes megamenuFadeIn {
  0% {
    opacity: 0;
    margin-top: 16px
  }
  100% {
    opacity: 1;
    margin-top: 16px
  }
}
/* ANIMATION */

/* FOOTER */

footer, footer p:not(.h1, .h2, .h3, .h4, .h5, .h6), footer ul, footer ol {
  font-size: 14px;
}
/* FOOTER */

/* NAVIGAZIONE */
#navigazione .nav-item, #navigazione .nav-item .nav-link {
  font-size: 17px;
  font-family: var(--font-family-default);
  color: var(--main);

}
#navigazione .nav-item .nav-link {
  font-weight: bold;
  line-height: 1.4;
  padding: 0 0.35em;
  transition: color 0.5s;
  transition-timing-function: cubic-bezier(0.2,1,0.3,1);
}
/*#navigazione .nav-item .nav-link::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: -4%;
  left: 0;
  width: 100%;
  height: 50%;
  opacity: 0.55;
  background: #bb3565;
  transform: scale3d(0,1,1);
  transform-origin: 0% 50%;
  transition: transform 0.5s;
  transition-timing-function: cubic-bezier(0.2,1,0.3,1);
}*/
/* Hover */
#navigazione .nav-item .nav-link.active,
#navigazione .nav-item:hover .nav-link,
#navigazione .nav-item:focus .nav-link {
  color: var(--orange);
}
/*#navigazione .nav-item:hover .nav-link::before,
#navigazione .nav-item:focus .nav-link::before{
  transform: scale3d(1,1,1);
}*/
.navbar-toggler {
  transform: scale(0.4);
}
.menu-icon {
  height: 52px;
  width: 80px;
  cursor: pointer;
  display: block;
}
.menu-icon .line-1,
.menu-icon .line-2,
.menu-icon .line-3 {
  height: 8px;
  width: 100%;
  background-color: var(--orange);
  display: block;
}
.menu-icon .line-1 {
  animation: animate-line-1-rev 0.7s ease-in-out;
}
.menu-icon .line-2 {
  margin: 14px 0;
  animation: animate-line-2-rev 0.7s ease-in-out;
}
.menu-icon .line-3 {
  animation: animate-line-3-rev 0.7s ease-in-out;
}
.menu-icon.active .line-1 {
  animation: animate-line-1 0.7s cubic-bezier(0.3, 1, 0.7, 1) forwards;
}
.menu-icon.active .line-2 {
  animation: animate-line-2 0.7s cubic-bezier(0.3, 1, 0.7, 1) forwards;
}
.menu-icon.active .line-3 {
  animation: animate-line-3 0.7s cubic-bezier(0.3, 1, 0.7, 1) forwards;
}
.no-animation {
  animation: none !important;
}

#navigazione .dropdown-menu {
  background: rgba(255,255,255,.35);
  backdrop-filter: blur(7px);
  box-shadow: inset 0 0 2000px rgb(255,255,255,1);
  border-radius: 0;
  border: 1px solid rgba(var(--orange-rgb), .75);
}
#navigazione .dropdown-item {
  white-space: normal;
  text-transform: none;
  font-size: 15px;
  --bs-dropdown-link-hover-bg: var(--azzurro);
}
#navigazione .dropdown-menu .text-uppercase {
  font-size: 13px;
  font-weight: bold;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
}
#navigazione .dropdown-item:hover {
  text-decoration: underline;
}
/* NAVIGAZIONE 

/* TIPOGRAFIA */
.font-josefin {
  font-family: var(--font-family-default);
}
h1,h2,h3,h4,h5,h6,p {
 margin-bottom: 0;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
}
.h-fs-1 *:is(h1,h2,h3), .strong-big strong, .strong-big b {
  font-size: calc(1.375rem + 1.5vw) !important;
}
.h-fs-2 *:is(h1,h2,h3){
  font-size: calc(1.325rem + 0.9vw) !important;
}
.h-fs-3 *:is(h1,h2,h3){
  font-size: calc(1.3rem + 0.6vw) !important;
}
.h-fs-4 *:is(h1,h2,h3){
  font-size: calc(1.275rem + 0.3vw) !important;
}
h1,h2,.h1,.h2, .strong-big strong, .strong-big b {}
.h-uppercase *:is(h1, h2, h3) { text-transform: uppercase; }
.h-fw-light *:is(h1, h2, h3) { font-weight: 300!important; }
.h-mb-5 *:is(h1, h2, h3) { margin-bottom: 3rem; }
.h-fw-bold *:is(h1, h2, h3) { font-weight:bold; }

*:not(.fs-1, .fs-2, .fs-3, .fs-4, .fs-5, .fs-6) > p:not(.h1, .h2, .h3, .h4, .h5, .h6, .fs-1, .fs-2, .fs-3, .fs-4, .fs-5, .fs-6),
ul, ol {
  font-size: 17px;
}
.p-big p:not(.h1, .h2, .h3, .h4, .h5, .h6, .fs-1, .fs-2, .fs-3, .fs-4, .fs-5, .fs-6),
.p-first p:first-child:not(.h1, .h2, .h3, .h4, .h5, .h6) {
  font-size: 20px;
}
.p-small p:not(.h1, .h2, .h3, .h4, .h5, .h6, .fs-1, .fs-2, .fs-3, .fs-4, .fs-5, .fs-6) {
  font-size: 15px;
}
.h-mt h1, .h-mt h2, .h-mt h3, .h-mt h4, .h-mt h5, .h-mt h6 {
  margin-top: 2.5rem; 
}
.h-mb h1, .h-mb h2, .h-mb h3, .h-mb h4, .h-mb h5, .h-mb h6  {
  margin-bottom: 1.5rem;
}
.p-mb p:not(:last-child) {
  margin-bottom: 1rem;
}
.list-mt ul, .list-mt ol {
  margin-top: 1rem;
}
.li-mb li:not(:last-child) {
  margin-bottom: 1rem;
}
.h-uppercase h1, .h-uppercase h2, .h-uppercase h3 {
  text-transform: uppercase;
}
.h-strong h1, .h-strong h2, .h-strong h3, .h-strong h4, .h-strong h5, .h-strong h6 {
  font-weight: bolder;
}
.h-light h1, .h-light h2, .h-light h3, .h-light h4, .h-light h5, .h-light h6 {
  font-weight: lighter;
}
.list-p-0 ol, .list-p-0 ul {
  padding-left: 20px;
}
.list-custom li {
  list-style-type: none;
  position: relative;
}
.list-custom li::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 5px;
  width: 14px;
  height: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  background: url('../img/svg/icon-hand.svg') no-repeat center;
  background-size: contain;
}
.link-fs-lighter a {
  font-weight: lighter !important;
}
.link-reset a { 
  color: inherit;
}
.link-reset a:hover {
  opacity: .75;
}
.link-inline-block a { display: inline-block!important; }
.link-block a { display: block!important; }
.link-underline a {
  text-decoration: underline;
}
.testata h1, .testata h2, .testata .h1, .testata .h2 {
  font-weight: 300;
  text-transform: uppercase;
  word-break:break-word;
  overflow-wrap: break-word;
}
.breadcrumb {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  font-size: 14px;
  margin-bottom: 0;
  padding: 0.75rem 1rem;
}
.breadcrumb-item+.breadcrumb-item::before {
  content: '>';
}
.breadcrumb  a, .breadcrumb-item+.breadcrumb-item::before, .breadcrumb-item+.breadcrumb-item.active {
  color: var(--main);
}
.breadcrumb .breadcrumb-item:last-child {
  font-weight: bold;
}
.breadcrumb .breadcrumb-item::before {
  font-weight: normal;
}
.fs-small {
  font-size: 14px !important;
}
.hypens-auto {
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.list-calendar ul, .list-calendar ol {
  list-style-type: none;
  position: relative;
  padding-left: 115px;
  text-align: left;
  min-height: calc(100px + .75rem);
  padding-bottom: 1rem;
}
.list-calendar ul::before, .list-calendar ol::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 77px;
  height: 86px;
  background-position: center!important;
  background-repeat: no-repeat!important;
  background-size: contain !important;
}
.list-calendar  >  ul:nth-of-type(1)::before, .list-calendar  >  ol:nth-of-type(1)::before {
  background: url('../img/svg/calendar-1.svg');
}
.list-calendar  >  ul:nth-of-type(2)::before, .list-calendar  >  ol:nth-of-type(2)::before {
  background: url('../img/svg/calendar-2.svg');
}
.list-calendar  >  ul:nth-of-type(3)::before, .list-calendar  >  ol:nth-of-type(3)::before {
  background: url('../img/svg/calendar-3.svg');
}
.list-calendar ul:not(:last-of-type), .list-calendar ol:not(:last-of-type) {
  margin-bottom: 1rem;
  border-bottom: var(--bs-border-width) solid var(--orange);
}
.list-calendar ul > li:first-child, .list-calendar ol > li:first-child {
  padding-top: 1rem;
}
/* TIPOGRAFIA */

/* COLORS */
.azzurro {
  background: var(--azzurro);
}
.beige {
  background: var(--beige);
}
.grey {
  background: var(--grey);
}
.orange {
  background: var(--orange);
}
.orange-rgb {
  background: rgba(var(--orange-rgb), 1);
}
.main {
  background: var(--main);
}
.white {
  background: #fff;
}
.text-grey {
  color: var(--grey);
}
.text-orange {
  color: var(--orange);
}
.text-azzurro {
  color: var(--azzurro);
}
.border-azzurro {
  border-color: var(--azzurro) !important;
}
.border-main {
  border-color: var(--main) !important;
}
.border-white {
  border-color: #fff !important;
}
.border-orange {
  border-color: var(--orange) !important;
}
.filter-main .wrap-img::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(45, 65, 86, .7);
}
.filter-main, .filter-main .wrap-img::after, .filter-main .wrap-img img {
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.filter-main:hover .wrap-img img {
  transform: scale(1.2);
}
.filter-main:hover .wrap-img::after {
  backdrop-filter: blur(3px);
}
.strong-orange strong,
.strong-orange b {
  color: var(--orange);
}
.hr-azzurro hr {
  margin: 1.5rem 0;
  --bs-border-width: 2px;
  border-color: var(--azzurro);
  opacity: 1;
}
.link-orange a {
  --bs-link-color-rgb: var(--orange-rgb);
  --bs-link-hover-color-rgb: var(--main);
}
.link-orange a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}
.master-box-hover { position:relative; }
.master-box-hover, .master-box-hover > * {
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.master-box-hover:hover .border-azzurro { border-color:var(--orange) !important; }
.master-box-hover:hover p { color:var(--orange); }

.white-to-azzurro-x {
  background: #ffffff;
  background: -moz-linear-gradient(left, #ffffff 0%, #ffffff 50%, var(--azzurro) 50%, var(--azzurro) 100%);
  background: -webkit-linear-gradient(left, #ffffff 0%, #ffffff 50%, var(--azzurro) 50%, var(--azzurro) 100%);
  background: linear-gradient(to right, #ffffff 0%, #ffffff 50%, var(--azzurro) 50%, var(--azzurro) 100%);
}
.white-to-azzurro-y {
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 50%, var(--azzurro) 50%, var(--azzurro) 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 50%, var(--azzurro) 50%, var(--azzurro) 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, var(--azzurro) 50%, var(--azzurro) 100%);
}
/* COLORS */


/* BUTTONS */

.link-btn a {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius-pill);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
   word-break: break-word;
  overflow-wrap: break-word;
  --bs-btn-padding-y: 0.75rem;
}
@media (prefers-reduced-motion: reduce) {
  .link-btn a {
    transition: none;
  }
}
.link-btn a:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.link-me-2 a { margin-right: 0.5rem !important; }
.link-mt-3 a { margin-top: 1rem !important; }

.btn {
  word-break: break-word;
  overflow-wrap: break-word;
  border-radius: 0;
  --bs-btn-padding-y: 0.75rem;
  border-radius: var(--bs-border-radius-pill);
}
.btn-primary {
  color: var(--main);
  --bs-btn-bg: var(--orange);
  --bs-btn-border-color: var(--orange);
  --bs-btn-hover-bg: var(--main);
  --bs-btn-hover-border-color: var(--main);
  --bs-btn-active-border-color: var(--main);
  --bs-btn-active-bg: var(--main);
  font-weight: 500;
  font-size: 15px;
  min-width: 250px;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  box-shadow: 0 0 0 0.25rem rgba(var(--main-rgb), 0.25);
}
.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.btn-h-white {
  --bs-btn-hover-color: var(--main);
  --bs-btn-hover-bg: #fff;
}
.btn-h-white:hover, .btn-h-white:focus, .btn-h-white:active {
  box-shadow: 0 0 0 0.25rem rgba(255,255,255, 0.25);
}
.btn-min-w {
  min-width: 200px;
}
.btn-min-w-250 {
  min-width: 250px;
}
.btn-slim {
  padding-top: .8rem !important;
  padding-bottom: .8rem !important;
}
.btn-default {
  background: #fff;
  border: 1px solid transparent;
  border-radius: 9px;
  box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.16);
  color: var(--main);
  font-size: 15px;
  padding: 1rem 1.75rem;
  -webkit-transition: color 0.25s, background 0.25s;
  transition: color 0.25s, background 0.25s;
}
.btn-default.active,
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
  background: var(--orange);
  color: #fff;
}
.btn-default.focus, .btn-default:focus {
  box-shadow: 0 0 0 0.2rem rgba(127, 36, 69, .25);
}

.btn-orange {
  background: var(--orange);
  border: 1px solid var(--orange);
  color: #fff;
  font-size: 15px;
  padding: 1rem 1.75rem;
  -webkit-transition: border-color 0.25s, background 0.25s;
  transition: border-color 0.25s, background 0.25s;
}
.btn-orange.active,
.btn-orange:hover,
.btn-orange:focus,
.btn-orange:active {
  background: var(--main);
  border-color: var(--main);
  color: #fff;
}
.btn-orange.focus, .btn-orange:focus {
  box-shadow: 0 0 0 0.2rem rgba(var(--orange-rgb), .25);
}

.btn-outline-orange {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--main);
  font-size: 15px;
  padding: 1rem 1.75rem;
  -webkit-transition: color 0.25s, background 0.25s;
  transition: color 0.25s, background 0.25s;
}
.btn-outline-orange.active,
.btn-outline-orange:hover,
.btn-outline-orange:focus,
.btn-outline-orange:active {
  background: var(--orange);
  color: #fff;
}
.btn-outline-orange.focus, .btn-outline-orange:focus {
  box-shadow: 0 0 0 0.2rem rgba(var(--orange-rgb), .25);
}

.btn-outline-azzurro,
.link-btn-outline-azzurro a {
  background: transparent;
  border: 2px solid var(--azzurro);
  color: var(--main);
  font-size: 15px;
  padding: 1rem 1.75rem;
  -webkit-transition: color 0.25s, background 0.25s;
  transition: color 0.25s, background 0.25s;
}
.btn-outline-azzurro.active,
.btn-outline-azzurro:hover,
.btn-outline-azzurro:focus,
.btn-outline-azzurro:active,
.link-btn-outline-azzurro a:active,
.link-btn-outline-azzurro a:hover,
.link-btn-outline-azzurro a:focus {
  background: var(--azzurro);
  color: var(--main);
}
.btn-outline-azzurro.focus, .btn-outline-azzurro:focus,
.link-btn-outline-azzurro a:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 235, 245, .25);
}

.btn-full-grey {
  border: 1px solid var(--grey);
  background: var(--grey);
  border-radius: 0;
  color: #fff;
  font-size: 18px;
  padding: 0.75rem 1.75rem;
  -webkit-transition: color 0.25s, background 0.25s, border-color 0.25s;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}
.btn-full-grey:hover,
.btn-full-grey:focus,
.btn-full-grey:active {
  background: transparent;
  color: var(--grey);
  border-color: var(--grey);
}
.btn-full-grey.focus, .btn-full-grey:focus {
  box-shadow: 0 0 0 0.2rem rgba(62, 62, 62, .25);
}

.btn-full-azzurro {
  border: 1px solid var(--azzurro);
  background: var(--azzurro);
  border-radius: 0;
  color: #fff;
  font-size: 18px;
  padding: 0.75rem 1.75rem;
  -webkit-transition: color 0.25s, background 0.25s, border-color 0.25s;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}
.btn-full-azzurro:hover,
.btn-full-azzurro:focus,
.btn-full-azzurro:active {
  background: transparent;
  color: var(--azzurro);
  border-color: var(--azzurro);
}
.btn-full-azzurro.focus, .btn-full-azzurro:focus {
  box-shadow: 0 0 0 0.2rem rgba(28, 172, 217, .25);
}
.link-main:hover {
  color: var(--main);
}
.link-main:hover .border{
  border-color: var(--main) !important;
}
.link-icon-beat:hover i {
  -webkit-animation-name: fa-beat;
          animation-name: fa-beat;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
          animation-timing-function: var(--fa-animation-timing, ease-in-out); }
}
/* BUTTONS */

/* TABLES */
.table-custom table {
  --bs-table-color: var(--bs-body-color);
  --bs-table-bg: transparent;
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-body-color);
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: var(--bs-body-color);
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: var(--bs-body-color);
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: var(--bs-table-color);
  vertical-align: top;
  border-color: var(--bs-table-border-color);
  border: none !important;
}
.table-custom table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table-custom table > tbody {
  vertical-align: inherit;
}
.table-custom table > thead {
  vertical-align: bottom;
}

.table-custom table {
  --bs-table-color: var(--bs-body-color);
  --bs-table-bg: transparent;
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-body-color);
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: var(--bs-body-color);
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: var(--bs-body-color);
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100% !important;
  margin-bottom: 1rem;
  color: var(--bs-table-color);
  vertical-align: top;
  border-color: var(--bs-table-border-color);
  border: none !important;
}
.table-responsive table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-custom table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table-custom table > tbody {
  vertical-align: inherit;
}
.table-custom table > thead {
  vertical-align: bottom;
}
.table-custom table thead th {
  padding-bottom: 1.5rem !important;
}

.table-custom thead th {
  padding-bottom: 1.5rem!important;
  border-bottom: 0;
}
.table-custom thead {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}
.table-custom.table-border-white td {
  border-color: white!important;
}
.table-custom.table-border-main td {
  border-color: var(--main)important;
}
.table-sm table > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}
#elenco_corsi #corsi_wrapper .row:first-child {
  padding-bottom: 2.5rem;
  align-items: center;
}
#elenco_corsi #corsi_wrapper .form-control { 
  min-height:auto;
  max-width: 50%;
}
#elenco_corsi #corsi_wrapper thead th::before {
  bottom: 50%;
}
#elenco_corsi #corsi_wrapper thead th::after {
  bottom: 50%;
}
#elenco_corsi #corsi_wrapper thead th::before,
#elenco_corsi #corsi_wrapper thead th::after {
  transform: translateY(-50%);
}
/* TABLES */

/* STILE FORM */
.form-control::-webkit-input-placeholder {
  color: var(--main);
}
.form-control::-moz-placeholder {
  color: var(--main);
}
.form-control:-ms-input-placeholder {
  color: var(--main);
}
.form-control::-ms-input-placeholder {
  color: var(--main);
}
.form-control::placeholder {
  color: var(--main);
}
.form-control {
  border-radius: 0;
  font-size: 16px;
  min-height: 50px;
  color: var(--main);
  border-color: var(--azzurro);
}
.form-white .form-control { border-color: var(--beige); }
.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2300427E' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  color: var(--main);
  background-color: var(--azzurro);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
}
.form-white .form-select {
  background-color: #fff;
}
.form-white .form-control { border-color: var(--beige); }
textarea.form-control {
  height: 50px;
}
.form-control:not(.form-select) {
  background: var(--azzurro);
}
.form-white .form-control:not(.form-select) { background: #fff; }
.form-control:focus, .form-control:active {
  background: #fff;
}
.form-control:focus, .form-control:active, .form-select:focus {
  color: var(--main);
  border-color: var(--orange);
  box-shadow: 0 0 0 0.25rem rgba(var(--orange-rgb), 0.25);
}
.form-check-input {
  --bs-form-check-bg: var(--azzurro);
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  border: var(--bs-border-width) solid var(--azzurro);
}
.form-white .form-check-input {
  --bs-form-check-bg: #fff;
  border: var(--bs-border-width) solid var(--beige);
}
.form-check-input:checked[type=checkbox] {
  border: var(--bs-border-width) solid var(--azzurro);
  background-color: var(--bs-form-check-bg);
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%2300427E' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-white .form-check-input:checked[type=checkbox] { border: var(--bs-border-width) solid #fff; }
.form-check-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 0.25rem rgba(var(--orange-rgb), 0.25);
}
.form-check-primary .custom-control-input:checked~.custom-control-label::before,
.form-check.form-check-primary .form-check-input:checked {
  background-color: #71b6f9!important;
  border-color: #71b6f9!important;
}
.form-check-info .custom-control-input:checked~.custom-control-label::before,
.form-check.form-check-info .form-check-input:checked {
  background-color: #35b8e0!important;
  border-color: #35b8e0!important;
}
.form-check-orange .custom-control-input:checked~.custom-control-label::before,
.form-check.form-check-orange .form-check-input:checked {
  background-color: var(--orange)!important;
  border-color: var(--orange)!important;
}
.form-check-orange .custom-control-input:focus~.custom-control-label::before,
.form-check.form-check-orange .form-check-input:focus  {
  border-color: var(--orange)!important;
  box-shadow: 0 0 0 0.2rem rgba(229, 68, 34, .25);
}
.form-check, .custom-checkbox {
  text-align: left;
}
.form-check label, .custom-checkbox label,
.custom-control-label, .form-check-label {
  font-weight: normal;
  font-size: 16px;
}
.form-check label a, .custom-checkbox label a {
  color: inherit;
  text-decoration: underline;
}

.form-check label a:hover, .custom-checkbox label a:hover,
.form-check label a:focus, .custom-checkbox label a:focus,
.form-check label a:active, .custom-checkbox label a:active{
  color: #71b6f9;
}
.custom-file-btn input[type="file"] {
  display: none;
}
.custom-file-btn .custom-file-label-btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem;
  min-height: 50px;
  padding: 0.875rem 1.75rem;
  cursor: pointer;
}
.min-h-textarea textarea {min-height: 150px !important;}
/* FINE STILE FORM */

/* SLIDER */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiperFade .swiper-slide:not(.swiper-slide-active) {
  opacity: 0!important;
}
.swiperFade .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid var(--orange);
  background: transparent;
  opacity: 1;
}
.swiperFade .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--orange);
}
.swiperRecensioni .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid var(--main);
  background: transparent;
  opacity: 1;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap,15px);
}
.swiperRecensioni .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--main);
}
.swiper-pagination-servizi {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-pagination-servizi  .swiper-pagination-bullet {
  width: 10px!important;
  height: 10px!important;
  border: 1px solid #00427E!important;
  background: transparent!important;
  opacity: 1!important;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 5px)!important
}

.swiper-pagination-servizi  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #00427E !important
}
.swiper-pagination-home {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-pagination-home  .swiper-pagination-bullet {
  width: 10px!important;
  height: 10px!important;
  border: 1px solid #00427E!important;
  background: transparent!important;
  opacity: 1!important;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 5px)!important
}

.swiper-pagination-home  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #00427E !important
}
.mySwiper .swiper-slide:not(.swiper-slide-active) {
  backface-visibility: hidden !important;
  opacity: 0 !important;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
  }
}

.swiper-slide .box-item {
    display: none;
}

.swiper-slide .box-item.active {
  display: block;
}

.box-item.active p{
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  
}
.box-item.active p:not(.fs-3) {
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
}
/*
.mySwiper .swiper-slide-active {
  width: auto !important;
  max-width: 100%;
}
.mySwiper .swiper-slide-active > div { width: 660px; margin-left: calc(-50% - 60px); }
.mySwiper .swiper-slide:not(.swiper-slide-active) p {
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
  height: 0;
  margin:0;
}
.mySwiper .swiper-slide:not(.swiper-slide-active) .rounded-circle {
  position: absolute;
}
.mySwiper .swiper-slide .rounded-circle {
  width: 88px;
  height: 88px;
  top: 2rem;
  left: 0;
  animation: floating 10s linear infinite alternate-reverse both;
}
.mySwiper .swiper-slide-active .rounded-circle {
  width: 226px;
  height: 226px;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  margin: auto;
  animation: none;
}
.mySwiper .swiper-slide-prev .rounded-circle {
  width: 108px;
  height: 108px;
  left: auto;
  top: 5rem;
}
.mySwiper .swiper-slide-next .rounded-circle {
  width: 150px;
  height: 150px;
  left: auto;
  top: 3rem;
}
.mySwiper .swiper-slide * {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.mySwiper .swiper-slide p {
  -webkit-transition: height 0.10s ease-in-out;
  -moz-transition: height 0.10s ease-in-out;
  -o-transition: height 0.10s ease-in-out;
  -ms-transition: height 0.10s ease-in-out;
  transition: height 0.10s ease-in-out;
}*/
.mySwiper .swiper-slide {
  height: auto;
}
.slider-dx .swiper-button-next, .slider-dx .swiper-button-prev {
  top: auto;
  bottom: -1.75rem;
}
.slider-dx .swiper-button-next {
  left: 100px;
}
.slider-dx .swiper-button-prev {
  left: 0;
}

.swiper-button-next,
.swiper-button-prev {
color: var(--main);

}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  color: var(--main);
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
}
.swiper-button-next::after {
  content: '\f061';
}
.swiper-button-prev::after {
  content: '\f060';
}
/* SLIDER */

/* CLASSI GENERALI */
.wrap-img {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.wrap-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.icon-absolute {
  position: absolute;
  transform: translate(-50%,-50%);
}
.icon-1 {
  top: 7%;
  left: -3%;
}
.icon-2 {
  top: 15%;
  left: -10%;
}
.icon-3 {
  width: 91px;
  height: 91px;
  top: 50%;
  left: 105%;
}
.icon-4 {
  width: 185px;
  height: 185px;
  top: 70%;
  left: 100%;
}
.icon-5 {
  top: 80%;
  left: 2%;
}
.icon-6 {
  top: 40%;
  left: -7%;
}
.icon-7 {
  top: 75%;
  left: -20%;
}
.icon-8 {
  width: 310px;
  height: 310px;
  top: 50%;
  left: 115%;
}

.progress-circle {
  width: 150px;
  height: 150px;
  background: none;
  position: relative;
  --bs-progress-bg: var(--main);
  overflow: inherit;
}

.progress-circle::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5rem solid var(--bs-progress-bg);
  position: absolute;
  top: 0;
  left: 0;
}
.progress-circle>span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.progress-circle .progress-left {
  left: 0;
  transform: scale(1.10);
}

.progress-circle .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: .75rem;
  border-style: solid;
  position: absolute;
  top: 0;
}

.progress-circle .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.progress-circle .progress-right {
  right: 0;
      transform: scale(1.10);
}

.progress-circle .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.progress-circle .progress-value {
  position: absolute;
  top: 0;
  left: 0;
}
.box-hov-orange, .rounded-icon {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  position: relative;
}
.rounded-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-hov-orange:hover {
  background: var(--orange);
}
.box-hov-orange:hover .rounded-icon {
  background: #fff !important;
}
.icon-baloon {position: relative;}
.icon-baloon::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 1px;
  background: var(--main);
}
.icon-baloon::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background: rgba(var(--orange-rgb), .22) url('../img/svg/ellisse.svg') no-repeat center;
  background-size: 70%;
}

.p-first p:first-child {
  font-weight: bold;
}
.show-p-first p:not(:first-child) { display: none !important }
.nav-pills .row:not(.active) i,
.nav-pills .row:not(.active) .rounded-circle {
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
}
.nav-pills .row:not(.active) .rounded-circle {
  height: 0!important;
  width: 0!important;
  margin-bottom: 0 !important;
}
.nav-pills .row:not(.active) .text-orange {
  color: var(--main) !important;
  margin: 0 !important;
}
.nav-pills .row { cursor: pointer; }
.nav-pills .row * {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.parent-box {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background: #fff;
  color: var(--main);
  height: 46px;
  right: 0;
  overflow: hidden;
  cursor: pointer;
}
.child-box {
  display: block;
  font-size: 14px;
  width: 0;
  opacity: 0;
  padding-right: 0;
  white-space: nowrap;
  transition: width .35s ease-in-out, padding-right .3s ease-in-out, opacity .25s ease-in-out;
}
.parent-box.active .child-box,
.parent-box:hover .child-box,
.parent-box:active .child-box,
.parent-box:focus .child-box {
  width: 100%;
  opacity: 1;
  padding-right: 1rem;
}
.percent-strong > strong,
.percent-strong > b {
  display: block;
  font-weight: lighter !important;
  font-size: 27px;
}
.bull-after::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--main);
}
#accordionFaq .accordion-item .accordion-button { color: var(--main) !important;}
#accordionFaq .accordion-button::after {
  width: 30px;
  height: 30px;
  margin-top: -3rem;
  margin-right: -2rem;
  background: url('../img/svg/plus.svg') no-repeat center;
  background-size: contain;
}
#accordionFaq .accordion-button:not(.collapsed)::after {
  background: url('../img/svg/minus.svg') no-repeat center;
  background-size: contain;
}

#accordionFaq .accordion-item { background:transparent; color: var(--main) !important;}
#accordionFaq .accordion-item, #accordionFaq .accordion-header {
  border-radius: 0 !important;
  border: 0 !important;
}
#accordionFaq .accordion-button {
  background: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
}

.item-post .card { z-index:0 }
.item-post .card .hover-cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(229, 241, 252, .86);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}
.item-post .card:hover .hover-cover {
  opacity: 1;
}
.item-post .card .stretched-link::after {
  z-index: 1;
}

.pagination {
  --bs-pagination-color: var(--main);
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-color: var(--azzurro);
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: var(--azzurro);
  --bs-pagination-hover-border-color: var(--azzurro);
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: var(--azzurro);
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: var(--main);
  --bs-pagination-active-border-color: var(--main);
  --bs-pagination-disabled-color: var(--bs-secondary-color);
  --bs-pagination-disabled-bg: var(--azzurro);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
}
.modal-landing {}
.modal-landing .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
}
.modal-landing .btn-close {
  font-size: 40px;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23FFF'%3e%3cpath d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z'/%3e%3c/svg%3e");
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  border-radius: 50%;
  padding: 0;
}
.modal-landing .btn {
  position: relative;
  z-index: 0;
  margin-right: 65px;
}
.modal-landing .btn::after {
  content: '';
  width: 90px;
  height: 90px;
  background: url('../img/svg/arrow_btn.svg') center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -65px;
  z-index: -1;
}
.decor-mod-1,
.decor-mod-2,
.decor-mod-3 {
  position: absolute;
  transform: translate(-50%, -50%);

}
.decor-mod-1 {
  top: 15%;
  left: 45%;
  width: 195px;
}
.decor-mod-2 {
  top: 60%;
  right: -6%;
  width: 70px;
}
.decor-mod-3 {
  bottom: 3%;
  left: 50%;
  width: 100px;
}
.modal-backdrop {
  --bs-backdrop-opacity: 0.88;
  --bs-backdrop-bg: #fff;
}

/*.custom-form input,
.custom-form textarea {
   background: white !important;
   border: 1px solid #00427E;
}

@media (max-width: 768px) {
  .custom-form input {
      width: 100% !important
  }
}*/