@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-family: 'Swis721 LtCn BT', sans-serif;
  font-weight: 400;
  line-height: 28px;
  color: #02697d;
  font-size: 20px;
  background-color: #eff2f1;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  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: #ffffff !important;
  padding-top: 3px;
  padding-bottom: 3px;
  box-shadow: 0 7px 8px #2023583b;
  position: sticky;
  top: 0;
  justify-content: space-between;
  align-items: center;
  transition: box-shadow 0.3s ease, background 0.3s ease;
  z-index: 1000;
}

.custom-navbar .navbar-brand {
  font-size: 32px;
  font-weight: 600;
}

.custom-navbar .navbar-brand>span {
  opacity: 0.4;
}

.custom-navbar .navbar-toggler {
  border-color: #ff5200;
}

.custom-navbar .navbar-toggler:active,
.custom-navbar .navbar-toggler:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

@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: #000 !important;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  position: relative;
}

@media (min-width: 768px) {
  .custom-navbar .custom-navbar-nav li a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 8px;
    right: 8px;
    background: #ea6834;
    height: 5px;
    opacity: 1;
    visibility: visible;
    width: 0;
    -webkit-transition: 0.15s all ease-out;
    -o-transition: 0.15s all ease-out;
    transition: 0.15s all ease-out;
  }
}

.custom-navbar .custom-navbar-nav li a:hover {
  opacity: 1;
}

.custom-navbar .custom-navbar-nav li a:hover:before {
  width: calc(100% - 16px);
}

.custom-navbar .custom-navbar-nav li.active a {
  opacity: 1;
}

.custom-navbar .custom-navbar-nav li.active a:before {
  width: calc(100% - 16px);
}

.custom-navbar .custom-navbar-cta {
  margin-left: 0 !important;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  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: #3b5d50;
  padding: calc(4rem - 30px) 0 0rem 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;
  }
}

.page-title.intro-excerpt {
  position: relative;
  z-index: 4;
}

@media (min-width: 992px) {
  .hero .intro-excerpt {
    max-width: 450px;
  }
}

.page-title h1 {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}

@media (min-width: 1400px) {
  .page-title h1 {
    font-size: 54px;
  }
}

.hero p {
  color: rgba(255, 255, 255, 0.5);
  margin-botom: 30px;
}

.hero .hero-img-wrap {
  position: relative;
}

.hero .hero-img-wrap img {
  position: relative;
  top: 0px;
  right: 0px;
  z-index: 2;
  max-width: 780px;
  left: -20px;
}

@media (min-width: 768px) {
  .hero .hero-img-wrap img {
    right: 0px;
    left: -100px;
  }
}

@media (min-width: 992px) {
  .hero .hero-img-wrap img {
    left: 0px;
    top: -80px;
    position: absolute;
    right: -50px;
  }
}

@media (min-width: 1200px) {
  .hero .hero-img-wrap img {
    left: 0px;
    top: -80px;
    right: -100px;
  }
}

.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: -100px;
  top: -0px;
}

@media (min-width: 1200px) {
  .hero .hero-img-wrap:after {
    top: -40px;
  }
}

.btn {
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  color: #ffffff;
  background: #003889;
  border-color: #2f2f2f;
}

.btn:hover {
  color: #ffffff;
  background: #0450a7;
  border-color: #222222;
}

.btn:active,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn.btn-primary {
  background: #3b5d50;
  border-color: #3b5d50;
}

.btn.btn-primary:hover {
  background: #314d43;
  border-color: #314d43;
}

.btn.btn-secondary {
  color: #2f2f2f;
  background: #f9bf29;
  border-color: #f9bf29;
}

.btn.btn-secondary:hover {
  background: #f8b810;
  border-color: #f8b810;
}

.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: #0247b3;
  font-weight: 900;
} */
.section-title {
  color: #0247b3;
  font-size: 35px;
  font-weight: bold;
}

.section-color {
  color: #ff7b00 !important;
  font-weight: 900;
}

.section-t {
  color: #fff;
  font-weight: 900;
}

.product-section {
  padding-top: 7rem;
}

.product-section .product-item {
  text-align: center;
  text-decoration: none;
  display: block;
  position: relative;
  padding-bottom: 50px;
  cursor: pointer;
}

