/* -----------------------------------------------------------------------------------

 01. Google Fonts
 02. Basics style
 03. Owl-Theme settings
 04. Sections style
 05. Navbar style
 06. Header style
 07. Slider style
 08. Slider Left Panel
 09. Page Banner Header
 10. About style 
 11. Team style
 12. Services style
 13. Gallery style
 14. Blog style
 15. Post style
 16. Contact style
 17. Button 
 18. Footer
 19. Responsive
 
----------------------------------------------------------------------------------- */


/* ======= Google fonts ======= */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&family=Julius+Sans+One&display=swap');
@import url('https://fonts.googleapis.com/css?family=Rambla:300,400,700,900|Playfair+Display:400,400i,700,700i,900,900i&display=swap');

/* ======= Basics ======= */
.js .animate-box {
    opacity: 0;
}


* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}

html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

body {
    overflow-x: hidden !important;
    background: #fff;
    font-family: 'Rambla', sans-serif;
    font-size: 16px;
    line-height: 1.75em;
    font-weight: 400;
    color: #666;
}

p {
    font-family: 'Rambla', sans-serif;
    font-size: 16px;
    font-weight: 100;
    color: #666;
    line-height: 1.75em;
    margin-bottom: 20px;
}


/* CSS Aggiuntivo */

/* Regole generali */
.center-entry {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.title-container {
    margin-bottom: 10px;
}

.image-container {
    position: relative;
    display: inline-block;
    width: 80%;
    margin: 0 auto;
}

.center-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0px;
    opacity: 0;
    transition: opacity 0.3s;
    overflow: hidden;
    box-sizing: border-box;
}

.image-container:hover .overlay {
    opacity: 1;
}

.butn {
    color: #fff;
    background-color: #e91e63;
    padding: 10px 20px;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    border-radius: 5px;
}

/* Regole specifiche per dispositivi mobili */
@media (max-width: 768px) {
    .center-entry {
        width: 100%;
        margin-bottom: 20px;
    }

    .image-container {
        width: 90%;
    }

    .center-image,
    .overlay {
        border-radius: 10px;
    }

    .butn {
        padding: 8px 16px;
        font-size: 14px;
    }
}
/* Aggiungere questi stili in style.css */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;  /* OK ma manca visibilità */
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading .middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #fab4a7;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes lds-ellipsis2 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(24px, 0); }
}

@keyframes lds-ellipsis3 {
    0% { transform: scale(1); }
    100% { transform: scale(0); }
}


/* Lazy Loading Styles */
.loading-section {
    background-color: #f8f8f8;
    transition: background-image 0.3s ease-in;
}

.loading-section.loaded {
    background-color: transparent;
}

/* Image Loading States */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.lazy.loaded {
    opacity: 1;
}

/* Container Loading States */
.loading {
    position: relative;
    background-color: #f8f8f8;
    overflow: hidden;
}

.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    animation: loading-shimmer 1s infinite;
}

@keyframes loading-shimmer {
    100% {
        left: 100%;
    }
}



h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    line-height: 1.5em;
}

img {
    width: 100%;
    height: auto;
}

img {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    color: #101010;
}

span,
a,
a:hover {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

b {
    font-weight: 400;
    color: #e52e71;
}

/* text field */

button,
input,
optgroup,
select,
textarea {
    font-family: 'Rambla', sans-serif;
}

input[type="password"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
textarea:focus {
    outline: none;
}

input[type="password"],
input[type="email"],
input[type="text"],
input[type="file"],
textarea {
    max-width: 100%;
    margin-bottom: 15px;
    border: none;
    padding: 10px 15px;
    height: auto;
    background-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: block;
    width: 100%;
    font-family: 'Rambla', sans-serif;
    font-size: 16px;
    line-height: 1.75em;
    color: #666;
    background-image: none;
    border: 1px solid #ececec;
    border-radius: 0px;
}

input[type="submit"],
input[type="reset"],
input[type="button"] {
    text-shadow: none;
    padding: 14px 30px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    color: #fff;
    -webkit-transition: background-color .15s ease-out;
    transition: background-color .15s ease-out;
    background: #e52e71;
    border-radius: 50px;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    background: #ff8a00;
}

.alert-success {
    background: transparent;
    color: #666;
    border: 1px solid #e52e71;
    border-radius: 0px;
}


select {
    padding: 10px;
    border-radius: 5px;
}

table,
th,
tr,
td {
    border: 1px solid #ececec;
}

th,
tr,
td {
    padding: 10px;
}

input[type="radio"],
input[type="checkbox"] {
    display: inline;
}

.bg-gray {
    background: #f8fafd;
}

.o-hidden {
    overflow: hidden;
}

.position-re {
    position: relative;
}

.full-width {
    width: 100%;
}

.bg-img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bg-fixed {
    background-attachment: fixed;
}

.pattern {
    background-repeat: repeat;
    background-size: auto;
}

.sub-title {
    font-size: 15px;
    font-weight: 400;
    color: #101010;
    margin-bottom: 10px;
}

.bold {
    font-weight: 800;
}

.count {
    font-family: 'Rambla', sans-serif;
}

.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.v-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}


/* important for animate effect */



:root {
    scroll-behavior: auto;
}

/* ======= Selection ======= */

::-webkit-selection {
    color: #666;
    background: rgba(0, 0, 0, 0.1);
}

::-moz-selection {
    color: #666;
    background: rgba(0, 0, 0, 0.1);
}

::selection {
    color: #666;
    background: rgba(0, 0, 0, 0.1);
}


/* ======= Owl-Theme ======= */

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 15px;
    line-height: .7;
    display: block;
}

