/* Common CSS */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;600;700;800;900&display=swap');
:root {
  --primary-color: #6759FF;
}

 body {
  font-family: 'Nunito Sans', sans-serif;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}
.color_white{
  color: #fff;
}
body {
  height: 100%;
  font-size: 15px;
  color: #48443a;
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  flex: 1 1 auto;
}

h1,
h2 {
  font-weight: 800;
  margin: 0;
}

h3,
h4 {
  font-weight: 700;
  margin: 0;
}

h5,
h6 {
  font-weight: 600;
  margin: 0;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  color: #6759FF;
}

a:hover {
  color: var(--primary-color);
}

.error {
  color: var(--primary-color);
}

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

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

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

input[type="checkbox"] + label {
  position: relative;
  padding-left: 30px;
  text-align: left;
}

input[type="checkbox"] + label::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  top: 2px;
  background-color: transparent;
  border: 1px solid #424242;
  border-radius: 0;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  text-align: center;
  color: var(--primary-color);
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked + label::before {
  color: #ffffff;
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-size: 13px;
  line-height: 1.4;
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.btn {
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border-color: transparent;
  border-style: solid;
  border-radius: 4px;
  border-width: 1px;
  color: var(--primary-color);
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  line-height: 1.2;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none !important;
  transition: 0.15s background-color ease-in-out, 0.15s color ease-in-out;
  position: relative;
}

.btn:hover {
  color: var(--primary-color);
}

.btn-bordered {
  background: transparent;
  color: var(--primary-color) !important;
  border-color: var(--primary-color);
  transition: 0.15s background-color ease-in-out, 0.15s color ease-in-out;
}

.btn-bordered:hover {
  color: #fff !important;
}

.btn-bordered::after {
  content: '';
  background: linear-gradient(90.56deg, #01359a 3.96%, #01359a 99.56%);
  position: absolute;
  border-radius: 4px;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-bordered:hover::after {
  width: 100%;
}
 




.btn-bg:hover {
	background-color: transparent;
	color: #01359a ;
	border-color: transparent;
}

.btn-bg:hover::after {
  width: 100%;
}

.btn-bg.bg-white {
  background: #ffffff;
  color: var(--primary-color);
  border-color: #ffffff;
}

.btn-bg.bg-white:hover {
  color: #ffffff !important;
  border-color: var(--primary-color);
}

.btn-bg.bg-white:hover::after {
  width: 100%;
  background: linear-gradient(90.56deg, #01359a 3.96%, #01359a 99.56%);
}

.btn.btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn.btn-link i {
  position: relative;
  top: 0;
  margin-left: 14px;
  font-size: 22px;
}

.btn.btn-lg {
  padding: 14px 20px;
  font-size: 18px;
  font-weight: 600;
}

/* header */

.fixed {
  box-shadow: 0px 3px 15px #08359a70;
  background: #08359a70;
  color: #000;
}

.error_box_color {
	border-color: red;
}

@-webkit-keyframes "headerSlideDown" {
  0% {
    margin-top: -100px;
  }
  to {
    margin-top: 0;
  }
}

@keyframes "headerSlideDown" {
  0% {
    margin-top: -100px;
  }
  to {
    margin-top: 0;
  }
}


[class*="navbar-expand-"] {
	padding: 6px 0;
}
.nav-item.btn.btn-bg:hover a {
	color: #fff;
}
.laundry-header-transparent .nav-item a.log_buttn 
{
	background-color: #6759FF;
	box-shadow: none !important;
	border: 1px solid #6759FF;
	border-radius: 0;
}
.laundry-header-transparent .nav-item a.log_buttn:hover 
{
  color: #6759FF;
  background-color: transparent;
  border: 1px solid #6759FF;
}
 .navbar-nav .nav-item:not(:last-child) {
  margin: 0 30px 0 0;
}

 .navbar-nav:first-child .nav-item:not(:last-child) {
  margin: 0 45 px 0 0;
}
.navbar-nav .nav-item .nav-link {
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  padding: 0;
  text-transform: capitalize;
}
 .navbar-nav .nav-item .nav-link.GradientLink {
  background: -webkit-linear-gradient(90.56deg, #01359a 3.96%, #01359a 99.56%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navbar-nav .nav-item .nav-link:hover{
  color: #fff;
}
[class*="navbar-expand-"] .navbar-brand {
  padding: 0;
  max-width: 160px;
}

#nav-icon2 {
  width: 40px;
  height: 28px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  z-index: 99;
}

#nav-icon2 span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: var(--primary-color);
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon2 span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1) {
  top: 0px;
}

#nav-icon2 span:nth-child(2) {
  top: 0px;
}

#nav-icon2 span:nth-child(3) {
  top: 10px;
}

#nav-icon2 span:nth-child(4) {
  top: 10px;
}

