:root {
  --blueColor: #2a4da0;
  --blueColorAlt: #0f75bd;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

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

a,
a:hover {
  text-decoration: none;
  transition: .4s ease-in-out;
  -webkit-transition: .4s ease-in-out;
  -moz-transition: .4s ease-in-out;
  -ms-transition: .4s ease-in-out;
  -o-transition: .4s ease-in-out;
}

.lines-1,
.lines-2,
.lines-3,
.lines-4,
.lines-5,
.lines-6,
.lines-7,
.lines-8,
.lines-9,
.lines-10,
.lines-11,
.lines-12,
.lines-13,
.lines-14,
.lines-15 {
  display: -webkit-box !important;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.lines-1 {
  -webkit-line-clamp: 1;
}
.lines-2 {
  -webkit-line-clamp: 2;
}
.lines-3 {
  -webkit-line-clamp: 3;
}
.lines-4 {
  -webkit-line-clamp: 4;
}
.lines-5 {
  -webkit-line-clamp: 5;
}
.lines-6 {
  -webkit-line-clamp: 6;
}
.lines-7 {
  -webkit-line-clamp: 7;
}
.lines-8 {
  -webkit-line-clamp: 8;
}
.lines-9 {
  -webkit-line-clamp: 9;
}
.lines-10 {
  -webkit-line-clamp: 10;
}
.lines-11 {
  -webkit-line-clamp: 11;
}
.lines-12 {
  -webkit-line-clamp: 12;
}
.lines-13 {
  -webkit-line-clamp: 13;
}
.lines-14 {
  -webkit-line-clamp: 14;
}
.lines-15 {
  -webkit-line-clamp: 15;
}

.loaders {
  position: fixed;
  z-index: 999999;
  background: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out .5s;
  -webkit-transition: all ease-in-out .5s;
  -moz-transition: all ease-in-out .5s;
  -ms-transition: all ease-in-out .5s;
  -o-transition: all ease-in-out .5s;
}
.loaders img {
  max-width: 200px;
  -webkit-animation: fadeAnimation 1s infinite;
  -moz-animation: fadeAnimation 1s infinite;
  -o-animation: fadeAnimation 1s infinite;
  animation: fadeAnimation 1s infinite;
}
@-webkit-keyframes fadeAnimation {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-moz-keyframes fadeAnimation {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-o-keyframes fadeAnimation {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes fadeAnimation {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/* START => Header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  padding-top: 1rem;
}
header .logo a img {
  max-height: 50px;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-menu {
  display: flex;
}
.main-menu > li {
  margin: auto 1px;
  position: relative;
}
.main-menu > li > a {
  color: #FFFFFF;
  padding: 10px 13px;
  display: inline-block;
  border-radius: 25px;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 500;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  -ms-transition: all 0.2s;
}
.main-menu > li > a:hover {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
}
.main-menu ul.menu-down {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  padding: 1rem 0.5rem;
  min-width: 280px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.main-menu ul.menu-down li {
  margin-bottom: .5rem;
}
.main-menu ul.menu-down li a img {
  max-height: 33px;
}
.main-menu ul.menu-down li a {
  color: #444;
  font-weight: 400;
  font-size: 11px;
}
.main-menu > li > a:hover + ul.menu-down {

}

.right-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.right-actions > div {
  margin-left: 1rem;
}
.right-actions > div:last-child {
  margin-left: 0;
}
.sec-search #search {
  cursor: pointer;
  font-size: 1.4rem;
  transition: .5s linear;
  -webkit-transition: .5s linear;
  -moz-transition: .5s linear;
  -ms-transition: .5s linear;
  -o-transition: .5s linear;
  color: #fff;
}
.sec-search #search:hover {
  color: var(--blueColorAlt);
}
.sec-search .box-search {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background-color: #fff;
  z-index: 9;
  padding: 2.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: none;
  border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -ms-border-radius: 0 0 5px 5px;
  -o-border-radius: 0 0 5px 5px;
}
.sec-search .box-search form input {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid #666;
  border-right: 0;
  outline: none;
  background-color: transparent;
  color: #444;
}
.sec-search .box-search form button {
  outline: none;
  width: 70px;
  padding: 1rem;
  border: 1px solid var(--blueColor);
  border-left: 0;
  background-color: var(--blueColor);
  color: #fff;
  border-radius: 0 5px 5px 0;
  transition: 0.3s;
}
.sec-search .box-search form button:hover {
  background-color: #eee;
  background-color: var(--blueColorAlt);
}
.sec-search .box-search strong {
  margin: 1rem auto;
  color: #444;
}
.sec-search .box-search .close_search {
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
  color: #f00;
  font-size: 1.2rem;
}

.cart-icon {
  color: var(--blueColor);
  display: inline-block;
  font-weight: 600;
  color: #fff;
}
.cart-icon .icon-fa {
  display: inline-block;
  transition: .5s linear;
  -webkit-transition: .5s linear;
  -moz-transition: .5s linear;
  -ms-transition: .5s linear;
  -o-transition: .5s linear;
  position: relative;
}
.cart-icon .icon-fa i {
  font-size: 1.4rem;
  transition: .5s linear;
  -webkit-transition: .5s linear;
  -moz-transition: .5s linear;
  -ms-transition: .5s linear;
  -o-transition: .5s linear;
  color: #fff;
}
.cart-icon .icon-fa .count {
  position: absolute;
  top: -14px;
  right: -6px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: #e74c3c;
  text-align: center;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  font-weight: 500;
}
.sec-search:hover #search,
.cart-icon:hover .icon-fa {
  color: #fff;
}
.cart-icon:hover .icon-fa i {
  color: #fff;
}
.cart-icon:hover .icon-fa i.fa-shopping-cart {
  color: #fff;
}

.btn-account {
  color: #fff;
  padding: 1rem;
  font-weight: bold;
  font-size: 14px;
}
.btn-account i.fa-user {
  font-size: 1.1rem;
}
.btn-account:hover {
  color: #ccc;
}
.dropdown-account .dropdown-menu {
  inset: 0 0 auto auto !important;
  min-width: 13rem;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 0;
  transition: 0.5s;
  border-radius: 0 0 6px 6px;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  -ms-border-radius: 0 0 6px 6px;
  -o-border-radius: 0 0 6px 6px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.dropdown-account .dropdown-menu.show {
  transform: translateY(40px) !important;
  -webkit-transform: translateY(40px) !important;
  -moz-transform: translateY(40px) !important;
  -ms-transform: translateY(40px) !important;
  -o-transform: translateY(40px) !important;
}
.dropdown-account .dropdown-menu.show {
  /* inset: 0 auto auto 0 !important; */
}
.dropdown-account .dropdown-menu a {
  font-size: 14px;
  display: block;
}
.dropdown-account .dropdown-menu hr {
  margin: 1rem auto;
}
.dropdown-account .dropdown-menu .link-login a {
  text-align: center;
  /* background-color: var(--blueColor); */
  border: 2px solid var(--blueColor);
  color: var(--blueColor);
  border-radius: 5px;
  padding: .5rem;
  display: block;
}
.dropdown-account .dropdown-menu .link-login a:hover {
  background-color: var(--blueColor);
  border: 2px solid var(--blueColor);
  color: #fff;
}
.or-reg {
  position: relative;
}
.or-reg span {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  color: #B15B5B;
  z-index: 1;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.dropdown-account .dropdown-menu .link-register a {
  color: #B15B5B;
  text-align: center;
  padding: .2rem .5rem;
  border-radius: 5px;
}
.dropdown-account .dropdown-menu .link-register a:hover {
  background-color: rgba(177, 91, 91, 0.1);
  color: #B15B5B;
}
.dropdown-account .dropdown-menu .link-register.reg-res a {
  background-color: var(--blueColor);
  color: #fff;
  padding: .5rem;
}
.dropdown-account .dropdown-menu .link-register.reg-res a:hover {
  background-color: var(--blueColorAlt);
  color: #fff;
}
.dropdown-account .dropdown-menu .link-item a {
  color: #444;
  display: block;
  padding: .5rem;
}
.dropdown-account .dropdown-menu .link-item a:hover {
  color: var(--blueColor);
}
.dropdown-toggle::after {
  content: unset;
}
.langs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.langs a {
  padding: .5rem;
  background-color: var(--blueColorAlt);
  color: #fff;
  width: 45%;
  text-align: center;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  font-weight: bold;
}
.langs a:hover {
  background-color: var(--blueColorAlt);
  color: #000;
}
.langs a.current {
  opacity: 0.7;
  pointer-events: none;
  background-color: var(--blueColor);
  color: #fff;
}
.close-menu,
.toggle-menu {
  display: none;
}
/* //END => Header */

/* START => Home Slides */
.sec-slides-home {
  height: 100vh;
  background-color: var(--blueColor);
}
.swiper {
  width: 100%;
  height: 100%;
}
.slides-homepage .swiper-slide {
  /* text-align: center;
  font-size: 18px;
  background: #fff; */

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.slides-homepage .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slides-homepage .swiper-slide .txt-slide {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
}
.slides-homepage .swiper-slide .txt-slide strong {
  font-size: 2.5em;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  text-shadow: 0px 3px 10px rgb(0 0 0 / 30%);
}
.slides-homepage .swiper-slide .txt-slide p {
  font-size: 1em;
  color: #fff;
  font-weight: 500;
  width: 80%;
  margin: auto;
  text-shadow: 0px 3px 10px rgb(0 0 0 / 30%);
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical>.swiper-pagination-bullets {
    position: absolute;
    text-align: center;
    z-index: 10;
    right: 30px;
    top: 50%;
    transform: translate3d(0px,-50%,0);
    -webkit-transform: translate3d(0px,-50%,0);
    -moz-transform: translate3d(0px,-50%,0);
    -ms-transform: translate3d(0px,-50%,0);
    -o-transform: translate3d(0px,-50%,0);
    transition: .3s opacity;
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
}
.swiper-pagination-bullet {
  width: var(--blueColorAlt);
  height: auto;
  line-height: 1.6;
  opacity: 1;
  background: transparent;
  text-align: center;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.swiper-pagination-bullet-active {
  color: #fff;
  background: transparent;
  border-bottom: 1px solid #fff;
}
a.btn-scrolldown {
  position: absolute;
  bottom: 50px;
  left: 50%;
  z-index: 4;
  width: 40px;
  height: 40px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: border-box;
  cursor: pointer;
}
/* //END => Home Slides */

/* START => About Us */
#about {

}
.sec-aboutus {

}
.img-about {
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-about img {
  height: 100%;
  object-fit: contain;
}
.txt-about h1 {
  color: var(--blueColor);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.5rem;
}
.txt-about p {
  font-size: 13px;
}
.item-tx .h5 {
  color: var(--blueColor);
  font-weight: 600;
  font-size: 15px;
}
.item-tx .h6 {
  color: #444;
  font-size: 14px;
}
.video-background {
  width: 100%;
}
video::-webkit-media-controls {
  display: none;
}
/* //END => About Us */

/* START => NO.1 */
.sec-noOne {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  position: relative;
}
.sec-noOne::before {
  /* content: ""; */
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.box-bg {
}
.sec-noOne .title {
  margin-bottom: 1rem;
}
.sec-noOne .title span {
  color: #fff;
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
}
.sec-noOne .title strong {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: bold;
}
.sec-noOne .txt-noOne p {
  color: #fff;
  font-size: .8rem;
  font-weight: 500;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.e-pattern {
  position: absolute;
  right: 0px;
  bottom: -140px;
  z-index: 9;
}
.e-pattern img {
  max-height: 200px;
	-webkit-animation: ep 3s linear infinite;
	animation: ep 3s linear infinite;
}
@keyframes ep {
	from {
		transform: translate(0, 0px);
		-webkit-transform: translate(0, 0px);
		-moz-transform: translate(0, 0px);
		-ms-transform: translate(0, 0px);
		-o-transform: translate(0, 0px);
}
	65% {
    filter: drop-shadow(0px -80px 50px white);
    -webkit-filter: drop-shadow(0px -80px 50px white);
    transform: translate(0, 30px);
    -webkit-transform: translate(0, 30px);
    -moz-transform: translate(0, 30px);
    -ms-transform: translate(0, 30px);
    -o-transform: translate(0, 30px);
}
	to {
		transform: translate(0, -0px);
		-webkit-transform: translate(0, -0px);
		-moz-transform: translate(0, -0px);
		-ms-transform: translate(0, -0px);
		-o-transform: translate(0, -0px);
}
}
/* //END => NO.1 */

/* START => Categories */
.sec-catgs {
  background-color: var(--blueColor);
  position: relative;
  z-index: 1;
  padding-bottom: 250px;
}
.sec-catgs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../imgs/tringles.png);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: .2;
}
.catgs-title {}
.catgs-title strong {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.8rem;
}
.catgs-title a,
.catgs-title p {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}
.catgs-title a:hover {
  color: #ddd;
}

.categ-items {
  position: absolute;
  bottom: -130px;
  width: 84%;
}
.item-catg {
  background-color: var(--blueColor);
  padding: 1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  height: 265px;
  width: 265px;
  position: relative;
  /* overflow: hidden; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-catg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -5px;
  left: 100%;
  border-bottom: 3px dashed var(--blueColor);
  z-index: -1;
  border-radius: 66%;
  -webkit-border-radius: 66%;
  -moz-border-radius: 66%;
  -ms-border-radius: 66%;
  -o-border-radius: 66%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}
.item-catg:hover::after {
  box-shadow: 0 0px 20px rgb(42 77 160 / 60%);
}
.categ-items .row .col-md-3:last-child .item-catg::after {
  content: unset;
}
.item-catg a.img-catgs {

}
.item-catg a.img-catgs img {
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
  max-height: 200px;
}
.item-catg:hover a.img-catgs img {
  filter: drop-shadow(0px -30px 30px white);
  -webkit-filter: drop-shadow(0px -30px 30px white);
  transform: translateY(-120px) scale(.8) rotate(180deg);
  -webkit-transform: translateY(-120px) scale(.8) rotate(180deg);
  -moz-transform: translateY(-120px) scale(.8) rotate(180deg);
  -ms-transform: translateY(-120px) scale(.8) rotate(180deg);
  -o-transform: translateY(-120px) scale(.8) rotate(180deg);
}
.item-catg a.title-catg {
  color: #fff;
  display: block;
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  transform: scale(.5);
  -webkit-transform: scale(.5);
  -moz-transform: scale(.5);
  -ms-transform: scale(.5);
  -o-transform: scale(.5);
}
.item-catg:hover a.title-catg {
  bottom: calc(265px / 2 + -40px);
  opacity: 1;
  pointer-events: initial;
  user-select: initial;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

/* //END => Categories */

/* START => News */
.sec-news {
  padding-top: 200px;
  padding-bottom: 2rem;
}
.news-title {
  margin-bottom: 2rem;
}
.news-title strong {
  color: var(--blueColor);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.8rem;
}
.news-title a {
  color: #444;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}
.news-title a:hover {
  color: var(--blueColor);
}

.news-slides .swiper-button-next {right: 0;}
.news-slides .swiper-button-prev {left: 0;}
.news-slides .swiper-button-next,
.news-slides .swiper-button-prev {
  display: inline-block;
  vertical-align: top;
  width: 56px;
  height: 56px;
  line-height: 56px;
  background-color: rgba(16, 49, 120, 0.1);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: #fff;
  text-align: center;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.news-slides .swiper-button-next::after,
.news-slides .swiper-button-prev::after {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 56px;
}
.news-slides .swiper-button-next:hover,
.news-slides .swiper-button-prev:hover {
  background-color: var(--blueColor);
  color: #fff;
}

/* .item-blog {}
.item-blog .headblog {
  padding: .2rem ;
}
.item-blog .headblog .date {
  display: block;
}
.item-blog .headblog .title {
  display: block;
  color: #444;
}
.item-blog .imgblog a {}
.item-blog .footerblog {}
.item-blog .footerblog p {}
.item-blog .footerblog a {} */

.blog-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 576px) {
  .blog-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.blog-card .image {
  -webkit-box-flex: 50%;
  -ms-flex: 50%;
  flex: 50%;
  padding-right: 10px;
  height: 195px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.blog-card .image img {
  height: 100%;
  object-fit: contain;
}
.blog-card .content {
  -webkit-box-flex: 50%;
  -ms-flex: 50%;
  flex: 50%;
  text-align: left;
  border-top: 0;
  border: 2px solid #eeeeee;
  padding: 15px 10px;
  border-radius: 3px;
  position: relative;
  margin-top: 10px;
  background-color: #fff;
}
@media (min-width: 576px) {
  .blog-card .content {
    margin-top: 0;
  }
}
.blog-card .content::before {
  content: "";
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 16px solid transparent;
  border-right: 16px solid #fff;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -100%) rotate(90deg);
  -ms-transform: translate(-50%, -100%) rotate(90deg);
  transform: translate(-50%, -100%) rotate(90deg);
}
@media (min-width: 576px) {
  .blog-card .content::before {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    top: 26px;
    left: -32px;
  }
}
.blog-card .content::after {
  content: "";
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 18px solid transparent;
  border-right: 18px solid #eeeeee;
  position: absolute;
  top: -2px;
  left: 50%;
  -webkit-transform: translate(-50%, -100%) rotate(90deg);
  -ms-transform: translate(-50%, -100%) rotate(90deg);
  transform: translate(-50%, -100%) rotate(90deg);
}
@media (min-width: 576px) {
  .blog-card .content::after {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    top: 24px;
    left: -36px;
  }
}
.blog-card .content .content-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 22px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.blog-card .content .title {
  display: block;
  font-size: .9rem;
  text-transform: capitalize;
  line-height: 24px;
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 10px;
  color: #282828;
  font-weight: 600;
}
.blog-card .content .title:hover {
  color: var(--blueColor);
}
.blog-card .content .meta-para {
  display: inline-block;
  text-transform: none;
  margin: 0;
  font-size: 13px;
  position: relative;
  margin-bottom: 21px;
}
.blog-card .content .meta-para i {
  margin-right: 3px;
}
.blog-card .date-badge {
  text-align: center;
  min-width: 40px;
  border-radius: 3px;
  display: block;
}
.blog-card .date-badge .date {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--blueColor);
  line-height: 27px;
  background: #e9e9e9;
}
.blog-card .date-badge .month {
  background: var(--blueColor);
  display: block;
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
  line-height: 18px;
}
.blog-paragraph {
  font-size: 13px;
  font-weight: 500;
}
.blog-card .card-link {
  font-size: .9rem;
  display: block;
  text-transform: capitalize;
  margin-top: 13px;
  color: #333;
  font-weight: 600;
}
.blog-card .card-link:hover {
  color: var(--blueColor);
}
.blog-card .card-link i {
  margin-left: 8px;
  color: var(--blueColor);
}
.blog-card.card-style-list .card-content .title {
  font-size: 18px;
  color: #333;
  line-height: 1.3;
  font-weight: 600;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .blog-card.card-style-list .card-content .title {
    margin-top: 0px;
    font-size: 21px;
  }
}
.blog-card.card-style-grid {
  display: block;
}
.blog-card.card-style-grid .image {
  padding-right: 0;
  padding-bottom: 20px;
}
.blog-card.card-style-grid .title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}
.blog-card a:hover {
  color: #62ab00;
}
/* //END => News */

/* START => Contact Us */
.contact-info {
  padding: 1rem;
  background-color: var(--blueColor);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  height: 100%;
}
.contact-info .img-contact img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.4);
}
.contact-info .inf-content .title {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}
.contact-info .inf-content {
  padding: 1rem;
}
.contact-info p {
  color: #fff;
}
.contact-info i {
  width: 25px;
  text-align: center;
}

.contact-form {
  padding: 1rem;
  background-color: var(--blueColor);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.contact-form .title {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}
.contact-form .form-control {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border: 0;
  height: auto;
  padding: 0.8rem 0.5rem;
  line-height: 1.9;
  font-size: .8rem;
}
.contact-form textarea.form-control {
  height: 130px;
}
.btn-style {
  display: block;
  border: 1px solid #fff;
  outline: unset;
  background-color: transparent;
  /* background-color: var(--blueColor); */
  color: #fff;
  padding: 1rem;
  width: 100%;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.btn-style:hover {
  background-color: var(--blueColorAlt);
  border-color: var(--blueColorAlt);
}
/* //END => Contact Us */

/* START => Footer */
footer {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: var(--blueColor);
  border-radius: 200px 200px 0 0;
  position: relative;
  z-index: 1;

  /*padding-top: 2rem!important;*/

  padding-top: 1rem;

  padding-bottom: 1rem;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../imgs/tringles.png);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: .2;
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}
.footer-item {
  margin-bottom: 14px;
  text-align: center;
}
.footer-item .footer-service h3 {
  color: #fff;
}
.footer-item .footer-logo {

}
.footer-item .footer-logo a {
  display: block;
}
.footer-item .footer-logo img {
  max-height: 50px;
  margin-bottom: auto;
}
.footer-item .footer-logo p {
  color: #fff;
  margin-bottom: 25px;
}
.footer-item .footer-logo ul {
  margin: 0;
  padding: 0;
}
.footer-item .footer-logo ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 5px;
}
.footer-item .footer-logo ul li a {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  color: #fff;
  background-color: var(--blueColorAlt);
  margin-bottom: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.footer-item .footer-logo ul li a:hover {
  background-color: #ffbe00;
}
.footer-item .footer-service h3 {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 30px;
}
.footer-item .footer-service ul li {
  display: block;
  margin-bottom: 5px;
  padding-left: 10px;
}
.footer-item .footer-service ul li a {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.footer-item .footer-service ul li a:hover {
  /* margin-left: 10px; */
  color: #ddd;
}
.footer-item .footer-service ul li:last-child {
  margin-bottom: 0;
}

.social-links {
  justify-content: center;
}
.social-links i {
  color: #FFF;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  transition: .5s;
}
.social-links a:hover i {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.social-links a .fa-facebook-f {
  background-color: #3b5998
}
.social-links a .fa-twitter {
  background-color: #55acee
}
.social-links li .fa-whatsapp {
  background-color: #4dc247
}
.social-links a .fa-instagram {
  background-color: #e95950;
  background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
}
.social-links a .fa-linkedin-in {
  background-color: #007bb5
}
.social-links a .fa-youtube {
  background-color: #e95950
}
.social-links a .fa-snapchat {
  background-color: #ffcd36;
}
.social-links a .fa-tiktok {
  background-color: #010101;
}

/*-- Copyright --*/
.copyright-area {
  background-color: rgba(46, 168, 255, 0.2);
  padding: 8px;
  border-radius: 30px 30px 0 0;
  -webkit-border-radius: 30px 30px 0 0;
  -moz-border-radius: 30px 30px 0 0;
  -ms-border-radius: 30px 30px 0 0;
  -o-border-radius: 30px 30px 0 0;
}
.copyright-area .copyright-item {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.copyright-area .copyright-item p {
  color: #fff;
  font-size: 13px;
  margin-bottom: 0;
  font-weight: bold;
}
.copyright-area .copyright-item p a {
  display: inline-block;
  color: #ffbe00;
  font-weight: 500;
}
.copyright-area .copyright-item p a:hover {
  color: #ffffff;
}
/* //END => Footer */

/****************************************************************************/
/****************************************************************************/
/****************************************************************************/
/****************************************************************************/
/****************************************************************************/
/****************************************************************************/
/****************************************************************************/

.banner-pages {
  padding: 80px 0 10px 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner-pages strong {
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.banner-pages p {
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* START => Product */
.item-product {
  border: 1px solid #eee;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.item-product:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.item-product a.img-product {
  display: block;
  text-align: center;
  padding: 1rem;
  overflow: hidden;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-product a.img-product img {
  max-height: 100%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.item-product:hover a.img-product img {
  /* transform: scale(1.1) rotate(3deg);
  -webkit-transform: scale(1.1) rotate(3deg);
  -moz-transform: scale(1.1) rotate(3deg);
  -ms-transform: scale(1.1) rotate(3deg);
  -o-transform: scale(1.1) rotate(3deg); */
}
.item-product .title-catgs {
  font-size: 10px;
  padding: .2rem .5rem;
  background-color: var(--blueColor);
  color: #fff;
  margin-bottom: .5rem;
  display: inline-block;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.item-product .title-product {
  text-align: center;
  padding: 1.2rem .4rem;
}
.item-product .title-product a {
  display: block;
  color: #4c4f58;
  font-weight: 700;
  font-size: .8rem;
}
.item-product .title-product:hover a {
  color: var(--blueColorAlt);
}
.item-product .title-product strong {
  color: #4c4f58;
  font-weight: 600;
  font-size: .8rem;
}

.sidebar {
  background-color: transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.title-filter {
  background-color: var(--main);
  border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
}
.title-filter strong {
  padding: 10px 1rem;
  color: var(--blueColor);
  font-weight: 600;
  font-size: 1.1rem;
}
.sidebar article {
  padding: 1rem 0;
}
.sidebar article h4 {
  padding: 0 .5rem;
  padding-bottom: 1rem;
  margin-bottom: 0;
}
.sidebar .title-filter h4 {
  font-weight: 600;
  margin-bottom: 0;
  padding: .5rem;
  background-color: var(--main);
  color: #fff;
  text-align: center;
  font-size: 1rem;
}

/* .scroll-y {
  max-height: 300px;
  overflow: hidden;
  overflow-y: scroll;
}
.scroll-y::-webkit-scrollbar {
  width: 12px;
}
.scroll-y::-webkit-scrollbar-track {
  border-radius: 10px;
}
.scroll-y::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--main);
}
.scroll-y::-webkit-scrollbar-thumb:window-inactive {
  background: var(--main);
} */

.sidebar .form-check {
  min-height: auto;
  padding: .5rem;
  margin: auto;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
.sidebar .form-check:last-child {
  border-bottom: 0;
}
.sidebar .form-check .form-check-label {
  margin-left: 0.5rem;
  font-size: 12px;
  font-weight: 600;
  color: #4c4f58;
  text-transform: capitalize;
  cursor: pointer;
  display: block;
  padding: 0.2rem 0;
  position: relative;
  padding-left: 1.5rem;
  margin-left: 0;
  padding-left: 0;
  display: flex;
  align-items: center;
}
.sidebar .form-check .form-check-label .imgcatg {
  width: 50px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}
.sidebar .form-check .form-check-label img {
  height: 100%;
}
.sidebar .form-check a.form-check-label.active,
.sidebar .form-check a.form-check-label:hover {
    color: var(--blueColor);
}
.sidebar .form-check a.form-check-label i {
    position: absolute;
    left: 0;
    top: 6px;
}
.sidebar .form-check a.form-check-label.active .far.fa-circle {
    font-weight: 900;
}
.sidebar .form-check-input {
  cursor: pointer;
  margin-left: 0;
  margin-bottom: .5rem;
  width: 1.5em;
  height: 1.5em;
}
.sidebar .form-check-input {
  border-bottom: 1px solid #ddd;
}
.sidebar .form-check-input:checked {
  background-color: var(--blueColor);
  border-color: var(--blueColorAlt);
}

input[type="submit"].btn-filter {
  all: unset;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: var(--blueColor);
  border: 1px solid var(--blueColor);
  color: #fff;
  padding: 1rem 0;
  display: block;
  width: 70%;
  margin: auto;
  text-align: center;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 1px;
  border-radius: 10px;
  transition: .5s;
  cursor: pointer;
}
input[type="submit"].btn-filter:hover {
  background-color: var(--blueColorAlt);
  border: 1px solid var(--blueColorAlt);
  box-shadow: 0 2px 10px #fff;
  transform: translateY(-5px);
}

i.btn-close-filter,
i.btn-filter {
  display: none;
}
/* //END => Product */

/* START => Product Single */
.slides-images .gallery-top .swiper-slide {
  border: 1px solid #ddd;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
:focus-visible {
  outline: unset;
}
.slides-images a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
}
.slides-images img {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.slides-images .gallery-thumbs {
  margin-top: .5rem;
}
.slides-images .gallery-thumbs .swiper-slide {
  border: 1px solid #ddd;
  cursor: pointer;
  transition: .2s;
  height: 80px;
  overflow: hidden;
}
.slides-images .gallery-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.slides-images .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  border: 2px solid var(--blueColor);
}
.slides-images .gallery-top .swiper-button-next,
.slides-images .gallery-top .swiper-button-prev {
  display: inline-block;
  vertical-align: top;
  width: 56px;
  height: 56px;
  line-height: 56px;
  background-color: rgba(16, 49, 120, 0.1);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: #fff;
  text-align: center;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.slides-images .gallery-top .swiper-button-next::after,
.slides-images .gallery-top .swiper-button-prev::after {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 56px;
}
.slides-images .gallery-top .swiper-button-next:hover,
.slides-images .gallery-top .swiper-button-prev:hover {
  background-color: var(--blueColor);
  color: #fff;
}

.product-details strong.h4 {
  font-size: 1.1rem;
}
.product-details strong.h3 {
  font-weight: bold;
  color: #444;
}
.product-details p {
  color: #444;
  margin-bottom: 0;
}
.product-details .warranty-years {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.product-details .warranty-years img {
  height: 30px;
}
.product-details .warranty-years span {
  color: #444;
  font-size: 14px;
  margin-left: .5rem;
  font-weight: 600;
}
.product-details .lights-type {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.product-details .lights-type span {
  padding: .8rem .4rem;
  text-align: center;
  margin: auto .5rem;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  font-size: 12px;
  color: var(--blueColor);
  font-weight: 800;
  width: 90px;
  pointer-events: none;
  user-select: none;
}
.product-details .lights-type img {
  height: 30px;
  display: block;
  margin: auto;
  margin-bottom: .8rem;
}
.warm_color {
  background-color: #fdda9b;
}
.white_color {
  background-color: #c0e3f3;
}
.product-details .lights-type span b {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.product-details .short-txt p {
  color: #444;
  font-weight: 500;
}

.specifications {
  margin-top: auto;
  margin-bottom: 2rem;
  padding: 2rem 0;
}
.specifications .item-specification {
  display: flex;
  align-items: center;
  border-left: 2px dashed #ddd;
  padding-left: 1rem;
}
.specifications .item-specification img {
  height: 50px;
}
.specifications .item-specification div {
  padding-left: 1rem;
}
.specifications .item-specification div strong {
  display: block;
  text-transform: uppercase;
  color: #333;
}
.specifications .item-specification div span {
  display: block;
  color: #666;
  font-weight: 600;
}

.min-add-button label {
  display: inline-block;
  font-size: 18px;
  color: #666;
  font-weight: bold;
}
.min-add-button a.input-group-addon {
  background-color: var(--blueColor);
  color: #fff;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  display: block;
  border-radius: 50%;
}
.min-add-button a.input-group-addon:focus,
.min-add-button a.input-group-addon:hover {
  background-color: var(--blueColorAlt);
}
.min-add-button .adults {
  color: #555;
  border: 0;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  outline: none;
  width: 70px;
  height: 50px;
  background-color: transparent;
}

.btn-add-cart {
  all: unset;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  outline: none;
  background-color: var(--blueColor);
  color: #fff;
  padding: 0.7rem 1rem;
  border: 0;
  font-weight: 600;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
}
.btn-add-cart:focus,
.btn-add-cart:hover {
  outline: none;
  background-color: var(--blueColorAlt);
  color: #fff;
}

/* .c {
  color: #16aac5;
  background-color: var(--blueColor);
  color: #fdda9b;
  color: #c0e3f3;
} */

.imgs_icon_dimintions {
  display: flex;
  justify-content: end;
  margin-top: 3rem;
}
.imgs_icon_dimintions > div {
  width: auto;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  margin: 5px;
  margin-bottom: 1rem;
}

/* //END => Product Single */


.btn-styling {
	box-shadow: 0px 2px 15px rgba(164, 164, 164, 0.25);
	color: #fff;
	padding: 10px 30px;
	font-weight: 700;
	font-size: 1rem;
	text-transform: capitalize;
	margin-top: 25px;
	display: inline-block;
	position: relative;
	border-radius: 68px;
	-webkit-border-radius: 68px;
	-moz-border-radius: 68px;
	-ms-border-radius: 68px;
	-o-border-radius: 68px;
  z-index: 1;
  background: linear-gradient(253.52deg, var(--blueColor) 8.92%, var(--blueColorAlt) 96.59%);
  border: 0;
}
.btn-styling::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 68px;
  -webkit-border-radius: 68px;
  -moz-border-radius: 68px;
  -ms-border-radius: 68px;
  -o-border-radius: 68px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  background: linear-gradient(253.52deg, var(--blueColorAlt) 8.92%, var(--blueColor) 96.59%);
  opacity: 0;
}
.btn-styling:hover {
	color: #fff;
}
.btn-styling:hover::before {
  opacity: 1;
}

/* START => About Us */
.abou-us-area {
	padding: 80px 0;
	background-color: #fff
}
.popup-gallery {
	display: inline-block;
	position: relative;
}
/*19.5 About Counter*/
.about-counter-area {
	background-color: #F7FFF7;
	padding: 120px 0
}
.abou-us-area {
	padding: 80px 0;
	background-color: #fff
}
.single-count-area strong {
  color: var(--blueColor);
  font-size: 1rem;
}
.section-heading-2 p {
  font-size: 13px;
}
/* //END => About Us */

/* START => Contact Us */
/*========= 16. Contact Us Area CSS =========*/
.contactus-area {
	background-color: #fff;
	padding: 120px 0 100px 0;
}
/*16.1 Contact Us Banner*/
.contact-hero-banner {
	background-color: #fff;
	background-image: url(img/contact-bg.jpg);
	width: 100%;
	height: 50vh;
	background-position: center;
	background-size: cover;
	position: relative
}
.contact-hero-banner img {
	width: 100%;
}
.contact-hero-banner:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 50vh;
	background-color: rgba(0, 0, 0, 0.45);
}
.contact-banner-text {
	position: absolute;
	left: 0;
	top: 55%;
	right: 0;
	text-align: center;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.contact-banner-text h1 {
	color: #fff;
	text-transform: capitalize;
	font-weight: 700;
	font-size: 40px;
}
.contact-banner-text p {
	color: #fff;
}
/*16.2 Contact Pattern*/
.contact-left-bg {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1
}
.contact-left-bg img {
	-webkit-animation: cp1 3s linear infinite;
	animation: cp1 3s linear infinite;
}
@keyframes cp1 {
	from {
		transform: translate(0, 0px);
	}
	65% {
		transform: translate(30px, 0px);
	}
	to {
		transform: translate(0, -0px);
	}
}
.contact-right-bg {
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1
}
.contact-right-bg img {
	-webkit-animation: cp2 3s linear infinite;
	animation: cp2 3s linear infinite;
}
@keyframes cp2 {
	from {
		transform: translate(0, 0px);
	}
	65% {
		transform: translate(-30px, 0px);
	}
	to {
		transform: translate(0, -0px);
	}
}
/*16.3 Single Contact Info*/
.single-contact-area {
	position: relative;
	z-index: 1
}
.single-contact-info {
	background-color: #fff;
	-webkit-box-shadow: 0px 2px 25px rgba(194, 194, 194, 0.25);
	box-shadow: 0px 2px 25px rgba(194, 194, 194, 0.25);
	padding: 30px 0 20px 0;
	text-align: center;
	margin: 0 20px;
}
.info-icon {
	margin-top: -65px;
	margin-bottom: 10px;
}
.info-icon i {
	background: linear-gradient(180deg, #2a4da0 0%, #0f75bd 100%);
	color: #fff;
	height: 70px;
	width: 70px;
	line-height: 70px;
	text-align: center;
	border-radius: 50%;
	font-size: 24px;
}
.info-content h6 {
	background: linear-gradient(238.45deg, #0f75bd 10.32%, #2a4da0 88.6%);
	background-clip: border-box;
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	font-weight: 700;
	text-transform: capitalize;
	font-size: 1.1rem;
}
/*16.4 Contact Form*/
.contact-form-area {
	background: #fff;
	-webkit-box-shadow: 0px 9px 45px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 2px 25px rgba(194, 194, 194, 0.25);
	border-radius: 26px;
	position: relative;
	z-index: 1;
}
.contact-form-heading h3 {
	color: #2a4da0;
	background: linear-gradient(238.45deg, #0f75bd 10.32%, #2a4da0 88.6%);
	background-clip: border-box;
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	text-align: center;
	margin-bottom: 60px;
	font-weight: 700;
}
.contact-form-area input[type='text'] {
	width: 49.6%;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #323657;
	padding: 10px 5px;
	color: #323657
}
.contact-form-area input[type='email'] {
	width: 100%;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #323657;
	margin-top: 60px;
	margin-bottom: 60px;
	color: #323657;
	padding: 10px 5px
}
.contact-form-area textarea {
	width: 100%;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #323657;
	color: #323657;
	padding: 10px 5px
}
/*16.5 Contact Form Button*/
.send-btn {
	text-align: center;
	margin-top: 2rem;
}
/* //END => Contact Us */

/* Sharing Buttons */
.sharing a {
  margin: auto .4rem;
  padding: 10px 0;
  color: #fff;
  border-radius: 40px;
  display: block;
  width: 150px;
  text-align: center;
  font-size: 13px;
}
.sharing a.facebook {
  background-color: #3b5998;
}
.sharing a.twitter {
  background-color: #55acee;
}
.sharing a.linkedin {
  background-color: #007bb5
}
.sharing a i  {
  transition: .5s;
  font-size: 1.2rem;
}
/* //Sharing Buttons */

/* START => Page Cart */
.page-cart table td img {
  max-height: 60px;
}
.page-cart table td a {
  color: #444;
}
.page-cart table td a:hover {
  color: var(--blueColor);
}
.page-cart table form input {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.edit-cart {
  border: 0;
  background-color: var(--blueColor);
  color: #fff;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  font-size: 14px;
}
.edit-cart:hover {
  background-color: var(--blueColorAlt);
}
.page-cart table a.btn-checkout {
  color: #fff;
  background-color: var(--blueColor);
  padding: .5rem 1rem;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  display: inline-block;
}
.page-cart table td:nth-child(2) a.btn-checkout {
  background-color: var(--blueColor);
}
.page-cart table td:nth-child(2) a.btn-checkout:hover,
.page-cart table a.btn-checkout:hover {
  background-color: var(--blueColorAlt);
  color: #fff;
}
/* //END => Page Cart */

/* START => Page Register & Login */
.page-register {
  position: relative;
  overflow: hidden;
}
.page-register .col-md-6.position-relative {
  height: 100vh;
}
.img-register {
  height: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 170px 50px;
}
.img-register::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(42, 77, 160, 0.7);
  z-index: -1;
}
.img-register h2 {font-size: 1.5rem;}
.img-register h4 {font-size: 1rem;}
.page-register .title {
  text-align: center;
}
.page-register .form-title strong {
  color: #444;
  font-weight: 600;
  font-size: 1.5rem;
}
.page-register .form-title span {
  color: var(--mainColor);
  font-weight: bold;
}

.form-register {
  padding: 2rem 3rem;
  position: absolute;
  top: 50%;
  left: -40px;
  background-color: #fff;
  z-index: 1;
  width: 94%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  border-radius: 3%;
  -webkit-border-radius: 3%;
  -moz-border-radius: 3%;
  -ms-border-radius: 3%;
  -o-border-radius: 3%;
  overflow: hidden;
}
.form-register::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  height: 90px;
  width: 90px;
  background: linear-gradient(238.45deg, #2a4da0 10.32%, #0f75bd 88.6%);
  z-index: -1;
  box-shadow: 0 0 10px #2a4da0;
  border-radius: 40px 0 40px 80px;
  -webkit-border-radius: 40px 0 40px 80px;
  -moz-border-radius: 40px 0 40px 80px;
  -ms-border-radius: 40px 0 40px 80px;
  -o-border-radius: 40px 0 40px 80px;
}
.form-register::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  height: 100px;
  width: 100px;
  background: linear-gradient(238.45deg, #2a4da0 10.32%, #0f75bd 88.6%);
  z-index: -1;
  box-shadow: 0 0 10px #2a4da0;
  border-radius: 0 80px 40px 0px;
  -webkit-border-radius: 0 80px 40px 0px;
  -moz-border-radius: 0 80px 40px 0px;
  -ms-border-radius: 0 80px 40px 0px;
  -o-border-radius: 0 80px 40px 0px;
}
.form-register .form-control {
  padding: .8rem 1rem;
  font-size: .8rem;
}

.form-register.form-login .form-control {
  border-left: 5px solid var(--blueColor);
}
.form-register.form-login .group_input {
  position: relative;
}
.form-register.form-login .form-control {
  padding: 1rem 1rem;
  padding-left: 4rem;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.group_input i {
  position: absolute;
  top: 50%;
  left: 20px;
  font-size: 1.5rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  border-right: 1px solid #ddd;
  padding-right: 1rem;
  color: #666;
}
.link-forget {
  color: #444;
  font-weight: 600;
  font-size: 14px;
  text-decoration: underline;
}

.form-register .btn-more {
  padding: .8rem 3.5rem;
}

.link-login-reg a {
  color: #444;
  display: block;
}
.link-login-reg a.link-forget {
  color: var(--mainColor);
  margin-bottom: 1rem;
}
.link-login-reg a:hover {
  color: var(--mainColor);
}

/*****************************************************************************/
/*****************************************************************************/
.page-Confirmation {
  height: 100vh;
}
.box-confirms .h3 {
  color: var(--mainColor);
  font-weight: 600;
}
.box-confirms .h5 {
  color: #444;
}
.inputs-confirms input {
  border-radius: 50%;
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  outline: none;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--mainColor);
}
.link-login-reg a.btn-backhome {
  background-color: transparent;
  border: 1px solid var(--secondColor);
  color: var(--secondColor);
  padding: 1rem;
  display: inline-block;
  border-radius: 5px;
}
.link-login-reg a.btn-backhome:hover {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
  color: #fff;
}
/* //END => Page Register & Login */

/* START => Page Checkout */
.box-cart strong {
  background-color: var(--blueColor);
  color: #fff;
  margin: 0;
  padding: 1rem;
  border-radius: 30px;
}
.box-cart .item {
  position: relative;
  padding: .5rem .5rem;
  border-bottom: 1px solid #ddd;
  display: flex;
}
.box-cart .item:last-child {
  border-bottom: 0;
}
.box-cart .item .img {
  width: 90px;
  height: 90px;
  /* border-right: 1px solid #ddd; */
}
.box-cart .item .img img {
  object-fit: contain;
  height: 100%;
}
.box-cart .item .txt {
  padding-left: .5rem;
}
.box-cart .item .txt a {
  padding: 0;
  color: #333;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 148px;
}
.box-cart .item .txt a:hover {
  color: var(--blueColor);
}
.box-cart .item .txt p {
  margin: 0;
}
.box-cart .item .txt p.qty {
  font-size: 14px;
}
.box-cart .item .txt p.price {
  font-size: 15px;
  color: var(--blueColor);
  font-weight: 500;
}
.box-cart .scroll-y {
  max-height: 240px;
}
.box-cart .total {
  padding: 1rem;
  background-color: var(--blueColor);
  border-radius: 30px;
}
.box-cart .total strong {
  padding: 0;
  color: #fff;
  background-color: transparent;
  font-size: 1.1rem;
}
.box-cart .total strong.price-total {
  font-size: 1.5rem;
}

.li-promocode form {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}
.li-promocode input {
  width: 100%;
  padding: 1rem;
  padding-right: 7rem;
  border-radius: 30px;
  border: 1px solid #ddd;
  font-size: 1.2rem;
  text-align: center;
}
.li-promocode input:focus {
  border: 1px solid var(--blueColor);
}
.li-promocode button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border: 0;
  outline: none;
  width: 100px;
  background-color: var(--blueColor);
  color: #fff;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.li-promocode button:hover {
  background-color: var(--blueColorAlt);
}

.payment-checkout {
  border: 1px solid #eee;
  padding: 2rem 3rem;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  height: auto;
}
.payment-checkout img {
  display: block;
  margin: auto;
  height: 25px;
}
.payment-checkout .selectric .label,
.payment-checkout .form-control {
  height: auto;
  padding: .7rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.payment-checkout .selectric .button {
  height: 100%;
}
.payment-checkout .selectric {
  background: transparent;
  border: 0;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
}
.payment-checkout .selectric .button {
  background-color: transparent;
}
.btn-checkout {
  all: unset;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: var(--blueColor);
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  transition: 0.2s;
  margin: auto;
  display: inline-block;
  padding: 1rem;
  border-radius: 30px;
  cursor: pointer;
}
.btn-checkout:hover {
  background-color: var(--blueColorAlt);
  color: #fff;
}

.address-details {
  border: 1px solid #ddd;
  padding: 1rem;
  margin-bottom: 2rem;
}
.address-details .title img {
  max-height: 30px;
}
.address-details .title strong {
  color: #333;
  margin: auto .5rem;
}
.address-details a {
  color: #000;
  padding: .3rem .5rem;
  border-radius: 4px;
  font-size: 14px;
  text-transform: uppercase;
}
.address-details a:hover {
  background-color: var(--blueColor);
  color: #fff;
}
.address-details p {
  color: #333;
  margin-bottom: 0;
  line-height: 1.8;
}

.form-chkout2 .form-check {
  padding-left: 0;
}
.form-chkout2 .labels {
  padding: 1rem;
  padding-left: 2rem;
  border: 1px solid #ddd;
  margin-bottom: .5rem;
  cursor: pointer;
}
.form-chkout2 .custom-control-label {
  font-size: 1rem;
  display: block;
  cursor: pointer;
}
.form-chkout2 .form-check p {
  color: #333;
  border: 1px solid #ddd;
  padding: .5rem 1rem;
  box-shadow: 0 0 10px #ddd;
}

.scroll-y {
  max-height: 300px;
  overflow: hidden;
  overflow-y: scroll;
}
.scroll-y::-webkit-scrollbar {
  width: 4px;
}
.scroll-y::-webkit-scrollbar-track {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.scroll-y::-webkit-scrollbar-thumb {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  background: var(--blueColor);
}
.scroll-y::-webkit-scrollbar-thumb:window-inactive {
  background: var(--blueColorAlt);
}

/* ============================================== */
.page-congrats {}
.page-congrats img {
  max-height: 200px;
  margin-bottom: 1.3rem;
}
.page-congrats strong {
  color: #444;
  font-size: 3rem;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 1rem;
}
.page-congrats p {
  color: #222;
  font-size: 1rem;
}
.page-congrats p span {
  color: var(--blueColor);
}
.btn-backshop {
  padding: 1rem;
  display: inline-block;
  margin-top: 2rem;
  background-color: var(--blueColor);
  color: #fff;
  box-shadow: 0 0 10px rgb(255 255 255 / 10%);
  border-radius: 4px;
}
.btn-backshop:hover {
  background-color: var(--blueColorAlt);
  color: #fff;
}

.my_addresses .btn_edit_address,
.my_addresses .btn_del_address {
  position: absolute;
  top: 8px;
  color: var(--blueColor);
  font-size: 20px;
  border: 0;
  background-color: transparent;
}
.my_addresses .btn_edit_address {
  right: 40px;
}
.my_addresses .btn_del_address {
  right: 5px;
}
.my_addresses .btn_del_address:hover {
  color: #f00;
  background-color: #fff;
}
.my_addresses .btn.btn-primary {
  font-size: 13px;
}
.my_addresses label {
  cursor: pointer;
  display: block;
  margin-bottom: 1rem;
}
.my_addresses .card {
  flex-direction: row;
}
.my_addresses .card:hover {
  background-color: #eee;
}
.my_addresses .form-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  padding-left: 0;
}
.my_addresses .form-check .form-check-input {
  margin: auto;
  padding: 0;
  border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  -ms-border-radius: 50% !important;
  -o-border-radius: 50% !important;
  width: 1.5em;
  height: 1.5em;
}
/* //END => Page Checkout */

/* START Page => Profile */
.box-profile {
  /* padding: 0 2rem; */
}
.title-box-profile strong {
  color: #333;
  font-size: 1.3rem;
}
.title-box-profile span {
  color: #333;
}
.sidebar-profile {
  border-right: 1px solid #333;
}
.sidebar-profile strong {
  color: #333;
  font-weight: bold;
  font-size: 1.3rem;
}
.sidebar-profile ul {
  padding: 0 .5rem;
}
.sidebar-profile ul li {
  display: block;
  margin-bottom: .5rem;
}
.sidebar-profile ul li a {
  padding: .8rem .5rem;
  display: block;
  color: #333;
  font-size: .8rem;
  position: relative;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.sidebar-profile ul li a i {
  width: 40px;
  text-align: center;
}
.sidebar-profile ul li a.active,
.sidebar-profile ul li a:hover {
  background-color: var(--blueColor);
  color: #fff;
}
.sidebar-profile ul li:last-child a:hover {
  background-color: var(--blueColorAlt);
}
.profile-details form label {
  color: #333;
  font-weight: 600;
  font-size: .8rem;
  margin-bottom: .5rem;
}
.profile-details form .selectric .label,
.profile-details form .form-control {
  padding: .8rem 1rem;
  outline: none;
  line-height: 1.6;
}
.profile-details form .form-control {
  height: auto;
  padding: .5rem 1rem;
  font-size: .8rem;
}
.profile-details form .selectric {
  border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
}
.profile-details form .selectric .button {
  height: 100%;
}
.profile-details form .form-control:focus {
  box-shadow: 0 5px 10px #ddd;
}
.selectric .label {
  margin: 0 38px 0 10px;
  font-size: 15px;
  line-height: normal;
  color: #444;
  height: auto;
  padding: .8rem 1rem;
}
.cart-section .table a.title {
  color: var(--blueColor);
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.cart-section .table a.title:hover {
  color: var(--blueColor);
}
.btn-toggle-menu {
  display: none;
}
.delete_item {
  cursor: pointer;
  color: #333;
  padding: 4px;
  border-radius: 2px;
  opacity: .5;
}
.delete_item:hover {
  color: #f00;
  opacity: 1;
}
.profile-details .cart-section tbody tr td {
  min-width: auto;
  font-size: 14px;
}
.cart-section tbody tr td a img,
.cart-section tbody tr td p img {
  height: 50px;
}
.cart-section tbody tr td a,
.cart-section tbody tr td h2 {
  font-size: calc(12px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.profile-details .cart-section thead th {
  font-size: 14px;
  text-transform: capitalize;
}
.profile-details .cart-section .btn.btn-primary {
  color: #fff;
  font-size: 13px;
  padding: .3rem 0.2rem;
  background-color: var(--blueColor);
  border: 0;
  outline: none;
}
.profile-details .cart-section .btn.btn-primary:hover {
  background-color: var(--blueColorAlt);
}
.profile-details .btn-checkout {
  padding: .5rem 1rem;
  font-size: .8rem;
}

/*======= Badge-color css starts  ======= */
.badge-primary {
  background-color: #00baf2;
}
.badge-secondary {
  background-color: #314da7;
}
.badge-success {
  background-color: #11d89c;
}
.badge-danger {
  background-color: #e26767;
}
.badge-info {
  background-color: #00a8ff;
}
.badge-light {
  background-color: #f8f8f9;
}
.badge-dark {
  background-color: #2a3142;
}
.badge-warning {
  background-color: #00ced1;
}
.order-delevary-times div {
  text-align: center
}
.order-delevary-times .item-time {
  position: relative
}
.order-delevary-times .item-time svg {
  width: 60px;
  height: 60px
}
.order-delevary-times .item-time i {
  color: var(--blueColor);
}
.order-delevary-times .item-time.active * {
  color: #2ecc71;
}
.order-delevary-times .item-time.active-filed * {
  color: #f00;
}
.order-delevary-times .s-status {
  position: relative;
  width: 30%
}
.order-delevary-times .s-status span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  border: 1px dashed #2ecc71;
  display: inline-block
}
.order-delevary-times .item-time.active+.s-status span {
  border-color: #2ecc71;
}
.order-delevary-times .item-time:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
  width: 70%;
  border: 1px dashed var(--blueColorAlt)
}
.order-delevary-times .item-time.active::after {
  border-color: #2ecc71
}
.order-delevary-times .txt {
  margin-top: 1rem
}
.order-delevary-times .txt strong {
  display: block
}
.order-delevary-times .txt span {
  display: block
}


.points {
  background-color: #fff;
  box-shadow: 0 0 10px #ddd;
  padding: 2rem 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.points strong.title {
  color: #666;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
}
.points strong.points_nums {
  color: #7acdd6;
  display: block;
}
.points strong.points_nums span.span_point {
  color: var(--blueColor);
}
.points strong.points_nums span.span_money {
  color: var(--blueColorAlt);
}
.icon-wallets {
  max-height: 100px;
}
.points .btn-primary {
  margin-top: 1rem;
  color: #fff;
  background-color: var(--blueColor);
  border: 0;
}
.points .btn-primary:hover {
  background-color: var(--blueColorAlt);
}
.points .btn-primary.unactive {
  text-decoration: line-through;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 767px) {
  .points {
    padding: 1rem 0 0 0;
  }
  .icon-wallets {
    max-height: 70px;
  }
  .p_xs {
    text-align: center;
    padding: 1rem 5px;
  }
  .points strong.title {
    font-size: 13px;
  }
  .points strong.points_nums {
    font-size: 1rem;
  }
}
/* //END Page => Profile */

.page-item.active .page-link {
  background-color: var(--blueColor);
  border-color: var(--blueColor);
}
.page-link {
  color: var(--blueColor);
}

.nav_pagination {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.specifications > .container > .row > div:nth-child(1) {order: 9;}
.specifications > .container > .row > div:nth-child(2) {order: 6;}
.specifications > .container > .row > div:nth-child(3) {order: 3;}
.specifications > .container > .row > div:nth-child(4) {order: 8;}
.specifications > .container > .row > div:nth-child(5) {order: 5;}
.specifications > .container > .row > div:nth-child(6) {order: 2;}
.specifications > .container > .row > div:nth-child(7) {order: 7;}
.specifications > .container > .row > div:nth-child(8) {order: 4;}
.specifications > .container > .row > div:nth-child(9) {order: 1;}


.title_desc h5 {
    font-weight: 700;
    font-size: 16px;
}
.txt_style {
  background: #c3c3c3;
  color: #00396a;
  padding: .8rem 1rem;
  font-size: .9rem;
  font-weight: 600;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}