.owl-theme .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
    margin: 0 3px;
    border-radius: 50%;
    background: #ccc;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #7B9C7B;
}


/* ======= Sections ======= */

.section-padding {
    padding: 90px 0;
    background-color: #ffffff;
}

.section-padding h6 {
    color: #7b9c7b;
    font-size: 20px;
    margin-bottom: 20px;
}

#h6 {
    color: #202020;
    font-size: 20px;
    margin-bottom: 20px;
}

.section-subtitle {
    color: #000;
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: rgb(123, 156, 123);
    position: relative;
    margin-bottom: 10px;
    line-height: 1em;
}

.line-hr {
    width: 70px;
    border-top: 1px solid #101010;
    margin-top: 0px;
    margin-bottom: 30px;
}

.light-pink-bg {
    background: #fdf7fa;
}

/* =======  FAI UN REGALO ANIMAZIONE PAZZA ======= */
  

  .heart {
    font-size: 6em;
    position: relative;
  }
  
  .heartbeat {
    position: relative;
    z-index: 1;
    animation: beat 2s linear infinite;
  }
  
  @keyframes beat {
    0% {
      transform: scale(1);
    }
    14% {
      transform: scale(0.9);
    }
    21% {
      transform: scale(1.1) skew(0.004turn)
    }
    28% {
      transform: scale(1.05) skew(0.008turn);
    }
    35% {
      transform: scale(1) skew(0)
    }
  }
  

/* ======= Navbar style ======= */
.navbar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 99;
    padding: 0;
    height: 90px;
    box-shadow: 0px 5px 15px rgba(15, 36, 84, 0.05);
}

.navbar-toggler-icon {
    background-image: none;
}

.navbar .navbar-toggler-icon,
.navbar .icon-bar {
    color: #FAB4A7;
}

.navbar .navbar-nav .nav-link {
    font-size: 16px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: #242424;
    margin: 15px 5px;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.navbar .navbar-nav .nav-link.nav-color {
    color: #fff;
}

.navbar .navbar-nav .nav-link:hover {
    color: #FAB4A7;
}

.navbar .navbar-nav .active {
    color: #FAB4A7 !important;
}

.navbar .navbar-nav .active i {
    color: #FAB4A7;
}

.nav-scroll {
    background: #fff;
    padding: 0 0 0 0;
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-box-shadow: 0px 5px 15px rgb(15 36 84 / 5%);
    box-shadow: 0px 5px 15px rgb(15 36 84 / 5%);
    height: 90px;
}

.nav-scroll .navbar-toggler-icon,
.nav-scroll .icon-bar {
    color: #FAB4A7;
}

.nav-scroll .navbar-nav .nav-link {
    color: #666;
}

.nav-scroll .navbar-nav .active {
    color: #FAB4A7 !important;
}

.nav-scroll .navbar-nav .logo {
    padding: 15px 0;
    color: #fff;
}

.nav-scroll .logo-img {
    width: 110px;
}

.nav-scroll .logo-img {
    margin-bottom: 0px;
}

.nav-scroll .logo-wrapper .logo h2 {
    font-weight: 400;
    font-size: 45px;
    margin-bottom: 0;
    color: #FAB4A7;
    line-height: 0.7em;
}

.nav-scroll .logo-wrapper .logo span {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    color: #666;
    font-weight: 400;
    margin-left: 2px;
}

.nav-scroll .logo-wrapper {}

.logo-wrapper {
    float: left;
}

.logo-wrapper .logo h2 {
    font-weight: 400;
    font-size: 55px;
    color: #fff;
    line-height: 0.7em;
}

.logo-wrapper .logo h2 a i {
    color: #fff;
    font-size: 20px;
    vertical-align: super;
}

.logo-wrapper .logo span {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #fff;
    font-weight: 400;
    font-style: italic;
    margin-left: 4px;
    line-height: 1.5em;
}

.logo {
    padding: 0;
}

.logo-img {
    padding: 20px 0;
    width: 110px;
    min-height: 58px;
    text-align: center;
}

.dropdown .nav-link i {
    padding-left: 0px;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.nav-scroll .dropdown .nav-link i {
    color: rgba(0, 0, 0, 0.5);
}

.nav-scroll .navbar-nav .active i {
    color: #FAB4A7;
}

.navbar .dropdown-menu .dropdown-item {
    padding: 9px 0;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    position: relative;
    -webkit-transition: all .4s;
    transition: all .4s;
    background-color: transparent;
}

.navbar .dropdown-menu .dropdown-item span {
    display: block;
    cursor: pointer;
}

.navbar .dropdown-menu .dropdown-item i {
    padding: 13px 0 0 5px;
    font-size: 8px;
    float: right;
}

.navbar .dropdown-menu .dropdown:hover>.dropdown-item,
.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:hover {
    color: #FAB4A7;
}

.navbar .dropdown-toggle::after {
    display: none;
}

.navbar .dropdown-menu {
    box-shadow: 0 16px 50px rgb(0 0 0 / 7%);
}

.navbar .dropdown-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, .03);
}

