@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,700;0,900;1,600&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');
body {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-family: "Roboto", sans-serif;
  position: relative;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
}

p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-family: "Roboto", sans-serif;
}

p:last-child {
  margin-bottom: 0px;
}

img {
  width: 100%;
}

.shapes img {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

:focus,
.form-control {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

input:focus,
.form-control:focus {
  outline: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff !important;
  z-index: 100;
  padding: 0px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.sticky2 {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #151c2b !important;
  z-index: 99999;
  padding: 0px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.sticky3 {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #1b528a !important;
  z-index: 99999;
  padding: 0px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.pt-100 {
  padding-top: 95px;
}

.pb-100 {
  padding-bottom: 95px;
}

.pt-70 {
  padding-top: 70px;
}

.content-gap {
  margin-top: 20px;
}

.vbox-close {
  top: 0px !important;
  right: 20px !important;
  font-size: 50px !important;
  color: #226c5f !important;
}

.full-container-fluid .row {
  margin-left: 0px;
  margin-right: 0px;
}

.bg-primary {
  background-color: #f8f8f8 !important;
}

.bg-light-blue {
  background-color: #3851a2 !important;
}

.bg-dark-blue {
  background-color: #002e5b !important;
}

.uni-button {
  position: relative;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  margin: 15px 0 0 0;
  padding: 12px 30px;
  text-transform: capitalize;
  background-color: #764fd6;
  overflow: hidden;
  -webkit-transition: 1s all ease;
  transition: 1s all ease;
  z-index: 5;
  border-radius: 5px;
}

.uni-button::before {
  content: "";
  width: 0%;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  top: 2px;
  left: 0px;
  -webkit-transition: 1s all ease;
  transition: 1s all ease;
}

.uni-button::after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  bottom: 2px;
  right: 0px;
  -webkit-transition: 1s all ease;
  transition: 1s all ease;
}

.uni-button:hover {
  color: #fff;
}

.uni-button:hover::after, .uni-button:hover::before {
  width: 100%;
}

.uni-button-2 {
  background-color: #eff67b;
}

.uni-button-3 {
  color: #764fd6;
  background-color: #dbb2fc;
}

button.uni-button {
  border: none;
}

.section-heading h3 {
  font-size: 42px;
  color: #202020;
  font-weight: 700;
  font-family: 'Kaushan Script', cursive;
}

.section-heading p {
  font-size: 16px;
  color: #707070;
}

.section-middle {
  text-align: center;
}

.menu-sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  list-style: none;
  margin: 0px;
}

.menu-sidebar .cart-btn {
  margin-right: 20px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #764fd6;
  text-align: center;
  padding-top: 2px;
  background-color: #764fd6;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  cursor: pointer;
  position: relative;
}

.menu-sidebar .cart-btn a {
  text-decoration: none;
}

.menu-sidebar .cart-btn a i::before {
  color: #226c5f;
  margin: 0px;
  padding: 0px;
  font-weight: 500;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.menu-sidebar .cart-btn::before {
  content: "2";
  width: 20px;
  height: 20px;
  position: absolute;
  top: -5px;
  right: -10px;
  border-radius: 50%;
  border: 1px solid #764fd6;
  background-color: #226c5f;
  font-size: 12px;
  font-weight: 600;
  color: #764fd6;
}

.menu-sidebar .cart-btn:hover {
  background-color: #226c5f;
}

.menu-sidebar .cart-btn:hover a i::before {
  color: #ffffff;
}

.menu-bar-btn {
  cursor: pointer;
  position: relative;
  top: 3px;
}

.menu-bar-btn i::before {
  margin: 0px;
  color: #62439e;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.modal.right.fade.show .modal-dialog {
  right: 0 !important;
}

.sidebarModal {
  left: auto;
  right: 0 !important;
  height: 100%;
  width: 400px;
  position: fixed;
  top: 0;
  z-index: 1000000000;
  background: #ffffff;
  -webkit-box-shadow: 1px 1px 5px 5px #727171;
          box-shadow: 1px 1px 5px 5px #727171;
  overflow-x: hidden;
  padding: 20px 0px !important;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.sidebarModal .modal-content {
  background: #ffffff;
  border: none;
}

.sidebarModal .modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: 0 20px 0 auto;
}

.sidebarModal .modal-dialog {
  max-width: 500px;
  margin: 0 auto;
}

.sidebarModal .modal-header {
  border-bottom: none;
}

.sidebarModal .logo-times {
  margin-bottom: 60px;
}

.sidebarModal .modal-body {
  padding-left: 40px;
  padding-right: 40px;
}

.sidebarModal .modal-body img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.sidebarModal .logo {
  margin-bottom: 30x;
}

.sidebarModal .profiles {
  margin-top: 50px;
}

.sidebarModal .profiles .per-col {
  padding: 0 5px;
  margin-bottom: 10px;
}

.sidebarModal .profiles .per-img {
  position: relative;
}

.sidebarModal .profiles a {
  text-decoration: none;
}

.sidebarModal .profiles .overlay-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #764fd675;
  height: 0;
}

.sidebarModal .profiles .overlay-icon .fa-search-plus {
  height: 30px;
  width: 30px;
  color: #e4e0e0;
  font-size: 25px;
  text-align: center;
  line-height: 30px;
  margin-top: 10px;
  text-align: center;
  position: absolute;
  top: 41%;
  left: 50%;
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.sidebarModal .profiles .per-img:hover img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.sidebarModal .profiles .per-img:hover .overlay-icon {
  height: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.sidebarModal .profiles .per-img:hover .overlay-icon .fa-search-plus {
  opacity: 1;
  visibility: visible;
}

.sidebarModal .contact-items {
  margin-top: 50px;
  text-align: center;
}

.sidebarModal .contact-items h4 {
  font-size: 30px;
  font-weight: 600;
}

.sidebarModal .contact-items h4 span {
  font-size: 24px;
  color: #764fd6;
}

.sidebarModal .contact-items h4 a {
  color: #226c5f;
  text-decoration: none;
  font-size: 17px;
}

.sidebarModal .contact-items .or {
  margin: 7px 0 10px;
}

.sidebarModal .contact-items .social-icon {
  margin-top: 30px;
}

.sidebarModal .contact-items .social-icon p {
  color: #7bc74d;
  margin-bottom: 10px;
  margin-left: -10px;
}

.sidebarModal .contact-items .social-icon i {
  font-size: 20px;
  color: #1d2a4d;
  margin-right: 10px;
}

.sidebarModal .contact-items .social-icon .fa-facebook-f {
  color: #3368c6;
}

.sidebarModal .contact-items .social-icon .fa-google-plus-g {
  color: #dd0404;
}

.sidebarModal .contact-items .social-icon .fa-instagram {
  color: #d30f7b;
}

.sidebarModal .contact-items .social-icon i:hover {
  color: #764fd6;
}

.sidebarModal img {
  max-width: 100%;
}

/*================================================
Navbar Area CSS
=================================================*/
.nav-topbar {
  background-color: #fff;
  padding: 5px 0px;
  -webkit-box-shadow: 0px 0px 10px #4e4c4c;
          box-shadow: 0px 0px 10px #4e4c4c;
  border-bottom: 1px solid #eeeeee23;
}

.nav-topbar button.navbar-toggler {
  padding: 0px 4px;
}

.logo {
  line-height: 1;
}

.logo img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.nav-link {
  color: #62439e !important;
  text-align: left;
  font-weight: 400;
  font-size: 15px;
}

.navbar-toggler {
  color: #ffffff !important;
  background-color: #ffffff;
}

.nav-link:hover,
.nav-link.active {
  color: #62439e !important;
  font-weight: 700;
}

/* navbar end */
/*================================================
Sunglass Banner Area CSS
=================================================*/
.banner {
  background-color: #764fd6;
  padding: 190px 0 100px;
}

.banner-text {
  width: 510px;
  margin-left: auto;
  margin-right: -170px;
  padding: 0px 0px 10px 10px;
}

.banner-text .banner-heading {
  background-color: #764fd6;
  z-index: 99;
  position: relative;
  border-radius: 10px;
}

.banner-text h1 {
  font-size: 72px;
  font-weight: 700;
  color: #ffffff;
}

.banner-text p {
  color: #ffffff;
  margin-bottom: 15px;
}

.banner-img-slide {
  position: relative;
}

.banner-img-slide .owl-nav {
  position: absolute;
  bottom: 10%;
  left: -150px;
  z-index: 9999999;
}

.banner-img-slide .owl-nav button {
  width: 35px;
  height: 35px;
  border: 1px solid #fff !important;
  border-radius: 50%;
  background-color: transparent !important;
  color: #fff !important;
  margin-left: 5px;
  margin-right: 5px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.banner-img-slide .owl-nav button:hover {
  background-color: #764fd6 !important;
  color: #ffffffa1  !important;
}

.banner-img-slide .image-slide {
  border-radius: 25px;
}

.banner-img-slide .image-slide img {
  border-radius: 25px;
  height: 550px;
  object-fit: cover;
}

/*================================================
Sunglass Why Choose Us Area CSS
=================================================*/
.why-we-card {
  padding: 30px 16px;
  text-align: center;
  border-radius: 15px;
  background-color: #f8f8f8;
  margin-top: 30px;
  margin-left: 15px;
  margin-right: 15px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.why-we-card .why-we-icon i::before {
  font-size: 50px;
  font-weight: 500;
  margin: 0px;
  padding: 0px;
  line-height: 1;
  color: #226c5f;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.why-we-card .why-we-text p {
  font-size: 20px;
  color: #202020;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  text-transform: capitalize;
  font-weight: 900;
}

.why-we-card .why-we-text{
  margin-left: 15px;
}

.why-we-card:hover {
  background-color: #dbb2fc;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.why-we-card:hover .why-we-icon i::before {
  color: #ffffff;
}

.why-we-card:hover .why-we-text p {
  color: #202020;
}

/*================================================
Sunglass Featured Product Area CSS
=================================================*/
.featured.pb-100 {
  padding-bottom: 155px;
}

.featured-product-content {
  margin-top: 20px;
}

.featured-product-content .featured-product-card {
  margin-top: 30px;
}

.featured-product-content .featured-product-card .fp-img {
  position: relative;
  /*overflow: hidden;*/
  border-radius: 35px;
}

.featured-product-content .featured-product-card .fp-img img {
  /*border-radius: 35px;*/
  /*height: 450px;*/
  object-fit: cover;
  transition: 1.2s;
}

.featured-product-content:hover .featured-product-card .fp-img img{
  transform: scale(1.05);
}

.featured-product-content .featured-product-card .fp-img .fp-brand-name {
  position: absolute;
  top: 30px;
  /* width: 100px; */
  background-color: #27343283;
  padding: 10px 20px;
  text-align: center;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
}

.featured-product-content .featured-product-card .fp-img .fp-brand-name p {
  line-height: 1.2;
  color: #ffffff;
  position: relative;
  padding-left: 10px;
  font-size: 20px;
}

.featured-product-content .featured-product-card .fp-img .fp-brand-name p::before {
  content: "";
  height: 100%;
  width: 5px;
  background-color: #764fd6;
  position: absolute;
  left: 0;
}

.featured-product-content .owl-nav {
  position: absolute;
  bottom: -60px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  z-index: 9999999;
}

.featured-product-content .owl-nav button {
  width: 35px;
  height: 35px;
  border: 1px solid #764fd6 !important;
  border-radius: 50%;
  background-color: transparent !important;
  color: #764fd6 !important;
  margin-left: 5px;
  margin-right: 5px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.featured-product-content .owl-nav button:hover {
  background-color: #764fd6 !important;
  color: #ffffff !important;
}

/*================================================
Sunglass Most Popular Area CSS
=================================================*/
.popular-card {
  position: relative;
  margin: 15px 0 0 0;
}

.popular-card .pp-card-cart-icon {
  position: absolute;
  top: 10px;
  right: 15px;
}

.popular-card .pp-card-cart-icon i {
  height: 35px;
  width: 35px;
  background-color: #764fd6;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  padding-top: 3px;
}

.popular-card .pp-card-cart-icon i::before {
  font-size: 18px;
  font-weight: 600;
  margin: 0px;
  color: #226c5f;
}

.popular-card .popular-card-footer {
  position: absolute;
  bottom: 5px;
  width: 100%;
}

.popular-card .popular-card-footer ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.popular-card .popular-card-footer ul li {
  font-size: 17px;
  font-weight: 600;
}

.popular-card .popular-card-footer ul li i::before {
  line-height: 1;
  margin: 0px;
  font-size: 16px;
}

.popular-card .popular-card-footer ul .love {
  color: Red;
}

.popular-card .popular-card-footer ul .comments {
  color: #764fd6;
}

.popular-card .popular-card-footer ul .views {
  color: #777777;
}

/*================================================
Sunglass Perfect Optical Area CSS
=================================================*/
.perfect-optical-content {
  margin-top: 40px;
}

.perfect-optical-content .nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.perfect-optical-content .nav .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 18px;
}

.perfect-optical-content .nav .nav-link i::before {
  margin: 0px 10px 0px 0px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.perfect-optical-content .nav .active {
  background-color: #226c5f;
}

.perfect-optical-content .tab-content {
  margin-top: 50px;
}

.optical-teb-content-text {
  width: 420px;
  padding-left: 20px;
}

.optical-teb-content-text h3 {
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
}

.optical-teb-content-text p {
  width: 80%;
}

.optical-teb-content-text .product-description ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.optical-teb-content-text .product-description ul li {
  width: 200px;
  padding-left: 10px;
  position: relative;
  margin-top: 10px;
  z-index: 9999;
  border-radius: 5px;
  overflow: hidden;
}

.optical-teb-content-text .product-description ul li::before {
  content: "";
  width: 3px;
  height: 100%;
  background-color: #226c5f;
  position: absolute;
  left: 0px;
  z-index: -1;
}

.optical-teb-content-text .product-description ul li::after {
  content: "";
  width: 0%;
  height: 100%;
  background-color: #226c5f50;
  position: absolute;
  left: 0px;
  z-index: -1;
  padding-top: 5px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.optical-teb-content-text .product-description ul li:hover::after {
  width: 100%;
}

.optical-teb-content-text .tab-price {
  margin-top: 30px;
}

.optical-teb-content-text .tab-price ul {
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}

.optical-teb-content-text .tab-price ul li {
  margin-right: 20px;
}

.optical-teb-content-text .tab-price ul li p {
  font-size: 25px;
  font-weight: 600;
}

.optical-teb-content-text .tab-price ul li .uni-button {
  margin-top: 0px;
}

/*================================================
Sunglass What We Provide Area CSS
=================================================*/
.provide-card {
  margin-top: 50px;
}

.provide-card .provide-card-text {
  /* width: 380px; */
  margin-top: 20px;
  z-index: 1;
  position: relative;
}

.provide-card .provide-card-text h4 {
  font-size: 35px;
  font-family: 'Kaushan Script', cursive;
}

.provide-card .provide-card-text p {
  /* width: 75%; */
  font-size: 15px;
}

.provide-card .provide-card-img {
  position: relative;
}

.provide-card .provide-card-img img {
  border-radius: 10px;
}

.provide-card .provide-card-img .provide-card-img-text {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 280px;
  padding: 20px;
  background-color: #ffffff;
  -webkit-box-shadow: 10px 10px 1px 2px #eeeeeea4;
          box-shadow: 10px 10px 1px 2px #eeeeeea4;
  border-radius: 10px;
}

.provide-card .provide-card-img .provide-card-img-text ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.provide-card .provide-card-img .provide-card-img-text ul li {
  color: #707070;
  position: relative;
  padding-left: 15px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

/* .provide-card .provide-card-img .provide-card-img-text ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #707070;
  border-radius: 50%;
  position: absolute;
  left: 0px;
  top: 7px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
} */

.provide-card .provide-card-img .provide-card-img-text ul li:hover {
  color: #202020;
}

.provide-card .provide-card-img .provide-card-img-text ul li:hover::before {
  background-color: #202020;
}

.right-align-text .provide-card-text {
  margin-left: auto;
  text-align: end;
}

.right-align-text .provide-card-text p {
  width: 70%;
  margin-left: auto;
}

.right-align-text .provide-card-img .provide-card-img-text {
  left: 80%;
}

/*================================================
Sunglass Testimonial Area CSS
=================================================*/
.stars ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.stars ul li {
  display: inline-block;
}

.stars ul li i {
  color: #764fd6;
}

.testimonial-slider {
  margin-top: 50px;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  padding-left: 500px;
}

.testimonial-slider img {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  margin: 0 auto;
}

.testimonial-slider::before {
  content: url("../images/testimmonial/testimonial-1-bg.jpg");
  position: absolute;
  left: 0;
  top: 0px;
  height: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.testimonial-slider .active {
  background-color: #226c5f;
  color: #ffffff;
  border-radius: 15px;
}

.testimonial-slider .active h6 {
  color: #ffffff;
}

.testimonial-slider .owl-nav {
  position: absolute;
  left: 60%;
  bottom: 0px;
}

.testimonial-slider .owl-nav button {
  margin: 0 5px;
  width: 30px;
  height: 30px;
  border: 1px solid #764fd6 !important;
  color: #764fd6 !important;
  border-radius: 50%;
  padding-top: 5px;
}

.testimonial-slider .owl-nav button:hover {
  background-color: #764fd6 !important;
  color: #ffffff !important;
}

.testimonial-card {
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  border: 1px dashed #226c5f;
  border-radius: 15px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.testimonial-card .stars {
  margin-bottom: 10px;
}

.testimonial-card h5 {
  margin-top: 10px;
}

.testimonial-card h6 {
  margin: 0px;
  font-weight: 400;
  color: #707070;
  font-size: 15px;
}

/*================================================
Sunglass Newsletter Area CSS
=================================================*/
.newsletter-content {
  padding: 40px;
  border-radius: 25px;
}

.newsletter-form-area {
  background-color: #226c5f;
  border-radius: 20px;
  color: #ffffff;
  padding: 45px 30px 50px;
}

.newsletter-form-area h3 {
  margin: 0px;
  font-size: 28px;
  font-weight: 600;
}

.newsletter-form-area p {
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 15px;
}

.newsletter-form-area input {
  margin-top: 25px;
  padding: 10px;
}

.newsletter-form-area button {
  margin-top: 25px;
  width: 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: #020202c2;
}
.overlay:before {
  position: absolute;
  content: "";
  background-color: #000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: .3;
}
.footer {
  background-color: #000;
}

.footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  height: auto;
  background: #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.footer img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.footer-logo-area p {
  margin-top: 15px;
  color: #ffffff;
  font-size: 18px;
}
.footer-home ul {
  margin: 0;
  padding: 0;
}

.footer-home ul li {
  list-style-type: none;
  display: block;
  position: relative;
  padding-left: 45px;
  margin-bottom: 15px;
}

.footer-home ul li i {
  display: inline-block;
  color: #62439e;
  font-size: 35px;
  position: absolute;
  top: 0;
  left: 0;
}

.footer-home ul li span {
  display: block;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.footer-home ul li a {
  display: block;
  color: #fff;
}

.social-icons ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.social-icons ul li {
  display: inline-block;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  text-align: center;
  border-radius: 20%;
  font-size: 18px;
  padding-top: 3px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.social-icons ul li a {
  color: #62439e !important;
  text-decoration: none;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.social-icons ul li:hover {
  background-color: #fff;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.social-icons ul li:hover a {
  color: #226c5f;
}

.footer-links h3 {
  color: #ffffff;
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 15px;
  display: inline-block;
  border-bottom: 1px dotted #fff;
}

.footer-links ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.footer-links ul li {
  margin-top: 10px;
  /* text-transform: capitalize; */
  font-size: 18px;
  font-weight: 400;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
}

/* .footer-links ul li:hover {
  padding-left: 3px;
} */

/*================================================
Watch Banner Area CSS
=================================================*/
.header-2 .topbar.nav-topbar {
  background-color: #151c2b;
}

.banner-2 {
  background-color: #151c2b;
  position: relative;
}

.banner-2 .banner-text {
  width: 100%;
  margin: 0px;
  padding: 0px;
  color: #ffffff;
}

.banner-2 .banner-text h1 {
  font-size: 62px;
}

.banner-2 .banner-text .banner-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
}

.banner-2 .banner-text .banner-price .uni-button {
  margin-top: 0px;
  margin-right: 15px;
}

.banner-2 .banner-text .banner-price p {
  font-size: 25px;
  font-weight: 600;
}

.banner-2::after {
  content: "";
  width: 32%;
  height: 100%;
  background-color: #002138;
  position: absolute;
  right: 0;
  top: 0px;
  z-index: 0;
}

.banner-2 .banner-image {
  padding: 30px;
}

.banner-2 .banner-image img {
  z-index: 9;
  position: relative;
}

.banner-icons {
  margin-top: 30px;
}

.banner-icons ul {
  margin: 0px;
  padding: 0px;
}

.banner-icons ul li {
  list-style: none;
  display: inline-block;
  text-align: center;
  margin: 0 15px 0 0;
}

.banner-icons ul li i {
  width: 60px;
  height: 60px;
  display: inline-block;
  text-align: center;
  padding-top: 3px;
  background-color: #eff67b;
  border-radius: 25%;
}

.banner-icons ul li i::before {
  margin: 0px;
  padding: 0px;
  font-size: 35px;
  color: #202020;
  font-weight: 500;
}

.banner-icons ul li p {
  margin-top: 5px;
  font-size: 15px;
}

/*================================================
Watch Why Choose Us Area CSS
=================================================*/
.why-we-card-2 {
  margin-left: 0px;
  margin-right: 0px;
}

.why-we-card-2 .why-we-icon {
  margin-bottom: 10px;
}

.why-we-card-2 .why-we-icon i::before {
  color: #151c2b;
}

.why-we-card-2:hover {
  background-color: #151c2b;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.why-we-card-2:hover .why-we-icon i::before {
  color: #eff67b;
}

/*================================================
Watch Featured Area CSS
=================================================*/
.featured-text-area {
  width: 450px;
  margin-left: auto;
}

.featured-text-area .featured-text {
  width: 65%;
}

.featured-text-area .featured-text h4 {
  font-size: 24px;
  font-weight: 600;
}

.featured-text-area .featured-text p {
  color: #707070;
}

.featured-text-area .featured-text ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.featured-text-area .featured-text ul li {
  position: relative;
  padding-left: 15px;
}

.featured-text-area .featured-text ul li::before {
  content: "\2726";
  position: absolute;
  left: 0px;
}

.featured-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
}

.featured-price .uni-button {
  margin-top: 0px;
  margin-right: 15px;
}

.featured-price p {
  font-size: 25px;
  font-weight: 600;
  color: #202020 !important;
}

.featured-slides {
  text-align: center;
  height: 100%;
}

.featured-slides .featured-single-slide {
  padding: 15px;
  background-color: #002a49;
  border: 1px solid;
  text-align: center;
}

.featured-slides .featured-single-slide img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.featured-slides .owl-nav {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  margin-top: 15px;
}

.featured-slides .owl-nav button {
  width: 35px;
  height: 35px;
  border: 1px solid #151c2b !important;
  border-radius: 50%;
  margin: 0 10px;
}

/*================================================
Watch Most Popular Area CSS
=================================================*/
.wp-card {
  position: relative;
  padding: 10px;
  height: 155px;
  margin-top: 10px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.wp-card img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
}

.wp-card .wp-card-text {
  padding-top: 5px;
  padding-left: 145px;
}

.wp-card .wp-card-text p {
  margin-bottom: 10px;
  font-size: 15px;
}

.wp-card .wp-card-text a {
  color: #151c2b;
  text-decoration: none;
  position: relative;
  font-weight: 600;
}

.wp-card .wp-card-text a::before {
  content: "";
  width: 20%;
  height: 2px;
  background-color: #226c5f;
  position: absolute;
  bottom: 0px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.wp-card .wp-card-text a:hover::before {
  width: 100%;
}

.wp-card:hover {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 10px 2px #d3d3d3;
          box-shadow: 0px 0px 10px 2px #d3d3d3;
}

.wp-img {
  position: relative;
  border: 1px solid;
  text-align: center;
  color: #ffffff;
}

.wp-img .wp-img-text {
  position: absolute;
  bottom: 10%;
  width: 100%;
}

.wp-img .wp-img-text .featured-price {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wp-img .wp-img-text .featured-price p {
  color: #ffffff !important;
}

.quality-watch img {
  max-width: 100%;
}

.quality-watch .wp-img {
  z-index: 99;
  border: none;
}

.quality-watch .wp-img .quality-img-text {
  bottom: 7%;
}

.quality-watch .wp-img .quality-img-text h4 {
  margin-top: 5px;
}

.quality-watch .wp-img .quality-img-text .featured-price {
  margin-top: 15px;
}

.quality-watch .section-heading {
  width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.qw-bottom {
  position: relative;
  margin-top: -250px;
}

.qw-bottom .qw-bottom-text {
  position: absolute;
  bottom: 10%;
  left: 30px;
  color: #ffffff;
  width: 300px;
}

.qw-bottom .qw-bottom-text ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.qw-bottom .qw-bottom-text ul li {
  margin: 10px 0 0 0;
  position: relative;
  padding-left: 20px;
}

.qw-bottom .qw-bottom-text ul li::before {
  content: "\2726";
  position: absolute;
  left: 0px;
}

/*================================================
Watch We Provide Area CSS
=================================================*/
.we-provide-content-2 .provide-card {
  margin-bottom: 150px;
}

.we-provide-content-2 .provide-card-text {
  margin-left: auto;
}

.we-provide-content-2 .provide-card-img .provide-card-img-text {
  bottom: -100px;
  left: 70%;
  -webkit-box-shadow: 0px 0px 1px 5px #002a49;
          box-shadow: 0px 0px 1px 5px #002a49;
  border-radius: 0px;
  background-color: #ffbab9;
  border: 5px solid #ffffff;
  width: 315px;
}

.we-provide-content-2 .provide-card-img .provide-card-img-text ul li {
  margin: 3px 0;
  color: #000000;
  position: relative;
  padding-left: 15px;
}

.we-provide-content-2 .provide-card-img .provide-card-img-text ul li::before {
  content: "\2726";
  background-color: transparent;
  position: absolute;
  left: 0px;
  top: 0px;
}

.we-provide-content-2 .provide-card-img .provide-card-img-text ul li:hover {
  background-color: transparent !important;
}

.we-provide-content-2 .right-align-text {
  width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.we-provide-content-2 .right-align-text .provide-card-img {
  width: 600px;
}

.we-provide-content-2 .right-align-text .provide-card-img-text {
  left: -15%;
}

.we-provide-content-2 .yellow-color .provide-card-img-text {
  background-color: #eff67b;
}

.we-provide-content-2 .fitness {
  margin-bottom: 105px;
}

.we-provide-content-2 .fitness .provide-card-img-text {
  background-color: #e3d19c;
}

/*================================================
Watch Testimonial Area CSS
=================================================*/
.w-testimonial-slider-area {
  margin-top: 30px;
  background-color: #ffffff;
  position: relative;
  padding: 30px 30px 40px;
  border-radius: 20px;
}

.w-testimonial-slider-area img {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.w-testimonial-slider-area .owl-nav {
  position: absolute;
  left: 70px;
  bottom: 30px;
}

.w-testimonial-slider-area .owl-nav button {
  width: 30px;
  height: 30px;
  border: 1px solid #1b528a !important;
  margin: 0 10px;
  border-radius: 50%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.w-testimonial-slider-area .owl-nav button:hover {
  background-color: #1b528a !important;
  color: #ffffff !important;
}

.w-single-slide {
  margin-bottom: 30px;
}

.w-slide-img {
  position: relative;
}

.w-slide-img .w-client-intro {
  background-color: #1b528a;
  color: #ffffff;
  width: 200px;
  padding: 10px 15px;
  border-radius: 10px;
  text-align: center;
  position: absolute;
  bottom: -30px;
  right: -70px;
}

.w-slide-img .w-client-intro h5 {
  font-size: 20px;
  margin-bottom: 0px;
}

.w-slide-img .w-client-intro p {
  font-size: 15px;
}

.w-single-text {
  width: 70%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.w-single-text p {
  font-size: 18px;
}

/*================================================
Watch NewsLetter Area CSS
=================================================*/
.watch-newsletter .w-newsletter-content {
  background-image: url("../images/newsletter-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 50px 50px;
  border-radius: 10px;
}

.watch-newsletter .w-newsletter-content .section-heading h3,
.watch-newsletter .w-newsletter-content .section-heading p {
  color: #ffffff;
}

.watch-newsletter .newsletter-form-area {
  background-color: transparent;
  padding: 0px 0px 0px 30px;
}

.watch-newsletter .newsletter-form-area .uni-button {
  background-color: #eff67b;
}

/*================================================
Watch Footer Area CSS
=================================================*/
.footer-2 {
  background-color: #151c2b;
}

.header-3 .topbar.nav-topbar {
  background-color: #1b528a;
}

/*================================================
Backpack banner Area CSS
=================================================*/
.banner-3 {
  background-color: #1b528a;
}

.banner-3::after {
  display: none;
}

.banner-3 .bags {
  margin-top: 30px;
}

.banner-3 .bags ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.banner-3 .bags ul li {
  display: inline-block;
  margin: 10px;
}

.banner-3 .bags ul li img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.banner-3 .bags a {
  color: #ffffff;
  text-decoration: underline;
  padding-left: 5px;
  display: inline;
  margin-top: 20px;
}

/*================================================
Backpack Why Choose Us Area CSS
=================================================*/
.backpack-why-we {
  background-color: #e5e5e5;
}

.backpack-why-we-right-side {
  text-align: center;
}

.backpack-why-we-right-side .backpack-why-we-right-bottom {
  margin-top: 20px;
}

.backpack-why-we-right-side .backpack-why-we-right-bottom ul {
  margin: 0px;
  padding: 0px;
}

.backpack-why-we-right-side .backpack-why-we-right-bottom ul li {
  display: inline-block;
  width: 96px;
  background-color: #ffffff;
  padding: 10px;
  text-align: center;
  border-radius: 15px;
  margin: 0 10px;
}

/*================================================
Backpack Featured Area CSS
=================================================*/
.backpack-featured-text-area .featured-text {
  background-color: #1b528a;
  padding: 20px;
  color: #ffffff;
  border-radius: 20px;
  margin-top: 30px;
}

.backpack-featured-text-area .featured-text p {
  color: #ffffff;
}

.backpack-featured-text-area .featured-text .bag-color {
  margin-top: 15px;
}

.backpack-featured-text-area .featured-text .bag-color span {
  width: 20px;
  height: 20px;
  background-color: #55548a;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: inline-block;
  margin: 3px;
}

.backpack-featured-text-area .featured-text .bag-color .red-color {
  background-color: #e45865;
}

.backpack-featured-text-area .featured-text .bag-color .green {
  background-color: #549735;
}

.backpack-featured-text-area .featured-text .bag-color .white {
  background-color: #ffffff;
}

.backpack-featured-text-area .featured-text .featured-price p {
  color: #ffffff !important;
}

.backpack-feature {
  background-color: #e5e5e5;
}

.backpack-feature .featured-slides .featured-single-slide {
  border-radius: 20px;
}

.backpack-feature .featured-slides .featured-single-slide img {
  max-width: 100%;
}

/*================================================
Backpack Most Popular Area CSS
=================================================*/
.bp-left-product {
  background-color: #ffe9e1;
  padding: 50px 20px 30px;
  margin-top: 30px;
  border-radius: 20px;
  position: relative;
}

.bp-left-product .close-btn {
  position: absolute;
  right: 30px;
  top: 20px;
  cursor: pointer;
}

.bp-left-product .close-btn i {
  font-size: 25px;
  color: #e45865;
}

.bp-left-product .bp-text {
  margin-top: 20px;
}

.bp-left-product .bp-text h4 {
  font-size: 25px;
  font-weight: 600;
}

.bp-left-product .bp-text ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.bp-left-product .bp-text ul li {
  padding-left: 15px;
  position: relative;
  margin: 2px 0;
}

.bp-left-product .bp-text ul li::before {
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: #e45865;
  position: absolute;
  left: 0px;
  top: 5px;
}

.bp-image {
  text-align: center;
}

.bp-image img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.bp-right-img-area {
  background-color: #f6f6f3;
  padding: 30px 20px;
  position: relative;
  margin-top: 30px;
  border-radius: 20px;
}

.bp-right-img-area .bp-right-text {
  margin-top: 20px;
}

.bp-right-img-area .bp-right-text h4 {
  font-size: 25px;
  font-weight: 600;
}

.bp-right-img-area .bp-right-text i {
  font-size: 25px;
  color: #e45865;
  cursor: pointer;
}

.backpack-opt .nav .active {
  background-color: #e45865;
}

/*================================================
Backpack Provide Area CSS
=================================================*/
.backpack-provide {
  background-color: #e5e5e5;
}

.backpack-provide #conference-timeline .conference-center-line {
  z-index: 0;
  top: 150px;
  height: 55%;
}

.backpack-provide #conference-timeline .conference-timeline-content {
  padding-top: 0;
  padding-bottom: 0;
}

.backpack-provide .timeline-article .content-left,
.backpack-provide .timeline-article .content-right {
  padding: 0px;
}

.backpack-provide .timeline-article .content-left:before,
.backpack-provide .timeline-article .content-right:before {
  content: "\2194";
  color: #1b528a;
}

.backpack-provide .timeline-article .content-right:before {
  left: -15px;
}

.backpack-provide .timeline-article p {
  margin: 0px;
}

.backpack-provide .wpb-text-area {
  padding: 15px;
}

.backpack-provide .wpb-image-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff5dc;
  padding: 20px 0px 20px 15px;
}

.backpack-provide .wpb-image-area img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.backpack-provide .wpb-image-area .wpb-img-text {
  background-color: #ffffff;
  padding: 10px;
}

.backpack-provide .wpb-image-area .wpb-img-text ul {
  margin: 0px;
  padding: 0;
  list-style: none;
}

.backpack-provide .wpb-image-area .wpb-img-text ul li {
  position: relative;
  padding-left: 15px;
  margin: 2px 0;
}

.backpack-provide .wpb-image-area .wpb-img-text ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #e45865;
  border-radius: 50%;
  position: absolute;
  left: 0px;
  top: 5px;
}

/*================================================
Backpack Testimonial Area CSS
=================================================*/
.back-pack-testimonial-content {
  margin-top: 30px;
}

.bt-single-slide {
  text-align: center;
  background-color: #ffe9e1;
  padding: 30px 50px 50px;
}

.bt-single-slide i {
  font-size: 30px;
  color: #1b528a;
}

.bt-single-slide p {
  font-size: 18px;
}

.bt-single-slide h5 {
  font-size: 24px;
  margin-bottom: 0px;
}

.back-pack-testimonial-img img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: -120px;
}

.bt-slider .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 25px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}

.bt-slider .owl-dots .owl-dot {
  height: 15px;
  width: 15px;
  background-color: #1b528a !important;
  border-radius: 50%;
  margin: 3px;
}

.bt-slider .owl-dots .active {
  background-color: #e45865 !important;
}

/*================================================
Backpack Newsletter Area CSS
=================================================*/
.backpack-newsletter {
  background-color: #e5e5e5;
}

.backpack-newsletter .bp-newsletter-content {
  padding: 50px 0px 50px 50px;
  background-color: #ffffff;
  border-radius: 25px;
}

.backpack-newsletter .bp-newsletter-content .bp-newsletter-form-area {
  background-color: #1b528a;
  height: 100%;
  padding: 30px 0 30px 30px;
  border-radius: 25px 0px 0px 25px;
}

.backpack-newsletter .bp-newsletter-content .bp-newsletter-form-area form {
  background-color: #ffffff;
  height: 100%;
  padding: 60px 40px 60px 20px;
  position: relative;
  margin-right: -0px;
  border-radius: 25px 0px 0px 25px;
}

.backpack-newsletter .bp-newsletter-content .bp-newsletter-form-area form input {
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-bottom: 1px solid #c9c9c9;
}

.backpack-newsletter .bp-newsletter-content .bp-newsletter-form-area form .input-group button {
  margin-left: 0px !important;
  margin-right: -75px;
  border-radius: 50% !important;
  height: 70px !important;
  width: 70px !important;
  background-color: #e45865;
  border: 1px solid #e45865;
}

.backpack-newsletter .bp-newsletter-content .bp-newsletter-form-area form .input-group button i {
  color: #ffffff;
  font-size: 25px;
}

.backpack-newsletter .bp-newsletter-content .bp-newsletter-form-area form .form-check input {
  padding: 0px;
  border: 1px solid #e45865;
}

/*================================================
CopyRight Area CSS
=================================================*/
.copyright {
  text-align: center;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 10px;
  padding: 12px 0 10px;
  color: #ffffff;
  background-color: #764fd6;
  border-top: 1px solid #ffffff43;
}

.copyright a {
  text-decoration: none;
  color: #fff;
}

.copyright-2 {
  background-color: #151c2b;
}

.copyright-2 a {
  color: #eff67b;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: 20px;
  right: 20px;
  border-radius: 5px;
  background-color: #002e5b;
  color: #ffffff;
  z-index: 99;
  width: 33px;
  text-align: center;
  height: 35px;
  opacity: 0;
  visibility: hidden;
  font-size: 20px;
  -webkit-transition: var(--transition);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.go-top i {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.go-top:hover {
  background-color: #002e5b;
  color: #ffffff;
  border: 1px solid #002e5b;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}
/*# sourceMappingURL=style.css.map */