@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Public+Sans: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');
:root {
    /* widths for rows and containers
     */
    --header-height       : 160px;
    --header-height-min   : 80px;
}
/* on mobile devices below 600px
 */
@media screen and (max-width: 600px) {
    :root {
        --header-height : 100px;
        --header-height-min   : 80px;
    }
}
/* Theme Colors */
:root {
    --accent-color       : #333;
    --body-text-color    : #777;
    --dark-color         : #000;
    --light-color        : #fff;
    --grey-color         : #e3e3e3;
    --light-grey-color   : #f1f1f1;
    --dark-grey-color    : #4e4e4e;
    --primary-color      : #6bcaff;
}

/* Fonts */
:root {
    --body-font           : 'Poppins', sans-serif;
    --heading-font        : "Poiret One", Lato, sans-serif;
}


/*----------------------------------------------*/
/* 2 GENERAL TYPOGRAPHY */
/*----------------------------------------------*/

/* 2.1 General Styles
/*----------------------------------------------*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
}
body {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 2;
  color: var(--body-text-color);
  margin: 0;
}
body.no-scroll {
    overflow: hidden;
}
a {
  color: var(--dark-color);
  text-decoration: none;
  transition: 0.3s color ease-out;
}
a.light {
  color: var(--light-color);
}
a:hover {
  text-decoration: none;
  color: var(--dark-color);
}
ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 0;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 5px;
  margin-bottom: 0;
}
ul li, ol li {
  margin-bottom: 5px;
  outline: 0;
}
ul li.active a{
  color: var(--dark-color);
}
ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}
dl {
  margin-top: 0;
  margin-bottom: 2rem;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: 0;
}
figure {
  margin: 0;
}
img {
  display: inline-block;
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
::selection {
  background: var(--primary-color);
  color: var(--light-color);
  text-shadow: none;
}
::-moz-selection {
  background: var(--primary-color);
  color: var(--light-color);
  text-shadow: none;
}

/* image align */
figure.align-right {
  margin: 30px 0 30px 30px;
}

/* Typography */
/*----------------------------------------------*/

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: 'Poiret One', cursive !important;
  color: var(--dark-color);
  line-height: 1.2;
}
h1.light, .h1, h2.light, .h2, h3.light, .h3, h4.light, .h4, h5.light, .h5, h6.light, .h6 {
  color: var(--light-color);
}
h1, h2, h3 {
  margin: 25px 0;
  text-transform: capitalize;
}
h5, h6 {
  letter-spacing: 1px;
}
h1, .h1 {
  font-size: 2.5em;
  line-height: 1.4;
}
h2, .h2 {
  font-size: 1.5em;
  line-height: 1.4;
}
h3, .h3 {
  font-size: 1.4em;
  line-height: 1.4;
}
h4, .h4 {
  font-size: 1.1em;
  line-height: 1.4;
}
h5, .h5 {
  font-size: .83em;
  line-height: 1.25;
}
h6, .h6 {
  font-size: .67em;
  line-height: 1.1;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
}
p {
   font-family: 'Open Sans', sans-serif;
   font-size: 16px;
   line-height: 1.5;
   margin: 0 0 20px 0;
}
p.dark {
    color: var(--dark-color);
}
p.light {
    color: var(--light-color);
}
p:empty {
  display: none;
}
small {
  font-size: 85%;
}
mark {
  background-color: var(--grey-color);
  padding: 0.28rem;
}
dfn, cite, em, i {
  font-style: italic;
}
::placeholder {
    color: var(--dark-grey-color);
}

/*----------------------------------------------*/
/* 2.1 Floating & Alignment */
/*----------------------------------------------*/

.align-left {
  float: left;
  text-align: left;
}
.align-right {
  float: right;
  text-align: right;
}
.align-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/**::after,*/
.container::after,
.row::after,
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/** Text Align
--------------------------------------------------------------*/
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lead {
  font-size: 120%;
  line-height: 1.7em;
}
.text-lead strong {
  font-size: 115%;
  font-weight: 500;
}
.text-muted {
  color: var(--primary-color);
}
.text-primary {
  color: var(--primary-color);
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/*------------------------------------------------
/* 2.3 Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    padding: 6px 15px;
    background-color: var(--light-background-color);
    border: 1px solid var(--grey-color);
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box; 
  }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 130px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid var(--dark-grey-color);
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; 
}
fieldset {
  padding: 0;
  border-width: 0; 
}
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }

/*------------------------------------------------
/* 2.4 Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }

/*------------------------------------------------
/* 2.5 Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  border-radius: 4px; 
  background-color: var(--accent-color);
  color: var(--light-color);
}
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: normal; 
  }

/*------------------------------------------------
/* 2.6 Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
   }
th:first-child,
td:first-child {
  padding-left: 10px; 
  font-size: 16px;
  font-weight: 600;
  }
th:last-child,
td:last-child {
  padding-right: 0; 
  }


/*------------------------------------------------
/* 2.7 Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table {
  margin-bottom: 1rem; 
}


/*------------------------------------------------
/* 2.8 Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; 
}
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; 
}
.u-pull-right {
  float: right; 
}
.u-pull-left {
  float: left; 
}
.list-icon i {
  margin-right: 10px;
}
.list-unstyled {
  list-style: none;
}
.txt-fx .letter {
  opacity: 0;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.overflow-hidden {
    overflow: hidden;
}
.hide {
    display: none !important;
}

/* display flex utilities */
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}
.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.justify-content-end {
  -ms-flex-pack: justify !important;
  justify-content: end !important;
}
.justify-content-center {
  -ms-flex-pack: justify !important;
  justify-content: center !important;
}
.justify-content-evenly {
  -ms-flex-pack: justify !important;
  justify-content: space-evenly !important;
}
.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}
.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}
/* disable selction in section title */
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

/*------------------------------------------------
/* 2.9 Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; 
}

/*--------------------------------------------------------------
/** 2.10 Buttons
--------------------------------------------------------------*/
a.btn,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="file"],
button {
  background-image: none;
  background: #003355de;
  text-decoration: none !important;
  display: inline-block;
  position: relative;
  border: 2px solid transparent;
  border-radius: 4px;
  padding: 0.75em 1.5em;
  margin-top: 15px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  color: var(--light-color);
  z-index: 1;
  cursor: pointer;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  
}
.btn:hover,
.btn:focus,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="file"]:focus,
input[type="file"]:hover,
button:focus,
button:hover {
  text-decoration: none;
  outline: 0;
}
.light .btn:hover {
  color: var(--light-color);
}
.btn:last-child {
  margin-right: 0;
}
.btn:active,
.btn.btn-outline-light:active,
.btn.btn-outline-dark:active,
.btn.btn-outline-accent:active,
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="file"]:active,
button:active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  box-shadow: none;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}

/* - Button Sizes
------------------------------------------------------------- */
.btn.btn-small {
  padding: 0.8em 1.8em;
  font-size: 0.65em;
}
.btn.btn-medium {
  padding: 1.1em 3.0em;
  font-size: 1.0em;
}
.btn.btn-large {
  padding: 1.5em 5.5em;
  font-size: 1.3em;
}

/* - Button Shapes
------------------------------------------------------------- */
.btn.btn-rounded,
.btn.btn-rounded::after {
  border-radius: 6px;
}
.btn.btn-pill,
.btn.btn-pill::after {
  border-radius: 2em;
}
/* button outline */
.btn.btn-outline-dark,
.btn.btn-outline-light,
.btn.btn-outline-accent {
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}
.btn.btn-outline-dark:hover::after,
.btn.btn-outline-light:hover::after {
  background-color: transparent;
}
.btn.btn-outline-dark {
  border-color: rgba(0,0,0,1);
  color: var(--dark-color);
}
.btn.btn-outline-dark:hover {
  background: var(--dark-color);
  color: var(--light-color);
}
.btn.btn-outline-light {
  border-color: rgba(255,255,255,0.5);
  color: var(--light-color);
}
.btn.btn-outline-light:hover {
  border-color: rgba(0,0,0,0.5);
  color: var(--dark-color);
}
.btn.btn-outline-accent {
  background: transparent;
  border-color: var(--accent-color);
  color: var(--dark-color);
}
.btn.btn-outline-accent:hover {
  border-color: var(--dark-color);
  color: var(--dark-color) !important;
}
.btn.btn-full {
  display: block;
  margin: .85em 0;
  width: 100%;
  text-align: center;
}


/* - Buttons Color Scheme
------------------------------------------------------------- */
.btn.btn-common {
  background: var(--dark-color);
  color: var(--light-color);
}
.btn.btn-common:hover {
  background: var(--light-color);
  color: var(--dark-color);
}
.btn.btn-accent {
  color: var(--light-color);
  background-color: var(--accent-color);
}
.btn.btn-accent:hover {
  color: var(--light-color) !important;
  background-color: var(--primary-color);
}
.btn.btn-normal{
  background: transparent;
  color: var(--dark-color);
  padding: 0;
}
.btn.btn-normal:hover{
  color: var(--primary-color);
}
.btn.btn-grey {
  background-color: var(--light-grey-color);
  color: var(--dark-color);
}
.btn.btn-grey:hover {
  background-color: var(--dark-color);
  color: var(--light-color);
}
.btn.btn-black {
  background-color: var(--dark-color);
  color: var(--light-color);
}
.btn.btn-black:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}
.btn.btn-light {
  background-color: var(--light-color);
  color: var(--dark-color);
}
.btn.btn-light:hover {
  background-color: var(--primary-color);
  color: #018253;
}
.btn.btn-primary {
  background: #003355de;
  color: var(--light-color);
}
.btn.btn-primary:hover {
  background-color: #003355;
  color: var(--light-color);
}

/* - Buttons Aligns
------------------------------------------------------------- */
.btn-left{
  text-align: left;
  display: block;
}
.btn-center{
  text-align: center;
  display: block;
}
.btn-right{
  text-align: right;
  display: block;
}


/*----------------------------------------------*/
/* 3. Section */
/*-----------------------------------------------------------*/

/* Hero section
/*----------------------------------------------*/
.hero-section {
    position: relative;
}
.hero-section h2 {
    font-size: 1.8em;
    text-transform: none;
}

/*--- Section And Elements Title
-----------------------------------------------*/
h2.section-title,
h2.element-title,
h4.subtitle,
h3.subtitle {
    font-weight: 500;
    line-height: 1;
    color: var(--dark-grey-color);
    position: relative;
}
h2.section-title,
h2.element-title {
    font-size: 2.4em;
    margin-bottom: 60px;
}
h2.section-title:after {
    content: "";
    width: 10%;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    top: 0;
    border-bottom: 1px solid var(--primary-color);
    margin: 0 auto;
}
h4.subtitle {
    font-size: 1.2em;
}
h3.subtitle {
    font-size: 2em;
    color: #fff;
}

h3.subtitle strong{
    color: yellow!important;
}

h3.post-title {
    font-size: 1.4em;
    letter-spacing: 1.2px;
    margin: 0 0 10px;
}
h5.widget-title {
    font-size: 1em;
    letter-spacing: 1.2px;
}

h2.element-title{
    color: #fff;
}

.text-content .get{
    color: #fff;
}
/* - Background Colors
--------------------------------------------------------------*/
.bg-light {
  background-color: var(--light-color) !important;
}
.bg-grey {
  background-color: var(--light-grey-color) !important;
}
.bg-dark-grey {
  background-color: var(--dark-grey-color) !important;
}
.bg-light-grey {
  background-color: var(--light-grey-color) !important;
}

/* - Content Colors
--------------------------------------------------------------*/
/* content light */
.content-light h1, .content-light h2, .content-light h3, .content-light h4, .content-light h5, .content-light h6 {
  color: var(--light-color);
}
.primary-color h1, .primary-color h2, .primary-color h3, .primary-color h4, .primary-color h5, .primary-color h6 {
  color: var(--primary-color);
}
.content-light a,
.content-light {
  color: var(--light-color);
}
.content-light a:hover {
  color: var(--light-color);
}
.content-light li.menu-item .icon{
    color: var(--light-color);
}
/* content dark */
.content-dark h1, .content-dark h2, .content-dark h3, .content-dark h4, .content-dark h5, .content-dark h6 {
  color: var(--dark-color);
}
.content-dark a,
.content-dark {
  color: var(--dark-color);
}
.content-dark a:hover {
  color: var(--dark-color);
}
.content-dark li.menu-item .icon{
    color: var(--dark-color);
}

/* - Content Border
--------------------------------------------------------------*/
table.border-bottom tr {
    border-bottom: 1px solid var(--grey-color);
}
.content-light table.border-bottom tr {
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
.border-top {
   border-top: 1px solid var(--grey-color);
}
.content-light .border-top {
   border-top: 1px solid rgba(255,255,255,0.3);
}
.border-right {
   border-right: 1px solid var(--grey-color);
}
.content-light .border-right {
   border-bottom: 1px solid rgba(255,255,255,0.3);
}
.border-bottom {
   border-bottom: 1px solid var(--grey-color);
}
.content-light .border-bottom {
   border-bottom: 1px solid rgba(255,255,255,0.3);
}
.border-left {
   border-left: 1px solid var(--grey-color);
}
.content-light .border-left {
   border-left: 1px solid rgba(255,255,255,0.3);
}

/* - Content Border None
--------------------------------------------------------------*/
.no-border-top {
   border-top: none !important;
}
.no-border-right {
   border-right: none !important;
}
.no-border-bottom {
   border-bottom: none !important;
}
.no-border-left {
   border-left: none !important;
}

/*====================================================================*/
/* 4. EXTENDED TYPOGRAPHY */
/*====================================================================*/
/*----------------------------------------------*/
/* 4.1 Blockquote /Pullquote */
/*----------------------------------------------*/
.single-post .content p:first-child, 
.quote blockquote, blockquote, 
.single-post .content blockquote p, 
.pullquote-right, 
.pullquote-left {
    font-family: 'Poiret One', cursive !important;
    font-size: 1.5em;
    line-height: 1.4em;
    font-weight: 600;
    letter-spacing: 2px;
    font-style: normal;
    margin: 0 0 20px;
    padding: 20px 40px;
    border-left: 1px solid rgb(0 193 237);
}
.pullquote-right, .pullquote-left {
  width: 40%;
} 
blockquote cite {
  display: block;
  font-size: 0.8em;
  margin-top: 20px;
  font-style: italic;
}
.pullquote-left {
  float: left;
  margin: 20px 20px 20px 0;
} 
.pullquote-right {
  float: right;
  margin: 20px 0 20px 20px;
}
  
/*----------------------------------------------*/
/* 4.3 Text Highlights */
/*----------------------------------------------*/
.highlight {
  background: var(--primary-color);
  color: var(--light-color);
  padding: 1px 5px;
}

/*----------------------------------------------*/
/* 4.4 Text Animation */
/*----------------------------------------------*/
.text-animation {
  overflow: hidden; 
  white-space: pre-line;
  border-right: solid 5px rgba(255,255,255,.75);
}

/* Animation */
.text-animation {
  animation: animated-text 4s linear 1s 1 normal both,
             animated-cursor 600ms linear infinite;
}

/* text animation */
@keyframes animated-text{
  from{width: 0;}
  to{width: 650px;}
}

/* cursor animations */
@keyframes animated-cursor{
  from{border-right-color: rgba(255,255,255,.75);}
  to{border-right-color: transparent;}
}


/*====================================================================*/
/* 5. CONTENT ELEMENTS */
/*====================================================================*/

/*--------------------------------------------------------------
/** 5.1 General Tabs
--------------------------------------------------------------*/
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--accent-color);
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  color: #999;
  padding: 10px 30px;
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0d6efd;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.bootstrap-tabs .tab-content {
  padding: 20px 0;
}
.bootstrap-tabs .tab-content > .tab-pane {
  display: none;
}
.bootstrap-tabs .tab-content > .active {
  display: block;
}

/*--------------------------------------------------------------
/** 5.2 Accordions
--------------------------------------------------------------*/
.collapse:not(.show) {
  display: none;
}
.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  margin: 0;
  font-size: 1rem;
  color: var(--dark-color);
  text-align: left;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow-anchor: none;
  background-color: var(--light-background-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--dark-color);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}
