@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;800&family=Poppins:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap");

body {
  font-family: "Montserrat", sans-serif;
  color: #444444;
  overflow-x: hidden;
}
.row {
  margin-right: 0;
  margin-left: 0;
}
a {
  color: #222;
}

a:hover {
  color: #222;
  text-decoration: none;
}
input:focus,
input:focus-visible,
textarea:focus,
textarea:focus-visible {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #f72c25;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}
.container90 {
  width: 90%;
  margin: auto;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #37423b;
  transition: 0.3s;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
  color: #f72c25;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #37423b;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active > a,
.nav-menu .drop-down ul li:hover > a {
  color: #f72c25;
}



.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 22px;
  background: #f72c25;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.get-started-btn:hover {
  background: #3ac162;
  color: #fff;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 17px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #37423b;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #37423b;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #f72c25;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(32, 38, 34, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}
.hero {
  background-image: url("./assets/homebg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding-top: 15vh;
  padding-bottom: 20vh;
  height: 90vh;
}

.h h1 {
  font-size: 60px;
  color: #222;
  text-align: center;
  font-family: "Poppins";
}
.h p {
  width: 50%;
  margin: auto;
  text-align: center;
}
.product {
  margin: auto;

  /* box-shadow: 0px 2px 5px 0px #d8d8d870; */
}
.product img {
  width: 100%;
}
.card-cont {
  padding: 10px;
}
.product h5 {
  font-weight: 500 !important;
  font-family: "Montserrat";
  font-size: 14px;
  margin-bottom: 10px;
}
.product h6 {
  font-size: 12px;
  margin: 0;
}

.card-cont {
}

.login {
  width: 100%;
  padding-top: 15vh;
}

.login-container {
  background-color: #fff;
  border-radius: 10px;
  padding-top: 10vh;
  height: 90vh;
  box-shadow: 0px 0px 16px 1px #adadad61;
}
.login-button {
  background-color: #f72c25;
  padding: 10px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
  width: 100%;
}
.login-form .login-input {
  border: none;
  width: 100%;
  border-bottom: 2px solid rgb(173, 173, 173);
  padding: 5px 15px;
  margin-top: 15px;
}
.w50 {
  margin: auto;
}
.login-form form {
  width: 55%;
  margin: auto;
}
.login-img {
  text-align: center;
}
.login-img img {
  height: 60%;
}
.login-form form h4 {
  font-weight: 100 !important;
  font-family: "Montserrat" !important;
}

.ab-info {
  align-self: center;
}

.ab-info p {
  font-size: 26px;
  font-family: "Raleway";
  letter-spacing: 2px;
  line-height: normal;
}

.it1 {
  position: absolute;
  top: -20px;
  left: -35%;
  height: 150vh;
}

.ai1 {
  /* width: fit-content; */
  position: absolute;
  left: -20%;
}
.ai1 img {
  width: 150%;
}

.ab-info h1 {
  color: #222;
  margin-bottom: 20px;
}
.ai2 img {
  width: 150%;
}

.gg {
  opacity: 0;
  transform: translateY(15vh);
  transition: 1500ms;
}

.active {
  opacity: 1;
  transform: none;
}
.aa0,
.aa1,
.aa2 {
  transition-delay: 0.3s;
}

/* Contact */

.contact {
  width: 100%;
}

.contact-container {
  width: 100%;
  margin-left: 10%;
  padding-top: 20vh;
}

.contact_info {
  background: #000;
  color: #fff;
  padding: 50px 50px;
}
.contact_info .info_item {
  margin-top: 20px;
}
.contact_info i {
  font-size: 35px;
  margin-right: 20px;
  width: 35px;
}
.contact_info {
  font-weight: 300 !important;
}
.contact_info p {
  margin-top: 5px;
  margin-left: 10px;
  text-align: left;
}

.contact-form form {
  width: 65%;
  max-width: 100%;
}

.contact-form form h1 {
  font-weight: 500 !important;
  font-size: 50px;
  font-family: "Raleway" !important;
}

@media screen and (min-width: 700px) {
  .contact-bg {
    position: absolute;
    background-color: #fff;
    width: 80%;
    height: 100vh;
  }
}

@media screen and (max-width: 700px) {
  body,
  html {
    overflow-x: hidden;
  }
  .contact-container {
    margin: 0 !important;
  }
  .contact-box {
    padding-right: 0 !important;
    margin-top: 50px;
  }
}

/*--------------------------------------------------------------
# Buy
--------------------------------------------------------------*/

.checkout {
  padding-top: 5vh;
}
.size-change {
  width: 100%;
  margin: auto;
  background: #fff;
  border-radius: 4px;
  padding: 15px 15px;
  box-shadow: 0 0 3px 0 #dcdcdc;
  cursor: pointer;
}

.size-change p {
  display: inline-block;
  margin-bottom: 0;
}
.size-change div {
  float: right;
  display: inline-block;
}
.checkout-content {
  background-color: #fff;
  margin-top: 30px;
}
.panel-login {
}
.panel-login > .panel-heading {
  color: #00415d;
  background-color: #fff;
  border-color: #fff;
  text-align: center;
}
.panel-login > .panel-heading a {
  text-decoration: none;
  color: #666;
  font-weight: bold;
  font-size: 15px;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.panel-login > .panel-heading a.active {
  color: #029f5b;
  font-size: 18px;
}
.panel-login > .panel-heading hr {
  margin-top: 10px;
  margin-bottom: 0px;
  clear: both;
  border: 0;
  height: 1px;
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0)
  );
  background-image: -moz-linear-gradient(
    left,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0)
  );
  background-image: -ms-linear-gradient(
    left,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0)
  );
}
.panel-login input[type="text"],
.panel-login input[type="email"],
.panel-login input[type="password"] {
  height: 45px;
  border: 1px solid #ddd;
  font-size: 16px;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.panel-login input:hover,
.panel-login input:focus {
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: #ccc;
}
.btn-login {
  background-color: #59b2e0;
  outline: none;
  color: #fff;
  font-size: 14px;
  height: auto;
  font-weight: normal;
  padding: 14px 0;
  text-transform: uppercase;
  border-color: #59b2e6;
}
.btn-login:hover,
.btn-login:focus {
  color: #fff;
  background-color: #53a3cd;
  border-color: #53a3cd;
}
.forgot-password {
  text-decoration: underline;
  color: #888;
}
.forgot-password:hover,
.forgot-password:focus {
  text-decoration: underline;
  color: #666;
}

.btn-register {
  background-color: #1cb94e;
  outline: none;
  color: #fff;
  font-size: 14px;
  height: auto;
  font-weight: normal;
  padding: 14px 0;
  text-transform: uppercase;
  border-color: #1cb94a;
}
.btn-register:hover,
.btn-register:focus {
  color: #fff;
  background-color: #1ca347;
  border-color: #1ca347;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #444444;
  font-size: 14px;
  /* background: #f1f6fe; */
  border-top: 2px solid #f3f3f3;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #f72c25;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #f72c25;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #f72c25;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #f72c25;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #f72c25;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #f14653;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
}

@media (max-width: 768px) {
  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}

/* Product */

.product-name {
  font-weight: 300;
  font-size: 60px;
}
.button {
  margin: auto;
  border: 3px solid #222;
  padding: 15px 15px;
  border-radius: 10px;
  font-size: 18px;
  margin-top: 10px;
  cursor: pointer;
  width: 70%;
}
.b1 {
  border: 3px solid #000;
  background-color: #000;
  color: #fff;
}
.b2 {
  border: 3px solid #f72c25;
  background-color: #f72c25;
  color: #fff;
}
.button span {
  font-size: 12px;
  opacity: 0.9;
  line-height: 12px;
}
.button .br {
  border-right: 1px solid #222;
}
.button .bl {
  border-left: 1px solid #222;
}

.b1 .br,
.b2 .br {
  border-right: 1px solid #fff;
}
.b1 .bl,
.b2 .bl {
  border-left: 1px solid #fff;
}
.buttons .view {
  margin-top: 5px;
  margin-bottom: 15px;
  cursor: pointer;
}
.float-right {
  float: right;
}
.justify-space-between {
  justify-content: space-between;
}

.brand-banner img {
  width: 100%;
}

/* Categories  */
.categories ul {
  list-style: none;
}
