

@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900");

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    font-family: Poppins;
    scroll-behavior: smooth;
}
.museomoderno-logofont {
  font-family: "MuseoModerno", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.crimson-pro-logofont {
  font-family: "Crimson Pro", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: light;
}

.top-row-ctr {
  position: relative;
  width: 100vw;
  max-height: 130px;
}

.logo-ctr {
    max-width: 80px;
    max-height: 115px;
    display: inline-block;
    text-align: center;
    margin-left: 2%;
    margin-top: 5px;
}

.full-view-ctr {
  width: 100vw;
  height: 95vh;
  margin: 0;
}

.brd {
  border: solid 3px red;
}



.image-container {
    position: relative;
    height: 65vh;
    background-size: cover;
    background-position: center center;
    transition: background-image 1s ease-in-out;
}

.image-bck-fullview {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center center;
  transition: background-image 1s ease-in-out;
}

.bck-overlay {
    position: absolute;
    top:5%;
    width: 100%;
    height: 100vh;
   
    
    color: white;
   
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
}






.card :hover{
    animation: bounce 1s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    60% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}


.bounce {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 10px;
}

.white-txt {
  color: whitesmoke;
}



.whitesmoke-clr {
    background-color:whitesmoke;
}

.dark-bg-ctr{
position: relative;
width:100%;
height: auto;
background-size: cover;
background-position: center center;
background-color: black;
color: azure;
}

.black-txt {
  color: #000;
}

.service-box {
  min-height: 260px;
}





.arrow_container {
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0px auto;
  }


  .chevron {
    position: absolute;
    width: 42px;
    height: 10px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
  }


  .chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}
 
.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}
 
.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}


.chevron:first-child {
    animation: move 3s ease-out 1s infinite;
  }
   
  .chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
  }

  .text {
    display: block;
    margin-top: 30px;
    margin-left: -20px;
    font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: .25;
    animation: pulse 2s linear alternate infinite;
  }

  @keyframes pulse { 
    to {
        opacity: 1;
      }
    }
    @keyframes move {
      25% {
        opacity: 1;
     
      }
      33% {
        opacity: 1;
        transform: translateY(30px);
      }
      67% {
        opacity: 1;
        transform: translateY(40px);
      }
      100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
      }
    }



    .service-box {
      padding: 20px;
      margin: 15px;
      background-color: #f8f9fa;
      border: 1px solid #ddd;
      border-radius: 8px;
      text-align: center;
      transition: transform 0.3s ease;
    }
    .service-box:hover {
      transform: scale(1.05);
    }
    .service-box h3 {
      margin-bottom: 15px;
    }
    .service-box p {
      font-size: 1.1rem;
      color: #6c757d;
    }












    .tab-content {
        display: none;
    }
    
    .tab-content.active {
        display: block;
    }
    
    .nav-link.active {
        font-weight: bold;
    }


    .step-img {
        max-width: 100%;
        height: auto;
    }
    .step-row {
        margin-bottom: 2rem;
    }


    .style-img {
        max-width: 400px;
        height: auto;
    }