@import '../css/ie7.css';
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

@font-face {
  font-family: "TradeGothicLightLight";
  src: url("../fonts/TradeGothicLightLight.eot?#iefix");
  font-weight: normal;
  font-style: normal;
}

.headerSec h1 {
  font-size: 20px;
}

/****************************************************************************************
@
@	Global Style and Reset
@
****************************************************************************************/
/* Global Styles */
::-moz-selection {
  background: #000;
  color: #fff;
}

::selection {
  background: #000;
  color: #fff;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
}

p {
  line-height: 24px;
}

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

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  color: #000;
  cursor: pointer;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a img {
  border: none;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 4px #00B0B8;
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #4c4c4c;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.darkHeader {
  background-color: #f4f4f4;
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 5px 8px 0 rgba(0, 0, 0, 0.14), 0 1px 14px 0 rgba(0, 0, 0, 0.12);
  padding-top: 20px !important;
  padding-bottom: 17px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  position: fixed;
  width: 100%;
  animation: smoothScroll 1s forwards;
  z-index: 9;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* 
  ---------------------------------------------
  preloader
  --------------------------------------------- 
  */
#preloader {
  overflow: hidden;
  background-image: linear-gradient(127deg, #fff 0%, #00B0B8 91%);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 9999;
  color: #fff;
}

#preloader .jumper {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px;
}

#preloader .jumper>div {
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  width: 50px;
  height: 50px;
  animation: jumper 1s 0s linear infinite;
}

#preloader .jumper>div:nth-child(2) {
  animation-delay: 0.33333s;
}

#preloader .jumper>div:nth-child(3) {
  animation-delay: 0.66666s;
}

@keyframes jumper {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  5% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes dyinglight {
  15% {
    transform: scale(1.6);
  }

  50% {
    transform: rotate(-89deg);
  }

  100% {
    transform: rotate(-90deg);
  }
}

.dl {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
}

.dl__square {
  display: block;
  width: 50px;
  height: 50px;
  background: #fff;
}

.dl__container {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  transform-origin: 50% 50% 0;
  animation: dyinglight 1s ease infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.dl__corner--top:before,
.dl__corner--top:after,
.dl__corner--bottom:before,
.dl__corner--bottom:after {
  position: absolute;
  width: 17px;
  height: 17px;
  color: #fff;
  content: "";
}

.dl__corner--top:before {
  border-left: 1px solid;
  border-top: 1px solid;
  top: -6px;
  left: -6px;
}

.dl__corner--top:after {
  border-right: 1px solid;
  border-top: 1px solid;
  top: -6px;
  right: -6px;
}

.dl__corner--bottom:before {
  border-left: 1px solid;
  border-bottom: 1px solid;
  bottom: -6px;
  left: -6px;
}

.dl__corner--bottom:after {
  border-right: 1px solid;
  border-bottom: 1px solid;
  bottom: -6px;
  right: -6px;
}

button:focus {
  outline: 0px dotted !important;
  outline: 0px auto -webkit-focus-ring-color !important;
}

#back2Top {
  position: fixed;
  bottom: 2px;
  right: 2px;
  z-index: 999;
}

/*----------------------*/
.container {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 16px;
}

/*==================================css reset==================================*/
/****************************************************************************************
@
@	Styles
@
****************************************************************************************/
.headerSec {
  position: relative;
}

.headerSec .headerTop {
  background: #053040;
  color: #fff;
  padding: 20px 0;
}

.headerSec .headerTop ul {
  margin-bottom: 0;
}

.headerSec .headerTop .headerTopInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.headerSec .headerTop .headerTopInner .leftUl {
  display: flex;
}

.headerSec .headerTop .headerTopInner .leftUl li {
  margin-right: 60px;
}

.headerSec .headerTop a {
  color: #fff;
}

.headerSec .dropdown-submenu {
  position: relative;
}

.headerSec .dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 6px;
  top: 0.8em;
}

.headerSec .dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.1rem;
  margin-right: 0.1rem;
}

.headerSec .navbar-brand img {
  max-width: 212px;
}

.bannerSec {
  position: relative;
}