.product-section .product-item .product-thumbnail {
  margin-bottom: 30px;
  border: 15px solid #002d73;
  position: relative;
  top: 0;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.product-section .product-item h3 {
  font-weight: 600;
  font-size: 16px;
}

.product-section .product-item strong {
  font-weight: 800 !important;
  font-size: 18px !important;
}

.product-section .product-item h3,
.product-section .product-item strong {
  color: #d10000;
  text-decoration: none;
}

.product-section .product-item .icon-cross {
  position: absolute;
  width: 50px;
  height: 50px;
  display: inline-block;
  background: #00327c;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-bottom: -17.5px;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.product-section .product-item .icon-cross i {
  color: #fff;
  font-size: 22px;
}

.product-section .product-item .icon-cross i {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.product-section .product-item .icon-cross img {
  color: #fff;
  width: 18px;
}


.product-section .product-item .icon-cross img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.product-section .product-item:before {
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  content: "";
  background: #8be3ff54;
  height: 0%;
  z-index: -1;
  border-radius: 10px;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.product-section .product-item img {
  max-width: 100%;
}

.product-section .product-item:hover .product-thumbnail {
  top: -25px;
}

.product-section .product-item:hover .icon-cross {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

.product-section .product-item:hover:before {
  height: 70%;
}

.why-choose-section {
  padding: 7rem 0;
}

@media screen and (max-width:768px) {
  .why-choose-section {
    padding-top: 50px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .we-help-section {
    padding-top: 100px;
  }
}

.why-choose-section .img-wrap {
  position: relative;
  border: 15px solid #002d73;
  border-radius: 45px;
}

.why-choose-section .img-wrap:before {
  position: absolute;
  content: "";
  width: 255px;
  height: 217px;
  background-image: url("../images/dots-yellow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translate(-40%, -40%);
  -ms-transform: translate(-40%, -40%);
  transform: translate(-40%, -40%);
  z-index: -1;
}

.why-choose-section .img-wrap img {
  border-radius: 20px;
}

.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: #f300173d;
  border-radius: 50%;
  right: -8px;
  bottom: 0;
} */

.feature h3 {
  font-size: 18px;
  color: #0247b3;
  font-weight: bold;
}

.feature p {
  font-size: 18px;
  line-height: 22px;
  color: #46919f;
}

.we-help-section .imgs-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) (27);
  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-green.svg");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translate(-40%, -40%);
  -ms-transform: translate(-40%, -40%);
  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 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 18;
  grid-column: 1 / span 18;
  -ms-grid-row: 1;
  -ms-grid-row-span: 27;
  grid-row: 1 / span 27;
} */

.we-help-section .imgs-grid .grid.grid-1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 18;
  grid-column: 1 / span 18;
  -ms-grid-row: 1;
  -ms-grid-row-span: 27;
  grid-row: 2 / span 6;
}

.we-help-section .imgs-grid .grid.grid-2 {
  -ms-grid-column: 19;
  -ms-grid-column-span: 27;
  grid-column: 19 / span 27;
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  grid-row: 1 / span 5;
  padding-left: 20px;
}

/* .we-help-section .imgs-grid .grid.grid-3 {
  -ms-grid-column: 14;
  -ms-grid-column-span: 16;
  grid-column: 14 / span 16;
  -ms-grid-row: 6;
  -ms-grid-row-span: 27;
  grid-row: 6 / span 27;
  padding-top: 20px;
} */
.we-help-section .imgs-grid .grid.grid-3 {
  -ms-grid-column: 14;
  -ms-grid-column-span: 16;
  grid-column: 8 / span 19;
  -ms-grid-row: 6;
  -ms-grid-row-span: 27;
  grid-row: 6 / span 27;
  padding-top: 25px;
}

.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 #3b5d50;
  position: absolute;
  left: 0;
  top: 8px;
}

.popular-product {
  padding: 0 0 7rem 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;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  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;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 120px;
  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%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.testimonial-section {
  padding: 3rem 0 7rem 0;
}

.testimonial-slider-wrap {
  position: relative;
}

.testimonial-slider-wrap .tns-inner {
  padding-top: 30px;
}

.testimonial-slider-wrap .item .testimonial-block blockquote {
  font-size: 16px;
}

@media (min-width: 768px) {
  .testimonial-slider-wrap .item .testimonial-block blockquote {
    line-height: 32px;
    font-size: 18px;
  }
}

.testimonial-slider-wrap .item .testimonial-block .author-info .author-pic {
  margin-bottom: 20px;
}

.testimonial-slider-wrap .item .testimonial-block .author-info .author-pic img {
  max-width: 80px;
  border-radius: 50%;
}

.testimonial-slider-wrap .item .testimonial-block .author-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #2f2f2f;
  margin-bottom: 0;
}

.testimonial-slider-wrap #testimonial-nav {
  position: absolute;
  top: 50%;
  z-index: 99;
  width: 100%;
  display: none;
}