.accordion-header {
  margin: 0;
}
.accordion-item button.accordion-button {
    background-color: var(--light-color);
}
.accordion-item {
  background-color: var(--light-background-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-body {
  padding: 1rem 1.25rem;
}
.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/* - Section Padding
--------------------------------------------------------------*/
.padding-xsmall {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.padding-small {
  padding-top: 2em;
  padding-bottom: 2em;
}
.padding-medium {
  padding-top: 4em;
  padding-bottom: 4em;
}
.padding-large {
  padding-top: 7em;
  padding-bottom: 7em;
}
.padding-xlarge {
  padding-top: 9.5em;
  padding-bottom: 9.5em;
}
.padding-2xlarge {
  padding-top: 15em;
  padding-bottom: 15em;
}

/* no padding */
.no-padding-top {
  padding-top: 0 !important;
}
.no-padding-bottom {
  padding-bottom: 0 !important;
}
.no-gutter {
  padding: 0 !important;
}

/* no padding and margin */
.no-padding {
  padding: 0;
}
.no-margin {
  margin: 0;
}

/* - Section margin
--------------------------------------------------------------*/
.margin-small {
  margin-top: 3em;
  margin-bottom: 3em;
}
.margin-medium {
  margin-top: 4.5em;
  margin-bottom: 4.5em;
}
.margin-large {
  margin-top: 6em;
  margin-bottom: 6em;
}
.margin-xlarge {
  margin-top: 7.5em;
  margin-bottom: 7.5em;
}

@media only screen and (max-width: 768px) {
  .margin-small,
  .margin-medium,
  .margin-large,
  .margin-xlarge {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}


/*====================================================================*/
/* 6. BLOG STYLES */
/*====================================================================*/

/* 6.1 Blog Single Post
------------------------------------------*/
/* breadcrumbs */
.breadcrumbs span {
  display: inline-block;
}

/* 6.3 About Author
------------------------------------------*/
.author-post {
  padding-left: 30px;
}
.author-post h4 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: none;
}

/* 6.4 Comments List
------------------------------------------*/
.comment-list .comment-item {
    display: flex;
}
.comment-item .comment-meta {
    display: flex;
    align-items: baseline;
}
.comment-meta span.meta-date {
    font-size: 13px;
    padding-right: 50px;
}
.comments-wrap .child-comments {
  padding-left: 50px;
}

/* 6.5 Comments Form
------------------------------------------*/
.comment-respond .comment-form {
  display: flex;
}


/*----------------------------------------------*/
/* 7. SITE STRUCTURE */
/*----------------------------------------------*/

//* 7.2 Header
------------------------------------------------------------- */
.header-wrap .secondary-nav{
    border-top: 1px solid var(--grey-color);
    border-bottom: 1px solid  var(--grey-color);
    font-size: 0.8em;
    color: var(--accent-color);
    text-transform: uppercase;
}
.secondary-nav .top-menu ul{
    font-size: 0.9em;
    margin-bottom: 0;
}
.secondary-nav .top-menu li.menu-item{
    
    padding: 8px 20px 8px 0;
    margin-right: 20px;
    margin-bottom: 0;
    text-transform: uppercase;
    border-right: 1px solid var(--grey-color);
}
.secondary-nav .top-menu li.menu-item i.icon {
    padding-right: 10px;
}

@media only screen and (max-width: 990px) {
  .top-menu ul.left-block {
      text-align: center;
      justify-content: center;
  }
}

@media only screen and (max-width: 599px) {
  .navbar .user-items {
      display: none;
  }
  
}

/* --Dropdown Part
--------------------------------------------------------------*/
.right-block li.menu-item.dropdown-submenu {
    position: relative;
}
.right-block li.menu-item ul.dropdown-currency {
    position: absolute;
    top: 20px;
    left: -50px;
    padding: 0 20px;
    display: none;
    opacity: 0;
    z-index: 9;
    transition: 0.3s all;
    z-index: 99;
}
.right-block .dropdown-submenu:hover ul.dropdown-currency {
    display: block;
    opacity: 1;
}


/* --Search Bar Part
--------------------------------------------------------------*/
.secondary-nav form.searchbar {
    display: flex;
    width: 180px;
    height: 30px;    
    border-radius: 30px;
    background: var(--light-grey-color);
    margin: 0;
}
.secondary-nav form.searchbar input[type="text"] {
    width: 140px;
    height: 30px;
    border-radius: 30px;
    border: none;
    padding: 0 0 0 15px;
    margin: 0;
    font-style: italic;
    background: #F0F0F1;
}
.secondary-nav .searchbar i.icon {
    font-size: 0.9em;
    line-height: 2.5;
    width: 80px;
    text-align: center;
}

.main-menu .menu-list .hamburger{
  display: none;
}

/* - Navigation
--------------------------------------------------------------*/
nav.primary-nav {
    padding: 20px 0;
}
.primary-nav li.menu-item {
    font-size: 0.9em;
}
.primary-nav li.menu-item a:hover {
    color: var(--primary-color);
}

.navbar .hamburger {
    display: none;
}
.navbar .hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--dark-color);
}

@media only screen and (max-width: 1280px) {
  .navbar ul.menu-list {
      position: fixed;
      top: -500px;
      width: 100%;
      flex-direction: column;
      text-align: center;
      transition: 0.8s;
      z-index: 9;
  }
  .navbar ul.menu-list .nav-link,
  #navbar .search-bar {
      display: none;
  }
  .navbar ul.menu-list.responsive .nav-link {
      display: block;
  }
  .navbar ul.menu-list.responsive {
      top: 0;
      left: 0;
      padding-top: 100px;
      height: 100%;
      background-color: rgba(0,0,0,0.95);
      z-index: 99;
      display: flex;
      padding-left: 80px;
      width: 400px;
  }
  .navbar ul.menu-list.responsive li.menu-item {
      margin-bottom: 30px;
      text-align: left;
  }
  .navbar ul.menu-list.responsive a {
      font-size: 17px;
      color: var(--light-color);
      border-bottom: none;
      padding: 0;
  }
  
  .navbar ul.menu-list.responsive ul.submenu a {
      font-size: 16px;
      color: var(--dark-color);
      padding: 20px;
  }
  .navbar ul.menu-list.responsive a:hover {
      color: var(--primary-color);
  }
  .navbar .hamburger {
      display: block;
      z-index: 999;
      background: var(--light-grey-color);
      padding: 8px;
      cursor: pointer;
      z-index:9;
      border-radius: 2px;
      border: 1px solid #ddd;
  }
  .hamburger.active .bar:nth-child(2) {
      opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }
.navbar ul.menu-list{
  top: 0px;
  left: -100%;
  padding-top: 100px;
  min-height: 100vh;
  display: flex;
}
.main-menu .menu-list .hamburger{
  display: block;
}


 }

@media only screen and (max-width: 990px) {
  .primary-nav .navbar {
      padding: 30px 10px;
  }
}

/* 7.3 Billboard Section
--------------------------------------------------------------*/
.main-swiper {
    position: relative;
}
.main-swiper .swiper-slide {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
h4.subtitle {
    font-size: 0.8em;
    letter-spacing: 0.3em;
}
h1.banner-title {
    font-size: 4.5em;
    line-height: 1.2em;
    font-weight: 300;
}
.swiper .swiper-pagination {
    width: 100%; 
    position: absolute;
    bottom: 30px;
}
.swiper-pagination .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}
.main-swiper .swiper-pagination,
.main-swiper .swiper-button-next, 
.main-swiper .swiper-button-prev {
      z-index: 9;
}
/*
@media (max-width: 1520px) {
  #billboard .banner-content {
      top: 90px; 
      right: 170px;
  }
}

@media (max-width: 1352px) {
  #billboard img.banner-image {
      height: 650px;
  }
  #billboard .banner-content {
      width: 45%;
  }
}

@media (max-width: 1225px) {
  #billboard .banner-content {
      top: 50px;
      right: 130px;
  }
  #billboard img.banner-image {
      opacity: 0.2;
  }
}

@media (max-width: 1065px) {
  #billboard .banner-content {
      right: 190px;
  }
  .main-swiper .swiper-button-next, 
  .main-swiper .swiper-button-prev {
      top: 90%;
  }
}

@media (max-width: 999px) {
  #billboard .banner-content h1.banner-title {
      font-size: 3.8em;
  }
}
*/

/* 7.4 Icon Box Section
--------------------------------------------------------------*/
.icon-box-icon {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-right: 20px;
}
.icon-box .icon-content h2{
    margin: 0;
    font-size: 1.2em;
}

/* 7.5 Categories Section
--------------------------------------------------------------*/
.small-box .content-box figure{
    width: 100%;
    height: 200px;
    padding: 40px;
    text-align: center;
}
.small-box .content-box img {
    width: 50%;
    height: auto;
    margin: 0 auto;
}
.swiper-button-click{
  position: relative;
}
.swiper-button-click .icon-arrow {
    position: absolute;
    top: 50%;
    z-index: 8;
    font-size: 2em;
    color: var(--dark-color);
    cursor: pointer;
    transition: all 0.3s ease-out;
}
.swiper-button-click .icon-arrow:hover {
    color: var(--primary-color);
}
.swiper-button-click .icon-arrow.icon-arrow-left {
    left: 30px;
}
.swiper-button-click .icon-arrow.icon-arrow-right {
    right: 30px;
}

@media (max-width: 767px) {
  .small-box .content-box figure {
      height: 100%;
  }
}


/* 7.6 Feature Collection Section
--------------------------------------------------------------*/
.large-box .content-box {
    flex-basis: 22%;
    margin-bottom: 30px;
}
.large-box .content-box figure{
    width: 100%;
    height: 320px;
    padding: 55px;
    margin-bottom: 15px;
}
.feat-collection span.price-tag {
    font-size: 1.6em;
    color: var(--primary-color);
}

/* 7.7 Special Ornaments Section
--------------------------------------------------------------*/
.special-ornaments .content-box{
    min-height: 360px;
    margin-bottom: 30px;
}

/* 7.8 About Us Section
--------------------------------------------------------------*/
.about-us .text-content {
    width: 80%;
    max-width: 630px;
    margin: 0 auto;
}
.about-us .text-content h3 {
    font-size: 1.2em;
}

/* 7.9 Special Offer Section
--------------------------------------------------------------*/
}

/* 7.10 Latest Blogs Section
--------------------------------------------------------------*/
.post-content .meta-tags span.meta-date {
    font-size: 0.8em;
}
.latest-blogs .post-item {
    margin-bottom: 30px;
}

/* 7.11 Testimonials Section
--------------------------------------------------------------*/
.testimonials-wrap .reviews-content p {
    font-size: 1.2em;
    width: 70%;
    margin: 25px auto;
}
.testimonials-wrap .reviews-content img.review-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
}

/* 7.12 Footer Section
--------------------------------------------------------------*/
#footer .footer-post {
    margin-bottom: 20px;
}
#footer img.footer-image {
    margin-right: 20px;
    margin-bottom: 10px;
}
#footer .footer-title p {
    width: 50%;
    margin: 20px auto;
    font-weight: 600;
}
#footer .footer-post a {
    color: var(--dark-color);
    line-height: 1.4em;
    width: 70%;
    display: block;
}

#footer .newsletter-button {
    margin-bottom: 20px;
}
#footer .newsletter-button input[type="text"] {
    font-size: 0.8em;
    height: 45px;
    border: 1px solid var(--grey-color);
    border-right: none;
    background: white;
    padding: 6px 6px 6px 19px;
    margin: 0;
    border-radius: 0;
}
#footer .newsletter-button button {
    margin: 0;
}

#footer .address li {
    display: flex;
    align-items: baseline;
    padding-bottom: 10px;
    font-size: 16px;
}
#footer .address li>i.icon {
    font-size: 18px;
    margin-right: 15px;
}
#footer .social-icon li a {
    font-size: 20px;
    color: var(--dark-grey-color);
}
#footer .social-icon li a:hover {
    border: none;
    padding-left: 0;
    color: var(--primary-color);
}

@media (max-width: 767px) {
  #footer .footer-content {
      max-width: 770px;
      padding: 20px;
  }
  #footer .post-image,
  #footer .newsletter-button input[type="text"],
  #footer .newsletter-button button {
      width: 100%;
      margin-bottom: 10px;
  }
  #footer img.footer-image {
      width: 60%;
  }
}

@media (max-width: 480px) {
  #footer .footer-menu {
    width: 100%;
    text-align: center;
  }
  .footer-menu .footer-post .text-block {
      margin: 0 auto;
  }
  #footer .footer-post a {
      width: 100%;
  }
}

/* - Footer Bottom Section
--------------------------------------------------------------*/
.footer-bottom-content .social-links li {
    padding-left: 10px;
}
.footer-bottom-content img.card-image {
    width: 12%;
}


/* - About Us Page
--------------------------------------------------------------*/
.breadcrumb-area h1.page-title {
    font-size: 4.5em;
}
.our-team .team-member {
    margin-bottom: 40px;
}
.team-member img.member-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.member-details h4.member-title {
    margin: 0;
    font-size: 1.3em;
}

@media (max-width: 767px) {
  .team-member img.member-image {
      padding: 0 20px;
  }
}


/* - About Us Page
--------------------------------------------------------------*/
#thank-you h1.page-title {
    font-size: 6.5em;
}
#thank-you h2 {
    font-size: 2.2em;
}
.contact-information .detail {
    padding-bottom: 20px;
    padding-left: 20px;
}


/* - Contact Page
--------------------------------------------------------------*/
.social-links li {
    padding-right: 10px;
}
.contact-detail .icon
 {
    color: var(--dark-grey-color);
}


/* - Single Product Page
--------------------------------------------------------------*/
.product-detail h2.product-title {
    font-size: 3.5em;
}
.product-detail span.price {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--primary-color);
}


/* - Single Post Page
--------------------------------------------------------------*/
img.commentor-image {
    width: 70px;
    height: 70px;
    border-radius: 30%;
    border: 2px solid var(--dark-grey-color);
}
.comments-reply a {
    color: var(--primary-color);
}
.author-post p {
    margin-bottom: 30px;
}


#billboard h4.subtitle{
  font-weight: 600;
}

.small-box .content-box figure{
  height: fit-content;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.small-box .content-box img{
  width: 90%;
}

.product-content .content-box img{
  height: 200px;
  width: 100%;
  background-color: white;
  object-fit: contain;
}

.product-content .content-box{
  box-shadow:0px 4px 20px rgba(0, 0, 0, 0.05) ;
  padding: 10px;
  background-color: white;
}

.product-content .content-box .category{
  display: flex;
flex-direction: column;
}

.product-content .content-box .category span{
  font-size: 14px;
}
.product-content .content-box .category a{
  font-size: 16px;
   display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.feat-collection span.price-tag{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.padding-large{
  padding-top: 2em;
  padding-bottom: 2em;
}

.bg-grey{
  background-color: #F9F9FA!important;
}

.special-ornaments{
  margin-bottom: 1.5em;
}
.special-offer{
  background-size: 100%;
}

.special-offer .row{
  justify-content: center;
  display: flex;
}


.special-offer .row .padding-small{
  /*background-color: #f5deb3e8;*/
  background-color: #018253;
  border-radius: 8px;
}


.special-offer .row .padding-small .section-header .subtitle strong{
  color: #1474aa;
}




.special-offer .row .padding-small .btn.btn-primary{
  background-color: #4e4e4e;
}


.special-offer .row .padding-small .btn.btn-primary:hover{
  background-color: #333;
}

.footer-content .footer-menu h3{
  font-size: 18px;
  font-weight: bolder;
  
}

.footer-content .footer-menu ul li a{
        word-break: break-word;
  font-size: 16px;
    color: #222;
    font-weight: 400;
    
}

.footer-content .footer-menu ul li a:hover{
  color: #555;
  text-decoration: underline;
}

#footer .address li>i.icon{
  color: #4e4e4e;
}

.footer-content .footer-menu ul li{
  color: #222;
}

.footer-bottom-content .copyright p{
  margin: 0px;
}
.footer-bottom-content .copyright a{
  text-decoration: underline;
}

.footer-bottom-content .social-links ul{
  margin: 0;
}

.footer-bottom-content{
  padding: 5px 0px;
}

.footer-bottom-content .social-links span{
  font-size: 16px;
}
.footer-bottom-content .social-links li{
  line-height: normal;
  margin: 0;
  display: flex;
  align-items: center;
}

.swiper-pagination .swiper-pagination-bullet{
  height: 10px;
  width: 10px;
}

.main-swiper .swiper-button-next, .main-swiper .swiper-button-prev{
  background: white;
  color: #555;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 10px;
}
.swiper-button-next:after, .swiper-button-prev:after{
  font-size: 24px!important;
  color: #666;
  font-weight: 600;
}
.small-box .content-box figure{
  margin-bottom: 7px;
}
.small-box .content-box .category{
  line-height: normal;
}
.small-box .content-box .category a{
  font-weight: 500;
  font-size: 16px;
  color: #444;
  
}

h2.section-title{
  font-size: 40px;
  font-weight: 600;
}

#header .header-wrap .container-fluid .row{
  margin: 0px;
}
.menu-item.mobile{
  display: none;
}

:root{
  --blue-color:#003355;
  --green-color:#068152;
}

.secondary-nav{
  background-color: var(--blue-color);
  border-top: none;
}

.secondary-nav .top-menu li.menu-item a{
  color: white;
}
.secondary-nav .top-menu .left-block .menu-item{
  color: white;
}
.secondary-nav .top-menu li.menu-item{
  border-color: #0c3a59;
}

.company-services{
  background: linear-gradient(179deg, #003355, #055286);
}
.icon-box .icon-content h2{
  color: white;
}

.icon-box .icon-content p{
  color: #ffffffa3;
}
.icon-box-icon{
  color: white;
}


h2.section-title:after{
  border-width: 3px;
}
.swiper-pagination-bullet-active{
  background: white;
}

.feat-collection{
  background-color: #F9F9FA;
  margin-bottom: 1em;
}

.testimonial-swiper .reviews-content img{
  height: 70px;
  width: 70px;
  border-radius: 50%;
  object-fit: cover;
}
.product-content .content-box{
  position: relative;
}
.flag{
  position: absolute;
  top: 20px;
  right: 15px;
  color: white;
  background-color: #068152c9;
  font-size: 13px;
  padding: 4px 6px;
  line-height: 1;
  letter-spacing: 1px;
  border-radius: 2px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.flag.blue{
  background-color: var(--primary-color

  );
}




@media(max-width:1200px){
  .menu-item.desktop{
    display: none;
  }
  .menu-item.mobile{
    display: block;
    height: 100%;
  }
  .menu-item form.searchbar input[type="text"]{
    width:calc(100% - 40px);
    height: 100%;
    border-radius: 30px;
    border: none;
    padding: 0 0 0 15px;
    margin: 0;
    font-style: italic;
    padding-right: 20px;
    color: #555;
  letter-spacing: 1px;
  font-size: 15px;
  }
  .menu-item  form.searchbar {
    display: flex;
    width: 400px;
    height: 100%;
    border-radius: 30px;
    background: var(--light-grey-color);
    margin: 0;
    align-items: center;
    margin-left: 2em;
}
  .small-box .content-box figure{
    min-height: 200px;
    padding: 10px;
  }
  .special-offer h3.subtitle{
    font-size: 24px;
  }
  .special-offer h2.element-title{
    font-size: 32px;
    margin-bottom: 1em;
  }
  .special-offer .row .padding-small .btn.btn-primary{
    padding:10px 20px
  }

}
@media only screen and (max-width: 990px){
  .primary-nav .navbar{
    padding: 0px;
    justify-content: space-between;
  }
  .menu-item form.searchbar{
    margin-left: 0px;
    width: 380px;
  }
  .secondary-nav .top-menu li.menu-item{
    font-size: 11px;
  }
  h1.banner-title{
    font-size: 36px;
    line-height: 1.5;
  }
  .special-offer h3.subtitle{
    margin-top: 0px;
  }
  .special-offer{
    background-size: cover;
  }
  .main-swiper .swiper-button-next, .main-swiper .swiper-button-prev{
    display: none;
  }
  .testimonials-wrap .reviews-content p{
    font-size: 18px;
  }
  .menu-item.has-sub a:hover .stellarnav ul ul{
    height: fit-content;
    position: relative;
    top: unset;
  }
}

@media (max-width:768px){
  .top-menu ul.left-block{
    display: none!Important;
  }
  .menu-item form.searchbar{
    width: 300px;
  }
  #billboard .banner-content{
    background-color: #f5deb3cf;
    padding: 10px;
    width: 100%;
    margin: 0px 15px;
  }
  .padding-large .row{
    margin: 0px;
  }
  #billboard .btn.btn-medium{
    padding: 10px 20px;
  }
  .footer-content{
    display: flex;
  }
  h1.banner-title{
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    margin-top: 15px;
    margin-bottom: 10px;
  }
  #billboard h4.subtitle{
    margin-top: 10px;
    font-size: 15px;
  }
  .navbar ul.menu-list{
    display: flex!important;
  }
  .secondary-nav .top-menu li.menu-item{
    font-size: 12px;
  }
  .secondary-nav .top-menu li.menu-item{
    padding: 8px 8px 8px 0px;
  }
  .small-box .content-box figure{
    height: 150px;
  }
}