.bannerSec .bannerTxt {
  width: 1170px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.bannerSec .bannerTxt h1 {
  font-size: 60px;
  font-weight: bold;
}

.bannerSec .bannerTxt h2 {
  font-size: 60px;
  font-weight: 300;
}

.bannerSec .bannerTxt p {
  width: 50%;
  font-weight: 300;
}

/*####################### ENd MENU ########################*/
.top-scl-icn li {
  display: inline-block;
}

.top-scl-icn li a {
  display: inline-block;
  position: relative;
  margin: 0 auto 0 auto;
  border-radius: 50%;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 24px;
}

.top-scl-icn li:hover i {
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -ms--transform: rotate(360deg);
  transform: rotate(360deg);
  transition: all 0.2s;
}

.top-scl-icn li i {
  transition: all 0.8s;
}

.prdctBx {
  background: #F0F2F4;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
}

.prdctBx.mdl {
  background-color: rgba(0, 176, 184, 0.9);
}

.prdctBx.mdl img {
  max-width: 281px;
}

.prdctBx p {
  text-align: left;
}

.newArival::after {
  content: "NEW ARRIVALS";
  position: absolute;
  top: 383px;
  width: 1170px;
  height: 150px;
  font-size: 163px;
  left: 50%;
  transform: translateX(-50%);
  color: #E5EAEA;
}

.prdctBx.mdl {
  position: relative;
}

.prdctBx.mdl img {
  position: relative;
  z-index: 2;
}

.newArival {
  position: relative;
  padding-top: 50px;
}

.newArival .container-xl {
  position: relative;
}

.newArival .gosec {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.newArival .gosec h6 {
  margin-bottom: 0;
}

.newArival h3 {
  color: #686868;
  padding-bottom: 50px;
  text-align: center;
  max-width: 60%;
  margin: 0 auto;
  line-height: 28px;
  font-size: 16px;
}

.cmnTitle {
  text-align: center;
  font-weight: bold;
}

.cmnTitle span {
  color: #00B0B8;
  font-weight: normal;
}

.subTitle {
  color: #686868;
  padding-bottom: 30px;
  text-align: center;
  max-width: 60%;
  margin: 0 auto;
  line-height: 28px;
  font-size: 16px;
}

.aboutSec {
  position: relative;
  background-size: cover !important;
  background-attachment: fixed !important;
  color: #fff;
  padding: 50px 0;
}

.aboutSec img {
  border-radius: 15px;
}

.aboutSec h6 {
  font-size: 30px;
  color: #00DCE6;
}

.aboutSec h2 {
  font-size: 40px;
}

.aboutSec p {
  color: #B8B8B8;
}

.aboutSec .numberSec {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.aboutSec .numberSec .countWrap {
  margin-right: 20px;
}

.aboutSec .numberSec .countWrap h5 {
  color: #00DCE6;
  font-size: 40px;
}

.btn1 {
  min-width: 203px;
  min-height: 60px;
  color: #fff;
  background: #00B0B8;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 600;
}

.btn1 i {
  margin-left: 10px;
}

.trendingPendingSec {
  padding-top: 5%;
  padding-bottom: 0%;
}

.trendingPendingSec .imagsec {
  height: 223px;
}

.trendingPendingSec .imagsec img {
  max-height: 220px;
  max-width: 100%;
  cursor: pointer;
}

.trendingPendingSec .imagsec {
  text-align: center;
  background-color: #EBF3F5;
  padding: 15px;
  margin: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.topleft .pdctImg img {
  max-height: 148px;
}

.prdctBx.topleft {
  margin-bottom: 138px;
  position: relative;
  z-index: 3;
  min-height: 229px;
}

.prdctBx.topleft p {
  margin-bottom: 0;
  text-align: left;
  color: #7B8297;
}

.productBx {
  position: relative;
  padding-top: 1px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

.productBx .imagsec {
  text-align: center;
  background-color: #EBF3F5;
  padding: 15px;
  margin: 15px;
  overflow: hidden;
}

.productBx .txtSec {
  padding: 15px;
}

.productBx .txtSec h4 {
  font-size: 16px;
  font-weight: 600;
}

.productBx .txtSec p {
  color: #7B8297;
  font-size: 14px;
}

.productBx a {
  display: block;
  background-color: #00B0B8;
  text-align: center;
  color: #fff;
  padding: 10px;
}

.productBx p {
  color: #7B8297;
  margin-bottom: 0;
}


.footerSec {
  background: #001A24;
  padding-top: 100px;
  color: #BBBBBB;
}

.footerSec .quickLink li {
  margin-bottom: 10px;
}

.footerSec .cntactftr li {
  margin-bottom: 10px;
}

.footerSec h2 {
  color: #00B0B8;
  font-size: 28px;
  margin-bottom: 30px;
  margin-top: 15px;
}

.footerSec a {
  color: #BBBBBB;
}

.footerSec .footerLogo {
  margin-bottom: 30px;
  display: block;
}

.footerSec .copyright {
  text-align: right;
  border-top: 1px solid #001A24;
  padding: 15px 0;
}

.getAccesWrap {
  margin-top: 50px;
}

.getAccesWrap .getAcces {
  background: #00B0B8;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: -60px;
  z-index: 9;
  position: relative;
}

.getAccesWrap .getAcces p {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 28px;
}

.getAccesWrap .getAcces .input-group {
  border: 1px solid #fff;
  border-radius: 10px;
  overflow: hidden;
}

.getAccesWrap .getAcces .right {
  background-color: #053040;
}

.getAccesWrap .getAcces .form-control {
  background: transparent;
  border: 0;
}

.getEstimate {
  padding: 50px 0;
}

.testimonialBx {
  padding: 20px;
  border-radius: 15px;
  background-color: #fff;
}

.testimonialBx .imgTxtSec {
  display: flex;
  justify-content: space-between;
}

.testimonialBx .imgTxtSec h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}

.testimonialBx .imgTxtSec h6 {
  font-size: 60px;
  font-size: 14px;
  color: #7A7A7A;
}

.testimonialBx p {
  font-size: 14px;
  color: #7A7A7A;
}

.testimonialBx .imgSec {
  width: 20%;
  margin-right: 10px;
}

.testimonialBx .imgSec img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.testimonialBx .txtSec {
  width: 100%;
}

.youSaid {
  background: #F7F7F7;
  padding: 50px 0;
}

.commnTitle {
  font-size: 40px;
  color: #053040;
  font-weight: bold;
  text-align: center;
}

.commnTitle span {
  color: #00B0B8;
  font-weight: 300;
}

.subtitle {
  width: 70%;
  margin: 0 auto;
  text-align: center;
  color: #686868;
  text-align: center;
  margin-bottom: 40px;
}

.blogSec {
  padding: 50px 0;
}

.blogBx h6 {
  color: #7B8297;
  font-size: 14px;
}

.blogBx h5 {
  font-weight: 600;
  font-size: 18px;
}

.blogBx .textSec {
  padding: 10px;
}

.blogBx .textSec a {
  color: #00B0B8;
}

.servcBx {
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
}

.servcBx .textBx {
  padding: 15px;
}

.servcBx h6 {
  font-size: 22px;
  color: #053040;
  font-weight: bold;
}

.ourService {
  background: #F7F7F7;
  padding: 50px 0;
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
  font-size: 18px;
  font-weight: 600;
  color: #000;
  padding-left: 2rem;
  padding-right: 2rem;
}

.innerBanner h1 {
  color: #00B0B8;
}

.innerBanner h1 span {
  color: #fff;
}

.serviceSec .cmnTitle {
  text-align: left;
}

.serviceSec ul li {
  font-weight: 600;
  margin-bottom: 5px;
}

.serviceSec .flex-row-reverse {
  background-color: #F7F7F7;
}

.serviceSecB {
  background-color: #F7F7F7;
}

.contactSec {
  background-color: #F2FBFF;
  padding: 100px 0;
}

.contactSec h3 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.contactSec .form-control {
  border: 1px solid #22BECA;
  background: transparent;
  min-height: 52px;
}

.contactSec h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 24px;
}

.contactSec h4 {
  font-size: 22px;
  margin-top: 30px;
  color: #22BECA;
}

.contactSec p {
  color: #011625;
}

.contactSec .left h6 {
  color: #22BECA;
  font-size: 16px;
}

.contactSec .left a {
  color: #000;
  font-weight: 600;
}

.contactSec .left p {
  font-weight: 500;
}

.countSec {
  display: flex;
}

.countSec h3 {
  font-size: 34px;
  color: #22BECA;
  font-weight: bold;
}

.countSec p {
  color: #1A1818;
}

.countSec div {
  margin-right: 20px;
}

.aboutInr .flex-row-reverse {
  background-color: #fff;
}

.aboutInr .countSec {
  text-align: center;
}

.aboutInr h4 {
  font-weight: 600;
  font-size: 25px;
  padding-bottom: 10px;
}

.ourVAlu {
  background: url(../images/m2.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-color: #000;
  color: #fff;
  padding-top: 70px;
  padding-bottom: 50px;
}

.ourVAlu .cmnTitle {
  margin-bottom: 20px;
}

.ourVAlu .valuBx {
  display: flex;
}

.ourVAlu .icnSec {
  width: 56px;
  display: inline-flex;
}

.ourVAlu .icnSec {
  min-width: 56px;
  display: inline-block;
  margin-right: 10px;
}

.ourVAlu h6 {
  font-size: 26px;
}

.ourVAlu p {
  font-weight: 300;
}

.bannerSec.innerBanner {
  background-size: cover !important;
  min-height: 426px;
}

.owl-prev {
  position: absolute;
  left: -30px;
}

.owl-next {
  position: absolute;
  right: -30px;
}

.owl-theme .owl-nav {
  margin-top: 0;
  position: absolute;
  width: 100%;
  top: 42%;
  transform: translateY(-50%) !important;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent;
}

.owl-theme i {
  background-color: #fff;
  font-size: 26px;
  font-weight: bold;
  color: #000;
  width: 37px;
  height: 37px;
  line-height: 37px;
  border-radius: 50px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}

.map iframe {
  height: 573px;
}

/*# sourceMappingURL=main.css.map */

.home_slider_section {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  position: relative;
}

.home_slider_section .carousel-caption {
  position: absolute;
  right: 8%;
  left: 8%;
  top: 50%;
  color: #fff;
  text-align: left;
  transform: translateY(-50%);
  bottom: inherit;
  width: 100%;
  max-width: 700px;
}

.home_slider_section .carousel-caption h5 {
  font-weight: 700;
  font-size: 50px;
}

.home_slider_section .carousel-caption h5 strong {
  font-weight: 300;
}

.home_slider_section .carousel-caption p {
  font-size: 15px;
  margin-top: 25px;
}

.home_about_pannel {
  background: url(../images/about-bg.jpg) center no-repeat;
  background-attachment: fixed;
  padding: 80px 0;
  background-size: cover;
}

.about_img img {
  width: 100%;
  border-radius: 18px;
}

.home_about_text {
  display: block;
  width: 100%;
}

.home_about_text .top_pannel {
  display: block;
  width: 100%;
}

.home_about_text .top_pannel h5 {
  color: #00DCE6;
  font-size: 25px;
}

.home_about_text .top_pannel h4 {
  font-size: 35px;
  color: #fff;
  margin-top: 20px;
}

.home_about_text .top_pannel p {
  color: #B8B8B8;
  font-size: 15px;
  margin-top: 20px;
}

.home_about_text .bottom_pannel {
  display: block;
  width: 100%;
  margin-top: 20px;
}

.home_about_text .bottom_pannel h2 {
  color: #00DCE6;
  font-size: 40px;
  font-weight: 700;
}

.home_about_text .bottom_pannel p {
  color: #B8B8B8;
  font-size: 15px;
}

.home_service_section {
  background: #F7F7F7;
  padding: 80px 0;
}

.home_service_boxes {
  display: block;
  width: 100%;
}

.home_service_box1 {
  display: block;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 10px 30px #00000029;
  margin-top: 30px;
  overflow: hidden;
}

.home_service_box1 .img_area {
  display: block;
  width: 100%;
}

.home_service_box1 .img_area img {
  float: left;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.home_service_box1 .text_area {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  text-align: center;
  padding: 20px 15px;
}

.home_service_box1 .text_area h3 {
  font-size: 25px;
  font-weight: 700;
  color: #053040;
}

.home_service_box1 .text_area p {
  color: #686868;
}

.home_blog_section {
  padding: 80px 0;
}

.home_blog_box1 {
  display: block;
  width: 100%;
  box-shadow: 0px 0px 8px #201A1A1C;
  border-radius: 15px;
  overflow: hidden;
}

.home_blog_box1 .img_area {
  display: block;
  width: 100%;
}

.home_blog_box1 .img_area img {
  float: left;
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}

.home_blog_box1 .text_area {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  padding: 20px 15px;
}

.home_blog_box1 .text_area h3 {
  color: #7B8297;
  font-size: 14px;
}

.home_blog_box1 .text_area h2 {
  font-size: 18px;
}

.home_blog_box1 .text_area p {
  color: #7B8297;
  font-size: 14px;
}

.home_blog_box1 .text_area a {
  color: #00B0B8;
  font-weight: 700;
}

.testimonial_section {
  display: block;
  padding: 70px 0;
  background: #F7F7F7;
}

.testimonial_box1 {
  display: block;
  width: 100%;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 0px 8px #065A8E24;
  padding: 20px;
  overflow: hidden;

}

.testimonial_box1 .top {
  display: flex;
  float: left;
  width: 100%;
}

.testimonial_box1 .top .profile_img {
  flex: 50px 0 0;
  width: 50px !important;
  max-width: 50px !important;
  height: 50px;
  border-radius: 100%;
}

.testimonial_box1 .top .right_text {
  display: block;
  float: left;
  width: 100%;
  padding: 0 0 0 12px;
}

.testimonial_box1 .top .right_text h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 !important;
}

.testimonial_box1 .top .right_text p {
  font-size: 14px;
  color: #ABABAB;
  margin: 0 !important;
  padding: 0 !important;
}

.testimonial_box1 .top .right_text i {
  box-shadow: none;
  font-size: 13px;
  margin: 0px;
  padding: 0px;
  width: auto;
  height: auto;
  line-height: normal;
  color: #FFD700;
}

.testimonial_box1 .bottom {
  float: left;
  width: 100%;
  margin-top: 10px;
}

.testimonial_box1 .bottom p {
  color: #7A7A7A;
  font-size: 14px;
}

.gray_bg {
  background: #F7F7F7;
}

.newtrendingPendingSec {
  padding: 50px 0;
}

.home_new_arrival_section {
  padding: 60px 0;
}

.home_new_box1 {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background: #F0F2F4;
  border-radius: 15px;
  padding: 15px;
}

.home_new_box1 .img_area {
  display: block;
  float: left;
  width: 100%;
  height: 180px;
  text-align: center;
}

.home_new_box1 .img_area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.home_new_box1 .text_area {
  display: flex;
  float: left;
  width: 100%;
  margin-top: 12px;
}

.home_new_box1 .text_area .left {
  display: block;
  float: left;
  width: 100%;
  padding-right: 15px;
}

.home_new_box1 .text_area .left h2 {
  font-size: 18px;
  font-weight: 700;
}

.home_new_box1 .text_area .left p {
  font-size: 15px;
  font-weight: 700;
  color: #7B8297;
}

.home_new_box1 .text_area .right {
  flex: 0 0 28px;
}

.new_arrival_but {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  font-size: 12px;
  border-radius: 100%;
}

.new_arrival_but:hover {
  background: #00B0B8;
  color: #fff;
}



.home_new_box2 {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background: #00B0B8;
  border-radius: 15px;
  padding: 15px;
}

.home_new_box2 .img_area {
  display: block;
  float: left;
  width: 100%;
  height: 540px;
  text-align: center;
}

.home_new_box2 .img_area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.home_new_box2 .text_area {
  display: flex;
  float: left;
  width: 100%;
  margin-top: 12px;
}

.home_new_box2 .text_area .left {
  display: block;
  float: left;
  width: 100%;
  padding-right: 15px;
  color: #fff;
}

.home_new_box2 .text_area .left h2 {
  font-size: 18px;
  font-weight: 700;
}

.home_new_box2 .text_area .left p {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.home_new_box2 .text_area .right {
  flex: 0 0 28px;
}

.new_arrival_but {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  font-size: 12px;
  border-radius: 100%;
}

.new_arrival_but:hover {
  background: #fff;
  color: #000;
}

.new_arrival_box_mergin {
  margin-top: 70px;
}

.new_arrival_boxes {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 100%;
  background: url(../images/new_arrival_bg.jpg) center center no-repeat;
  background-size: 100% auto;
}

.home_service_box1 .btn1 i {
  box-shadow: none;
  font-size: 15px;
  margin: 0 0 0 10px;
  padding: 0px;
  width: auto;
  height: auto;
  line-height: normal;
  background: none;
  color: #fff;
}

.card {
  border: none
}

.product {
  background-color: #eee;
}

.brand {
  font-size: 13px
}

.act-price {
  color: red;
  font-weight: 700
}

.dis-price {
  text-decoration: line-through
}

.about {
  font-size: 14px
}

.color {
  margin-bottom: 10px
}

label.radio {
  cursor: pointer
}

label.radio input {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  pointer-events: none
}

label.radio span {
  padding: 2px 9px;
  border: 2px solid #ff0000;
  display: inline-block;
  color: #ff0000;
  border-radius: 3px;
  text-transform: uppercase
}

label.radio input:checked+span {
  border-color: #ff0000;
  background-color: #ff0000;
  color: #fff
}

.btn-danger {
  background-color: #ff0000 !important;
  border-color: #ff0000 !important
}

.btn-danger:hover {
  background-color: #da0606 !important;
  border-color: #da0606 !important
}

.btn-danger:focus {
  box-shadow: none
}

.cart i {
  margin-right: 10px
}