:root {
  --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Raleway", sans-serif;
}

:root {
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #053669;
  /* --accent-color: #eb5d1e;  */
  /* --accent-color: #982f6a; */
  --accent-color: #053669;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

.text-success{
    color: #053669 !important;
}

:root {
  --nav-color: #053669;
  --nav-hover-color: #eb5d1e;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #eb5d1e;
}


.light-background {
  --background-color: #fffaf8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 999999;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
}

.nav-link{
    color: #982f6a !important;
}

.our_tabs .nav-tabs .nav-link {
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, .07);
  border: 1px solid var(--beige-600, #f1e5d5);
  border-radius: 8px;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  /* max-height: 36px; */
  max-height: 60px;
  margin-right: 8px;
  max-width: 128px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  /*color: var(--contrast-color);*/
  /*background: var(--accent-color);*/
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 12px;
  transition: 0.3s;
  border: 3px solid #982f6a;
  color: #053669;
  font-weight: bold;
    
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #fff;
  /*background: color-mix(in srgb, var(--accent-color), transparent 15%);*/
  background: #982f6a;
}

.header .btn-getstarted:hover i{
    color:#fff;
}

@media (max-width: 1200px) {
  /*.header .logo {*/
  /*  order: 1;*/
  /*}*/

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 10px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--default-color);
  font-size: 24px;
  font-weight: 400;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 400;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  /* min-height: 70vh; */
  min-height: 85vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  z-index: 997;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: #053669;
  background: white;
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  border: 3px solid #982f6a;
}

.btn-get-started {
  color: #053669;
  background: white;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  /* letter-spacing: 1px; */
  display: inline-block;
  padding: 10px 15px 10px 15px;
  border-radius: 11px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 3px solid #982f6a;
}

.btn-get-started:hover {
  color: white;
  background:#982f6a;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content h3 {
  font-weight: 700;
  font-size: 26px;
}

.about .about-content ul {
  list-style: none;
  padding: 0;
}

.about .about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .about-content ul li:first-child {
  margin-top: 35px;
}

.about .about-content ul i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  font-size: 32px;
  color: #fff;
  background: var(--accent-color);
  margin-right: 15px;
  line-height: 0;
  border-radius: 5px;
}

.about .about-content ul h4 {
  font-size: 18px;
  font-weight: 600;
}

.about .about-content ul p {
  font-size: 15px;
}

.about .about-content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  background-color: var(--surface-color);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
}

.services .service-item .icon {
  margin-bottom: 10px;
}

.services .service-item .icon img {
  max-height: 220px;
  min-height: 220px;
}

.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: 0.3s;
}

.services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  transform: translateY(-10px);
}

.services .service-item:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
  max-height:350px;
  min-height:350px;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(85, 98, 112, 0.08);
  padding: 30px;
  border-radius: 4px;
  background: white;
}