@media (min-width: 768px) {
  .testimonial-slider-wrap #testimonial-nav {
    display: block;
  }
}

.testimonial-slider-wrap #testimonial-nav>span {
  cursor: pointer;
  position: absolute;
  width: 58px;
  height: 58px;
  line-height: 58px;
  border-radius: 50%;
  background: rgba(59, 93, 80, 0.1);
  color: #2f2f2f;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.testimonial-slider-wrap #testimonial-nav>span:hover {
  background: #0247b3;
  color: #ffffff;
}

.testimonial-slider-wrap #testimonial-nav .prev {
  left: -10px;
}

.testimonial-slider-wrap #testimonial-nav .next {
  right: 0;
}

.testimonial-slider-wrap .tns-nav {
  position: absolute;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.testimonial-slider-wrap .tns-nav button {
  background: none;
  border: none;
  display: inline-block;
  position: relative;
  width: 0 !important;
  height: 7px !important;
  margin: 2px;
}

.testimonial-slider-wrap .tns-nav button:active,
.testimonial-slider-wrap .tns-nav button:focus,
.testimonial-slider-wrap .tns-nav button:hover {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: none;
}

.testimonial-slider-wrap .tns-nav button:before {
  display: block;
  width: 7px;
  height: 7px;
  left: 0;
  top: 0;
  position: absolute;
  content: "";
  border-radius: 50%;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  background-color: #d6d6d6;
}

.testimonial-slider-wrap .tns-nav button:hover:before,
.testimonial-slider-wrap .tns-nav button.tns-nav-active:before {
  background-color: #3b5d50;
}

.before-footer-section {
  padding: 7rem 0 12rem 0 !important;
}

.blog-section {
  padding: 7rem 0 12rem 0;
}

.blog-section .post-entry a {
  text-decoration: none;
}

.blog-section .post-entry .post-thumbnail {
  display: block;
  margin-bottom: 20px;
}

.blog-section .post-entry .post-thumbnail img {
  border-radius: 20px;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.blog-section .post-entry .post-content-entry {
  padding-left: 15px;
  padding-right: 15px;
}

.blog-section .post-entry .post-content-entry h3 {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 600;
  margin-bottom: 7px;
}

.blog-section .post-entry .post-content-entry .meta {
  font-size: 14px;
}

.blog-section .post-entry .post-content-entry .meta a {
  font-weight: 600;
}

.blog-section .post-entry:hover .post-thumbnail img,
.blog-section .post-entry:focus .post-thumbnail img {
  opacity: 0.7;
}

.footer-section {
  padding-top: 80px;
  background: #00183b;
}

.footer-section .relative {
  position: relative;
}

.footer-section a {
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.footer-section a:hover {
  color: rgb(247 0 0);
}

.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: #3b5d50;
}

.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;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #3b5d50;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  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: -235px;
  z-index: 1;
  right: 0;
}

.footer-section .sofa-img img {
  max-width: 300px;
}

.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: #3b5d50;
}

.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: #ff4f07;
  border-radius: 50%;
}

.footer-section .custom-social li a:hover {
  background: #ff4f07;
  color: #ffffff;
}

.footer-section .border-top {
  border-color: #dce5e4;
}

.footer-section .border-top.copyright {
  font-size: 14px !important;
}

.untree_co-section {
  padding: 7rem 0;
}

.form-control {
  height: 50px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
}

.form-control:active,
.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #3b5d50;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  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;
}

.service {
  line-height: 1.5;
}

.service .service-icon {
  border-radius: 10px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #3b5d50;
  margin-right: 20px;
  color: #ffffff;
}

textarea {
  height: auto !important;
}

.site-blocks-table {
  overflow: auto;
}

.site-blocks-table .product-thumbnail {
  width: 200px;
}

.site-blocks-table .btn {
  padding: 2px 10px;
}

.site-blocks-table thead th {
  padding: 30px;
  text-align: center;
  border-width: 0px !important;
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.8);
  font-size: 18px;
}

