html {
  scroll-behavior: smooth!important;
}
*:focus {
	outline: none !important;
	box-shadow: none !important;
}

.w-50px{
    width: 50px;
}

.w-300px{
    width: 300px;
}

.gap-10px{
    gap: 10px!important;
}


.logo {
  position: relative;
  overflow: hidden;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo img {
  width: 70%;
  height: 70%;
  object-fit: cover;
}

/* Navbar 1 */
.nav1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  width: 100%;
  height: 45px;
  position: relative;
}

.nav1 .link-container {
  display: flex;
  gap: 10px;
  height: 100%;
}
.nav1 .link-container div.active,
.nav1 .link-container div.active a {
  background-color: #fdc700;
  font-weight: bold;
}
.nav1 .link-container div {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  transition: all 0.3s ease;
}
.nav1 .logo-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.nav1 a {
  text-decoration: none;
  color: #000000;
  text-transform: uppercase;
  font-size: 14px;
}

.menu-btn-1 {
    display: none;
  }
  
/*navbar*/

.container-img-row{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.container-img-row .img-div{
    position: relative;
    width: 300px;
    height: 470px;
    overflow: hidden;
}

.container-img-row img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.container-img-row .text{
    position: absolute;
    top: 0;
    color: white;
    display: flex;
    justify-content: start;
    align-items: end;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.275);
    width: 100%;
}

.container-img-row p{
    padding-left: 25px;
    font-size: 24px ;
}

.form-wrapper{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-wrapper .input-wrapper{
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.form-wrapper input, .form-wrapper select{
    padding: 15px 5px;
    border-radius: 5px;
    outline: none;
    border: none;
    border: 1px solid #3e3e3e;
}

@media (max-width: 768px) {
  .nav1 .link-container {
    overflow: hidden;
    opacity: 0;
    transition: all 0.2s ease-in-out;
    position: absolute;
    right: 0;
   top: 100%;
    background: white;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    padding: 0 10px;
    z-index: 999;

}

  .nav1 .link-container.open {
    height: 200px;
    opacity: 1;
    padding: 10px;
     top: 100%;
  }
  .menu-btn-1 {
    font-size: 30px;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s ease-in-out;
  }
  .menu-btn-1:hover {
    background-color: rgba(128, 128, 128, 0.327);
    border-radius: 100%;
    cursor: pointer;
  }
  
  
  .hero-content{
      flex-wrap: wrap-reverse!important;
  
  }
  
  .sub-hero-pic-2{
      margin-bottom: 0!important;
      margin-top: 130px!important;
  }
  
  .m-flex-col{
        flex-direction: column;
    }
}

/* End Navbar 1 */