/*-----------------------------------------------------------------------------------
	Borgia di Firenze
	About: Borgia di Firenze
	Author: Luca (fiverr)
	Version: 1.0
	Built with Blocs
-----------------------------------------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  background: var(--swatch-var-347);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.page-container {
  overflow: hidden;
} /* Prevents unwanted scroll space when scroll FX used. */
a,
button {
  transition: background 0.3s ease-in-out;
  outline: none !important;
} /* Prevent blue selection glow on Chrome and Safari */
a:hover {
  text-decoration: none;
  cursor: pointer;
}
.scroll-fx-lock-init {
  position: fixed !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
} /* ScrollFX Lock */
.blocs-grid-container {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.5rem;
  row-gap: 1.5rem;
} /* CSS Grid */
nav .dropdown-menu .nav-link {
  color: rgba(0, 0, 0, 0.6) !important;
} /* Maintain Downdown Menu Link Color in Navigation */
[data-bs-theme="dark"] nav .dropdown-menu .nav-link {
  color: var(--bs-dropdown-link-color) !important;
} /* Maintain Downdown Menu Link Color in Navigation in Darkmode */

/* Preloader */

.page-preloader {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 100000;
  background: #ffffff url("img/pageload-spinner.gif") no-repeat center center;
  animation-name: preloader-fade;
  animation-delay: 2s;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}