.site-blocks-table td {
  padding: 20px;
  text-align: center;
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.8);
}

.site-blocks-table tbody tr:first-child td {
  border-top: 1px solid #3b5d50 !important;
}

.site-blocks-table .btn {
  background: none !important;
  color: #000000;
  border: none;
  height: auto !important;
}

.site-block-order-table th {
  border-top: none !important;
  border-bottom-width: 1px !important;
}

.site-block-order-table td,
.site-block-order-table th {
  color: #000000;
}

.couponcode-wrap input {
  border-radius: 10px !important;
}

.text-primary {
  color: #3b5d50 !important;
}

.thankyou-icon {
  position: relative;
  color: #3b5d50;
}

.thankyou-icon:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(59, 93, 80, 0.2);
}

.page-title {
  /* background: linear-gradient(135deg, #4facfe, #00f2fe); */
  background-image: url(../images/page-titel.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 284px;
  padding: 100px 0;
  color: #fff !important;
}

.page-title::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  /* background-color: #1DA1F2; */
  background: linear-gradient(to bottom right, #0d47a1bf, #002e36de);
}

.fa-brands,
.fab {
  font-size: 20px !important;
}

.icon-f i {
  color: #fff;
  padding-right: 10px;
}

.footer-bg::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: linear-gradient(to bottom right, #0d47a1c7, #002e36);
}

.footer-bg {
  background-image: url(../images/page-titel.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  color: #fff !important;
}

.title-border span {
  border-bottom: 2px solid #dc3545;
}

.contact-form .title-border span {
  background-color: blanchedalmond;
  border: 2px solid #dc3545;
  padding: 5px;
}

/* about */

.about-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.about-text h2 {
  font-size: 36px;
  color: #0072c6;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #0c6e82;
}

.about-text .highlight {
  font-size: 20px;
  font-weight: bold;
  color: #0072c6;
}

.about-images {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.about-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.about-images img.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 16px;
  }

  .about-images {
    height: 250px;
    margin-bottom: 30px;
  }

  .footer-section .sofa-img {
    position: absolute;
    top: -165px;
    z-index: 1;
    right: 0;
  }

  .footer-section .sofa-img img {
    max-width: 160px;
  }
}

/*  */
/* .deskplus-card {
  width: 280px;
  background: #fff;
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 25px 25px rgb(0 0 0 / 15%);
  text-align: center;
  margin: 16px;
  padding: 0;
  position: relative;
}

.deskplus-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.deskplus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.deskplus-label {
  position: absolute;
  width: 280px;
  height: 40px;
  line-height: 40px;
  background: #ce0002;
  top: 140px; 
  left: -18px;
  border-radius: 30px;
  padding-left: 30px;
  border-bottom-left-radius: 0;
  z-index: 3;
}

.deskplus-label::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 20px;
  background: #848484;
  top: 39px;
  left: 0px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  z-index: 2;
}

.deskplus-label::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 12px;
  background: #ce0002;
  top: 40px;
  left: 0px;
}

.deskplus-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px 0 20px 0;
}

.deskplus-actions a {
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 25px;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  transition: background 0.3s;
}

.deskplus-whatsapp {
  background-color: #25d366;
}

.deskplus-whatsapp:hover {
  background-color: #1ebe57;
}

.deskplus-call {
  background-color: #d90000;
}

.deskplus-call:hover {
  background-color: #b30000;
} */
/*  */
.deskplus-b {
  position: relative;
  border-right: 6px solid red;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 25px 25px rgb(0 0 0 / 15%);
  margin: 16px;
  padding: 15px;
}

.deskplus-b h4 {
  position: absolute;
  width: 200px;
  height: 40px;
  line-height: 40px !important;
  background: #1c7700;
  top: 200px;
  color: #fff;
  text-align: center;
  left: 55px;
  border-radius: 30px;
  /* padding-left: 30px; */
  /* border-bottom-left-radius: 0; */
  font-size: 18px;
}

/* .deskplus-b h4::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 20px;
  background: #000000c4;
  top: 39px;
  left: 0px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  z-index: 2;
}

.deskplus-b h4::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 12px;
  background: #ce0002;
  top: 40px;
  left: 0px;
} */

.deskplus-image {
  background-color: lightgray;
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.deskplus-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px 0 20px 0;
}

.deskplus-actions a {
  text-decoration: none;
  padding: 10px 10px;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;

  font-size: 20px;
  transition: background 0.3s;
}

.deskplus-whatsapp {
  background-color: #25d366;
}

.deskplus-whatsapp:hover {
  background-color: #1ebe57;
}

.deskplus-call {
  background-color: #d90000;
}

.deskplus-call:hover {
  background-color: #b30000;
}

/* .product-bg {
  background-image: url(../images/page-titel.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relfative;
  color: #fff !important;
}

.product-bg::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: linear-gradient(to bottom right, #0d48a1a1, #002e36b9);
} */

.product-bg {
  display: block;
  clear: both;
  position: relative;
  width: 100%;
  height: auto;
  padding: 50px 0px;
  background: url(../images/gallery/bg.jpg) no-repeat fixed 100% 0;
  backface-visibility: hidden;
  background-size: cover;
  overflow: hidden;
}

.product-bg::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  opacity: 0.6;
}

