@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&display=swap');

/* import files */
@import url("../css/auth.css");
@import url("../fonts/Circular_Std/stylesheet.css");
@import url("../css/header_footer.css");

body{
  font-family: "Bitter", serif;
  font-weight: 400;
  line-height: 1.5;
  color: #424242;
  overflow-x: hidden;
}
.wd-sh-home-body {
  background-image: url("../images/bg-home.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
a:hover, :hover{
  /* color: #46A6FC; */
}
a, a:hover{
  text-decoration: none;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}
ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
main{padding: 80px 0 0;}
.custm-margin{margin-bottom:24px;}

.fadein {
  opacity: 0;
  transition: all 1.5s;
  transform: translate(0, 80px);
}

.fadein.visible {
  opacity: 1;
  transform: translate(0, 0);
}
/* =========================== Home Page ======================================= */
/* banner */
.home-banner .carousel-item img{
  display: flex;
  justify-content: center;
  text-align: center;
  height: 780px;
}
.carousel-indicators {z-index: 10;}
.head-btn{padding-left:20px;display: inline-block !important;}
.head-btn .btn-dark {
    font-size: 16px;
    padding: 8px 20px;
    width: fit-content;
}
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.4);
  z-index: 1;
}
.home-banner .carousel-caption {
  position: absolute;
  right: 15%;
  top: 30%;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}
.carousel-indicators li {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #9f9b9b;
    background-clip: padding-box;
    border: 5px solid #fff;
}
.carousel-indicators .active {
  border: 5px solid #000;
  background-color: #fff;
}
.carousel-control-next, .carousel-control-prev {
  display: none;
}
.carousel-indicators {
  margin-right: 65px;
  margin-left: 70px;
}
.container_mouse {
  cursor: pointer;
  position: absolute;
  left: 49%;
  bottom: 5%;
}
.container_mouse .mouse-btn {
  margin: 10px auto;
  width: 40px;
  height: 80px;
  border: 2px solid #fff;
  border-radius: 30px;
  display: flex;
}
.container_mouse .mouse-btn .mouse-scroll {
  display: block;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  margin: auto;
  animation: scrolling 2s linear infinite;
}

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

  100% {
    opacity: 1;
    transform: translateY(20px);
  }
}
.home-banner h1,
.banner h1{
  font-family: Circular Std;
  font-weight: 900;
  font-size: 50px;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
}
.sub-heading{font-size: 30px;font-weight: 100;}
h1 {
  position: relative;
  overflow: hidden; 
}
.line,.lines {
  display: block;
}
.line span,.lines span {
  display: inline-block;
  animation: slideFromRight 2s forwards;
  opacity: 0;
  transform-origin: center;
}
.bnr-two{
  display: none;
}
.bnr-onr{display: block;}

