/*
01 - Fonts Style
<<<<======================================================>>>>*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400&display=swap");
/*
02 - Variable Style
<<<<======================================================>>>>*/
/*
03 - Global Style
<<<<======================================================>>>>*/
body {
  font-size: 17px;
  font-family: "Roboto", sans-serif;
  color: #4a4c59;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

a {
  transition: all ease 0.5s;
  text-decoration: none;
  color: #4a4c59;
}
a:hover {
  text-decoration: none;
  color: #5d87ff;
}
a:focus {
  text-decoration: none;
}

button {
  outline: 0 !important;
  box-shadow: none;
  border: none;
  padding: 0;
}
button:focus {
  box-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: #1d213e;
  font-weight: 700;
}

p {
  font-size: 17px;
  margin-bottom: 15px;
  line-height: 1.8;
}
p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-76 {
  padding-bottom: 76px;
}

.pb-50 {
  padding-bottom: 50px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.container-fluid {
  max-width: 1780px;
  padding-left: 30px;
  padding-right: 30px;
}

/*
10 - Main Btn Style
<<<<======================================================>>>>*/
.main-btn {
  display: inline-block;
  position: relative;
  background-color: #5d87ff;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  padding: 18px 30px;
  transition: all ease 0.5s;
}
.main-btn::before, .main-btn::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: #1d213e;
  right: 0;
  top: 0;
  transition-delay: 0.2s;
  border-radius: 4px;
}
.main-btn::after {
  right: auto;
  left: 0;
  top: auto;
  bottom: 0;
  transition-delay: 0.6s;
}
.main-btn span {
  display: block;
}
.main-btn span::before, .main-btn span::after {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: #1d213e;
  transition-delay: 0s;
  left: 0;
  top: 0;
  border-radius: 4px;
}
.main-btn span::after {
  transition-delay: 0.4s;
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
}
.main-btn.sub-btn {
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 400;
}
.main-btn:hover {
  color: #ffffff;
}
.main-btn:hover::before {
  width: 100%;
  transition-delay: 0.4s;
}
.main-btn:hover::after {
  width: 100%;
  transition-delay: 0s;
}
.main-btn:hover span::before {
  height: 100%;
  transition-delay: 0.6s;
}
.main-btn:hover span::after {
  height: 100%;
  transition-delay: 0.2s;
}

/*
12 - Hover Style
<<<<======================================================>>>>*/
.hover-style {
  position: relative;
  transition: all ease 0.5s;
  z-index: 1;
}
.hover-style::before, .hover-style::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: #5d87ff;
  right: 0;
  top: 0;
  transition-delay: 0.2s;
  border-radius: 4px;
  z-index: -1;
}
.hover-style::after {
  right: auto;
  left: 0;
  top: auto;
  bottom: 0;
  transition-delay: 0.6s;
}
.hover-style .inner-border {
  display: block;
}
.hover-style .inner-border::before, .hover-style .inner-border::after {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: #5d87ff;
  transition-delay: 0s;
  left: 0;
  top: 0;
  border-radius: 4px;
  z-index: -1;
}
.hover-style .inner-border::after {
  transition-delay: 0.4s;
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
}
.hover-style:hover::before {
  width: 100%;
  transition-delay: 0.4s;
}
.hover-style:hover::after {
  width: 100%;
  transition-delay: 0s;
}
.hover-style:hover .inner-border::before {
  height: 100%;
  transition-delay: 0.6s;
}
.hover-style:hover .inner-border::after {
  height: 100%;
  transition-delay: 0.2s;
}

