/*
* Template Name: Redemac Adams
* Cleaned and Optimized
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
body {
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 24px;
  color: #6a6a6a;
  font-size: 18px;
  background-color: #eff2f1;
}

html {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
  transition: 0.3s all ease;
  color: #2f2f2f;
  text-decoration: underline;
}
a:hover {
  color: #2f2f2f;
  text-decoration: none;
}
a.more {
  font-weight: 600;
}

.custom-navbar {
  background: #012a75 !important;
  padding-top: 10px;
  padding-bottom: 10px;
}
.custom-navbar .navbar-brand {
  font-size: 32px;
  font-weight: 600;
}
.custom-navbar .navbar-brand img {
  width: 150px;
}
.custom-navbar .navbar-brand > span {
  opacity: 0.4;
}
.custom-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}
.custom-navbar .navbar-toggler:active, .custom-navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
.custom-navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (min-width: 992px) {
  .custom-navbar .custom-navbar-nav li {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.custom-navbar .custom-navbar-nav li a {
  font-weight: 500;
  color: #ffffff !important;
  opacity: 1;
  transition: 0.3s all ease;
  position: relative;
  text-decoration: none !important;
}
@media (min-width: 768px) {
  .custom-navbar .custom-navbar-nav li a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 8px;
    right: 8px;
    background: #138f39;
    height: 5px;
    opacity: 1;
    visibility: visible;
    width: 0;
    transition: 0.15s all ease-out;
  }
}
.custom-navbar .custom-navbar-nav li a:hover {
  opacity: 1;
  color: #ffffff !important;
}
.custom-navbar .custom-navbar-nav li a:hover:before {
  width: calc(100% - 16px);
}
.custom-navbar .custom-navbar-nav li.active a {
  opacity: 1;
  color: #ffffff !important;
}
.custom-navbar .custom-navbar-nav li.active a:before {
  width: calc(100% - 16px);
}
.custom-navbar .custom-navbar-cta {
  margin-left: 0 !important;
  flex-direction: row;
}
@media (min-width: 768px) {
  .custom-navbar .custom-navbar-cta {
    margin-left: 40px !important;
  }
}
.custom-navbar .custom-navbar-cta li {
  margin-left: 0px;
  margin-right: 0px;
}
.custom-navbar .custom-navbar-cta li:first-child {
  margin-right: 20px;
}

.hero {
  background: #012a75;
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .hero {
    padding: calc(4rem - 30px) 0 4rem 0;
  }
}
@media (min-width: 992px) {
  .hero {
    padding: calc(8rem - 30px) 0 8rem 0;
  }
}
.hero .intro-excerpt {
  max-width: 500px;
}
.hero h1 {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}
@media (min-width: 1400px) {
  .hero h1 {
    font-size: 54px;
  }
}
.hero p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 30px;
}
.hero .hero-img-wrap {
  position: relative;
}
.hero .hero-img-wrap img {
  position: relative;
  z-index: 2;
  border-radius: 20px;
}
.hero .hero-img-wrap:after {
  content: "";
  position: absolute;
  width: 255px;
  height: 217px;
  background-image: url("../images/dots-light.svg");
  background-size: contain;
  background-repeat: no-repeat;
  right: -123px;
  top: 54px;
  z-index: 1;
}
@media (min-width: 1200px) {
  .hero .hero-img-wrap:after {
    right: -100px;
    top: -40px;
  }
}
.hero .hero-content {
  flex: 1 1 auto;
  width: 100%;
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 992px) {
  .hero .hero-content {
    flex: 0 1 45%;
    width: auto;
    margin-bottom: 0;
    text-align: left;
  }
}
.hero .hero-image {
  flex: 1 1 auto;
  width: 100%;
  text-align: center;
  position: relative;
}
@media (min-width: 992px) {
  .hero .hero-image {
    flex: 0 1 45%;
    width: auto;
  }
}
.hero .hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}
.hero .hero-image:after {
  content: "";
  position: absolute;
  width: 255px;
  height: 217px;
  background-image: url("../images/dots-light.svg");
  background-size: contain;
  background-repeat: no-repeat;
  right: -123px;
  top: 54px;
  z-index: 1;
}
@media (min-width: 1200px) {
  .hero .hero-image:after {
    right: -100px;
    top: -40px;
  }
}

.btn {
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  color: #ffffff;
  background: #2f2f2f;
  border-color: #2f2f2f;
}
.btn:hover {
  color: #ffffff;
  background: #161616;
  border-color: #161616;
}
.btn:active, .btn:focus {
  outline: none !important;
  box-shadow: none;
}
.btn.btn-primary {
  background: #012a75;
  border-color: #012a75;
}
.btn.btn-primary:hover {
  background: #011842;
  border-color: #011842;
}
.btn.btn-secondary {
  color: #ffffff;
  background: #138f39;
  border-color: #138f39;
}
.btn.btn-secondary:hover {
  background: #0d6227;
  border-color: #0d6227;
}
.btn.btn-white-outline {
  background: transparent;
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn.btn-white-outline:hover {
  border-color: white;
  color: #ffffff;
}

.section-title {
  color: #2f2f2f;
}

.feature {
  margin-bottom: 30px;
}
.feature .icon {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
}
.feature .icon:before {
  content: "";
  width: 33px;
  height: 33px;
  position: absolute;
  background: rgba(1, 42, 117, 0.2);
  border-radius: 50%;
  right: -8px;
  bottom: 0;
}
.feature h3 {
  font-size: 14px;
  color: #2f2f2f;
}
.feature p {
  font-size: 14px;
  line-height: 22px;
  color: #6a6a6a;
}

.we-help-section {
  padding: 2rem 0;
}
@media (min-width: 992px) {
  .we-help-section {
    padding: 5rem 0;
  }
}
@media (max-width: 991px) {
  .we-help-section .btn-wrapper {
    text-align: center;
  }
}
.we-help-section .imgs-grid {
  display: grid;
  grid-template-columns: repeat(27, 1fr);
  position: relative;
}
.we-help-section .imgs-grid:before {
  position: absolute;
  content: "";
  width: 255px;
  height: 217px;
  background-image: url("../images/dots-blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-40%, -40%);
  z-index: -1;
}
.we-help-section .imgs-grid .grid {
  position: relative;
}
.we-help-section .imgs-grid .grid img {
  border-radius: 20px;
  max-width: 100%;
}
.we-help-section .imgs-grid .grid.grid-1 {
  grid-column: 1/span 18;
  grid-row: 1/span 27;
}
.we-help-section .imgs-grid .grid.grid-2 {
  grid-column: 19/span 27;
  grid-row: 1/span 5;
  padding-left: 20px;
}
.we-help-section .imgs-grid .grid.grid-3 {
  grid-column: 14/span 16;
  grid-row: 6/span 27;
  padding-top: 20px;
}

.custom-list {
  width: 100%;
}
.custom-list li {
  display: inline-block;
  width: calc(50% - 20px);
  margin-bottom: 12px;
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}
.custom-list li:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #012a75;
  position: absolute;
  left: 0;
  top: 8px;
}

.popular-product {
  padding: 0 0 2rem 0;
}
@media (min-width: 992px) {
  .popular-product {
    padding: 0 0 5rem 0;
  }
}
.popular-product .product-item-sm h3 {
  font-size: 14px;
  font-weight: 700;
  color: #2f2f2f;
}
.popular-product .product-item-sm a {
  text-decoration: none;
  color: #2f2f2f;
  transition: 0.3s all ease;
}
.popular-product .product-item-sm a:hover {
  color: rgba(47, 47, 47, 0.5);
}
.popular-product .product-item-sm p {
  line-height: 1.4;
  margin-bottom: 10px;
  font-size: 14px;
}
.popular-product .product-item-sm .thumbnail {
  margin-right: 10px;
  flex: 0 0 120px;
  position: relative;
}
.popular-product .product-item-sm .thumbnail:before {
  content: "";
  position: absolute;
  border-radius: 20px;
  background: #dce5e4;
  width: 98px;
  height: 98px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.contact-section,
.gallery-section {
  padding: 2rem 0 2rem 0;
}
@media (min-width: 992px) {
  .contact-section,
.gallery-section {
    padding: 3rem 0 5rem 0;
  }
}
.contact-section .photo-block h4,
.gallery-section .photo-block h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2f2f2f;
  margin-top: 1rem;
}
.contact-section .owl-carousel,
.gallery-section .owl-carousel {
  position: relative;
}
.contact-section .owl-carousel .owl-nav,
.gallery-section .owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  margin-top: 0 !important;
}
@media (min-width: 768px) {
  .contact-section .owl-carousel .owl-nav,
.gallery-section .owl-carousel .owl-nav {
    padding: 0;
  }
}
.contact-section .owl-carousel .owl-nav button,
.gallery-section .owl-carousel .owl-nav button {
  pointer-events: all;
  background: rgba(255, 255, 255, 0.9) !important;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  border: 1px solid #ddd !important;
  box-shadow: none !important;
  position: relative;
  opacity: 1;
}
@media (min-width: 768px) {
  .contact-section .owl-carousel .owl-nav button,
.gallery-section .owl-carousel .owl-nav button {
    width: 40px;
    height: 40px;
  }
}
.contact-section .owl-carousel .owl-nav button:hover,
.gallery-section .owl-carousel .owl-nav button:hover {
  opacity: 0.9;
}
.contact-section .owl-carousel .owl-nav button span,
.gallery-section .owl-carousel .owl-nav button span {
  color: #2f2f2f;
  font-size: 16px;
}
@media (min-width: 768px) {
  .contact-section .owl-carousel .owl-nav button span,
.gallery-section .owl-carousel .owl-nav button span {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .contact-section .owl-carousel .owl-nav .owl-prev,
.gallery-section .owl-carousel .owl-nav .owl-prev {
    margin-left: -50px;
  }
}
@media (min-width: 768px) {
  .contact-section .owl-carousel .owl-nav .owl-next,
.gallery-section .owl-carousel .owl-nav .owl-next {
    margin-right: -50px;
  }
}
.contact-section .owl-carousel .owl-dots,
.gallery-section .owl-carousel .owl-dots {
  margin-top: 30px !important;
  text-align: center;
}
.contact-section .owl-carousel .owl-dots .owl-dot,
.gallery-section .owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(47, 47, 47, 0.2);
  display: inline-block;
  margin: 0 5px;
  transition: all 0.3s ease;
}
.contact-section .owl-carousel .owl-dots .owl-dot.active,
.gallery-section .owl-carousel .owl-dots .owl-dot.active {
  background: #012a75;
  width: 24px;
  border-radius: 5px;
}
.contact-section .owl-carousel .owl-dots .owl-dot:hover,
.gallery-section .owl-carousel .owl-dots .owl-dot:hover {
  background: rgba(1, 42, 117, 0.5);
}

.gallery-section .owl-carousel {
  position: relative;
}

.footer-section {
  padding: 80px 0;
  background: #ffffff;
}
@media (max-width: 991px) {
  .footer-section {
    text-align: center;
  }
}
.footer-section .relative {
  position: relative;
}
.footer-section a {
  text-decoration: none;
  color: #2f2f2f;
  transition: 0.3s all ease;
}
.footer-section a:hover {
  color: rgba(47, 47, 47, 0.5);
}
.footer-section .subscription-form {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  margin-top: 100px;
}
@media (min-width: 992px) {
  .footer-section .subscription-form {
    margin-top: 0px;
    margin-bottom: 80px;
  }
}
.footer-section .subscription-form h3 {
  font-size: 18px;
  font-weight: 500;
  color: #012a75;
}
.footer-section .subscription-form .form-control {
  height: 50px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
}
.footer-section .subscription-form .form-control:active, .footer-section .subscription-form .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #012a75;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}
.footer-section .subscription-form .form-control::-webkit-input-placeholder {
  font-size: 14px;
}
.footer-section .subscription-form .form-control::-moz-placeholder {
  font-size: 14px;
}
.footer-section .subscription-form .form-control:-ms-input-placeholder {
  font-size: 14px;
}
.footer-section .subscription-form .form-control:-moz-placeholder {
  font-size: 14px;
}
.footer-section .subscription-form .btn {
  border-radius: 10px !important;
}
.footer-section .sofa-img {
  position: absolute;
  top: -200px;
  z-index: 1;
  right: 0;
}
.footer-section .sofa-img img {
  max-width: 380px;
}
.footer-section .links-wrap {
  margin-top: 0px;
}
@media (min-width: 992px) {
  .footer-section .links-wrap {
    margin-top: 54px;
  }
}
.footer-section .links-wrap ul li {
  margin-bottom: 10px;
}
.footer-section .footer-logo-wrap .footer-logo {
  font-size: 32px;
  font-weight: 500;
  text-decoration: none;
  color: #012a75;
}
.footer-section .custom-social li {
  margin: 2px;
  display: inline-block;
}
.footer-section .custom-social li a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  background: #dce5e4;
  color: #012a75;
  border-radius: 50%;
}
.footer-section .custom-social li a:hover {
  background: #012a75;
  color: #ffffff;
}
.footer-section .border-top {
  border-color: #dce5e4;
}
.footer-section .border-top.copyright {
  font-size: 14px !important;
}

.form-control {
  height: 50px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
}
.form-control:active, .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #012a75;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}
.form-control::-webkit-input-placeholder {
  font-size: 14px;
}
.form-control::-moz-placeholder {
  font-size: 14px;
}
.form-control:-ms-input-placeholder {
  font-size: 14px;
}
.form-control:-moz-placeholder {
  font-size: 14px;
}

textarea {
  height: auto !important;
}

.text-primary {
  color: #012a75 !important;
}

.nav-tabs {
  border-bottom: 2px solid #dee2e6;
}
.nav-tabs .nav-link {
  color: #012a75;
  background-color: #ffffff;
  border: 1px solid #012a75;
  transition: all 0.3s ease;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 8px 8px 0 0;
  margin: 0 4px;
  font-size: 16px;
}
@media (max-width: 375px) {
  .nav-tabs .nav-link {
    padding: 10px 16px;
    font-size: 14px;
    margin: 0 2px;
  }
}
@media (max-width: 374px) {
  .nav-tabs .nav-link {
    padding: 8px 12px;
    font-size: 13px;
    margin: 0 1px;
  }
}
.nav-tabs .nav-link:hover {
  background-color: #011842;
  color: #ffffff;
  border-color: #011842;
}
.nav-tabs .nav-link.active {
  color: #ffffff !important;
  background-color: #012a75;
  border-color: #012a75;
  font-weight: 600;
}

/*# sourceMappingURL=style.css.map */
