/*-----------------------------------------------------------------------------------

    Theme Name: Fabrex - Product Landing Page HTML Template
    Description: Product Landing Page HTML Template
    Author: Chitrakoot Web

-----------------------------------------------------------------------------------*/
/* ----------------------------------

Table of contents
        
    01. Basic
    02. Button style
    03. Banner
    04. Header
    05. Sidebar
    06. Section Title
    07. Card
    08. List style
    09. Others
    10. Owl Sliders
    11. Video
    12. Blog
    13. Footer

---------------------------------- */
/*==============================
 *    Basic
 *    ================================ */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;900&display=swap");
body {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  font-family: "Cairo", sans-serif; }

@media screen and (max-width: 767px) {
  body {
    font-size: 15px; } }
/* loader */
#preloader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
  transition: 0.3s ease opacity;
  text-align: center;
  width: 100%;
  height: 100%; }
  #preloader:before {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #556B2F;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear; }
  #preloader:after {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #556B2F;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 1s; }

@keyframes LoaderCicle {
  0% {
    width: 0;
    height: 0;
    opacity: 0; }
  10% {
    width: 10px;
    height: 10px;
    opacity: 1; }
  80% {
    width: 60px;
    height: 60px;
    opacity: 0.1; }
  100% {
    width: 70px;
    height: 70px;
    opacity: 0; } }
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 600;
  font-family: "Playfair Display", serif;
  color: #68391c; }

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
  font-weight: 600;
  font-family: "Playfair Display", serif;
  color: #68391c; }

/* font family */
.alt-font {
  font-family: "Playfair Display", serif !important; }

.main-font {
  font-family: "Cairo", sans-serif !important; }

.height-100vh {
  height: 100vh; }

.bg-img {
  background-size: cover;
  background-repeat: no-repeat; }

