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

:root {
	--heading-color: #292929;
	--bg-color: #f5f5f5;
	--bg-color-2: #fcfcfc;
	--bg-color-3: #EEEEEE;
	--body-color: #6A6A6A;
	--theme-color: #279AD6; /* #E22555 */
	--theme-color-2: #254FF0;
	--thm-clr-1: #076CEC;
	--thm-clr-3: #4E97FD;
	--white-color: #fff;
	--black-color: #000;
	--light-color: #EFEFEF;
	--border-color:#E3E8FE;
	--lightgrey-color: #ccc;
	--ft-1: 'Roboto', sans-serif;
    --ft-2: 'Poppins', sans-serif;
	--bx-1: 0 20px 27px rgba(238,238,238,.47);
	--bx-2: 0 3px 21px rgba(206,206,206,.16);
	--bx-3: 0 0 30px rgba(238,238,238,.47);
	/*	Fancy Border Radius*/
	--background: #076CEC;
	--primary: #4E97FD;
	--secondary: #254FF0;
	--third: #E22555;
}

.bg-2 {
	background: var(--bg-color-2);
}

.bg-3 {
	background: var(--bg-color-3);
}

html,body {
	height: auto;
    width:100%;
    margin:0;
    padding:0;
    overflow-x: hidden;
    font-size: 62.5%;
	box-sizing:border-box;
}

body {
	font-family: var(--ft-1);
	font-style: normal;
	color: var(--body-color);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.8rem;
	-moz-osx-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}

a{
    color: var(--body-color);
}

a,
a:active,
a:focus,
a:hover{
    outline:none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	text-decoration: none;
}

a:hover{
    color:#666;
}

ul {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

h1, h2, h3, h4, h5, h6{
    color:var(--heading-color);
    margin:0 0 1.5rem 0;
    font-weight: 600;
    font-family: var(--ft-2);
	line-height: 1.2;
}

h1{
    font-size:48px;
}

h2{
    font-size:36px;
}

h3{
    font-size:30px;
}

h4{
    font-size:24px;
}

h5{
    font-size:18px;
}

h6{
    font-size:14px;
}

p{
	margin-bottom: 1.5rem;
	color: var(--body-color);
	line-height: 2.8rem;
}

.img,img{
	max-width: 100%;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	height:auto;
}

hr {
  padding: 0px;
  border-bottom: 1px solid #eceff8;
  border-top: 0px;
}

label {
  color: #999;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #555;
  color: #fff;
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 1.4rem;
  opacity: .5;
}

*::placeholder {
  color: #999;
  font-size: 1.4rem;
  opacity: .5;
}

input:focus,
textarea:focus, 
select:focus {
  outline: none;
  box-shadow: inherit;
}

/*Custom Container*/

.container-full {
    padding: 0 15px;
    margin: auto;
    max-width: 1400px;
}

@media (min-width: 1200px) {
	.container-full {
		max-width: 1400px;
		width: 90%;
	}
}

@media (min-width: 992px) {
	.container-full {
		max-width: 960px;
	}
}

@media (min-width: 768px) {
	.container-full {
		max-width: 720px;
	}
}

@media (min-width: 576px) {
	.container-full {
		max-width: 540px;
	}
}

/*Animations*/

.site-animation {
    position: absolute;
    top: -140px;
    left: 25px;
}

.ani-box {
	animation: rotate-all 2s 0 infinite linear alternate;
}

.ani-1 {
	background-color: #F4F4F7;
	position: relative;
	margin: auto;
	animation: square-to-circle 2.5s .5s infinite cubic-bezier(1,.015,.295,1.225) alternate-reverse;

}

.ani-2 {
	background-color: #F4F4F7;
	position: relative;
	margin: auto;
	animation: square-to-circle2 2.5s .42s infinite cubic-bezier(1,.015,.295,1.225) alternate-reverse;
}

.ani-1,
.ani-2 {
	width: 80px;
	height: 80px;
}

#ani-one {
	top: 150px;
}
 
#ani-two {
	top: 150px;
	right: 80px;
}

#ani-three {
	top: 150px;
}