.navbar .dropdown-menu li:last-child {
    border-bottom: none;
}

.navbar .dropdown-menu .dropdown-menu.pull-left {
    top: 0;
    left: auto;
    right: 100%;
}

/* Navbar Media Query */
@media screen and (min-width: 992px) {
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        width: 190px;
        padding: 15px;
        border-radius: 0;
        border: 0;
        background-color: #fff;
        -webkit-transition: all .3s;
        transition: all .3s;
    }

    .navbar .dropdown-menu .dropdown-menu {
        left: calc(100% + 5px);
        top: -10px;
        right: auto;
        min-width: 190px;
        transform: translateY(0);
    }

    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media screen and (max-width: 991px) {
    .navbar {
        padding-left: 0px;
        padding-right: 0px;
        background: white;
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .nav-scroll {
        background: #fff;
    }

    .logo-wrapper {
        float: left;
        padding: 15px 15px;
    }

    .nav-scroll .logo-wrapper {
        padding: 16px 15px;
        background-color: transparent;
    }

    .nav-scroll .logo-img {
        width: 114px;
    }

    .navbar .logo {
        text-align: left;
        margin-left: 0px;
    }

    .logo-img {
        margin-bottom: 0px;
        width: 114px;
        padding: 0;
    }

    .navbar button {
        margin-right: 0px;
        outline: none !important;
        background: transparent;
        margin-top: 10px;
        border: none;
    }

    .navbar button:hover {
        background: transparent;
    }

    .navbar button:active,
    .navbar button:focus,
    .navbar button:hover {
        background: transparent;
        outline: none;
        color: transparent !important;
    }

    .navbar .container {
        max-width: 100%;
        padding: 0;
    }

    .navbar .nav-link {
        margin: 0px auto !important;
    }

    .navbar .navbar-nav .nav-link {
        color: #666;
    }

    .nav-scroll .navbar-collapse .nav-link {
        color: #666 !important;
    }

    .nav-scroll .navbar-collapse .active {
        color: #FAB4A7 !important;
    }

    .navbar .dropdown-menu .dropdown-item {
        padding: 0 15px;
        font-size: 16px;
        line-height: 40px;
    }

    .navbar .dropdown-menu .dropdown-item.dropdown-toggle {
        font-weight: 400;
    }

    .navbar .dropdown-submenu .dropdown-toggle::after {
        right: 15px;
        font-size: 13px;
    }

    .navbar .dropdown-submenu:hover>.dropdown-toggle::after {
        transform: rotate(0deg);
    }

    .navbar .dropdown-submenu .dropdown-toggle.show::after {
        transform: rotate(90deg);
    }

    .navbar .dropdown-menu {
        border: none;
        padding: 0;
        border-radius: 0;
        margin: 0;
        background: #fff;
        box-shadow: none;
    }

    .navbar .dropdown-submenu .dropdown-menu {
        margin: 0;
        padding: 0 0 0 20px;
    }

    .navbar .dropdown-menu li a {
        padding: 0 15px;
    }

    .navbar .navbar-nav .nav-link {
        padding-right: 0px;
        padding-left: 0px;
    }

    .dropdown .nav-link i {
        color: rgba(0, 0, 0, 0.5);
    }

    .nav-scroll .dropdown .nav-link i {
        color: rgba(0, 0, 0, 0.5);
    }

    .nav-scroll .dropdown .nav-link.active i {
        color: #FAB4A7;
    }

    .navbar .navbar-collapse {
        max-height: 450px;
        overflow: auto;
        background: #fff;
        text-align: left;
        padding: 20px;
    }
}


/* HEADER TRENTO */

/* Stile specifico per il centro di Trento che estende .header */
#centro-trento.header {
    position: relative;
}

#centro-trento .banner-header {
    position: relative;
    min-height: calc(100vh - 90px);
    width: 100%;
}

#centro-trento .banner-header[data-overlay-dark="4"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

#centro-trento .caption {
    position: relative;
    z-index: 2;
}

/* Fix per mobile */
@media screen and (max-width: 768px) {
    #centro-trento .banner-header {
        min-height: 50vh;
    }
    
    #centro-trento .bg-fixed {
        background-attachment: scroll;
    }
}
/* ======= Header ======= */


.header {
    padding-top: 90px;
    min-height: calc(100vh - 110px);
    overflow: hidden;
}

.hero-container {
    display: flex;
    height: 90vh;
}

.hero-half {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
}

.hero-half.trento {
    background-image: url('../img/Centri/trento.webp');
}

.hero-half.rovereto {
    background-image: url('../img/Centri/rovereto.webp');

}