#nav-icon2 span:nth-child(5) {
  top: 20px;
}

#nav-icon2 span:nth-child(6) {
  top: 20px;
}

#nav-icon2.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 5px;
  top: 7px;
}

#nav-icon2.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  left: calc(50% - 5px);
  top: 16px;
}

#nav-icon2.open span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: calc(50% - 5px);
  top: 7px;
}

#nav-icon2.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 5px;
  top: 16px;
}

#nav-icon2.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

.menu-open .overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9;
  top: 0;
}

.menu-open #nav-icon2 span {
  background: var(--primary-color);
}

[class*="navbar-expand-"] .navbar-nav .nav-item.header-compare sub {
  position: absolute;
  top: -10px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  left: 28px;
  min-width: 18px;
  z-index: 9;
  padding: 0 5px;
}

[class*="navbar-expand-"] .navbar-nav .nav-item .header-btns {
  width: 40px;
  padding: 0;
  height: 40px;
  line-height: 40px;
}


.nav-item #dropdownMenuButton {
  background: transparent;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.nav-item #dropdownMenuButton::after {
  content: '';
  background-repeat: no-repeat;
  margin-left: 11px;
  border: 0;
  width: 14px;
  height: 8px;
  position: relative;
  top: 1px;
}

.nav-item .notification-menu #dropdownMenuButton::after {
  display: none;
}

.section-ptb {
	padding-top: 50px;
	padding-bottom: 50px;
}

.section-pt {
  padding-bottom: 130px;
}

.section-pb {
  padding-bottom: 130px;
}
.footer-area {
  padding: 50px 0px 20px;
  background: #6759FF;
  position: relative;
}

.footer-logo {
  margin-bottom: 30px;
}

.social-link,

.app-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  margin-bottom: 15px;
}

.social-link li:not(:last-child),
.support-link li:not(:last-child),
.app-link li:not(:last-child) {
  margin-right: 20px;
}

.social-link li,
.support-link li,
.app-link li {
  margin-top: 10px;
}

.social-link li a {
  color: #fff;
  font-size: 22px;
}

.support-link li a {
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
}

.app-link img {
  height: 35px;
}
.app-link img.gpay-img
{
  height: 50px;
}

.copyright-area {
  background-color: #C9A63F;
  padding: 10px 0;
  color: #fff;
}
.copyright-area .copyright-design p {
  margin: 0;
  font-size: 16px;
}
.footer-area .desc{
  color: #fff;
}
.copyright-area .copyright-menu {
  text-align: right;
}

.copyright-area .copyright-menu ul li {
  list-style: none;
  display: inline-block;
  margin-top: 0;
  margin-right: 20px;
  font-size: 14px;
  font-weight: 600;
}

.copyright-area .copyright-menu ul li:last-of-type {
  margin-right: 0;
}

.copyright-area .copyright-menu ul li a {
  color: #fff;
  font-weight: 400;
}

.chat-icon {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 64px;
  height: 64px;
  background: #901911;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
}

.breadcrumb-area {
  padding: 65px 0 55px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  overflow: hidden;
  height: 400px;
}
.breadcrumb-area .overlay-bg {
  background: #000;
  display: inline-block;
  position: absolute !important;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: .4;
}

.breadcrumb-area .breadcrumb-inner .page-title {
  font-weight: 700;
  font-size: 45px;
  color: #fff;
  line-height: 1;
  margin: 0;
  position: relative;
  padding: 0 0 15px 0;
}