#ani-four {
    bottom: 10px;
    left: 80px;
}

/*grid css*/

.grid-2 {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-gap: 3rem;
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 3rem;
}

.grid-4 {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-gap: 3rem;
}

.gap-0 {
	grid-gap: 0;
}

/*margins paddings*/

.de-padding {
    padding: 8rem 0;
}

.de-pt {
	padding-top: 8rem;
}

.pt-20 {
	padding-top: 2rem;
}

.de-pb {
	padding-bottom: 8rem;
}

.mb-10 {
	margin-bottom: 1rem;
}

.mb-20 {
	margin-bottom: 2rem;
}

.mb-30 {
	margin-bottom: 3rem;
}

.mb-40 {
	margin-bottom: 4rem;
}

.mb-50 {
	margin-bottom: 5rem;
}

.mb-60 {
	margin-bottom: 6rem;
}

.mb-70 {
	margin-bottom: 7rem;
}

.mb-80 {
	margin-bottom: 8rem;
}

.mb-0 {
	margin-bottom: 0;
}

.mt-10 {
	margin-top: 1rem;
}

.mt-20 {
	margin-top: 2rem;
}

.mt-30 {
	margin-top: 3rem;
}

.mt-40 {
	margin-top: 4rem;
}

.mt-50 {
	margin-top: 5rem;
}

.mt-60 {
	margin-top: 6rem;
}

.mt-70 {
	margin-top: 7rem;
}

.mt-80 {
	margin-top: 8rem;
}
.main-btn {
    position: absolute;
    bottom: 103px;
    left: 60%;
    transform: translate(-50%, 0);
}

.main-btn a {
    padding: 8px 3rem;
    border-radius: 3rem;
    border: 1px solid #ccc;
    text-transform: capitalize;
}

.main-btn a:hover {
	background: var(--theme-color-2);
	color: var(--white-color);
}

.st0{fill:#fff}
.st2{fill:#2024b0}
.st3{fill:#4777f4}
.st4,.st6{
  fill:#fff;
  stroke:#b3dcdf;
  stroke-miterlimit:10
}
.st6{
  stroke:#5d89af;
  stroke-width:2
}
.st7,.st8,.st9{
  stroke:#709abf;
  stroke-miterlimit:10
}

.st7{
  stroke-width:5;
  stroke-linecap:round;
  fill:none
}
.st8,.st9{
  fill:#fff
}
.st9{
  fill:none
}
.st10{
  
}

#scrtop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    outline: none;
    background-color: var(--bg-color);
    color: var(--heading-color);
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

#scrtop:hover {
	background-color: var(--heading-color);
	color: var(--white-color);
}


.lll li {
	padding-bottom: 12px;
}
.lll li i {
    font-size: 1.2rem;
    height: 2rem;
    width: 2rem;
    line-height: 2rem;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
	background-color: var(--thm-clr-1);
	color: var(--white-color);
	margin-right: 10px;
}

.lll.sil {
	margin-bottom: 3rem;
}

.lll.sil li {
	font-weight: 400;
}

.lll.sil li i {
	background-color: var(--theme-color);
}
.f-item ul li {
	margin-bottom: 1.5rem;
	display: block;
}

.f-item-box {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.f-info h6 {
    color: var(--white-color);
    font-size: 1.4rem;
	margin-bottom: 1rem;
	font-family: var(--ft-1);
	font-weight: 400;
}

.f-item-rating {
	margin-bottom: 5px;
}

.f-item-rating i {
	color: #FC9016;
}

.f-info span {
    color: var(--thm-clr-3);
}

.ordercat {
	color: #000;
	border: 2px solid #b7d8f6;
	background-color: #dcebf8;
	border-radius: 12px;
	padding:6px;
}
.cart-btn a {
	color: #fff;
	padding: 8px 10px 8px 10px;
	font-size: 16px;
	display: inline-block;
	text-decoration: none;
	position: fixed;
	bottom: 30px;
	background: #E70E2E;
	border-radius: 9px;
	right: 100px;
	z-index: 11;
	font: bold 16px/24px "Montserrat";
}
