@import url("https://fonts.googleapis.com/css?family=Hind:300,400,500,600,700|Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Rubik:300,300i,400,400i,500,500i,700,700i,900,900i");

/*font-family: 'Rubik', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Hind', sans-serif;*/

@import url("font-awesome.css");
@import url("flaticon.css");
@import url("animate.css");
@import url("hover.css");
@import url("jquery-ui.css");
@import url("jquery.fancybox.min.css");
@import url("jquery.bootstrap-touchspin.css");

:root {
  --color-1: #edc840;
  --color-1-a: #edc840;
  --color-2: #cc0000;
  --color-2-a: #cc0000;
  --family-1: "Hind Siliguri", sans-serif;
  --color-lite-1: #333;
}
/* PAGE LOADER */
.pageloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #fff;
  display: flex;
}
.pageloader img {
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  margin: auto;
  width: 250px;
}
@keyframes fadeInAnimation {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0.5;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 0.5;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

/* RESET */
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}

/* GLOBAL SETTINGS */
body {
  font-size: 15px;
  color: #666;
  font-weight: 400;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-family: "Rubik", sans-serif;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-weight: normal;
  margin: 0px;
  background: none;
  line-height: 1.6em;
  font-family: "Poppins", sans-serif;
}

input,
button,
select,
textarea {
  font-family: "Rubik", sans-serif;
}

textarea {
  overflow: hidden;
}

.theme_color {
  color: var(--color-2);
}

p,
.text {
  position: relative;
  line-height: 22px;
  font-family: "Rubik", sans-serif;
}
.p0 {
  padding: 0;
}
.page-wrapper section {
  position: relative;
  z-index: 5;
}
.realted-products {
  margin-bottom : 20px;
}
.strike-through {
  text-decoration: line-through;
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
}

.grey-bg {
  background-color: #f8f8f8;
}
.sec-spl-title h3 {
  font-size: 22px;
  color: var(--color-2);
}
.sec-spl-title h4 {
  font-style: italic;
}
ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.theme-btn {
  display: inline-block;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.centered {
  text-align: center;
}

.breadcrumb-1 {
  padding : 10px;
  background : var(--color-2);
}
.breadcrumb-1 p {
  margin : 0 0 3px;
  color : #fff;
}
.breadcrumb-1 a {
  position : relative;
  display : inline-block;
  color : yellow;
  padding-right : 20px;
  margin-right : 8px;
}
.breadcrumb-1 span {
  position : relative;
  padding-right : 20px;
  margin-right : 10px;
  line-height : 22px;
}
.breadcrumb-1 span::before,
.breadcrumb-1 a::before {
  content : '\f101';
  position : absolute;
  right : 0;
  top : 0;
  font-family : 'FontAwesome';
  color : #fff;
}

.materialize-checkbox {
  position: relative;
}
.materialize-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  box-sizing: border-box;
  padding: 0;
}
.materialize-checkbox label {
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  display: inline-block;
  height: 20px;
  line-height: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight : normal;
}
.materialize-checkbox label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  z-index: 0;
  border: 2px solid #5a5a5a;
  border-radius: 1px;
  margin-top: 2px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.materialize-checkbox input[type="checkbox"]:checked + label:before {
  top: -4px;
  left: -5px;
  width: 10px;
  height: 18px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #26a69a;
  border-bottom: 2px solid #26a69a;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.materialize-checkbox label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  z-index: 0;
  border: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  border-radius: 1px;
  margin-top: 2px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
[type="checkbox"]:not(.filled-in) + label:after {
  border: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/*List Style One*/

.list-style-one {
  position: relative;
}

.list-style-one li {
  position: relative;
  padding-left: 48px;
  margin-bottom: 22px;
  color: #848484;
  font-size: 16px;
  font-weight: 400;
}

.list-style-one li strong {
  position: relative;
  display: block;
  color: #020e28;
  font-size: 18px;
  font-weight: 500;
}

.list-style-one li:before {
  position: absolute;
  content: "\f12a";
  left: 0px;
  top: 14px;
  color: var(--color-2);
  font-size: 22px;
  font-family: "Flaticon";
}

/*List Style Two*/

.list-style-two {
  position: relative;
}

.list-style-two li {
  position: relative;
  padding-left: 50px;
  color: #c4c4c4;
  font-size: 14px;
  margin-bottom: 25px;
}

.list-style-two li .icon {
  position: absolute;
  left: 0px;
  top: 7px;
  line-height: 1em;
  font-size: 40px;
  font-weight: 400;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.4);
}

.list-style-two li a {
  position: relative;
  font-weight: 500;
  display: block;
  color: #ffffff;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.list-style-two li:hover a {
  color: var(--color-2);
  text-decoration: underline;
}

.list-style-two li:hover .icon {
  color: var(--color-2);
}

/*List Style Three*/

.list-style-three {
  position: relative;
}

.list-style-three li {
  position: relative;
  margin-bottom: 15px;
  color: #848484;
  font-size: 15px;
  font-weight: 400;
  padding-left: 46px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e6e6e6;
  font-family: "Rubik", sans-serif;
}

.list-style-three li:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border: none;
}

.list-style-three li .icon {
  position: absolute;
  left: 0px;
  top: 12px;
  color: var(--color-2);
  line-height: 1em;
  font-size: 24px;
}

.list-style-three li strong {
  position: relative;
  color: #020e28;
  font-size: 16px;
  font-weight: 600;
  display: block;
  font-family: "Poppins", sans-serif;
}

/*List Style Four*/

.list-style-four {
  position: relative;
}

.list-style-four li {
  position: relative;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  padding-left: 30px;
}

.list-style-four li:before {
  position: absolute;
  content: "\f178";
  left: 0px;
  top: 3px;
  color: #ffffff;
  line-height: 1em;
  font-size: 16px;
  font-family: "FontAwesome";
}

/*List Style Five*/

.list-style-five {
  position: relative;
}

.list-style-five li {
  position: relative;
  margin-bottom: 15px;
  color: #848484;
  font-size: 16px;
  font-weight: 400;
  padding-left: 30px;
}

