/*
Theme Name: Dal Foods
Theme URI: http://dal-company.com
Author: KarDo
Author URI: http://drpk.me
Description: Simple wp template for food department of dal company
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: food,dal
Text Domain: dr-pk

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/*-----------------------------------------------------
 * variables
-----------------------------------------------------*/
/*-----------------------------------------------------
 * main style
-----------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
}
ul,
li {
  list-style: none;
}
body {
  background-color: #ffffff;
  background-image: url(images/logo-bg.png);
  font-size: 18px;
}
body.page-template-template-foods {
  background-image: url(images/bg-food.jpg);
}
body.category-rice {
  background-image: url(images/bg-rice.jpg);
}
body.category-tea {
  background-image: url(http://fitonlinenow.com/wp-content/uploads/2014/10/Food_Drinks_Chinese_Tea.jpg);
}
.content-center {
  text-align: center;
}
.index-part {
  padding: 121.5px 0 32.4px;
}
.header,
.content-buttons a,
.content-list-posts .content h2 {
  font-family: 'Roboto', sans-serif;
}
.about {
  padding: 30px 60px ;
}
.content-list-posts .content p {
  font-family: 'Open Sans', sans-serif;
}
.header {
  text-transform: uppercase;
  color: #757575;
  margin: 27px 0;
}
.logo {
  margin: 27px auto 37.8px;
  padding: 0 27px;
  width: 30%;
}
.logo img {
  max-width: 100%;
}
.page-template-template-foods .logo {
  margin: 0;
  overflow: hidden;
  width: 22%;
}
.line {
  border-bottom: 1px solid rgba(244, 67, 54, 0.12);
  width: 60%;
  margin: 0 auto;
}
.content-buttons {
  margin: 54px;
}
.content-buttons li {
  display: inline-block;
}
.content-buttons a {
  display: inline-block;
  margin: 0 18px;
  background: #ccc;
  padding: 20px 30px;
  background: #fff;
  box-shadow: 0 0 4px #ededed;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  color: #212121;
  border-radius: 3px;
  transition: all .5s ease;
}
.content-buttons a:hover {
  transform: scale(1.1);
  background: #212121;
  color: #fff;
}
.content-page {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 5px #ededed;
  min-height: 100vh;
  padding: 37px 0;
}
.content-page .food {
  margin-bottom: 54px;
}
.content-page .line {
  border-color: rgba(0, 0, 0, 0.12);
}
.post-text,
.content-list-posts {
  text-align: left;
}
.content-list-posts {
  margin: 81px;
}
.content-list-posts img {
  max-width: 100%;
  height: auto;
}
.content-list-posts .cat-post {
  margin: 67.5px 0;
  padding-bottom: 67.5px;
}
.content-list-posts .cat-post:last-child {
  border-bottom: none;
}
.content-list-posts .line-post,
.content-list-posts .cat-post {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.content-list-posts .single-post {
  margin: 27px 0;
}
.content-list-posts .thum img {
  border: 1px solid #F9F9F9;
  padding: 3px;
  background-color: #fff;
  box-shadow: 0 0 5px #EFEFEF;
}
.content-list-posts .content h2 {
  margin-top: 0;
  text-transform: uppercase;
  font-weight: bold;
}
.content-list-posts .content h2 a {
  color: #757575;
  transition: all .5s ease;
}
.content-list-posts .content h2 a:hover {
  text-decoration: none;
  color: #000;
}
.content-list-posts .content .line-post {
  margin: 13.5px 0;
}
.content-list-posts .content .post-text {
  line-height: 28px;
}
.single-post .content-list-posts {
  margin: 0;
}
.single-post .content-list-posts .content {
  margin: 27px auto;
}
.single-post .content-list-posts .content {
  width: 70%;
  text-align: center;
}
.footer {
  background-color: #fff;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  padding: 0 81px;
}
.footer .left {
  float: left;
}
.footer .right {
  float: right;
}
@media (max-width: 768px) {
  h2,
  h3 {
    font-size: 20px;
  }
  .index-part {
    padding: 81px 0;
  }
  .index-part img {
    max-width: 85%;
  }
  .content-list-posts {
    margin-top: 0;
  }
  .content-list-posts img {
    width: 100%;
    height: auto;
    margin-bottom: 27px;
  }
  .content-list-posts .line-post,
  .content-list-posts .post-text {
    display: none;
  }
  .content-list-posts .cat-post {
    margin: 27px 0;
    padding-bottom: 27px;
  }
  .single-post .line-post,
  .single-post .post-text {
    display: block;
  }
  .single-post p {
    font-size: 16px;
  }
  .footer .left,
  .footer .right {
    float: none;
  }
}
@media (max-width: 516px) {
  .content-buttons li {
    display: block;
    margin: 27px 0;
  }
}
/*-----------------------------------------------------
 * typed js
-----------------------------------------------------*/
.typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background-color: #eaeaea;
  border-left: 1px solid #ccc;
}
::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}



/**
 * 14.2 Galleries
 */

.gallery {
	margin-bottom: 1.6em;
}

.gallery-item {
	display: inline-block;
	padding: 1.79104477%;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-icon img {
	margin: 0 auto;
border:2px solid rgba(207, 207, 207, 0.15) !important;
}

.gallery-caption {
	color: #707070;
	color: rgba(51, 51, 51, 0.7);
	display: block;
	font-family: "Noto Sans", sans-serif;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.5;
	padding: 0.5em 0;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}