.breadcrumb-area .breadcrumb-inner .page-title::before {
	width: 45px;
  border-top: 3px solid #fff;
	content: "";
	position: absolute;
	bottom: 3px;
	left: 50%;
	transform: translateX(-50%);
}
.breadcrumb-area .breadcrumb-inner .page-title::after {
  width: 30px;
  border-top: 3px solid #fff;
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.breadcrumb-area .container {
  position: relative;
}

.breadcrumb-area::before {
  position: absolute;
  bottom: -3vw;
  width: 50.01%;
  height: 5vw;
  background-color: #01359a87;
  z-index: 1;
  content: "";
  left: 0;
  transform: skewY(4.5deg);
}
.main-title {
  margin: 50px auto;
  text-align: left;
  font-size: 40px;
}


.contact-wrap {
  padding: 20px;
  border: 2px solid #01359a;
  border-radius: 7px;
}
.contact-right {
	padding: 50px;
	box-shadow: rgba(153, 144, 255, 0.84) 0px 0px 0px 2px, rgba(6, 24, 44, 0.77) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
	border-radius: 7px;
	background: #fff;
	margin-top: 35px;
}
.page-title {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 290px;
}
.breadcrumb-area::after {
  position: absolute;
  bottom: -3vw;
  width: 50.01%;
  height: 5vw;
  background-color: #01359a87;
  z-index: 1;
  content: "";
  right: 0;
  transform: skewY(-4.5deg);
}

.text-gold {
  color: #CCB79D;
}

.custom-password-field {
  position: relative;
}

.custom-password-field .form-control {
	padding-right: 40px !important;
}

.custom-password-field .eye-icons {
  position: absolute;
  right: 15px;
  top: 12px;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
	background-image: none !important;
	border-color: #dc3545 !important;
}

@media (min-width: 1500px) {
  .container {
    max-width: 1300px;
  }
  .container-lg {
    max-width: 1300px;
  }
  .container-md {
    max-width: 1300px;
  }
  .container-sm {
    max-width: 1300px;
  }
  .container-xl {
    max-width: 1300px;
  }
}

@media (max-width: 1499.98px) {
  .section-heading h3 {
    font-size: 30px;
    line-height: normal;
  }
  .brands-section .category-wrap .icon-wrap {
    width: 90px;
    height: 90px;
  }
}

@media (min-width: 1200px) {
  .slick-slider-arrows:hover .slick-arrow {
    left: -50px;
    right: auto;
  }
  .slick-slider-arrows:hover .slick-next {
    right: -50px;
    left: auto;
  }
}

@media (max-width: 1199.98px) {
 .navbar-nav .nav-item:not(:last-child) {
    margin-right: 25px;
  }
 .navbar-nav .nav-item .nav-link {
    font-size: 16px;
  }
  .footer-cta .call-to-action-inner h3 {
    font-size: 30px;
  }
  h1.HeroTitle {
    font-size: 40px;
}
}



.ProfileDrop #navbarDropdown {
  display: flex;
  align-items: center;
}

.ProfileDrop img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 5px;
}

.ProfileDrop span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
  display: inline-block;
}

.ProfileDrop .dropdown-menu {
  width: 200px;
  padding: 15px 0;
  border: 0;
  box-shadow: 0 0 6px rgba(0, 0, 0, .2);
  top: 45px !important;
}

.ProfileDrop .dropdown-menu .dropdown-item {
  padding: 10px 20px;
  display: flex;
  align-items: center;
}

.ProfileDrop .dropdown-menu .dropdown-item i {
  margin-right: 5px;
}
.sec-ptb {
	padding-top: 80px;
	padding-bottom: 80px;
	background-image: url("../../assets/images/large.gif");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
	min-height: auto;
  position: relative;
}
.registration-form
{
  padding-top: 147px;
  padding-bottom: 147px;
}
.sec-ptb::before
{
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: #000;
  opacity: 0.7;
  height: 100%;
}

.desc{
  font-size: 16px;
  color: #000;
  font-weight: 600;
  margin-bottom: 15px;
}

/*Inner page banner css start*/

