@charset "utf-8";
/******************************************************************
  Project Name:
 

/*------------------------------------------------------------------
[Table of contents]

1.  Template default CSS
	1.1	Variables
	1.2	Mixins
	1.3	Flexbox
	1.4	Reset
2.  Helper Css
3.  Header Section
4.  Hero Section
5.  Banner Section
6.  Product Section
7.  Intagram Section
8.  Latest Section
9.  Contact
10.  Footer Style
-------------------------------------------------------------------*/

/*----------------------------------------*/

/* Template default CSS
/*----------------------------------------*/



::-webkit-input-placeholder {
    color: var(--color-foreground);
}

::-moz-placeholder {
    color: var(--color-foreground);
}

:-ms-input-placeholder {
    color: var(--color-foreground);
}

::-ms-input-placeholder {
    color: var(--color-foreground);
}

::placeholder {
    color: var(--color-foreground);
}


@media (prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: auto
    }
}


a,a:hover{text-decoration:none;}


dd,
dl,
dt,
li,
ol,
ul {
    margin: 0;
    padding: 0
}


::selection {
    background: vvar(--primary-color);
    color: #fff;
    text-shadow: none
}

::-moz-selection {
    background: var(--color-primary);
    color: #fff;
    text-shadow: none
}

::-webkit-selection {
    background: var(--color-primary);
    color: #fff;
    text-shadow: none
}

:active,
:focus {
    outline: 0 !important
}



