@charset "utf-8";
/* CSS Document */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family:Arial, Helvetica, sans-serif;
	background-image:url(images/gallexy.jpg);
	background-size:100%;
	background-repeat:no-repeat;
	background-position:top;
	background-attachment: fixed;
  }
  
  .navbar {
    display:flex;
    align-items: center;
    padding: 5px;
  }
  .logo{
	  width:30%;
	  float:left;
  }
  nav {
	  width:70%;
	  float:right;
    text-align: right;
  }
  
  nav ul {
    display: inline-block;
    list-style-type: none;
  }
  
  nav ul li {
    display: inline-block;
    margin-right: 10px;
  }
  
  a {
    text-decoration: none;
    color: #FFF;
  }
  
  p {
    color: #FFF;
  }
  #circle{
	 
	  top::0px;
	  right:0px;
  }
  #circle img{
	  position:relative;
	  top:0px;
	  left:0px;
  }
  .container {
    max-width: 100%;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
	overflow:auto;
  }
  
  .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  
  .col-2 {
    flex-basis: 50%;
    min-width: 300px;
  }
  #symbols{
	  display:block;
	  width:411px;
	  height:411px;
	  background:url(images/hand.png);
	  background-repeat:no-repeat;
	  overflow:hidden;
	  margin-left:auto;
	  margin-right:auto;
  }
  #sin{
	animation-name: rot;
  	animation-duration: 60s;
	transform: rotate(0deg);
	animation-timing-function:linear;
	animation-iteration-count:infinite;
  }
  @keyframes rot {
  0%   {transform: rotate(0deg); }
  25%  {transform: rotate(90deg);  }
  50%  {transform: rotate(180deg);  }
  75% {transform: rotate(270deg);  }
  100% {transform: rotate(360deg);  }
	}
  .col-2 img {
    
  }
  
  .col-2 h1 {
    font-size: 50px;
    line-height: 60px;
    margin: 25px 0;
  }
  
  .categories{
	  width:90%;
	  margin-top:20px;
	  margin-left:auto;
	  margin-right:auto;
	  background-color:rgba(255,255,153,.75);
	  color:#000;
	  padding:1%;
	  border-radius:30px;
  }
  .categories p{
	  color:#000;
  }
  .categories ul li{
	  display:inline-block;
	  text-align:center;
	  margin:5px;
  }
  .btn {
    display: inline-block;
    background: #ff523b;
    color: #ffffff;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: background 0.5s;
  }
  
  .btn:hover {
    background: #563434;
  }
  
  .header {
    /*background: radial-gradient(#fff, #ffd6d6);*/
	
  }
  .contact{
  font-size:larger; 
  display:block; 
  background:rgba(0,0,0,.75);
  padding:6px;
  border-radius:15px;
  }
  
  .header .row {
    margin-top: 0px;
  }
  
  #fmatter h2{
	  color:#FFF;
	//height:40px;
	}
  
  // Mid page 
  
  .categories {
    margin: 70px 0;
  }
  
  .col-3 {
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom: 30px;
  }
  
  .col-3 img {
    width: 100%;
  }
  
  .small-container {
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .col-4 {
    flex-basis: 25%;
    padding: 10px;
    min-width: 200px;
    margin-bottom: 50px;
    transition: transform 0.5s;
  }
  
  .col-4 img {
    width: 100%;
  }
  
  .title {
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
    color: #555;
  }
  .title::after {
    content: "";
    background: #ff523b;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
  }
  
  h4 {
    color: #555;
    font-weight: normal;
  }
  
  .col-4 p {
    font-size: 14px;
  }
  
  .rating .fas {
    color: #ff523b;
  }
  
  .rating .far {
    color: #ff523b;
  }
  
  .col-4:hover {
    transform: translateY(-5px);
  }
  
  /* Offer */
  
  .offer {
    background: radial-gradient(#fff, #ffd6d6);
    margin-top: 80px;
    padding: 30px 0;
  }
  
  .col-2 .offer-img {
    padding: 50px;
  }
  
  small {
    color: #555;
  }
  
  .brands {
    margin: 100px auto;
  }
  
  .col-5 {
    width: 160px;
  }
  
  .col-5 img {
    width: 100%;
    cursor: pointer;
    filter: grayscale(100%);
  }
  
  .col-5 img:hover {
    width: 100%;
    cursor: pointer;
    filter: grayscale(0);
  }
  
  //footer style
  
  
  
  /* footer */
  
  .footer {
    background: #000;
    color: #8a8a8a;
    font-size: 14px;
    padding: 60px 0 20px;
  }
  
  .footer p {
    color: #8a8a8a;
  }
  
  .footer h3 {
    color: #ffffff;
    margin-bottom: 20px;
  }
  
  .footer-col-1,
  .footer-col-2,
  .footer-col-3,
  .footer-col-4 {
    min-width: 250px;
    margin-bottom: 20px;
  }
  
  .footer-col-1 {
    flex-basis: 30%;
  }
  
  .footer-col-2 {
    flex: 1;
    text-align: center;
  }
  
  .footer-col-2 img {
    width: 180px;
    margin-bottom: 20px;
  }
  
  .footer-col-3,
  .footer-col-4 {
    flex-basis: 12%;
    text-align: center;
  }
  
  ul {
    list-style-type: none;
  }
  
  .app-logo {
    margin-top: 20px;
  }
  .app-logo img {
    width: 140px;
  }
  
  .footer hr {
    border: none;
    background: #b5b5b5;
    height: 1px;
    margin: 20px 0;
  }
  
  .copyright {
    text-align: center;
  }
  
  .menu-icon {
    width: 25px;
    display: none;
  }
  
  /* media query for menu */
  
  @media only screen and (max-width: 800px) {
	  body {
    font-family:Arial, Helvetica, sans-serif;
	color:#FFF;
	background-image:url(images/gallexy1.jpg);
	background-size:100% 100%;
	background-repeat:no-repeat;
	background-position:top;
	background-attachment: fixed;
  }
    nav ul {
      /*position: absolute;*/
      top: 70px;
      left: 0;
      width: 100%;
      overflow: hidden;
      transition: max-height 0.5s;
    }
    nav ul li {
      display: block;
      margin-right: 50px;
      margin-top: 3px;
      margin-bottom: 3px;
    }
  
    nav ul li a {
      color: #fff;
    }
    .menu-icon {
      display: block;
      cursor: pointer;
    }
	
	#symbols{
	  display:block;
	  width:250px;
	  height:250px;
	  background:url(images/hand.png);
	  background-size:100%;
	  overflow:hidden;
  	}
  }
  
  /* all products page */
  
  .row-2 {
    justify-content: space-between;
    margin: 100px auto 50px;
  }
  
  select {
    border: 1px solid #ff523b;
    padding: 5px;
  }
  
  select:focus {
    outline: none;
  }
  
  .page-btn {
    margin: 0 auto 80px;
  }
  
  .page-btn span {
    display: inline-block;
    border: 1px solid #ff523b;
    margin-left: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
  }
  
  .page-btn span:hover {
    background: #ff523b;
    color: #ffffff;
  }
  
  /* single product details */
  
  .single-product {
    margin-top: 80px;
  }
  
  .single-product .col-2 img {
    padding: 0;
  }
  
  .single-product .col-2 {
    padding: 20px;
  }
  
  .single-product h4 {
    margin: 20px 0;
    font-size: 22px;
    font-weight: bold;
  }
  
  .single-product select {
    display: block;
    padding: 10px;
    margin-top: 20px;
  }
  
  .single-product input {
    width: 50px;
    height: 40px;
    padding-left: 10px;
    font-size: 20px;
    margin-right: 10px;
    border: 1px solid #ff523b;
  }
  
  input:focus {
    outline: none;
  }
  
  .single-product .fas {
    color: #ff523b;
    margin-left: 10px;
  }
  
  .small-img-row {
    display: flex;
    justify-content: space-between;
  }
  
  .small-img-col {
    flex-basis: 24%;
    cursor: pointer;
  }
  
  /* cart items */
  
  .cart-page {
    margin: 90px auto;
  }
  
  
  .cart-info {
    display: flex;
    flex-wrap: wrap;
  }
  


  

  /* account page */
 
  
  /* media query for less than 600 screen size */
  
  @media only screen and (max-width: 600px) {
   
  }