.sec-inner
{
	padding-top: 80px;
	padding-bottom: 80px;
	background-image: url("../../assets/images/inner-banner.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom ;
	height: 100%;
	min-height: auto;
  position: relative;
}
.sec-inner::before
{
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: #C89E37;
  opacity: 0.7;
  height: 100%;
}

/* inner pages banner css end */

/* Abouut us css start */

.about-area 
{
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 80px 0px;
  margin: 30px 0;
}
.about-img 
{
	height: 310px;
	width: 400px;
	border-radius: 30px;
	overflow: hidden;
	padding: 30px 0;
}
.about-img img {
  height: 100%;
  width: 100%;
}
.about-text h2 {
	font-size: 32px;
	color: #6759ff;
	line-height: 48px;
}
.about-text .desc
{
	font-size: 16px;
  line-height: 28px;  
	font-weight: 400;
	margin-bottom: 15px;
  text-align: justify;
}
.about-list
{
  margin-left: 15px ;
}
.about-list li
{
  position: relative;
  font-size: 14px;
  line-height: 30px;
  font-weight: 600;
}
.about-list li:before {
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
  left: -15px;
  border-top: 2px solid #6759ff;
  border-right: 2px solid #6759ff;
  transform: rotate(45deg);
  top: 10px;
  right: 10px;
}

/* About us css end here */


/* Privacy Css start here */

.privacy-cont
{
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 80px 0px;
  margin: 30px 0;
}
.privacy-cont .entry__article h6 
{
	font-size: 24px;
	font-weight: 700;
	color: #6759ff;
	margin-bottom: 10px;
	line-height: 40px;
}
.privacy-cont .desc
{
	font-size: 16px;
  line-height: 28px;
	font-weight: 400;
	margin-bottom: 15px;
  text-align: justify;
}
/* Privacy css end here */

/* Terms Css Start here */

.terms-cont
{
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 80px 0px;
  margin: 30px 0;
}
.terms-cont .entry__article h1,h2,h3,h4,h5,h6 
{
	font-size: 24px;
	font-weight: 700;
	color: #C89E37;
	margin-bottom: 10px;
	line-height: 40px;
}
.terms-cont p
{
	font-size: 16px;
  line-height: 28px;
	font-weight: 400;
	margin-bottom: 15px;
  text-align: justify;
}

/* Terms css ends here */

/* Conatct css start here */
.contact-from-area
{
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 80px 0px;
  margin: 30px 0;
}
.contact-from-area h3
{
  font-size: 24px;
	font-weight: 700;
	color: #6759ff;
	margin-bottom: 10px;
	line-height: 40px;
}
.contact-from-area li 
{
	position: relative;
	font-size: 22px;
	line-height: 30px;
	color: #000;
	font-weight: 700;
	padding: 20px 0;
}
.contact-from-area li a
{
  color: #000;
  font-size: 22px;
  font-weight: 500;
}
.contact-from-area li a:hover
{
  color: #6759ff;
}
.contact-left {
	padding: 50px;
	box-shadow: rgba(153, 144, 255, 0.84) 0px 0px 0px 2px, rgba(6, 24, 44, 0.77) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
	border-radius: 7px;
	background: #fff;
	min-height: 500px;
	width: 80%;
	margin-top: 35px;
}
/* Contact form css end here */

.contact-form h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
  color: var(--primary-color);
}
.single-contact-info {
  max-width: 220px;
  text-align: left;
  margin-bottom: 35px;
}
.single-contact-icon {
  color: #333;
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 500;
}
.single-contact-icon i {
  font-size: 20px;
  color: var(--primary-color);
  margin-right: 7px;
}
.single-contact-text {
  color: #000;
  line-height: 24px;
}