@media(max-width:576px){
  .product-swiper .swiper-button-next,.product-swiper .swiper-button-prev{
    display: none;
  }
  
/*  #header .header-wrap .container-fluid .row{*/
/*  gap: 10px;*/
/*}*/

.icon-box-icon{
    margin-right: 30px;
}



  .main-logo{
    text-align: center;
    margin-bottom: 10px;
  }
  .menu-item form.searchbar{
    width: 220px;
  }
  .product-content .content-box img{
    height: 150px;
  }
  .feat-collection span.price-tag{
    font-size: 16px;
  }
  .btn.btn-medium{
    padding: 10px 20px;
    font-size: 15px;
  }
  .testimonials-wrap .reviews-content p{
    font-size: 15px;
  }
  .testimonials-wrap .reviews-content img.review-image{
    height: 50px;
    width: 50px;
  }
  .footer-bottom-content .copyright p{
    font-size: 14px;
  }
  #footer .footer-content{
    padding: 10px 1px;
  }
  .testimonial-swiper .swiper-button-prev{
    left: 10px;
  }

  .testimonial-swiper .swiper-button-next{
    right: 10px;
  }
  
  .ec_contact_info{
      padding: 0 20px;
      margin-bottom: 30px;
  }
  
  .ec-cms-block-inner{
      padding: 0 20px;
  }
  
}




@media (max-width:480px){
  #footer .footer-menu{
    text-align: left;
  }
  .secondary-nav .top-menu li.menu-item{
    margin-right: 10px;
  }
  .flag{
    top: 10px;
    right: 10px;
  }
}


/* ================================================== 
                    Additional Changes
                    ====================================================== */


.row{
  display: flex;
  flex-wrap: wrap;
}
.ec-login-wrapper{
  width: 100%;
}
/*-------------------------------------------------
  Login Page CSS
---------------------------------------------------*/
.ec-login-wrapper {
  max-width: 530px;
  margin: 0 auto 0;
}
.ec-login-wrapper .ec-login-container {
  border: 1px solid #ededed;
  padding: 34px 38px 34px;
  text-align: left;
  background-color: #fff;
  border-radius: 5px;
}
.ec-login-wrapper .ec-login-container .ec-login-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ec-login-wrapper .ec-login-container .ec-login-form label {
  margin-bottom: 9px;
  color: #444444;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}
.ec-login-wrapper .ec-login-container .ec-login-form input {
  background-color: transparent;
  border: 1px solid #eeeeee;
  color: #777;
  font-size: 14px;
  margin-bottom: 27px;
  padding: 0 15px;
  width: 100%;
  outline: none;
}
.ec-login-wrapper .ec-login-container .ec-login-form .ec-login-wrap + .ec-login-wrap input {
  margin-bottom: 15px;
}
.ec-login-wrapper .ec-login-container .ec-login-form .ec-login-fp label {
  margin-bottom: 0;
}
.ec-login-wrapper .ec-login-container .ec-login-form .ec-login-fp label a {
  color: #444444;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
}
.ec-login-wrapper .ec-login-container .ec-login-form .ec-login-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
          border-radius: 3px;
}
.ec-login-wrapper .ec-login-container .ec-login-form .btn {
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 0 15px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  outline: none;
  border-radius: 0px;
  width: 150px;
  margin: 15px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          text-transform: capitalize!important;
}
.ec-login-wrapper .ec-login-container .ec-login-form .btn{
  border-radius: 3px!important;
}
.ec-register-wrapper .ec-register-container .ec-register-form .btn{
  border-radius: 3px!Important;
  height: 45px;
}
.ec-login-wrapper .ec-login-container {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.ec-login-wrapper{
  padding: 0px 15px;
}
.ec-login-wrapper .ec-login-container .ec-login-form form{
  margin: 0px;
}
/*-------------------------------------------------
  Register Page CSS
---------------------------------------------------*/
.ec-register-wrapper {
  max-width: 934px;
  margin: 0 auto 0;
}
.ec-register-wrapper .ec-register-container {
  border: 1px solid #ededed;
  padding: 30px;
  text-align: left;
  background-color: #fff;
  border-radius: 5px;
}
.ec-register-wrapper .ec-register-container .ec-register-form .ec-register-wrap {
  width: 100%;
  padding: 0 15px;
}
.ec-register-wrapper .ec-register-container .ec-register-form .ec-register-wrap.ec-register-half {
  width: 50%;
}
.ec-register-wrapper .ec-register-container .ec-register-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 0 -15px;
}
.ec-register-wrapper .ec-register-container .ec-register-form label {
  margin-bottom: 9px;
  color: #444444;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.ec-register-wrapper .ec-register-container .ec-register-form input {
  background-color: transparent;
  border: 1px solid #ededed;
  color: #777;
  font-size: 14px;
  margin-bottom: 26px;
  padding: 0 15px;
  width: 100%;
  outline: none;
}
.ec-register-wrapper .ec-register-container .ec-register-form input::-webkit-input-placeholder {
  color: #777 !important;
}
.ec-register-wrapper .ec-register-container .ec-register-form input::-moz-placeholder {
  color: #777 !important;
}
.ec-register-wrapper .ec-register-container .ec-register-form input:-ms-input-placeholder {
  color: #777 !important;
}
.ec-register-wrapper .ec-register-container .ec-register-form input::-ms-input-placeholder {
  color: #777 !important;
}
.ec-register-wrapper .ec-register-container .ec-register-form input::placeholder {
  color: #777 !important;
}
.ec-register-wrapper .ec-register-container .ec-register-form .ec-register-fp label {
  margin-bottom: 0;
}
.ec-register-wrapper .ec-register-container .ec-register-form .ec-register-fp label a {
  color: #444444;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0px;
}
.ec-register-wrapper .ec-register-container .ec-register-form .ec-rg-select-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 50px;
  border-radius: 0;
  border: 1px solid #ededed;
  font-size: 14px;
  padding: 0;
  margin-bottom: 27px;
}
.ec-register-wrapper .ec-register-container .ec-register-form .ec-rg-select-inner select {
  padding: 0 15px;
}

.ec-register-wrapper .ec-register-container .ec-register-form .ec-register-wrap.ec-recaptcha {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ec-register-wrapper .ec-register-container .ec-register-form .ec-register-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ec-register-wrapper .ec-register-container .ec-register-form .btn {
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 0 15px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  outline: none;
  border-radius: 0px;
  width: 150px;
  margin: 26px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.login-title .ec-title {
  color: var(--blue-color);
  font-family: 'Poppins, sans-serif';
  font-weight: 500;
  font-size: 42px!important;
  text-transform: capitalize;
}

.ec-login-wrapper .ec-login-container .ec-login-form form{
  display:block
}

.ec-login-wrapper .ec-login-container .ec-login-form .btn {
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 0 15px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  outline: none;
  border-radius: 0px;
  width: 150px;
  margin: 15px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 45px;
}

.ec-login-wrap.ec-register-link a.btn {
  background: unset;
  color: #3474d4;
  text-transform: capitalize!important;
  font-weight: 400;
  width: fit-content!important;
  height: fit-content!important;
  margin: 0!important;
  line-height: initial!important;
  padding: 0px!important;
  margin-left: 3px!important;
  font-size: 16px!important;
  transition: 0.5s all ease-in-out;
}
.ec-login-wrap.ec-register-link {
  display: flex;
  margin-top: 1em;
  justify-content: center;
  font-size: 16px;
  align-items: baseline;
}
  .footer-content{
    width: 100%;
  }

  .section-header{
    width: 100%;
  }
.product-content{
  width: 100%;
}
nav.primary-nav{
  border-bottom: 1px solid #ececec;
}

.section-space-p {
  padding: 80px 0px;
}

.login-title .ec-title{
  margin: 0 ;
}

.icon-box-wrapper{
  width: 100%;
}
@media only screen and (max-width: 1366px){
  .section-space-p {
    padding: 50px 0px!important;
}
}

@media only screen and (max-width: 991px){
  .section-space-p {
    padding: 30px 0!important;
}
.login-title .ec-title{
  font-size: 32px!important;
}
.ec-login-wrapper .ec-login-container{
  padding: 20px 15px;
}
}
.login-title .ec-title{
  font-weight: 600;
}
.ec-register-wrapper .ec-register-container .ec-register-form .ec-rg-select-inner select{
  width:100%;
}


/*-------------------------------------------------
  Single product Page CSS
---------------------------------------------------*/
.product_page .ec-sidebar-wrap {
  margin-bottom: 30px;
  border: 1px solid #eeeeee;
  border-radius: 5px;
}
.product_page .ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content li {
  padding: 0;
}
.product_page .ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content li .ec-sidebar-sub-item a {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #777777;
  font-size: 14px;
  margin-top: 0;
  line-height: 20px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0;
  cursor: pointer;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product_page .ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content li .ec-sidebar-block-item {
  padding: 10px 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #777;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1;
  cursor: pointer;
}
.product_page .ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content li .ec-sidebar-block-item::after {
  content: "\f067";
  font-family: "EcIcons";
  cursor: pointer;
  font-size: 10px;
  color: #777777;
  font-weight: 400;
  margin-left: 7px;
}
.product_page .ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content li li {
  padding: 0 0 6px;
}
.product_page .ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content ul ul {
  border-top: 1px solid #ededed;
  display: none;
  padding-top: 13px;
  padding-bottom: 3px;
}
.product_page .ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content:last-child li .ec-sidebar-block-item {
  padding-bottom: 3px;
}
.product_page .ec-sidebar-wrap .ec-sb-block-content {
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
}
.product_page .ec-sidebar-slider .ec-sb-pro-sl .ec-sb-pro-sl-item {
  background: #f7f7f7;
  padding: 15px;
  border: none;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #eeeeee;
}
.product_page .ec-sidebar-slider .ec-sb-pro-sl .ec-sb-pro-sl-item .ec-pro-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4px;
  overflow: hidden;
  padding-left: 12px;
}
.product_page .ec-sidebar-slider .ec-sb-pro-sl .ec-sb-pro-sl-item .ec-pro-content .ec-pro-title a {
  text-decoration: none;
  color: #444444;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  font-weight: 400;
  font-family: "Poppins, sans-serif";
}
.product_page .ec-sidebar-slider .ec-sb-pro-sl .ec-sb-pro-sl-item .ec-pro-content .ec-pro-rating {
  margin: 4px 0 6px;
}
.product_page .ec-sidebar-slider .ec-sb-pro-sl .ec-sb-pro-sl-item .ec-pro-content .ec-price {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  color: #777777;
}
.product_page .ec-sidebar-slider .ec-sb-pro-sl .ec-sb-pro-sl-item .ec-pro-content .ec-price span.new-price {
  color: #555;
  font-weight: 600;
  font-size: 16px;
}
.product_page .ec-sidebar-slider .ec-sb-pro-sl .ec-sb-pro-sl-item .ec-pro-content .ec-price span.old-price {
  font-size: 13px;
  margin-right: 15px;
  text-decoration: line-through;
  color: #777777;
  line-height: 14px;
}
.product_page .ec-sidebar-slider .ec-sb-pro-sl .ec-sb-pro-sl-item .sidekka_pro_img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 36%;
          flex: 0 0 36%;
}
.product_page .ec-sidebar-slider .ec-sb-pro-sl .ec-sb-pro-sl-item .sidekka_pro_img img {
  max-width: 100%;
}
.product_page .ec-sb-slider-title {
  text-decoration: none;
  color: #212121;
  display: block;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 15px;
}
.product_page .ec-page-content {
  margin-bottom: 0;
}

/*-----  Sidebar Slider  -----*/
.ec-sidebar-slider .slick-arrow {
  top: -36px;
  border: 1px solid #dedede;
  border-radius: 100%;
  width: 20px;
  height: 20px;
}
.ec-sidebar-slider .slick-arrow:hover {
  border-color: #3474d4;
}
.ec-sidebar-slider .slick-arrow:before {
  height: 20px;
  font-size: 16px;
  line-height: 19px;
}
.ec-sidebar-slider .slick-arrow.slick-next {
  right: 0;
  left: auto;
}
.ec-sidebar-slider .slick-arrow.slick-prev {
  right: 28px;
  left: auto;
}

/*-----  Single Product  -----*/
.single-pro-img {
  position: relative;
  width: 47.3%;
}
.single-pro-img .single-product-scroll {
  position: sticky;
  top: 30px;
}
.single-pro-img .ec-360-lbl {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
  border-radius: 50%;
  cursor: pointer;
  height: 40px;
  width: 40px;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  display: -ms-grid;
  display: grid;
  opacity: 0.7;
}
.single-pro-img .ec-360-lbl:hover {
  opacity: 1;
}
.single-pro-img .ec-video-icon {
  position: absolute;
  display: -ms-grid;
  display: grid;
  top: 15px;
  right: 15px;
  height: 40px;
  width: 40px;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  cursor: pointer;
  z-index: 1;
  opacity: 0.7;
}
.single-pro-img .ec-video-icon:hover {
  opacity: 1;
}

.single-pro-desc {
  width: 52.7%;
  background-color: #fff;
}

.single-pro-img-no-sidebar {
  width: 40%;
}

.single-pro-desc-no-sidebar {
  width: 60%;
}

.space-6 > div {
  margin-top: 30px;
}
.space-6 > div:nth-child(-n+2) {
  margin-top: 0;
}

.single-product-cover {
  overflow: hidden;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.single-slide.zoom-image-hover {
  border: 1px solid #eeeeee !important;
  border-radius: 5px !important;
}

.single-nav-thumb {
  width: 100%;
  overflow: hidden;
}
.single-nav-thumb .slick-list {
  margin: 0 -8px;
}
.single-nav-thumb .single-slide {
  padding: 11px 11px 0 11px;
  display: block !important;
}
.single-nav-thumb .slick-slide img {
  border: 1px solid #eeeeee;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.single-nav-thumb .slick-slide:hover img {
  border-color: #3474d4;
}
.single-nav-thumb .slick-slide.slick-current.slick-active img {
  border-color: #3474d4;
}
.single-nav-thumb .slick-arrow {
  top: 42%;
}

.single-pro-content .ec-single-title {
  color: #444444;
  font-size: 22px;
  text-transform: capitalize;
  margin: 0 0 20px 0;
  text-decoration: none;
  display: block;
  font-weight: 800;
  line-height: 30px;
  letter-spacing: 0.02rem;
}
.single-pro-content p {
  font-size: 14px;
  color: #212121;
  margin: 0 0 12px;
  font-weight: 600;
}
.single-pro-content p span {
  font-weight: 400;
}
.single-pro-content .single-para {
  font-weight: 400;
  color: #444444;
  line-height: 26px;
}
.single-pro-content .ec-single-rating-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-pro-content .ec-single-rating-wrap i.ecicon {
  margin-right: 2px;
  line-height: 20px;
  font-size: 16px;
  float: unset;
}
.single-pro-content .ec-single-rating-wrap .ec-read-review a {
  color: #444444;
  text-decoration: underline;
  font-size: 14px;
  line-height: 20px;
}
.single-pro-content .ec-single-rating-wrap .ec-read-review a:hover {
  color: #3474d4;
}
.single-pro-content .ec-single-rating {
  padding-right: 15px;
  border-right: 1px solid #eeeeee;
  margin-right: 15px;
  line-height: 17px;
}
.single-pro-content .ec-read-review {
  line-height: 17px;
}
.single-pro-content .ec-single-desc {
  margin-bottom: 12px;
  color: #777;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.7;
}
.single-pro-content .ec-single-sales {
  margin: 25px 0 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  border: 1px solid #eeeeee;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 5px;
}
.single-pro-content .ec-single-sales .ec-single-sales-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  display: block;
  color: #444444;
  font-family: "Fjalla One";
  letter-spacing: 0.5px;
  text-transform: capitalize;
  line-height: 1.2;
  display: none;
}
.single-pro-content .ec-single-sales .ec-single-sales-visitor {
  color: #444444;
  font-size: 16px;
  line-height: 27px;
  text-transform: capitalize;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.1px;
  margin-bottom: 16px;
}
.single-pro-content .ec-single-sales .ec-single-sales-visitor span {
  color: #ffffff;
  font-size: 16px;
  line-height: 27px;
  font-weight: 600;
  background-color: #3474d4;
  padding: 0 3px;
  margin: 0 6px;
}
.single-pro-content .ec-single-sales .ec-single-sales-progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}
.single-pro-content .ec-single-sales .ec-single-sales-progress .ec-single-progressbar {
  position: relative;
  border: 3px solid #edecff;
  width: 100%;
  border-radius: 6px;
}
.single-pro-content .ec-single-sales .ec-single-sales-progress .ec-single-progressbar:before {
  position: absolute;
  border: 3px solid #555;
  width: 50%;
  border-radius: 6px;
  top: -3px;
  left: -3px;
  right: auto;
  content: "";
}
.single-pro-content .ec-single-sales .ec-single-progress-desc {
  font-size: 12px;
  color: #444444;
  font-weight: 500;
  letter-spacing: 0.1px;
  margin-bottom: 4px;
}
.single-pro-content .ec-single-sales .ec-single-sales-countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-pro-content .ec-single-sales .ec-single-sales-countdown .ec-single-countdown {
  margin-right: 32px;
}
.single-pro-content .ec-single-sales .ec-single-count-desc {
  font-size: 14px;
  font-weight: 700;
  position: relative;
  display: block;
  color: #777;
  letter-spacing: 0.3px;
  line-height: 17px;
}
.single-pro-content .ec-single-price-stoke {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
  padding: 20px 0;
  border-bottom: 1px solid #eeeeee;
}
.single-pro-content .ec-single-price-stoke > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.single-pro-content .ec-single-price-stoke .ec-single-ps-title {
  line-height: 1;
  font-size: 16px;
  color: #202020;
  margin-bottom: 14px;
  letter-spacing: 0;
}
.single-pro-content .ec-single-price-stoke .ec-single-sku {
  line-height: 1.4;
  font-size: 18px;
  color: #444444;
  font-weight: 600;
}
.single-pro-content .ec-single-price span.new-price {
  color: #202020;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}
.single-pro-content .ec-pro-variation {
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eeeeee;
}
.single-pro-content .ec-pro-variation .ec-pro-variation-inner {
  font-size: 16px;
  font-weight: 600;
  color: #212121;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single-pro-content .ec-pro-variation .ec-pro-variation-inner > span {
  margin: 0 0 10px;
  color: #202020;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
}
.single-pro-content .ec-pro-variation .ec-pro-variation-inner .ec-pro-variation-content li {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-color: #f5f5f5;
  color: #777777;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  line-height: 22px;
  padding: 0;
  border: 1px solid #eeeeee;
  float: left;
  margin-right: 10px;
  border-radius: 0;
}
.single-pro-content .ec-pro-variation .ec-pro-variation-inner.ec-pro-variation-color .ec-pro-variation-content li {
  padding: 2px;
  border-radius: 30px;
  opacity: 0.7;
  background-color: transparent;
}
.single-pro-content .ec-pro-variation .ec-pro-variation-inner.ec-pro-variation-color .ec-pro-variation-content li span {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 30px;
}
.single-pro-content .ec-pro-variation .ec-pro-variation-inner.ec-pro-variation-color .ec-pro-variation-content .active {
  border: 1px solid #444444;
}
.single-pro-content .ec-single-qty {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
}
.single-pro-content .ec-single-qty .qty-plus-minus {
  border: 1px solid #eeeeee;
  display: inline-block;
  height: 40px;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
}
.single-pro-content .ec-single-qty .qty-plus-minus .ec_qtybtn {
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  cursor: pointer;
  font-size: 22px;
  color: #777777;
}
.single-pro-content .ec-single-qty .qty-plus-minus input.qty-input {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  color: #444444;
  float: left;
  font-size: 15px;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 40px;
  outline: none;
  font-weight: 700;
}
.single-pro-content .ec-single-qty .qty-plus-minus .dec.ec_qtybtn {
  border-right: 1px solid #eeeeee;
}
.single-pro-content .ec-single-qty .qty-plus-minus .inc.ec_qtybtn {
  border-left: 1px solid #eeeeee;
}
.single-pro-content .ec-single-qty .ec-single-cart .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  line-height: 50px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  margin: 0 10px;
  text-transform: uppercase;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 160px;
  letter-spacing: 0.02rem;
}
.single-pro-content .ec-single-qty .ec-single-cart .btn svg {
  margin-right: 8px;
}
.single-pro-content .ec-single-qty .ec-btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-decoration: none;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
}
.single-pro-content .ec-single-qty .ec-btn-group i {
  line-height: 22px;
}
.single-pro-content .ec-single-qty .ec-btn-group .svg_img.pro_svg {
  fill: #000000;
}
.single-pro-content .ec-single-qty .ec-btn-group:hover {
  color: #ffffff;
  background-color: #3474d4;
  border-color: #3474d4;
}
.single-pro-content .ec-single-qty .ec-btn-group:hover .svg_img.pro_svg {
  fill: #ffffff;
}
.single-pro-content .ec-single-qty .ec-single-wishlist {
  margin-right: 10px;
}
.single-pro-content .ec-single-social ul {
  display: initial;
}
.single-pro-content .ec-single-social ul li a {
  width: 30px;
  height: 30px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #efefef;
  border-radius: 100%;
  color: #777;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 15px;
}
.single-pro-content .ec-single-social ul li a:hover {
  color: #fff;
}
.single-pro-content .ec-single-social ul li.facebook a:hover {
  background: #3c5a98;
}
.single-pro-content .ec-single-social ul li.twitter a:hover {
  background: #1da1f2;
}
.single-pro-content .ec-single-social ul li.instagram a:hover {
  background: #d6249f;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.single-pro-content .ec-single-social ul li.behance a:hover {
  background: #0057ff;
}
.single-pro-content .ec-single-social ul li.whatsapp a:hover {
  background: #2db842;
}
.single-pro-content .ec-single-social ul li.plus a:hover {
  background: #000000;
}
.single-pro-content .ec-single-social ul li.youtube-play a:hover {
  background: #ff0000;
}
.single-pro-content .ec-single-social ul li.list-inline-item:not(:last-child) {
  margin-right: 6px;
}