.arrow-img {
  width: 80px;
  position: absolute;
  top: 240px;
  left: -5px;
  content: " ";
}

.read-more-btn {
  margin: 15px 0 0px 0;
  display: inline-block;
  padding: 5px 15px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  border-radius: 50px;
  background: linear-gradient(0deg, #ff0e0e, #900606, #ff0000);
  box-shadow: 0 4px 12px #2f2f2f99;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: linear-gradient(45deg, #cc0000, #ff1a1a, #ff4d4d);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.4);
}

/* Blink animation */
@keyframes blink {

  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.blink {
  animation: blink 2s infinite;
  /* 1s duration, repeat infinitely */
}

/* bench */


.bench-container {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  border-left: 5px solid red;
}

.bench-image {
  width: 100%;
  height: 350px;
  max-width: 400px;
  margin-bottom: 20px;
  transition: opacity 0.3s ease-in-out;
}

.color-options {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0;
}

.color-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #ccc;
  cursor: pointer;
  transition: transform 0.2s, border 0.3s;
}

.color-btn:hover {
  transform: scale(1.1);
  border: 2px solid #000;
}

.color-label {
  font-weight: bold;
  margin-bottom: 20px;
}

.dimensions {
  text-align: left;
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.6;
}

.dimensions h3 {
  margin-bottom: 10px;
}

/* down arrow */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0d47a1;
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}

.arrow {
  display: inline-block;
  animation: moveDown 1s infinite;
}

@keyframes moveDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }

  100% {
    transform: translateY(0);
  }
}

.download-btn:hover {
  background: #08306b;
  color: #fff;
}

/*  */
.we-help-section .imgs-grid .grid video {
  border-radius: 20px;
  max-width: 100%;
  border: 15px solid #002d73;
}

.custom-video {
  height: 340px;
  width: 100%;
  object-fit: cover;
}

.why-choose-section .catalog .img-wrap img {
  border-left: 7px solid red;
  border-right: 7px solid red;
  border-radius: 40px;
}