.preloader-complete {
  animation-delay: 0.1s;
}
@keyframes preloader-fade {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* = Web Fonts
-------------------------------------------------------------- */

@font-face {
  font-family: "Lato-Regular";
  src: url("./fonts/Lato-Regular/lato-v14-latin-regular.woff");
  src: url("./fonts/Lato-Regular/lato-v14-latin-regular.woff") format("woff"),
    url("./fonts/Lato-Regular/lato-v14-latin-regular.eot?#iefix") format("embedded-opentype"),
    url("./fonts/Lato-Regular/lato-v14-latin-regular.ttf") format("truetype"),
    url("./fonts/Lato-Regular/lato-v14-latin-regular.svg#Lato-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato-Bold";
  src: url("./fonts/Lato-Bold/lato-v14-latin-700.woff");
  src: url("./fonts/Lato-Bold/lato-v14-latin-700.woff") format("woff"),
    url("./fonts/Lato-Bold/lato-v14-latin-700.eot?#iefix") format("embedded-opentype"),
    url("./fonts/Lato-Bold/lato-v14-latin-700.ttf") format("truetype"),
    url("./fonts/Lato-Bold/lato-v14-latin-700.svg#Lato-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Baskervville-Regular";
  src: url("./fonts/Baskervville-Regular/Baskervville-Regular.ttf");
  src: url("./fonts/Baskervville-Regular/Baskervville-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Baskervville-Italic";
  src: url("./fonts/Baskervville-Italic/Baskervville-Italic.ttf");
  src: url("./fonts/Baskervville-Italic/Baskervville-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter-Regular";
  src: url("./fonts/Inter-Regular/Inter-Regular.woff");
  src: url("./fonts/Inter-Regular/Inter-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* = Blocs
-------------------------------------------------------------- */

.bloc {
  width: 100%;
  clear: both;
  background: 50% 50% no-repeat;
  padding: 0 20px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
  display: flex;
}
.bloc .container {
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

/* Sizes */

.bloc-lg {
  padding: 100px 20px;
}
.bloc-md {
  padding: 50px 20px;
}
.bloc-sm {
  padding: 20px;
}

/* = Full Screen Blocs 
-------------------------------------------------------------- */

.bloc-fill-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  padding-bottom: 20px;
}
.bloc-fill-screen > .container {
  align-self: flex-middle;
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
}
.bloc-fill-screen > .container > .row {
  flex-grow: 1;
  align-self: center;
  width: 100%;
}
.bloc-fill-screen .fill-bloc-top-edge,
.bloc-fill-screen .fill-bloc-bottom-edge {
  flex-grow: 0;
}
.bloc-fill-screen .fill-bloc-top-edge {
  align-self: flex-start;
}
.bloc-fill-screen .fill-bloc-bottom-edge {
  align-self: flex-end;
}

/* = Full Width Blocs 
-------------------------------------------------------------- */

.full-width-bloc {
  padding-left: 0;
  padding-right: 0;
}
.full-width-bloc .row {
  margin-left: 0;
  margin-right: 0;
}
.full-width-bloc .container {
  width: 100%;
  max-width: 100% !important;
}
.full-width-bloc .carousel img {
  width: 100%;
  height: auto;
}

/* Bloc Mask */

.bloc-bg-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  display: flex;
  pointer-events: none;
  align-items: flex-start;
}
.svg-mask {
  width: 100%;
  height: 100%;
  fill-rule: evenodd;
  fill: #000000;
}

/* Background Styles */

.bg-center,
.bg-l-edge,
.bg-r-edge,
.bg-t-edge,
.bg-b-edge,
.bg-tl-edge,
.bg-bl-edge,
.bg-tr-edge,
.bg-br-edge,
.bg-repeat {
  -webkit-background-size: auto !important;
  -moz-background-size: auto !important;
  -o-background-size: auto !important;
  background-size: auto !important;
}

/* Video Background Styles */

.video-bg-container,
.bloc-video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: -50%;
  overflow: hidden;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.bloc-video,
.video-bg-container iframe {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  z-index: 0;
}

/* Background Textures */

.bloc-bg-texture::before {
  content: "";
  background-size: 2px 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.texture-darken::before {
  background: rgba(0, 0, 0, 0.5);
}

/* Background Effects */

.parallax__container {
  clip: rect(0, auto, auto, 0);
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.parallax {
  position: fixed;
  top: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Dark theme */

.d-bloc {
  color: rgba(255, 255, 255, 0.7);
}
.d-bloc button:hover {
  color: rgba(255, 255, 255, 0.9);
}
.d-bloc .icon-round,
.d-bloc .icon-square,
.d-bloc .icon-rounded,
.d-bloc .icon-semi-rounded-a,
.d-bloc .icon-semi-rounded-b {
  border-color: rgba(255, 255, 255, 0.9);
}
.d-bloc .divider-h span {
  border-color: rgba(255, 255, 255, 0.2);
}
.d-bloc .a-btn,
.d-bloc .navbar a,
.d-bloc a .icon-sm,
.d-bloc a .icon-md,
.d-bloc a .icon-lg,
.d-bloc a .icon-xl,
.d-bloc h1 a,
.d-bloc h2 a,
.d-bloc h3 a,
.d-bloc h4 a,
.d-bloc h5 a,
.d-bloc h6 a,
.d-bloc p a {
  color: rgba(255, 255, 255, 0.6);
}
.d-bloc .a-btn:hover,
.d-bloc .navbar a:hover,
.d-bloc a:hover .icon-sm,
.d-bloc a:hover .icon-md,
.d-bloc a:hover .icon-lg,
.d-bloc a:hover .icon-xl,
.d-bloc h1 a:hover,
.d-bloc h2 a:hover,
.d-bloc h3 a:hover,
.d-bloc h4 a:hover,
.d-bloc h5 a:hover,
.d-bloc h6 a:hover,
.d-bloc p a:hover {
  color: rgba(255, 255, 255, 1);
}
.d-bloc .navbar-toggle .icon-bar {
  background: rgba(255, 255, 255, 1);
}
.d-bloc .btn-wire,
.d-bloc .btn-wire:hover {
  color: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 1);
}
.d-bloc .card {
  color: rgba(0, 0, 0, 0.5);
}
.d-bloc .card button:hover {
  color: rgba(0, 0, 0, 0.7);
}
.d-bloc .card icon {
  border-color: rgba(0, 0, 0, 0.7);
}
.d-bloc .card .divider-h span {
  border-color: rgba(0, 0, 0, 0.1);
}
.d-bloc .card .a-btn {
  color: rgba(0, 0, 0, 0.6);
}
.d-bloc .card .a-btn:hover {
  color: rgba(0, 0, 0, 1);
}
.d-bloc .card .btn-wire,
.d-bloc .card .btn-wire:hover {
  color: rgba(0, 0, 0, 0.7);
  border-color: rgba(0, 0, 0, 0.3);
}

/* Light theme */

.d-bloc .card,
.l-bloc {
  color: rgba(0, 0, 0, 0.5);
}
.d-bloc .card button:hover,
.l-bloc button:hover {
  color: rgba(0, 0, 0, 0.7);
}
.l-bloc .icon-round,
.l-bloc .icon-square,
.l-bloc .icon-rounded,
.l-bloc .icon-semi-rounded-a,
.l-bloc .icon-semi-rounded-b {
  border-color: rgba(0, 0, 0, 0.7);
}
.d-bloc .card .divider-h span,
.l-bloc .divider-h span {
  border-color: rgba(0, 0, 0, 0.1);
}
.d-bloc .card .a-btn,
.l-bloc .a-btn,
.l-bloc .navbar a,
.l-bloc a .icon-sm,
.l-bloc a .icon-md,
.l-bloc a .icon-lg,
.l-bloc a .icon-xl,
.l-bloc h1 a,
.l-bloc h2 a,
.l-bloc h3 a,
.l-bloc h4 a,
.l-bloc h5 a,
.l-bloc h6 a,
.l-bloc p a {
  color: rgba(0, 0, 0, 0.6);
}
.d-bloc .card .a-btn:hover,
.l-bloc .a-btn:hover,
.l-bloc .navbar a:hover,
.l-bloc a:hover .icon-sm,
.l-bloc a:hover .icon-md,
.l-bloc a:hover .icon-lg,
.l-bloc a:hover .icon-xl,
.l-bloc h1 a:hover,
.l-bloc h2 a:hover,
.l-bloc h3 a:hover,
.l-bloc h4 a:hover,
.l-bloc h5 a:hover,
.l-bloc h6 a:hover,
.l-bloc p a:hover {
  color: rgba(0, 0, 0, 1);
}
.l-bloc .navbar-toggle .icon-bar {
  color: rgba(0, 0, 0, 0.6);
}
.d-bloc .card .btn-wire,
.d-bloc .card .btn-wire:hover,
.l-bloc .btn-wire,
.l-bloc .btn-wire:hover {
  color: rgba(0, 0, 0, 0.7);
  border-color: rgba(0, 0, 0, 0.3);
}

/* Row Margin Offsets */

.voffset {
  margin-top: 30px;
}
.voffset-md {
  margin-top: 50px;
}
.voffset-lg {
  margin-top: 80px;
}

/* = NavBar
-------------------------------------------------------------- */

/* Navbar Icon */
.svg-menu-icon {
  fill: none;
  stroke: rgba(0, 0, 0, 0.5);
  stroke-width: 2px;
  fill-rule: evenodd;
}
.navbar-dark .svg-menu-icon {
  stroke: rgba(255, 255, 255, 0.5);
}
.menu-icon-thin-bars {
  stroke-width: 1px;
}
.menu-icon-thick-bars {
  stroke-width: 5px;
}
.menu-icon-rounded-bars {
  stroke-width: 3px;
  stroke-linecap: round;
}
.menu-icon-filled {
  fill: rgba(0, 0, 0, 0.5);
  stroke-width: 0px;
}
.navbar-dark .menu-icon-filled {
  fill: rgba(255, 255, 255, 0.5);
}
.navbar-toggler-icon {
  background: none !important;
  pointer-events: none;
  width: 33px;
  height: 33px;
}

/* Nav Special Classes */
.nav-special {
  overflow-y: scroll;
}
.nav-special .site-navigation {
  top: 0;
  left: 0;
  width: 100%;
  position: relative !important;
  max-width: 100% !important;
  z-index: 1000;
}
.nav-special .nav > li {
  width: 100%;
  background: none !important;
  border: 0 !important;
}
.nav-special.collapsing {
  -webkit-transition: none;
  transition: none;
  height: 100% !important;
  background: none !important;
}
.nav-special .navbar-nav .dropdown-menu.show {
  position: relative !important;
  transform: none !important;
  float: none;
  width: 100%;
  margin-top: 0;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
}
.nav-special .nav .dropdown-menu .nav-link {
  color: #fff;
}
.blocsapp-special-menu {
  position: absolute;
  z-index: 10000;
}
.nav-special.fullscreen-nav .caret,
.nav-special.fullscreen-nav .dropdown-menu .dropdown .caret {
  border-width: 8px;
}
.nav-special .navbar-nav .show > .nav-link {
  color: #fff;
}

/* Animate Menu Symbol */
.navbar-toggle {
  transition: all 0.1s linear;
}
.selected-nav {
  opacity: 0;
  transform: scale(0.3);
  transition: all 0.1s linear;
}

/* Special Menu Close Button */
.close-special-menu {
  position: absolute;
  display: block;
  width: 25px;
  height: 25px;
  top: 16px;
  right: 10px;
  z-index: 10000;
}
.nav-invert .sidebar-nav .close-special-menu {
  left: 260px;
}
.close-special-menu .close-icon {
  display: block;
  width: 100%;
  height: 1px;
  transform: rotate(45deg);
  margin-top: 12px;
}
.close-special-menu .close-icon:after {
  content: "";
  display: inherit;
  width: inherit;
  height: inherit;
  background: inherit;
  transform: rotate(90deg);
}
.lock-scroll {
  overflow: hidden;
  transition: background 0.3s linear;
}
.nav-special::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 0;
  height: 0;
}
.nav-special .dropdown-menu .dropdown .caret {
  border-top-color: rgba(255, 255, 255, 0.8);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  margin: 0 0 0 5px;
  float: none;
}
.blocsapp-special-menu .site-navigation.pull-right {
  float: none !important;
}

/* Nav Special Close Button */
.close-special-menu .close-icon {
  background: #fff;
}
.blocsapp-special-menu blocsnav {
  background: #000;
}

/* Full Screen Navigation */
.nav-special.fullscreen-nav {
  width: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  z-index: 1000;
  position: fixed;
  transition: all 0.2s linear;
}
.nav-special.fullscreen-nav.open-up {
  transform: translateY(1000px);
}
.nav-special.fullscreen-nav.open-down {
  transform: translateY(-1000px);
}
.nav-special.fullscreen-nav.open-left {
  transform: translateX(-1000px);
}
.nav-special.fullscreen-nav.open-right {
  transform: translateX(1000px);
}
.nav-special.fullscreen-nav .nav > li a,
.nav-special.fullscreen-nav .nav .dropdown-menu > li > a {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 28px;
}
.nav-special.fullscreen-nav .nav > li a:hover {
  color: #fff;
}
.open.nav-special.fullscreen-nav {
  opacity: 1;
  transition: all 0.2s linear;
}
.nav-special.fullscreen-nav .site-navigation {
  text-align: center;
  margin-top: 10% !important;
}
.nav-special.fullscreen-nav .close-special-menu {
  right: 20px;
}
.open.nav-special.fullscreen-nav.open-left,
.open.nav-special.fullscreen-nav.open-right,
.open.nav-special.fullscreen-nav.open-down,
.open.nav-special.fullscreen-nav.open-up {
  transform: translateY(0);
}
/* Handle Multi Level Navigation */
.dropdown-menu .dropdown-menu {
  border: none;
}
@media (min-width: 576px) {
  .navbar-expand-sm .dropdown-menu .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.15);
    position: absolute;
    left: 100%;
    top: -7px;
  }
  .navbar-expand-sm .dropdown-menu .submenu-left {
    right: 100%;
    left: auto;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md .dropdown-menu .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.15);
    position: absolute;
    left: 100%;
    top: -7px;
  }
  .navbar-expand-md .dropdown-menu .submenu-left {
    right: 100%;
    left: auto;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg .dropdown-menu .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.15);
    position: absolute;
    left: 100%;
    top: -7px;
  }
  .navbar-expand-lg .dropdown-menu .submenu-left {
    right: 100%;
    left: auto;
  }
}
/* = Bric adjustment margins
-------------------------------------------------------------- */

.mg-clear {
  margin: 0;
}
.mg-sm {
  margin-top: 10px;
  margin-bottom: 5px;
}
.mg-md {
  margin-top: 10px;
  margin-bottom: 20px;
}
.mg-lg {
  margin-top: 10px;
  margin-bottom: 40px;
}

/* = Buttons
-------------------------------------------------------------- */

.btn-d,
.btn-d:hover,
.btn-d:focus {
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
}

/* Prevent ugly blue glow on chrome and safari */
button {
  outline: none !important;
}

.btn-sq {
  border-radius: 0px;
}
.btn-clean {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 0 rgba(0, 0, 1, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 1, 0.25), inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
}
.btn-style-none,
.btn-style-none:hover,
.btn-style-none:active,
.btn-style-none:focus {
  background: none;
  box-shadow: none;
  padding: 0;
}
.icon-spacer {
  margin-right: 5px;
}

/* = Icons
-------------------------------------------------------------- */
.icon-md {
  font-size: 30px !important;
}

/* = Cards
-------------------------------------------------------------- */
.card-sq,
.card-sq .card-header,
.card-sq .card-footer {
  border-radius: 0;
}
.card-rd {
  border-radius: 30px;
}
.card-rd .card-header {
  border-radius: 29px 29px 0 0;
}
.card-rd .card-footer {
  border-radius: 0 0 29px 29px;
}
/* = Masonary
-------------------------------------------------------------- */
.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}
/* = Classic Dividers
-------------------------------------------------------------- */
.divider-h {
  min-height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 20px 0;
}
.divider-half {
  width: 50%;
}
.dropdown-menu .divider-h {
  margin: 0;
}

/* = Forms
-------------------------------------------------------------- */

.form-control {
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: none;
}

.carousel-nav-icon {
  fill: none;
  stroke: #fff;
  stroke-width: 2px;
  fill-rule: evenodd;
  stroke-linecap: round;
}

.carousel-caption-center {
  top: 50%;
  bottom: initial;
  transform: translateY(-50%);
}

.carousel-indicators li::marker {
  font-size: 0;
}
/* Scroll FX */
.scroll-fx-in-range {
  will-change: opacity;
}
/* = Lightbox
-------------------------------------------------------------- */

a[data-lightbox] {
  position: relative;
  display: block;
  text-align: center;
}
a[data-lightbox]:hover::before {
  content: "+";
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial;
  font-size: 32px;
  line-height: 42px;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 100;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
a[data-lightbox]:hover img {
  opacity: 0.6;
  -webkit-animation-fill-mode: none;
  animation-fill-mode: none;
}
.lightbox-caption {
  padding: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0px;
}
.close-lightbox:hover,
.next-lightbox:hover,
.prev-lightbox:hover {
  background: rgba(0, 0, 0, 0.5);
}
.next-lightbox,
.prev-lightbox,
.close-lightbox {
  position: absolute;
  padding: 6px;
  background: rgba(0, 0, 0, 0.3);
  line-height: 0;
  transition: background 0.2s ease-in-out;
  border-radius: 0.25rem;
  border: none;
  z-index: 20;
}
.next-lightbox,
.prev-lightbox {
  top: 45%;
}
.close-lightbox {
  top: 20px;
  right: 20px;
}
.next-lightbox {
  right: 25px;
}
.prev-lightbox {
  left: 25px;
}
.lightbox-prev-icon,
.lightbox-next-icon,
.lightbox-close-icon {
  fill: none;
  stroke: #fff;
  stroke-width: 3px;
  fill-rule: evenodd;
  stroke-linecap: round;
}
.lightbox-close-svg {
  pointer-events: none;
}

/* Full Screen */
.fullscreen-lb {
  background: #000;
  border-radius: 0;
}
.fullscreen-lb .modal-body {
  padding: 0;
}
.fullscreen-lb .lightbox-caption {
  left: 0;
  right: 0;
  bottom: -16px;
  text-align: center;
}
.fullscreen-modal {
  background: #000;
}
.fullscreen-modal .modal-dialog {
  width: 100% !important;
  max-width: 95% !important;
}

/* Modal Full Screen Close Button */
.close-full-screen-modal {
  position: fixed;
  display: block;
  width: 25px;
  height: 25px;
  top: 16px;
  right: 10px;
  z-index: 10000;
}
.close-full-screen-modal .close-icon {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: 12px;
}
.close-full-screen-modal .close-icon {
  height: 2px;
}
.close-full-screen-modal .close-icon:after {
  content: "";
  display: inherit;
  width: inherit;
  height: inherit;
  background: inherit;
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.close-full-screen-modal {
  right: 20px;
}

/* = Custom Styling
-------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6,
p,
label,
.btn,
a {
  font-family: "Baskervville-Regular";
}
.container {
  max-width: 1140px;
}
.fixed {
  background-color: transparent;
}
h3 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: "Baskervville-Regular";
}
h1 {
  font-family: "Baskervville-Regular";
  font-size: 84px;
}
h2 {
  font-family: "Baskervville-Regular";
  font-size: 59px;
}
.overflow {
  overflow: hidden;
  position: relative;
}
.hero::before {
  background-size: cover;
  content: "";
  position: absolute;
  overflow: hidden;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-position: center center;
  background-image: url("img/preview-6.jpeg");
}
.hero {
  overflow: hidden;
}
.row-position {
  min-height: 800px;
}
.img {
  position: relative;
  top: -80px;
  left: 80px;
  width: 80%;
}
p {
  font-family: "Lato-Regular";
  font-size: 19px;
}
.box {
  width: 100%;
  background-color: #e8ebf1;
  padding-bottom: 50px;
}
.box-price {
  width: 60%;
  position: relative;
  margin-left: 20%;
  margin-right: 20%;
  top: -23px;
  background-color: #1a252c;
  display: flex;
  font-family: "Lato-Regular";
  font-size: 12px;
  align-items: center;
  justify-content: center;
  padding: 12px 12px 12px 12px;
  border-radius: 100px 100px 100px 100px;
}
h4 {
  font-family: "Baskervville-Regular";
  font-size: 45px;
}
.text-span-color {
  color: #95762c;
}
.pricing {
  font-family: "Lato-Bold";
  font-size: 15px;
  color: #feffff !important;
}
.details {
  font-family: "Lato-Bold";
  font-size: 16px;
}
.icon {
  font-size: 26px;
  height: 30px;
}
.box-text {
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 40px;
}
.zoom {
  overflow: hidden;
}
.divider {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.btn-clean {
  text-shadow: 0px 0px 0px #000000;
  box-shadow: 0px 0px 0px #000000;
  background-color: #95762b;
  font-family: "Lato-Bold";
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  min-width: 140px;
  max-width: 160px;
  max-height: 50px;
  text-align: center;
  margin-top: 30px;
  color: #feffff !important;
  padding: 13px 25px 13px 25px;
  border-radius: 100px 100px 100px 100px;
}
.btn-clean:hover {
  text-shadow: 0px 0px 0px #000000;
  box-shadow: 0px 0px 0px #000000;
  background-color: #5b481b;
}
.btn-sq {
  color: #93742a !important;
  text-shadow: 0px 0px 0px transparent;
  font-size: 14px;
  letter-spacing: 3px;
  font-family: "Lato-Bold";
  text-transform: uppercase;
  border-style: solid;
  border-color: #826626 !important;
  box-shadow: 0px 0px 0px #000000;
  border-radius: 0px 0px 0px 0px;
  border-width: 0px 0px 1px 0px;
}
.btn-sq:hover {
  border-color: #1a252b !important;
  color: #1a252b !important;
  text-shadow: 0px 0px 0px transparent;
  box-shadow: 0px 0px 0px transparent;
}
.divider-background-color {
  background-color: rgba(254, 255, 255, 0.63);
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
h6 {
  font-family: "Baskervville-Regular";
  font-size: 35px;
}
.btn-white {
  background-color: #feffff;
  color: #93742a !important;
  border-style: solid;
  border-color: #feffff !important;
  font-family: "Lato-Bold";
}
.btn-white:hover {
  color: #feffff !important;
  background-color: var(--swatch-var-2697);
  border-color: #1a252b !important;
}
.hero1::before {
  background-size: cover;
  content: "";
  position: absolute;
  overflow: hidden;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-position: center center;
  background-blend-mode: darken;
  background-image: url("img/jonathan-korner-pRU-VnBVJMQ-unsplash.jpg");
}
.hero1 {
  overflow: hidden;
}
.img-size {
  width: 80%;
  margin: -80px auto 80px auto;
}
.text-column {
  margin-top: 80px;
  margin-bottom: 80px;
}
.awards {
  height: auto;
  width: auto;
  max-height: 90px;
  max-width: 190px;
  filter: grayscale(100%);
}
.awards:hover {
  filter: grayscale(0%);
}
.hero2::before {
  background-size: cover;
  content: "";
  position: absolute;
  overflow: hidden;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-position: center center;
  background-blend-mode: darken;
  background-image: url("img/22_AAB8957-HDR%20SD.jpg");
}
.hero2 {
  overflow: hidden;
  background-image: url("img/agatha-depine-furOLSUMz0Q-unsplash.jpg");
}
.hero3 {
  overflow: hidden;
}
.hero3::before {
  background-size: cover;
  content: "";
  position: absolute;
  overflow: hidden;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-position: center center;
  background-blend-mode: darken;
  background-image: url("img/quadro-2.jpeg");
}
.link-style {
  font-family: "PlayfairDisplay-Bold";
}
.hero4::before {
  background-size: cover;
  content: "";
  position: absolute;
  overflow: hidden;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-position: center center;
  background-blend-mode: darken;
  background-image: url("img/13_AAB8710%20SD.jpg");
}
.hero4 {
  overflow: hidden;
}
.navbar-nav li a {
  font-size: 15px;
  font-family: "Lato-Bold";
  color: var(--swatch-var-347) !important;
}
.formfield {
  border-style: solid;
  border-color: #000000 !important;
  font-family: "Lato-Regular";
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 50px 50px 50px 50px;
  border-width: 1px 1px 1px 1px;
}
a {
  font-family: "Lato-Regular";
  text-transform: none;
  text-decoration: none;
  color: #000000 !important;
}
.link-footer {
  color: #feffff !important;
}
.link-footer:hover {
  color: #000000 !important;
}
.link-footer-big {
  font-family: "PlayfairDisplay-Regular";
  color: #feffff !important;
}
.link-footer-big:hover {
  color: var(--swatch-var-3719) !important;
}
.nav-special.fullscreen-nav .nav > li a {
  font-size: 15px;
  font-family: "Lato-Regular";
}
.nav-special.fullscreen-nav .nav > li a:hover {
  color: #8a6d28 !important;
}
.nav-special.fullscreen-nav {
  border-radius: 0px 0px 0px 0px;
  border-width: 0px 0px 0px 0px;
  font-family: "Baskervville-Regular";
}
.navbar-nav li a:hover {
  color: #92732a !important;
}
.h1-style {
  font-family: "Baskervville-Regular";
}
.h3-style {
  font-family: "Baskervville-Italic";
  text-transform: none;
  font-size: 26px;
}
.absolute {
  position: absolute;
  top: -01px;
  left: 0px;
  right: 0px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.padding-none {
  padding: 0px 0px 0px 0px;
  height: 80vh;
}
.img-style {
  width: 100px;
}
.h2-style {
  font-family: "Baskervville-Italic";
}
.h5-style {
  font-family: "Inter-Regular";
}
.flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.services-svg {
  width: 35px;
}
.black-layer {
  background-color: rgba(0, 0, 0, 0.55);
}
.bloc-fill {
  fill: rgba(0, 0, 0, 0.53);
}
.navbar-logo {
  text-transform: none;
  text-decoration: none;
  font-size: 20px;
}
.logo-img {
  width: 50px;
}
.btn-nav {
  font-size: 10px;
  padding-bottom: 10px;
  padding-top: 10px;
  max-height: 38px;
  max-width: 100px;
}
.img-footer-style {
  width: 100px;
}
.footer-p-size {
  font-size: 16px;
}
.mini-subtitle {
  text-transform: uppercase;
}
.bold {
  font-family: "Roboto-Bold";
}
.mini-large-p {
  font-size: 1.3em;
}
.mini-carousel {
  padding-left: 80px;
  padding-right: 80px;
  position: relative;
}
.global-radius {
  width: 50%;
  border-radius: 20px 20px 20px 20px;
  margin: 0px 0px 0px 0px !important;
  background-size: cover;
  overflow: hidden;
  height: 250px;
  min-width: 50%;
}
.mini-carousel-arrow {
  width: 50px;
  height: 50px;
  border-radius: 100px 100px 100px 100px;
  margin-top: auto;
  margin-bottom: auto;
  border-width: 1px 1px 1px 1px;
  border-style: solid;
  border-color: var(--swatch-var-1266) !important;
}
.full-width {
  width: 100%;
}
.half-screen-content {
  max-width: 500px;
  margin: 100px auto 100px auto;
}
.button-primary {
  background-color: var(--swatch-var-779);
  color: #ffffff !important;
}
.button-primary:hover {
  background-color: var(--swatch-var-5545);
}
.white-button {
  border-width: 1px 1px 1px 1px;
  border-style: solid;
  background-color: var(--swatch-var-1266);
  color: var(--swatch-var-4497) !important;
  border-color: rgba(0, 0, 0, 0.28) !important;
}
.white-button:hover {
  background-color: var(--swatch-var-3131);
  color: var(--swatch-var-5803) !important;
  border-color: #000000 !important;
}
.features-content-column {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.mini-feature-scrolling-images {
  display: flex;
  width: 150vw;
  align-items: center;
  flex-direction: row;
  margin-left: -400px;
}
.h2-page-title-style {
  font-family: "Baskervville-Regular";
}
.mini-cta-mail-field {
  height: 50px;
  border-radius: 0px 0px 0px 0px;
  padding-left: 20px;
}
.mini-cta-white-button {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-small-p {
  font-size: 0.9em;
}
.hero5::before {
  background-size: cover;
  content: "";
  position: absolute;
  overflow: hidden;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-position: center center;
  background-blend-mode: darken;
  background-image: url("img/img-3.jpeg");
}
.hero5 {
  overflow: hidden;
}
.feat-card-icon {
  border-radius: 10px 10px 10px 10px;
  background-color: var(--swatch-var-1577);
  width: 140px;
}
.feat-card-icon-pos {
  position: absolute;
  left: 0px;
  right: 0px;
  top: -70px;
}
.feat-card {
  margin-bottom: 80px;
  padding: 10px 10px 10px 10px;
  border-radius: 20px 20px 20px 20px;
}
.h2-bloc-37-style {
  font-family: "Baskervville-Regular";
}
.mini-features-cards {
  text-align: center;
  padding: 50px 50px 50px 50px;
  box-shadow: 0px -0px 28px rgba(94, 94, 94, 0.14);
  width: 100%;
}
.black-button {
  color: #eaeaea !important;
  background-color: var(--swatch-var-4497);
  border-width: 1px 1px 1px 1px;
  border-style: solid;
  border-color: var(--swatch-var-4497) !important;
}
.black-button:hover {
  color: #feffff !important;
  background-color: #181818;
  border-color: #181818 !important;
}
.startup-bold {
  font-weight: bold;
}
.startup-team-card {
  padding-top: 7px;
  box-shadow: 4px 0px 14px rgba(0, 0, 0, 0.14);
  margin-top: 28px;
  margin-bottom: 28px;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 28px 28px 28px 28px;
  border-width: 0px 0px 0px 0px;
}
.startup-team-card:hover {
  box-shadow: 4px 0px 14px rgba(0, 0, 0, 0.28);
}
.startup-team-title {
  background-color: #feffff;
  margin-right: 14px;
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.14);
  font-size: 16px;
  font-weight: bold;
  color: #000000 !important;
  padding: 7px 14px 7px 14px;
  border-radius: 28px 28px 28px 28px;
}
.startup-wire-button {
  color: #212121 !important;
  padding-right: 28px;
  padding-left: 28px;
  font-size: 18px;
  line-height: 34px;
  font-weight: bold;
  background-color: transparent;
  border-color: #212121 !important;
  border-width: 2px 2px 2px 2px;
}
.startup-wire-button:hover {
  background-color: transparent;
  color: #7980ff !important;
  border-color: #7980ff !important;
}
.h2-19-style {
  font-family: "Baskervville-Regular";
}
.feat-icon-trans {
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 10px;
  border-radius: 10px 10px 10px 10px;
}
.feat-header {
  font-weight: bold;
}
.purple-gradient-bg {
  background: linear-gradient(274deg, #9809ff 0%, #8b74fd 100%);
}
h5 {
  font-family: "Baskervville-Regular";
}
.mini-feature-icon {
  font-size: 50px;
}
.h2-20-style {
  font-family: "Baskervville-Regular";
}
.blocs-card-width {
  width: 25%;
}
.h3-9-style {
  font-family: "Baskervville-Regular";
}
.colonne {
  min-width: 90%;
}
.formfield-copy-1 {
  border-style: solid;
  border-color: #000000 !important;
  font-family: "Lato-Regular";
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 20px 20px 20px 20px;
  border-width: 1px 1px 1px 1px;
}
.h2-bloc-6-style {
  font-size: 50px;
}
.h2-bloc-5-style {
  font-size: 50px;
}
.h2-bloc-4-style {
  font-size: 50px;
}
.colonna {
  min-width: 5%;
  background-color: var(--swatch-var-1577);
  overflow: hidden;
  height: 50vh;
}
.col-sinistra {
  margin-right: -3px !important;
}
.col-destra {
  margin-left: -3px !important;
}
.hero6::before {
  background-size: cover;
  content: "";
  position: absolute;
  overflow: hidden;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-position: center center;
  background-blend-mode: darken;
  background-image: url("img/1_AAB8614.jpg");
}
.hero6 {
  overflow: hidden;
}
.hero7::before {
  background-size: cover;
  content: "";
  position: absolute;
  overflow: hidden;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-position: center center;
  background-blend-mode: darken;
  background-image: url("img/IMG_6718.jpeg");
}
.hero7 {
  overflow: hidden;
}
.mini-responsive-icon {
  font-size: 60px;
}
.divider-style {
  width: 3px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
}
.mini-step-number {
  font-size: 3em;
  line-height: 1em;
}
.p-style {
  font-family: "Lato-Bold";
}
.p-43-style {
  font-family: "Lato-Bold";
}
.p-45-style {
  font-family: "Lato-Bold";
}
.p-47-style {
  font-family: "Lato-Bold";
}
.p-49-style {
  font-family: "Lato-Bold";
}
.white-bold {
  font-family: "Lato-Bold";
  color: var(--swatch-var-1266) !important;
  text-decoration: underline !important;
}
.invest-custom-bg {
  background: repeating-radial-gradient(#4d1972 0%, #000000 72%, #130f18 100%);
}
.invest-home-icon {
  width: 80px;
  height: 80px;
  background-color: #212121;
  font-size: 35px;
  color: #feffff !important;
  display: flex;
  text-align: center;
  padding-top: 22px;
  border-radius: 14px 14px 14px 14px;
}
.invest-bold {
  font-weight: bold;
}
.invest-feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0px 0px 25px rgba(89, 52, 254, 0.2);
  border-radius: 50px 50px 50px 50px;
}
.invest-feature-image {
  width: 40%;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
.invest-feature-content {
  padding: 28px 100px 28px 100px;
}
.writer-category {
  color: #feffff !important;
  background-color: var(--swatch-var-1577);
  text-transform: none;
  font-weight: normal;
  letter-spacing: 1px;
  padding: 7px 28px 7px 28px;
  border-radius: 7px 7px 7px 7px;
  text-decoration: none;
  font-size: 25px;
}
.writer-category:hover {
  color: #feffff !important;
  background-color: var(--swatch-var-1538);
}
.writer-recent-card {
  height: 450px;
  background-color: rgba(0, 0, 0, 0.3);
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 7px 7px 28px rgba(0, 0, 0, 0.2);
  padding: 28px 28px 28px 28px;
  border-radius: 14px 14px 14px 14px;
  cursor: pointer;
}
.writer-recent-card:hover {
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.4);
}
.writer-recent-bg-1 {
  background-image: url("img/TF-324-coverweb.png");
  background-size: length;
  background-position: center top;
}
.div-rel {
  position: relative;
}
.events-bg {
  background-image: url("img/TF-324-coverweb.png");
  background-size: cover !important;
  background-position: center top;
  overflow: hidden;
  border-radius: 20px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}
.writer-recent-bg-2 {
  background-image: url("img/sunset-ponte-vecchio.jpg");
}
.writer-recent-bg-3 {
  background-image: url("img/grande%20firenze_1.jpg");
}
.writer-recent-bg-4 {
  background-image: url("img/giardino-leopoldine-museo-novecento-haley-mellin.jpg");
}
.writer-recent-bg-5 {
  background-image: url("img/ponte-vecchio-firenze-dagli-uffizi.jpg");
}
.writer-recent-bg-6 {
  background-image: url("img/santa-croce-church.jpg");
}
.september-website-item {
  font-weight: bold;
}
.september-website-card {
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.28) !important;
  padding: 70px 70px 70px 70px;
  border-radius: 0px 0px 0px 0px;
  border-width: 0px 0px 0px 0px;
}
.september-website-card:hover {
  border-color: #feffff !important;
  padding: 70px 70px 70px 70px;
  border-width: 0px 0px 0px 0px;
}
.september-web-thumb {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
  border-style: solid;
  border-color: #ffffff !important;
  opacity: 1;
  border-width: 0px 0px 0px 0px;
}
.september-web-thumb:hover {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.4);
  border-style: solid;
  border-color: rgba(0, 0, 0, 0) !important;
  opacity: 0.9;
  border-width: 0px 0px 0px 0px;
}
.september-item-column {
  margin-bottom: 28px;
}
.feature-big-icon {
  font-size: 55px;
}
.feature-details-col {
  display: flex;
  flex-direction: row;
}
.div-flex {
  flex-direction: row;
  display: flex;
}
.flex-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 0px 0px 0px 10px !important;
}
.h3-orizi-mariano-style {
  font-family: "Lato-Bold";
  font-size: 20px;
}
.h4-style {
  font-family: "Baskervville-Regular";
}
.h2-21-style {
  font-family: "Baskervville-Regular";
  font-size: 25px;
}
.h3-44-style {
  font-family: "Lato-Bold";
  color: var(--swatch-var-1266) !important;
  font-size: 20px;
}
.h3-enjoy-style {
  font-family: "Lato-Bold";
  font-size: 20px;
}
.radius-20 {
  border-radius: 20px 20px 20px 20px;
}
.h3-bloc-46-style {
  font-family: "Lato-Regular";
}
.white-color {
  color: var(--swatch-var-1266) !important;
}
.div-flex-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.img-off-1 {
  width: 80%;
  position: relative;
  top: -80px;
}
.margin-btn-links {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

/* = Colour
-------------------------------------------------------------- */

/* Swatch Variables */
:root {
  --swatch-var-1266: rgba(255, 255, 255, 1);

  --swatch-var-1911: #000000;

  --swatch-var-1794: #e9ecf2;

  --swatch-var-6555: #636363;

  --swatch-var-2697: rgba(149, 118, 44, 1);

  --swatch-var-347: rgba(255, 248, 235, 1);

  --swatch-var-1577: rgba(123, 26, 55, 1);

  --swatch-var-3719: rgba(255, 191, 0, 1);

  --swatch-var-1058: #151414;

  --swatch-var-7710: rgba(0, 0, 0, 0.81);

  --swatch-var-3131: #eeeeee;

  --swatch-var-5803: #101010;

  --swatch-var-4497: #202020;

  --swatch-var-779: #0066cc;

  --swatch-var-5545: #0088ff;

  --swatch-var-3202: rgba(0, 0, 0, 0.03);

  --swatch-var-1538: rgba(47, 10, 21, 1);

  --swatch-var-7472: rgba(174, 37, 78, 1);

  --swatch-var-4436: #282828;

  --swatch-var-777: #eef4ff;

  --swatch-var-6030: #151515;

  --swatch-var-6175: #666bd4;

  --swatch-var-426: rgba(255, 255, 255, 0.8);

  --swatch-var-886: rgba(213, 213, 213, 1);

  --swatch-var-3060: #111111;

  --swatch-var-6445: #004c51;

  --swatch-var-3766: #004469;

  --swatch-var-7552: #86a0b6;
}

/* Background colour styles */

.bgc-1577 {
  background-color: var(--swatch-var-1577);
}
.bgc-1794 {
  background-color: var(--swatch-var-1794);
}
.bgc-3202 {
  background-color: var(--swatch-var-3202);
}
.bgc-1058 {
  background-color: var(--swatch-var-1058);
}

/* Text colour styles */

.tc-1266 {
  color: var(--swatch-var-1266) !important;
}
.tc-3719 {
  color: var(--swatch-var-3719) !important;
}
.tc-6555 {
  color: var(--swatch-var-6555) !important;
}
.tc-1911 {
  color: var(--swatch-var-1911) !important;
}
.tc-3131 {
  color: var(--swatch-var-3131) !important;
}
.tc-426 {
  color: var(--swatch-var-426) !important;
}

/* Icon colour styles */

.icon-1266 {
  color: var(--swatch-var-1266) !important;
  border-color: var(--swatch-var-1266) !important;
}

/* Bloc image backgrounds */

.bg-5-AAB8678-20SD {
  background-image: url("img/5_AAB8678%20SD.jpg");
}
.bg-1-AAB8729-20SD {
  background-image: url("img/1_AAB8729%20SD.jpg");
}
.bg-15-AAB8697-HDR-20SD {
  background-image: url("img/15_AAB8697-HDR%20SD.jpg");
}
.bg-2-AAB9108-20SD {
  background-image: url("img/2_AAB9108%20SD.jpg");
}

/* = Custom Bric Data
-------------------------------------------------------------- */

.smartnav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  -webkit-overflow-scrolling: touch;
}
.smartnav .navbar-nav > .nav-item a.nav-link {
  border: 0 solid transparent;
}
.scrolled-down {
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}
.scrolled-up {
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}
.social-link-bric a svg {
  transition: all 0.3s ease-in-out;
}
.social-hover-fade a:hover svg {
  opacity: 0.5;
}
.social-hover-grow a:hover svg {
  transform: scale(1.2);
}
.social-hover-shrink a:hover svg {
  transform: scale(0.9);
}
.social-hover-shadow a:hover svg {
  filter: drop-shadow(0px 6px 2px rgba(0, 0, 0, 0.3));
  overflow: visible;
}

/* = Bloc Padding Multi Breakpoint
-------------------------------------------------------------- */

@media (min-width: 576px) {
  .bloc-xxl-sm {
    padding: 200px 20px;
  }
  .bloc-xl-sm {
    padding: 150px 20px;
  }
  .bloc-lg-sm {
    padding: 100px 20px;
  }
  .bloc-md-sm {
    padding: 50px 20px;
  }
  .bloc-sm-sm {
    padding: 20px;
  }
  .bloc-no-padding-sm {
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .bloc-xxl-md {
    padding: 200px 20px;
  }
  .bloc-xl-md {
    padding: 150px 20px;
  }
  .bloc-lg-md {
    padding: 100px 20px;
  }
  .bloc-md-md {
    padding: 50px 20px;
  }
  .bloc-sm-md {
    padding: 20px 20px;
  }
  .bloc-no-padding-md {
    padding: 0 20px;
  }
}
@media (min-width: 992px) {
  .bloc-xxl-lg {
    padding: 200px 20px;
  }
  .bloc-xl-lg {
    padding: 150px 20px;
  }
  .bloc-lg-lg {
    padding: 100px 20px;
  }
  .bloc-md-lg {
    padding: 50px 20px;
  }
  .bloc-sm-lg {
    padding: 20px;
  }
  .bloc-no-padding-lg {
    padding: 0 20px;
  }
}

/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px) {
  .bloc.full-width-bloc,
  .bloc-tile-2.full-width-bloc .container,
  .bloc-tile-3.full-width-bloc .container,
  .bloc-tile-4.full-width-bloc .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .container {
    width: 100%;
  }
  .bloc {
    padding-left: constant(safe-area-inset-left);
    padding-right: constant(safe-area-inset-right);
  } /* iPhone X Notch Support*/
  .bloc-group,
  .bloc-group .bloc {
    display: block;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .bloc-tile-2 .container,
  .bloc-tile-3 .container,
  .bloc-tile-4 .container {
    padding-left: 0;
    padding-right: 0;
  }
  .btn-dwn {
    display: none;
  }
  .voffset {
    margin-top: 5px;
  }
  .voffset-md {
    margin-top: 20px;
  }
  .voffset-lg {
    margin-top: 30px;
  }
  form {
    padding: 5px;
  }
  .close-lightbox {
    display: inline-block;
  }
  .blocsapp-device-iphone5 {
    background-size: 216px 425px;
    padding-top: 60px;
    width: 216px;
    height: 425px;
  }
  .blocsapp-device-iphone5 img {
    width: 180px;
    height: 320px;
  }
}

@media (max-width: 991px) {
  .row-position {
    min-height: 700px;
  }
  .row-home {
    min-height: 700px;
  }
  h4 {
    font-size: 40px;
  }
  .awards {
    max-width: 190px;
    max-height: 90px;
    margin-bottom: 40px;
  }
  .img-size {
    margin-top: 60px;
    margin-bottom: 0px;
  }
  .text-room {
    margin-top: 60px;
    margin-bottom: 60px;
    padding-right: 80px;
    padding-left: 80px;
  }
  .img {
    left: 40px;
  }
  .text-home {
    padding-left: 40px;
    padding-right: 60px;
  }
  .nav-special.fullscreen-nav .nav > li a {
    font-size: 15px;
  }
  .nav-special.fullscreen-nav .nav > li a:hover {
    color: #836726 !important;
  }
  .nav-special.fullscreen-nav {
  }
  .navbar-nav li a:hover {
    color: #94752b !important;
  }
  .mini-large-p {
    font-size: 1.2em;
  }
  .mini-carousel {
    padding-right: 70px;
    padding-left: 70px;
  }
  .half-screen-content {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .mini-feature-scrolling-images {
    margin-left: -200px;
  }
  .mini-features-cards {
    padding: 40px 40px 40px 40px;
  }
  .black-button {
  }
  .feature-details-col {
    margin-bottom: 40px;
    text-align: center;
  }
  .mini-feature-icon {
    font-size: 45px;
  }
  .blocs-card-width {
    width: 50%;
  }
  .mini-responsive-icon {
    font-size: 50px;
  }
  .divider-style {
    height: 50px;
  }
  .mini-step-number {
    font-size: 2em;
  }
  .invest-feature-image {
    width: 40%;
  }
  .invest-feature-content {
    padding-right: 28px;
    padding-left: 28px;
  }
  .writer-recent-card {
    margin-top: 14px;
    margin-bottom: 14px;
  }
  .september-website-card {
    padding: 30px 30px 30px 30px;
  }
  .september-website-card:hover {
    padding: 30px 30px 30px 30px;
  }
  h2 {
    font-size: 50px;
  }
  .img-off-1 {
    width: 80%;
    position: relative;
    top: 200px;
  }
  p {
    font-size: 18px;
  }
  .flex-info {
    margin: 0px 0px 0px 10px !important;
  }
  .margin-btn-links {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .h4--pharmacy-style {
    margin-bottom: 100px !important;
  }
  .suoer {
    margin-bottom: 100px !important;
  }
  .h2-21-style {
    font-size: 32px;
  }

  /* MD Row Margin Offsets */
  .voffset-clear-md {
    margin-top: 0;
  }
  .voffset-md {
    margin-top: 30px;
  }
  .voffset-lg-md {
    margin-top: 80px;
  }

  /* MD Text Margin Offsets */
  .mg-lg-md {
    margin-top: 10px;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .btn-clean {
    margin-bottom: 50px;
  }
  .box {
    margin-bottom: 80px;
  }
  .text-column {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 40px 40px 40px 40px;
  }
  .img-size {
    margin-bottom: 40px;
    margin-top: 40px;
  }
  .awards {
    margin-bottom: 30px;
  }
  .text-room {
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 60px 60px 60px 60px;
  }
  .img {
    left: 0px;
  }
  .nav-special.fullscreen-nav .nav > li a {
    color: #feffff !important;
    font-family: "PlayfairDisplay-Regular";
    font-size: 50px;
    line-height: 80px;
  }
  .nav-special.fullscreen-nav .nav > li a:hover {
    color: #000000 !important;
  }
  .nav-special.fullscreen-nav {
    background-color: #94752b;
  }
  .mini-carousel {
    padding-left: 60px;
    padding-right: 60px;
  }
  .half-screen-content {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .feat-card {
    margin-bottom: 100px;
  }
  .mini-features-cards {
    padding: 28px 20px 28px 20px;
  }
  .startup-wire-button {
    padding-right: 20px;
    padding-left: 20px;
    line-height: 28px;
  }
  .feature-details-col {
    text-align: center;
  }
  .mini-feature-icon {
    font-size: 40px;
  }
  .blocs-card-width {
    width: 50%;
  }
  .divider-style {
    height: 10px;
  }
  .invest-feature {
    flex-direction: column-reverse;
  }
  .invest-feature-image {
    width: 100%;
    border-radius: 50px 50px 0px 0px;
  }

  .september-website-card:hover {
    padding: 30px 30px 30px 30px;
  }
  .menu-icon-stroke {
    stroke: var(--swatch-var-1266) !important;
    fill: var(--swatch-var-1266) !important;
  }
  h2 {
    font-size: 40px;
  }
  .img-off-1 {
    position: relative;
    top: -50px;
    width: 80%;
  }
  p {
    font-size: 16px;
  }
  .flex-info {
    margin: 0px 0px 0px 10px !important;
  }
  .margin-btn-links {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .h4--pharmacy-style {
    font-size: 35px;
  }

  /* Small Row Margin Offsets */
  .voffset-md-sm {
    margin-top: 50px;
  }
  .voffset-lg-sm {
    margin-top: 80px;
  }

  /* Small Text Margin Offsets */
  .mg-lg-sm {
    margin-top: 10px;
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 45px;
  }
  h2 {
    font-size: 30px;
  }
  .btn-clean {
    margin-bottom: 50px;
  }
  .box {
    margin-bottom: 50px;
  }
  .text-column {
    padding: 40px 40px 40px 40px;
  }
  .img-size {
    margin-top: -49px;
    margin-bottom: 60px;
  }
  .awards {
    margin: 20px 20px 20px 20px;
  }
  .text-room {
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0px 30px 0px 40px;
  }
  .img {
    left: 0px;
  }
  .row-home {
  }
  .nav-special.fullscreen-nav .nav > li a {
    font-size: 40px;
    line-height: 50px;
    font-family: "PlayfairDisplay-Regular";
  }
  .navbar-logo {
    font-size: 18px;
  }
  .mini-large-p {
    font-size: 1.1em;
  }
  .mini-carousel {
    padding-left: 0px;
    padding-right: 0px;
  }
  .half-screen-content {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .mini-feature-scrolling-images {
    margin-left: -100px;
  }
  .mini-cta-mail-field {
    margin-bottom: 14px;
  }
  .mini-feature-icon {
    font-size: 35px;
  }
  .blocs-card-width {
    width: 100%;
  }
  .mini-responsive-icon {
    font-size: 50px;
  }
  .divider-style {
    margin-left: auto;
    margin-right: auto;
    height: 20px;
  }
  .invest-bold {
  }
  .writer-recent-card {
    padding: 14px 14px 14px 14px;
  }
  .september-website-card {
    padding: 20px 20px 20px 20px;
  }
  .september-website-card:hover {
    padding: 20px 20px 20px 20px;
  }
  .feature-big-icon {
    font-size: 40px;
  }
  .menu-icon-stroke {
    stroke: var(--swatch-var-1266) !important;
    fill: var(--swatch-var-1266) !important;
  }
  .flex {
    justify-content: center;
    align-items: center;
  }
  .h2-style {
    font-size: 30px;
  }
  .img-off-1 {
    position: relative;
    width: 80%;
    top: 20px;
  }
  h6 {
    font-size: 26px;
  }
  p {
    font-size: 14px;
  }
  .h2-page-title-style {
    font-size: 30px;
  }
  .h2-bloc-6-style {
    font-size: 30px;
  }
  .h2-bloc-5-style {
    font-size: 30px;
  }
  .h2-bloc-4-style {
    font-size: 30px;
  }
  .h4-events-news-style {
    font-size: 30px;
  }
  .div-flex {
    flex-direction: column;
  }
  .global-radius {
    width: 100%;
  }
  .flex-info {
    margin: 10px 0px 50px 0px !important;
  }
  .margin-btn-links {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .h2-19-style {
    font-size: 40px;
  }
  .feat-card {
    margin-bottom: 100px;
  }
  .h4--pharmacy-style {
    font-size: 28px;
  }
  .h3-bloc-46-style {
    margin-top: 10px;
  }
  .h2--essentials-style {
    font-size: 36px;
  }

  /* Mobile Row Margin Offsets */
  .voffset-lg-xs {
    margin-top: 80px;
  }

  /* Mobile Text Margin Offsets */
  .mg-lg-xs {
    margin-top: 10px;
    margin-bottom: 40px;
  }
}