.hero-half.rovereto img {
    object-position: top;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 60px;
}

#destra {
    align-items: flex-end;
}

.hero-half:hover .overlay {
    opacity: 1;
}

.overlay h2 {
    color: white;
    margin-bottom: 0px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
}

.header .caption {
    position: relative;
    z-index: 1;
}

.header .caption .o-hidden {
    display: inline-block;
}

.header .caption h2 {
    font-weight: 400;
    font-size: 30px;
}

.header .caption h4 {
    font-weight: 400;
    color: #e52e71;
    font-size: 17px;
    margin-bottom: 0;
    letter-spacing: 1px;
    font-family: 'Rambla', sans-serif;
    animation-delay: .2s;
}

.header .caption h1 {
    margin: 0;
    font-weight: 400;
    font-size: 70px;
    line-height: 1.2;
    animation-delay: .6s;
    color: #fff;
}

.header .caption p {
    font-family: 'Rambla', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
    color: #fff;
    animation-delay: 1s;
}

.header .caption p span {
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0 5px;
    padding-right: 14px;
    position: relative;
}

.header .caption p span:last-child {
    padding-right: 0;
}

.header .caption p span:not(:last-child):after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #101010;
    position: absolute;
    top: 10px;
    right: 0;
    opacity: .5;
}

.header .caption .butn {
    animation-delay: 1.2s;
}

.header .social a {
    color: #eee;
    font-size: 15px;
    margin: 10px 15px;
}

/* Stili per tutti i dispositivi touch, indipendentemente dalla larghezza */
@media (hover: none) {
    .overlay {
        opacity: 1;
        background-color: rgba(0, 0, 0, 0.18);
        justify-content: center;
        align-items: flex-start;
        padding: 30px;
    }


    .header {
        padding-top: 90px;
        min-height: 50vh;
    }

    .hero-container {
        flex-direction: column;
        height: auto;
    }

    .hero-half {
        min-height: 50vh;
    }
}

@media screen and (max-width: 768px) {
    .header {
        padding-top: 90px;
    }

    .hero-container {
        flex-direction: column;
        height: auto;
    }

    .hero-half {
        height: 50vh;
        min-height: 300px;
    }

    .overlay {
        opacity: 1;
        background-color: rgba(0, 0, 0, 0.18);
        justify-content: center;
        align-items: flex-start;
        padding: 30px;
    }

    #destra {
        align-items: flex-end;
    }

    .overlay h2 {
        font-size: 24px;
        margin-bottom: 5px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .overlay .butn {

        padding: 5px 10px;
        background-color: #FFB9AC;
        color: rgb(218, 218, 218);
        text-decoration: none;
        border-radius: 10px;
    }

    .overlay .butn-dark span {
        color: #fff;
        font-size: 12px;
        font-weight: 400;
        letter-spacing: 1px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        font-family: 'Playfair Display';
    }

    .header .caption h2 {
        font-size: 40px;
    }

    .header .caption p {
        font-size: 16px;
    }

    .header .caption h4 {
        font-size: 15px;
    }
}

/* ======= Slider ======= */

.slider .owl-item,
.slider-fade .owl-item {
    height: 100vh;
    position: relative;
}

.slider .item,
.slider-fade .item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.slider .item .caption,
.slider-fade .item .caption {
    z-index: 9;
}

.slider .owl-theme .owl-dots,
.slider-fade .owl-theme .owl-dots {
    position: absolute;
    bottom: 5vh;
    width: 100%;
}


/* owl-nav next and prev */

.owl-nav {
    position: absolute;
    bottom: 5%;
    right: 12%;
}

.owl-prev {
    float: left;
}

.owl-next {
    float: right;
}

.owl-theme .owl-nav [class*=owl-] {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    width: 40px;
    height: 40px;
    line-height: 32px;
    border-radius: 50%;
    float: left;
    font-size: 10px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    border: 1px solid #71966a;
    background-color: #71966a;
    color: #fff;
}

.slider-fade .owl-theme .owl-nav [class*=owl-] {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 40px;
    height: 40px;
    line-height: 42px;
    border-radius: 50%;
    float: left;
    font-size: 10px;
    color: #fff;
}

.slider-fade .owl-theme .owl-nav [class*=owl-]:hover {
    border: 1px solid #ffffff;
    background-color: #ffffff;
    color: #fff;
}

.testimonials .owl-theme .owl-nav [class*=owl-] {
    border: 1px solid #ffffff;
    background-color: transparent;
    color: #505050;
    width: 35px;
    height: 35px;
    line-height: 38px;
    border-radius: 50%;
    float: left;
    font-size: 10px;
}

.testimonials .owl-theme .owl-nav [class*=owl-]:hover {
    background-color: #71966a;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .owl-nav {
        display: none;
    }
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {}


/* ======= Slider Left Panel ======= */

.left-panel {
    background: #fff;
    position: absolute;
    width: 140px;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    overflow: hidden;
}

.left-panel:after {
    content: '';
    display: block;
    width: 1px;
    height: 60px;
    bottom: 365px;
    background: #e52e71;
    position: absolute;
    right: 50%;
    margin-left: -1px;
    z-index: 1;
}

