* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-width: 100%;
  overflow-x: hidden;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  background-color: #f5f5f5;
}
header {
  /* overflow: auto; */
  /* background-color: #333; */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: white;
}
.main_container {
  margin-top: 5rem;
}
.main_container_category{
  margin-top: 5rem;
}
header .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* min-height: 5vh; */
  min-width: 100%;
  z-index: 10;
  background: #fe0000;
  border-bottom: 2px solid #fe0000;
}

header .navigation .logo {
  margin-left: 20px;
}

header .navigation .logo h1 {
  color: #b1d4e0;
  font-size: 30px;
  line-height: 38px;
}

header .navigation .menu-list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 45%;
  margin: auto 20px auto 0;
}

header .navigation .humbarger {
  margin-right: 20px;
  display: none;
}

header .navigation .humbarger .bar {
  width: 30px;
  height: 2px;
  margin: 7px;
  background: #b1d4e0;
}

header .navigation .menu-list li a {
  color: #b1d4e0;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 1s ease, border 1s ease;
  text-decoration: none;
}

/*Search css start*/

.searchTerm {
  /* border-right: none; */
  /* padding: 5px; */
  /* border-radius: 5px 0 0 5px; */
  /* color: #9dbfaf; */
  margin: 1rem;
  width: 90%;
}

.searchTerm:focus {
  color: #00b4cc;
}
.my-modal-wrapper {
  position: absolute;
  z-index: 1060;
}

.searchButton {
  width: 40px;
  border: 1px solid #0062cc;
  background: #0062cc;
  text-align: center;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 20px;
  position: relative;
  top: 3px;
  height: 29px;
}
.fab {
  line-height: 2;
}

/*Search css end*/

/* ====================
    Intro Section
  =======================*/
.intro-section {
  height: 100vh;
  position: relative;
  background: rgba(15, 20, 35, 0.9);
}

.intro-section .intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.page-details{
  height: 2vw;
}

.intro-section .intro-content h1 {
  color: #b1d4e0;
  font-size: 5rem;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-top: 80px;
}

.intro-section .intro-content h6 {
  margin-top: 5px;
  color: #b1d4e0;
  font-size: 2.5rem;
  font-weight: 300;
}

.intro-section .intro-content p {
  margin-top: 40px;
  color: #b1d4e0;
}

.intro-content .tagline {
  margin-top: 80px;
}

.intro-section .intro-content .tagline .change-container {
  position: relative;
  display: inline-block;
  width: 560px;
  margin-bottom: 55px;
  margin-top: 30px;
}

.intro-section .intro-content .changing {
  position: absolute;
  overflow: hidden;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 0;
  opacity: 0;
  color: #b1d4e0;
  text-transform: uppercase;
  word-spacing: 5px;
  text-align: center;
  font-size: 2.5rem;
}

.changing:nth-child(1) {
  animation: revealNextWord 6s cubic-bezier(0.57, 1.52, 0.9, 1.08) 1.5s infinite;
}

.changing:nth-child(2) {
  animation: revealNextWord 6s cubic-bezier(0.57, 1.52, 0.9, 1.08) 3s infinite;
}

.changing:nth-child(3) {
  animation: revealNextWord 6s cubic-bezier(0.57, 1.52, 0.9, 1.08) 4.5s infinite;
}

@keyframes revealNextWord {
  0% {
    opacity: 0.3;
    height: 0;
  }
  10% {
    opacity: 1;
    height: 1.2em;
  }
  20% {
    opacity: 1;
    height: 1.2em;
  }
  28% {
    opacity: 0;
    height: 2em;
  }
}