.form-control {
  border: 1px solid #01359aad;
  height: 45px;
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.footer-logo a{
  color: #fff;
} 
.HeroTitle {
  margin-top: 80px;
  margin-bottom: 10px;
  font-size: 65px;
  margin-right: 5px;
}
.HeroSubtitle {
  font-size: 28px;
  font-weight: 600;
  line-height: 44px;
  margin-top: 10px;
}
.footer-area:before {
  content: "";
  width: 200px;
  height: 200px;
  background: #01359a4f;
  position: absolute;
  bottom: 61%;
  border-radius: 20px;
  transform: rotate(45deg);
}
.banner {
  height: 100%;
  flex-grow: 0;
  max-width: 100%;
  flex-basis: 100%;
}
.banner-inner {
  color: rgba(0, 0, 0, 0.87);
  padding: 32px 0px;
  z-index: 10;
  position: relative;
}
.landing-wrap {
  height: 100%;
  overflow: hidden;
}
.btn-wrap {
  width: 100%;
  display: inherit;
  align-items: inherit;
  justify-content: inherit;
  margin-top: 10px;
}
.primary-btn, .btn.btn-bg {
 
    font-size: 0.9375rem;
   
    box-shadow: 0 1.5px 12px 4px rgb(0 0 0 / 6%);
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-weight: 600;
    line-height: 1.75;
    border-radius: 4px;
    text-transform: uppercase;
    margin: 0;
    display: inline-flex;
    outline: 0;
    padding: 0;
    position: relative;
    align-items: center;
    user-select: none;
    vertical-align: middle;
    -moz-appearance: none;
    justify-content: center;
    text-decoration: none;
    background-color: transparent;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}
.primary-btn{
  color: #01359a;
  border: 1px solid rgba(0, 188, 212, 0.5);
  border-color: #01359a;
  min-width: 200px;
  height: 48px;
}
.btn.btn-bg {
  min-width: 100px;
  height: 42px;
  border: 1px solid #fff;
  background-color: rgba(0, 188, 212, 0.05);
  color: #01359a;
}
.primary-btn:hover {
  color: #01359a;
}
.btn.btn-bg:hover {
  border: 1px solid #fff;
  background-color: rgba(0, 188, 212, 0.05);
  color: #fff;
}
button.btn.btn-bg.submit-btn {
  color: #01359a;
  border-color: #01359a;
}
.banner-con3 {
  width: 100%;
  height: 100%;
  position: relative;
  background: #000;
}
.navbar-brand{
  position: relative;
}

.banner-con2 {
  top: 0;
  left: 0;
  width: 1040px;
  height: 840px;
  overflow: hidden;
  position: absolute;
  background: #6759FF;
  box-shadow: -30px 20px 0px 0px #6759FF;
  border-radius: 80px;
}

.contact-us .banner-con2, .about-us .banner-con2, .privacy-wrap .banner-con2, .terms-wrap .banner-con2, .login .banner-con2, .register .banner-con2{
  height: 700px;
} 
.banner-bg {
  background: #01359a1f;
  overflow: hidden;
}
.secondary-btn {
  border: 1px solid #6759FF!important;
  background-color: #6759FF!important;
  color: #fff!important;
}

.secondary-btn:hover {

  background-color: transparent!important;
  color: #6759FF!important;
}
.banner-con3 {
  width: 100%;
  height: 100%;
  position: relative;
  background: #000;
}
.banner-con4 {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 10;
  position: absolute;
  background: #000000;
}
.banner-con3 .banner-con5 {
  top: 98px;
  left: 30px;
  width: 100%;
  display: block;
  position: fixed;
}

#contact .btn-wrap{
  margin: 0;
}
#contact .primary-btn{
margin: 0;
}
#contact h3 {
  font-size: 30px;
}
.entry__article h6 {
  font-size: 23px;
  font-weight: 700;
  color: #01359a;
  margin-bottom: 5px;
}
@media (min-width: 992px){

.banner{
    flex-grow: 0;
    max-width: 50%;
    flex-basis: 50%;
    padding: 100px 0;
}
.banner-con2 {
  top: -666px;
  left: -28px;
  width: 1182px;
  transform: rotate(-45deg);
}
.banner-con3 {
  top: -100px;
  left: 451px;
  transform: rotate(75deg);
  transform-origin: top left;
}

}
@media (max-width: 991.98px) {
  .about-text {
    margin-top: 60px;
}
  .login .banner-wrap, .register .banner-wrap{
    display: none;
  }
.navbar-brand {
    color: #fff;
}
.navbar-brand:hover{
  color: #fff;
}
  .login .banner-inner, .register .banner-inner{
    color: #000;
  }
  .login  .main-title, .register .main-title{
    margin: 50px auto 0;
}
.banner-bg .banner-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  max-height: 300px;
}
 
 .navbar-nav .nav-item:not(:last-child) {
   margin: 15px 25px;
  }
  .menu-open {
    overflow: hidden;
    overflow-x: hidden;
  }
  #navbarNav.navbar-collapse {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    position: fixed !important;
    min-height: 100vh;
    top: 0;
    padding: 0;
    height: 100%;
    left: -100%;
    width: 300px;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    display: block;
    z-index: 99;
    display: flex;
    flex-direction: column;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  #navbarNav.navbar-collapse.menu-show {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  #navbarNav.navbar-collapse .navbar-nav {
    width: 100%;
  }
  .navbar-nav .nav-item {
    display: inline-block;
    width: 100%;
    margin: 15px 0 !important;
    padding: 0 25px;
  }
  .navbar-nav .nav-link.signup_butn {
    padding: 0;
  }
  .navbar-nav.align-items-center.nav-butns {
    display: flex;
    align-items: center;
    flex-direction: revert;
  }
  .navbar-nav.align-items-center.nav-butns .nav-item {
    text-align: center;
    border-right: 1px solid #bbb;
  }
  .navbar-nav.align-items-center.nav-butns .nav-item:last-child {
    border-right: 0;
  }
  .navbar-nav.align-items-center.nav-butns {
    display: flex;
    align-items: center;
    flex-direction: revert;
    border-bottom: 1px solid #bbb;
  }
  .header-search-1-form {
    max-width: 280px;
    right: 10px;
  }
  .section-heading {
    margin: 0 0 30px 0;
  }
  .footer-cta .call-to-action-inner {
    padding: 25px;
  }

  .sec-ptb {
    padding-top: 20px;
}
.banner {
  display: flex;
  align-items: center;

}
.banner-bg .banner{
  height: 350px;
}
  .banner-inner {
    color: #fff;
    margin: 0 auto;
    max-width: 640px;
    text-align: center;
    z-index: 999;
}
.banner-con4 {
 
  opacity: 0.5;
  background: #000000;
}
.banner-con2 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.banner-wrap {
  position: absolute;
  top: -75px;
  left: 0;
}
.banner-con2 {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: absolute;
 background: transparent; 
  box-shadow: none; 
 border-radius:0px;
}
.primary-btn {
  color: #fdfdfd;
  border-color: #ffffff;
  min-width: 200px;
  height: 48px;
}
.landing-wrap {
  height: calc(100vh - 75px);
  overflow: hidden;
}
}