.team .member .pic {
  overflow: hidden;
  width: 140px;
  border-radius: 4px;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover img {
  transform: scale(1.1);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #556270;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: #dee2e6;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  background: var(--accent-color);
}

.team .member .social a i {
  color: var(--contrast-color);
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #d9232d;
}

.team .member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 40px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #f8d1d3;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Product
--------------------------------------------------------------*/

.single-product {
  border: 1px solid #ddd;
  margin-bottom: 8px;
}



.single-product:hover .product-img a:after {
  opacity: 1;
}

.single-product:hover .product-social-icon {
  top: 45%;
  opacity: 1;
}

.product-img {
  position: relative;
}

.product-img>a>img {
  width: 100%;
}

.product-img>a {
  display: block;
}

.product-img>a::after {
  background: rgba(0, 0, 0, 0.7);
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  transition: all 0.5s ease 0s;
  width: 100%;
  opacity: 0;
}

.product-social-icon {
  left: 50%;
  margin-left: -61px;
  opacity: 0;
  position: absolute;
  top: 30%;
  transition: 1.3s;
}

.product-social-icon ul li {
  display: inline-block;
}

.product-social-icon ul li a {
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  height: 34px;
  width: 34px;
  margin: 0 3px;
}

.product-social-icon ul li a i {
  line-height: 0;
}

.product-social-icon ul li a:hover {
  color: #fff;
  border: 1px solid #3EC1D5;
  background: #3EC1D5;
}

.product-content {
  padding: 10px 0px;
}

.product-content>h4,
.product-content>p {
  color: #444;
  margin-bottom: 5px;
}

.area-padding {
  padding: 70px 0px 80px;
}

.section-headline h2 {
  display: inline-block;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 70px;
  position: relative;
  text-transform: capitalize;
  color: #053669;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  /* opacity: 0.5; */
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  height: 100%;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}


/* Custom Csss */
@media (max-width:576px) {
  .estimate {
    display: none;
  }
}

.header-left-side:before {
  content: "";
  background: #f6f1e6;
  width: 400px;
  height: 600px;
  position: absolute;
  right: 60px;
  transform: rotate(30deg);
  top: -35%;
  z-index: -1;
}

.header-left-side:after {
  content: "";
  background: #f6f1e6;
  width: 400px;
  height: 600px;
  position: absolute;
  right: 60px;
  transform: rotate(330deg);
  bottom: -35%;
  z-index: -1;
}

.header-container.hp {
  background-color: #f6f1e6;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .header-container.hp {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1448px;
    margin: auto;
  }
}