.intro-section .intro-content .header-btn a {
  text-decoration: none;
  font-size: 1.5rem;
  color: #3498db;
  background-color: #b1d4e0;
  padding: 15px;
  border-radius: 5px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.intro-section .intro-content .header-btn a:before {
  position: absolute;
  content: "";
  top: 0px;
  height: 100%;
  left: -25%;
  width: 0%;
  background-color: #3498db;
  transform: skew(50deg);
  transition-duration: 1s;
  z-index: 1;
}
.login_alert{
  text-align: center;
    color: red;
    font-weight: 800;
}

.intro-section .intro-content .header-btn a:hover {
  color: #b1d4e0;
}

.intro-section .intro-content .header-btn a:hover:before {
  width: 170%;
}

.intro-section .intro-content .header-btn a span {
  position: relative;
  z-index: 9;
}

/* ====================
    Responsive Section
  =======================*/

/* Tablet desktop :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  header .navigation .menu-list {
    width: 60%;
  }

  header .navigation .menu-list li a {
    font-size: 1rem;
  }
}

/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
  header .navigation .menu-list {
    position: absolute;
    top: 12vh;
    min-width: 100%;
    background: rgba(15, 20, 35, 0.99);
    text-align: center;
    display: none;
  }

  header .navigation .menu-list li {
    display: block;
  }

  header .navigation .menu-list li a {
    display: block;
    padding: 20px;
    transition: color 1s ease, padding 1s ease, background-color 1s ease;
  }

  header .navigation .menu-list li a:hover {
    color: #b1d4e0;
    padding-left: 30px;
    background: rgba(177, 212, 224, 0.2);
  }

  header .navigation .humbarger {
    display: block;
  }

  .intro-section .intro-content h1 {
    font-size: 2.8rem;
  }

  .intro-section .intro-content h6 {
    font-size: 1.4rem;
  }

  .intro-section .intro-content .changing {
    font-size: 1.5rem;
  }

  .intro-section .intro-content .header-btn a {
    font-size: 1.25rem;
  }
}

/* small mobile :320px. */

@media only screen and (max-width: 479px) {
  .intro-inner .intro-content h1 {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .intro-inner .intro-content p {
    margin-top: 10px;
  }
}
.custom-boxs {
  width: 85%;
  margin: auto;
}
.box-description a {
  border: double;
  border-radius: 5px;
  margin: 1vw;
  text-align: center;
  height: 40px;
  padding-left:10px;
  padding-right:10px;
  
 
 
}
.cat-des {
  display: inline-block;
  font-size: 1vw;
  font-weight: 700;
  line-height: 34px; 
  /* margin-top: 6px;
  overflow: hidden; */
  text-overflow: ellipsis;
}
.cat-img {
  font-size: 24px;
  float: right;
}
/*Slider CSS*/

.custom-slider {
  width: 93%;
  margin: auto;
}
.custom-slider1 {
  width: 70%;
  margin: auto;
}
.custom-box {
  width: 200px;
}
.custom-box img {
  width: 100%;
  height: 27vw;
    object-fit: fill;
}
.hsbc-popular{
  margin-top: 6vw;
}
.slick-arrow:focus {
  outline: none;
}
.slick-prev,
.slick-next {
  position: absolute;
  line-height: 0;
  top: 50%;
  width: 30px;
  height: 30px;
  display: block;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  border-radius: 50px;
  background: #0062cc;
}
.slick-slider {
  user-select: none;
}
.slick-next {
  right: -50px;
}
.slick-prev {
  left: -50px;
}
.slick-next:before {
  content: "\003e";
  font-size: 1.2em;
  font-weight: 1000;
  padding-left: 12px;
  color: white;
}
.slick-prev:before {
  content: "\003c";
  font-size: 1.2em;
  font-weight: 1000;
  padding-left: 9px;
  color: white;
}
.nav-dots {
  width: 33.5%;
  height: 11px;
  display: block;
  position: absolute;
  text-align: center;
  margin-top: 25%;
}

.nav-dots .nav-dot {
  width: 11px;
  height: 11px;
  margin: 0 4px;
  position: relative;
  border-radius: 100%;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.6);
}

.nav-dots .nav-dot:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.8);
}
.nav > li > a:focus,
.nav > li > a:hover {
  background-color: #0062cc;
}