.banner-img {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.banner-img::before {
  content: "Laines";
  width: 44px;
  height: 15px;
  position: absolute;
  top: 9px;
  left: 24px;
  background-color: rgb(255, 255, 255);
  transition: all ease 0.5s;
  font-weight: 700;
  font-size: 10px;
  color: var(--headingColor);
  line-height: 1;
}

/*
13 - Main Section Title Style
<<<<======================================================>>>>*/
.main-section-title {
  text-align: center;
  max-width: 960px;
  margin: -5px auto 50px;
}
.main-section-title .up-title {
  font-size: 18px;
  background: #f55e1a;
  background: linear-gradient(to right, #f55e1a 0%, #0000ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}
.main-section-title h1 {
  font-size: 100px;
  background: #f55e1a;
  background: linear-gradient(to right, #f55e1a 0%, #0000ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 900;
  display: inline-block;
  margin-bottom: 10px;
  line-height: 1;
}
.main-section-title h2 {
  font-size: 50px;
  margin-bottom: 15px;
}
.main-section-title h2 span {
  background: #f55e1a;
  background: linear-gradient(to right, #f55e1a 0%, #0000ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main-section-title h2:last-child {
  margin-bottom: 0;
}
.main-section-title p {
  max-width: 700px;
  margin: auto;
}
.main-section-title.w-860 {
  max-width: 860px;
}
.main-section-title.w-760 {
  max-width: 760px;
}
.main-section-title .ltr-rtl-btn {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin-top: 50px;
}
.main-section-title .ltr-rtl-btn li {
  display: inline-block;
  margin-right: 30px;
}
.main-section-title .ltr-rtl-btn li:last-child {
  margin-right: 0;
}

/*
05 - Navbar Style
<<<<======================================================>>>>*/
.navbar {
  background-color: #ffffff;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.navbar.sticky {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background-color: #ffffff;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.navbar .navbar-nav .nav-item .nav-link {
  font-size: 20px;
  padding: 25px 30px;
  font-weight: 500;
  transition: all ease 0.5s;
}
.navbar .navbar-nav .nav-item .nav-link.active {
  color: #5d87ff;
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: #5d87ff;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
/*
05 - Banner Style
<<<<======================================================>>>>*/
.banner-section {
  background-image: url(../../assets/images/section-bg-1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding-top: 150px;
  padding-bottom: 150px;
}

.banner-content {
  text-align: center;
  max-width: 960px;
  margin: auto;
}
.banner-content h1 {
  font-size: 70px;
  margin-bottom: 20px;
}
.banner-content p {
  font-size: 20px;
  margin-bottom: 30px;
}
.banner-content .features-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 50px;
}
.banner-content .features-list li {
  display: inline-block;
  margin-right: 30px;
  cursor: pointer;
}
.banner-content .features-list li:last-child {
  margin-right: 0;
}
.banner-content .features-list li img {
  border-radius: 100px;
  border: 4px solid #ffffff;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

/*
05 - Design Style
<<<<======================================================>>>>*/
.single-design {
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
  border-radius: 8px;
  transition: all ease 0.5s;
  margin-bottom: 24px;
}
.single-design h1 {
  font-size: 60px;
  line-height: 1;
  background: #f55e1a;
  background: linear-gradient(to right, #f55e1a 0%, #0000ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 900;
}
.single-design span {
  font-size: 20px;
  display: block;
  font-weight: 500;
}
.single-design:hover {
  transform: translateY(-5px);
}

/*
05 - Category Style
<<<<======================================================>>>>*/
.category-section {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.category-section.bg-1 {
  background-image: url(../../assets/images/section-bg-2.png);
}

.main-category-item {
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  transition: all ease 0.5s;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.main-category-item::before {
  content: "Laines";
  width: 35px;
  height: 15px;
  position: absolute;
  top: 5px;
  left: 17px;
  background-color: rgb(255, 255, 255);
  border-radius: 0;
  transition: all ease 0.5s;
  font-weight: 700;
  font-size: 10px;
  color: var(--headingColor);
  line-height: 1;
}
.main-category-item.before-none::before {
  display: none;
}
.main-category-item img {
  border-radius: 7px 7px 0 0;
  transition: all ease 0.5s;
}
.main-category-item h3 {
  font-size: 22px;
  margin-bottom: 0;
  padding: 15px 30px;
  border-radius: 0 0 10px 10px;
  transition: all ease 0.5s;
  background-color: rgba(245, 94, 26, 0.2);
}
.main-category-item:hover {
  transform: translateY(-5px);
}
.main-category-item:hover h3 {
  background-color: #5d87ff;
  color: #ffffff;
}

/*
05 - Responsive Style
<<<<======================================================>>>>*/
.responsive-section {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.responsive-section.bg-1 {
  background-image: url(../../assets/images/section-bg-3.png);
}

/*
05 - Features Style
<<<<======================================================>>>>*/
.main-features-item {
  background-color: #ffffff;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  transition: all ease 0.5s;
  margin-bottom: 24px;
}
.main-features-item img {
  background-color: #fff6f6;
  border-radius: 50px;
  margin-bottom: 20px;
}
.main-features-item h3 {
  font-size: 18px;
  margin-bottom: 0;
}
.main-features-item:hover {
  transform: translateY(-5px);
}

/*
05 - Purchase Style
<<<<======================================================>>>>*/
.purchase-section {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 200px;
  padding-bottom: 200px;
}
.purchase-section.bg-1 {
  background-image: url(../../assets/images/section-bg-4.png);
}

.purchase-content {
  max-width: 960px;
  margin: auto;
  text-align: center;
}
.purchase-content h2 {
  font-size: 60px;
  margin-bottom: 50px;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .ptb-100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .pt-100 {
    padding-top: 60px;
  }
  .pb-100 {
    padding-bottom: 60px;
  }
  .pb-70 {
    padding-bottom: 30px;
  }
  .pb-76 {
    padding-bottom: 36px;
  }
  .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
    max-width: 540px;
  }
  .banner-section {
    height: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .banner-content h1 {
    font-size: 30px;
  }
  .banner-content p {
    font-size: 16px;
  }
  .banner-content .features-list {
    margin-bottom: 30px;
  }
  .banner-content .features-list li {
    margin-right: 18px;
  }
  .main-section-title {
    margin-bottom: 30px;
  }
  .main-section-title .up-title {
    font-size: 16px;
  }
  .main-section-title h1 {
    font-size: 50px;
  }
  .main-section-title h2 {
    font-size: 28px;
  }
  .main-section-title .ltr-rtl-btn {
    margin-top: 25px;
  }
  .single-design h1 {
    font-size: 40px;
  }
  .single-design span {
    font-size: 18px;
  }
  .main-category-item h3 {
    font-size: 20px;
  }
  .purchase-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .purchase-content h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .main-btn {
    padding: 15px 16px;
    font-size: 14px;
  }
}
/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ptb-100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .pt-100 {
    padding-top: 60px;
  }
  .pb-100 {
    padding-bottom: 60px;
  }
  .pb-70 {
    padding-bottom: 30px;
  }
  .pb-76 {
    padding-bottom: 36px;
  }
  .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
    max-width: 720px;
  }
  .banner-section {
    height: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .banner-content h1 {
    font-size: 40px;
  }
  .banner-content p {
    font-size: 18px;
  }
  .banner-content .features-list {
    margin-bottom: 30px;
  }
  .banner-content .features-list li {
    margin-right: 18px;
  }
  .main-section-title {
    margin-bottom: 30px;
  }
  .main-section-title .up-title {
    font-size: 16px;
  }
  .main-section-title h1 {
    font-size: 60px;
  }
  .main-section-title h2 {
    font-size: 35px;
  }
  .main-section-title .ltr-rtl-btn {
    margin-top: 25px;
  }
  .single-design h1 {
    font-size: 50px;
  }
  .single-design span {
    font-size: 18px;
  }
  .main-category-item h3 {
    font-size: 20px;
  }
  .purchase-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .purchase-content h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .main-btn {
    padding: 15px 16px;
    font-size: 14px;
  }
}
/* Mobile and iPad Navbar */
@media only screen and (max-width: 991px) {
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar .navbar-nav {
    padding-top: 20px;
    text-align: center;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    font-size: 15px;
  }
  .navbar .others-option {
    padding-bottom: 20px;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */