/*==============================
  GLOBAL CSS START
===============================*/
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@200;300;400;500;600;700&amp;family=Inter:wght@300;400;500;600;700;800;900&amp;display=swap");

* {
   margin: 0;
   padding: 0;
   outline: 0;
}

body {
   scroll-behavior: smooth;
   overflow-x: hidden;
   font-family: var(--bodyFont);
}

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

a {
   display: inline-block;
   text-decoration: none;
}

a:hover {
   text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   margin: 0;
   padding: 0;
   color: var(--colorBlack);
   font-family: var(--headingFont);
}

p,
span {
   font-size: 16px;
   font-weight: 500;
   margin: 0;
   padding: 0;
   color: var(--paraColor);
}

img {
   width: 100% !important;
   height: 100% !important;
   object-fit: cover !important;
}

button {
   border: none;
   outline: none;
}

button:focus {
   outline: none;
}

:root {
   --colorPrimary: #f76b6a;
   --colorRed: #f76b6a;
   --colorBlue: #0b277a;
   --colorBlack: #080521;
   --colorWhite: #ffffff;
   --paraColor: #525064;
   --headingFont: "IBM Plex Sans", sans-serif;
   --bodyFont: "Inter", sans-serif;
}

.common_heading h5 {
   font-size: 16px;
   font-weight: 600;
   font-family: var(--bodyFont);
   color: var(--colorRed);
   text-transform: capitalize;
   padding-left: 20px;
   display: inline-block;
   position: relative;
}

.common_heading h5::after {
   position: absolute;
   content: "";
   width: 5px;
   height: 100%;
   background: var(--colorRed);
   top: 0;
   left: 0;
}

.common_heading h2 {
   margin-top: 20px;
   font-size: 48px;
   font-weight: 700;
   line-height: 60px;
   font-family: var(--headingFont);
   color: var(--colorBlack);
   text-transform: capitalize;
}

.common_heading3 {
   text-align: center;
}

.common_heading3 h4 {
   font-family: var(--headingFont);
   font-size: 48px;
   font-weight: 700;
   margin-bottom: 50px;
   text-transform: capitalize;
}

/*==============================
  GLOBAL CSS START
===============================*/

/*==============================
  DEMO PAGE START
===============================*/
/* main manu start */
.main_menu {
   background: transparent;
   width: 100%;
   height: 80px;
   position: fixed;
   top: 0;
   left: 0;
   z-index: 999;
   transition: all linear 0.3s;
   -webkit-transition: all linear 0.3s;
   -moz-transition: all linear 0.3s;
   -ms-transition: all linear 0.3s;
   -o-transition: all linear 0.3s;
   border-bottom: 1px solid #ffffff12;
}

.main_menu .navbar-brand {
   margin: 0;
   padding: 0;
   max-width: 150px;
}

.main_menu .navbar-nav .nav-item {
   position: relative;
}

.main_menu .navbar-nav .nav-item > a {
   font-size: 18px;
   font-family: var(--bodyFont);
   font-weight: 500;
   color: var(--colorWhite);
   text-transform: capitalize;
   transition: all linear 0.3s;
   padding: 0px 15px;
   margin: 0;
   line-height: 80px;
   -webkit-transition: all linear 0.3s;
   -moz-transition: all linear 0.3s;
   -ms-transition: all linear 0.3s;
   -o-transition: all linear 0.3s;
}

.main_menu .navbar-nav .nav-item:hover > a,
.main_menu .navbar-nav .nav-item > a.active {
   color: var(--colorPrimary);
}

.main_menu .collapse .navbar-nav .nav-item a i {
   font-size: 12px;
}

.menu_fix {
   background: var(--colorBlack);
}