i.ecicon.eci-star-o.fill {
  color: #ff6262;
}

i.ecicon.eci-star-o {
  color: #b2b2b2;
  float: left;
}

.ec-single-sales-countdown .displaySection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
  background-color: #f7f7f7;
  min-width: 60px;
  padding: 10px 5px;
}
.ec-single-sales-countdown .numberDisplay {
  font-size: 18px;
  min-height: unset;
  min-width: auto;
  color: #777;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 5px;
  background-color: transparent;
}
.ec-single-sales-countdown .periodDisplay {
  font-weight: 400;
}
.ec-single-sales-countdown .labelformat {
  width: auto;
  font-size: 12px;
  color: #777;
  line-height: 1;
  letter-spacing: -1px;
  font-weight: 500;
  letter-spacing: 0.02rem;
}

.ec-single-pro-tab {
  margin-top: 40px;
}

.ec-single-pro-tab-nav {
  border-bottom: none;
  position: relative;
  display: block;
  margin: auto;
  text-align: center;
  width: 100%;
  float: left;
  margin-bottom: -20px;
}
.ec-single-pro-tab-nav .nav-tabs {
  border-bottom: none;
  display: inline-block;
  float: left;
  background: #ffffff;
}
.ec-single-pro-tab-nav .nav-tabs li:last-child {
  margin-right: 0;
}
.ec-single-pro-tab-nav .nav-tabs li {
  margin: 0 5px 0 auto;
}
.ec-single-pro-tab-nav .nav-tabs .nav-link {
  border: 1px solid #eeeeee;
  text-transform: capitalize;
  line-height: 24px;
  color: #444444;
  padding: 8px 28px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  display: inline-block;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 0;
  letter-spacing: 0;
  border-radius: 5px;
}
.ec-single-pro-tab-nav .nav-tabs .nav-link:hover {
  color: #ffffff;
  background-color: #3474d4;
  border: 1px solid #3474d4;
}
.ec-single-pro-tab-nav .nav-tabs .nav-link.active {
  color: #ffffff;
  background-color: #3474d4;
  border: 1px solid #3474d4;
}
.ec-single-pro-tab-nav li {
  display: inline-block;
  float: left;
  margin-right: 2px;
}

.tab-pane p {
  color: #000;
   margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.ec-single-pro-tab-content {
  overflow: hidden;
  background-color: #fff;
  text-align: left;
  padding: 35px 30px 21px 30px;
  border: 1px solid #eeeeee;
  border-radius: 0;
  color: #202020;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.6;
  border-radius: 5px;
}
.ec-single-pro-tab-content .ec-t-review-wrapper {
  margin-top: 10px;
}
.ec-single-pro-tab-content .ec-single-pro-tab-desc p {
  margin-bottom: 15px;
  font-size: 14px;
  letter-spacing: 0;
  color: #777;
  line-height: 24px;
}
.ec-single-pro-tab-content .ec-single-pro-tab-desc ol {
  padding-left: 24px;
}
.ec-single-pro-tab-content .ec-single-pro-tab-desc ol li {
  list-style: outside;
  margin-bottom: 4px;
  color: #777;
}
.ec-single-pro-tab-content .ec-single-pro-tab-desc ul {
  padding-left: 24px;
}
.ec-single-pro-tab-content .ec-single-pro-tab-desc ul li {
  font-size: 15px;
  list-style: outside;
  margin-bottom: 4px;
  color: #777;
}
.ec-single-pro-tab-content .ec-single-pro-tab-moreinfo p {
  color: #777;
   
  font-size: 15px;
  font-weight: 500;
}
.ec-single-pro-tab-content .ec-single-pro-tab-moreinfo ol {
  padding-left: 24px;
}
.ec-single-pro-tab-content .ec-single-pro-tab-moreinfo ol li {
  list-style: outside;
  margin-bottom: 4px;
  color: #777;
}
.ec-single-pro-tab-content .ec-single-pro-tab-moreinfo ul {
  padding-left: 24px;
}
.ec-single-pro-tab-content .ec-single-pro-tab-moreinfo ul li {
  margin-bottom: 4px;
  font-size: 15px;
  list-style: outside;
  color: #777;
}
.ec-single-pro-tab-content .ec-single-pro-tab-moreinfo li span {
  margin: 0 25px 0 0;
  min-width: 150px;
  font-size: 15px;
  color: #000000;
  display: inline-block;
  font-weight: 600;
  color: #777;
}
.ec-single-pro-tab-content .ec-t-review-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eeeeee;
}
.ec-single-pro-tab-content .ec-t-review-item p {
  color: #777;
}
.ec-single-pro-tab-content .ec-t-review-item .ec-t-review-avtar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 90px;
          flex: 0 0 90px;
  margin: 0 15px 0 0;
}
.ec-single-pro-tab-content .ec-t-review-item .ec-t-review-avtar img {
  max-width: 100%;
  border-radius: 5px;
}
.ec-single-pro-tab-content .ec-t-review-item .ec-t-review-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 0 10px;
}
.ec-single-pro-tab-content .ec-t-review-item .ec-t-review-top .ec-t-review-name {
  margin-bottom: 25px;
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
  font-weight: 600;
  display: block;
  color: #444444;
}
.ec-single-pro-tab-content .ec-t-review-item .ec-t-review-top .ec-t-review-rating {
  font-size: 16px;
  margin-top: 5px;
}
.ec-single-pro-tab-content .ec-t-review-item .ec-t-review-top a {
  color: #444444;
}
.ec-single-pro-tab-content .ec-t-review-item .ec-t-review-top a:hover {
  color: #555;
}
.ec-single-pro-tab-content .ec-t-review-item .ec-t-review-bottom p {
  width: 100%;
  font-size: 14px;
  color: #777;
  line-height: 24px;
}
.ec-single-pro-tab-content .ec-ratting-content h3, .ec-single-pro-tab-content .ec-ratting-content .h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
   
}
.ec-single-pro-tab-content .ec-ratting-content .ec-ratting-star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 5px 0 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ec-single-pro-tab-content .ec-ratting-content .ec-ratting-star span {
  margin: 0 18px 0 0;
  font-size: 16px;
  color: #202020;
}
.ec-single-pro-tab-content .ec-ratting-content .ec-ratting-star i {
  font-size: 18px;
}
.ec-single-pro-tab-content .ec-ratting-content .ec-ratting-input {
  margin-bottom: 10px;
}
.ec-single-pro-tab-content .ec-ratting-content .ec-ratting-input input {
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  margin-bottom: 15px;
  outline: none;
  border: 1px solid #eeeeee;
  color: #444444;
  padding: 5px 20px;
}
.ec-single-pro-tab-content .ec-ratting-content .ec-ratting-input input::-webkit-input-placeholder, .ec-single-pro-tab-content .ec-ratting-content .ec-ratting-input textarea::-webkit-input-placeholder {
  color: #777;
  opacity: 1;
}
.ec-single-pro-tab-content .ec-ratting-content .ec-ratting-input input::-moz-placeholder, .ec-single-pro-tab-content .ec-ratting-content .ec-ratting-input textarea::-moz-placeholder {
  color: #777;
  opacity: 1;
}
.ec-single-pro-tab-content .ec-ratting-content .ec-ratting-input input:-ms-input-placeholder, .ec-single-pro-tab-content .ec-ratting-content .ec-ratting-input textarea:-ms-input-placeholder {
  color: #777;
  opacity: 1;
}
.ec-single-pro-tab-content .ec-ratting-content .ec-ratting-input input::-ms-input-placeholder, .ec-single-pro-tab-content .ec-ratting-content .ec-ratting-input textarea::-ms-input-placeholder {
  color: #777;
  opacity: 1;
}
.ec-single-pro-tab-content .ec-ratting-content .ec-ratting-input input::placeholder, .ec-single-pro-tab-content .ec-ratting-content .ec-ratting-input textarea::placeholder {
  color: #777;
  opacity: 1;
}
.ec-single-pro-tab-content .ec-ratting-content .ec-ratting-input textarea {
  background: transparent;
  border: 1px solid #eeeeee;
  color: #444444;
  height: 150px;
  padding: 20px;
  margin-bottom: 15px;
  width: 100%;
  outline: none;
  font-size: 14px;
}
.ec-single-pro-tab-content .ec-ratting-content .ec-ratting-input button {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1;
}

.single-brand img{
  height: 40px;
}

.single-pro-desc,.single-pro-img
{
  padding: 0px 15px;
}

.ec-single-pro-tab-nav .nav-tabs li{
  position: relative;
  z-index: 1
  ;
}

.ec-pro-rightside {
  max-width: 1170px;
  margin: 0 auto;
      flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.product-details-specifications table {
  font-size: 14px;
  margin-bottom: 2em;
}

.product-details-specifications h4{
  font-weight:600;
}
.product-details-more h4 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 1em;
}

.product-details-more .product-view-btn {
  display: block;
  width: fit-content;
  border-radius: 5px;
  padding: 6px 15px;
  font-size: 32px;
  color: white;
  text-align: center;
  background: linear-gradient(136deg, #003355, #034571e3);
  transition: 0.5s all ease-in-out;
}
.product-details-more .product-brochure-btn {
  display: block;
  width: fit-content;
  border-radius: 5px;
  padding: 6px 15px;
  font-size: 32px;
  color: white;
  text-align: center;
  background: linear-gradient(136deg, #068152, #0a9560e8);
  transition: 0.7s all ease-in-out;
}

.product-details-more .product-view-btn p, .product-details-more .product-brochure-btn p {
  margin: 0;
  color: white;
  font-size: 14px;
  font-weight: 600;
}
.product-details-more .product-details-more-row {
  display: flex;
  gap: 10px;
}

.product-details-more .product-view-btn:hover{
	background: linear-gradient(313deg, #003355, #034571e3)
}
.product-details-more .product-brochure-btn:hover{
	background: linear-gradient(313deg, #068152, #0a9560e8);
}

.slick-arrow {
  position: absolute;
  top: 45%;
  left: auto;
  right: auto;
  margin: 0 auto;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  z-index: 1;
  background-color: transparent;
}
.slick-arrow:before {
  content: "";
  color: #3474d4;
  position: relative;
  font-size: 30px;
  font-family: 'PhpDebugbarFontAwesome';
  width: 100%;
  line-height: 30px;
  height: 30px;
}
.slick-arrow:hover:before {
  color: #3474d4;
}

.slick-arrow.slick-prev {
  left: 0;
  right: auto;
}
.slick-arrow.slick-prev:before {
  content: "\f104";
}

.slick-arrow.slick-next {
  right: 0;
  left: auto;
}
.slick-arrow.slick-next:before {
  content: "\f105";
}
.banner-content{
  width:100%;
}

.navbar.d-flex{
  justify-content: end;
}


/*-------------------------------------------------
  Shop Page CSS
---------------------------------------------------*/
.width-100 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 auto !important;
          flex: 0 0 auto !important;
  width: 100% !important;
}

.width-50 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 auto !important;
          flex: 0 0 auto !important;
  width: 50% !important;
}

.col-5 {
  width: 20%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
}

.ec-shop-rightside .ec-pro-list-top {
  margin-bottom: 30px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  background: #f7f7f7;
  padding: 7px;
  border: none;
  border-radius: 5px;
  border: 1px solid #eeeeee;
}

.ec-gl-btn .btn {
  width: 34px;
  height: 34px;
  padding: 0;
  background: #ffffff;
  border: 1px solid #eeeeee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 34px;
  float: left;
  margin-right: 10px;
}
.ec-gl-btn .btn:hover {
  background: #3474d4;
  border: 1px solid #3474d4;
}
.ec-gl-btn .btn:hover .svg_img.gl_svg {
  fill: #ffffff;
}
.ec-gl-btn .btn:hover i {
  color: #ffffff;
}
.ec-gl-btn .btn .svg_img.gl_svg {
  height: 20px;
  fill: #444444;
  width: 20px;
}
.ec-gl-btn .btn i {
  font-size: 17px;
  line-height: 14px;
  color: #444444;
}
.ec-gl-btn .btn.active {
  background: #3474d4;
  border: 1px solid #3474d4;
}
.ec-gl-btn .btn.active .svg_img.gl_svg {
  fill: #ffffff;
}
.ec-gl-btn .btn.active i {
  color: #ffffff;
}

.ec-sort-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ec-sort-select .sort-by {
  font-size: 14px;
  color: #777777;
  padding-right: 22px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0 !important;
  background: #ffffff;
  background-image: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 10px;
  color: #777777;
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}

.ec-select-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 172px;
  height: 34px;
  line-height: 1.5;
  background: #ffffff;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid #eeeeee;
}
.ec-select-inner::after {
  content: "\f107";
  position: absolute;
  font-family: "Ecicons";
  top: 0;
  right: 0;
  padding: 0 10px;
  cursor: pointer;
  pointer-events: none;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 34px;
  line-height: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #777777;
}

.ec-page-detail .ec-cat-bnr {
  border: 1px solid #eeeeee;
  border-radius: 5px;
}
.ec-page-detail .ec-cat-bnr a span {
  width: 100%;
  height: 250px;
  display: block;
  background-image: url(../images/banner/5.png);
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}
.ec-page-detail .ec-page-description {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px;
  background-color: #f7f7f7;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #777;
  font-size: 15px;
  line-height: 28px;
  border: 1px solid #eeeeee;
  border-radius: 5px;
}
.ec-page-detail .ec-page-description h6, .ec-page-detail .ec-page-description .h6 {
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 700;
  color: #555;
}
.ec-page-detail .ec-page-description p {
  color: #777;
  font-size: 14px;
  line-height: 24px;
}

.col-5 .add-to-cart {
  width: 50px !important;
  font-size: 0 !important;
}
.col-5 .add-to-cart .svg_img.pro_svg {
  margin: 0;
}

.container-fluid .col-lg-2 .add-to-cart {
  width: 50px;
  font-size: 0 !important;
}
.container-fluid .col-lg-2 .add-to-cart .svg_img.pro_svg {
  margin: 0;
}

.ec-shop-rightside .ec-pro-list-top{
  justify-content: end;
}
.ec-sidebar-heading h1, .ec-sidebar-heading .h1 {
  text-decoration: none;
  color: #777;
  display: block;
  font-size: 16px;
  font-family: "Montserrat";
  font-weight: 600;
  line-height: 20px;
  background: #f7f7f7;
  padding: 14px 15px 14px;
  letter-spacing: 0.2px;
  margin-bottom: 30px;
  border-radius: 5px;
  border: 1px solid #eeeeee;
  margin: 0;
}
.ec-sidebar-wrap h3, .ec-sidebar-wrap .h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  display: block;
  color: #555;
  font-family: "Montserrat";
}