input#img-1:checked ~ .nav-dots label#img-dot-1,
input#img-2:checked ~ .nav-dots label#img-dot-2,
input#img-3:checked ~ .nav-dots label#img-dot-3,
input#img-4:checked ~ .nav-dots label#img-dot-4,
input#img-5:checked ~ .nav-dots label#img-dot-5,
input#img-6:checked ~ .nav-dots label#img-dot-6 {
  background: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 609px) {
  .slides {
    width: 100%;
  }
}

.myvideo {
  text-decoration: none;
  color: #fff;
  background: red;
  text-align: center;
  padding: 10px;
  font-weight: 600;
  z-index: 100;
  position: absolute;
  bottom: 20px;
}
.myvideo:hover {
  color: #000;
}
.most-popular,
.trusted-partner {
  margin-top: 5vw;
  color: #0062cc;
}
#myInput {
  margin-top: -6px;
  border: 0;
  border-radius: 0;
  background: #f1f1f1;
}
.trust_logos{
  /* border: solid 1px #0062cc; */
}
.anthing_logo{
 /* border: solid 1px #0062cc; */
}
.widthauto {
  width: auto !important;
}
.loop {
  background: grey;
  margin-top: 4vw;
  padding: 21px 0;
}
.input-group {
  width: 40%;
  margin: 1vw 30vw;
}
.custom-container {
  width: 85%;
  margin: auto;
}
.section1 {
  max-width: 1400px;
  margin: 0 auto;
}
.slide-in-right img {
  width: 12vw;
  margin: 1vw;
}
.section p {
  position: relative;
    display: inline-block;
    padding: 6px;
    color: black;
    box-shadow: -4px 4px 10px rgb(0 0 0 / 15%);
    border-radius: 5px;
    border: 1px solid #d9d9d9;
    font-weight: bold;
}
.brand-logo img {
  margin: auto;
  width: 20vw;
  padding: 1vw;
  height: 12vw;
  object-fit: fill;
}
.logo {
  display: inline-block;
  width: 70%;
}
.logo img {
  width: 10%;
}
.footerlogo img {
  width: 8vw;
}
.logo i {
  font-size: 2rem;
  margin: 1rem;
}
.back {
  display: contents;
}
.modal .fade .show {
  position: relative;
}
.logindetails {
  float: right;
  margin-right: 1vw;
}
.logindetails img {
  width: 3rem;
}
.login{
  padding: 0.2vw;
  font-size: 0.7vw;
}
label {
  font-weight: normal;
}
.more {
  border-radius: 50% !important;
  background-color: #f5f5f5 !important;
  border-color: #f5f5f5 !important;
}
.more_category button {
  border: double;
  border-radius: 5px;
  /* padding: 0; */
  text-align: center;
  color: #007bff;
  font-weight: bold;
  /* margin: 1vw; */
}
.btn-secondary:focus {
  box-shadow: none !important;
}
.alert-msg {
  color: red;
  margin-left: 2vw;
  margin-bottom: 0;
}
.red-border {
  width: 35vw;
  margin: 0 3vw;
}
.review-survey {
  display: inline-block;
  color: white;
  position: relative;
  bottom: 0.6vw;
}
.profile {
  display: inline-block !important;
}
.profile_btn {
  background-color: white;
}
.btn.focus,
.btn:focus {
  box-shadow: none;
}
dt {
  display: inline-block;
  color: black;
}
dd {
  margin-left: 5.4vw;
  color: black;
}
.more_cat a{
  width: 82%;
}
.myntra img {
  width: 5vw;
}
.section a {
  position: absolute;
  bottom: 0;
  right: 0;
}
.brand-show img {
  padding: 1vw;
  width: 17.5vw;
}
.slideshow-left i {
  margin-left: 3vw;
  margin-top: 3vw;
  font-size: 1.4vw;
  background: #a5d54b;
  padding: 1vw;
  color: white;
}
.slideshow-right i {
  margin-left: 0vw;
  margin-top: 3vw;
  font-size: 1.4vw;
  background: #a5d54b;
  padding: 1vw;
  color: white;
}
.msg {
  height: 10px;
  background: #c3c3c3;
}
.search {
  margin: auto;
}
.search p {
  display: inline;
}
.explore form {
  display: inline;
}
.anything_else{
  padding: 2vw;
}
.gender input,
.des {
  width: auto !important;
}
.popup h3 {
  text-align: center;
}
.popup input {
  width: 98%;
  margin: 0.3vw;
}
.popup button {
  padding: 0.4vw;
  background-color: #007bff !important;
  border-radius: 0.2vw;
}
footer {
  width: auto;
  background-color: #333;
  padding: 0 160px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 2vw;
  padding-top: 2vw;
}
.fefelogo span:first-child {
  margin: 0 30px;
}
.ftr {
  width: 100%;
}
p {
  line-height: 180%;
  color: #a29e9e;
}
h6 {
  /* margin-top: 25px;
  font-size: 19px; */
  color: white;
}
a {
  text-decoration: none;
}
.rnr {
  padding: 6px !important;
}
.modal-img img {
  width: 40rem;
  object-fit: contain;
  height: 40rem;
}
.custom_modal {
  width: 100rem;
  margin: auto;
}
footer div .one {
  margin-bottom: 20px;
  text-transform: none;
}
footer .details {
  display: flex;
  flex-wrap: wrap;
}
footer .details div {
  width: 150px;
  margin-right: 20px;
  color: white;
}
footer .details div p {
  text-transform: uppercase;
}
footer .details div span {
  margin-bottom: 20px;
}
.information p {
  text-align: left !important;
}
footer .information {
  margin-right: 20px;
}
footer .information p {
  margin-bottom: 8px;
}
footer .account p {
  margin-bottom: 8px;
  width: 150px;
}
footer .newsletter p,
input {
  padding: 5px;
}
footer .newsletter input {
  width: 170px;
  margin-bottom: 20px;
  border-style: none;
  background-color: #4d4d4d;
  color: #a29e9e;
}
footer .newsletter input::placeholder {
  color: #a29e9e;
  font-size: 10px;
}
footer .newsletter button {
  padding: 7px 12px;
  margin-left: 4px;
  color: #fff;
  background-color: #f00;
  font-size: 10px;
  border-style: none;
}
.socialsite {
  padding-top: 1rem;
  margin: 0px 28%;
}
.socialsite a {
  display: inline-block;
  width: 2vw;
  height: 2vw;
  margin-right: 5px;
  border-radius: 50%;
  text-align: center;
}
.socialsite a:first-of-type {
  background-color: #c2cde4;
}
.socialsite a:nth-of-type(2) {
  background-color: #bbe0f6;
}
.socialsite a:nth-of-type(3) {
  background-color: #f00;
}
.socialsite a:nth-of-type(4) {
  background-color: #8a50ca;
}