.list-style-five li:before {
  position: absolute;
  content: "\f178";
  left: 0px;
  top: 3px;
  color: var(--color-2);
  line-height: 1em;
  font-size: 16px;
  font-family: "FontAwesome";
}

/*Btn Style One*/

.btn-style-one {
  position: relative;
  line-height: 24px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  background: var(--color-2);
  display: inline-block;
  padding: 13px 22px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--color-2);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.btn-style-one .icon {
  position: relative;
  top: 2px;
  font-size: 18px;
  margin-right: 4px;
  margin-left: 5px;
}

.btn-style-one:hover {
  color: var(--color-2);
  border-color: var(--color-2);
  background: none;
}

/*Btn Style Two*/

.btn-style-two {
  position: relative;
  line-height: 24px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  background: #020e28;
  display: inline-block;
  padding: 12px 49px;
  border-radius: 50px;
  text-transform: uppercase;
  border: 2px solid #020e28;
  font-family: "Poppins", sans-serif;
}

.btn-style-two:hover {
  color: #ffffff;
  background: var(--color-2);
  border-color: var(--color-2);
}

/*Btn Style Three*/

.btn-style-three {
  position: relative;
  line-height: 24px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  background: var(--color-2);
  display: inline-block;
  padding: 12px 49px;
  border-radius: 50px;
  text-transform: uppercase;
  border: 2px solid var(--color-2);
  font-family: "Poppins", sans-serif;
}

.btn-style-three:hover {
  color: #ffffff;
  background: #020e28;
  border-color: #020e28;
}

.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/icons/preloader.svg);
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/*** 

====================================================================
	Fancy Box
====================================================================

***/

.fancybox-next span,
.fancybox-prev span {
  background-image: none !important;
  width: 44px !important;
  height: 44px !important;
  line-height: 44px !important;
  text-align: center;
}