@keyframes slideFromRight {
  0% {
      opacity: 0;
      transform: translateX(100vw); 
  }
  50% {
      opacity: 1;
      transform: translateX(0); 
  }
  100% {
      opacity: 1; 
      transform: translateX(0); 
  }
}
.sh-banner-btn{
  display: flex;
  justify-content: center;
}
.home-banner .btn-section{
  margin: 30px auto 0;
}
/* brands */
.wd-sh-brands{
  background: #CCDDEC;
  padding: 30px 0;
}
.sh-brand-slider {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.sh-brand-slider:hover .sh-brands-slide {
  animation-play-state: paused;
}
.sh-brands-slide {
  display: inline-block;
  animation: 20s slide infinite linear;
}
.sh-brands-slide img {
  margin: 0 40px;
  height: 25px;
}
@keyframes slide {
  from {
      transform: translateX(0);
  }

  to {
      transform: translateX(-100%);
  }
}
/* welcome */
.wd-sh-welcome-bx{
  padding: 140px 0 150px;
}
.sh-sml-heading{
  font-size: 18px;
}
.sh-sml-heading{
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #46A6FC;
  margin: 0 0 12px;
}
.sh-heading{
  font-weight: 700;
  font-size: 44px;
  color: #090909;
  margin: 0 0 12px;
}
.sh-text{
  font-weight: 450;
  font-size: 24px;
  text-align: justify;
  color: #6A6F82;
  margin: 0;
}
p:hover,h5:hover{
 text-decoration: underline;
 color: #2e2e2e;
}
.sh-sub-heading{
  font-weight: 700;
  font-size: 20px;
  color: #090909;
  margin: 0 0 8px;
}
.sh-wlcome-img{
  position: relative;
}
.sh-about-text{
  font-weight: 500;
  font-size: 24px;
  line-height: 51px;
  color: #5D6A81;
  margin:0;
}
.sh-wlcome-img img{
  object-fit: contain;
  height: 466px;
  width: 100%;
  position: relative;
}
.sh-wlcome-img::after {
  content: " ";
  background-color: #009eff;
  position: absolute;
  height: 100%;
  width: 92%;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: 0px 0 -50px -3px;
}
.sh-wlcome-img::before {
  content: " ";
  background-image: url(../images/shape.png);
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  width: 300px;
  height: 200px;
  top: 0;
  right: 0;
  margin: -40px 0 0 0;
}
/* Wholesale */
.wd-sh-wholesale{
  position: relative;
  background: #140E3A;
}
.wd-sh-wholesale-bx{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 0 60px;
}
.sale-bx-item{
  display: flex;
  align-items: center;
  gap: 18px;
  backdrop-filter: blur(4px);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0px 6px 8px 2px #00145B0D;
  border: 1px dashed #46A6FC;
}
.wd-sh-wholesale .btn-section{
  margin: 20px 0 0;
}
.wholesale-lft-bx .sh-heading{
  position: relative;
  font-weight: 700;
  font-size: 38px;
  color: #FFFFFF;
  margin: 0 0 28px;
}
.wholesale-lft-bx .sh-heading::after {
  content: " ";
  position: absolute;
  background-image: url("../images/shape1.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  height: 92px;
  width: 124px;
  margin: -6px 0 0 255px;
}
.wd-sh-wholesale-bx .btn-section{
  margin: 44px 0 0;
}
.sale-bx{
  margin: 0 auto 24px;
}
.sh-sale-img-bx {
  min-width: 68px;
  height: 68px;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sh-sale-img-bx img {
  object-fit: contain;
  height: 36px;
  width: 36px;
}
.sh-sale-txt h3{
  font-weight: 700;
  font-size: 22px;
  color: #FFFFFF;
  margin: 0 0 2px;
}
.sh-sale-txt h4{
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  margin: 0;
}
.wholesale-rgt-bx{
  background: #46A6FC;
  padding: 60px 5px 60px 42px;
  margin: -60px 0;
}
.wholesale-rgt-bx h6{
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #140E3A;
  margin: 0 0 16px;
}
.wholesale-rgt-bx h3{
  font-weight: 700;
  font-size: 40px;
  color: #FFFFFF;
  margin: 0 0 18px;
}
.wholesale-rgt-bx h4,
.sh-sub-title{
  font-weight: 700;
  font-size: 24px;
  color: #FFFFFF;
  margin: 0 0 15px;
}
.sh-sub-title{
  color: #5D6A81;
  margin: 0 0 12px;
}
.wholesale-rgt-bx h5{
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  margin: 0 0 30px;
}
.wholesale-rgt-bx img{
  height: 360px;
  object-fit: cover;
  width: 100%;
}
.wholesale-lft-bx{
  position: relative;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-flow: column;
  height: 100%;
  padding:0 10px 0 120px;
}
.wholesale-lft-bx::after{
  content: '';
    position: absolute;
    background: url(../images/shape.png) repeat-x;
    background-position: bottom center;
    background-size: cover;
    bottom: 0;
    left: 0;
    height: 70px;
    width: 104%;
    margin: 0 -30px -70px 0;
    z-index: -1;
}
/* map */
.wd-sh-map iframe{
  height: 650px;
  width: 100%;
}
.wd-sh-map .container-fluid{
  padding: 0;
}
/* light btn */
.btn-section a{
  display: flex;
  align-items: center;
  gap: 10px;
}
.sh-banner-btn .btn-dark{
  border: 2px solid #46A6FC;
  color: #46A6FC;
  background: #fff;
}
.sh-banner-btn .btn-dark svg path{
  stroke: #46A6FC;
}
.sh-banner-btn .btn-dark:hover{
  border: 2px solid #fff;
  color: #fff;
  background: #46A6FC;
}
.sh-banner-btn .btn-dark:hover svg path{
  stroke: #fff;
}
.btn-dark{
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  padding: 15px 30px;
  display: inline-flex;
  box-shadow: 0px 5px 8px 0px #46A6FC40;
  border: 1px solid #9CBAD6;
  color: #fff;
  height: auto;
  width: 100%;
}
.btn-dark:hover svg path{
  stroke: #565656;
}
.btn-dark:hover{
  color: #565656;
  background: #fff;
  border: 1px solid #565656;
}
.wow {
  visibility: visible;
}
.animate__animated {
  animation-fill-mode: both;
}
/* =========================== About Page ======================================= */
/* banner */
.banner{
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  height: 307px;
  width: 100%;
}
.about-bnr{
  background: url("../images/about-banner.png");
  box-shadow: inset 0 0 0 2000px rgba(18, 18, 18, 0.7);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.sh-about-txt p{
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  color: #5D6A81;
  margin: 120px 0 0;
}
.wd-sh-about{
  padding: 150px 0 100px;
}
.wd-sh-about .sh-text{
  line-height:51px;
}
.wd-sh-items{
  background: url("../images/item-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 140px 0 45px;
  text-align: center;
}
.sh-bottm-item p{
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #5D6A81;
  margin: 0;
}
.sh-items-bx{
  background: #FFFFFF;
  mix-blend-mode: normal;
  border: 2px solid #CFDEE7;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.item-svg{
  min-width: 66px;
  height: 66px;
  background: #E7F0F5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.item-svg svg{
  height: 28px;
  width: 28px;
}
.item-txt p{
  font-weight: 500;
  font-size: 14px;
  color: #2B3C5D;
  margin: 0;
}
.sh-top-items{
 margin: 0 0 -55px;
}
.wd-sh-items .sh-heading{
  margin: 0 0 14px;
}
.wd-sh-items .sh-sml-heading{
  margin: 0 0 4px;
}
/* =========================== Aap/Web Development Page ======================================= */
.app-bnr{
  background: url("../images/app-banner.png");
  box-shadow: inset 0 0 0 2000px rgba(18, 18, 18, 0.7);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.donec{
  padding: 40px 0 0;
}
.donec p,
.wd-sh-merchandise p{
  font-weight: 500;
  font-size: 24px;
  color: #5D6A81;
  margin: 0 0 20px;
}
.sh-donec-img img{
  height: 528px;
  object-fit: cover;
}
.etiam-bx{
  background: linear-gradient(180deg, #DDEAFA 0%, rgba(242, 247, 253, 0) 100%);
  border-radius: 48px;
  padding: 70px 70px 46px;
  }
.Etiam h3,.sh-faq h3{
  font-weight: 700;
  font-size: 38px;
  color: #090909;
  margin: 0 0 30px;
}
.sh-etiam-box{
  background: #FFFFFF;
  mix-blend-mode: normal;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.04);
  border-radius: 28px;
  padding: 34px 28px;
  height: 100%;
}
.svg-icon{
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 0 18px;
}
.svg-icon svg{
  height: 28px;
  width: 28px;
}
.bg-sky{
  box-shadow: 0px 3px 6px 0px #3E7FFF30;
  background: #3E7FFF;
}
.bg-purple{
  box-shadow: 0px 3px 6px 0px #7047EB30;
  background: #7047EB;
}
.bg-pink{
  background: #EE339D;
  box-shadow: 0px 3px 6px 0px #EE339D30;
}
.sh-etiam-box h4{
  font-weight: 700;
  font-size: 18px;
  color: #2B3C5D;
  margin: 0 0 10px;
}
.sh-etiam-box p{
  font-weight: 500;
  font-size: 16px;
  color: #5D6A81;
  margin: 0;
}
.sh-faq{
  padding: 100px 0;
}
.sh-faq-acordn{
  position: relative;
}
.sh-faq-acordn::after {
  content: " ";
  position: absolute;
  background-image: url("../images/shape2.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  right: 0;
  height: 92px;
  width: 124px;
  margin: -14% 61px 0 0;
}
.sh-faq-img img{
  height: 564px;
  object-fit: cover;
  border-radius: 48px;
}
.sh-faq h3{
  margin: 0 0 26px;
}
.faq-accordian{
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 18px 18px 15px;
  background: #E4ECF6;
  border-radius: 14px 14px 0 0;
}
.faq-accordian.collapsed {
  background: transparent;
}
.faq-accordian h5{
  font-weight: 700;
  font-size: 18px;
  color: #2B3C5D;
  margin: 0;
  padding-right: 40px;
}
.sh-faq-acordn .card .card-header{
  padding: 0;
  background-color: transparent;
  border-bottom: 12px;
  border-radius: 0;
}

.sh-faq-acordn .card {
  background-color: transparent;
  background-clip: border-box;
  border: 0;
 margin-bottom:14px;
}
.sh-faq-acordn .card-body{
  padding: 0 49px 27px 18px;
  font-weight: 500;
  font-size: 16px;
  color: #5D6A81;
  background: #E4ECF6;
  border-radius: 0 0 14px 14px;
}
.faq-accordian svg {
  min-width: 10px;
  height: 6px;
}
/* ===========================  Merchandise Wholesale Page ======================================= */
.wholesale-bnr{
  background: url("../images/wholesale-banner.png");
  box-shadow: inset 0 0 0 2000px rgba(18, 18, 18, 0.7);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.wd-sh-merchandise{
  padding: 140px 0 150px;
}
.wd-sh-merchandise p {
  margin: 0 0 32px;
}
.sh-merchandise-two p {
  margin: 0 0 30px;
}
.sh-merchandise-two p:last-child{
  margin: 0;
}
.sh-merchandise-two ul li p{
  margin: 0 0 9px;
}
.sh-journy-txt h3{
  font-weight: 700;
  font-size: 22px;
  color: #2B3C5D;
  margin: 0 0 5px;
}
.sh-journy-txt p{
  margin: 0;
}
.sh-merchandise-one{
  padding: 0 0 173px;
}
.sh-merchandise-img img{
  object-fit: contain;
  height: 466px;
  width: 100%;
  position: relative;
}
.sh-merchandise-one .sh-wlcome-img::before {
  content: " ";
  background-image: url(../images/shap3.png);
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  width: 230px;
  height: 182px;
  top: 0;
  right: 0;
  margin: -32px 0 0 0;
}
.sh-merchandise-two .sh-merchandise-img::after {
  content: " ";
  background: #004A99;
  position: absolute;
  height: 100%;
  width: 87%;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: 0px 0px -50px 62px;
}
.sh-merchandise-two .sh-merchandise-img::before {
  content: " ";
  background-image: url(../images/shap3.png);
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  width: 230px;
  height: 182px;
  top: 0;
  right: 0;
  margin: -31px 323px 0 0;
}
.sh-merchandise-box{
  background: url("../images/wholesale-bg.png");
  box-shadow: inset 0 0 0 2000px rgb(204 221 236 / 43%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 80px 0 56px;
}
.sh-merchandise-box p{
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #5D6A81;
  margin: 0 0 32px;
}
.sh-merch-card{
  background: #fff;
  border-radius: 16px;
  padding: 25px 26px 29px;
  margin: 0 0 24px;
}
.sh-merch-card svg{
  height: 38px;
  width: 38px;
  margin: 0 0 15px;
}
.sh-merch-card h6{
  font-weight: 500;
  font-size: 18px;
  color: #5D6A81;
  margin: 0;
}
.break{display: none;}
/* ===========================  Contact Us ======================================= */
.contact-bnr{
  background: url("../images/contact-banner.png");
  box-shadow: inset 0 0 0 2000px rgba(18, 18, 18, 0.542);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.wd-sh-contact{
  padding: 100px 0;
}
.sh-contact-detail{
  background: #FFFFFF;
  border: 2px solid #E6EAEE;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
}
.sh-contact-svg{
  height: 68px;
  min-width: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.phone{
  background: #ECF3FF;
}
.mail{
  background: #F1EDFD;
}
.address{
  background: #FEEBF6;
}
.sh-detail-cotct h1{
  font-weight: 700;
  font-size: 22px;
  color: #2B3C5D;
  margin: 0 0 4px;
}
.sh-detail-cotct a{
  font-weight: 500;
  font-size: 18px;
  color: #5D6A81;
  margin: 0;
}
.sh-detail-cotct a:hover{
  color:#46A6FC;
}
.sh-contact-map iframe{
  width: 100%;
  height: 465px;
  border-radius: 24px;
  border: none;
}
.contct-margin{
  margin: 0 0 65px;
}
.contact-form h5{
  font-weight: 700;
  font-size: 28px;
  color: #090909;
  margin: 0 0  2px;
}
.contact-form p{
  font-weight: 500;
  font-size: 16px;
  color: #5D6A81;
  margin: 0 0 26px;
}
.contact-form .form-group{
  margin: 0 0 22px;
}
.contact-form .form-control{
  background: #FFFFFF;
  border: 1px solid #C8D7E6;
  border-radius: 0;
  font-weight: 500;
  font-size: 16px;
  color: #5D6A81;
  height: auto;
  padding: 19px 18px 12px;
}
.contact-form .form-control::placeholder{
  color: rgba(93, 106, 129, 0.5);
}
.contact-form select{
  moz-appearance: window;
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: #FFFFFF url(../images/downarrrow.png) no-repeat 93% center !important;
}
.contact-form textarea{
  height: 156px !important;
  resize: none;
}
.contact-form .btn-section .bb_button {
  margin-left: auto;
} 
.sh-banner-btn .btn-dark {
  animation: slideInFromRight 1s ease-out forwards;
}
@keyframes slideInFromRight {
  0% {
    transform: translateX(900%);
    opacity: 0; 
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