.left-panel span {
    color: #e52e71;
}

.left-txt {
    white-space: nowrap;
    text-align: right;
    position: absolute;
    right: 50%;
    bottom: 0;
    margin-bottom: 325px;
    line-height: 20px;
    margin-right: 10px;
    z-index: 9;
    color: #666;
    font-size: 15px;
    font-weight: 400;
    padding-left: 30px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    word-spacing: 3px;
}

.left-txt a:hover {
    color: #e52e71;
}

@media (max-width: 767.98px) {
    .left-panel {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .left-panel {
        width: 50px;
    }
}

@media (max-width: 1259.98px) {
    .left-panel {
        width: 100px;
    }
}

.line-one {
    -webkit-box-flex: 1;
    flex: 1 0;
    height: 1px;
    background-color: #e52e71;
    display: -webkit-box;
    display: flex;
    margin-top: 13px;
}




/*
.banner-img:after {
    position: absolute;
    height: 100%;
    right: 0;
    left: 0;
    content: "";
    background: linear-gradient(hsla(0, 0%, 100%, 0.01), hsla(0, 0%, 100%, 0.01) 0%, #fff);
    object-fit: cover;
}
*/


/* ======= About style ======= */
/* Contenitore principale */
#chisiamo {
    background-color: #fdf6f6;
}

.betty-about-img {
    position: relative;
    width: 100%;
    min-height: 600px;
}

.betty-about-img .img {
    position: relative;
    padding: 0 30px 30px 15px;
    height: 100%;
}

.betty-about-img .img .img-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 133.33%;
    background-color: #f0f0f0;
    overflow: hidden;
}

.betty-about-img .img .img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

/* IMPORTANTE: Aggiungiamo tutte le possibili classi di stato */
.betty-about-img .img .img-wrapper img.lazyload,
.betty-about-img .img .img-wrapper img.lazyloading {
    opacity: 0;
}

.betty-about-img .img .img-wrapper img.lazyloaded {
    opacity: 1;
}

/* Manteniamo gli pseudo-elementi per le decorazioni */
.betty-about-img .img:before {
    content: '';
    position: absolute;
    top: 30px;
    right: 0;
    left: 45px;
    bottom: 0;
    border: 10px solid rgba(123, 156, 123, 0.85);
    z-index: 2;
    pointer-events: none;
}

.betty-about-img .img:after {
    content: '';
    width: 90%;
    position: absolute;
    top: -5%;
    bottom: -6%;
    left: -3%;
    background-image: url(../img/dots.png);
    background-repeat: repeat;
    z-index: 1;
    pointer-events: none;
}


/* Hover effect - ottimizzato */
@media (hover: hover) {
    .betty-about-img .img .img-wrapper:hover img {
        transform: scale(0.95);
    }
}
/* Utility class */
.sign {
    width: 140px;
}

/* Loading placeholder */
.betty-about-img.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    z-index: 1;
}


/* ======= Team style ======= */

#team {
    padding: 80px 0;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#team .section-title {
    font-family: 'Playfair Display', serif;
    color: #7B9C7B;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
}



.section-subtitle {
    font-family: 'Playfair Display', serif;
    color: #7c7c7c;
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 20px 0 40px;
    font-weight: 300;
}

.team-content {
    display: flex;
    align-items: center;
    position: relative;
}

.team-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    background-color: #7B9C7B;
    transform: translateX(-50%);
    transition: height 1s ease-out;
    height: var(--line-height, 0%);
}

.team-image-container {
    flex: 0 0 52%;
    /* Leggermente più grande */
    position: relative;
    cursor: pointer;
    padding-right: 80px;
}

.team-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}



.team-text {
    flex: 0 0 48%;
    /* Aggiustato per bilanciare l'immagine più grande */
    padding-left: 80px;
}

.text-section {
    margin-bottom: 25px;
}

.team-text h3 {
    color: #7B9C7B;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.team-text p {
    font-family: 'Rambla', sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.team-text strong {
    color: #5a7a5a;
}


@keyframes lineGrow {
    0% {
        height: 0%;
    }

    65% {
        height: 10%;
    }

    100% {
        height: 100%;
    }
}


@media (max-width: 992px) {
    .team-content {
        flex-direction: column;
        align-items: center;
    }

    .team-content::after {
        display: none;
    }

    .team-image-container {
        flex: 0 0 auto;
        width: 75%;
        /* Leggermente più grande */
        max-width: 550px;
        /* Aumentato il massimo */
        margin-bottom: 30px;
        padding-right: 0;
    }


    .team-text {
        flex: 0 0 100%;
        padding-left: 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    #team .section-title {
        font-size: 2rem;
    }

    .team-text h3 {
        font-size: 1.2rem;
    }

    .team-image-container {
        width: 90%;
    }
}





/* SPECIALISTI*/

#specialisti-esterni {
    padding: 80px 0;
    background-color: #fdf6f6;
}

.line-hr {
    width: 150px;
    border-top: 2px solid #7B9C7B;
    margin: 20px auto;
}