/*-----  Togal Sidebar  -----*/
.toggle-sidebar-swipe {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.ec-border-box {
  border: 1px solid #eeeeee;
  border-radius: 5px;
}

.ec-sidebar-wrap {
  padding: 15px;
  background-color: #fff;
}
.ec-sidebar-wrap h3, .ec-sidebar-wrap .h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  display: block;
  color: #555;
  font-family: "Montserrat";
}
.ec-sidebar-wrap .h3 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
  position: relative;
  display: block;
  color: #3474d4;
  font-family: "Fjalla One";
  letter-spacing: 0.4px;
}
.ec-sidebar-wrap .ec-sb-block-content {
  margin-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
}
.ec-sidebar-wrap .ec-sb-block-content li a span {
  float: right;
}
.ec-sidebar-wrap .ec-sb-block-content li a:hover {
  color: #555;
}
.ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 0 0 14px;
  display: block;
}
.ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content li .ec-sidebar-block-item {
  position: relative;
}
.ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content li .ec-sidebar-block-item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  z-index: 999;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
}
.ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content li .ec-sidebar-block-item .checked {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 0;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
.ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content li .ec-sidebar-block-item .checked:after {
  left: -1px;
  top: -1px;
  width: 18px;
  height: 18px;
  border: 1px solid #3474d4;
  content: "\f00c";
  position: absolute;
  display: none;
  background: #3474d4;
  font-family: "Ecicons";
  font-size: 14px;
  color: #ffffff;
  line-height: 16px;
  text-align: center;
}
.ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content li .ec-sidebar-block-item .checked.grey {
  background: #aab2bd;
  -webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content li .ec-sidebar-block-item .checked.white {
  background: #ffffff;
  -webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content li .ec-sidebar-block-item .checked.black {
  background: #434a54;
  -webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content li .ec-sidebar-block-item .checked.camel {
  background: #c19a6b;
  -webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
}
.ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content li .ec-sidebar-block-item.ec-more-toggle {
  cursor: pointer;
}
.ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content li #ec-more-toggle {
  margin-left: 25px;
  display: block;
  color: #444444;
  font-size: 15px;
  margin-top: 0;
  line-height: 18px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0;
  cursor: pointer;
}
.ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content li a {
  margin-left: 30px;
  display: block;
  color: #777;
  font-size: 14px;
  margin-top: 0;
  line-height: 20px;
  font-weight: 400;
  text-transform: capitalize;
  cursor: pointer;
}
.ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content li a:hover {
  color: #3474d4;
}
.ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content li .ec-more-toggle .checked:after {
  left: -1px;
  top: -1px;
  width: 18px;
  height: 18px;
  border: 1px solid #3474d4;
  content: "\f067";
  position: absolute;
  display: block;
  background-color: #3474d4;
  font-family: "Ecicons";
  font-size: 12px;
  color: #ffffff;
  line-height: 18px;
  text-align: center;
}
.ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content li .ec-more-toggle.active .checked:after {
  content: "\f068";
}
.ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content li:hover .checked {
  color: #3474d4;
}
.ec-sidebar-wrap .ec-sidebar-block.ec-sidebar-block-clr .ec-sb-block-content li {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  padding: 2px;
  border-radius: 30px;
  cursor: pointer;
  margin-right: 5px;
  width: 26px;
  height: 26px;
}
.ec-sidebar-wrap .ec-sidebar-block.ec-sidebar-block-clr .ec-sb-block-content li:hover {
  -webkit-box-shadow: 0px 0px 5px 0px #ccc;
          box-shadow: 0px 0px 5px 0px #ccc;
}
.ec-sidebar-wrap .ec-sidebar-block.ec-sidebar-block-clr .ec-sb-block-content li span {
  width: 22px;
  height: 22px;
  display: block;
  border-radius: 30px;
}
.ec-sidebar-wrap .ec-sidebar-block.ec-sidebar-block-clr .ec-sb-block-content li.active {
  padding: 2px;
  border-color: #3474d4;
}
.ec-sidebar-wrap .ec-sb-block-content.es-price-slider {
  margin-bottom: 0;
  border-bottom: none;
  background: #f5f5f5;
  padding: 21px 15px 15px;
  font-family: "Montserrat";
  border-radius: 5px;
  border: 1px solid #eeeeee;
}

.ec-sidebar-heading h1, .ec-sidebar-heading .h1 {
  text-decoration: none;
  color: #777;
  display: block;
  font-size: 16px;
  font-family: "Montserrat";
  font-weight: 600;
  line-height: 20px;
  background: #f7f7f7;
  padding: 14px 15px 14px;
  letter-spacing: 0.2px;
  margin-bottom: 30px;
  border-radius: 5px;
  border: 1px solid #eeeeee;
}

/*-----  No UI Target  -----*/
.noUi-target {
  cursor: pointer;
}
.noUi-target:focus {
  outline: none;
}

.noUi-horizontal {
  height: 4px;
  margin-bottom: 20px;
}
.noUi-horizontal .noUi-handle {
  top: -7px;
  right: -15px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 2px solid #3474d4;
  border-radius: 50%;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.1s;
  transition: -webkit-transform 0.1s;
  transition: transform 0.1s;
  transition: transform 0.1s, -webkit-transform 0.1s;
}

.noUi-connect {
  background: #444444;
}

.noUi-base {
  background: #777777;
}

.noUi-handle.noUi-handle-upper {
  right: -1px;
}


/*-----  Price Filter  -----*/
.ec-price-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.ec-price-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ec-price-input .ec-price-divider {
  position: relative;
  border-bottom: 1px solid #777;
  width: 10px;
  height: 1px;
  margin: 0 10px;
}

/*-----  Filter Label  -----*/
.filter__label {
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 0;
  font-size: 16px;
  color: #777;
}
.filter__label:before {
  color: #777;
  font-size: 15px;
  line-height: 1;
  margin-right: 4px;
}
.filter__label:nth-child(1):before {
  content: "$";
}
.filter__label:nth-child(3):before {
  content: "$";
}

.filter__input {
  height: 30px!important;
  border: none!important;
  border-radius: 0!important;
  padding: 0!important;
  max-width: 48px;
  line-height: 30px;
  background: #ffffff;
  text-align: center;
  font-size: 14px;
  color: #777;
  border: 1px solid #eeeeee!important;
}

/*-----  Sidebar Block  -----*/
.ec-sidebar-block .ec-sb-block-content ul li .ec-sidebar-block-item input:checked ~ .checked::after {
  display: block;
}

.ec-sidebar-block.no-cba .ec-sb-block-content ul li .ec-sidebar-block-item input:checked ~ .checked::after {
  display: none;
}
.ec-sidebar-block.no-cba .ec-sb-block-content ul li .ec-sidebar-block-item .checked {
  border: 0;
}

.ec-sidebar-res {
  display: none;
}


/*-----  Pro List View Section  -----*/
.ec-pro-list-desc {
  display: none;
}

.ec-pro-pagination {
  padding-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #eeeeee;
}
.ec-pro-pagination span {
  font-size: 16px;
  color: #777;
}
.ec-pro-pagination li {
  display: inline-block;
  float: left;
  margin-left: 1px;
}
.ec-pro-pagination a {
  font-weight: 300;
  color: #777;
  padding: 0;
  height: 32px;
  line-height: 32px;
  background-color: #ffffff!important;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32px;
  text-align: center;
  vertical-align: top;
  font-size: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ec-pro-pagination a:hover {
  color: #ffffff;
  background-color: #3474d4;
}
.ec-pro-pagination a.next {
  width: auto;
  padding: 0 13px;
  border: 1px solid #eeeeee;
  line-height: 30px;
}
.ec-pro-pagination a.next i:before {
  padding-left: 7px;
  font-size: 22px;
}
.ec-pro-pagination a.active {
  color: #ffffff;
  background-color: #3474d4;
}
.ec-pro-pagination a{
  border:1px solid #ececec;
}

.shop_sidebar{
  position: sticky;
  top: 0;
}

.shop-page .content-box{
  border-radius: 5px;
  background-color: white;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  border: none;
  margin-bottom: 1em;
}
.ec-sort-select div{
  display: flex;
  height: 100%;
}
.ec-select-inner select{
  margin: 0px;
  height: 34px;
}
.ec-select-inner::after{
  height: 100%;
}
.ec-pro-pagination a.active {
  color: #ffffff;
  background-color: #3474d4!important;
}
@media(max-width:1200px){
  .navbar.d-flex{
    justify-content: space-between;
  }
  .menu-item.mobile{
    width: fit-content;
  }
  .stellarnav{
    width: fit-content;
  }
  .menu-item form.searchbar input[type="text"]{
    height: 44px;
        background: #f0f0f1;
  }
}
@media(min-width:991px){
  .ec-sort-select div.mobile-filter{
    display: none;
  }
  .ec-shop-leftside .closebtn{
    display: none; 
  }
  
}

@media(max-width:991px){
  .ec-shop-rightside .ec-pro-list-top{
    justify-content: space-between;
  }
  .ec-sort-select{
    justify-content: space-between;
    width: 100%;
  }
  .ec-shop-leftside {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    padding: 0px;
    top: 0;
    left: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    z-index: 10;
    z-index: 1610;
  }
  .ec-shop-leftside .closebtn{
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 42px;
    line-height: 1;
    background: #f5f5f5;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    
  }
  .shop_sidebar{
    padding: 0px 20px;
  }
}

@media(max-width:768px){
  .primary-nav .container{
    max-width: 100%;
  }
}


/*-------------------------------------------------
  Cart Page CSS
---------------------------------------------------*/
.cart_page .shop-all-btn {
  margin-bottom: 0;
  border-radius: 5px;
}
.cart_page .ec-sidebar-wrap {
  border-radius: 5px;
  border: 1px solid #ededed;
}
.cart_page .ec-sidebar-wrap h3, .cart_page .ec-sidebar-wrap .h3 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 21px;
}
.cart_page .ec-sidebar-wrap .ec-sb-block-content {
  margin-bottom: 0;
  border-bottom: none;
}
.cart_page .ec-sidebar-wrap .ec-ship-title {
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  border-bottom: 1px solid #ededed;
  color: #444444;
  padding-bottom: 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}


.ec-cart-content .table-content table {
  border: 1px solid #ebebeb;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}
.ec-cart-content .table-content table thead > tr {
  background-color: #ffffff;
  border: 1px solid #ebebeb;
}
.ec-cart-content .table-content table thead > tr > th {
  border-top: medium none;
  color: #444444;
  font-size: 15px;
  font-weight: 500;
  padding: 15px 14px 12px;
  text-align: left;
  text-transform: capitalize;
  vertical-align: middle;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0;
}
.ec-cart-content .table-content table tbody > tr {
  border-bottom: 1px solid #ebebeb;
}
.ec-cart-content .table-content table tbody > tr td {
  color: #444444;
  font-size: 16px;
  padding: 15px 14px;
  text-align: left;
}
.ec-cart-content .table-content table tbody > tr td .ec-cart-pro-img {
  width: 61px;
}
.ec-cart-content .table-content table tbody > tr td .cart-qty-plus-minus {
  border: 1px solid #ededed;
  display: inline-block;
  height: 35px;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}
.ec-cart-content .table-content table tbody > tr td .cart-qty-plus-minus input {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  color: #444444;
  float: left;
  font-size: 14px;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 40px;
  outline: none;
  font-weight: 600;
  line-height: 38px;
}
.ec-cart-content .table-content table tbody > tr td .cart-qty-plus-minus .ec_cart_qtybtn {
  color: #444444;
  float: left;
  font-size: 20px;
  height: auto;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ec-cart-content .table-content table tbody > tr td .cart-qty-plus-minus .ec_qtybtn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  font-size: 0;
  color: #444444;
  height: 19px;
  position: relative;
}
.ec-cart-content .table-content table tbody > tr td .cart-qty-plus-minus .ec_qtybtn:before {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #444444;
  height: 19px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  font-family: "EcIcons";
  overflow: hidden;
}
.ec-cart-content .table-content table tbody > tr td .cart-qty-plus-minus .dec.ec_qtybtn:before {
  padding-bottom: 4px;
  content: "\f107";
}
.ec-cart-content .table-content table tbody > tr td .cart-qty-plus-minus .inc.ec_qtybtn:before {
  padding-top: 4px;
  content: "\f106";
}
.ec-cart-content .table-content table tbody > tr td.ec-cart-pro-name {
  width: 40%;
}
.ec-cart-content .table-content table tbody > tr td.ec-cart-pro-name a {
  color: #444444;
  font-weight: 400;
  text-decoration: none;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
  letter-spacing: 0.6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ec-cart-content .table-content table tbody > tr td.ec-cart-pro-subtotal {
  color: #555;
  font-weight: 500;
  font-size: 15px;
}
.ec-cart-content .table-content table tbody > tr td.ec-cart-pro-price {
  color: #555;
  font-weight: 500;
  font-size: 15px;
}
.ec-cart-content .table-content table tbody > tr td.ec-cart-pro-qty .qty-plus-minus {
  display: inline-block;
  height: 40px;
  padding: 0;
  position: relative;
  width: 110px;
}
.ec-cart-content .table-content table tbody > tr td.ec-cart-pro-remove {
  width: 90px;
  text-align: right;
}
.ec-cart-content .table-content table tbody > tr td.ec-cart-pro-remove a {
  font-size: 22px;
  margin: 0 auto;
  color: #555;
}
.ec-cart-content .ec-cart-update-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0 0;
}

.ec-cart-update-bottom > a {
  color: #444444;
  display: inline-block;
  text-decoration: underline;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.8px;
}
.ec-cart-update-bottom .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 150px;
}

.ec-cart-form {
  padding-top: 19px;
}
.ec-cart-form label {
  margin-bottom: 9px;
  color: #444444;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.ec-cart-form p {
  color: #777;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 0;
}
.ec-cart-form input {
  background-color: transparent;
  border: 1px solid #ededed;
  color: #444444;
  font-size: 14px;
  margin-bottom: 26px;
  padding: 0 15px;
  width: 100%;
  outline: none;
}
.ec-cart-form select {
  padding: 0 15px;
}
.ec-cart-form .ec-cart-select-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 50px;
  border-radius: 0;
  border: 1px solid #ededed;
  font-size: 14px;
  padding: 0;
  margin-bottom: 28px;
}
.ec-cart-form .ec-cart-select-inner::after {
  content: "\f107";
  position: absolute;
  font-family: "EcIcons";
  top: 0;
  right: 0;
  padding: 0 10px;
  cursor: pointer;
  pointer-events: none;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  line-height: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #777777;
}

.ec-cart-summary-bottom .ec-cart-summary > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.ec-cart-summary-bottom .ec-cart-summary .text-left {
  color: #444444;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
}
.ec-cart-summary-bottom .ec-cart-summary .text-right {
  color: #555;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}
.ec-cart-summary-bottom .ec-cart-summary .text-right a {
  color: #eb2629;
  font-weight: 500;
}
.ec-cart-summary-bottom .ec-cart-summary .ec-cart-summary-total {
  border-top: 1px solid #ededed;
  padding-top: 19px;
  margin-bottom: 0;
  margin-top: 16px;
}
.ec-cart-summary-bottom .ec-cart-summary .ec-cart-summary-total .text-left {
  font-size: 16px;
  font-weight: 500;
}
.ec-cart-summary-bottom .ec-cart-summary .ec-cart-summary-total .text-right {
  font-size: 16px;
  font-weight: 500;
}

.ec-cart-summary-bottom .ec-cart-summary .ec-cart-coupan-content {
  display: none;
  margin-bottom: 0;
}

.ec-cart-coupan-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #ededed;
  padding: 5px;
}
.ec-cart-coupan-form .ec-coupan {
  display: inline-block;
  vertical-align: top;
  line-height: 35px;
  height: 35px;
  color: #777777;
  font-size: 14px;
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 0;
  -webkit-border-radius: 0;
  text-align: left;
  padding-left: 10px;
  padding-right: 10px;
  letter-spacing: 0.5px;
}
.ec-cart-coupan-form .button {
  font-size: 16px;
  text-align: center;
  padding: 0 15px;
}

.stellarnav.light ul ul {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


/*-------------------------------------------------
  Checkout Page CSS
---------------------------------------------------*/
.checkout_page .ec-checkout-wrap {
  padding: 30px;
  border: 1px solid #ededed;
  background-color: #fff;
  border-radius: 5px;
}
.checkout_page .ec-checkout-wrap h3, .checkout_page .ec-checkout-wrap .h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 25px;
  position: relative;
  display: block;
  color: #444444;
  font-family: "Montserrat";
  line-height: 1;
}
.checkout_page .ec-checkout-wrap .ec-check-login h3, .checkout_page .ec-checkout-wrap .ec-check-login .h3 {
  margin-bottom: 22px;
}
.checkout_page .ec-checkout-wrap .ec-check-bill h3, .checkout_page .ec-checkout-wrap .ec-check-bill .h3 {
  margin-bottom: 26px;
  line-height: 1.2;
}
.checkout_page .ec-checkout-wrap .ec-check-bill .ec-check-subtitle {
  margin-bottom: 10px;
}
.checkout_page [type=radio]:checked {
  position: absolute;
  left: -9999px;
}
.checkout_page [type=radio]:checked + label {
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  line-height: 16px;
  display: inline-block;
  color: #777777;
  letter-spacing: 0;
}
.checkout_page [type=radio]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #ffffff;
  border: 1px solid #3474d4;
}
.checkout_page [type=radio]:checked + label:after {
  content: "";
  width: 8px;
  height: 8px;
  background: #3474d4;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.checkout_page [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.checkout_page [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  line-height: 16px;
  display: inline-block;
  color: #777777;
  letter-spacing: 0;
}
.checkout_page [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #ffffff;
}
.checkout_page [type=radio]:not(:checked) + label:after {
  content: "";
  width: 8px;
  height: 8px;
  background: #3474d4;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.checkout_page .ec-sidebar-wrap {
  border: 1px solid #ededed;
  margin-bottom: 30px;
  border-radius: 5px;
}
.checkout_page .ec-sidebar-wrap:last-child {
  margin-bottom: 0;
}
.checkout_page .ec-sidebar-wrap .ec-sb-block-content {
  margin-bottom: 0;
  border-bottom: none;
}
.checkout_page .ec-checkout-pay-wrap [type=radio]:checked + label {
  margin-bottom: 30px;
}
.checkout_page .ec-checkout-pay-wrap [type=radio]:not(:checked) + label {
  margin-bottom: 6px;
}
.checkout_page .ec-new-product {
  margin-top: 2px;
}

.ec-check-subtitle {
  margin-bottom: 14px;
  color: #444444;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.ec-checkout-block.ec-check-new {
  margin-bottom: 30px;
}

.ec-new-option span {
  margin-right: 45px;
}

.ec-new-desc {
  position: relative;
  line-height: 24px;
  color: #777;
  letter-spacing: 0;
  max-width: 64%;
}

.ec-new-btn {
  margin-top: 26px;
}
.ec-new-btn a {
  height: 40px;
  text-transform: uppercase;
  font-size: 16px;
  min-width: 150px;
  line-height: 40px;
  letter-spacing: 0;
}

.ec-check-login-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ec-check-login-form label {
  margin-bottom: 11px;
  color: #444444;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.ec-check-login-form input {
  background-color: transparent;
  border: 1px solid #ededed;
  color: #444444;
  font-size: 14px;
  margin-bottom: 16px;
  padding: 0 15px;
  width: 100%;
  outline: none;
}
.ec-check-login-form .ec-check-login-fp {
  color: #444444;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-decoration: underline;
  font-size: 15px;
  line-height: 24px;
}
.ec-check-login-form .ec-check-login-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 14px;
}
.ec-check-login-form .ec-check-login-btn .btn {
  height: 40px;
  text-transform: uppercase;
  font-size: 16px;
  min-width: 150px;
  line-height: 40px;
  letter-spacing: 0;
  cursor: pointer;
  padding: 0 15px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  outline: none;
  border-radius: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
}