.fancybox-next span:before,
.fancybox-prev span:before {
  content: "";
  position: absolute;
  font-family: "FontAwesome";
  left: 0px;
  top: 0px;
  font-size: 12px;
  width: 44px !important;
  height: 44px !important;
  line-height: 44px !important;
  background-color: rgba(28, 28, 28, 0.4) !important;
  color: #ffffff;
  visibility: visible;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.fancybox-next span:before {
  content: "\f178";
}

.fancybox-prev span:before {
  content: "\f177";
}

.fancybox-next:hover span:before,
.fancybox-prev:hover span:before {
  background-color: #ffffff !important;
  color: #000000;
}

.fancybox-type-image .fancybox-close {
  right: 0px;
  top: 0px;
  width: 45px;
  height: 45px;
  background: url(../images/icons/icon-cross.png) center center no-repeat;
  background-color: rgba(17, 17, 17, 0.5) !important;
}

.fancybox-type-image .fancybox-close:hover {
  background-color: #000000 !important;
}

.fancybox-type-image .fancybox-skin {
  padding: 0px !important;
}

/*** 

====================================================================
	Social Icon One
====================================================================

***/

.social-icon-one {
  position: relative;
}

.social-icon-one li {
  position: relative;
  margin-left: 20px;
  display: inline-block;
}

.social-icon-one li a {
  position: relative;
  font-size: 16px;
  color: #ffffff;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.social-icon-one li a:hover {
  color: var(--color-2);
}

/*** 

====================================================================
	Social Icon Two
====================================================================

***/

.social-icon-two {
  position: relative;
}

.social-icon-two li {
  position: relative;
  margin: 0px 5px;
  display: inline-block;
}

.social-icon-two li a {
  position: relative;
  width: 40px;
  height: 40px;
  font-size: 14px;
  color: #848484;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  background-color: #ffffff;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.social-icon-two li a:hover {
  color: #ffffff;
  background-color: var(--color-2);
}

/*** 

====================================================================
	Social Icon Three
====================================================================

***/

.social-icon-three {
  position: relative;
}

.social-icon-three li {
  position: relative;
  margin-right: 15px;
  display: inline-block;
}

.social-icon-three li a {
  position: relative;
  font-size: 14px;
  color: #9b9b9b;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.social-icon-three li a:hover {
  color: var(--color-2);
}

/*** 

====================================================================
	Scroll To Top style
====================================================================

***/

.scroll-to-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 70px;
  color: #ffffff;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 65px;
  text-align: center;
  z-index: 99999;
  cursor: pointer;
  border-radius: 50px;
  background: var(--color-2);
  display: none;
  border: 2px solid var(--color-2);
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.scroll-to-top:hover {
  color: var(--color-2);
  background: none;
}

/* MAIN HEADER AND MOBILE HEADER :: COMMON */
.navbar-fixed-top {
  z-index: 99;
  background: #fff;
}
.navbar-fixed-top a {
  font-size: 14px;
  text-transform: uppercase;
}
.navbar-nav>li>a {
  padding : 20px 15px;
}
.fluid-main-header {
  padding: 0 40px;
  background: #fff;
}
.navbar-fixed-top.transparent {
  background: transparent;
  margin-top: 20px;
}
.navbar-fixed-top.fixed {
  margin-top: 0;
  background: #fff;
  border: none;
}
.dropdown-menu {
  top : 99%;
  border : none;
  padding : 0;
}
.dropdown-menu li {
  border-bottom : 1px solid #eee;
}
.dropdown-menu li a {
  padding : 10px 20px;
  transition : .5s ease;
  text-transform: capitalize;
}
.dropdown-menu li a:hover {
  padding-left : 25px;
}
.dropdown-menu li:last-child {
  border-bottom : none;
}
.dropdown:hover .dropdown-menu {
  display : block;
}
.navbar-main {
  margin-top: 8px;
}
.phone-li {
  padding-left: 14px;
}
.btn-phone {
  position: absolute;
  right: 10px;
  top: 20px;
  background: transparent;
  border: 1px solid #333;
  padding: 2px 20px 2px 35px !important;
  margin: 0 !important;
  font-size: 14px;
  border-radius: 20px;
  color: #444;
}
.btn-phone span {
  background: #fff;
  position: absolute;
  left: 26px;
  top: -8px !important;
  font-size: 10px;
  text-transform: uppercase;
  top: 0;
  padding: 0 6px;
  line-height: 10px;
}
.btn-phone .fa {
  position: absolute;
  left: 9px;
  font-size: 26px !important;
  top: -2px;
  background: #fff;
  padding-left: 6px;
  -webkit-transform: rotate(15deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

.navbar-main li a:hover {
  background: transparent;
  color: var(--color-2);
}
.navbar-brand {
  height: auto;
  padding: 5px 0;
}
.logo-main {
  width: 160px;
}
.navbar-fixed-top.fixed .navbar-style-1 li a {
  color: var(--color-dark-1);
}
.btn-1,
.navbar-style-1 li a.schedule {
  background: var(--color-2);
  color: #fff;
  padding-left: 15px;
  line-height: 10px;
  margin-top: 5px;
  padding-right: 15px;
  border-radius: 6px;
  padding: 12px 15px;
  position: top;
  position: relative;
  top: 8px;
}

ul.style-1 li {
  position : relative;
  padding-left : 20px;
  margin-bottom : 5px;
}
ul.style-1 li::before {
  content : '\f105';
  position : absolute;
  left : 0;
  top : 0;
  font-family: 'FontAwesome';
}
.img-xs-menu {
  margin: 0 auto 15px;
  width: 100px;
}
.navbar-fixed-top .logo-xs {
  width: 125px;
  padding: 5px 5px;
}
.grid-header {
  display: grid;
  grid-template-columns: 50px auto 50px;
  text-align: center;
}
.grid-header-touch {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.btn-line {
  display: block;
  width: 35px;
  margin-top: 14px;
  background: transparent;
  border: none;
  text-align: right;
  float: right;
  outline: none !important;
}
.btn-line .line {
  height: 2px;
  display: block;
  background: var(--color-lite-1);
  margin-bottom: 7px;
  transition: 0.6s ease;
}
.btn-line .line-1 {
  width: 70%;
}
.btn-line .line-3 {
  width: 60%;
}
.btn-line:hover .line {
  width: 100%;
}
.btn-xs-phone {
  border: none;
  padding: 8px 15px;
  display: block;
  margin-top: 0px;
  background: transparent;
  outline: none;
  color: var(--color-lite-1);
  float: right;
  font-size : 24px!important;
}
.xs-menu-wrapper {
  padding: 10px 20px;
}
ul.xs-menu {
  margin-bottom: 20px;
}
ul.xs-menu li label,
ul.xs-menu li a {
  display: block;
  padding: 10px 0;
  font-weight: normal;
  border-bottom: 1px dashed #ccc;
  color: #222;
  font-size: 14px;
  cursor: pointer;
}
.xs-sub-menu-box {
  display: none;
  background: #eae6e6;
  width: 100%;
  padding: 0 10px;
  margin-top: -5px;
}
.xs-sub-menu-box a {
  display: block;
}
#trigger:checked + .xs-sub-menu-box {
  display: block;
}
#trigger {
  display: none;
}
.modal-header {
  padding: 15px 0 0;
}
.modal.left .modal-dialog,
.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 100%;
  height: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
.modal.left .modal-content,
.modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
  background: #fff;
}
.modal.left .modal-body,
.modal.right .modal-body {
  padding: 0 0 80px;
  background: transparent;
}
/** LEFT TOGGLE **/
.modal.left.fade .modal-dialog {
  left: -320px;
  -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
  -o-transition: opacity 0.3s linear, left 0.3s ease-out;
  transition: opacity 0.3s linear, left 0.3s ease-out;
}
.modal.left.fade.in .modal-dialog {
  left: 0;
}
/** RIGHT TOGGLE **/
.modal.right .modal-dialog {
  right: -320px;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
  -o-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}
.modal.right.in .modal-dialog {
  right: 0;
  max-width: 300px;
}
.modal-content {
  border-radius: 0;
  border: none;
}
.menuModal .modal-content::-webkit-scrollbar {
  width: 0 !important;
}
.menuModal .modal-content::-webkit-scrollbar {
  -ms-overflow-style: none;
}
.menuModal .modal-content::-webkit-scrollbar {
  overflow: -moz-scrollbars-none !important;
}
.main-menu-wrapper {
  padding: 0;
}
.img-logo-menu {
  position: relative;
  max-width: 170px;
  margin-bottom: 20px;
}
.back {
  cursor: pointer;
  color: #eee;
  background: #333;
  padding: 12px;
  text-align: left;
  font-size: 14px;
}

/* SECTION TITLE :: COMMON */
.sec-title {
  position: relative;
  margin-bottom: 20px;
}

.sec-title h2 {
  position: relative;
  font-size: 22px;
  color: #020e28;
  padding: 0px 0px 14px;
  display: inline-block;
  text-transform: uppercase;
}

.sec-title.light h2 {
  color: #ffffff;
}

.sec-title .separator {
  position: relative;
  width: 75px;
}

.sec-title .separator:before {
  /* position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  width: 75px;
  height: 2px;
  background-color: var(--color-2); */
}

.sec-title .separator:after {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 2px;
  width: 25px;
  height: 4px;
  background-color: var(--color-2);
}

.sec-title .separator.centered::after {
  margin-left: 25px;
}

.sec-title.centered .separator {
  margin: 0 auto;
}

.sec-title.centered .separator::after {
  left: 50%;
  margin-left: -12px;
}

/* MAIN SLIDER :: INDEX PAGE */
.main-slider {
  position: relative;
  z-index: 10;
  margin-top: 65px;
}

@media(max-width : 991px) {
  .main-slider {
    margin-top: 50px;
    padding : 0 10px;
  }
  .main-slider img {
    border-radius : 8px;
  }
}

.main-slider .tp-caption {
  z-index: 5 !important;
}

.main-slider .tp-dottedoverlay {
  background: rgba(0, 0, 0, 0.4) !important;
}

.main-slider .tparrows.gyges {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
}

.main-slider .tparrows.gyges:before {
  line-height: 60px;
}

.main-slider .tparrows.gyges:hover {
  color: var(--color-2);
  background-color: var(--color-2);
}

.main-slider h2 {
  position: relative;
  color: #ffffff;
  font-size: 50px;
  font-weight: 600;
  display: inline-block;
}

.main-slider h2.dark {
  color: #020e28;
}

.main-slider h2.alternate {
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.main-slider h2.style-two {
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.main-slider .text {
  position: relative;
  color: #d8d8d8;
  font-size: 18px;
}

.main-slider .text.style-two {
  color: #848484;
}

.main-slider .text.alternate {
  color: #ffffff;
  font-size: 20px;
}

.main-slider .text.style-three {
  color: #020e28;
  font-size: 20px;
}

.main-slider .know_more {
  position: relative;
  color: var(--color-2);
  font-weight: 600;
  font-size: 14px;
  padding-bottom: 2px;
  text-transform: uppercase;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  border-bottom: 1px solid var(--color-2);
  font-family: "Poppins", sans-serif;
}

.main-slider .know_more .icon {
  margin-right: 4px;
}

.main-slider .know_more:hover {
  color: #ffffff;
}

.main-slider .btns-box .theme-btn {
  margin-right: 20px;
}

.main-slider .tp-bannertimer,
.main-slider .tp-bullets {
  display: none !important;
}

/* SERVICE SECTION :: INDEX PAGE */
.services-section {
  position: relative;
  padding-bottom: 50px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.services-section .inner-container {
  position: relative;
  margin-top: -65px;
  display: inline-block;
}

.services-block {
  position: relative;
  margin-bottom: 40px;
}

.services-block .inner-box {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  display: block;
  border-radius: 7px 7px 0 0;
  overflow: hidden;
}

.services-block .inner-box .image {
  position: relative;
}

.services-block .inner-box .image:before {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 30%;
  z-index: 1;
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0),
    rgba(2, 14, 40, 0.9)
  );
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(2, 14, 40, 0.9));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(2, 14, 40, 0.9));
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(2, 14, 40, 0.9));
}

