*{
    font-family: 'Nova Square', cursive;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3{
    font-family: 'Rajdhani', sans-serif;
    color: var(--dr);
}

:root{
    --dr: darkred;
    --or:#C67F7F;
    --wh: #ececec;
}

/* preloader */

/* *, *::after, *::before {
    box-sizing: border-box;
  }
  
.preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background: rgb(23, 22, 22);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: opacity 0.3s linear;
  }
  
.page-content {
    max-width: 768px;
    margin: 0 auto;
  } */

    /* preloader 2 */

  /* CSS start - For Live Project */
.preloader {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: #fff;
    background-color: #000000;
    font-family: Consolas, Menlo, Monaco, monospace;
    font-weight: bold;
    font-size: 30vh;
    z-index: 1099;
  }
  
  .preloader span {
    display: inline-block;
    opacity: 0.8;
    animation: pulse 0.4s alternate infinite ease-in-out;
  }
  .preloader span:nth-child(odd) {
    animation-delay: 0.4s;
    z-index: 1100;
  }
  
  @keyframes pulse {
    to {
      transform: scale(0.8);
      opacity: 0.5;
    }
  }
  
  .preloader.hidden {
    animation: fadeOut 1s;
    animation-fill-mode: forwards;
  }
  
  @keyframes fadeOut {
    100% {
      opacity: 0;
      visibility: hidden;
    }
  }
  /* CSS end - For Live Project */
  
  
  /* Classes for Example Page Content */
  
  .imagen {
    display: inline-block;
    height: auto;
    width: auto;
    margin: 0px;
    padding: 0px;
  }

  /* end preloader */

.text--dr{
    color: var(--dr);
}

.bg-color-wh{
    background-color: var(--wh);
}

.bg-color-dr{
    background-color: var(--dr);
}

.text-color-wh{
    color: var(--wh);
}

/* stiky button */

.stikyButton {
    position: fixed;
    z-index: 9999;
    bottom: 25px;
    right: 25px;
    border-radius: 50% ;
    border: 2px solid #8f1111;
    background-color:rgba(255, 255, 255, 0.467) ;
    color: #dd2f2f;
    width: 100px;
    height: 100px;
    transition: 0.5s;
}
.stikyButton:hover {
    transform: scale(1.5);
}
 

/* navbar */

.navbar {
    z-index: 100;
}

.bg-navbar-custom{
    background-color: var(--wh);

}

.posi-top{
    position: fixed;
    width: 100%;
    top: 75px;
    z-index: 3;
}

.logo{
    width: 150px;
    background-color: var(--wh);
    
}

.nav-link{
    color: black;
}

.link-margin{
    margin: 0px 50px;
}

.nav-link:hover{
    color: var(--or);
}

/* header */

.col-titolo{
    height: 70%;
}

.div-hide{
    height: 155px;

}

.bg-header{
    height: 100vh;
    width: 100%;
    background: linear-gradient( var(--wh), transparent ), url(./media/switzerland-862870_1920.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 130px;
    background-attachment: fixed;
}

.img-header{
    position: absolute;
    bottom: -1px;
    width: 100%;
    left: 0px;
    
}

.titolo{
    font-size: 100px;
    color: var(--dr);
}

/* Frase */

.frase-impatto{
    position: relative;
}

.frase-impatto::before{
    content: open-quote;
    font-size: 50px;
    position: absolute;
    color: var(--dr);
    left: -5%;
    top: -30%;
}

.frase-impatto::after{
    content:close-quote;
    font-size: 50px;
    position: absolute;
    color: var(--dr);
    left: 55%;
    top: 52%;
}

/* Icone */

.fa-snowflake, .fa-mountain, .fa-map, .fa-tree{
    color: var(--dr);
}

.icone{
    color: var(--dr);
}

.line{
    width: 80%;
    height: 3px;
    background-color: var(--dr);
    position: relative;
}



.line::before{
    content: "";
    height: 20px;
    width: 20px;
    border: 3px solid var(--dr);
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 10px);

}

/* Paragrafi e bottone */

.row-100{
    height: 70vh;
}
@media screen and (max-width:800px){
    .row-100{
        height: 80vh;
    }
    
}

.bg-section-03{
    background: linear-gradient(rgb(255, 255, 255), rgba(255, 0, 0, 0));
    height: 100vh;
    width: 100%;
    position: relative;
}
.mt-50{
    margin-top: 300px;
}

.alberi-bianchi{
    position:absolute;
    bottom: 0px;
    background: linear-gradient( rgba(255, 255, 255, 0.996) , rgba(255, 255, 255, 0) ), url(./media/switzerland-862870_1920.jpg);
    background-attachment: fixed;
}

.separator {
    position: absolute;
    z-index: 2;
    height: 700px;
    background: linear-gradient( rgba(255, 255, 255, 0.996) 50%, rgba(219, 6, 6, 0) );
}

.separatorLine {
    height: 50px;
}

.z-indexUp {
    z-index: 5;
}

.up {
    z-index: 200 !important;
}

.indexPlus {
    z-index: 1;
}

.button-custom{
    height: 50px;
    width: 190px;
    border: 2px solid var(--dr);
    background-color: var(--dr);
    color: var(--wh);
    transition: 0.5s;

  
}

/* .button-custom:hover{
    background-color: var(--or);
    transform: scale(1.3);
    transition: 0.3s;
} */

.button-custom:hover{
    transform: scale(1.3);
}

/* Timeline */

.titolo-timeline, .p-timeline{
    border-left: 3px solid var(--dr);

}

.timeline-ms-50{
    margin-left: 150px;
    position: relative;
}

.bg-timeline{
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 50%;
    z-index: -1;
}
.bg-timeline-colorfix {
    filter: invert(100%) sepia(1%) saturate(6481%) hue-rotate(246deg) brightness(102%) contrast(1%);
}
.bg-timeline-sm{
    width: 50%;
}

@media screen and (max-width: 800px){
    .timeline-ms-50{
        margin-left: 0px;
    }
    
}


.titolo-timeline{
    color: var(--dr);
    position: relative;
}


.titolo-timeline::before{
    content: "";
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 3px solid var(--dr);
    background-color: white;
    position: absolute;
    left: calc(-17px);
    top: calc(0px);
}


/* Our Team */

.pt-50{
    padding-top: 20vh;
}

.text-at-end{
    text-align: end;
}

@media  screen and (max-width:800px) {
    .moving-text{
        text-align: center;
    }
    
}

.card-img-top{
    height: 150px;
    width: 150px;
    padding: 5px;
    border-radius: 50%;
    border: 2.5px solid var(--dr);
}

.card{
    background-color: transparent;
    border: none;
}

.h5{
    font-size: 25px;
}

.card-text{
    font-size: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-style: italic;
}

.fa-1x{
    color: var(--dr);
}

/* Our Benefit */

.margin-lg{
    padding-left: 150px;
    padding-right: 0px;
}
.margin-lg2{
    padding-right: 150px;
    padding-left: 0px;
}

@media screen and (max-width:1200px){
    .margin-lg{
        padding:0px 30px;
    }
    .margin-lg2{
        padding:0px 30px;
    }
}

.img-benefit{
    height: 250px;
    width: 250px;
    border-radius: 50%;
    border: 2.5px solid var(--dr);
    padding: 5px;
}

.bg-superwhite{
    width: 100%;
    height: 60vh;
    background-color: var(--wh);
    position: relative;
}

.red-trees{
    position: absolute;
    bottom: 0px;
    right:0px;
    width: 100%;
}

@media screen and (max-width:1200px) {
    .bg-superwhite{
        width: 100%;
        height: 40vh;
        background-color: var(--wh);
        position: relative;
    }
    
}

/* Footer */

.posi-footer-lg{
    padding-left: 150px;
    padding-right: 50px;
}

@media screen and (max-width:1200px){
    .posi-footer-lg{
        padding:0px 30px;
    }
    .bg-header {
        background-attachment: scroll;
    }
    .alberi-bianchi {
        background-attachment: scroll;
    }
}

li{
    list-style: none;

}

.bottone{
    height: 50px;
    width: 190px;
    border: 2px solid var(--dr);
    background-color: var(--dr);
    color: var(--wh);
}

.bottone:hover{
    transform: scale(1.3);
}

@media screen and (max-width:990px) {
    .reverse {
        flex-direction: column-reverse;
      }
}