.ec-check-bill-form {
  margin-bottom: 2px;
}

.ec-bill-option {
  margin-bottom: 32px;
  display: block;
}
.ec-bill-option span {
  margin-right: 45px;
}

.padding-bottom-3 {
  padding-bottom: 3px !important;
}

/*-----  Checkout Page CSS  ------*/
.ec-checkout-wrap .ec-check-bill-form .ec-bill-wrap {
  width: 100%;
  padding: 0 15px;
}
.ec-checkout-wrap .ec-check-bill-form .ec-bill-wrap.ec-bill-half {
  width: 50%;
}
.ec-checkout-wrap .ec-check-bill-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 0 -15px;
}
.ec-checkout-wrap .ec-check-bill-form label {
  margin-bottom: 7px;
  color: #444444;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.ec-checkout-wrap .ec-check-bill-form input {
  background-color: transparent;
  border: 1px solid #ededed;
  color: #444444;
  font-size: 14px;
  margin-bottom: 26px;
  padding: 0 15px;
  width: 100%;
  outline: none;
}
.ec-checkout-wrap .ec-check-bill-form .ec-bill-fp label {
  margin-bottom: 0;
}
.ec-checkout-wrap .ec-check-bill-form .ec-bill-fp label a {
  color: #444444;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0px;
}
.ec-checkout-wrap .ec-check-bill-form .ec-bl-select-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 50px;
  border-radius: 0;
  border: 1px solid #ededed;
  font-size: 14px;
  padding: 0;
  margin-bottom: 27px;
}
.ec-checkout-wrap .ec-check-bill-form .ec-bl-select-inner select {
  padding: 0 15px;
}
.ec-checkout-wrap .ec-check-bill-form .ec-bl-select-inner::after {
  content: "\f107";
  position: absolute;
  font-family: "EcIcons";
  top: 0;
  right: 0;
  padding: 0 10px;
  cursor: pointer;
  pointer-events: none;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  line-height: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #777777;
}

.ec-checkout-content .ec-check-order-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0;
}
.ec-checkout-content .ec-check-order-btn .btn {
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0 5px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  outline: none;
  border-radius: 0px;
  width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0;
}

.ec-checkout-summary > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.ec-checkout-summary .text-left {
  color: #444444;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
}
.ec-checkout-summary .text-right {
  color: #555;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
}
.ec-checkout-summary .text-right a {
  color: #eb2629;
  font-weight: 500;
  font-size: 14px;
}
.ec-checkout-summary .ec-checkout-summary-total {
  border-top: 1px solid #ededed;
  padding-top: 19px;
  margin-bottom: 0;
  margin-top: 16px;
}
.ec-checkout-summary .ec-checkout-summary-total .text-left {
  font-size: 16px;
  font-weight: 700;
  font-family: "Montserrat";
}
.ec-checkout-summary .ec-checkout-summary-total .text-right {
  font-size: 16px;
  font-weight: 700;
  font-family: "Montserrat";
}
.ec-sidebar-wrap.ec-checkout-pay-wrap .ec-pay-agree a span {
  font-weight: 600;
  color: #444444;
}

.ec-product-inner .ec-pro-image {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  border: 1px solid #eeeeee;
}
.ec-product-inner .ec-pro-image .image {
  position: relative;
  display: block;
  overflow: hidden;
  pointer-events: none;
}
.ec-product-inner .ec-pro-image .image img {
  z-index: 1;
  max-width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content .ec-checkout-pro .ec-product-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ec-product-inner {
  border-radius: 5px;
  background-color: white;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  border: none;
  padding: 15px;
}
.ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content .ec-checkout-pro .ec-product-inner .ec-pro-image-outer {
  width: 128px;
  margin-right: 15px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ec-product-inner .ec-pro-content .ec-pro-title a {
  text-decoration: none;
  color: #777;
  white-space: break-spaces;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;

}
.ec-sidebar-wrap .ec-sidebar-block .ec-sb-block-content .ec-pay-opt-head {
  color: #444444;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.ec-sidebar-wrap.ec-checkout-pay-wrap textarea {
  background: transparent;
  border: 1px solid #ededed;
  color: #444444;
  height: 110px;
  padding: 10px 15px;
  margin-bottom: 0;
  width: 100%;
  outline: none;
  font-size: 14px;
  display: block;
}
.ec-sidebar-wrap.ec-checkout-pay-wrap .ec-pay-agree a {
  margin-left: 27px;
  display: block;
  color: #777777;
  font-size: 14px;
  margin-top: 0;
  line-height: 18px;
  font-weight: 300;
  letter-spacing: 0;
  cursor: pointer;
}
.ec-sidebar-wrap.ec-checkout-pay-wrap .ec-pay-agree input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  z-index: 999;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
}
.ec-sidebar-wrap.ec-checkout-pay-wrap .ec-pay-agree {
  position: relative;
  display: block;
  margin-top: 20px;
}
.ec-sidebar-wrap.ec-checkout-pay-wrap .ec-pay-agree .checked {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #ffffff;
  border: 1px solid #ededed;
  border-radius: 4px;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
.ec-sidebar-wrap.ec-checkout-pay-wrap .ec-pay-agree .checked:after {
  left: -1px;
  top: -1px;
  width: 15px;
  height: 15px;
  border: 1px solid #3474d4;
  content: "\f00c";
  position: absolute;
  display: none;
  font-family: "EcIcons";
  font-size: 9px;
  color: #3474d4;
  line-height: 14px;
  text-align: center;
  border-radius: 4px;
}
.ec-sidebar-wrap.ec-checkout-pay-wrap .ec-pay-agree input:checked ~ .checked::after {
  display: block;
}
.checkout_page [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  line-height: 16px;
  display: inline-block;
  color: #777777;
  letter-spacing: 0;
  font-size: 13px;
}
.checkout_page [type=radio]:checked + label{
  font-size: 13px;
}
.product-details-more{
  margin-top: 1em;
}
.single-pro-content .ec-single-price span.new-price{
  color: #068152;
}
@media(max-width:1200px){
  .ec-single-pro-tab-nav .nav-tabs .nav-link {
    font-size: 16px;
}
}

@media only screen and (max-width: 767px){
  .single-pro-img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
        pointer-events: none;
}
.single-pro-desc {
  width: 100%;
  margin-top: 30px;
}
}

@media(max-width:576px){
  .navbar ul.menu-list.responsive{
    width: 250px;
    padding-left: 20px;
    padding-right: 10px;
  }
  .navbar ul.menu-list.responsive a{
    font-size: 15px;
  }
  .ec-pro-pagination{
    flex-direction: column;
  }
  .ec-single-pro-tab-nav .nav-tabs .nav-link {
    padding: 5px 10px;
    font-size: 12px;
}
.checkout_page .ec-checkout-wrap{
  padding: 15px;
}
.ec-single-pro-tab-content {
  font-size: 14px;
  padding: 30px 5px 15px;
}
}

/*breadcrumb*/
.breadcrumb{
  background-color: #008353;
  padding: 15px 0px;
}

.breadcrumb .breadcrumb-title{
  text-align: center;
  color: white;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: 2px;
}

.breadcrumb ul{
  display: flex;
  list-style: none;
  gap: 5px;
  margin: 0px;
  font-size: 15px;
}

.breadcrumb li a{
  color: #fff;
}
.breadcrumb span{
  color: white;
}
.breadcrumb ul li {
  color: #e2d8d8;
}

.breadcrumb .breadcrumb-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  
}
@media(max-width:1200px){
  .breadcrumb .breadcrumb-title{
    font-size: 32px;
  }
  .breadcrumb ul{
    font-size: 14px;
  }
}

@media(max-width:768px){
  .breadcrumb .breadcrumb-title{
    font-size: 24px;
  }
}

@media(max-width:450px){
  .breadcrumb .breadcrumb-title{
    font-size: 18px;
  }
  .breadcrumb ul{
    font-size: 13px;
  }
}

.sortbydiv{
  background: #f7f7f7;
  padding: 14px 15px 14px;
  letter-spacing: 0.2px;
  margin-bottom: 30px;
  border-radius: 5px;
  border: 1px solid #eeeeee;
  height: 50px;
}

.sortbydiv .dropdown-toggle{
  margin: 0;
}

.clients-wrap{
  background-color:#f9f9fa;
}
.clients-wrap, .brands-wrap{
  padding:5em 0em;
}

.breadcrumb ul{
  line-height:1;
}

.breadcrumb ul li{
  margin:0px;
}
.breadcrumb{
  padding:20px 0px;
}


/*-------------------------------------------------
  Contact Page CSS
---------------------------------------------------*/
.ec-contact-leftside {
  padding-right: 15px;
  float: left;
  margin: 0 auto;
}

.ec-contact-rightside {
  padding-left: 15px;
  float: left;
  margin: 0 auto;
  width: 100%;
}

