@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;500;600;700;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box ;
}  

body { 
    font-weight: 500;  
    font-style: normal;
    font-size: 16px;
    color: #0c0c0c;  
    font-family: 'Lato', sans-serif !important;
} 
 
.logo{ 
    width: 110px; 
}

.navbar{
    /* background-color: #000ec0; */
    background-color: #0413e8;
    padding: 1% 5% 1%; 
}  

.nav-link{ 
    color: rgb(255, 255, 255) !important; 
}

.mt-45{
    margin-top: 45px;
}
.box{
    padding: 2rem;
    text-align: justify;
}

a{
    text-decoration: none !important;
}

.h-box{
    padding: 5rem 4rem 6rem;
    text-align: justify;
}

.h-services{
    background-color: #086194 ;
    padding: 50px 0 50px;
}

.h-vision{
    background-color: #ffffff ; 
    padding: 50px 0 50px;
}

.h-card{
    background-color: white;
    border: #0c0c0c solid 1px;
    padding: 10%;
    border-radius: 2rem;
    color: black; 
}

.h-product{
    background-color: #086194 ;
    padding: 50px 0 50px;
}

.a-images{
    width: 100%;
    max-height: 200px;
    min-height: 200px;
    object-fit: contain;
}

.c-black{
    background-color: #000000;
}
.bg-silver{
    background-color: #e5e5e5;
}

.light-blue{
    color: #086195;
}

.content-img img{
    width: 100%;
}

.h-btn {
    padding: 1em 2em;
    border: none;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #000000;
    transition: all 1000ms;
    font-size: 10px;
    position: relative;
    overflow: hidden;
 
  }
  
.h-btn:hover {
    color: white;
    transform: scale(1.1);
  }
  
.h-btn::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #576166;
    transform: skewX(45deg);
    z-index: -1;
    transition: width 1000ms;
  }
  
.h-btn:hover::before {
    width: 250%;
  }

  .layout {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.layout>*:nth-child(3) {
    grid-row: 2;
    grid-column: 1 / span 2;
}

.layout>*:nth-child(4) {
    grid-row: 1 / span 2;
    grid-column: 3;
}


.image-container {
    position: relative;
    overflow: hidden;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 10px 20px;
    opacity: 1;
    transition: opacity 0.3s;
}

.image-container img {
    max-width: 100%;
    transition: transform 0.3s; /* Add zoom transition */
    object-fit: cover;
    object-position: center;
}

.image-container:hover img {
    transform: scale(1.1); /* Adjust the zoom level as needed */
}

.text {
    color: white; /* Text color */
    font-size: 24px; /* Text size */
}

.layout img {
    max-width: 100%;
}

.layout > *:nth-child(4) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-about{
    background-image: url(../images/aboutus.png) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    height: 70vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;  
}

.send-btn {
    background: royalblue;
    color: white;
    padding: 10px 15px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 7px;
    overflow: hidden;
    transition: all 0.2s;
}

.send-btn span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
}
  
.send-btn svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}
  
.send-btn:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
}
  
.send-btn:hover svg {
    transform: translateX(1.2em) rotate(45deg) scale(1.1);
}
  
.send-btn:hover span {
    transform: translateX(5em);
}
  
.send-btn:active {
    transform: scale(0.95);
}


  
@keyframes fly-1 {
    from {
      transform: translateY(0.1em);
    }
  
    to {
      transform: translateY(-0.1em);
    }
}
  
.location-info label{
    font-weight: bold;
    color: rgb(223, 161, 38) ;
    margin-bottom: 10px;
}

.location-info p{
    padding-bottom: 18px;
    color: white;
    margin-bottom: 20px;
}

.store-info label{
    font-weight: bold;
    color: rgb(0, 0, 0) ;
    margin-right: 10px;
}

.store-info p{
    font-size: 20px;
    padding-bottom: 18px;
}

.store-n {
    font-size: 23px !important;
    font-weight: bold;
}

.flex{
    display: flex; 
}

.flex p{
    margin-right: 30px;
}

.dropdown-menu{
    border: #000000 1px solid !important;
}

.nav-link:after {    
    background: none repeat scroll 0 0 transparent;
    bottom: 5;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute; 
    background: #ffffff;
    transition: 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}
 
.nav-link:hover:after { 
    width: 60%;
    left: 20%; 
}

.navbar-nav li{
    position: relative; 
}

.dropdown-toggle::after {
    content: none;
}