.services-block .inner-box .image img {
  position: relative;
  width: 100%;
  display: block;
}

.services-block .inner-box .lower-content {
  position: relative;
  text-align: center;
  padding: 32px 0px 25px;
}

.services-block .inner-box .lower-content .icon-box {
  position: relative;
  color: #c4c4c4;
  font-size: 60px;
  line-height: 1em;
  margin-bottom: 20px;
}

.services-block .inner-box .lower-content h3 {
  position: relative;
  color: #020e28;
  font-size: 16px;
  font-weight: 500;
}

.services-block .inner-box .lower-content:after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0px;
  width: 90px;
  height: 3px;
  margin-left: -45px;
  background-color: #e0e0e0;
}

.services-block .inner-box .overlay-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  opacity: 0;
  background-color: var(--color-2);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  padding : 0;
}

.services-block .inner-box .overlay-box:after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0px;
  width: 90px;
  height: 3px;
  margin-left: -45px;
  background-color: rgba(0, 0, 0, 0.2);
}

.services-block .inner-box:hover .overlay-box {
  opacity: 1;
}

.services-block .inner-box .overlay-box .overlay-inner {
  position: relative;
  text-align: center;
  height: 100%;
}

.services-block .inner-box .overlay-box .overlay-inner .overlay-lower-inner {
  /* position: absolute;
  bottom: 0px; */
  width: 100%;
  text-align: center;
}

.services-block .inner-box .overlay-box .overlay-inner .text {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  font-family: "Rubik", sans-serif;
  text-transform: none;
}

.services-block .inner-box .overlay-box .overlay-inner .know-more {
  position: relative;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  font-family: "Poppins", sans-serif;
  padding: 55px 20px 50px;
  display : block;
  height : 100%;
}

.services-block .inner-box .overlay-box .overlay-inner .know-more:hover {
  color: yellow;
}

.services-block .inner-box .overlay-box .overlay-inner .overlay-icon {
  position: relative;
  color: #ffffff;
  font-size: 60px;
  line-height: 1em;
  margin-top: 0px;
  margin-bottom: 20px;
}

.services-block .inner-box .overlay-box .overlay-inner h4 {
  position: relative;
  color: yellow;
  font-size: 18px;
  font-weight: 500;
}

.services-block .inner-box .overlay-box .overlay-inner h4 a {
  position: relative;
  color: #ffffff;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.services-block .inner-box .overlay-box .overlay-inner h4 a:hover {
  color: #041332;
}

/* MARKET SECTION :: INDEX PAGE */
.market-section {
  position: relative;
  padding: 40px 20px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.market-section:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(2, 14, 40, 0.96);
}

.market-section .title-column {
  position: relative;
}

.market-section .title-column .sec-title {
  margin-bottom: 20px;
}

