/*
Created on : Jan 06, 2021
Author     : Webiknows IT Solutions Pvt Ltd
Version: 1.2
*/

/*============================
 [Table of CSS]
 	1. Global variable css
	2. Background Color
	3. Color and Font
	4. Headings and Typographic Classes / .title, .uppercase etc
	5. Button
	6. Margins and Paddings
	7. Position
	8. Custom Checkbox and radio
	9. Reset Css
	10. Cus Scroll
	11. Ellipsis
  12. Animation
  13. FLOATING LABEL
  14. ACCORDION
========================================*/
/*-----------------
1. Global variable css
-----------------------*/
:root {
	--gradient-btn:  -webkit-linear-gradient(0deg, #394263 0%, #6373b1 100%);
    --primary-clr: #282f66;
    --secondary-clr: #e65100;
    --text-clr: #333333;
    --accent-clr: #ffb74d;
    --lightgrey-clr: #ededed;
    --ff-heading: 'Roboto', sans-serif;
    --ff-para: 'Merriweather', serif;
}

@font-face {
    font-family: 'rupeeregular';
    src: url('../Fonts/rupee-webfont.woff2') format('woff2'),
         url('../Fonts/rupee-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: 'roboto-bold';
  src: url('../fonts/roboto-bold/roboto-bold-webfont.woff2') format('woff2'),
       url('../fonts/roboto-bold/roboto-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'roboto-regular';
  src: url('../fonts/roboto-regular/roboto-regular-webfont.woff2') format('woff2'),
       url('../fonts/roboto-regular/roboto-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/*<span class="ruppee-f">`</span>*/
.ruppee-f {font-family: 'rupeeregular';font-weight: 600;}

/*-----------------
2. Background Color 232323
-----------------------*/
.bg-primary {background: var(--primary-clr);}
.bg-primary2 {background: #232323 !important;}
.bg-secondary {background: var(--secondary-clr) !important;}
.bg-lightgrey {background: var(--lightgrey-clr);}
.bg-lightgrey2 {background: #fbfbfb;}
.bg-lightgrey3 {background: #f7f7f7;}
.bg-white {background: #fff !important;}
.bg-t {background: transparent !important;}
.bg-yellow {background: #ffa727 !important
}

/*-----------------
3. Color and Fonts 
-----------------------*/
.primary-clr {color: var(--primary-clr) !important;opacity:0.9;}
.secondary-clr {color: var(--secondary-clr) !important;}
.white {color: #fff !important;}
.gray {color: #989898 !important;}
.text-clr {color: #fff;}
.green{color:#38BC68;}
.yellow {color:#ffa727 !important}
.f-headind {font-family: var(--ff-heading);}
.f-para {font-family: var(--ff-para);}
/*-----------------
4. Headings and Typographic Classes / .title, .uppercase etc
-----------------------*/
/* - Font size classes - */
.big {font-size: 3.6rem;line-height: 4.8;}
.bigger {font-size: 4.8rem;line-height: 1.2;}
.super {font-size: 6rem;line-height: 1.2;margin-bottom: 0;}
.f-12 {font-size: 12px;}
.f-13 {font-size: 13px;}
.f-14 {font-size: 14px;}
.f-16 {font-size: 16px;}
.f-18 {font-size: 18px;}
.f-20 {font-size: 20px;}
.f-22 {font-size: 22px;}
.f-24 {font-size: 24px;}
.f-26 {font-size: 26px;}
.f-28 {font-size: 28px;} 
.f-36 {font-size: 36px;} 
.f-48 {font-size: 48px;} 

/* - Font weight classes - */
.bold {font-weight: bold;}
.regular {font-weight: normal;}
.bold-500 {font-weight: 500;}
.bold-600 {font-weight: 600;}
.bold-700 {font-weight: 700;}


.opacity-25 {opacity: 0.25;}
.opacity-half {opacity: 0.5;}
.opacity-75 {opacity: 0.75;}
.opacity-85 {opacity: 0.85;}
.opacity-1 {opacity: 1;}

/* - Text transform classes - */
.txt-upper {text-transform: uppercase;}
.txt-lower {text-transform: lowercase;}
.txt-capital {text-transform: capitalize;}
.l-h-1 {line-height: 1;}
.l-h-2 {line-height: 1.2;}
.l-h-3 {line-height: 1.3;}
.l-h-4 {line-height: 1.4;}
.l-h-5 {line-height: 1.5;}
.l-h-6 {line-height: 1.6;}
.l-h-7 {line-height: 1.7;}
.l-h-8 {line-height: 1.8;}
.l-h-9 {line-height: 1.9;}
.l-h2 {line-height: 2;}

/*-----------------
5. Button  
-----------------------*/
.cus_btn2 {
  background: #ffb74d;
  border: none;
  color: var(--primary-clr);
  margin-top: 10px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: none !important;
}
.cus_btn2:hover {
    color: #fff;
    background: var(--secondary-clr) !important;
    border: 0px solid var(--secondary-clr) !important;
}
.cus-primary-btn {
    color: #fff;
    background: var(--primary-clr);
    text-align: center;
    border: 1px solid var(--primary-clr);
    min-width: 100px;
    font-weight: 600;
    font-size: 14px;
    line-height: 34px;
    transition: all 0.3s;
    box-shadow: none !important;
}
.cus-primary-btn:hover {
    color: #fff;
    background: var(--secondary-clr) !important;
    border: 0px solid var(--secondary-clr) !important;
}

.cus-primary-btn-outline { 
    color: var(--primary-clr);
    background: transparent;
    text-align: center;
    border: 1px solid var(--primary-clr);
    min-width: 100px;
    font-weight: 600;
    font-size: 14px;
    line-height: 34px;
    transition: all 0.3s;
}
.cus-primary-btn-outline:hover {
    color: #fff !important;
    background: var(--secondary-clr) ;
    border: 1px solid var(--secondary-clr);
}
/*-----------------
6. Margins and Paddings
-----------------------*/






/*-----------------
7. Position
-----------------------*/
.top-left {position: absolute;top: 8px;left: 16px;}
.top-right {position: absolute;top: 8px;right: 16px;}
.top-center {position: absolute;top: 0;left: 50%;transform: translate(-50%, 0);}  
.bottom-right {position: absolute;bottom: 8px;right: 16px;}
.bottom-left {position: absolute;bottom: 8px;left: 16px;}
.bottom-center {position: absolute;bottom: 0;left: 50%;transform: translate(-50%, 0%);}  
.p-centered {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);}
.v-center {-webkit-transform: translate(0,-50%);-o-transform: translate(0,-50%);transform: translate(0,-50%);top: 50%;margin: 0 auto;}
.modal-dialog-bottom {display: -ms-flexbox;display: flex;-ms-flex-align: center;align-items: flex-end; min-height: calc(100% - 0rem);}
.modal-rounded {border-radius: 8px 8px 0 0;}

/*-----------------
8. Custom Checkbox
-----------------------*/
.cus-checkbox [type="checkbox"]:checked,
.cus-checkbox [type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.cus-checkbox [type="checkbox"]:checked + label,
.cus-checkbox [type="checkbox"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}
.cus-checkbox [type="checkbox"]:checked + label:before,
.cus-checkbox [type="checkbox"]:not(:checked) + label:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
}
.cus-checkbox [type="checkbox"]:checked + label:after,
.cus-checkbox [type="checkbox"]:not(:checked) + label:after {
  content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--primary-clr);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg) !important;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.cus-checkbox [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.cus-checkbox [type="checkbox"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/*############custom radio start here########*/
.cus-radio [type="radio"]:checked,
.cus-radio [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.cus-radio [type="radio"]:checked + label,
.cus-radio [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}
.cus-radio [type="radio"]:checked + label:before,
.cus-radio [type="radio"]:not(:checked) + label:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}
.cus-radio [type="radio"]:checked + label:after,
.cus-radio [type="radio"]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--primary-clr);
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.cus-radio [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.cus-radio [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.custom-select {
   background: transparent;
    background-image: url(../../assets/images/icons/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: center right 12px;
    min-width: 100px;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px;
}


/*-----------------
9. Reset Css
-----------------------*/
/* @media screen and (min-width: 320px) {
  html {font-size: calc(16px + 6 * ((100vw - 320px) / 680));}
}
@media screen and (min-width: 1000px) {
  html {font-size: 22px;}
}
html{font-size: 62.5%;}
*/
::selection {
  background-color: var(--primary-clr);
  color: #fff;
} 
body {
  font-family: 'Lexend', sans-serif;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: 'Lexend', sans-serif;
}
a:hover {
  color: var(--secondary-clr);
}
/*-----------------
10. Custom Scrollbar
-----------------------*/
.cus-scrollbar {
	margin-left: 30px;
	float: left;
	height: 200px;
	background: #F5F5F5;
	overflow-y: scroll;
	margin-bottom: 25px;
}
/* * STYLE 1 */
.style-1::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}
.style-1::-webkit-scrollbar {
	width: 12px;
	background-color: #F5F5F5;
}
.style-1::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #555;
}
/** STYLE 2 **/
.style-2::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}
.style-2::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}

.style-2::-webkit-scrollbar-thumb
{
	background-color: #000000;
}
/*-----------------
11.Ellipsis
-----------------------*/
.ellipsis-line1 {  
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ellipsis-line2 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ellipsis-line3 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.ellipsis-line4 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.ellipsis-line5 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

/*-----------------
12.Animation
-----------------------*/
/* Ripple effect */
.ripple {
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    transform: scale(0);
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}
/*------------------------------
13.FLOATING LABEL
-------------------------------*/
.float-labels .form-group {
   position: relative;
   margin-bottom: 10px;
}
.float-labels input,
.float-labels textarea {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #999;
    padding: 10px 0;  
    box-sizing: border-box;
}
.float-labels label {
    position: absolute;
    top: 15px;
    left: 0px;
    transition: .5s;
    pointer-events: none;
}
.float-labels  input:focus ~ label,
.float-labels textarea:focus ~ label, 
.float-labels input:read-only ~ label,
.float-labels input[disabled] ~ label,
.float-labels  input:valid ~ label,
.float-labels textarea:valid ~ label {
    top: -6px;
    left: 0;
    font-size: 11px;
}
.float-labels  input:focus,
.float-labels textarea:focus{
    box-shadow:none;
    border-bottom: 1px solid var(--primary-clr);
}

/****  floating-Lable style 2 placeholder=" " ****/
.floating-label { 
  position:relative; 
  margin-bottom:20px; 
}
.floating-select {
  font-size: 14px;
    padding: 4px 0;
    display: block;
    width: 100%;
    height: 30px;
    min-height: 50px;
    line-height: 30px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.floating-select:focus {
     outline:none;
     border-bottom:1px solid var(--primary-clr); 
}
.select-label {
  font-size:14px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:5px;
  top:5px;
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}

.floating-select:focus ~ label ,
.floating-select:not([value=""]):valid ~ label {
    top: -8px;
    font-size: 11px;
}

/* active state */
.floating-select:focus ~ .bar:before,
.floating-select:focus ~ .bar:after {
  width:50%;
}

/* highlighter */
.highlight {
  position:absolute;
  height:50%; 
  width:100%; 
  top:15%; 
  left:0;
  pointer-events:none;
  opacity:0.5;
}

/* active state */
.floating-input:focus ~ .highlight , .floating-select:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/* animation */
@-webkit-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}

/****  floating-Lable style end ****/

/*------------------------------
14. ACCORDION
-------------------------------*/
.accordion-plus:before {
    content: "\f107";
    position: absolute;
    right: 30px;
    font-family: FontAwesome;
}
.accordion-plus[aria-expanded="true"]:before {
    transform: rotateZ(180deg);
}
/*------------------------------
COMMON CSS
-------------------------------*/
.modal-header .close {
    outline: none;
}
a .material-icons {
 transition: all 0.3s;
}
a:hover .material-icons {
  margin-left: 20px !important;
}
.pl-14 {
  padding-left: 14px;
}
.vw-100 {width: 100vw;}
.vh-100 {height: 100vh;}
.vh-48 {height: 48vh;}


.w-120px {width: 120px}
.w-250px {width: 250px}
.w-100px {width: 100px}

.h-60px {height: 60px}
.h-120px {height: 120px}
.h-130px {height: 130px}
.h-150px {height: 150px}
.h-160px {height: 160px}
.h-180px {height:180px;}
.h-200px {height: 200px;}
.h-210px {height: 210px;}
.h-230px {height: 230px;}
.h-250px {height: 250px} 

.z-index-99 {
  z-index: 99;
}

.fit-image {
    object-fit: cover;
}
.grayscale{
    filter: grayscale(100%);
}
.shadow-light {
    box-shadow: 0 0 10px rgba(0,0,0,.05);
}
.zoom-hover {
    transition: all .5s ease;
}
.zoom-hover:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}
.img-hover-color {
      filter:grayscale(1);
      -webkit-filter: grayscale(1);
      -webkit-transition: all .8s ease-in-out;  
}
.img-hover-color:hover {
      filter: none;
      -webkit-filter: grayscale(0);
      -webkit-transform: scale(1.01);
}
.on_hover_show .show_div {
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: translateY(-25px);
    -moz-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    -o-transform: translateY(-25px);
    transform: translateY(-25px);
    text-align: center;
    width: 100%;
    visibility: hidden;
    display: table;
    opacity: 0;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.on_hover_show:hover .show_div {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
}
.rotated_180 {
    transform: rotate(180deg);
}

.opacity-1 {opacity: 1;}
.opacity-75 {opacity: 0.75;}
.opacity-50 {opacity: 0.5;}
.opacity-25 {opacity: 0.25;}

.b-r-4 {border-radius: 4px;}
.b-r-5 {border-radius: 5px;}
.b-r-6 {border-radius: 6px;}
.b-r-8 {border-radius: 8px;}
.b-r-10{border-radius: 10px;}
.b-r-20{border-radius: 20px;}
.b-r-50{border-radius: 50px;}

.image-upload > label {pointer-events: inherit;}
.image-upload > input {display: none;}
.image-upload img {width: 40px;cursor: pointer;}

.grid-2 {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}
.grid-2 .grid-item {
  width: 100%;
  padding: 7px 0;
  display: inline-block;
}

.grid-item-2 {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: auto auto;
}

.grids-3 {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: auto auto auto;
}
.grids-4 {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: auto auto auto auto;
}
html, body {
    height: inherit;
    overflow: inherit;
}
.page {
    box-shadow: none;
    z-index: 4;
}

a.bg-secondary:focus, a.bg-secondary:hover, button.bg-secondary:focus, button.bg-secondary:hover {
  background-color: var(--primary-clr) !important;
  color: #fff;
}
/*-----------------
7. HEADER
-----------------------*/
header.fixed-header~.page-content {
  padding-top: 74px;
  background-color: #F2F2F2;
}
header.fixed-header {
  position: fixed;
}
.ios .color-theme-yellow .sidebar, .ios .color-theme-yellow .fullscreen-menu, .md .color-theme-yellow .sidebar,
.md .color-theme-yellow .fullscreen-menu, .md .color-theme-yellow header, .color-theme-yellow .circle-background:before {
	background: #f2f2f2;
}
.top_menu {
    width: 100%;
    display: flex;
    padding: 0;
    margin: 10px 0 10px 0;
}
.top_menu .navbar-nav {
    width: auto;
    display: flex;
    align-items: center;
}
.top_menu .navbar-nav li .dropdown-menu a {
    padding-left: 14px;
    color: #312d2e;
    background: #fff;
    transition: all 0.3s;
}
.top_menu .navbar-nav li .dropdown-menu a:hover {
	color: #312d2e;
    padding-left: 20px;
    background: #fff;
}
.top_menu .navbar-nav li a:hover, .top_menu .navbar-nav li a:focus {
    color: #ffffff;
    background: transparent;
}
.top_menu .navbar-nav li a.dropdown-toggle::after {
	font-size: 0;
    position: absolute;
    right: 0px;
    top: 20px;
    background: url(../images/icons/arrow_up_primary.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(180deg);
    transform-origin: center;
    height: 10px;
    width: 10px;
    transition: all 0.3s;
}
.top_menu .navbar-nav li a[aria-expanded="true"].dropdown-toggle::after {
    transform: rotate(0deg);
    transform-origin: center;
}
header {
  height: 74px;
}
.logo figure img {
  max-height: 50px;
  vertical-align: middle;
  margin-left: -34px;
}
.md .sidebar-left {
    background: var(--primary-clr) !important;
}
.profile-link {
    background: #ffb74d;
}
#footer .container {
    /* padding-top: 80px; */
}
#footer {
    background-color: #1B1D21;
}
#navbarNavDropdown .demo_btn {
    background: linear-gradient(270deg, rgba(197, 41, 35, 1) 0%, rgba(232, 129, 15, 1) 100%);
    border: none;
    color: #fff;
    text-align: center;
    transition: all 0.3s;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
}
#navbarNavDropdown .demo_btn:hover {
    background: linear-gradient(270deg, rgba(232, 129, 15, 1) 0%, rgba(197, 41, 35, 1) 100%);
}

.footer_logo img {
  margin-bottom: 3rem!important;
}

.header_on_scroll {
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0px 14px;
  box-shadow: 0 5px 9px 0 rgb(201 201 201 / 50%);
  background-color: #ffffff;
  transform: translateY(-150px);
  transition: all 0.3s;
}
.fixed_header_on_scroll {
  position: fixed;
  top: 0px;
  z-index: 99;
  transform: translateY(0);
}

.header_on_scroll_btn {
margin-right: 20px;
  line-height: 34px;
  height: 46px;
  background: #ffb74d;
  border: none;
  color: var(--primary-clr);
}
.menu-left-open .backdrop,
.menu-right-open .backdrop-right {
  content: '';
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.banner_title_left img {
  height: 90px;
  width: 100px;
  position: absolute;
  left: 0;
  margin-bottom: -30px;
}

.banner_title_right img {
  height: 177px;
  width: 164px;
  position: absolute;
  right: 0;
  margin-bottom: -76px;
}
#footer ul {
    text-align: left;
    list-style: none;
    padding: 0;
}
#footer ul li {
    margin-bottom: 5px;
    width: 50%;
    display: inline-block;
    float: left;
}
#footer h3 {
    font-size: 14px;
    text-align: left;
    margin-bottom: 15px;
    font-weight: bold;
    color: #fff;
}
#footer ul li a {
    font-weight: 500;
    color: #aba8a8;
    font-size: 14px;
    transition: all 0.3s;
}

#footer ul li a:hover {
  color: var(--secondary-clr);
  margin-left: 6px;
}
#footer .footer_link_developer li {
    margin-bottom: 5px;
    width: 100%;
    display: inline-block;
    float: none;
}
.navbar .navbar-nav li > a span {
  position: relative;
  overflow: hidden;
}

.navbar .navbar-nav li > a span::after {
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  -o-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: currentColor;
}

.navbar .navbar-nav li:hover > a span::after {
  width: 100%;
  left: 0;
  right: auto;
}

.navbar .navbar-nav li.active > a span::after {
  width: 100%;
  left: 0;
  right: auto;
}

.navbar .navbar-nav li {
  position: relative;
}
/*-----------------
7. Homepage 
-----------------------*/
.homepage-restaurant {
    margin-top: 0;
    padding-bottom: 30px;
    margin-bottom: 0px;
}
.homepage-restaurant .swiper-wrapper .swiper-slide {
    padding: 0;
}
.homepage-restaurant .banners_data .btn {
    background: #fff;
    border: none;
    color: #272B5F;
}
.homepage-restaurant .banners_data .btn:hover {
  color: #fff !important;
}
.banner_container {
  background: #f86813;
}

.homepage-restaurant .swiper-wrapper .swiper-slide figure {
    border-radius: 0;
    height: 550px;
}
.brands .swiper-slide {
  padding: 15px 0;
  justify-content: space-between;
}
.brands .swiper-slide a img {
  max-height: 40px;
}
.brands .swiper-slide {
    display: block;
    text-align: center;
}
.Developer_img {
  max-height: 650px;
}
.PartnerStories_list .col-md-4 {
  border-left: 2px dotted var(--accent-clr);
  padding-left: 30px;
}
   



.header-margin {
  margin-bottom: 30px !important;
}

.payments {
    color: #FF8400 !important;
}
.banners-text {
   color : #272B5F !important;
}
.know-more-link {
    position: relative;
    color: black;
}
.know-more-link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 20px;
    background: #000;
    transition: all 0.3s;
}
.know-more-link:hover:after {
    width: 100%;
}
.know-more-link.yellow:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 20px;
    background: #FF8400;
    transition: all 0.3s;
}
.features-list {
    transition: all 0.3s;
}



.features-list:hover {
    background-color: white;
    box-shadow: 0 0 10px rgb(0 0 0 / 5%);
}

.features-list:hover .know-more-link:after {
    width: 100%;
}

.secondary-clr {
    background: var(--secondary-clr) !important;
}

.webstore {
    background-image: url("../images/webstore_bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 70px;
}
.Why_Shopeefix_list > div:nth-child(even) {
    margin-top: 80px;
}
.Why_Shopeefix_list .heading {
    margin-top: 14px;
    margin-bottom: 14px;
}
.Why_Shopeefix_list .desc {
    font-size: 16px;
    line-height: 1.7;
    color: #a2a2a2;
}
.digital_journey {
    position: relative;
    background: linear-gradient(270deg, rgba(197, 41, 35, 1) 0%, rgba(232, 129, 15, 1) 100%);
    margin-bottom: 100px !important;
}
.digital_journey:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(270deg, rgba(197, 41, 35, 0.5) 0%, rgba(232, 129, 15, 0.5) 100%);
    filter: blur(30px);
}

.testimonial-slide .navigation {
    width: 100%;
    position: absolute;
    top: 44%;
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 99;
}
.slidePrev-btn img {
    transform: rotate(180deg);
}
.testimonial-slide .swiper-pagination-bullet-active {
    opacity: 1;
    background: #1d2058;
}
.swiper-pagination-bullet {
    background: #1d2058;
    margin-right: 10px;
}
.swiper-pagination-bullet:last-child {
    margin-right: 0px;
}




/*######### Self Registration Form END ########*/
.Self-Registration {
   background-color: #e3ecf3 !important;
}

.Self-Registration #regForm {
   background-color: #ffffff;
   margin: 0px auto;
   padding: 20px 40px;
   border-radius: 10px
}
.Self-Registration input {
   padding: 10px;
   width: 100%;
   font-size: 17px;
   border: 1px solid #aaaaaa
}
.Self-Registration input.invalid {
   background-color: #ffdddd
}
.Self-Registration .tab {
    display: none;
}

.Self-Registration .step {
   height: 7px;
   width: 7px;
   margin: 0 2px;
   background-color: #bbbbbb;
   border: none;
   border-radius: 50%;
   display: inline-block;
   opacity: 0.5
}
.Self-Registration .step.active {    opacity: 1;    background: var(--primary-clr);}
.Self-Registration .step.finish {
    background-color: var(--primary-clr);
    opacity: 1;
}
.red {color: red;}

.blue_button {
    background: #37429e;
    color: #fff;
    height: 36px;
    line-height: 36px;
    border: 0;
    overflow: hidden;
    padding: 0 34px;
    border-radius: 20px;
}
.blue_button:hover {
    background: var(--primary-clr);
    color: #fff;
}.blue_button:active,.blue_button:focus {	border: 2px solid #e77e10;}

.orange_button {	background-image: linear-gradient(270deg, rgba(197, 41, 35, 1) 0%, rgba(232, 129, 15, 1) 100%);	background-position: left center; /* change the direction of the change here */	background-size:130%;	transition: all 0.3s;}.orange_button {
    color: #fff;
    height: 36px;
    line-height: 36px;
    border: 0;
    overflow: hidden;
    padding: 0 34px;
    border-radius: 20px;
}
.orange_button:hover {
    background-position: right center; /* change the direction of the change here */	background-size:100%;
    color: #fff;
    text-decoration: none;
}.orange_button:active,.orange_button:focus {	border: 2px solid #000;}
.Self-Registration .ye_no_radio_box {
    display: flex !important;
    max-width: 60px;
    align-items: center;
}

.Self-Registration .theme_list {
    margin-bottom: 10px;
}
.Self-Registration .btn.focus, .Self-Registration .btn:focus {
    outline: 0;
    box-shadow: none;
}
.success_msg p {
    color: green;
}
.error_msg p {
    color: red;
    border: 1px solid red;
    padding: 8px;
    margin: 0;
    border-radius: 3px;
}

.Self-Registration .select_theme_box {
    background: #e3ecf3;
    padding: 10px;
    border-radius: 6px;
    max-height: 280px;
    overflow-y: auto;
    margin-bottom: 10px;
}.next img {    max-height: 10px;    margin-left: 4px;}.prev img {    max-height: 10px;    margin-right: 4px;}/*Change text in autofill textbox*/input:-webkit-autofill,input:-webkit-autofill:hover,input:-webkit-autofill:focus,input:-webkit-autofill:active  {  -webkit-box-shadow: 0 0 0 30px white inset !important;}

/*######### Self Registration Form END ########*/





/*######### MEDIA QUERY START HERE ########*/
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 768px) {
	
.Why_Shopeefix_list > div:nth-child(even) {
    margin-top: 0px;
}
.webstore {
    padding: 40px 30px;
    background-color: #282b60;
    background-image: none;
}
.testimonials .media {
    display: block;
}
.testimonials .media > img {
    width: 100%;
}
.testimonials .media > .media-body > h2 {
    font-size: 16px;
}
.digital_journey h2 {
    font-size: 25px;
}
  .m_mr_4 {
  	    margin-right: 1.5rem!important;
  }	
  .f-48 {
    font-size: 28px;
  }
  .m_mt_14 {
    margin-top: 14px;
  }
  .m_mb_14 {
    margin-bottom: 14px;
  }
  .m_mb_24 {
    margin-bottom: 24px !important;
  }
  .m_mt_24 {
    margin-top: 24px;
  }
  .m_pl_14 {
    padding-left: 14px !important;
  }

  .m_pl_0 {
    padding-left: 0px;
  }
.f-36 {
    font-size: 26px;
}
  nav.top_menu {
    flex-direction: row-reverse;  
  }
.homepage-restaurant .swiper-wrapper .swiper-slide figure {
    border-radius: 0;
    height: auto;
}
.footer_logo {
  display: flex;
  align-items: center;
}
.footer_logo img {
  margin-bottom: 0 !important;
  margin-right: 20px;
}


} /* Small devices (portrait tablets and large phones, 600px and up) */



@media only screen and (max-width: 320px) {


} 

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

/*background*/
.lg-bg-primary {background: var(--primary-clr) !important;}
.lg-bg-secondary {background: var(--secondary-clr) !important;}
.lg-bg-white {background: #fff !important;}
.lg-bg-greylight {background: #f3f3f3 !important;}
.lg-bg-t {background: transparent !important;}  
}  

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1.1rem;
    padding-left: 1.1rem;
    color: #191612;
    font-size: 16px;
}
.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav li.active .nav-link {
  color: var(--secondary-clr);
} 

    
}


/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {...}
.