/*
 Theme Name: picante
 Theme URI: 
 Author: 
 Author URI: 
 Description: Picante
 Version: 1.0
 License:
 License URI: 
*/
/*=================================
    CSS Index Here
==================================*/
/*
01. Fonts
02. Mixin
03. Variable
04. Typography
05. Home
06. Product 1
07. Product 2
08. Product 3
09. Product 4
10. About Page
11. Pricing Page
12. Contact Page

*/
/*------------------- 01. Fonts -------------------*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/*------------------- 02. Variable-------------------*/

/*------------------- 04. Typography -------------------*/
:root {
  --primay-color: #E94D4E;
  --body-color: #536184;
  --heading-color: #233152;
  --body-font: "Poppins";
  --heading-font: "Roboto";
}

/*------------------- 04. Typography -------------------*/
html,
body {
  scroll-behavior: smooth !important;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 26px;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

iframe {
  border: none;
  width: 100%;
}

.slick-slide:focus,
button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

input:focus {
  outline: none;
  box-shadow: none;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  color: var(--primay-color);
  text-decoration: none;
  outline: 0;
  transition: all ease 0.4s;
}
a:hover {
  color: var(--primay-color);
}
a:active, a:focus, a:hover, a:visited {
  text-decoration: none;
  outline: 0;
}

button {
  transition: all ease 0.4s;
}

img {
  border: none;
  max-width: 100%;
}

ins {
  text-decoration: none;
}

p {
  margin: 0 0 18px 0;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  color: var(--heading-color);
  text-transform: none;
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 15px 0;
}

/*-- Section Title --*/
.subTitle {
  color: var(--primay-color);
  font-weight: 500;
  font-size: 24px;
  line-height: 0.9;
  margin: 0 0 17px;
}
.secTitle {
  font-size: 48px;
  line-height: 58px;
  overflow: hidden;
  margin: 0 0 60px;
}
.secTitle span {
  position: relative;
}
.secTitle span::after {
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 2px;
  background: currentColor;
  content: "";
}

.white {
  color: #fff;
}
/*-- Common Btn --*/
.immiPressBtn {
  position: relative;
  overflow: hidden;
  font-size: 18px;
  font-weight: 700;
  height: 61px;
  line-height: 61px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  padding: 0 40px;
  text-align: center;
  border: none;
  outline: none;
  text-transform: capitalize;
  display: inline-block;
  background: var(--primay-color);
  font-family: var(--heading-font);
  color: #ffffff;
  z-index: 2;
  transition: all ease 0.3s;
}
.immiPressBtn i {
  display: inline-block;
  font-size: 15px;
  position: relative;
  top: 2px;
  margin-left: 5px;
}
.immiPressBtn::before, .immiPressBtn::after, .immiPressBtn span::before, .immiPressBtn span::after {
  content: "";
  position: absolute;
  top: 0;
  width: 25.25%;
  height: 0;
  background: var(--heading-color);
  z-index: -1;
  transition: 0.3s ease-in-out;
}
.immiPressBtn span::before, .immiPressBtn span::after {
  content: "";
  position: absolute;
  top: 0;
  width: 25.25%;
  height: 0;
  background: var(--heading-color);
  z-index: -1;
  transition: 0.3s ease-in-out;
}
.immiPressBtn::before {
  left: 0;
}
.immiPressBtn::after {
  left: 50%;
}
.immiPressBtn span::before, .immiPressBtn span::after {
  top: auto;
  bottom: 0;
}
.immiPressBtn span::before {
  left: 25%;
}
.immiPressBtn span::after {
  left: 75%;
}
.immiPressBtn:hover::before, .immiPressBtn:hover::after, .immiPressBtn:hover span::before, .immiPressBtn:hover span::after {
  height: 100%;
}
.immiPressBtn:hover {
  color: #fff;
}

/*--- Back To Top ---*/
#backtotop {
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  background: var(--primay-color);
  color: #fff;
  position: fixed;
  bottom: 20px;
  right: 20px;
  transform: scale(0);
  z-index: 99;
  border-radius: 50%;
  cursor: pointer;
}

#backtotop.activate {
  transform: scale(1);
}

/*-- Preloader --*/
.preloader {
  position: fixed;
  z-index: 999999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--heading-color);
}
.preloader .middleGif {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader .middleGif img {
  max-width: 100%;
}
.preloader .immiPressBtn {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  border-radius: 0;
  font-size: 16px;
  height: 52px;
  line-height: 52px;
}
.preloader .immiPressBtn:hover {
  color: var(--primay-color);
}
.preloader .immiPressBtn::before, .preloader .immiPressBtn::after, .preloader .immiPressBtn span::before, .preloader .immiPressBtn span::after {
  background: #fff;
}

/*---- Keyframes Animation ----*/
@keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@keyframes wave {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  50% {
    box-shadow: 0 0 0 40px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}
@keyframes halfBounce {
  0%, 100% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
}
@keyframes rotated {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes movebounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes zoomBig {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
    border-width: 3px;
  }
  40% {
    opacity: 0.5;
    border-width: 2px;
  }
  65% {
    border-width: 1px;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    border-width: 1px;
  }
}
@keyframes shadows {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0.2), 0 0 0 40px rgba(255, 255, 255, 0);
  }
}
@keyframes animationFrames {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}