/* Header */
.contact-header {
  background: linear-gradient(135deg, #0a1a3f, #b71c1c);
  color: #fff;
  padding: 70px 20px;
  text-align: center;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.contact-header h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 18px;
  opacity: 0.9;
}

/* Contact Info */
.contact-info {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h4 {
  color: #0a1a3f;
  font-weight: 600;
  margin-top: 20px;
}

.contact-info p {
  margin: 0;
  font-size: 17px;
}

/* Contact Info Box */
.contact-info {
  border-left: 4px solid red;
  background: #84d1ef;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

/* Text inside contact-info */
.contact-info h4 {
  color: #b71c1c;
  /* red heading */
  transition: color 0.3s ease;
}

.contact-info p {
  color: #20225c;
  transition: color 0.3s ease;
  font-weight: bold;
}

/* .contact-info:hover h4 {
  color: #0a1a3f;
} */

/* Form */
.contact-form {
  background: #9ae3ff;
  padding: 65px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h4 {
  color: #b71c1c;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 12px;
  font-size: 15px;
  margin-bottom: 15px;
}

.contact-form button {
  background: #b71c1c;
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0a1a3f;
  transform: translateY(-2px);
}

/* Map */
iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.arrow-img1 {
  width: 100px;
  position: absolute;
  bottom: 10px;
  left: -2px;
  content: " ";
}

/* Container */
.deskplus-order {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

/* Icon Links */
.deskplus-order a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  /* background: #0a1a3f;  */
  color: #fff;

  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Hover Effect */
.deskplus-order a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Icon specific hover colors */
.deskplus-order a:first-child:hover {
  background: #25D366;
  /* WhatsApp green */
}

.deskplus-order a:first-child {
  background: #25D366;
  font-size: 26px;
}

.deskplus-order a:last-child:hover {
  background: #187ef3;
}

.deskplus-order a:last-child {
  background: #187ef3;
  font-size: 22px;
}

.deskplus-order .fab {
  font-size: 40px !important;
}

.footer-logo-wrap img {
  padding: 5px;
  background-color: #fff;
}

/* ===== Top Header Styles ===== */
.top-header {
  background-color: #21245b;
  /* dark blue background */
  color: #fff;
  padding: 5px 0;
  font-family: Arial, sans-serif;
}

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

.top-header ul li {
  display: inline-block;
  margin-right: 20px;
}

.top-header ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.top-header ul li a:hover {
  color: #ff0000;
  /* red on hover */
}

.top-header .text {
  margin-left: 5px;
  font-weight: 500;
}

.top-social li {
  margin-right: 15px;
}

.top-social li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #ff4700;
  /* red circle */
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s;
}

.top-social li a:hover {
  background-color: #fff;
  color: #ff4700;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .top-header .col-lg-4 {
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }

  .top-social li {
    display: inline-block;
    margin-right: 10px;
  }
}

.top-icon {
  font-size: 16px;
}

.fa,
.fa-brands,
.fa-duotone,
.fa-light,
.fa-regular,
.fa-solid,
.fa-thin,
.fab,
.fad,
.fal,
.far,
.fas,
.fat {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1.5 !important;
  text-rendering: auto;
}

.download-btn1 {
  display: inline-flex;
  align-items: center;
  background: #0d47a1;
  color: #fff;
  padding: 5px 10px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}

.download-btn1:hover {
  background: #0d47a1;
  color: #eee9e9;
  border: 1px solid red;
}

@media screen and (max-width:768px) {
  .bench-image {
    width: 100%;
    height: 300px;
    max-width: 400px;
    margin-bottom: 5px;
    transition: opacity 0.3s ease-in-out;
  }

  .custom-video {
    height: 180px;
    width: 100%;
    object-fit: cover;
  }

  .download-btn1 {
    color: #fff !important;
  }

  .we-help-section .imgs-grid .grid video {
    border-radius: 20px;
    max-width: 100%;
    border: 10px solid #002d73;
  }
}


.wrapper1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
}

.wrapper1 .fab {
  margin: auto;
}

.wrapper1 .social {
  color: #FFF;
  transition: all 0.35s;
  transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
}

.wrapper1 .social:hover {
  text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
  transition: all ease 0.5s;
  -moz-transition: all ease-in 0.5s;
  -webkit-transition: all ease-in 0.5s;
  -o-transition: all ease-in 0.5s;

}

.wrapper1 i {
  font-size: 18px !important;
}

.wrapper1 .facebook {
  color: #4267B2;
}

.wrapper1 .twitter {
  color: #1DA1F2;

}

.wrapper1 .youtube {
  color: #c4302b;
}

.wrapper1 .pinterest {
  color: #c8232c;
}

.wrapper1 .instagram {
  color: transparent;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background-clip: text;
  -webkit-background-clip: text;

}

.wrapper1 .tumblr {
  color: #34526f;
}

.wrapper1 .whatsapp {
  color: #25D366;
}

.wrapper1 .bg-ico {
  display: flex;
  background-color: #FFF;
  width: 30px;
  height: 30px;
  line-height: 90px;
  margin: 0 5px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 28%;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
  opacity: 0.99;
  -webkit-transition: background-color 2s ease-out;
  -moz-transition: background-color 2s ease-out;
  -o-transition: background-color 2s ease-out;
  transition: background-color 2s ease-out;

}

.bg-ico:hover {
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.8);
}

#facebook:hover {
  background-color: #4267B2;
}

#twitter:hover {
  background-color: #1DA1F2;

}

#youtube:hover {
  background-color: #c4302b;
}

#pinterest:hover {
  background-color: #c8232c;
}

#instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);


}

#tumblr:hover {
  background-color: #34526f;
}

#whatsapp:hover {
  background-color: #25D366;
}