@media (max-width: 767.98px) {

  .HeroTitle {
      font-size: 35px;
  }
    .section-pt {
      padding-bottom: 80px;
    }
    .section-pb {
      padding-bottom: 80px;
    }
   
    .section-heading h3 {
      font-size: 22px;
    }
    .breadcrumb-area {
      padding: 60px 0 60px 0;
    }
    .breadcrumb-area .breadcrumb-inner .page-title {
      font-size: 30px;
    }
  
    .app-link li {
      width: 48%;
      margin: 0 1% 10px !important;
      max-width: 165px;
    }
    .app-link img {
      width: 100%;
      object-fit: contain;
    }
  }
  @media (max-width: 575px){
    .support-link li{
      flex: 0 0 50%;
      text-align: left;
      max-width: 50%;
      margin: 0 0 20px !important;
    }
    .about-img {
      height: 200px;
      width: 200px;
  }
  }
  @media (max-width: 374.98px) {
    #navbarNav.navbar-collapse.menu-show {
      width: 270px;
    }
    .header-search-1-form {
      max-width: 250px;
      right: 10px;
    }
    .support-link li{
      flex: 0 0 100%;
      max-width: 100%;
    }
    .app-link li{
      text-align: left;
    }
  }
  @media (max-width: 991px)
  {
    [class*="navbar-expand-"] .navbar-brand 
    {
     
      z-index: 9999;
    }
    .laundry-header-transparent
    {
      padding: 0 20px;
    }
    .about-area 
    {
      padding: 0;
    }
    .navbar-brand {
      color: #6759FF;
    }
    .contact-left 
    {
      width: 100%;
      margin-top: 10px;
      margin-bottom: 20px;
    }
    .contact-right
    {
      padding: 25px;
      margin-top: 10px;
    }
    .privacy-cont 
    {
      padding: 0;
    }
    .terms-cont
    {
      padding: 0;
    }
  }
  #contact-form .form-control {
    border: 1px solid #cececead!important;
  }
  .navbar-toggler-icon 
  {
    display: inline-block;
    width: 22px;
    background: #6759FF;
    height: 3px;
    position: relative;
  }
  .navbar-toggler-icon::before {
    position: absolute;
    content: '';
    background: #6759FF;
    width: 22px;
    height: 3px;
    top: 6px;
    left: 0;
  }
  .navbar-toggler-icon::after {
    position: absolute;
    content: '';
    background: #6759FF;
    width: 22px;
    height: 3px;
    top: -6px;
    left: 0;
  }
  .navbar-toggler 
  {
    padding: 4px 10px 6px;
    font-size: 1.25rem;
    line-height: 1;
    background-color: #fff;
    border: 1px solid #6759ff;
    border-radius: .25rem;
  }
  .navbar-brand:hover 
  {
    color: #6759FF;
  }
  #navbarDropdown {
	color: #6759ff;
}

.support-link li a:hover{
	color:#000 !important;
}