.socialsite a:last-of-type {
  background-color: #eeaa2f;
  color: #333;
}
a:hover {
  color: rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-in-out;
}
.fefelogo img {
  width: 3rem;
}
.bank-brand .slick-prev , .bank-brand .slick-next{
  display: none !important
}


/* start media footer */
@media (max-width: 767px) {
  footer {
    padding: 15px 30px;
    justify-content: initial;
  }
  footer .information {
    /* width: 120px; */
  }
  footer .account {
    width: 120px;
  }
}
.oh {
  overflow: hidden;
}
.oi_camp_fr {
  float: right;
  font-weight: 600;
  font-size: 13px;
}

.checkbox {
  width: auto !important;
}

/* end media footer-2 */


/* @media only screen and (min-width: 768px){

  .box-description a {
    margin: 0.5vw;
  }
  .prev {
    top: 19%;
    
} */

/*Media Query Start*/

@media only screen and (max-width: 768px) {
  /* For mobile phones: */

  .brand-logo img {
    width: 87vw;
    height: 34vw;
  }
  .main_container {
    margin-top: 6rem;
  }
/* 
  .bank-brand div {
    display: contents;
  } */

  /* .section p {
    position: relative;
    top: -4vw;
    padding: 1px;
  } */
  .box-description {
    flex-wrap: inherit;
  }
  .cat-des {
   /* width: 4rem;*/
    font-size: 0.7rem;
  }
  header .navigation {
    /* min-height: 7vh; */
  }
  .explore {
    position: relative;
    left: -7vw;
    display: inline-flex;
    top: -28vw;
  }
  .explore input {
    margin-left: 3rem;
  }
  .search p {
    margin-top: 1vw;
  }
  .red-border {
    position: relative;
    bottom: 47vw;
    width: 66vw;
    left: 14vw;
    top: -43vw;
  }
  .review {
    position: relative;
    top: -16vw;
    font-size: 4vw;
    border-right: solid #000;
    padding-right: 4vw;
  }
  .survey {
    position: relative;
    top: -38vw;
    float: right;
    font-size: 4vw;
  }
  .most-popular,
  .trusted-partner {
    margin-top: 5vw;
  }
  .logo img {
    width: 4rem;
    top: 17px;
    left: -35px;
  }
  .mobile_modal {
    margin-top: 4rem;
  }
  .box-description a {
    height: 2rem;
  /*  width: 20vw;*/
    margin: 0.5vw;
  }
  .content-wrapper {
    width: 100%;
    /* max-width: 500px;
    min-height: 600px;
    background-color: gray;
    margin: 0 auto;
    padding: 15px; */
  }
  .slider-title-wrapper {
    padding: 15px;
  }
  .slider-title-wrapper .slider-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .slider-container {
    overflow: hidden;
    /*margin-right: -15px;
    margin-left: 7px;*/
  }
  .slider-container .slider-wrapper {
    display: block;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    margin-bottom: -20px;
    padding-bottom: 26px;
    padding-left: 15px;
  }
  .slider-item {
    justify-content: center;
    align-items: center;
    height: 150px;
    display: inline-flex;
    border-radius: 5px;
    margin-right: 15px;
    background-color: #0762cc;
    color: white;
  }
  .slider-item:last-child {
    margin-right: 15px;
  }
  .fefelogo img {
    width: 2rem;
  }
  .socialsite a {
    height: auto;
    width: 8vw;
    font-size: 4.5vw;
  }
  .copyryt {
    text-align: center;
  }
  .fefelogo {
    margin: auto;
    margin-bottom: 12px;
  }
  

  .dropdown-menu {
    position: relative;
    left: -76px !important;
  }
  .add_remove .btn {
    font-size: 0.5rem;
  }
  .logo{
    width: auto;
    margin-left: 1rem !important;
  }
  .trust_logos{
    width: 100%;
  }
  .anthing_logo{
    height: auto !important;
  }
  .custom-box img {
    height: 55vw;
    object-fit: contain;
  }
  .myntra img {
    width: 17vw;
}
  .login{ 
    padding: 1vw;
    font-size: 2.7vw;
  }
  .mob_cat a{
    width: 96%;
  }
}

/*Media Query End*/

.slick-dots {
  text-align: center;
  margin: 0 0 10px 0;
  padding: 0;
}
.slick-dots li {
  display: inline-block;
  margin-left: 4px;
  margin-right: 4px;
}
.slick-dots li.slick-active button {
  background-color: black;
}

.slick-dots li button {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: #999;
  border: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.slick-dots li:hover {
  background-color: black;
}

.prev {
  top: 38%;
  left: -2em;
  font-size: 1.5em;
  position: absolute;
  background: #a5d54b;
  padding: 8px;
  color: white;
}
.prev:hover {
  cursor: pointer;
  color: black;
}
.next {
  color: white;
  position: absolute;
  top: 38%;
  right: -2em;
  font-size: 1.5em;
  background: #a5d54b;
  padding: 8px;
}
.next:hover {
  cursor: pointer;
  color: black;
}
.slider_img img {
  object-fit: initial;
  width: 80%;
  height: 10vw;
  padding: 5px;
}

@media screen and (max-width: 800px) {
  .next,
  .prev {
    display: none !important;
  }
  .slider_img img {
    height: 42vw;
    width: 66%;
    margin: auto;
    object-fit: revert;
  }
}