.header-container.hp .header-left-side {
  top: unset;
  max-width: 50%;
  margin-right: auto;
  margin-left: 0;
  z-index: 999;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

@media (min-width: 890px) {
  .header-left-side {
    position: absolute;
    left: 0;
    right: 0;
    top: 30%;
  }
}

@media (min-width: 1200px) {
  .header-container.hp .header-image-container {
    padding-left: 0;
    width: 70%;
    margin-left: auto;
  }
}

.header-image {
  position: relative;
}

.header-image-container img {
  max-width: 100%;
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.header-container.hp .header-image-container {
  margin-bottom: 0 !important;
}

.overlay-header-text-title h1 {
  font-weight: 700;
  color: #333233 !important;
  font-size: 43px !important;
  margin-bottom: 20px;
}

.header-container.hp .header-text-container {
  max-width: 550px;
}

@media (min-width: 1200px) {
  .container-h {
    max-width: 1220px;
  }
}

@media (max-width: 890px) {
  .header-left-side:after {
    content: '';
    right: 120px;
    transform: rotate(-80deg);
    top: unset;
    bottom: 0;
  }
}

.banner_btn {
  display: flex;
}

@media (max-width: 890px) {
  .header-left-side:before {
    content: '';
    right: -130px;
    transform: rotate(82deg);
    top: unset;
    bottom: 0;
  }

  .header-container.hp .header-left-side {
    max-width: 100%;
  }

  .header-image-container {
    width: 100%;
    padding: unset;
  }

  .header-container {
    display: flex;
    flex-wrap: wrap;
  }

  .header-image-container img {
    height: 230px;
  }

  .header-left-side {
    order: 2;
  }

  .overlay-header-text-title h1 {
    font-size: 37px !important;
    margin-bottom: 20px;
  }

  .header-left-side:before {
    height: 620px;
  }

  .header-left-side:after {
    height: 620px;
  }

  .banner_btn {
    display: block;
  }

  .banner_btn .btn-get-started {
    width: 100%;
    margin-bottom: 10px;
  }
}

.home_product img {
  width: 100%;
  /*height: 100%;*/
  max-height:350px;
  border-radius: 8px;
}

.home__pro {
  align-items: center;
}

.banner-product-title {
  font-size: 28px;
  color: #053669;
  font-weight: 700;
  margin-bottom: 0;
}

.banner-product-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.banner-product-body {
  text-align: justify;
}

@media (max-width:992px) {
  .banner-product-content {
    margin: 15px 0px;
  }

  .banner-product-link {
    margin-bottom: 15px;
  }
}

.services-header h2 {
  padding: 0;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 23px;
  color: #053669;
}

.get-estimates-home {
  background: #fbf7f3;
}

.image_box img {
  width: 100%;
  /*height: 100%;*/
  max-height: 211px;
  min-height: 221px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.get-estimates-home-product {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

.pricing-product-name {
  margin-top: 10px;
  align-self: flex-start;
  width: 100%;
  min-height: 27px;
  text-decoration: underline;
}

.pricing-product-name h3 {
  /* font-size: 23px; */
  font-size: 16px;
  color: #060606;
  font-weight: bold;
}

.get-estimates-home-product .service-text {
  /*padding-left: 15px;*/
  /*padding-right: 15px;*/
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}

.pricing-product-price {
  border-radius: 50px;
  margin-bottom: 24px;
  min-height: 36px;
  /* max-width: 170px; */
  max-width: 200px;
  line-height: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #f6f1e6;
  font-weight: 700;
  color: #060606;
  font-size: 32px;
}

.pricing-product-price p {
  font-size: 16px;
  margin-bottom: 0px;
}

.product-price {
  margin-bottom: 2px;
  color: #053669c7;
  letter-spacing: 0.5px;
}

.pricing-product-description {
  padding-bottom: 15px;
}

p.product-price:last-child {
  margin-top: 12px;
}

.city_discript {
  color: var(--dark-800-main, #333233) !important;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 24px !important;

}


.wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  padding-left: 0;
}

.img-selection {
  left: 0;
  top: 0;

}

.img-thumbnail:first-of-type {
  margin-top: 0;
}

.img-thumbnail {
  margin-top: 10px !important;
  width: 100px;
  height: 56px;
  border-radius: 8px;
  cursor: pointer;
  transition: .3s ease;
  opacity: .5;
  margin-right: 12px;
  border: 0;
}

.img-thumbnail:hover {
  opacity: 1;
}

.img-thumbnail.selected {
  opacity: 1;
}

.big-img {
  position: relative;
  height: 100%;
  border: 1px solid #ddd;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 8px;
}

.big-img img.zoom {
  position: absolute;
  transition: width 0.2s ease-out, opacity 0.2s ease-out 0.2s;
}

.display-img {
  width: 100%;
}

.img-thumbnail img {
  height: 100%;
  border-radius: 8px;
}

.img-selection {
  margin-top: 12px;
}

.product_single {
  margin-bottom: 1em;
}

.product-feature {
  padding: 32px 43px;
  padding-bottom: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  border-radius: 8px;
  background: #fbf7f3;
}

.product-feature h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.product-feature p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  min-height: 120px;
  text-align: justify;
}

.product-features {
  padding: 80px 20px;
  gap: 32px;
}

.how-to-choose-your-curtains-container {
  background: #fbf7f3;
  padding: 80px 50px;
  text-align: center;
}

.product_title {
  margin-top: 0;
  padding: 0;
}

.product_title {
  margin-bottom: 24px;
  color: #060606;
  font-weight: 700;
}

.Price-amount {
  color: #982f6a;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  font-size: 1.25em;
}

.different-product img {
  width: 100%;
  /*height: 100%;*/
  max-height:350px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.different-service {
  width: 100% !important;
  padding: 0 !important;
  border-radius: 8px;
  background: #fbf7f3;
}

.service-text {
  /*padding: 32px;*/
}

.pricing-product-single {
  margin-top: 10px;
  align-self: flex-start;
  width: 100%;
  min-height: 47px;

}

.pricing-product-single h3 {
  font-weight: 700;
  color: #060606;
  text-decoration: none;
  font-size: 16px;
}

.product_main__heading {
  margin-bottom: 40px;
  text-align: center;
  color: #053669;
}

.estimate_main {
  display: flex;
  align-items: center;
  width: 56%;
}

.estimate_feture .from-group {
  position: relative;
}

.estimate_feture label {
  color: var(--dark-800-main, #333233);
  font-size: 14px;
  font-weight: 400 !important;
  line-height: 20px;
  opacity: .5;
}

.estimate_feture input[type=number] {
  border-radius: 8px !important;
  border: 1px solid var(--beige-600, #f1e5d5) !important;
  background: var(--beige-200, #fbf7f3) !important;
  display: inline-flex !important;
  height: 48px !important;
  padding: 12px 16px !important;
  align-items: center !important;
  width: 100% !important;
  color: var(--dark-800-main, #333233) !important;
  font-size: 16px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  position: relative;
  padding-right: 35px !important;
}

.estimate_feture .from-group span {
  content: 'cm';
  padding-right: 11px;
  border-radius: 0 8px 8px 0;
  padding-top: 14px;
  opacity: .5;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  color: var(--dark-600, #545454);
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  background: var(--beige-400, #f6f1e6);
  width: 40px;
  height: 25px;
}

.estimate_icons {
  padding: 10px;
  margin-top: 26px;
}

.presets-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 7px;
  column-gap: 8px;
  margin: 0 auto;
  padding-top: 5px;
}

.presets-options div {
  text-align: center;
  border-radius: 4px;
  border: 1px solid var(--beige-600, #f1e5d5);
  background: var(--white, #fff);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, .06);
  width: 100px;
  height: 20px;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  max-width: 68px;
}

.attribute-name p {
  font-weight: 700;
  color: #000;
  font-size: 20px;
}

.estimate.selected {
  opacity: 1;
  border: 1px solid #e2783c;
  background: #fbf7f3;
  text-align: center;
}

.radio-block-image img {
  display: block;
  width: 100%;
  object-fit: unset;
  border-radius: 4px;
  border: none !important;
  margin-bottom: 8px;
  max-height: 80px;
  height: 80px;
}

.estimate .web-form {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.estimate {
  height: 150px;
  text-align: center;
}

.img-thumbnail {
  margin-top: 10px !important;
  width: 100px;
  border-radius: 8px;
  cursor: pointer;
  transition: .3s ease;
  opacity: .5;
  margin-right: 12px;
  border: 0;
}

img {
  width: 100%;
}

.how-to-choose-your-curtains-container {
  background: #fbf7f3;
  padding: 80px 50px;
  text-align: center;
}



.how-to-choose-your-curtains-description ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  gap: 60px;
  padding: 0;
  margin-bottom: 40px;
}

.how-to-choose-your-curtains-description li:before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  color: var(--beige-600, #f1e5d5);
  text-align: center;
  font-family: Montserrat;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-left: 40px;
}

.how-to-choose-your-curtains-description li:after {
  position: absolute;
  right: -40px;
  content: "";
  width: 0;
  height: 0;
  border-top: 90px solid transparent;
  border-bottom: 90px solid transparent;
  border-left: 40px solid #fff;
}

.how-to-choose-your-curtains-description li:first-child {
  background: #fff;
}

.how-to-choose-your-curtains-description li {
  height: 180px;
  display: flex;
  align-items: flex-start;
  padding: 20px 20px 20px 115px;
  position: relative;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(270deg, #fff 77.92%, rgba(255, 255, 255, 0) 100%);
}

@media screen and (max-width: 790px) {
  .how-to-choose-your-curtains-description li {
    height: 230px;
    padding: 110px 20px 40px 30px;
    border-radius: 8px 8px 0 0;
    margin-bottom: 60px;
    background: linear-gradient(0deg, #fff 77.92%, rgba(255, 255, 255, 0) 100%);
  }

  .how-to-choose-your-curtains-description li:before {
    top: 23px;
  }

  .how-to-choose-your-curtains-description ol {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 15px;
  }

  .how-to-choose-your-curtains-description li strong {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .how-to-choose-your-curtains-description li:after {
    position: absolute;
    left: 44%;
    content: "";
    width: 0;
    height: 0;
    border-top: 175px solid transparent;
    border-bottom: 177px solid transparent;
    border-left: 40px solid #fff;
    transform: rotate(90deg);
    right: unset;
    bottom: -85%;
  }

  .how-to-choose-your-curtains-container {
    padding: 40px 0;
  }

  .testimonials-header h2 {
    font-size: 25px !important;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
}

.tabs__guides {
  display: flex;
  justify-content: center;
}

.general-guides-tabs .nav-tabs .nav-link {
  border: 0;
  background: transparent;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .07) !important;
  border-bottom: 3px solid #ccc;
  border-radius: 0;
  height: 56px;
  font-size: 17px;
}

.general-guides-tabs .nav-tabs .nav-link.active {
  border: 0 !important;
  border-bottom: 3px solid #982f6a !important;
  background: transparent;
  font-size: 17px;
}

.tabls_img img {
  object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.tabls_img-content {
  padding: 10px 16px;
}

.nav-tabs {
  gap: 6px;
  margin-top: 32px;
  margin-bottom: 32px !important;
  border: 0;
}

.general-guides-tabs .nav-tabs .nav-link.active {
  border: 0 !important;
  border-bottom: 3px solid #982f6a !important;
  background: transparent;
  font-size: 17px;
}

.nav-tabs .nav-link:hover {
  border-color: #982f6a;
  background: #fdf2ec;
}

.nav-tabs .nav-link.active {
  color: #982f6a;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
  border: 2px solid #982f6a;
  background: #fdf2ec;
}

.general-guides-tabs .nav-tabs .nav-link {
  border: 0;
  background: transparent;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .07) !important;
  border-bottom: 3px solid #ccc;
  border-radius: 0;
  height: 56px;
  font-size: 17px;
  color: ##982f6a;
}

.headding_general h2 {
  font-weight: 700;
  font-size: 36px !important;
  color: #053669;
  margin-bottom: 16px;
  text-align: center;
  padding-bottom: 30px;
}

.general-guides-container {
  padding-top: 50px;
  padding-bottom: 50px;
  background: linear-gradient(180deg, #fbf7f3 0%, rgba(255, 255, 255, 0));
}

.different-cutrain-materials-container {
  margin-top: 80px !important;
  background: #f6f1e6;
  padding: 80px 20px !important;
}

.different-cutrain-materials-body {
  display: flex;
  justify-content: center;
}

@media (min-width: 992px) {

  .services-options .service:not(:last-child),
  .different-cutrain-materials-body .different-cutrain-material:not(:last-child) {
    padding-right: 15px;
  }
}

@media (min-width: 992px) {
  .different-cutrain-materials-body .different-cutrain-material {
    width: 33%;
  }
}

.different-cutrain-material {
  position: relative;
  padding: 20px;
  background: #f6f1e6;
  border-radius: 8px;
}

.different-cutrain-material-image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.different-cutrain-material-image img {
  /*width: 100%;*/
  /*height: 100%;*/
  object-fit: cover;
  /*max-width: 100%;*/
  height:250px;
  width:250px;
  border-radius:50%;
}

.different-cutrain-material-title.web-taglines {
  opacity: .8;
  background: var(--beige-200, #fbf7f3);
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 0;
  min-height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

.category-page p {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  text-align: justify;
}

.category-products h2 {
  margin-top: 10px;
  margin-bottom: 6px;
  min-height: 36px;
  overflow: hidden;
  font-size: 23px !important;
  /* font-size: 27px !important; */
  color: #053669;
  font-weight: 600;
  text-align: start;
}

.single-product {
  border: 0px solid #ddd !important;
  margin-bottom: 20px;
  padding: 16px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  border-radius: 8px;
}

.product-img>a>img {
  width: 100%;
  border-radius: 8px;
  max-height: 234px;
  min-height: 234px;
  object-fit: cover;
}

.product-img>a::after {
  border-radius: 8px;
}

.our_tabs .nav-tabs .nav-link.active {
  border-radius: 8px;
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1220px;
  }
}

.smart__image img {
  height: 400px;
  object-fit: cover;
  border-end-start-radius: 12.5rem;
}

.smart__description {
  padding: 6.5rem 0;
}

.smart__description p {
  text-align: justify;
}

.smart__section {
  background: #e3dbd1;
  border-end-start-radius: 12.5rem;
}

.nav-bar>ul {
  display: flex;
  margin-bottom: 0;
  align-items: center;
  list-style: none;
  background: #fff;
  box-shadow: 2px 4px 16px rgba(136, 119, 109, .24), 1px 4px 4px rgba(136, 119, 109, .1), 1px 2px 2px rgba(136, 119, 109, .14);
  border-radius: 5.625rem;
  pointer-events: all;
  padding: 0.75rem 1rem;
}

.nav-bar-btn:not(.btn-dropdown) {
  display: block;
  color: #25485a !important;
  font-weight: 500;
  padding: 1rem 1.5rem;
  text-align: center;
  border-radius: 0;
  white-space: nowrap;
  background: none;
  border: none;
  line-height: 1.5rem;
  position: relative;
  z-index: 10;
}

.nav-bar-wrapper {
  position: absolute;
  z-index: 30;
  left: 50%;
  transform: translate(-50%, -50px);
  max-width: 100%;
  pointer-events: none;
}

.nav-bar-btn:hover {
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  border-radius: 3.125rem;
  background: #982f6a;
  color: #fff !important;

}

.banner-image-box {
  position: absolute;
  padding: 2rem 5rem;
  padding-inline-start: 10rem;
  border-start-start-radius: 31.25rem;
  border-end-start-radius: 31.25rem;
  min-height: 7.5rem;
  background: #fff;

}

.banner-image-box:before {
  content: "";
  display: block;
  position: absolute;
  inset-inline-start: 5rem;
  top: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 100%;
  border: 18px solid #982f6a;
}

.banner-image-title {
  font-weight: 500;
  font-size: 1.3125rem;
  line-height: 120%;
  letter-spacing: -0.0125rem;
}

.smart__image {
  position: relative;
  right: 0;
}

.smart_banner_content {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 33%;
  display: flex;
  align-items: center;
}

.content-with-html-content ul li:before {
  position: relative;
  top: -0.0625rem;
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border: 0.1875rem solid #25485a;
  border-radius: 100%;
  margin-inline-start: 0.4375rem;
  margin-inline-end: 0.4375rem;
}

.content-with-html-content ul li {
  list-style-type: none;
}

.content-with-html-content ul li:not(:last-child) {
  margin-bottom: 0.75rem;
}

.content-with-html-title {
  font-weight: 500;
  font-size: 2.9375rem;
  line-height: 105%;
  color: #053669;
  margin-bottom: 2rem;
}

.smart_service {
  box-shadow: 0 0 0 4px rgba(204, 196, 189, .75) !important;
  border-radius: 1rem;
}

.smart_main_service {
  border-top-right-radius: 12.5rem;
}

.faq__body .accordion-button {
  background: #fbf7f4;
  color: #000;
  height: 45px;
}

.accordion-button::after {
  flex-shrink: 0;
  font-size: 22px;
  margin-left: auto;
  content: "+";
  color: #982f6a !important;
  font-weight: bold;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
  content: "-";
  color: #982f6a !important;
  font-size: 22px;
  font-weight: bold;
  background-image: none;
  right: 10px;
  position: relative;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0rem rgba(247, 247, 248, 0.25) !important;
}

.support-presentation-title {
  margin-bottom: 2rem;
  color: #000;
}

.faq__body {
  border-radius: 1rem;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #982f6a;
}

.smart_estimate {
  box-shadow: 0 0 0 2px rgb(0 128 0);
}

.find_main {
  box-shadow: 0 0 0 4px rgba(227, 219, 209, .5);
  border-radius: 1rem;
  border: 0;
  padding: 1.75rem;
}
.find_main .card-body{
  padding: 0;
}
.head-title{
  font-weight: 600;
  color: #060606;
}
@media (max-width:992px){
  .smart_banner_content {
    position: relative;
    top: 100px;
    bottom: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: center;
}
.banner-image-box {
  position: absolute;
  padding: 2rem 1rem;
  padding-inline-start: 10rem;
  border-start-start-radius: 31.25rem;
  border-end-start-radius: 31.25rem;
  min-height: 7.5rem;
  background: #fff;
}
.nav-bar-wrapper {
  position: inherit;
  z-index: 0;
  left: 0%;
  transform: translate(0%, 0px);
  max-width: 100%;
  pointer-events: none;
  margin-top: 189px;
}
.smart__section {
  background: #e3dbd1;
  border-end-start-radius: 4.5rem;
}
.smart__description {
  padding: 1.5rem 0;
  position: relative;
  padding-bottom: 40px;
}
.nav-bar>ul {
  overflow: auto;
}
.section-title h2 {
  font-size: 16px;
}
.smart_main_service {
  border-top-right-radius: 4.5rem;
}
.content-with-html-title {
  font-size: 1.9375rem;
}
#step2{
  padding: 0;
}
.faq__body,.smart_estimate{
margin-bottom: 20px;
}
.services-header h2 {
  font-size: 20px;
}
.headding_general h2 {
  font-size: 20px !important;
}
.general-guides-tabs .nav-tabs .nav-link {
  font-size: 10px;
}
.general-guides-tabs .nav-tabs .nav-link.active {
  font-size: 10px;
}
#step3 .tab-content{
  padding: 0px !important;
}
.cta-embed{
  margin-bottom: 20px;
}
}
.about__banner img{
  height: 300px;
    object-fit: cover;
   
}
.about__banner{
  position: relative;
  margin-bottom: 80px;
}
.about-us-image-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25%;
  z-index: 1;
  background: linear-gradient(180deg, #f1e5d5 0%, #f6f1e6 100%);
  padding: 30px;
  border-radius: 40px;
  width: 800px;
  max-width: 880px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  align-items: center;
}
.about-us-image-text h2 {
  font-size: 37px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-bottom: 0;
  margin-bottom: 24px;
  color: #333233;
}
 .about-us-top-image {
  object-fit: contain;
  width: 280px !important;
  height: auto !important;
}
.about-us-image-text p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.team_section{
  color: #053669;
  padding-top: 5px;
  margin-bottom: 30px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .about-us-image-text {
      bottom: unset;
      margin-top: -20%;
  }
}
@media (max-width: 767px) {
  .about-us-image-text {
      max-width: 361px;
      width: 361px;
      /* height: 278px; */
      padding: 36px 41px;
     
  }
}
@media (max-width: 767px) {
  .about-us-image-text p {
      text-align: center;
      font-family: Montserrat;
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 30px;
  }
}
@media (max-width: 767px) {
  .about-us-top-image {
      min-height: unset;
      width: 230px !important;
      height: auto;
  }
 .about-us-image-text h2 {
  margin-bottom: 0px;
  font-size: 27px;
  line-height: 27px;
}
.about__banner {
  position: relative;
  margin-bottom: 180px;
}
}
.headding_all{
  color: #982f6a;
  font-weight: 600;
  text-align: center;

}
.help_body {
  border-radius: 0rem;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
  border: 0px solid #982f6a;
}
@media (max-width:767px){
.help__section .tab-content{
  padding: 0 !important;
}
.help_body{
  padding: 0 !important;
}
.estimate_new .estimate{
  display: block;
}
.tab-content{
  padding: 0 !important;
}
.different-cutrain-materials-body .different-cutrain-material {
  width: 100%;
}
.different-cutrain-materials-body {
  display: block;
  justify-content: center;
}
.different-cutrain-material-text{
  margin-top: 20px;
}
.get-estimates-home .get-estimates-home-product{
margin-bottom: 20px;
}
.header_btn{
  margin-bottom: 10px !important;
  margin-top: 10px !important;
  width: 60%;
  text-align: center;
  height: 40px;
}
.navmenu a i, .navmenu a:focus i{
    background:none;
}
.getestimatemenu{
    display: block !important;
    margin-left: 8px !important;
}
.bookmenu{
   justify-content: start !important;
}
}
.different-cutrain-material-text {
  margin-top: 20px;
}





/* ======== Newsletter Popup ========= */
section.popup-section {
	background-size: cover !important;
	overflow: hidden;
	background-attachment: fixed !important;
	background-position: center center !important;
	padding-top: 20px;
	padding-bottom: 20px;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 999999999999999;
  background: #00000078;
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
section.popup-section.hide-popup{
	animation: fadeOut 1s ease-out forwards;
}
/* Define the fade-out keyframes */
@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		display: none;
	}
}
section.popup-section:before {
	content: '';
	overflow: hidden;
	position: fixed;
	left: 0;
	width: 100%;
	z-index: 1;
	opacity: .8;
	background: #00000078;
	-webkit-transition: opacity .3s ease-out;
	transition: opacity .3s ease-out;
	height: 100%;
	top: 0;
}

section.popup-section .inner-container {
	max-width: 1220px;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	height: 100%;
}
section.popup-section .inner-container  .row {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	flex-wrap: wrap;
	height: 100%;
}
.popup-inner {
	background: #fff;
	z-index: 9;
	width: 100%;
	max-width: 80%;
	-webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
	box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
	animation: slideUp 1s ease-out;
}
@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(100%);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.popup-inner--row {
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.popup-inner-column {
	flex: 0 0 auto;
	width: 100%;
}
.bg-cover{
	background-size: cover;
	background-position: center center;
	position: relative;
	background-repeat: no-repeat !important;
	overflow: hidden;
}

.form-header p.form-subheading {
	margin: 0;
	color: #d51f0f;
	font-weight: 600;
	text-transform: uppercase;
	line-height: normal;
	font-style: normal;
	font-size: 15px;
	margin-bottom: 15px;
}
.form-header h2.form-heading {
  text-transform: uppercase;
  color: #383632;
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 2.2rem;
}
.form-fields .form-field{
  width: 100%;
  color: #8d8987;
  max-width: 100%;
  resize: none;
  outline: 0;
  font-size: 16px;
  border: 1px solid #e4e4e4;
  padding: 10px 28px;
  margin-bottom: 15px;
  border-radius: 4px;
}

span.close-popup--btn {
  border-radius: 100%;
  font-size: 23px;
  cursor: pointer;
  color: red;
}
span.close-popup--btn {
  border-radius: 100%;
  font-size: 23px;
  cursor: pointer;
  color: red;
  width: 100%;
  text-align: center;
}
.colse_pop{
  position: absolute;
    top: -22px;
    right: -35px;
    border: 1px solid red;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex !important;
    justify-content: center !important;
}
.popup_banner img{
  min-height: 420px;
  object-fit: cover;
}
@media (max-width:767px) {
  .section.popup-section .inner-container .row{
    margin: 0;
  }
  .popup-inner {
    width: 100%;
    max-width: 100%;
  }
  section.popup-section .inner-container .row {
    padding: 0;
    margin: 0;
    padding: 25px 0;
}
span.close-popup--btn {
  border-radius: 100%;
  font-size: 23px;
  cursor: pointer;
  color: red;
  width: 100%;
  text-align: center;
}
.colse_pop{
  position: absolute;
    top: -22px;
    right: -18px;
    border: 1px solid red;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex !important;
    justify-content: center !important;
}
.popup-inner-column{
  padding-top: 20px;
}
.popup_banner img{
  min-height: auto;
  object-fit: cover;
}
}
.banner__img{
  max-width: 100%;
  width: 100%;
  height: 450px;

}
.banner__img img{
  width: 100%;
  height: 100%;
  object-fit: fill;
}
@media (max-width:992px){
  .banner__img{
    max-width: 100%;
    width: 100%;
    height: 200px;
  
  }
}
.banner_title__main{
  background: #fffaf8;
}