.text-primary {
  color: #68391c !important; }

.text-secondary {
  color: #829273 !important; }

.bg-primary {
  background-color: #829273 !important; }

.bg-secondary {
  background-color: #faeddf !important; }

.bg-secondary-opacity {
  background-color: rgba(62, 75, 111, 0.1); }

.theme-overlay[data-overlay-dark]:before {
  background: #3e4b6f; }

button:focus:not(:focus-visible) {
  box-shadow: none; }

.border-primary-color {
  border-color: #829273 !important; }

/* spacing between columns */
a:hover, a:active {
  color: #829273;
  text-decoration: none; }

/* animation */
.ani-left-right {
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-name: LeftRight;
  animation-timing-function: ease-in-out; }

@keyframes LeftRight {
  0% {
    transform: translate(0px, 0px); }
  65% {
    transform: translate(30px, 0); }
  100% {
    transform: translate(0px, 0px); } }
.ani-top-bottom {
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-name: TopBottom;
  animation-timing-function: ease-in-out; }

@keyframes TopBottom {
  0% {
    transform: translate(0px, 0px); }
  65% {
    transform: translate(0, 30px); }
  100% {
    transform: translate(0px, 0px); } }
.ani-move {
  animation: ImageMove 4s infinite linear;
  animation-duration: 5s; }

@keyframes ImageMove {
  0% {
    transform: translate(0px, 0px); }
  25% {
    transform: translate(10px, 20px); }
  50% {
    transform: translate(30px, 30px); }
  75% {
    transform: translate(20px, 10px); }
  100% {
    transform: translate(0px, 0px); } }
.ani-bounce {
  webkit-animation: bounce 6s infinite linear;
  animation: bounce 6s infinite linear; }

@-webkit-keyframes bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
@keyframes bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
/*==============================
 *    Button style
 *    ================================ */
/* btn-style1 */
.btn-style1 {
  position: relative;
  border-left: 2px solid #829273 !important;
  background: 0 0;
  padding: 11px 37px;
  line-height: 1.5em;
  color: #829273;
  letter-spacing: 2px;
  display: inline-block;
  font-size: 15px; }
  .btn-style1:before {
    content: "";
    width: 50%;
    height: 2px;
    background: #829273;
    position: absolute;
    top: 0;
    left: 0;
    transition: .4s; }
  .btn-style1 span:before {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0;
    right: 0;
    border-top: 2px solid;
    border-right: 2px solid;
    border-color: #829273;
    transition: .4s; }
  .btn-style1 span:after {
    content: "+";
    font-size: 21px;
    transition: .4s;
    position: absolute;
    bottom: -6px;
    color: #829273;
    display: inline-block;
    left: calc(100% - 9px); }
  .btn-style1:after {
    content: "";
    width: 25%;
    height: 2px;
    background: #829273;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .4s; }
  .btn-style1:hover {
    color: #fff;
    background: #68391c;
    border-left: 1px solid #68391c !important; }
    .btn-style1:hover:after, .btn-style1:hover:before {
      width: 100%;
      background-color: #68391c; }
    .btn-style1:hover span:before {
      height: 100%;
      border-color: #68391c; }
    .btn-style1:hover span:after {
      transform: rotate(360deg);
      opacity: 0; }
    .btn-style1:hover:after {
      left: auto;
      right: 0; }
  .btn-style1.white {
    border-left: 1px solid #fff !important;
    color: #fff; }
    .btn-style1.white span:after {
      color: #fff; }
    .btn-style1.white:before, .btn-style1.white:after {
      background-color: #fff; }
    .btn-style1.white span:before {
      border-color: #fff; }
    .btn-style1.white:hover {
      background-color: #556B2F;
      border-left: 1px solid #556B2F !important; }
      .btn-style1.white:hover:before, .btn-style1.white:hover:after {
        background-color: #556B2F; }
      .btn-style1.white:hover span:before {
        border-color: #556B2F; }

@media screen and (max-width: 992px) {
  .btn-style1 {
    padding: 8px 27px;
    font-size: 14px; } }
.navbar .navbar-nav .btn.small {
  font-size: 12px;
  padding: 6px 18px;
  min-width: auto;
  margin-top: 4px;
  margin-left: 15px;
  text-align: center; }

.nav-scroll .navbar-nav .btn.small {
  color: #556B2F;
  border-color: #556B2F;
  border-width: 2px; }
  .nav-scroll .navbar-nav .btn.small:hover {
    color: #fff; }

.navbar .navbar-nav .btn.small:hover {
  color: #fff; }
.navbar .navbar-nav .nav-link.btn.small.active {
  color: #fff; }
  .navbar .navbar-nav .nav-link.btn.small.active:hover {
    color: #fff; }

@media screen and (max-width: 1199px) {
  .btn {
    min-width: 140px;
    font-size: 13px;
    padding: 8px 20px; }
    .btn.theme {
      min-width: 160px; } }
@media screen and (max-width: 991px) {
  .btn {
    min-width: 130px;
    font-size: 13px;
    padding: 7px 19px; }
    .btn.theme {
      min-width: 140px; } }
@media screen and (max-width: 767px) {
  .btn {
    min-width: 125px;
    font-size: 12px;
    padding: 4px 16px; }
    .btn.theme {
      min-width: 130px; } }
input[type=checkbox], input[type=radio] {
  width: auto;
  margin-top: .5rem; }

.form-group {
  margin-bottom: 1rem; }

/*==============================
 *    Banner
 *    ================================ */
.banner-headline {  
  font-size: 46px;
  line-height: 1.2; }
  .banner-headline.medium {
    font-size: 1.6rem; }

@media screen and (max-width: 992px) {
  .banner-headline {
    font-size: 37px; } }
@media screen and (max-width: 991px) {
  .banner-headline {
    font-size: 28px; } }
@media screen and (max-width: 767px) {
  .banner-headline {
    font-size: 20px; } }
@media screen and (max-width: 575px) {
  .banner-headline {
    font-size: 18px; } }
.banner-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left; }
  .banner-words-wrapper b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
    color: #556B2F; }
    .banner-words-wrapper b.is-visible {
      position: relative; }

.no-js .banner-words-wrapper b {
  opacity: 0; }
  .no-js .banner-words-wrapper b.is-visible {
    opacity: 1; }

/* xclip */
.banner-headline.clip span {
  font-weight: 500;
  color: #68391c; }
.banner-headline.clip .banner-words-wrapper {
  overflow: hidden;
  vertical-align: top; }
  .banner-headline.clip .banner-words-wrapper:after {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    width: 2px;
    height: 70%;
    background-color: rgba(255, 255, 255, 0.65); }
.banner-headline.clip b {
  opacity: 0; }
.banner-headline b.is-visible {
  opacity: 1; }

.main-banner {
  position: relative; }
  .main-banner:before {
    content: "";
    left: 0;
    position: absolute;
    background-color: #fff;
    height: 17%;
    bottom: -90px;
    -webkit-transform: skewY(184deg);
    transform: skewY(184deg);
    width: 100%;
    z-index: 0; }
  .main-banner .banner-img {
    max-width: 670px;
    margin: 0 30px;
    position: relative; }
  .main-banner .circle1 {
    position: absolute;
    z-index: 0;
    top: 132px;
    right: -140px;
    height: 52%;
    width: 100%;
    border-radius: 400px 400px 0 0;
    background-color: #68391c;
    -webkit-transform: rotate(100deg);
    transform: rotate(100deg); }
  .main-banner .circle2 {
    position: absolute;
    z-index: 0;
    bottom: 130px;
    left: -140px;
    height: 52%;
    width: 100%;
    border-radius: 0 0 400px 400px;
    background-color: #68391c;
    -webkit-transform: rotate(100deg);
    transform: rotate(100deg); }
  .main-banner .shape2 {
    background: #829273; }

.caption .highlight {
  color: #68391c; }

@media screen and (min-width: 1800px) {
  .main-banner .circle1 {
    top: 152px;
    right: -152px;
    height: 52%; }
  .main-banner .circle2 {
    bottom: 146px;
    left: -152px; } }
@media screen and (max-width: 1199px) {
  .main-banner .circle1 {
    top: 121px;
    right: -114px;
    height: 45%; }
  .main-banner .circle2 {
    height: 45%;
    bottom: 117px;
    left: -115px; }

  .small-height-align {
    min-height: 80vh; } }
@media screen and (max-width: 991px) {
  .small-height-align {
    min-height: 85vh; } }
@media screen and (max-width: 767px) {
  .small-height-align {
    min-height: 75vh; } }
@media screen and (max-width: 575px) {
  .small-height-align {
    min-height: 70vh; } }
/*==============================
 *    Navbar
 *    ================================ */
.navbar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 9999;
  min-height: 70px;
  padding: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15); }
  .navbar .icon-bar {
    color: #fff; }
  .navbar.bg-black {
    background: #232323;
    border-bottom: none; }
    .navbar.bg-black .navbar-nav .nav-link.active {
      color: #829273; }
    .navbar.bg-black.nav-scroll .navbar-nav .nav-link {
      color: #fff; }
    .navbar.bg-black .navbar-nav .nav-link:hover, .navbar.bg-black.nav-scroll .navbar-nav .nav-link.active {
      color: #829273; }
    .navbar.bg-black .navbar-nav .nav-link.btn.small:hover, .navbar.bg-black .navbar-nav .nav-link.btn.small.active {
      color: #fff; }
  .navbar .navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 700;
    color: #68391c;
    letter-spacing: 1.5px;
    margin: 0;
    padding: 10px 15px;
    transition: all .5s;
    text-align: left;
    text-transform: uppercase; }
    .navbar .navbar-nav .nav-link:hover {
      color: #829273; }
    .navbar .navbar-nav .nav-link.active {
      color: #829273;
      position: relative; }

.nav-scroll {
  background: #fff;
  box-shadow: 0 5px 10px -10px rgba(0, 0, 0, 0.6);
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  transition: transform .5s;
  transform: translateY(100px);
  z-index: 99; }
  .nav-scroll.bg-black .icon-bar {
    color: #fff; }
  .nav-scroll .icon-bar, .nav-scroll .navbar-nav .nav-link {
    color: #68391c; }

.navbar-toggler {
  background: #5B4636;
  width: 40px;
  height: 35px;
  padding: 0;
  border-radius: 0;
  position: absolute;
  right: 15px;
  top: 21px;
  cursor: pointer;
  z-index: 12399994;
  border: none; }
  .navbar-toggler .icon-bar:after {
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
    top: 17px;
    border: 0;
    height: 2px;
    width: 19px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 10px;
    display: block;
    content: ""; }
  .navbar-toggler .icon-bar:before {
    top: 17px;
    background: #fff;
    width: 19px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
    position: absolute;
    right: 10px;
    display: block;
    height: 2px;
    content: ""; }
  .navbar-toggler.collapsed .icon-bar:after {
    position: absolute;
    top: 17px;
    right: 10px;
    display: block;
    height: 8px;
    width: 20px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: "";
    background: none;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0); }
  .navbar-toggler.collapsed .icon-bar:before {
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
    position: absolute;
    top: 11px;
    right: 10px;
    display: block;
    height: 2px;
    width: 20px;
    background: #fff;
    content: "";
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0); }

.nav-scroll .navbar-nav .logo {
  padding: 15px 0; }

.logo {
  padding: 5px 0;
  width: 260px; }

@media screen and (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse.desktop-hide {
    display: none !important; } }
@media screen and (max-width: 1399px) {
  .navbar > .container {
    padding-right: 3.5rem; } }
@media screen and (max-width: 1199px) {
  .navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 14px; }
  .navbar .navbar-nav .btn.small {
    margin-left: 5px;
    padding: 4px 16px;
    margin-top: 4px; } }
@media screen and (max-width: 991px) {
  .logo {
    padding: 11px 0 12px 0; }

  .navbar .navbar-nav .nav-link {
    border-bottom: 1px solid #383838; }
  .navbar .navbar-nav .btn.small {
    margin: 10px 5px; }
  .navbar > .container {
    padding-right: 0;
    position: relative; }
  .navbar .navbar-collapse {
	background-color: #F8F1E7 !important; /* Un panna caldo */
    border: 1px solid #5B4636; /* Un bordino sottile marrone logo */
    text-align: center; }
  .navbar .navbar-toggler {
    padding: 8px 0;
    text-align: right;
    width: 40px;
    top: 18px; }
  .navbar .nav-link {
    display: block; }
  .navbar .navbar-nav .active:after {
    width: 100%; }

  .nav-scroll .navbar-collapse .nav-link {
    color: #5B4636 !important; }
  .nav-scroll .navbar-collapse .active {
    color: #919273 !important; }
  .nav-scroll .navbar-collapse .btn.active {
    color: #fff !important; } }
/*==============================
 *    Header
 *    ================================ */
.header {
  overflow: hidden; }
  .header .caption .overflow-hidden {
    display: inline-block; }
  .header .caption h3 {
    animation-delay: 0.5s;
    position: relative;
    display: inline-block; }
  .header .caption h1 {
    margin-bottom: 20px;
    font-size: 60px;
    letter-spacing: 1px;
    font-weight: 600;
    animation-delay: 0.8s; }
  .header .caption p {
    color: #68391c;
    margin-bottom: 30px;
    animation-delay: 1.2s; }
  .header .btn {
    animation-delay: 1.4s; }
    .header .btn i {
      position: relative;
      top: 1px; }
  .header .arrow {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 13px;
    z-index: 8; }
    .header .arrow a {
      color: #fff; }
      .header .arrow a:hover {
        color: #556B2F; }
    .header .arrow i {
      position: relative;
      display: inline-block;
      width: 30px;
      height: 30px;
      line-height: 32px;
      font-size: 12px; }
      .header .arrow i:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #556B2F;
        border-radius: 50%;
        z-index: -1;
        transition: all .2s; }
      .header .arrow i:hover:after {
        background: #fff;
        transform: scale(1.2);
        transition: all .5s; }
  .header .social-links a {
    display: inline-block;
    margin: 0 12px;
    font-size: 18px; }
    .header .social-links a:hover {
      opacity: 0.85; }
  .header .social-links:last-child {
    margin-right: 0; }

@media screen and (min-width: 1200px) {
  .header {
    height: 100vh; } }
@media screen and (max-width: 1199px) {
  .header .caption h1 {
    font-size: 48px; } }
@media screen and (max-width: 991px) {
  .header {
    transition-timing-function: none;
    -moz-transition-timing-function: none;
    -webkit-transition-timing-function: none;
    -o-transition-timing-function: none;
    -ms-transition-timing-function: none;
    transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
    -ms-transition-duration: 0s; }
    .header .caption h1 {
      font-size: 42px; }
    .header .caption h2 {
      font-size: 30px; }
    .header .social-links a {
      font-size: 16px; } }
@media screen and (max-width: 767px) {
  .header .caption h1 {
    font-size: 40px;
    margin-bottom: 15px; }
  .header .caption h3 {
    letter-spacing: 1px; } }
@media screen and (max-width: 575px) {
  .header .caption h1 {
    font-size: 30px;
    margin-top: 5px;
    margin-bottom: 12px; } }
/*==============================
 *    Sidebar
 *    ================================ */
.side-menu {
  width: 30%;
  position: fixed;
  right: 0;
  top: 0;
  background: #556B2F;
  z-index: 99999;
  height: 100%;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  -o-transition: -o-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease, -o-transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
  overflow: hidden; }
  .side-menu.left {
    left: 0;
    right: auto;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  .side-menu.black {
    background: rgba(0, 0, 0, 0.95); }
  .side-menu.side-menu-active, .side-menu.before-side {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  .side-menu .navbar-brand {
    margin: 0 0 2.5rem 0; }

/*side overlay*/
#close_sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  -webkit-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -o-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  display: none;
  z-index: 9999;
  opacity: 0.4; }

/*side clode btn*/
.side-menu .btn-close {
  height: 33px;
  width: 33px;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 30px;
  right: 15px;
  cursor: pointer; }
.side-menu.before-side .btn-close {
  display: none; }
.side-menu .btn-close:before, .side-menu .btn-close:after {
  position: absolute;
  left: 16px;
  content: ' ';
  height: 24px;
  width: 2px;
  background: #fff;
  top: 5px; }
.side-menu .btn-close:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }
.side-menu .btn-close:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg); }

/*side open btn*/
.sidemenu_btn {
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  width: 36px;
  padding: 6px;
  margin-right: 1rem;
  position: absolute;
  right: 25px;
  top: 32px;
  z-index: 99; }
  .sidemenu_btn.left {
    left: 15px;
    right: auto; }
  .sidemenu_btn > span {
    height: 4px;
    width: 100%;
    background: #68391c;
    display: block; }
    .sidemenu_btn > span:nth-child(2) {
      margin: 4px 0; }

.nav-scroll .sidemenu_btn > span {
  background: #232323; }

.bg-black.nav-scroll .sidemenu_btn > span {
  background: #fff; }

.bg-white .sidemenu_btn > span, .bg-white.nav-scroll .sidemenu_btn > span {
  background: #232323; }

.side-menu .inner-wrapper {
  padding: 3.5rem 5rem;
  height: 100%;
  position: relative;
  overflow-y: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
.side-menu .side-nav {
  margin-bottom: 30px;
  display: block; }

.side-nav .navbar-nav .nav-item {
  display: block;
  margin: 10px 0;
  padding: 0 !important;
  opacity: 0;
  -webkit-transition: all 0.8s ease 500ms;
  -o-transition: all 0.8s ease 500ms;
  transition: all 0.8s ease 500ms;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px); }
  .side-nav .navbar-nav .nav-item:first-child {
    -webkit-transition-delay: .1s;
    -o-transition-delay: .1s;
    transition-delay: .1s; }
  .side-nav .navbar-nav .nav-item:nth-child(2) {
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s; }
  .side-nav .navbar-nav .nav-item:nth-child(3) {
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s; }
  .side-nav .navbar-nav .nav-item:nth-child(4) {
    -webkit-transition-delay: .4s;
    -o-transition-delay: .4s;
    transition-delay: .4s; }
  .side-nav .navbar-nav .nav-item:nth-child(5) {
    -webkit-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s; }
  .side-nav .navbar-nav .nav-item:nth-child(6) {
    -webkit-transition-delay: .6s;
    -o-transition-delay: .6s;
    transition-delay: .6s; }
  .side-nav .navbar-nav .nav-item:nth-child(7) {
    -webkit-transition-delay: .7s;
    -o-transition-delay: .7s;
    transition-delay: .7s; }
  .side-nav .navbar-nav .nav-item:nth-child(8) {
    -webkit-transition-delay: .8s;
    -o-transition-delay: .8s;
    transition-delay: .8s; }
  .side-nav .navbar-nav .nav-item:nth-child(9) {
    -webkit-transition-delay: .9s;
    -o-transition-delay: .9s;
    transition-delay: .9s; }

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  opacity: 1; }

.side-nav .navbar-nav .nav-link {
  display: inline-table;
  color: #fff;
  padding: 2px 0 3px 0 !important;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: normal;
  position: relative;
  -webkit-border-radius: 0;
  border-radius: 0; }
  .side-nav .navbar-nav .nav-link:after {
    content: "";
    position: absolute;
    background: #fff;
    display: inline-block;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    -o-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0, 0, 0.2, 1); }
  .side-nav .navbar-nav .nav-link:hover:after, .side-nav .navbar-nav .nav-link:focus:after {
    width: 100%; }
  .side-nav .navbar-nav .nav-link.active {
    background: transparent; }
    .side-nav .navbar-nav .nav-link.active:after {
      width: 100%; }

.side-menu .social-links a {
  color: #fff; }
  .side-menu .social-links a:hover {
    opacity: 0.65; }

@media screen and (max-width: 1399px) {
  .sidemenu_btn {
    margin-right: 0; } }
/*==============================
 *    Section Title
 *    ================================ */
.section-title h6 {
  font-family: "Cairo", sans-serif !important;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #556B2F;
  font-weight: 700;
  font-size: 16px; }
.section-title h2 {
  font-size: 45px;
  color: #3e4b6f; }

@media screen and (max-width: 1200px) {
  .section-title h2 {
    font-size: 36px; } }
@media screen and (max-width: 767px) {
  .section-title h2 {
    font-size: 30px; }
  .section-title h6 {
    font-size: 14px; } }
@media screen and (max-width: 575px) {
  .section-title h2 {
    font-size: 22px; } }
/*==============================
 *    Card
 *    ================================ */
/* card-style1 */
.card-style1 {
  transition: .4s; }
  .card-style1 .card-body i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    background: #f6f6f6;
    text-align: center;
    font-size: 22px;
    color: #556B2F;
    border-radius: 50%;
    margin-bottom: 20px; }
  .card-style1:hover {
    background-color: #3e4b6f; }
    .card-style1:hover h3, .card-style1:hover p, .card-style1:hover a {
      color: #fff; }

@media screen and (max-width: 767px) {
  .card-style1 .card-body i {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 16px; } }
/* card-style2 */
.card-style2 .product-icon {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -20px;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease; }
  .card-style2 .product-icon ul li {
    display: inline-block; }
    .card-style2 .product-icon ul li a i {
      width: 40px;
      height: 40px;
      line-height: 40px;
      display: inline-block;
      background: #fff;
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
      text-align: center;
      font-size: 14px;
      color: #556B2F;
      border-radius: 50%;
      margin: 0 5px;
      transition: .4s; }
.card-style2:hover .product-icon {
  bottom: 10px;
  opacity: 1; }
.card-style2 .product-icon ul li a i:hover {
  background-color: #3e4b6f;
  color: #fff; }

/*==============================
 *    List-style
 *    ================================ */
/* list-style1 */
.list-style1 li {
  display: inline-block;
  margin-right: 20px; }
  .list-style1 li:last-child {
    margin-right: 0; }
  .list-style1 li a {
    font-size: 18px; }
    .list-style1 li a:hover {
      color: #556B2F; }

/* list-style2 */
.list-style2 li {
  display: inline-block;
  margin-right: 10px; }
  .list-style2 li:last-child {
    margin-right: 0; }
  .list-style2 li a {
    position: relative;
    border-left: 1px solid #556B2F !important;
    background: 0 0;
    padding: 8px 20px;
    line-height: 1.5em;
    color: #556B2F;
    letter-spacing: 2px;
    display: inline-block; }
    .list-style2 li a:before {
      content: "";
      width: 50%;
      height: 1px;
      background: #556B2F;
      position: absolute;
      top: 0;
      left: 0;
      transition: .4s; }
    .list-style2 li a span:before {
      content: "";
      width: 15px;
      height: 15px;
      position: absolute;
      top: 0;
      right: 0;
      border-top: 1px solid;
      border-right: 1px solid;
      border-color: #556B2F;
      transition: .4s; }
    .list-style2 li a span:after {
      content: "";
      width: 15px;
      height: 15px;
      position: absolute;
      bottom: 0;
      right: 0;
      border-top: 1px solid;
      border-right: 1px solid;
      border-color: #556B2F;
      transition: .4s;
      transform: rotate(90deg); }
    .list-style2 li a:after {
      content: "";
      width: 25%;
      height: 1px;
      background: #556B2F;
      position: absolute;
      bottom: 0;
      left: 0;
      transition: .4s; }
    .list-style2 li a:hover {
      color: #fff;
      background: #3e4b6f;
      border-left: 1px solid #3e4b6f !important; }
      .list-style2 li a:hover:after, .list-style2 li a:hover:before {
        width: 100%;
        background-color: #3e4b6f; }
      .list-style2 li a:hover span:before {
        height: 100%;
        border-color: #3e4b6f; }
      .list-style2 li a:hover span:after {
        transform: rotate(360deg);
        opacity: 0; }
      .list-style2 li a:hover:after {
        left: auto;
        right: 0; }

@media screen and (max-width: 991px) {
  .list-style2 li a {
    padding: 8px 15px; } }
/*==============================
 *    Others
 *    ================================ */
/* features */
.feature-one .feature-box-one .icon i {
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  background: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  text-align: center;
  font-size: 22px;
  color: #556B2F;
  border-radius: 50%;
  margin-bottom: 20px; }

@media screen and (max-width: 992px) {
  .feature-one .feature-box-one .icon i {
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 20px; } }
@media screen and (max-width: 575px) {
  .feature-one .feature-box-one .icon i {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 16px; } }
/* call-to-action */
.call-to-action .section-title h2 {
  line-height: 70px; }

@media screen and (max-width: 767px) {
  .call-to-action .section-title h2 {
    line-height: 50px; } }
/* testimonial */
.testimonial .testimonial-content p {
  line-height: 45px; }

/* newsletter-offer */
.newsletter-offer {
  background: transparent;
  margin-bottom: -80px;
  position: relative;
  z-index: 9; }

/* special-service */
.special-service i {
  width: 55px;
  height: 55px;
  line-height: 55px;
  display: inline-block;
  background: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  text-align: center;
  font-size: 22px;
  color: #556B2F;
  border-radius: 50%;
  margin-bottom: 20px; }

@media screen and (max-width: 991px) {
  .special-service i {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 18px; } }
/* best-sale */
.best-sale .product-sell-img img {
  margin-top: -90px; }
.best-sale .product-sell-img2 img {
  margin-bottom: -28px; }
.best-sale .product-sell-img3 img {
  margin-bottom: -7px;
  transform: rotate(-20deg); }
.best-sale .product-sell-img4 {
  bottom: 17%;
  right: 14%;
  transform: rotate(15deg); }
.best-sale a {
  position: relative;
  z-index: 99; }

@media screen and (max-width: 1200px) {
  .best-sale .product-sell-img4 {
    right: -7%; } }
@media screen and (max-width: 992px) {
  .best-sale .product-sell-img4 {
    bottom: 4%; } }
@media screen and (max-width: 991px) {
  .best-sale .product-sell-img4 {
    bottom: 4%;
    right: 30%;
    width: 270px;
    transform: rotate(40deg); } }
@media screen and (max-width: 575px) {
  .best-sale .product-sell-img4 {
    bottom: 4%;
    right: 13%;
    width: 166px;
    transform: rotate(20deg); }
  .best-sale .product-sell-img img {
    margin-top: 20px; } }
/* quality-box */
.quality-box {
  margin-top: -240px; }

@media screen and (max-width: 991px) {
  .quality-box {
    margin-top: -210px; } }
/* quform */
.form-group {
  margin-bottom: 1rem; }
  .form-group label {
    margin-bottom: .5rem; }

.form-control:focus {
  border-color: #556B2F; }

.form-check-input:checked {
  border-color: #f7b035;
  background-color: #f7b035; }
.form-check-input:focus {
  box-shadow: none; }

.quform-input {
  position: relative; }
  .quform-input .quform-errors-wrap {
    position: absolute;
    right: 8px;
    top: 0;
    line-height: normal;
    z-index: 1; }

.quform-element > label {
  font-weight: normal;
  padding-bottom: 5px;
  margin-bottom: 0;
  color: #6a747b;
  font-size: 14px; }
  .quform-element > label .quform-required {
    color: #cc0101;
    font-size: 10px; }

.quform-inner input {
  width: 100%; }

.quform-elements .quform-element textarea {
  margin-bottom: 0;
  padding: 8px 15px;
  vertical-align: top; }
.quform-elements .quform-element select {
  margin-bottom: 0;
  padding: 8px 35px 8px 15px; }

.quform-errors {
  padding: 0;
  margin: 0;
  line-height: normal; }
  .quform-errors > .quform-error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal; }

.quform-outer-no-js .quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal; }
.quform-outer-no-js .quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem; }

.quform-has-error input, .quform-has-error textarea, .quform-has-error select, .quform-has-error input[type=file], .quform-has-error .custom-file-label {
  border-color: #f5543f; }

.quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem; }

.quform-submit-inner {
  float: none; }

.quform-loading-wrap {
  float: none; }
  .quform-loading-wrap .quform-loading {
    display: inline-block; }

.light-validation .quform-errors > .quform-error {
  color: #fff; }

/*==============================
 *    Owl Sliders
 *    ================================ */
.owl-carousel .owl-item img {
  width: auto;
  display: inline-block; }

.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d5d5d5;
  margin: 5px 4px 0 4px;
  border: 2px solid #d5d5d5; }
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #556B2F;
  border-color: #556B2F; }

/*==============================
 *    Video
 *    ================================ */
.story-video {
  height: 100%; }

.story-video-height {
  min-height: 400px;
  height: 100%; }

.video_btn {
  position: relative;
  height: 70px;
  width: 70px;
  background: #556B2F;
  text-align: center;
  display: inline-block;
  line-height: 75px;
  color: #fff;
  border-radius: 50%;
  transition-duration: 0s;
  -ms-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -webkit-transition-duration: 0s;
  -o-transition-duration: 0s; }
  .video_btn:hover i, .video_btn:focus i {
    color: #fff; }
  .video_btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 70px;
    width: 70px;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: .3;
    animation: pulse-border 1500ms ease-out infinite; }
  .video_btn:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 85px;
    width: 85px;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: .3;
    animation: pulse-border 1500ms ease-out infinite; }

.video_btn-style2:after, .video_btn-style2:before {
  border-color: rgba(0, 0, 0, 0.1); }

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1; }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0; } }
.video_btn.border-grey:after, .video_btn.border-grey:before {
  border: 2px solid #d8d8d8; }
.video_btn.small {
  width: 50px;
  height: 50px;
  line-height: 50px; }
  .video_btn.small:after {
    height: 50px;
    width: 50px; }
  .video_btn.small:before {
    height: 65px;
    width: 65px; }

@media screen and (max-width: 1199px) {
  .story-video-height {
    min-height: 350px; }

  .video_btn {
    height: 75px;
    width: 75px;
    line-height: 80px; }
    .video_btn:after {
      height: 75px;
      width: 75px; }
    .video_btn:before {
      height: 90px;
      width: 90px; } }
@media screen and (max-width: 991px) {
  .story-video-height {
    min-height: 300px; }

  .video_btn {
    height: 70px;
    width: 70px;
    line-height: 70px; }
    .video_btn:after {
      height: 70px;
      width: 70px; }
    .video_btn:before {
      height: 85px;
      width: 85px; }

  @keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1); }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2); } } }
@media screen and (max-width: 767px) {
  .story-video-height {
    min-height: 250px; }

  .video_btn {
    height: 60px;
    width: 60px;
    line-height: 62px; }
    .video_btn:after {
      height: 60px;
      width: 60px; }
    .video_btn:before {
      height: 75px;
      width: 75px; } }
/*==============================
 *    Blog
 *    ================================ */
.blog .item {
  box-shadow: 0px 5px 35px 0px rgba(148, 146, 245, 0.15);
  border-radius: 5px; }
  .blog .item .post-img {
    position: relative;
    overflow: hidden; }
    .blog .item .post-img:hover img {
      transform: scale(1.1); }
    .blog .item .post-img img {
      width: 100%;
      transition: all .5s; }
  .blog .item .content {
    padding: 30px;
    background: #fff;
    text-align: left; }
    .blog .item .content .tag {
      font-weight: 500;
      font-size: 12px;
      margin-bottom: 5px;
      letter-spacing: 1px; }
    .blog .item .content .read-more {
      margin-top: 20px;
      font-weight: 700; }
      .blog .item .content .read-more:hover {
        color: #556B2F;
        text-decoration: none; }
    .blog .item .content h6 {
      line-height: normal;
      text-transform: inherit;
      margin-bottom: 2px; }

.blog-nav {
  position: static !important;
  background: #fff !important;
  margin: 0;
  top: 0;
  transform: translateY(0px); }
  .blog-nav .logo {
    color: #1c1c1c !important; }
  .blog-nav .navbar-nav .nav-link, .blog-nav .icon-bar {
    color: #232323; }

.blog-header {
  background: #232323;
  position: relative; }
  .blog-header h2 {
    font-weight: 700;
    letter-spacing: 1px;
    color: #ccc;
    margin-bottom: 15px; }
  .blog-header a {
    position: relative;
    color: #d5d5d5; }
    .blog-header a:after {
      content: '/';
      position: relative;
      margin: 0 10px; }
    .blog-header a:last-child:after {
      display: none; }
    .blog-header a:hover {
      color: #fff; }
    .blog-header a.active {
      color: #556B2F; }

.blogs .posts .pagination {
  border-radius: 0;
  padding: 0;
  margin: 0; }
  .blogs .posts .pagination ul {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin: 0 auto;
    padding: 0; }
  .blogs .posts .pagination li {
    display: inline; }
  .blogs .posts .pagination a {
    float: left;
    padding: 0 18px;
    line-height: 40px;
    text-decoration: none;
    border: 1px solid #dbdbdb;
    border-left-width: 0;
    background: #fff; }
    .blogs .posts .pagination a:hover {
      background-color: #3e4b6f;
      color: #fff; }
  .blogs .posts .pagination .active a {
    background-color: #f7f7f7;
    color: #999;
    cursor: default; }
  .blogs .posts .pagination .disabled span {
    color: #999;
    background-color: transparent;
    cursor: default; }
  .blogs .posts .pagination .disabled a {
    color: #999;
    background-color: transparent;
    cursor: default; }
    .blogs .posts .pagination .disabled a:hover {
      color: #999;
      background-color: transparent;
      cursor: default; }
  .blogs .posts .pagination li:first-child a {
    border-left-width: 1px; }

/* blog list-simple */
.blog-list-simple {
  margin: 0 0 30px 0;
  padding-bottom: 30px; }
  .blog-list-simple:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0; }

.blog-list-simple-text {
  color: #999; }
  .blog-list-simple-text > span {
    color: #556B2F;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px; }
  .blog-list-simple-text p {
    border-top: 1px solid #ececec;
    color: #999;
    font-size: 15px;
    font-weight: 400;
    line-height: 170%;
    margin-bottom: 0;
    padding: 15px 0; }
  .blog-list-simple-text .meta {
    margin: 0 0 5px 0; }
  .blog-list-simple-text li {
    display: inline-block;
    margin: 5px; }
  .blog-list-simple-text h4 {
    color: #232323;
    font-size: 20px;
    font-weight: 500;
    margin: 5px 0;
    line-height: normal; }
  .blog-list-simple-text ul {
    margin: 10px 0; }
    .blog-list-simple-text ul li {
      padding: 3px 0; }
      .blog-list-simple-text ul li i {
        color: #556B2F;
        margin-right: 5px;
        font-size: 14px; }
      .blog-list-simple-text ul li a span {
        background: #3e4b6f;
        color: #fff;
        min-width: 100px;
        display: inline-block;
        text-align: center;
        height: 30px;
        line-height: 30px;
        letter-spacing: 3px;
        text-transform: uppercase;
        font-size: 13px;
        padding: 0 10px; }

/* blogs post */
.blogs .post {
  margin-bottom: 50px; }
  .blogs .post .content {
    padding: 30px;
    background: #fafafa; }
    .blogs .post .content .post-title h5 {
      line-height: normal;
      font-weight: 500;
      margin-bottom: 0; }
      .blogs .post .content .post-title h5 a {
        color: #232323; }
        .blogs .post .content .post-title h5 a:hover {
          color: #00bcd1; }
    .blogs .post .content .meta {
      margin-bottom: 15px; }
      .blogs .post .content .meta li {
        display: inline-block;
        margin: 5px; }
    .blogs .post .content .special {
      padding: 15px;
      margin: 30px 0;
      border-left: 2px solid #111;
      background: #f7f7f7; }
    .blogs .post .content .btn {
      border-color: #6f6f6f;
      color: #6f6f6f;
      min-width: auto;
      padding: 6px 20px;
      font-size: 12px; }
      .blogs .post .content .btn:hover {
        color: #fff;
        border-color: #00bcd1; }
  .blogs .post .share-post {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
    text-align: left; }
    .blogs .post .share-post span {
      font-weight: 700; }
    .blogs .post .share-post ul {
      float: right; }
      .blogs .post .share-post ul li {
        display: inline-block;
        margin: 0 10px; }
  .blogs .post .post-img img {
    width: 100%; }
.blogs .posts .title-g h3 {
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 10px; }

/* pagination */
.pagination {
  border-radius: 0;
  padding: 0;
  margin: 0; }
  .pagination ul {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin: 0 auto;
    padding: 0; }
  .pagination li {
    display: inline; }
  .pagination a {
    float: left;
    padding: 0 18px;
    line-height: 40px;
    text-decoration: none;
    border: 1px solid #dbdbdb;
    border-left-width: 0;
    background: #fff; }
    .pagination a:hover {
      background-color: #3e4b6f;
      color: #fff; }
  .pagination .active a {
    background-color: #f7f7f7;
    color: #999;
    cursor: default; }
  .pagination .disabled span {
    color: #999;
    background-color: transparent;
    cursor: default; }
  .pagination .disabled a {
    color: #999;
    background-color: transparent;
    cursor: default; }
    .pagination .disabled a:hover {
      color: #999;
      background-color: transparent;
      cursor: default; }
  .pagination li:first-child a {
    border-left-width: 1px; }

.blockquote {
  background: #f1f1f1;
  border-left: 4px solid #00bcd1;
  font-size: 16px;
  font-weight: 500;
  margin: 25px 0;
  padding: 20px 30px 30px; }
  .blockquote p {
    font-size: 15px;
    font-weight: 500;
    line-height: 190%;
    color: #232323;
    letter-spacing: .5px; }
  .blockquote h4 {
    font-size: 20px;
    font-weight: 400;
    color: #232323;
    letter-spacing: .5px; }

.side-bar .widget {
  margin-bottom: 30px; }
  .side-bar .widget:last-child {
    margin-bottom: 0; }
  .side-bar .widget .widget-title h6 {
    position: relative;
    padding-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px; }
    .side-bar .widget .widget-title h6:after {
      content: '';
      width: 30px;
      height: 1px;
      background: #556B2F;
      position: absolute;
      bottom: 0;
      left: 0; }
  .side-bar .widget li {
    position: relative;
    padding: 0;
    margin: 0 0 10px 0;
    color: #6f6f6f; }
    .side-bar .widget li:last-child {
      margin: 0; }
  .side-bar .widget .social-listing {
    margin-bottom: 0; }
    .side-bar .widget .social-listing li {
      list-style: none;
      display: inline-block; }
      .side-bar .widget .social-listing li:after {
        background: none; }
      .side-bar .widget .social-listing li:first-child {
        padding-left: 0; }
  .side-bar .widget .social-icon li {
    display: inline-block;
    margin-right: 8px; }
    .side-bar .widget .social-icon li a {
      position: relative;
      border-left: 1px solid #556B2F !important;
      background: 0 0;
      padding: 6px 13px;
      line-height: 1.5em;
      color: #556B2F;
      letter-spacing: 2px;
      display: inline-block; }
    .side-bar .widget .social-icon li:last-child {
      margin-right: 0; }
    .side-bar .widget .social-icon li a:hover {
      color: #fff;
      background: #3e4b6f;
      border-left: 1px solid #3e4b6f !important; }
    .side-bar .widget .social-icon li a:before {
      content: "";
      width: 40%;
      height: 1px;
      background: #556B2F;
      position: absolute;
      top: 0;
      left: 0;
      transition: .4s; }
    .side-bar .widget .social-icon li a span:before {
      content: "";
      width: 12px;
      height: 12px;
      position: absolute;
      top: 0;
      right: 0;
      border-top: 1px solid;
      border-right: 1px solid;
      border-color: #556B2F;
      transition: .4s; }
    .side-bar .widget .social-icon li a span:after {
      content: "";
      width: 15px;
      height: 15px;
      position: absolute;
      bottom: 0;
      right: 0;
      border-top: 1px solid;
      border-right: 1px solid;
      border-color: #556B2F;
      transition: .4s;
      transform: rotate(90deg); }
    .side-bar .widget .social-icon li a:after {
      content: "";
      width: 25%;
      height: 1px;
      background: #556B2F;
      position: absolute;
      bottom: 0;
      left: 0;
      transition: .4s; }
    .side-bar .widget .social-icon li a:hover:after, .side-bar .widget .social-icon li a:hover:before {
      width: 100%;
      background-color: #3e4b6f; }
    .side-bar .widget .social-icon li a:hover span:before {
      height: 100%;
      border-color: #3e4b6f; }
    .side-bar .widget .social-icon li a:hover span:after {
      transform: rotate(360deg);
      opacity: 0; }
    .side-bar .widget .social-icon li a:hover:after {
      left: auto;
      right: 0; }
  .side-bar .widget .blog-tags a {
    border: 1px solid #3e4b6f;
    background-color: #fff;
    padding: 5px 12px;
    font-size: 14px;
    line-height: 20px;
    margin: 0.6rem 5px 0 0;
    display: inline-block;
    border-radius: 5px; }
    .side-bar .widget .blog-tags a:hover {
      color: #fff;
      background-color: #556B2F;
      border: 1px solid #556B2F; }
.side-bar .search form input {
  width: calc(100% - 50px);
  height: 50px;
  padding: 0 10px;
  margin: 0;
  border: 1px solid #d1d1d1;
  background: #f7f7f7; }
.side-bar .search form button {
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  background: #556B2F;
  border: 0;
  float: right;
  border-radius: 0;
  padding: 0;
  transition: .4s; }
  .side-bar .search form button:hover {
    background: #3e4b6f; }
    .side-bar .search form button:hover:before {
      border-radius: 0;
      padding: 0; }

@media screen and (max-width: 991px) {
  .blog-nav .navbar-nav .nav-link {
    color: #fff; } }
@media screen and (max-width: 767px) {
  .blog-list-simple {
    margin-bottom: 20px;
    padding-bottom: 20px; }

  .blogs .posts .post .content {
    padding: 20px; }
    .blogs .posts .post .content .post-title h5 {
      font-size: 22px; } }
/*==============================
 *    Footer
 *    ================================ */
/* subscribe */
.footer {
  padding: 90px 0px; }

footer .footer-logo {
  width: 190px; }

/* back to top */
.back-to-top {
  background: #6f6f6f;
  border-radius: 50%;
  position: fixed;
  z-index: 9;
  right: 25px;
  bottom: 15px;
  width: 35px;
  height: 35px;
  margin: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 350ms;
  -o-transition: opacity 350ms;
  transition: opacity 350ms; }
  .back-to-top i {
    position: absolute;
    left: 50%;
    top: 45%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px; }
  .back-to-top:hover {
    background: #556B2F !important; }
  .back-to-top.reveal {
    cursor: pointer;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    opacity: 1;
    filter: alpha(opacity=100); }
    .back-to-top.reveal:focus, .back-to-top.reveal:hover, .back-to-top.reveal:active {
      opacity: 1;
      filter: alpha(opacity=100); }

/*# sourceMappingURL=style.css.map */