/*------------------- 05. Home -------------------*/
/*-- Header --*/
.header01{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 5;
  padding: 0 112px;
}
@media (min-width: 1200px){
  header .container{
    max-width: 1099px;
  }
}
.headerInner {
  justify-content: space-between;
  display: flex;
  align-items: center;
  position: relative;
  padding: 50px 0;
  transition: all ease 0.3s;
}
.logo {
  margin: 0;
  position: relative;
}
.logo img {
  height: 62px;
  width: auto;
  max-width: 100%;
}
.headerInner .immiPressBtn{
  border: 1px solid var(--primay-color);
  background: transparent;
  color: var(--primay-color);
  padding: 0 38px;
}
.headerInner .immiPressBtn::before, 
.headerInner .immiPressBtn::after, 
.headerInner .immiPressBtn span::before, 
.headerInner .immiPressBtn span::after{
  background: var(--primay-color);
}
.headerInner .immiPressBtn:hover{
  color: #fff;
}
.headerInner .immiPressBtn svg{
  width: 20px;
  height: 24px;
  transition: all ease 0.3s;
  position: relative;
  top: -2px;
  margin-left: 5px;
}
.headerInner .immiPressBtn:hover svg{
  fill: #fff;
}
header.fixedHeader {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--heading-color);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
  border: none;
  z-index: 99;
}
header.fixedHeader .headerInner{
  padding: 15px 0 18px;
}
.header01 .blanks {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -999;
}
.heroSection{
  padding: 170px 0 0 112px;
  background-position: center center;
  background-color: var(--heading-color);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;
  overflow: hidden;
}
.bannerContent{
  position: relative;
  padding: 107px 0 0;
}
.bannerContent h2{
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin: 0 0 48px;
}
.bannerContent p{
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #FFFFFF;
  max-width: 550px;
  margin: 0 0 51px;
}
.btnInfo{
  display: flex;
  align-items: center;
} 
.btnInfo img{
  max-width: 100%;
  height: 80px;
  margin-left: 50px;
} 
.bannerThumb{
  position: relative;
  margin-left: -15px;
}
.bannerThumb img{
  max-width: 100%;
  height: auto;
}
.noPaddingRight{
  padding-right: 0;
}
.featureSecion{
  position: relative;
  background: #F8F8F8;
  padding: 100px 180px 97px;
}
.iconBox01{
  position: relative;
  text-align: center;
  margin: auto;
  max-width: 318px;
}
.iconBox01 img{
  width: 85px;
  height: 85px;
  display: inline-block;
}
.iconBox01 h3{
  font-size: 30px;
  line-height: 42px;
  margin: 24px 0 15px;
}
.iconBox01 p{
  font-family: var(--heading-font);
  margin: 0;
  font-weight: 500;
}
.demoSecion{
  position: relative;
  padding: 118px 0 100px;
}
.demoSecion h2{
  font-size: 48px;
  line-height: 60px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 54px;
}
.demoItem{
    background: #FFF3F1;
    position: relative;
    border-radius: 0;
    padding: 48px 43px 0;
    text-align: center;
    margin: 0 8px 23px;
   -webkit-transition: .3s all ease-in-out;
   -o-transition: .3s all ease-in-out;
   transition: .3s all ease-in-out;
}
.demoThumb{
    display: block;
    height: 500px;
    overflow: hidden;
    border-radius: 0;
    filter: drop-shadow(0px 0px 45px rgba(0, 0, 0, 0.1));
}
.demoItem img{
    bottom: -2510px;
    max-width: 100%;
    border-radius: 5px;
    height: auto;
    overflow: hidden;
    -webkit-transition: top 11s;
    -moz-transition: top 11s;
    -ms-transition: top 11s;
    -o-transition: top 11s;
    transition: bottom 11s;
}
.demoItem:hover img{
  bottom: 0;
  -webkit-transition: all 11s;
  -moz-transition: all 11s;
  -ms-transition: all 11s;
  -o-transition: all 11s;
  transition: all 11s;
}
.dmTitle{
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
  text-align: center;
  margin: 0 0 41px
}
.dmTitle a{
    color: inherit;
}
.dmTitle a:hover{
  color: var(--primay-color);
}
.demoDetails{
    margin: 24px 0 0;
}
.demoItem:hover img{
   -ms-transform: translateY(calc(-100% + 280px)); 
   -o-transform: translateY(calc(-100% + 280px)); 
   -moz-transform: translateY(calc(-100% + 280px)); 
   -moz-transform: translateY(calc(-100% + 280px)); 
   transform: translateY(calc(-100% + 280px)); 
}
.featureSecion02{
  position: relative;
  background: #F8F8F8;
  padding: 120px 0 105px;
}
.featureSecion02 h2{
  font-size: 48px;
  line-height: 60px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 54px;
}
.iconBox02{
   position: relative;
   text-align: center;
   background: #fff;
   margin: 0 0 25px;
   box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.1);
   border-radius: 3px;
   -webkit-transition: .3s all ease-in-out;
   -o-transition: .3s all ease-in-out;
   transition: .3s all ease-in-out;
   padding: 50px 22px 47px;
}
.iconBox02:after{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 5px;
  content: '';
  border-radius: 0 0 3px 3px;
  background: var(--primay-color);
   -webkit-transition: .3s all ease-in-out;
   -o-transition: .3s all ease-in-out;
   transition: .3s all ease-in-out;
}
.iconBox02:hover:after{
  width: 100%;
}
.iconBox02 img{
  height: 92px;
}
.iconBox02 h3{
  font-size: 24px;
  line-height: 34px;
  margin: 30px 0 0;
}
.footer{
  position: relative;
  background-color: var(--heading-color);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 107px 0 100px;
  text-align: center;
}
.footer img{
  height: 120px;
}
.footer h5{
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  margin: 39px 0 19px;
}
.footer h2{
  color: #fff;
  font-size: 48px;
  line-height: 60px;
  max-width: 600px;
  margin: 0 auto 51px;
}
.footer .immiPressBtn{
  padding: 0 56px;
}
.footer .immiPressBtn::before, 
.footer .immiPressBtn::after, 
.footer .immiPressBtn span::before, 
.footer .immiPressBtn span::after{
  background: #fff;
}
.footer .immiPressBtn:hover{
  color: var(--primay-color);
}
.copyRight{
  position: relative;
  text-align: center;
  background-color: var(--heading-color);
  border-top: 1px solid rgba(207, 207, 207, 0.2);
  padding: 32px 0 35px;
}
.copyRight h5{
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}

