@import url('https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap');
:root{
    --primary:#ffbb00;
    --secondary:#ffca22;
    --third:#34332e;
    --white:#fff;
    --gray:#ccc;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
}
a{
    color: var(--primary);
    transition:all 0.5s ease;
}

a:hover {
    text-decoration: none;
    color: var(--third);
}
header{
    box-shadow:0 0 5px 3px rgba(0,0,0,0.25);
}
.icon_1 i {
    color: var(--primary);
    font-size: 30px;
}

.top-hdr-text p {
    font-size: 1rem;
    color: var(--primary);
}

.logo_icon{
    width:200px;
}

.banner img{
    width:100%;
}
.main
{
    position: relative;
    z-index: 3;
    padding:5rem 0;
}
.welcome_text
{
    z-index: 9999;
}
section.main::before {
    content:'';
    position:absolute;
    width:200px;
    height:200px;
    top:10%;
    left:10%;
    background:var(--primary);
    border-radius:50%;
    opacity:0.1;
    transition:all 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045);
    z-index:1;
}

section.main::after {
    content:'';
    position:absolute;
    width:200px;
    height:200px;
    top:20%;
    left:20%;
    background:var(--primary);
    border-radius:50%;
    opacity:0.1;
    transition:all 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045);
    z-index:1;
}
section.main .welcome_img img{
    transition:transform 0.5s ease;
}
section.main:hover .welcome_img img{
    transform:scale(1.1);
}

section.main:hover::before{
    animation:bigbox 2s ease infinite;
}
section.main:hover::after{
    animation:bigbox 2s ease infinite;
    animation-delay: 1s;
}
@keyframes bigbox{
    0%,100%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.2);
    }
}

.title{
    text-transform: uppercase;
    font-size:4rem;
    padding:2rem 0;
}
.welcome_text p{
    line-height:1.5rem;
}

.gallery{
    padding:5rem 0;
    background:rgb(36, 35, 35);
}

.gallery h2{
    font-size: 2.5rem;
}

.gallery .gallery-inner{
    padding:3rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.gallery .gallery-inner .item{
    flex: 0 30%;
    margin-bottom:3rem;
    position: relative;
}
.gallery .gallery-inner .item img{
    width:100%;
    position: relative;
    z-index: 1;
    transition:all 0.5s ease;
    cursor: pointer;
}

.gallery .gallery-inner .item::after{
    content: '';
    position: absolute;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    background: linear-gradient(to right,var(--primary),var(--white));
    left: -5px;
    top: -5px;
    transition:all 0.5s ease;
}

.gallery .gallery-inner .item:hover::after{
    background: var(--primary);
}

.gallery .gallery-inner .item a.read-more{
    position: absolute;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width:100%;
    height:100%;
    background:black;
    color:var(--primary);
    left:0;
    top:0;
    opacity: 0;
    z-index: -1;
    transition:all 0.5s ease;
}

.gallery .gallery-inner .item:hover a.read-more{
    opacity:1;
    z-index: 99;
}

.rdmore{
    display: inline-block;
    padding: 10px 20px;
    background:#69cd72;
    color: var(--white);
    transition:0.3s all;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    outline:0;
    border:0;
    cursor: pointer;
}

.rdmore:focus{
    outline:none;
    box-shadow: 0 0 5px 2px #69cd72;
}
.rdmore span{
    position: relative;
    z-index: 2;
}
.rdmore::after{
    content:'';
    position: absolute;
    width:100%;
    height:100%;
    background:#2d7f35;
    transform: scaleY(0);
    transform-origin: top;
    top:0;
    left:0;
    z-index: 1;
    transition:0.3s all;
}

.rdmore:hover{
    color:white;
}
.rdmore:hover::after{
    transform: scaleY(1);
}


.footer_sec {
    background-image: url('../../img/footer_bg.jpg');
    background-size: cover;
    background-position: bottom;
    padding: 30px 50px;
    color:var(--primary);
}

.footer_sec p i {
    margin: 5px;
    color:var(--primary);
}

.sicon i {
    margin: 5px;
    font-size: 25px;
   
}

.footer_sec .sicon i:hover {
    color: var(--primary);
    transition: .2s all;
    transform: scale(1.2) translateY(-5px);
    color:var(--third);
}

.cname {
    color: var(--primary);
    font-size: 25px;
    font-weight: 700
}

.footer_sec h4 {
    font-size: 30px;
    color:var(--primary);
}

.qlinks {
    list-style-type: none;
    padding-left: 10px
}

.qlinks li a {
    text-decoration: none
}

.qlinks li:hover a,
.qlinks li:hover i {
    color: var(--primary);
    transition: .5s all
}

.footer_sec p a {
    text-decoration: none;
    transition: .5s all
}

.footer_sec p a:hover {
    color: var(--primary)
}

.ftr_bt {
    background-color: var(--primary);
    padding: 8px 50px;
    padding-top: 20px;
    overflow: hidden;
    display:flex;
    justify-content: space-between;
}

.ftxt {
    color: #fff;
    text-align: center
}
.ftxt a{
    color:white;
    text-decoration: underline;
    font-weight: 800;
    display: inline-block;
    animation:anm linear 0.5s infinite;
}
@keyframes anm{
    0%,100%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.05);
    }
}
.ftxt a:hover{
    text-decoration: none;
}
.modal-backdrop.show{
    opacity: 1;
    backdrop-filter: saturate(180%) blur(10px);
    background-color: rgba(0,0,0,0.5)!important;
}
.product-image{
    width:100%;
    height:250px;
    overflow: auto;
}
.product-image img{
    width:100%;
}

/* width */
::-webkit-scrollbar {
    width: 2px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--primary);
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  @media screen and (max-width:767px){
      .top-hdr .col-md-4.align-items-center:nth-child(1){
        justify-content: center;
        padding-bottom: 1rem;
      }
      .footer_sec{
          padding:0;
      }
      .gallery .gallery-inner{
        padding:3rem 1rem;
      }
      .gallery .gallery-inner .item{
          flex: 0 100%;
      }
      .ftr_bt{
          padding:8px 1rem;
          flex-wrap: wrap;
      }
      .ftr_bt p{
          flex:1 100%;
      }
  }