.specialist-card {
    perspective: 1500px;
    height: 500px;
    margin-bottom: 30px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card-front,
.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-back {
    transform: rotateY(180deg);
    overflow-y: auto;
}

/* MODIFICHE QUI - Rimosso .specialist-img originale e aggiunto wrapper */
.specialist-img-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    background-color: #f5f5f5;
    border-radius: 50%;
    overflow: hidden;
}

.specialist-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.specialist-img.loaded {
    opacity: 1;
}

/* Aggiunto effetto shimmer */
.specialist-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

/* Resto del CSS originale invariato */
.specialist-name {
    font-size: 24px;
    color: #7B9C7B;
    margin-bottom: 10px;
}

.specialist-role {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.specialist-bio {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.social-icons {
    margin-top: auto;
}

.social {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    background-color: #7B9C7B;
    color: #fff;
    font-size: 16px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social:hover {
    background-color: #FAB4A7;
    transform: translateY(-3px);
}

@keyframes shake {
    0% { transform: rotateY(0deg); }
    25% { transform: rotateY(15deg); }
    50% { transform: rotateY(-15deg); }
    75% { transform: rotateY(10deg); }
    100% { transform: rotateY(0deg); }
}

.shake-animation {
    animation: shake 0.5s ease-in-out;
}

.specialist-card.flipped .card-inner {
    transform: rotateY(180deg);
}

.read-more-btn,
.close-btn {
    display: none;
    background-color: #7B9C7B;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover,
.close-btn:hover {
    background-color: #FAB4A7;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    margin-top: 0;
}

@media (hover: none) {
    .specialist-card {
        height: auto;
        max-width: 350px;
        margin: 0 auto 30px;
    }

    .card-inner {
        transform-style: preserve-3d;
    }

    .card-front,
    .card-back {
        position: absolute;
        height: 100%;
        backface-visibility: hidden;
    }

    .card-back {
        transform: rotateY(180deg);
        position: relative;
    }

    .specialist-card.flipped .card-inner {
        transform: rotateY(180deg);
    }

    .read-more-btn,
    .close-btn {
        display: inline-block;
    }

    @media (min-width: 768px) {
        .owl-stage {
            min-height: 600px;
        }

        .card-back {
            min-height: 550px;
        }
    }
}

.owl-carousel .owl-item {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .specialist-card {
        max-width: 300px;
    }

    .card-front,
    .card-back {
        min-height: 550px;
    }

    .card-back {
        justify-content: space-between;
    }

    /* MODIFICHE QUI - Aggiornato media query per il wrapper */
    .specialist-img-wrapper {
        width: 180px;
        height: 180px;
    }

    .specialist-name {
        font-size: 24px;
    }

    .specialist-role {
        font-size: 15px;
    }
}

#specialisti-esterni .line-hr {
    width: 150px;
    border-top: 2px solid #7B9C7B;
    margin: 20px auto;
}

/* ======= gift card  ======= */

#gift-card-section {
    padding: 90px 0;
}



#gift-card-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

#gift-card-info-column .section-title {
    font-size: 50px;
}

#gift-card-info-column #h6 {
    font-size: 20px;
}

#gift-card-row {
    display: flex;
    flex-wrap: wrap;
}

#gift-card-info-column {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-right: 30px;
}

#gift-card-form-column {
    flex: 0 0 50%;
    max-width: 50%;
}

#gift-card-info-column h2 {
    font-family: 'Playfair Display', serif;
    color: #7B9C7B;
    font-size: 32px;
    margin-bottom: 20px;
}

#gift-card-info-column p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

#gift-card-form-container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.gift-card-form-title {
    font-family: 'Playfair Display', serif;
    color: #7B9C7B;
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.gift-card-wrap-input {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.gift-card-input {
    font-family: 'Rambla', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    display: block;
    width: 100%;
    background: #e6e6e6;
    height: 45px;
    border-radius: 15px;
    padding: 0 30px;
    border: none;
    outline: none;
}

textarea.gift-card-input {
    min-height: 100px;
    padding: 12px 30px;
}

.gift-card-shadow-input {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 0px 0px;
    color: rgba(123, 156, 123, 0.5);
    border-radius: 20px;
}

.gift-card-input:focus+.gift-card-shadow-input {
    animation: gift-card-anim-shadow 0.3s ease-in-out forwards;
}

@keyframes gift-card-anim-shadow {
    to {
        box-shadow: 0px 0px 80px 30px;
        opacity: 0;
    }
}

#gift-card-submit-btn {
    font-family: 'Rambla', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: #FAB4A7;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    transition: all 0.4s;
    border: none;
    outline: none;
    cursor: pointer;
}

#gift-card-submit-btn:hover {
    background: #7B9C7B;
}

.gift-card-alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: #fff;
    border: 1px solid #c80000;
    border-radius: 13px;
    padding: 4px 25px 4px 10px;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    pointer-events: none;
    font-family: 'Rambla', sans-serif;
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s;
}

.gift-card-alert-validate::after {
    content: '!';
    display: block;
    position: absolute;
    color: #fff;
    font-size: 16px;
    top: 50%;
    transform: translateY(-50%);
    right: 13px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #c80000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.gift-card-alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
}


.listino-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.btn-listino {
    padding: 10px 20px;
    background-color: #7B9C7B;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

.btn-listino:hover {
    background-color: #6a8a6a;
}


@media (max-width: 768px) {

    #gift-card-info-column,
    #gift-card-form-column {
        flex: 0 0 100%;
        max-width: 100%;
    }

    #gift-card-info-column {
        margin-bottom: 30px;
        padding-right: 0;
    }


    .listino-buttons {
        justify-content: center;
    }
}


/* ======= Testimonails style ======= */

.testimonials .section-head {
    text-align: left;
    margin-bottom: 0;
}

.testimonials .section-head p {
    color: #666;
}

.testimonials .section-head h4 {
    padding-bottom: 0;
    color: #7B9C7B;
    text-shadow: #000;
    font-size: 30px;
    line-height: 1.3 em;
    margin-bottom: 15px;
}

.testimonials .section-head h4:after {
    display: none;
}

.testimonials .item-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 45px 30px 30px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
}

.testimonials .item-box .quote {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 100px;
    margin: 0 auto 30px;
    opacity: .1;
}

.testimonials .item-box p {
    font-size: 16px;
    color: #666;
    font-family: 'Playfair Display', serif;
}

.testimonials .item-box .info {
    text-align: left;
    margin: 30px 0 15px 0;
}

.testimonials .item-box .info .author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    float: left;
    overflow: hidden;
}

.testimonials .item-box .info .cont {
    margin-left: 75px;
}

.testimonials .item-box .info h6 {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0px;
    padding-top: 10px;
    line-height: 1em;
}

.testimonials .item-box .info span {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-right: 5px;
}

.testimonials .item-box .info .rate {
    float: right;
}

.testimonials .item-box .info i {
    color: #FFB9AC;
    font-size: 10px;
}

.testimonials .owl-theme .owl-nav {
    position: absolute;
    left: -69%;
    bottom: 69px;
    margin-top: 0;
}

/* ======= galleria style ======= */
.gallery-slider {
    width: 100%;
    padding: 40px 0;
}

.slide-inner {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.slide-inner img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .slide-inner img {
        width: 100%;
        height: 450px;
        object-fit: cover;
    }
}

.gallery__section {
    padding: 80px 0;
    background-color: #fdf6f6;
    overflow: hidden;
    /* Ottimizzazione scroll */
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Stile titolo come richiesto */
.gallery-header {
    margin-bottom: 50px;
    text-align: center;
}

.gallery-header .subtitle {
    color: #8E8E8E;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.gallery-header .title {
    font-size: 2.5rem;
    color: #7B9C7B;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 400;
}

.line.line-hr-center {
    width: 80px;
    height: 2px;
    background-color: #7B9C7B;
    margin: 0 auto;
    border: none;
    opacity: 0.5;
}

/* Ottimizzazioni per lo slider */
.gallery-slider {
    width: 90%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px 0;
    /* Ottimizzazione performance */
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
}

.slide-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    height: 450px;
    /* Ottimizzazione GPU */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Placeholder per prevenire CLS */
.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
}


/* ======= Contact Style ======= */
#contatti {
    background-color: #ffffff;
}

.section-title {
    color: #7B9C7B;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.location-box {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-title {
    color: #7B9C7B;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #666;
}

.contact-info i {
    color: #7B9C7B;
    font-size: 1.2rem;
    margin-right: 1rem;
    min-width: 24px;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
}

.btn-contact {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;  
    color: white;
}

.btn-contact i {
    margin-right: 5px;
    font-size: 16px;
}

.btn-whatsapp { background-color: #25D366; }
.btn-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border: rgba(255, 255, 255, 0);}
.btn-download { background-color: #8D8D8D; }

.btn-contact:hover { opacity: 0.9; }

.google-map {
    height: 100%;
    min-height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .btn-contact span {
        display: none;
    }
    .btn-contact {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
    }
    .btn-contact i {
        margin: 0;
    }
}


/* ======= Contact style ======= */

#contactMap {
    width: 100%;
    height: 550px;
}

.betty-more-contact {
    background: #fafafa;
}


/* ======= Buttons ======= */

.butn {
    font-family: 'Rambla', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 10px 30px;
    background: #ffffff;
    position: relative;
    z-index: 3;
    -webkit-transition: all .4s;
    transition: all .4s;
    cursor: pointer;
    outline: none !important;
    overflow: hidden;
    border: none;
}