.manu_btn {
   background: #81b441;
   font-size: 15px;
   font-weight: 500;
   font-family: var(--headingFont);
   color: var(--colorWhite);
   padding: 10px 20px;
   border-radius: 4px;
   -webkit-border-radius: 4px;
   -moz-border-radius: 4px;
   -ms-border-radius: 4px;
   -o-border-radius: 4px;
   transition: all linear 0.3s;
   -webkit-transition: all linear 0.3s;
   -moz-transition: all linear 0.3s;
   -ms-transition: all linear 0.3s;
   -o-transition: all linear 0.3s;
   justify-content: center;
   max-width: 210px;
}

.manu_btn_img {
   width: 23px;
   height: 23px;
   margin-right: 5px;
}

.manu_btn:hover {
   color: var(--colorBlack);
}

/* main manu end */

/*banner start*/
.banner {
   background-position: center !important;
   background-repeat: no-repeat !important;
   background-size: cover !important;
   position: relative;
   border-bottom: 1px solid #ffffff12;
}

.banner_overlay {
   background: #181f2ef5 !important;
}

.banner_text {
   text-align: center;
   position: relative;
}

.banner_text h1 {
   color: var(--colorWhite);
   font-size: 62px;
   font-weight: 700;
   margin-bottom: 25px;
}

.banner_text ul {
   margin-top: 60px;
   gap: 20px;
}