.market-section .title-column .inner-column {
  position: relative;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.market-section .title-column .inner-column.no-br {
  border-bottom : none;
}
.market-section .title-column .inner-column .text {
  position: relative;
  color: #c4c4c4;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
  margin-bottom: 27px;
}

.market-section .title-column .inner-column .view_all {
  position: relative;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2em;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  font-family: "Poppins", sans-serif;
}

.market-section .title-column .inner-column .view_all .icon {
  position: relative;
  margin-right: 4px;
}

.market-section .title-column .inner-column .view_all:hover {
  color: var(--color-2);
}

.market-section .row {
  margin: 0px -30px;
}

.market-section .row .m-block {
  padding: 0px 30px;
}

.market-section .row .m-block:nth-child(1) .inner-box:after,
.market-section .row .m-block:nth-child(2) .inner-box:after,
.market-section .row .m-block:nth-child(4) .inner-box:after,
.market-section .row .m-block:nth-child(5) .inner-box:after,
.market-section .row .m-block:nth-child(6) .inner-box:after {
  content: "";
  position: absolute;
  left: -30px;
  bottom: 30px;
  top: 0px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.market-block {
  position: relative;
  margin-bottom: 30px;
}
.grid-market {
  display : grid;
  grid-template-columns : 1fr 2fr;
  grid-gap : 20px;
}
@media(max-width : 991px) {
  .grid-market {
    grid-template-columns : 1fr;
  }
}
.market-block .inner-box {
  position: relative;
  padding: 30px 0px;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  height: 305px;
}
.market-section .row .m-block:nth-child(3) .inner-box,
.market-section .row .m-block:nth-child(4) .inner-box,
.market-section .row .m-block:nth-child(5) .inner-box,
.market-section .row .m-block:nth-child(6) .inner-box {
  border-bottom: none;
}

.market-section .market-block .inner-box:before {
  content: "";
  position: absolute;
  left: -30px;
  right: -30px;
  top: 0px;
  bottom: -1px;
  opacity: 0;
  visibility: hidden;
  background-color: var(--color-2);
}

.market-section .market-block .inner-box:hover:before {
  opacity: 1;
  visibility: visible;
}

.market-block .inner-box:hover {
  border-color: var(--color-2);
}

.market-block .inner-box h3 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5em;
  margin-bottom: 15px;
}

.market-block .inner-box h3 a {
  position: relative;
  color: #ffffff;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.market-block .inner-box h3 a:hover {
  color: #020e28;
}

.market-block .inner-box .text {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.8em;
  font-weight: 400;
  margin-bottom: 35px;
  opacity: 1;
  visibility: visible;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.market-block .inner-box:hover .text {
  opacity: 1;
  visibility: visible;
}

.market-block .inner-box .icon-box {
  position: relative;
  font-size: 50px;
  line-height: 1em;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  color: rgba(255, 255, 255, 0.4);
}

.market-block .inner-box:hover .icon-box {
  opacity: 0;
  visibility: hidden;
}

.market-block .inner-box .view_all {
  position: absolute;
  left: 0px;
  bottom: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.market-block .inner-box .view_all:hover {
  color: #020e28;
}

.market-block .inner-box:hover .view_all {
  opacity: 1;
  visibility: visible;
}

/* CALL TO ACTION :: INDEX PAGE */
.call-to-action-section {
  position: relative;
  padding: 45px 0px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.call-to-action-section:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  background-color: var(--color-2);
}

.call-to-action-section h2 {
  position: relative;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4em;
}

.call-to-action-section .link-column {
  position: relative;
  text-align: right;
}

.call-to-action-section .apointment {
  position: relative;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 2px solid #ffffff;
  font-family: "Poppins", sans-serif;
}

/* MAIN FOOTER :: COMMON */
.main-footer {
  position: relative;
  background-color: #020e28;
}

.main-footer .widgets-section {
  position: relative;
  padding: 80px 0px 40px;
}

.main-footer .footer-widget {
  position: relative;
  margin-bottom: 30px;
}

.main-footer .footer-title {
  position: relative;
  margin-bottom: 30px;
}

.main-footer .footer-title h2 {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  padding-bottom: 18px;
  text-transform: uppercase;
}

.main-footer .footer-title h2:after {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  width: 35px;
  height: 4px;
  background-color: var(--color-2);
}

.main-footer .logo-widget {
  position: relative;
}

.main-footer .logo-widget .widget-content {
  position: relative;
}

.main-footer .logo-widget .logo {
  position: relative;
  margin-bottom: 25px;
}

.main-footer .logo-widget .widget-content .text {
  position: relative;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 12px;
}

.main-footer .logo-widget .widget-content .list {
  position: relative;
  margin-bottom: 20px;
}

.main-footer .logo-widget .widget-content > .list > li {
  position: relative;
  color: #c4c4c4;
  font-size: 14px;
  padding-right: 12px;
  margin-right: 12px;
  line-height: 1.2em;
  display: inline-block;
  border-right: 1px solid #414a5e;
}

.main-footer .logo-widget .widget-content > .list > li:last-child {
  border-right: 0px;
  margin-right: 0px;
  padding-right: 0px;
}

.main-footer .logo-widget .widget-content .timing {
  position: relative;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.8em;
}

.main-footer .logo-widget .widget-content .timing span {
  font-weight: 500;
  display: block;
}

.main-footer .logo-widget .widget-content .social-icon-one li {
  margin-left: 0px;
  margin-right: 22px;
}

.main-footer .links {
  position: relative;
}

.main-footer .links li {
  position: relative;
  margin-bottom: 16px;
}

.main-footer .links li a {
  position: relative;
  color: #c4c4c4;
  font-size: 14px;
  padding-bottom: 5px;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-footer .links li a:after {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  width: 20px;
  height: 2px;
  opacity: 0;
  background-color: var(--color-2);
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-footer .links li a:hover::after {
  opacity: 1;
}

.main-footer .links li a:hover {
  color: #ffffff;
}

.main-footer .footer-bottom {
  position: relative;
  padding-top: 45px;
  background-color: #041332;
}

.main-footer .footer-bottom.style-two {
  padding-top: 0px;
}

.main-footer .footer-bottom.style-two .copyright {
  border-top: 0px;
  margin-top: 10px;
}

.main-footer .footer-bottom .title-column {
  position: relative;
}

.main-footer .footer-bottom .title-column .text {
  position: relative;
  padding-left: 80px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.main-footer .footer-bottom .title-column .text .icon {
  position: absolute;
  left: 0px;
  top: 10px;
  color: var(--color-2);
  font-size: 40px;
  line-height: 1em;
}

.main-footer .footer-bottom .subscribe-form {
  margin-bottom: 20px;
}

.main-footer .footer-bottom .subscribe-form .form-group {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.main-footer .footer-bottom .subscribe-form .form-group input[type="text"],
.main-footer .footer-bottom .subscribe-form .form-group input[type="email"] {
  position: relative;
  display: block;
  width: 100%;
  line-height: 26px;
  padding: 10px 0px;
  height: 48px;
  font-size: 15px;
  color: #ffffff;
  background: none;
  font-weight: 400;
  border-bottom: 4px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-footer .footer-bottom .subscribe-form .form-group button {
  position: absolute;
  right: 0px;
  top: 10px;
  font-size: 14px;
  color: var(--color-2);
  font-weight: 600;
  background: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}
.main-footer .footer-bottom .copyright {
  position: relative;
  text-align: center;
  color: #ffffff;
  padding: 20px 0px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

/*  OUR PROJECT :: INDEX PAGE */
.owl-common .owl-nav {
  position: absolute;
  top: 45%;
  width: 104%;
  left: -2%;
  z-index: -1;
}
.owl-common {
  padding: 20px;
}
.owl-common.owl-carousel .owl-nav button.owl-next,
.owl-common.owl-carousel .owl-nav button.owl-prev {
  font-size: 34px;
  outline: none;
  color: #333;
}
.owl-common.lite .owl-nav button.owl-next,
.owl-common.lite .owl-nav button.owl-prev {
  color: #fff;
}
.owl-common.owl-carousel .owl-nav button.owl-next {
  float: right;
}
.our-product {
  padding: 40px 20px;
}
.product-box {
  border-radius: 5px;
  border: 1px solid #ddd;
}
.dt-sc-team {
  float: left;
  clear: both;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}
.dt-sc-team.dt-sc-custom-team .dt-sc-team-thumb {
  float: left;
  margin: 0;
  position: relative;
  width: 100%;
  height: 240px;
  display: flex;
background: #c31622;}
.dt-sc-team.dt-sc-custom-team .dt-sc-team-thumb img {
  margin: auto;
}
.dt-sc-team.dt-sc-custom-team .dt-sc-team-thumb:before {
  content: "";
  display: block;
  height: 0;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.dt-sc-team.dt-sc-custom-team .dt-sc-team-thumb:before {
  background: rgba(39, 50, 114, 0.3);
  z-index: 1;
}
.dt-sc-team.dt-sc-custom-team:hover .dt-sc-team-thumb:before {
  height: 100%;
}
.dt-sc-team.dt-sc-custom-team:hover .dt-sc-team-thumb:after {
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
}
.dt-sc-team.dt-sc-custom-team .dt-sc-team-thumb:after {
  background: url(../../images/plus.png) no-repeat;
  border: 0;
  bottom: 0;
  content: "";
  height: 50px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  transform: scale(0);
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
}
.dt-sc-team.dt-sc-custom-team:hover .dt-sc-team-thumb:after {
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
}
.vc_column_container img,
.wpb_column img {
  max-width: 100%;
  height: auto;
  display: inherit;
}
.dt-sc-team .dt-sc-team-details {
  float: left;
  width: 100%;
  padding: 30px 20px 0px;
  text-align: center;
  position: relative;
}
.dt-sc-team-details p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
  color: #666;
  line-height: 20px;
  margin-bottom: 0;
}
.dt-sc-team.dt-sc-custom-team .dt-sc-team-details {
  background: transparent;
  padding: 20px 10px 25px;
}
.dt-sc-team.dt-sc-custom-team .dt-sc-team-details:before {
  content: "";
  height: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.dt-sc-team.dt-sc-custom-team:hover .dt-sc-team-details:before {
  height: 100%;
}
.dt-sc-team.dt-sc-custom-team .dt-sc-team-details:before,
.dt-sc-custom-image-carousel .slick-slider button:hover,
.ult-carousel-wrapper.dt-sc-custom-carousel button.square-bg.slick-arrow:hover {
  background-color: var(--color-2);
}
.product-box:hover p,
.product-box:hover h4,
.product-box:hover .dt-sc-team-details {
  color: #222;
}
.product-box h4 {
  text-transform: uppercase;
  color: var(--color-2);
}

.grid-project-box {
  display : grid;
  grid-template-columns : repeat(3, 1fr);
  grid-gap : 20px;
}
@media(max-width : 991px) {
  .grid-project-box {
    grid-template-columns : repeat(3, 1fr);
  }
}
@media(max-width : 767px) {
  .grid-project-box {
    grid-template-columns : repeat(1, 1fr);
  }
  .dt-sc-team.dt-sc-custom-team .dt-sc-team-thumb {
    width : 100%;
    height : auto;
  }
  .aspect-images {
    width : auto!important;
    height : auto!important;
  }
}
.grid-project-box > a {
  display : block;
}

/* TESTIMONIAL :: INDEX PAGE */
.testimonial-wrapper {
  background: #273272;
}
.testimonial-left,
.testimonial-right {
  padding: 45px 50px 10px;
  width: 50%;
  float: left;
}
@media (max-width: 991px) {
  .testimonial-left,
  .testimonial-right {
    width: 100%;
  }
}
.testimonial-left {
  position: relative;
  background: url(../../images/background/bg-testimonial.jpg);
  padding: 120px 60px;
}
.testimonial-left {
  color: #fff;
}
.testimonial-left::before {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(203, 0, 0, 0.7);
}
.testimonial-left h2 {
  text-transform: uppercase;
  margin-bottom: 10px;
}
.testimonial-right h5 {
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial-left a {
  color: var(--color-1);
}
.testimonial-right {
  background: #273272;
}
.client-box {
  color: #fff;
  position: relative;
}

.client-box img {
  width: 70px !important;
  height: 70px !important;
  border-radius: 70px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  transition: 0.8s ease;
  display: inline-block !important;
}
.client-box:hover img {
  border-color: var(--color-2);
}
.client-box p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.client-box .fa-star {
  color: var(--color-1);
}

/* BLOG SECTION */
.blog-section {
  padding: 40px 20px;
}
.blog-box .imgs {
  position: relative;
  overflow: hidden;
}
.blog-box .imgs::before {
  bottom: 0;
  content: "";
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  background: rgba(39, 50, 114, 0.6);
  z-index: 1;
}
.blog-box img {
  width: 100%;
  transition: 0.6s ease;
}
.blog-box:hover img {
  transform: scale(1.1);
}
.blog-box .info {
  width: 90%;
  margin: -30px 5% 0;
  background: #fff;
  padding: 20px 20px 20px;
  position: relative;
  z-index: 9;
  color: inherit !important;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.12);
  border: 1px solid #eee;
}
.blog-box .info h3 {
  font-size: 16px;
  font-weight: bold;
}
.blog-box .info p {
  line-height: 22px;
}
.blog-box .date {
  position: absolute;
  left: 10px;
  top: -20px;
  background: var(--color-2);
  padding: 2px 12px;
  color: #fff;
}

/* CONTACT US PAGE */
.contact-section .info-column .inner-column {
  border-right : none;
}
.contact-section .info-column .inner-column .upper-box {
  background : #eee;
  padding-bottom : 30px;
}
.grid-address-box {
  display : grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap : 20px;
}
.address-box {
  background : #eee;
}
.address-box .address {
  background : #ddd;
}
.address-box .address h4 {
  font-weight : bold;
  line-height : 24px;
  color : #222;
  margin-bottom : 10px;
}
span.dark {
  color : #222;
  font-weight : bold;
}
.iframe {
  width : 100%;
  height : 100%;
}
@media(max-width : 991px) {
  .company-section,
  .contact-section {
    padding : 50px 25px;
  }
  .grid-address-box {
    grid-template-columns: 1fr 1fr;
  }
  .grid-address-box > div:last-child {
    grid-column-start : 1;
    grid-column-end : 3;
  }
  .iframe {
    height : 350px;
  }
}
@media(max-width : 767px) {
  .grid-address-box {
    grid-template-columns: 1fr;
  }
  .grid-address-box > div:last-child {
    grid-column-start : 1;
    grid-column-end : 2;
  }
}

/* PRODUCT PAGE */
section.products {
  margin: 40px 0 20px;
}
.products-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
@media (min-width: 992px) {
  .products-wrapper.owl-carousel .owl-nav.disabled {
    display: block;
  }
}
@media (max-width: 991px) {
  .products-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .products-wrapper {
    /* display: block;   */
  }
}
.product-box {
  background: #f0eeee;
  margin-bottom: 0px;
  border: none;
  /* padding: 20px; */
  text-align : center;
}
@media (min-width: 768px) {
  .product-img {
    display: flex;
    margin-bottom: 10px;
    height: 240px;
  }
}
.product-box img {
  margin-bottom: 10px;
}
.product-img > div {
  margin: auto;
}
.product-box .btn-style-2 {
  padding: 0;
}

/* PRODUCT DETAIL PAGE */
@media (min-width: 992px) {
  .product-detail-wrapper {
    display: grid;
    grid-template-columns: 70px 1fr 1fr;
    grid-column-gap: 70px;
    padding: 40px 20px;
  }
}
.tab-xs-product {
  margin: 30px 0;
}
.tab-xs-product img {
  border-radius: 6px;
  border: 1px solid #ddd;
}
.product-detail-imgs a {
  display: block;
  padding: 5px 5px 0;
}
.product-detail-imgs a.active {
  border: 1px solid #222;
  padding: 5px 5px 0;
}
.product-detail-imgs img {
  width: 100%;
  margin-bottom: 7px;
  border: 1px solid #ddd;
}
.product-detail-info p {
  margin-bottom: 15px;
  color : #333;
}
.product-detail-info .head h2 {
  margin-bottom: 0.8rem;
  font-weight: 900;
  line-height: 1.2;
  color : #222;
  font-weight : bold;
}
.product-detail-info .head p span {
  font-weight : bold;
}
.viewed-box {
  border-top : 1px solid #ccc;
  border-bottom : 1px solid #ccc;
  padding : 15px 0;
}
.viewed-box p {
  margin-bottom : 3px;
}
.viewed-box p span {
  font-weight : bold;
}
.viewed-box p span.in-stock {
  font-weight: normal;
  display: inline-block;
  background: #28a745;
  color: #fff;
  padding: 0px 6px;
  border-radius: 6px;
  font-size: 12px;
}
.cart-box {
  padding : 10px 0;
  border-radius : 6px;
  /* display : grid;
  grid-template-columns : auto 100px;
  grid-gap : 10px; */
}
.value-button {
  display: inline-block;
  /* border: 1px solid #ddd; */
  margin: 0px;
  width: 40px;
  height: 40px;
  text-align: center;
  vertical-align: middle;
  padding: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: bold;
  font-size: 16px;
  color: #222;
line-height: 22px;}

.value-button span {
  display : inline-block;
  background : #222;
  width : 20px;
  height : 20px;
  border-radius : 20px;
  color : #fff;
  position: relative;top: 11px;
  line-height : 20px;
}
.value-button:hover {
  cursor: pointer;
  background: #eee;
}

form #decrease {
  margin-right: -4px;
  border-radius: 8px 0 0 8px;
}
#decrease span {
  line-height : 20px;
}

form #increase {
  margin-left: -4px;
  border-radius: 0 8px 8px 0;
}

form #input-wrap {
  margin: 0px;
  padding: 0px;
}

input#number {
  text-align: center;
  border: none;
  margin: 0px;
  width: 40px;
  height: 40px;
  color : #222;
  font-weight : bold;
  position : relative;
  top : 2px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.buy-now-box button {
  display : inline-block;
  color: #000;
  background-color: #d99600;
  border-color: #cc8e00;
  padding : 5px 15px;
  border-radius : 6px;
  font-weight : bold;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    /* -webkit-text-fill-color: #fff; */
}
/* FLOATING INPUT */
.floating-field-box {
  padding: 0px;
  margin-bottom : 10px;
}
.content-3 .floating-field-box {
  margin-bottom: 10px;
}
.user-input-wrps {
  position: relative;
  margin: 0 auto;
}
.user-input-wrps .inputText {
  width: 100%;
  outline: none;
  border: none;
  box-shadow: none !important;
  padding: 25px 13px 10px;
  background: transparent;
  border: 2px solid #111;
  border-radius: 6px;
  font-size: 16px;
  color: #000!important;
}
.user-input-wrps .inputText:focus {
  border-color: var(--theme-color);
  border-width: medium medium 2px;
}
.user-input-wrps .floating-labels {
  position: absolute;
  pointer-events: none;
  top: 18px;
  left: 15px;
  transition: 0.2s ease all;
  color: #111;
  font-size: 16px;
}
.floating-labels.active,
.user-input-wrps input:focus ~ .floating-labels,
.user-input-wrps input:not(:focus):valid ~ .floating-labels {
  top: 8px;
  left: 15px;
  font-size: 13px;
  opacity: 1;
  color : #312e2d;
}
.type-field {
  display : none;
}
.type-field.active {
  display : block;
}

.icon-box-payment {
  border-top : 1px solid #ccc;
  border-bottom : 1px solid #ccc;
  padding : 15px 0;
}
.icon-box-payment ul li {
  display : inline-block;
  margin-right : 30px;
}
.icon-box-payment ul li h4 {
  color : #222;
  font-weight : bold;
  position : relative;
  padding-left : 40px;
}
.icon-box-payment svg {
  position : absolute;
  left : 0;
  top : 4px;
  fill: var(--color-2);
  vertical-align: top;
  width : 25px;
  height : 25px;
}

.write-review-box {
  border : 1px solid #ddd;
  background : #f8f9fa;
  padding : 20px 20px 10px;
  border-radius : 6px;
  margin : 30px 0;
  color : #222;
}
.write-review-box h2 {
  margin-top : 0;
  font-weight : bold;
  color : #222;
}
.write-review-box h4 {
  font-weight : bold;
  color : #222;
  margin : 0 0 10px;
}
.write-review-box .fields {
  height : 45px;
  border-radius : 0;
  display : block;
  border : 1px solid #aaa;
  width : 100%;
  border-radius : 4px;
  padding-left : 15px;
  margin-bottom : 10px;
  color : #222;
}
.write-review-box textarea.fields {
  resize : none;
  height : 120px;
}
.write-review-box button {
  display : inline-block;
  padding : 3px 20px;
  border-radius : 5px;
  background : #222;
  color : #fff;
  font-weight : bold;
  margin-bottom : 0;
}
.product-cart-info {
  border : 2px solid #ccc;
  border-radius : 4px;
  margin-bottom : 10px;
  display : grid;
  grid-template-columns : 60px auto;
  grid-gap : 10px;
  background : #222;
  border-radius : 6px;
}
.product-cart-info > div {
  padding : 6px;
}
.product-cart-info h4{
  font-weight : bold;
  color : #fff;
}
.product-cart-info p {
  font-size : 12px;
  color : #fff;
}
.product-cart-info .imgs {
  border-right : 2px solid #ccc;
}
.product-cart-info img {
  width : 100%;
  border-radius : 6px;
}
.alert.holder {
  margin-bottom : 0;
}
.alert.holder p {
  margin-bottom : 0;
  text-align : center;
}
.cart-success-alert  {
  position : fixed;
  top : 0;
  left : 0;
  z-index : 99;
  width : 100%;
  height : 100vh;
  background : rgba(0, 0, 0, 0.85);
  display : none;
}
@media(max-width : 991px) {
  .cart-success-alert {
    display : flex;
  }
}
.cart-success-alert .holder {
  margin : auto;
  background : #2da447;
  padding : 30px 70px 30px 30px;
  border-radius : 5px;
  color : #fff;
  position : relative;
}
.disabled {
  opacity : .5;
  pointer-events : none;
}
span.close-alert {
  position : absolute;
  right : 15px;
  top : 25px;
  background : #222;
  color : #fff;
  opacity : 1;
  padding : 9px 9px 6px;
  cursor : pointer;
  z-index : 10;
  border-radius : 50%;
  line-height : 16.5px;
}
span.close-alert svg {
  width : 12px;
  height : 12px;
}
.cart-success-alert .holder p {
  margin : 0;
}
.lb-number {
  display: none !important;
}
.table-product-detail {
  text-align: center;
  margin: 20px 0 0px;
}
.table-product-detail thead {
  text-align: center;
  background: var(--color-2);
  color: #fff;
}
.table-product-detail tr td {
  vertical-align: middle !important;
}
.btn-contact-group {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  background: #fff;
  border-top: 1px solid #eee;
  grid-gap: 20px;
  margin: 30px 0;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1001;
  grid-gap: 0;
  margin: 0;
  padding: 5px;
  text-align: center;
  -webkit-box-shadow: 0px -4px 6px 0 rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px -4px 6px 0 rgba(0, 0, 0, 0.08);
  -ms-box-shadow: 0px -4px 6px 0 rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0px -4px 6px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0px -4px 6px 0 rgba(0, 0, 0, 0.08);
}
.btn-contact-group h3 {
  margin-top: 5px;
  font-size: 16px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .btn-contact-group a {
    width: auto;
    padding: 2px 15px;
    font-weight: normal;
  }
}
@media (max-width: 767px) {
  body.xs-bottom-btn {
    padding-bottom: 44px;
  }
  .btn-contact-group {
    display: block;
    padding: 0;
  }
  .btn-contact-group a {
    border-radius: 0;
    display: block;
    float: left;
    width: 50%;
  }
}
.btn-contact-group .btn {
  color: #fff;
  padding: 6px 15px 5px;
  font-weight: bold;
}
.btn-contact-group .btn:hover {
  background: #222;
}
.btn-enquiry {
  background: var(--color-1);
}
.btn-whatsapp {
  border-radius: 5px;
  background: #09bd18;
  border: none;
}
.btn-whatsapp h4 {
  padding: 7px !important;
  margin: 0 !important;
}
.btn-whatsapp h4 span {
  font-size: 24px;
}
@media (max-width: 767px) {
  .btn-whatsapp h4 span {
    display: block;
  }
}
.pdl-1 {
  position: relative;
}

.btn-enquiry-now {
  position : fixed;
  bottom : 65px;
  right : 20px;
  display : inline-block;
  padding : 3px 15px;
  background : var(--color-2);
  color : #fff;
  border-radius : 20px;
  z-index : 10;
}
.btn-enquiry-now:hover {
  color : #fff;
}

/* CERTIFICATE WRAPPER */
.certificate-wrapper {
  display : grid;
  grid-template-columns : repeat(2, 1fr);
  grid-gap : 20px;
}
.certificate-box {
  overflow: hidden;
  margin-bottom: 15px;
  background: #d99600;
  padding: 5px;
  border-radius : 8px;
  overflow : hidden;
}
.certificate-box img {
  border-radius : 8px;
}