.preloader {
  position: fixed;
  z-index: 999999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--heading-color);
  /* spinner-1 styles */
}
.preloader .spinner-eff {
  width: 76px;
  height: 76px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  margin: auto;
  z-index: 2;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  overflow: hidden;
}
.preloader .spinner-eff:before, .preloader .spinner-eff:after {
  content: "";
  display: block;
}
.preloader .spinner-eff .bar {
  width: 0;
  height: 0;
  border: 38px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(0deg);
  opacity: 0.5;
  z-index: -2;
}
.preloader .spinner-eff .bar-top {
  border-top: 38px solid var(--primay-color);
  animation: rotation-top 3.6s linear 0s infinite;
}
.preloader .spinner-eff .bar-right {
  border-right: 38px solid var(--primay-color);
  animation: rotation-right 3.6s linear 0s infinite;
}
.preloader .spinner-eff .bar-bottom {
  border-bottom: 38px solid var(--primay-color);
  animation: rotation-bottom 3.6s linear 0s infinite;
}
.preloader .spinner-eff .bar-left {
  border-left: 38px solid var(--primay-color);
  animation: rotation-left 3.6s linear 0s infinite;
}
@keyframes rotation-top {
  0% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  20% {
    transform: rotate(360deg);
    opacity: 1;
  }
  80% {
    transform: rotate(360deg);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.5;
  }
}
@keyframes rotation-right {
  0% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  20% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  40% {
    transform: rotate(360deg);
    opacity: 1;
  }
  80% {
    transform: rotate(360deg);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.5;
  }
}
@keyframes rotation-bottom {
  0% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  40% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  60% {
    transform: rotate(360deg);
    opacity: 1;
  }
  80% {
    transform: rotate(360deg);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.5;
  }
}
@keyframes rotation-left {
  0% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  60% {
    transform: rotate(0deg);
    opacity: 0.5;
  }
  80% {
    transform: rotate(360deg);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.5;
  }
}
.preloader .immiPressBtn {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  border-radius: 0;
  font-size: 16px;
  height: 52px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 52px;
  font-family: var(--body-font);
}
.preloader .immiPressBtn:hover {
  color: var(--primay-color);
}
.preloader .immiPressBtn::before, .preloader .immiPressBtn::after, .preloader .immiPressBtn span::before, .preloader .immiPressBtn span::after {
  background: #fff;
}
/*--- Back To Top ---*/
#backtotop {
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  background: var(--primay-color);
  color: #fff;
  position: fixed;
  bottom: 20px;
  right: 20px;
  transform: scale(0);
  z-index: 99;
  border-radius: 50%;
  cursor: pointer;
}

#backtotop.activate {
  transform: scale(1);
}