.butn span {
    position: relative;
    z-index: 2;
    color: #fff;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.butn:before,
.butn:after {
    content: '';
    width: 0;
    height: 100%;
    background: #222;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: width 0.4s;
    transition: width 0.4s;
    z-index: 1;
    opacity: .4;
}

.butn:after {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    background: #222;
    opacity: 1;
}

.butn:hover:before,
.butn:hover:after {
    width: 100%;
}

.butn:hover:after {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

.butn:hover span {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
    color: #fff;
}





.butn-dark {
    border: 1px solid #FFB9AC;
    background: #FFB9AC;
    font-family: 'Playfair Display', serif;
}

.butn-dark:hover {
    border: 1px solid #ffada2;
    background: #ff9587;
}

.butn-dark:before,
.butn-dark:after {
    background: #ff8474;
}

.butn-dark:hover span {
    color: #fff;
}

.butn-dark span {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-family: 'Playfair Display', serif;
}


/* ======= Footer ======= */

#footer .logo-img {
    min-width: 180px;
}

.main-footer {
    padding: 100px 0 0;
}

.main-footer.dark {
    background: #FAB4a7;
    color: #202020;
}

.main-footer .abot p {
    font-size: 15px;
    color: #202020;
}

.main-footer .abot .social-icon {
    margin-top: 20px;
}

.main-footer .abot .social-icon a {
    width: 45px;
    height: 45px;
    line-height: 49px;
    text-align: center;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.041);
    border-radius: 50%;
    margin-right: 3px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.main-footer .abot .social-icon a:hover {
    border-color: hsl(0, 0%, 100%);
    color: #ffffff;
}

.main-footer .usful-links ul {
    margin: 0;
    padding: 0;
}

.main-footer .usful-links ul li {
    font-size: 15px;
    margin-bottom: 5px;
}

.main-footer .usful-links ul li:hover {
    color: #202020;
}

.main-footer .usful-links ul li i {
    font-size: 7px;
    color: #202020;
    margin-right: 5px;
}

.main-footer .fothead h6 {
    color: #202020;
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.main-footer .fotcont .fothead h6 {
    position: relative;
    padding-bottom: 10px;
}

.main-footer .fotcont .fothead h6:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.25);
    height: 1px;
}

.main-footer .fotcont p {
    font-size: 15px;
    font-family: 'Rambla', sans-serif;
    color: #000000;
    margin-bottom: 0px;
}

.main-footer .sub-footer {
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.301);
}

.main-footer .sub-footer p {
    font-size: 14px;
    color: #000000;
}

.main-footer .logo h2 {
    font-weight: 400;
    font-size: 55px;
    color: #fff;
    line-height: 0.7em;
}

.main-footer .logo span {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #fff;
    font-weight: 400;
    font-style: italic;
    margin-left: 4px;
    line-height: 1.5em;
}


/* ======= Responsive ======= */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px !important;
    }
}

@media screen and (max-width: 991px) {
    .mb-md50 {
        margin-bottom: 50px;
    }

    .mb-md30 {
        margin-bottom: 30px;
    }

    .mb-md15 {
        margin-bottom: 15px;
    }

    .mb-md0 {
        margin-bottom: 0;
    }

    .md-text-center {
        text-align: center !important;
    }

    .bg-fixed {
        background-attachment: scroll !important;
    }

    .header {
        background-attachment: scroll !important;
        background-position: 50% 0% !important;
    }

    .header .caption h4 {
        font-size: 30px;
    }

    .header .caption h1 {
        font-size: 45px;
        line-height: 1.2;
    }
}

@media screen and (max-width: 767px) {
    .line-one {
        display: none;
    }

    .mb-sm50 {
        margin-bottom: 50px;
    }

    .mb-sm30 {
        margin-bottom: 30px;
    }

    .hero .intro h3 {
        font-size: 28px;
    }

    .hero .intro h4 {
        font-size: 20px;
    }

    .header .caption h4 {
        font-size: 15px;
        color: #fff;
    }

    .header .caption h1 {
        font-size: 45px;
        margin: 5px 0;
    }

    .header .caption p {
        font-size: 15px;
    }

    .header .caption .butn {
        margin-top: 15px !important;
    }

    .portfolio .filtering span {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 480px) {
    .section-head h4 {
        font-size: 30px;
    }

    .text-left {
        text-align: center;
    }

    .text-center {
        text-align: center;
    }

    .text-right {
        text-align: center;
    }
}

.line-hr-left {
    width: 100px;
    border-top: 1px solid rgb(123, 156, 123);
    margin: 10px 0 5px 0;
}

.line-hr-left-white {
    width: 80px;
    border-top: 1px solid #FFB9AC;
    margin: 0 0 10px 0;
}

.line-hr-footer-white {
    width: 40px;
    border-top: 1px solid #fff;
    margin: 3px 0 15px 0;
}

.betty-contact-info2 {
    padding: 10px 0px;
}

.betty-contact-info2 .feat-inner2 {
    padding: 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.betty-contact-info2 .feat-inner2:last-child {
    border-bottom: 0px solid rgba(0, 0, 0, 0.05);
}

.betty-contact-info2 .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 40px;
    border-radius: 50%;
    margin-right: 5px;
    text-align: center;
    position: relative;
    z-index: 3;
    float: left;
    color: #e52e71;
}

.betty-contact-info2 .feat-info2 {
    overflow: hidden;
}

.betty-contact-info2 h5 {
    font-size: 16px;
    margin-bottom: 0px;
    margin-top: 0px;
    font-family: 'Playfair Display', serif;
    color: #000;
}

.betty-contact-info2 h6 {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
    font-family: 'Rambla', sans-serif;
}