
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');


:root {
  --angle: 45deg;
  --opacity: 0.5;
}


body {
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  display: flex;
}
html {
  height: -webkit-fill-available;
}



img{ max-width: 100%; }
ul,li{ list-style: none; margin: 0; padding: 0; }

a,a:hover{ color: #fff; text-decoration: none; }

/* Animation Delay */

.delay_1 { animation-delay: .25s;}
.delay_2 { animation-delay: .5s; }
.delay_3 { animation-delay: .75s; }
.delay_4 { animation-delay: 1s; }

.main_container{
  background: #171819 url("../images/bg.jpg") no-repeat center center;
  background-size: cover; 
  min-height: 100%; width:100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
}

/* Pattern Border Start */ 
.pattern_border{ position: relative; }
.pattern_border:before,.pattern_border:after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 100%;
  background: url(../images/pattern-9.svg) center repeat;
  z-index: 1;
}

.pattern_border:after{
  right: 0; left: auto;
}


/* Circle Shape Start */

.circle_shape{
  position: absolute;
  left: 5%;
  top: 45%;
  transform: translateY(-50%);
  width: 150px;
  -webkit-animation: zoom-img 3s infinite linear;
  animation: zoom-img 3s infinite linear;
}
.right_side{ left: auto; right: 5%; }

.corner_circle_shape{
  position: absolute;
  left: -110px;
  bottom: -110px;
  width: 250px;
  -webkit-animation: spin-clockwise 10s infinite linear;
  animation: spin-clockwise 10s infinite linear;
}

.right_top{ left: auto; bottom: auto; top: -110px; right: -110px; }


@-webkit-keyframes spin-clockwise {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    };
}

@keyframes spin-clockwise {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    };
}


@-webkit-keyframes zoom-img {
    0% {
        -webkit-transform: scale(0.7);
                transform: scale(0.7);
    }

    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
    };
}

@keyframes zoom-img {
    0% {
        -webkit-transform: scale(0.7);
                transform: scale(0.7);
    }

    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
    };
}



@-webkit-keyframes shine {
    100% {
      left: 125%;
    }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}



.logo{
  position: relative;
  max-width: 210px;
  margin: 20px auto 5px;
}

.logo img{ max-height: 200px; }
.logo_sub{
	position: absolute;
	top: 0; left: 0;
}

.separator_line{ max-width: 100px; margin: 0 auto; }

.category_list{ min-width: 80%; }
.category_list ul{ display: flex; justify-content: space-around; }

.offer-block{ margin: 30px 0; }
.offer-block .inner-box{
  position: relative;
  display: block;
  text-align: center;
}

.offer-block .inner-box h3 a{ display: flex; justify-content: center; gap:5px;transition: all 0.2s ease-in-out;  }
.offer-block .inner-box h3 a:hover{ gap:20px; }

.offer_txt{ color: #fff; max-width: 450px; margin: 0 auto; text-align: center; }

.pattern_img_box{
  position: relative;
  display: block;
  overflow:hidden;
  padding: 30px;
  margin-bottom: 25px;
}

.pattern_img_box a{
    position: relative;
    overflow: hidden;
    display: block;
}

.pattern_img_box a:after{
  position: absolute;
  top: 0;
  left: -85%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .4) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .4)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .4) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}

.pattern_img_box:hover a:after{
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.pattern_img_box:before{
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -70px;
  width: 140px;
  top: 0;
  bottom: 0;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  background: url(../images/pattern-8.svg) center repeat;
}

.pattern_img_box:hover:before{
  transform:rotateY(180deg);
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}

.pattern_img_box img{
  position: relative;
  display: block;
  width: 100%;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.pattern_img_box:hover img{
  transform:scale(1.04,1.04);
}



@media only screen and (max-width: 575px) {
  
  .category_list ul{ flex-direction: column; }
  .circle_shape,.corner_circle_shape{ display: none; }
}