.facebook:hover,
.twitter:hover,
.youtube:hover,
.pinterest:hover,
.instagram:hover,
.tumblr:hover,
.whatsapp:hover {
  color: #fff;
  transform: scale(1.3);

}

.wrapper1 a {
  text-decoration: none;
}

.wrapper2 a {
  text-decoration: none;
}

.wrapper2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
}

.wrapper2 .fab {
  margin: auto;
}

.wrapper2 .social {
  color: #FFF;
  transition: all 0.35s;
  transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
}

.wrapper2 .social:hover {
  text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
  transition: all ease 0.5s;
  -moz-transition: all ease-in 0.5s;
  -webkit-transition: all ease-in 0.5s;
  -o-transition: all ease-in 0.5s;

}

.wrapper2 i {
  font-size: 32px !important;
}

.wrapper2 .facebook {
  color: #4267B2;
}

.wrapper2 .twitter {
  color: #1DA1F2;

}

.wrapper2 .youtube {
  color: #c4302b;
}

.wrapper2 .pinterest {
  color: #c8232c;
}

.wrapper2 .instagram {
  color: transparent;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background-clip: text;
  -webkit-background-clip: text;

}

.wrapper2 .tumblr {
  color: #34526f;
}

.wrapper2 .whatsapp {
  color: #25D366;
}

.wrapper2 .bg-ico {
  display: flex;
  background-color: #FFF;
  width: 45px;
  height: 45px;
  line-height: 90px;
  margin: 0 5px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 28%;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
  opacity: 0.99;
  -webkit-transition: background-color 2s ease-out;
  -moz-transition: background-color 2s ease-out;
  -o-transition: background-color 2s ease-out;
  transition: background-color 2s ease-out;

}

/* Sticky button position */
.whatsapp-btn {
  position: fixed;
  top: 85%;
  left: 20px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  background: #25d366;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  padding: 12px;
  width: 60px;
  height: 60px;
  transition: width 0.3s ease, padding 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  z-index: 9999;
}

/* Only icon shakes */
.whatsapp-btn img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  animation: shake 0.8s ease-in-out infinite;
  animation-delay: 2s;
  transform-origin: center;
}

/* Text inside button */
.whatsapp-text {
  margin-left: 10px;
  opacity: 0;
  color: #fff;
  transition: opacity 0.3s ease;
}

/* On hover, expand button */
.whatsapp-btn:hover {
  width: 160px;
  padding: 12px 10px;
}

/* Show text on hover */
.whatsapp-btn:hover .whatsapp-text {
  opacity: 1;
}

/* Pause icon shake on hover */
.whatsapp-btn:hover img {
  animation-play-state: paused;
  transform: scale(1.1);
}

/* Shake animation */
@keyframes shake {

  0%,
  90%,
  100% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(-15deg);
  }

  20% {
    transform: rotate(15deg);
  }

  30% {
    transform: rotate(-15deg);
  }

  40% {
    transform: rotate(15deg);
  }

  50% {
    transform: rotate(0deg);
  }
}

@media screen and (max-width:768px) {
  .whatsapp-btn {
    position: fixed;
    top: 93%;
  }
}

/* Gallery Styles */
.gallery_container {
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1300px) and (max-width: 2560px) {
  .popup-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (min-width: 768px) and (max-width: 1299px) {
  .popup-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (min-width: 300px) and (max-width: 768px) {
  .popup-gallery {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
  }
}

.gallery_item {
  border: 10px solid #002d73e0;
  margin-bottom: 5px;
  overflow: hidden;
}

.popup-gallery a {
  display: block;
  width: 100%;
  border: 1px solid #fff;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.popup-gallery a:hover {
  transform: scale(1.05);
  border-color: #fff;
}

.popup-gallery img {
  display: block;
  width: 100%;
  object-fit: cover;
  min-height: 250px;
  max-height: 250px;
}

@media only screen and (max-width: 1000px) {
  .popup-gallery img {
    min-height: 150px;
    max-height: 150px;
  }
}

/* END  */

.singicon_btn_nlf {
  position: absolute;
  top: 44%;
  bottom: 56%;
  left: 44%;
  right: 56%;
  opacity: 0;
}

.singicon_btn_nlf svg {
  color: #fff;
}

.popup-gallery a:hover .singicon_btn_nlf {
  opacity: 1;
}

.hover_affect_nlf:hover img {
  opacity: 0.5;
}



.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}