.banner_text ul li {
   padding: 12px;
   background: var(--colorWhite);
   border-radius: 50%;
   width: 50px;
   height: 50px;
   box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.banner_img {
   margin-top: 60px;
}

.banner::before {
   position: absolute;
   content: "";
   background: url(../images/shopify.png);
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   width: 130px;
   height: 130px;
   top: 250px;
   right: 100px;
   animation: banner_animi_1 linear 3s infinite alternate;
   -webkit-animation: banner_animi_1 linear 3s infinite alternate;
}

@keyframes banner_animi_1 {
   from {
      transform: scale(1);
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
   }

   to {
      transform: scale(1.1);
      -webkit-transform: scale(1.1);
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -o-transform: scale(1.1);
   }
}

.banner_food_img {
   width: 300px;
   height: 300px;
   position: absolute;
   left: 70px;
   top: 210px;
   border: 0px solid var(--colorWhite);
   border-radius: 50%;
   box-shadow: rgb(149 157 165 / 27%) 0px 8px 24px;
}

.banner_food_img img {
   border-radius: 50%;
   -webkit-border-radius: 50%;
   -moz-border-radius: 50%;
   -ms-border-radius: 50%;
   -o-border-radius: 50%;
   animation: banner_animi_1 linear 3s infinite alternate;
}

.banner_food_img::after {
   position: absolute;
   content: "";
   background: url(../images/banner_shape3.png);
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   width: 375px;
   height: 375px;
   top: -35px;
   left: -36px;
   animation: banner_food_img_animi linear 70s infinite;
   -webkit-animation: banner_food_img_animi linear 70s infinite;
}

@keyframes banner_food_img_animi {
   from {
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
   }

   to {
      transform: rotate(360deg);
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
   }
}

/*banner end*/

/* choose start */
.choose_heading {
   border-right: 1px solid #88888545;
   padding-right: 42px;
}

.single_choose {
   text-align: center;
}

.single_choose span {
   display: block;
   width: 85px;
   height: 80px;
   margin: 0 auto;
}

.single_choose h6 {
   margin-top: 15px;
   font-size: 20px;
   font-weight: 500;
   font-family: var(--bodyFont);
   text-transform: capitalize;
}

/* choose end */

/* landing demo start */
.landing_page {
   background: #f4ecdf !important;
}

.landing_page_quality {
   margin-bottom: 30px;
   gap: 35px;
}

.landing_page_quality li {
   font-size: 16px;
   font-weight: 500;
   text-transform: capitalize;
   position: relative;
   padding-left: 40px;
}

.landing_page_quality li::after {
   position: absolute;
   content: "\f00c";
   font-family: "font awesome 5 free";
   font-weight: 600;
   font-size: 12px;
   background: var(--colorPrimary);
   color: var(--colorWhite);
   width: 30px;
   height: 30px;
   top: -4px;
   left: 0;
   text-align: center;
   line-height: 30px;
   border-radius: 50%;
}

.landing_page_single {
   text-align: center;
   margin-top: 25px;
}

.landing_page_img {
   overflow: hidden;
   position: relative;
   border-radius: 10px;
   background: #f4f4f4;
   box-shadow: var(--shadow);
   margin-bottom: 15px;
   aspect-ratio: 4/5;
}

.landing_page_img img {
   position: absolute;
   width: 100%;
   height: auto !important;
   top: 0;
   left: 0;
   transition: 5s;
   transform: translateY(0);
}
.landing_page_img img:hover {
   transform: translateY(calc(-100% + 520px));
}

.inner_page_img {
   margin-bottom: 10px;
   height: 550px;
   position: relative;
   border-radius: 10px;
   border: 5px solid #fff;
   box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.inner_page_img img {
   width: 100% I !important;
   height: 100% I !important;
   object-fit: fill !important;
   border-radius: 10px;
   -webkit-border-radius: 10px;
   -moz-border-radius: 10px;
   -ms-border-radius: 10px;
   -o-border-radius: 10px;
}
.overly {
   position: absolute;
   background: #000000b5;
   width: 100%;
   height: 100%;
   top: 0;
   right: 0;
   opacity: 0;
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
   border-radius: 10px;
   -webkit-border-radius: 10px;
   -moz-border-radius: 10px;
   -ms-border-radius: 10px;
   -o-border-radius: 10px;
   transition: all linear 0.3s;
   -webkit-transition: all linear 0.3s;
   -moz-transition: all linear 0.3s;
   -ms-transition: all linear 0.3s;
   -o-transition: all linear 0.3s;
   gap: 15px;
}

.overly:hover {
   opacity: 1;
}

.overly_btn {
   padding: 14px 30px;
   background: var(--colorPrimary);
   color: var(--colorBlack);
   border-radius: 4px;
   transition: all linear 0.3s;
}

.overly_btn:hover {
   background: var(--colorWhite);
   color: var(--colorBlack);
}

.landing_page_single a {
   width: 100%;
   text-transform: uppercase;
   border-radius: 6px;
   padding: 10px 0px;
   background: var(--colorPrimary);
   color: var(--colorWhite);
   font-weight: 600;
   font-family: var(--headingFont);
   font-size: 18px;
   transition: 0.5s;
}
.landing_page_single a:hover {
   background-color: var(--colorBlack);
   color: var(--colorWhite);
}

/* landing demo end */

/* responsive start */
.responsive {
   background-repeat: no-repeat !important;
   background-size: cover !important;
   background-position: center !important;
   position: relative;
}

.responsive_overlay {
   background: #ffffffb5;
}

.responsive_text p {
   margin-top: 20px;
   font-size: 15px;
}

.responsive_btn {
   font-size: 16px;
   font-weight: 500;
   font-family: var(--headingFont);
   text-transform: capitalize;
   padding: 12px 30px;
   color: var(--colorWhite);
   background: var(--colorPrimary);
   margin-top: 50px;
   border: 2px solid transparent;
   border-radius: 4px;
   -webkit-border-radius: 4px;
   -moz-border-radius: 4px;
   -ms-border-radius: 4px;
   -o-border-radius: 4px;
   transition: all linear 0.3s;
   -webkit-transition: all linear 0.3s;
   -moz-transition: all linear 0.3s;
   -ms-transition: all linear 0.3s;
   -o-transition: all linear 0.3s;
}

.responsive_btn:hover {
   color: var(--colorWhite);
   background: var(--colorBlack);
}

.responsive_img {
   width: 800px;
   height: auto;
   position: relative;
   right: 50px;
}

/* responsive end */

/* uniqe pages start */
.single_uniqe_pages {
   text-align: center;
   margin: 0px 12px;
}

.single_uniqe_pages_img {
   margin-bottom: 10px;
   height: auto;
   border-radius: 10px;
   overflow: hidden;
   box-shadow: rgb(149 157 165 / 28%) 0px 8px 15px;
   border: 2px solid var(--colorPrimary);
}

.single_uniqe_pages p {
   text-transform: capitalize;
}

.unique_header {
   background-position: center !important;
   background-repeat: no-repeat !important;
   background-size: cover !important;
}

.unique_header__overlay {
   background: #fefbf7ad;
}

.unique_header .common_heading3 h4 {
   margin-bottom: 20px;
}

.unique_header_img img {
   margin-top: 30px;
   box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.slick-dots {
   display: flex;
   justify-content: center;
   margin-top: 15px;
   gap: 12px;
}

.slick-dots li button {
   font-size: 0;
   width: 5px;
   height: 5px;
   background: var(--colorPrimary);
   border-radius: 50%;
   transition: all linear 0.3s;
   -webkit-transition: all linear 0.3s;
   -moz-transition: all linear 0.3s;
   -ms-transition: all linear 0.3s;
   -o-transition: all linear 0.3s;
   position: relative;
}

.slick-dots li button::after {
   position: absolute;
   content: "";
   width: 15px;
   height: 15px;
   top: -5px;
   left: -5px;
   border: 1px solid var(--colorPrimary);
   border-radius: 50%;
   -webkit-border-radius: 50%;
   -moz-border-radius: 50%;
   -ms-border-radius: 50%;
   -o-border-radius: 50%;
   opacity: 0;
   transition: all linear 0.3s;
   -webkit-transition: all linear 0.3s;
   -moz-transition: all linear 0.3s;
   -ms-transition: all linear 0.3s;
   -o-transition: all linear 0.3s;
}

.slick-dots li.slick-active button,
.slick-dots li.slick-active button:hover {
   opacity: 1;
}

.slick-dots li button:hover::after,
.slick-dots li.slick-active button::after {
   opacity: 1;
}

/* uniqe pages  end */

.unique_footer {
   background: #f4ecdf;
}

/* feature start */
.feature_header {
   text-align: center;
   border: none;
   padding: 0;
}

.feature_header h2 {
   margin-bottom: 20px;
}

.single_feature {
   background: var(--colorWhite);
   box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
   text-align: center;
   padding: 50px 20px;
   margin-top: 25px;
   border-radius: 5px;
}

.single_feature img {
   width: 80px !important;
   height: 80px !important;
}

.single_feature h6 {
   font-size: 18px;
   font-weight: 600;
   margin-top: 15px;
   text-transform: capitalize;
}

/* feature end */

/* copyright start */
.copyright {
   background: var(--colorBlack);
}

.main_copyright {
   text-align: center;
}

.main_copyright p {
   font-weight: 400;
   margin-top: 32px;
   color: var(--colorWhite);
}

.main_copyright p a {
   color: #ffd83a;
   transition: all linear.3s;
}

.main_copyright p a:hover {
   color: var(--colorWhite);
}

/* copyright end */
.passwoard .modal-header {
   border: none;
}
.passwoard .modal-close {
   background-color: #ff7171;
   border-radius: 50%;
   font-size: 14px;
   position: absolute;
   right: 0;
   top: -37px;
   padding: 10px;
}
.passwoard .modal-content {
   /* background-color: #f4ecdf; */
   text-align: center;
   padding: 30px;
}
.passwoard .modal-content .modal-body p span {
   color: #f76b6a;
   font-size: 20px;
}
.passwoard .modal-content a {
   border-radius: 30px;
   margin-top: 20px !important;
}
.passwoard .modal-content .modal-header button:focus {
   outline: 0;
   box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

/*==============================
  DEMO PAGE END
===============================*/