.nav-item{
    padding: 8px;
}

.h-500{
    min-height: 500px;
}
.s-card{
    background: linear-gradient(17deg, rgba(176, 172, 172, 0.188) 0%, rgba(231 231 231) 35%, rgba(241 241 241) 100%);
    border: #43568a solid 1px;
    padding: 10%;
    border-radius: 2rem;
    color: black;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.mt-80{
    margin-top: 80px;
}

.py-10{
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.pt-t{
   padding-top: 4rem; 
}

.pb-b{
    padding-bottom: 5rem;
}
.bg-banner{
    background: #086194;
}

.lh-3{
    line-height: 3rem;
}

.f-gift{
    background-color: whitesmoke;
    box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
}

.redemption-form .form-control:focus {
    border-color: none; 
    box-shadow: none; 
  }

.redemption-form .form-control{
    border: none;
    border-radius: 0;
    border-bottom: 1px solid !important; 
}

.redemption-form input[type="number"]::-webkit-inner-spin-button,
.redemption-form input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.contact-form .form-control:focus {
    border-color: none; 
    box-shadow: none; 
}

.contact-form .form-control{
    border: none;
    border-radius: 0;
    border-bottom: 1px solid !important;
}
.map-size{
    height: 100%;
    min-height: 400px;
    width: 100%;
}

.v-line{
    position: relative;
    width: 1px;
    min-height: 550px; 
    background-color: #000; 
    top: 50%;
    left: 50%;
}

.pointer {cursor: pointer;}


.card-img{
    width: 100%;
    height: 400px;
    object-fit: contain;  
}
.border-gray{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 0.5rem;
}
.hover-gray:hover{
    color: #51575e !important ;
}
.hover-opacity:hover{
    opacity: 0.75;
} 
.hover-opacity-5:hover{
    opacity: 0.5; 
} 
.masonry-item {
    margin-bottom: 20px; 
}
.owl-item img {
    max-height: 700px; 
    object-fit:contain;
}

.promo-image-control{
    object-fit: contain;
    max-height: 900px;
}

.box-shadow-1{
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.owl-dots{
    position: absolute;
    bottom:1%;
    text-align:center;
    width:100%;
}

.owl-prev, .owl-next{
    position:absolute;
    top:50%;
    font-size:30px !important;
    transform:translate(-50%,-50%); 
}

#banner-slider-carousel .owl-nav button{
    height:50px ;
    width:50px ;
    background-color:rgb(255,255,255,0.8);
    box-shadow:0 3px 10px rgba(0,0,0,0.15);
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    margin: 0;
}

#banner-slider-carousel .owl-nav button:hover{
    background-color:rgba(0,0,0,0.7);
}

.owl-prev{
    left:0;
}

.owl-next{
    right:0;
}

#banner-slider-carousel .item img {
    object-fit:cover;
    width: 100%;
    height:100% !important;
    max-height:none !important;
} 
#banner-slider-carousel .item {
    width: 100%;
    height: 36vw;
} 

/*MOBILE VIEW*/
@media (max-width: 991px) 
{ 
    .logo{
        width: 60px;
    } 

    .h-box{
        padding: 3rem 2rem 4rem;
        text-align: justify;
    }

    .h-services{
        background-color: #086194 ;
        padding: 40px 0 40px;
    }

    .h-product{
        background-color: #086194 ;
        padding: 40px 0 40px;
    }

    footer .box{
        padding: 1rem;
    }

    .bg-about{
        height: 250px;
    }
    
    .bg-product{
        height: 250px;
    }
    .bg-gift{
        height: 250px;
    }

    .store-info p{
        font-size: 14px;
    }

    .h-btn {
        font-size: 8px;
      }

    .h-500{
        min-height: 350px;
    }

    .column-reverse{
        flex-direction: column-reverse;
    }
    .xs-block{
        display: none;
    }

    .mt-80{
        margin-top: 40px;
    }

    .py-10{
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .pt-t{
        padding-top: 3rem; 
     }
     
     .pb-b{
         padding-bottom: 3rem;
     }

     .lh-3{
        line-height: 2rem;
     }

     .nav-link:hover:after { 
        width: 20%;
        left: 40%;  
    }

    .card-img{
        height: auto;
    }
}   

@media (min-width: 992px){
    .dropdown-menu{
        top: 125% !important; 
        box-shadow: 0px 0px 2px rgba(0, 0, 1, 0.18); 
    }
}