.ec-contact-container {
  padding: 30px;
  background-color: #fff;
  border: 1px solid #ededed;
  text-align: left;
  border-radius: 5px;
}
.ec-contact-container .ec-contact-form .ec-contact-wrap {
  width: 100%;
  padding: 0 15px;
}
.ec-contact-container .ec-contact-form .ec-contact-wrap.ec-contact-half {
  width: 50%;
}
.ec-contact-container .ec-contact-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 0 -15px;
}
.ec-contact-container .ec-contact-form label {
  margin-bottom: 9px;
  color: #444444;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.ec-contact-container .ec-contact-form input {
  background-color: transparent;
  border: 1px solid #ededed;
  color: #444444;
  font-size: 14px;
  margin-bottom: 27px;
  padding: 0 15px;
  width: 100%;
  outline: none;
  height: 50px;
}
.ec-contact-container .ec-contact-form input::-webkit-input-placeholder {
  color: #777;
}
.ec-contact-container .ec-contact-form input::-moz-placeholder {
  color: #777;
}
.ec-contact-container .ec-contact-form input:-ms-input-placeholder {
  color: #777;
}
.ec-contact-container .ec-contact-form input::-ms-input-placeholder {
  color: #777;
}
.ec-contact-container .ec-contact-form input::placeholder {
  color: #777;
}
.ec-contact-container .ec-contact-form input::-ms-input-placeholder {
  color: #777;
}
.ec-contact-container .ec-contact-form textarea {
  background-color: transparent;
  border: 1px solid #ededed;
  color: #444444;
  font-size: 14px;
  margin-bottom: 27px;
  padding: 0 15px;
  width: 100%;
  outline: none;
  padding-top: 14px;
  min-height: 150px;
}
.ec-contact-container .ec-contact-form textarea::-webkit-input-placeholder {
  color: #777;
}
.ec-contact-container .ec-contact-form textarea::-moz-placeholder {
  color: #777;
}
.ec-contact-container .ec-contact-form textarea:-ms-input-placeholder {
  color: #777;
}
.ec-contact-container .ec-contact-form textarea::-ms-input-placeholder {
  color: #777;
}
.ec-contact-container .ec-contact-form textarea::placeholder {
  color: #777;
}
.ec-contact-container .ec-contact-form textarea::-ms-input-placeholder {
  color: #777;
}
.ec-contact-container .ec-contact-form .ec-contact-fp label {
  margin-bottom: 0;
}
.ec-contact-container .ec-contact-form .ec-contact-fp label a {
  color: #444444;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0px;
}
.ec-contact-container .ec-contact-form .ec-rg-select-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 50px;
  border-radius: 0;
  border: 1px solid #ededed !important;
  font-size: 14px;
  padding: 0;
  margin-bottom: 27px;
}
.ec-contact-container .ec-contact-form .ec-rg-select-inner select {
  padding: 0 15px;
}
.ec-contact-container .ec-contact-form .ec-rg-select-inner::after {
  content: "\f107";
  position: absolute;
  font-family: "EcIcons";
  top: 0;
  right: 0;
  padding: 0 10px;
  cursor: pointer;
  pointer-events: none;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  line-height: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #777777;
}
.ec-contact-container .ec-contact-form .ec-contact-wrap.ec-recaptcha {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ec-contact-container .ec-contact-form .ec-contact-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ec-contact-container .ec-contact-form .btn {
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  padding: 0 15px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  outline: none;
  border-radius: 0px;
  width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ec_contact_info {
  max-width: 375px;
  margin-top: 30px;
  background-color: #fff;
}
.ec_contact_info .ec_contact_info_head {
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 19px;
  color: #202b3a;
  letter-spacing: 0.6px;
  position: relative;
}

li.ec-contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  line-height: 26px;
  border: 0;
  padding: 0;
  font-weight: 400;
  font-size: 14px;
  color: #777777;
  margin-bottom: 9px;
}
li.ec-contact-item + .ec-contact-item {
  margin-bottom: 18px;
}
li.ec-contact-item:last-child {
  margin-bottom: 0;
}
li.ec-contact-item a {
  color: #777777;
}
li.ec-contact-item span {
  font-size: 15px;
  color: #444444;
  font-weight: 500;
  min-width: 74px;
}

.ec-contact-item i {
  min-width: 20px;
  font-size: 20px;
  color: #3474d4;
  margin-right: 11px;
     font-family: 'PhpDebugbarFontAwesome';
}

.ec_map_canvas iframe {
  overflow: hidden;
  background: none !important;
  height: 500px;
  width: 100%;
  border-radius: 5px;
}
li.ec-contact-item:last-child a{
  word-break: break-all;
}

.ec-contact-container .ec-cart-update-bottom{
  display: flex;
  width: 100%;
}

@media only screen and (max-width: 1450px){
  .ec-contact-leftside {
    max-width: 500px;
  }
  .ec-contact-rightside {
    max-width: calc(100% - 500px);
}
}

@media only screen and (max-width: 1199px){
  .ec-contact-leftside {
    max-width: 350px;
}
.ec-contact-rightside {
  max-width: calc(100% - 350px);
}
.ec_map_canvas iframe{
  height: 35  0px;
}
}

@media only screen and (max-width: 767px){
  .ec-common-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.ec_map_canvas iframe{
  height: 350px;
}
.ec-contact-leftside {
  max-width: 100%;
  padding: 0;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.ec-contact-rightside {
  max-width: 100%;
  padding: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.ec-contact-container{
  padding: 15px;
}
.ec-contact-container .ec-cart-update-bottom{
  margin: 0px 15px;
}

.navbar.d-flex{
    padding-top: 10px;
}
}

@media(max-width:575px){
  .ec_map_canvas iframe{
    height: 285px;
  }
  li.ec-contact-item span{
    font-size: 14px;
  }
  .ec-contact-item i{
    margin-right: 5px;
  }
}


.section-title .ec-title {
  font-family: "Montserrat";
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 7px;
  color: #555;
  letter-spacing: 0;
  position: relative;
  display: inline;
  padding: 0 64px;
  line-height: 22px;
  letter-spacing: 0.02rem;
  text-transform: capitalize;
}
.ec-cms-block {
  background-color: #fff;
}
.ec-cms-block .ec-cms-block-title {
  margin-bottom: 14px;
  color: #777;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
  font-family: "Montserrat"!important;
}
.ec-cms-block p {
  font-size: 14px;
  color: #777777;
  line-height: 26px;
  font-weight: 300;
  letter-spacing: 0;
  text-align: left;

}
.ec-cms-block .a-img {
  border-radius: 5px;
}

.about-banner img{
  width: 100%;
  height: auto;
}

.about-page .ec-cms-block p{
  text-align: center;
}
/*-------------------------------------------------
  Services Section CSS
---------------------------------------------------*/

.ec_ser_inner {
  padding: 30px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  border: 1px solid #eeeeee;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
}
.ec_ser_inner .ec-service-image {
  margin-bottom: 15px;
}
.ec_ser_inner .ec-service-image svg {
  width: 50px;
  height: 50px;
  fill: #444444;
  stroke: #444444;
  stroke-dashoffset: 1500;
  stroke-dasharray: 1500;
}
.ec_ser_inner .ec-service-image i {
  font-size: 40px;
  line-height: 58px;
}
.ec_ser_inner:hover {
  box-shadow: 0 3px 25px 4px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 3px 25px 4px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 3px 25px 4px rgba(0, 0, 0, 0.06);
  border: 1px solid transparent;
}
.ec_ser_inner:hover .ec-service-image svg {
  stroke-dashoffset: 0;
  -webkit-transition: fill 0.5s, stroke-dashoffset 6s, -webkit-transform 0.3s;
  transition: fill 0.5s, stroke-dashoffset 6s, -webkit-transform 0.3s;
  transition: transform 0.3s, fill 0.5s, stroke-dashoffset 6s;
  transition: transform 0.3s, fill 0.5s, stroke-dashoffset 6s, -webkit-transform 0.3s;
}

.ec-service-desc h2, .ec-service-desc .h2 {
  font-size: 18px;
  font-weight: 700;
  color: #444444;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}
.ec-service-desc p {
  font-size: 14px;
  color: #777777;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.ec_ser_inner {
  background-color: var(--green-color);
}
.ec_ser_inner::before {
  position: absolute;
  content: '';
  background-color: #dcdcdc2e;
  top: 10px;
  right: auto;
  left: auto;
  z-index: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.ec_ser_inner:hover{
  background-color: white;
}
.ec_ser_inner:hover i, .ec_ser_inner:hover .ec-service-desc h2 {
  color: #444;
}

.ec-service-desc h2, .ec-service-desc .h2{
  color: white;
}
.ec-service-desc p{
  color: #dcdcdc;
}
.ec_ser_inner .ec-service-image i{
  color: white;
}
.ec_ser_inner:hover .ec-service-desc p {
  color: #777;
}
.ec_ser_inner:hover i, .ec_ser_inner:hover .ec-service-desc h2{
  color: #444;
}
.ec_ser_content{
  margin-bottom: 1em;
}


/*-------------------------------------------------
  Testimonial Section CSS
---------------------------------------------------*/
section.ec-test-section {
  background: #f9f9f9;
}

.ec-test-section .ec-test-inner {
  max-width: 730px;
  margin: 0 auto;
  cursor: pointer;
}
.ec-test-section .ec-test-item {
  max-width: 1140px;
  margin: 0 auto;
  background: #ffffff;
  padding: 29px 25px;
  position: relative;
  border-radius: 5px;
  border: 1px solid #eeeeee;
}
.ec-test-section .slick-slide {
  padding: 27px 0;
}
.ec-test-section .ec-test-desc {
  font-size: 15px;
  color: #777777;
  line-height: 26px;
  letter-spacing: 0;
  margin-bottom: 15px;
}
.ec-test-section .ec-test-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ec-test-section .ec-test-name {
  font-family: "Montserrat";
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #3474d4;
  letter-spacing: 0.6px;
  line-height: 1.2;
}
.ec-test-section .ec-test-designation {
  font-size: 16px;
  color: #444444;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.ec-test-section .ec-test-rating {
  margin: 0 auto;
}
.ec-test-section .ec-test-rating i {
  font-size: 11px;
  margin: 0 0.5px;
}
.ec-test-section .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ec-test-section .slick-dots li {
  width: 80px;
  background-color: #ffffff;
  border: 3px solid #555;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  display: inline-block;
  height: 80px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0.5;
}
.ec-test-section .slick-dots li:hover {
  margin: 0 15px;
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.ec-test-section .slick-dots li img {
  max-width: 100%;
}
.ec-test-section .slick-dots li.slick-active {
  margin: 0 15px;
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

#ec-testimonial-slider {
  text-align: center;
}

.ec-test-inner .ec-test-img {
  display: none;
}

.svg_img.test_svg, .fi-rr-quote-right {
  position: absolute;
  width: 45px;
  height: auto;
  fill: #555;
}

.svg_img.test_svg.top {
  top: -24px;
  left: 63px;
  right: auto;
}

.fi-rr-quote-right.top {
  top: -38px;
  left: 63px;
  right: auto;
  font-size: 41px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.svg_img.test_svg.bottom {
  bottom: -27px;
  right: 88px;
  left: auto;
}

.fi-rr-quote-right.bottom {
  bottom: -38px;
  right: 88px;
  left: auto;
  font-size: 41px;
}


.about-content ul{
  list-style-type: none;
  padding: 40px;
  background: #f9f9f9;
}
.about-content ul li{
  margin-bottom: 2em;
}
.about-content ul li h2{
  font-family: 'Montserrat';
  font-weight: 600;
  color: #555;
  margin-top: 0;
  margin-bottom: 10px;
}

.about-content ul li h6{
  font-size: 15px;
  font-family: var(--body-font)!important;
  color: #555;
  line-height: 1.5;
}

@media(max-width:768px){
  .about-content ul li h6{
    font-size: 13px;
  }
  .about-content ul li h2{
    font-size: 18px;
  }
  .about-content ul{
    padding: 20px;
  }
  .ec-test-section .slick-dots li{
    width: 60px;
    height: 60px;
  }
}


.chairman-name {
  text-align: left;
  margin-top: 1em;
  color: #165dad;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 0em;
}
.chairman-designation {
  text-align: left;
  font-size: 14px;
  color: #068152;
  font-weight: 600;
}
.why-us-page ul{
  text-align: left;
  list-style-type: circle;
}
.why-us-page ul li{
  padding-left: 10px;
  list-style: circle;
}



.values-page ul{
  list-style-type: none;
  padding: 20px;
  background: #f9f9f9;
}
.values-page ul li{
  margin-bottom: 2em;
}
.values-page ul li h2{
  font-family: 'Montserrat'!important;
  font-weight: 600;
  color: #555;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
}

.values-page ul li h6{
  font-size: 15px;
  font-family: var(--body-font)!important;
  color: #555;
  line-height: 1.5;
}

.values-page h2.section-title:after{
  right: auto;
}

.quality-page .ec-common-wrapper{
  border: 1px solid #ececec;
  border-radius: 3px;
  padding: 20px 0px;
}

.quality-page .ec-common-wrapper .row{
  margin: 0;
}

.quality-page .ec-common-wrapper img{
  height: 200px;
}


.iso-wrap .certificate-block{
  margin-bottom: 4em;
}

.iso-wrap .certificate-block img{
  max-height: 500px;
  height: auto;
  max-width: 500px;
}



@media(max-width:576px){
  .quality-page .ec-common-wrapper img{
    height: 100px;
  }
  
  .chairman-name{
      text-align: right;
  }
  
  .chairman-designation{
      text-align: right;
  }
  
  .iso-wrap .certificate-block img{
      max-width: 350px;
  }
  
}








.ec-test-section .ec-test-outer{
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);

}


.top-menu {
    width: 100%;
    max-width: 100%;
}


/*Sagtani Steel Industries*/
.steel-first .accordion {
  background-color: white;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  transition: 0.4s;
  border-bottom: 1px solid #ececec;
  border-top: 1px solid #ececec;
  margin: 0px;
  
}

.steel-first .active,.steel-first .accordion:hover {
  color: #6bcaff;
  border-bottom-color: #6bcaff;
  border-bottom-width: 2px;
  box-shadow: none;
}

.steel-first .accordion:hover:after{
  border-color: #6bcaff;
  color: #4d93ba;
}

.steel-first .panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.steel-first .panel ul{
  padding: 15px 0px;
  
  font-size: 15px;
  font-weight: 500;

}
.steel-first .accordion:after {
  content: "+";
  color: rgb(119, 119, 119);
  font-weight: bold;
  float: right;
  margin-left: 5px;
  border: 2px solid #ececec;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.steel-first .active:after {
  content: "\2212";
}

.steel-first .steel-first-chairman img{
  max-height: 290px;
  display: block;
  margin: 0 auto;
  width: auto;
  margin-bottom: 1em;
}

.steel-first button.accordion:first-child{
  border-top: none!important;
}

.steel-first .steel-first-chairman{
  padding: 30px 20px;
  background: #f9f9f9;
}

h2.section-title.text-left:after{
  right: auto;
}


.steel-first .steel-first-chairman .steel-chairman-text{
  font-size: 15px;
    text-align: center;
    line-height: 1.7;
}


.steel-first-chairman h3{
  text-align: left;
  margin-top: 1em;
  color: #165dad;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 0em;
  text-align: center;
}

.steel-first-chairman h5{
  text-align: left;
  font-size: 14px;
  color: #068152;
  font-weight: 600;
  text-align: center;
}

.steel-second .after-sales-images{
  margin-bottom: 1em;
}

.steel-why{
  background:linear-gradient(149deg, #075b93, #003355);
  color: white;
  text-align: center;
  padding: 20px 0px;
}

.steel-why .steel-why-content{
  margin-bottom: 3em;
}
.steel-why .steel-details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;

}
.steel-why .steel-details .steel-block{
  min-width: 30%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #ececec;
  border-radius: 5px;
}

.steel-why .steel-details .steel-block i{
  font-size: 24px;
  margin-bottom: 1em;
}

.steel-infrastructure .row{
  gap:10px;
}

.infrastructure-block{
  border: 1px solid #ececec;
  padding:30px 20px;
  margin-bottom: 1em;
  height: 100%;
  border-radius: 5px;
}

.infrastructure-block img{
  height: 50px;
  margin-bottom: 1em;
}

.infrastructure-block h4{
  font-size: 16px;
  color: #242424;
  font-family: var(--body-font)!important;
}
.after-sales-images{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.steel-why .steel-details .steel-block p,.steel-why .steel-details .steel-block span{
  margin: 0;
  font-size: 16px;
}

@media(max-width:991px){
  .steel-infrastructure .row{
    gap:0px;
  }
  .infrastructure-block{
  height: fit-content;
}

.steel-first .panel{
  max-height: fit-content;
}

.steel-first .accordion{
  border-top: 0px;
  color: #1b5676;
    border-bottom-color: #6bcaff;
}
.steel-first .accordion:after{
  display: none;
}

.steel-first .section-title{
  text-align: center;
}
.steel-first .section-title:after{
  right: 0!important;
}
.steel-why .steel-details .steel-block{
  width: 40%;
}
.steel-why .steel-why-content{
  font-size: 16px;
}

}

@media(max-width:768px){
  .steel-why .steel-details .steel-block{
    width: 48%;
  }

  .steel-why .steel-details .steel-block span{
    word-break: break-all;
  }
  h2.section-title{
    font-size: 24px;
    margin-bottom: 30px;
  }
}

@media(max-width:450px){
  .infrastructure-block{
    padding: 20px 10px;
  }
  .steel-why .steel-details .steel-block p,.steel-why .steel-details .steel-block span{

    font-size: 13px;
  }
  .steel-why .steel-details .steel-block{
    padding: 10px;
  }
  .steel-why .steel-why-content{
    font-size: 13px;
  }
  .steel-first .steel-first-chairman img{
    max-height: 150px;
  }
  
}


.menu-item{cursor:pointer !important;}
.menu-item ul li a{cursor:pointer;}
.menu-item a{text-transform:capitalize !important;}

.iso-logo {
    display : flex;
    align-items: center;
    gap: 20px;
}

.logo {
    max-width: 250px;
}

.iso {
    width: 70px;
    height: auto;
}

.footer-social li {
    display: inline;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.fa-brands, .fab {
    font-size: 20px;
}

.footer-bottom {
    background: #4e4e4e;
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
}


.stellarnav>ul>li>a{
    padding:10px 20px;
}


.stellarnav li li.has-sub>a:after{
    border-left-color:#777;
    position:absolute;
    right:1px;
    top:20px;
}

.stellarnav li li.has-sub>a{
    padding-right:30px;
}

.stellarnav ul ul{
    width:200px;
}

.stellarnav ul ul ul{
    left:201px;
}


.request-code{
  border-color: var(--blue-color)!important;
}

#inquiryModal h1{
  text-align: center;
  margin-bottom:0em;
}

#inquiryModal small{
  text-align: center;
  width: 100%;
  display: block;
  color: #666;
  margin-bottom: 1em;
}

#inquiryModal form button{
  background-color: #068152;
  border-color: #068152;
  display: block;
  width: 100%;
  font-weight: 500;
  transition: 0.3s all ease-in-out;
}

#inquiryModal form button:hover{
  background-color: #035e3b;
  border-color: #035e3b;
}
.main-swiper .swiper-slide a{
    width:100%;
    height:100%;
}
.main-swiper .swiper-slide img{
    width:100%;
    height:100%;
}
.stellarnav > ul > li > ul,
.stellarnav > ul > li > ul > li > ul,
.stellarnav > ul > li> ul > li > ul > li > ul{
    opacity:0;
    max-height:0;
    transition: max-height 0.3s ease-in-out;
    
}

.submenu li {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.submenu.open li {
  opacity: 1;
}
.submenu li a{
    transition:color 0.3s color ease;
    padding-right:30px!important;
}

.stellarnav li li.has-sub>a::after{
    transition:color 0.3s color ease;
}
.submenu li a:hover{
    color:var(--primary-color)!important;
}

.stellarnav li li.has-sub>a:hover::after{
    border-left-color:var(--primary-color)!important;
}

.stellarnav > ul > li:hover > ul,
.stellarnav > ul > li > ul > li:hover > ul,
.stellarnav > ul > li> ul > li > ul > li:hover > ul{
    display: block;
  opacity: 1;
   max-height: 1000px; /* Set the desired maximum height */
  transition: max-height 0.3s ease-in-out;
}
.submenu.open {
  max-height: 100px; /* Set the desired maximum height */
}


.stellarnav .submenu li a{
    font-size:14px;
}

.stellarnav.desktop li.has-sub a{
    color:#000;
}
.navbar ul.menu-list a.closebtn{
    display:none;
}
@media(max-width:1280px){
    .stellarnav.light ul ul{
        position:relative;
        background:transparent;
        left:0;
        box-shadow:none;
    }
    
    
    .stellarnav.light ul ul li a{
        color:white;
        text-align:left;
    }
    .navbar ul.menu-list{
        background:rgba(0,0,0,0.85);
        width:300px;
        padding-top:70px;
    }
    .stellarnav.light a, .stellarnav.light li a{
        color:white;
        text-align:left;
    }
    .stellarnav>ul>li>a{
        padding:10px 30px;
    }
    .stellarnav ul ul{
        width:100%;
        padding:0px 20px;
    }
    .stellarnav.desktop li.has-sub a{
        color:white;
        text-align:left;
    }
    .stellarnav>ul>li{
        border-bottom:1px solid #ececec40;
    }
    .stellarnav>ul>li ul>li>ul{
        position:relative;
    }
    .navbar ul.menu-list a.closebtn{
    display:block;
        position: absolute;
    right: 25px;
    top: 15px;
    font-size: 36px;
    }
}

@media(max-width:991px){
    .logo{
        max-width:150px;
    }
    .iso-logo{
        gap:10px
    }
    .iso{
        width:60px;
        height:auto;
    }
}



.menu-item:hover .sub-menu{
    display:block;
        transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 1;
    visibility: visible;
    transform: rotateX( 0deg);
    pointer-events: auto;
    background: var(--homebg);
}

#ProductVideoModal .modal-dialog{
    max-width:800px;
}
#ProductVideoModal .modal-content .modal-body{
    padding:0px!important;
}

#ProductVideoModal .modal-content .modal-body video{
    width:100%;
    height:auto;
}

#ProductVideoModal.modal .modal-content{
    background:transparent;
}

@media(max-width:1200px){
    #ProductVideoModal .modal-dialog{
    max-width:600px;
}
}

@media(max-width:768px){
    #ProductVideoModal .modal-dialog{
    max-width:450px;
}
}

.product-listing-box .category span{
    display:block;
}



.product-listing-box .price-tag{
        font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
        color: var(--primary-color);
}

.product-listing-box.content-box{
        border-radius: 5px;
    background-color: white;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 1em;
    padding:10px;
}

.product-item{
    box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
    border: 1px solid #33333330;
    margin-bottom: 15px;
    padding: 20px;
}
.main-swiper .swiper-slide{
    height:auto;
}
.brand-swiper .swiper-slide a,
.client-swiper .swiper-slide a{
    display:block;
}
.sortbydiv{
    height:fit-content;
}
.sortbydiv .filter.form-group{
    margin:0;
}

.sortbydiv .filter.form-group button{
    margin:0;
    border:1px solid #ececec;
    background:white;
}

 .noUi-handle:before{
    left:0px;
}
.noUi-handle:after{
    right:12px;
}

@media(max-width:1200px){
    .sortbydiv{
        flex-wrap:wrap;
        justify-content:space-evenly;
    }
    .sortbydiv .breadcrumb__text{
        width:100%;
        text-align:center;
    }
    .filter-sidebar-thumb{
        padding: 5px;
    margin: 0;
    margin-left: auto;
    margin-right: 10px;
    display: block;
    }
}



@media(max-width:768px){
    .icon-box-wrapper{
        flex-wrap:wrap;
    }
}
@media(max-width:576px){
    .sortbydiv .breadcrumb__text{
        text-align:left;
    }
    .iso-logo{
        justify-content:center;
    }
    .sortbydiv{

        justify-content:space-between;
    }
    .sortbydiv .filter.form-group button{
        font-size:13px;
    }
    .sortbydiv .form-group{
        flex-direction:column;
        align-items:flex-start!important;
    }
    .sortbydiv{
        background:#fff;
        padding:0;
        border:0;
    }
    .sortbydiv .filter.form-group{
        margin-top:auto;
    }
    .sortbydiv .form-group{
        margin-left:0px!important;
    }
}


.fa-brands{
    color: #fff;
}

.credit{
    color: #fff;
}

.btn{
    margin: 5px;
}

.red-home-link{
    font-size: 15px;
    color: #555;;
}

.quote{
    color: #003355;
    font-weight: bolder;
    margin: 10px 0;
    text-align: center;
}

#ec_quickview_modal form .btn{
    background-color: #068152;
    border-color: #068152;
    display: block;
    width: 100%;
    font-weight: 500;
    transition: 0.3s all ease-in-out;
}

.product-listing-box a img{
    height:200px;
}
@media(max-width:991px){
    .content-box button.request-code{
    font-size:11px;
}

}

@media(max-width:576px){
    
.product-listing-box a img{
    height:150px;
}
.padding-large .row{
    padding:0px;
}
}

.content-box button.request-code{
    margin:0px!Important;
    margin-bottom:10px!Important
}

.stellarnav .submenu .submenu .submenu{
    left:150px;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus{
    border-color:#003355;
}
.aiz-plus-minus input{
    margin-bottom:0px;
}
.aiz-plus-minus .btn.btn-light:hover{
    background-color:white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    color:var(--primary-color);
}


.aiz-plus-minus .btn.btn-light{
    border-color:#bbbbbb;
}

.btn-light.disabled, .btn-light:disabled{
        border-color: #d3d3d3;
        color:#d3d3d3;
}




.login-reg-page .form-group label{
        margin-bottom: 9px;
    color: #444444;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
}
.login-reg-page .form-group .form-control{
    height:50px;
}

.login-reg-page{
    font-family:"Raleway", Verdana, sans-serif;
}
.login-reg-page .aiz-checkbox .aiz-square-check{
    top:5px;
}


.login-reg-page form a{
        color: #0677dd!important;
    font-size: 15px!important;
}
.login-reg-page form a:hover{
    text-decoration:underline;
}

.login-reg-page .aiz-square-check:after{
    border:solid var(--blue-color);
}
.login-reg-page form button{
    background-color:var(--blue-color);
    border-color:var(--blue-color);
}

.login-reg-page .login-register-links{
    display:flex;
    font-family:"Raleway", Verdana, sans-serif;
    justify-content:center;
    align-items:flex-end;
    gap:2px;
}

.login-reg-page .login-register-links p{
    font-family:"Raleway", Verdana, sans-serif;
    font-size:14px;
        line-height: 1;
}

.login-reg-page .login-register-links  a{
        font-size: 17px;
    color: #008353;
    line-height: 1;
    text-decoration: underline;
    font-weight: 500;
}

.login-reg-page .login-register-links a:hover{
    color:#777;
}
.iso-logo a:first-child img{
    max-width:305px;
    width:100%;
}
.footer-logo a img{
   max-width:270px;
}
#addToCart .close span{
    line-height:1;
    font-size:30px;
}
#addToCart .text-center.text-success{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#addToCart .text-center.text-success h3{
    margin:0px;
}
#addToCart .media .media-body h6{
    font-size:18px;
}
#addToCart.modal .close{
    background:rgb(158 158 158 / 53%) !important;
}

.addToCartModal-price{
    font-size:18px;
}


#addToCart.modal .back-shopping-btn{
    background: #888;
    color: white;
    border-color: #888;
    border-radius: 3px;
}
#addToCart.modal .back-shopping-btn:hover{
    background: #666;
}

#addToCart.modal .proceed-checkout-btn{
    margin: 5px;
    font-size: 14px;
    margin-bottom: 0px;
    border-radius: 3px;
    background: var(--green-color);
}



#addToCart.modal .proceed-checkout-btn:hover,
#addToCart.modal .proceed-checkout-btn:focus{
    background:#0a603f;
    border-color:#0a603f;
}

.breadcrumb-title span{
    font-weight: 200;
    font-size: 24px;
    color: #fffc;
}

.add-cart-delete{
    
    background: transparent!important;
    color: #555!important;
    padding: 0!important;
    height: auto;
    width: auto;
    margin: 0 auto!important;
    border:none!important;
    display:block!important;
    font-size: 22px!important;    
}
.add-cart-delete:hover,
.add-cart-delete:focus{
    border:none!important;
    color:var(--primary)!important;
    margin:0px!important;
}
.cart-page .cart-product{
    display:flex;
    flex-direction:column;
}


.cart-page{
    font-family:"Raleway", Verdana, sans-serif;
}
.cart-page .cart-table .row:first-child{
    align-items:center;
}
.cart-page .cart-table .cart-product img{
    height:90px;
    width:90px;
}
.cart-page .cart-table-head{
    color:#444;
    color:16px;
}
.cart-page .cart-table{
    color:#555;
}
.cart-page .cart-table .cart-product{
    color:#444;
}
.cart-page .sumcard .card-header{
    border:none!important;
}
.cart-page .sumcard h2{
    font-family:"Raleway", Verdana, sans-serif;
    font-weight:600;
    color:#555;
    font-size:24px;
    width:100%;
    text-align:center;
    margin-top:0.5em;
    margin-bottom:1em;
}

.cart-page .sumcard th:last-child,
.cart-page .sumcard td:last-child{
    padding-left:0px;
}
.cart-page .sumcard .table thead th{
       color: #444;
    font-weight: 500;
    font-size: 16px;
}
.cart-page .sumcard td:last-child{
    color:#666;
}


@media(max-width:576px){
    #addToCart .text-center.text-success{
        justify-content:left;
    }
    #addToCart .text-center.text-success i{
        font-size:30px;
    }
    #addToCart .text-center.text-success h3{
        font-size:18px;
        font-weight:600;
    }
    #addToCart .modal-content .modal-body{
        padding:1em!important;
    }
    #addToCart.modal .close{
        margin:0px;
    }
    #addToCart .media img.img-fit{
        height:60px;
        width:60px;
    }
    #addToCart .media .media-body{
        padding-top:0px!important;
    }
    #addToCart .media .media-body h6{
        font-size:16px;
    }
    
    #addToCart .modal-content .modal-body .row.mt-3{
        margin-top:0em!important;
    }
    
    .swiper .swiper-pagination {
        bottom: 10px;
    }
}


.return-shop-btn{
    background: #888!important;
}
.return-shop-btn:hover{
    background: #666;
    color:white!important;
}
.ec-checkout-wrap .card-header{
    padding:0px!important;
    font-family:"Montserrat";
    padding-bottom:1em!Important;
    margin-bottom:1em;
}
.ec-checkout-wrap .card-body{
    padding:0px;
    border:none;
}
.ec-checkout-wrap{
    font-family:"Raleway", Verdana, sans-serif;
}
.ec-checkout-wrap .card-body .form-row .form-group{
    width:100%;
}

.ec-checkout-wrap .card-body .form-row label{
    text-align:left;
}

.ec-checkout-wrap .aiz-megabox > input:checked ~ .aiz-megabox-elem,.ec-checkout-wrap .aiz-megabox > input:checked ~ .aiz-megabox-elem{
    border-color:var(--blue-color);
}
.ec-checkout-wrap .btn.btn-primary{
    border-color:var(--blue-color);
}
.term-policy-sec a{
    color:#0677dd!important;
}
.term-policy-sec a:hover{
    color:#1665ae!important;
    text-decoration:underline;
}


.checkout_page #cart_summary .card-header{
    background:var(--blue-color);
}

.checkout_page #cart_summary .card{
    border:1px solid #ececec!important;
    font-family:"Raleway", Verdana, sans-serif;
}




.checkout_page #cart_summary .table thead th{
       color: #444;
    font-weight: 500;
    font-size: 16px;
}
.checkout_page #cart_summary button{
    margin:0px;
    border-color:var(--blue-color);
}


.menu-item .fa-solid{
    padding-right: 10px;
}

.ornaments-content{
    row-gap: 20px
}

.return-shop-btn{
    width: 100%;
}

.p-name:hover{
  color: #018253;  
}

.side-categories:hover{
    background-color: #008353e3;
    border-color: #ececec!important;
    box-shadow: rgb(0 0 0 / 8%) 0px 3px 8px;
    border-radius: 5px;
    color: #fff;
    padding: 2px 8px;
    transition: .2s linear;
}

.sidenav-avatar-card{
    background: linear-gradient(167deg, #003355, #0a456d);
}



#ec_quickview_modal label{
    font-family: 'Public Sans', sans-serif;
}


#ec_quickview_modal form .btn:hover{
    background:#04643f;
}

#ec_quickview_modal .quote{
    font-size:24px;
}


.aiz-user-panel .aiz-titlebar h1.h3{
    color:#242424;
    margin-top:0px;
    font-family: 'Public Sans', sans-serif!important;
    font-size:24px;
}


.sidenav-avatar-card h4{
    font-family: 'Public Sans', sans-serif!important;
}

.aiz-user-sidenav .aiz-side-nav-link.active, .aiz-user-sidenav .aiz-side-nav-link:hover {
    background-color: #f9f9f9;
    border-color: #ececec!important;
    box-shadow: rgb(0 0 0 / 8%) 0px 3px 8px;
    border-radius: 5px;
    color:#2786c5;
}

.aiz-user-sidenav .aiz-side-nav-list .aiz-side-nav-link{
    border:1px solid white;
    font-size:14px;
}




.aiz-user-sidenav .active .aiz-side-nav-icon,
.aiz-side-nav-list .aiz-side-nav-link:hover .aiz-side-nav-icon{
    color:#2786c5;
}


.aiz-user-panel{
    font-family: 'Public Sans', sans-serif!important;
}

.aiz-user-panel .form-group label{
    font-weight:500;
}

.aiz-user-panel .card .card-header h5.h6{
    color:#242424;
     font-family: 'Public Sans', sans-serif!important;
     font-size:18px;
}

.aiz-user-panel .card .card-body{
    padding:10px 15px;
}

.aiz-user-panel .aiz-table td{
    color:#777;
    font-size:14px;
}

.aiz-user-panel .aiz-table td:first-child a{
    color:#2786c5;
}


.aiz-user-panel .aiz-table td a.btn{
    margin-top:0px;
}
.aiz-user-panel .aiz-table td a.btn-soft-info{
    background: var(--soft-info);
    color: var(--info);
}


.aiz-user-panel .aiz-table td a.btn-soft-danger {
    background: var(--soft-danger);
    color: var(--danger);
}
.aiz-user-panel .aiz-table td a.btn-soft-info:hover{
    background: var(--info);
    color: white;
}


.aiz-user-panel .aiz-table td a.btn-soft-danger:hover {
    background: var(--danger);
    color: white;
}
.file-preview-item h6{
    font-family: 'Public Sans', sans-serif!important;
    font-size:11px;
    color:#777;
}
.new-email-verification{
    margin: 0;
    background: #108a10;
    color: white;
    border-color: #108a10;
    text-transform: uppercase;
    font-size: 13px;
}
.new-email-verification:hover{
        background: #0b710b;
        border-color: #0b710b;
}

#delete-modal .modal-header .modal-title{
    color:#242424;
    font-family: 'Public Sans', sans-serif!important;
    font-size:16px;
}
#delete-modal .modal-body button{
    background:#888;
    color:white;
    text-transform:capitalize;
}

#delete-modal .modal-body a{
    text-transform:capitalize;
}
#delete-modal .modal-body button:hover{
    background:#444;
}

#order_details .modal-header .modal-title{
    color:#242424;
    font-family: 'Public Sans', sans-serif!important;
    font-size:16px;
}

#order_details td:last-child{
    color:666;
}

@media(max-width:1199px){
    .aiz-user-sidenav-wrap{
    display:block;
    height:fit-content;
    max-width:100%;
    }
    .aiz-user-sidenav{
        position:relative;
        top:unset;
        left:unset;
        right:unset;
        bottom:unset;
    }
    .aiz-user-panel{
        width:100%;
        padding-left:20px;
    }
    
}

@media(max-width:991px){
    .user-dashboard-grid{
        width:100%;
        flex-direction:column;
    }
    .aiz-user-sidenav-wrap{
        width:100%;
        margin-bottom:10px;
    }
    .aiz-user-panel{
        padding:0px;
    }
    .aiz-user-sidenav{
        padding-bottom:1px!Important;
        
    }
    .aiz-user-sidenav .sidemnenu {
        margin-bottom:0px!Important;
    }
}




@media(max-width:576px){
    .aiz-side-nav-list .aiz-side-nav-text{
        display:none;
    }
    .aiz-side-nav-list .badge{
        display:none;
    }
    .aiz-side-nav-list{
        display:flex;
        justify-content:space-between;
    }
    .aiz-user-sidenav .aiz-side-nav-list .aiz-side-nav-link{

    border-color: #ececec!important;

    border-radius: 5px;
    }
    .aiz-user-sidenav .aiz-side-nav-list .aiz-side-nav-icon{
        margin:0px;
        justify-content:center;
    }
    .aiz-user-sidenav-wrap{
        flex:auto;
    }
    .aiz-user-sidenav .aiz-side-nav-link.active, .aiz-user-sidenav .aiz-side-nav-link:hover{
        box-shadow:rgb(50 50 93 / 7%) 0px 30px 60px -12px inset, rgb(0 0 0 / 16%) 0px 18px 36px -18px inset;
    }
}
.content-box button.request-code{
        font-size: 11px;
    padding: 6px 12px;
}



.content-box a.view-product-details{
        font-size: 13px;
    padding: 6px 12px;
    margin: 0px!Important;
    margin-bottom: 10px!Important;
}


.single-pro-content hr{
       margin-top: 2rem;
    margin-bottom: 2.5rem;
}
.brands-wrap{
    background-color:white;
}


.ec-cms-block .ec-cms-block-title{
    color:#212121;
}
.ec-cms-block p{
    font-family:var(--body-font)!important;
    color:#555;
    font-size:15px;
}

.about-content ul li h2{
    font-family:"Montserrat"!important;
    color:#212121;
}
.about-content ul li h6{
    font-family:var(--body-font)!important;
}
.why-us-page ul li{
    font-family:var(--body-font)!important;
    color:#555;
    font-size:15px;
}

.values-page ul li h2{
    color:#212121;
}

.secondary-nav .top-menu li.menu-item a{
        text-transform: capitalize!Important;
        font-size: 12px;
}

.justify-content-left{
    justify-content:left;
}
.justify-content-right{
    justify-content:right;
}

.stellarnav ul ul ul{
    left:200px;
}
.stellarnav .submenu .submenu .submenu li a{
    color:#000!important;
}
.stellarnav .submenu .submenu .submenu li a:hover{
    color:var(--primary-color)!important;
}
@media(max-width:1350px){
    .stellarnav>ul>li>a{
        padding-left:13px;
            padding-right: 13px;
    }
}

.chairman-image{
    width:100%;
}
.primary-nav{
    background:white;
}
.primary-nav.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding:13px 0px;
  transition: padding 0.5s ease-in-out;
}
.special-offer .row .padding-small{
    color:white;
}


.special-offer .row .padding-small h1,
.special-offer .row .padding-small h2,
.special-offer .row .padding-small h3,
.special-offer .row .padding-small h4,
.special-offer .row .padding-small h5,
.special-offer .row .padding-small h6{
    color:white;
}

.table{
    width: 100%!important;
}

tr:nth-child(even) {
  background-color: #D6EEEE;
}

.table-bordered td{
    border-color: #222;
    width: 50%;
}

.product-details-specifications table{
    max-width:100%;
}


.ec-single-pro-tab-nav{
    margin-bottom:20px;
}




.ec-single-pro-tab-nav .nav-tabs{
        width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}


.ec-single-pro-tab-nav .nav-tabs li:last-child{
    margin:0;
}

.single-pro-desc{
    margin-bottom:2em;
}


.ec-single-pro-tab-nav .nav-tabs .nav-link.active{
        background: transparent;
    border: 0;
    color: #003355de;
    border-bottom: 3px solid #008353;
    text-transform: uppercase;
    border-radius: 0px;
    padding: 0;
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 10px;
}

.single-pro-content .ec-single-desc.detailed-desc span{
    width:100%!important;
}

@media(max-width:576px){
    .ec-single-pro-tab-content{
        margin:0px 10px;
    }
}

.product-details-more .product-view-btn{
    background:linear-gradient(136deg, #3474d4, #83b5ff);
}
.product-details-more .product-view-btn:hover{
    background:linear-gradient(313deg, #3474d4, #83b5ff);
}
.product-details-more .ecicon:hover{
    background:initial;
}

.product-details-more .product-manual-btn {
  display: block;
  width: fit-content;
  border-radius: 5px;
  padding: 6px 15px;
  font-size: 32px;
  color: white;
  text-align: center;
  background: linear-gradient(136deg, #068152, #0a9560e8);
  transition: 0.7s all ease-in-out;
}

.product-details-more .product-manual-btn:hover{
    background: linear-gradient(313deg, #068152, #0a9560e8);
}


.product-details-more .product-manual-btn p{
    color:white;
}

.footer-social{
    margin-bottom:16px;
}
.footer-social li{
    margin:0px;
}
.footer-social li a img{
    height:25px;
    width:auto;
}


#ProductVideoModal.modal .close{
    background:rgb(255 255 255) !important;
}


.modal-backdrop{
    background:rgb(0 0 0 / 70%)!important;
}

.product-details-more .product-brochure-btn,
.product-details-more .product-manual-btn,
.product-details-more .product-view-btn{
    min-width:130px;
}

@media(max-width:450px){
    .product-details-more .product-brochure-btn,
.product-details-more .product-manual-btn,
.product-details-more .product-view-btn{
    min-width:100px;
        line-height: 1.5;
}
}
.single-pro-content .ec-single-title{
    font-family: 'Raleway', sans-serif!important;
}

.stellarnav ul ul{
    width:250px;
}



.stellarnav ul ul ul{
    left:250px;
}


.stellarnav .about-menu-item ul{
    width:200px;
}

.border-lg{
    border-color: transparent!important;
}

.icon-box .icon-content h2{
    font-weight: bold;
}

#ProductVideoModal .modal-content .modal-body{
    text-align:center;
}
.product-details-more .product-view-btn.youtube-btn{
        background: linear-gradient(136deg, #cf0808, #ff000094);
}
.product-details-more .product-view-btn.youtube-btn:hover{
        background: linear-gradient(313deg, #cf0808, #ff000094);
}
#ProductYoutubeModal .modal-dialog {
    max-width: 800px;
}
#ProductYoutubeModal.modal .modal-content {
    background: transparent;
}

#ProductYoutubeModal.modal .close {
    background: rgb(255 255 255) !important;
}

#ProductYoutubeModal .modal-content .modal-body {
    text-align: center;
}

#ProductYoutubeModal .modal-content .modal-body {
    padding: 0px!important;
}


#ProductYoutubeModal .modal-content .modal-header{
    border:none;
}

.testimonial-swiper .reviews-content img{
    height:120px;
    width:120px;
}


h4{
    font-size:24px;
}
#ProductVideoModal .modal-dialog{
    max-width:1100px;
}

@media(max-width:1500px){
    #ProductVideoModal .modal-dialog{
    max-width:900px;
}
}
@media(max-width:1200px){
    #ProductVideoModal .modal-dialog{
    max-width:800px;
}
}

@media(max-width:991px){
    #ProductVideoModal .modal-dialog{
    max-width:700px;
}
}
@media(max-width:768px){
    #ProductVideoModal .modal-dialog{
    max-width:500px;
}
}


@media(max-width:576px){
    #ProductVideoModal .modal-dialog{
    max-width:100%;
}
}
#ProductYoutubeModal .modal-content .modal-body{
        width: 100%;
    padding-bottom: 56.25%!important;
    height: 0;
    position: relative;
}


#ProductYoutubeModal .modal-content .modal-body iframe{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
}



.modal-header .close:before{
        font-family: 'EcIcons';
}











