@import url("./btn.css");
@import url("./fonts.css");

:root {
  --primary-color: #612815;
  --secondary-color: #99cc00;
}

body {
  font-family: "Outfit" !important;
}

ul {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none !important;
}

.section-pd {
  padding-top: 80px;
  padding-bottom: 80px;
}

.main_wrapper {
  background: #fff;
  min-height: calc(100vh - 150px);
}

.title-box .title {
  font-size: 36px;
  line-height: 50px;
  color: #471200;
  font-weight: 700;
}

.title-box .disc {
  font-size: 16px;
  line-height: 26px;
  color: #0e0e0e;
  font-weight: 400;
  margin: 0;
}

/*======================= HEADER CSS STARTS HERE =======================*/

.header-top {
  width: 100%;
  height: auto;
  background-color: var(--primary-color);
  padding: 8px 0;
}

.header-top .social-links a {
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid var(--secondary-color);
  margin-right: 4px;
  width: 26px;
  height: 26px;
  transition: 0.3s;
  background: var(--secondary-color);
  border-radius: 50%;
}

.header-top .social-links a:hover {
  background: #fff;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.top-address p {
  margin-bottom: 0;
  font-size: 12px;
  display: inline-block;
}

.top-address p a,
.top-address p span {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.top-address p span i,
.top-address p a i {
  font-size: 13px;
  color: #fff;
  margin-right: 10px;
}

.top-address p span,
.top-address p a {
  margin-right: 20px;
}

.header-card {
  height: auto;
  padding: 10px 0;
  width: 100%;
  background-color: #fff;
  position: relative;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.header-card ul li {
  margin: 0 40px;
}

.header-card ul li:last-child {
  margin-right: 0px;
}

.header-card ul li a {
  font-weight: 400;
  padding-left: 0 !important;
  padding-right: 0 !important;
  color: #000;
}

.header-card ul li .nav-link.active,
.header-card ul li .nav-link:hover {
  color: var(--primary-color);
}

.header-logo img {
  max-width: 180px;
}

/*======================= HEADER CSS END HERE =======================*/

/*======================= BANNER CSS STARTS HERE =======================*/

.banner_area {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 130px 0;
  background-image: url("../img/banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.banner_area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  z-index: -1;
}

.bnr-cont .subtitle {
  padding: 1px 20px 0px 20px;
  border-radius: 20px;
  margin: 0;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  text-align: right;
  text-transform: capitalize;
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.25);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  line-height: initial;
}

.bnr-cont h1 {
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px 0;
  line-height: 65px;
  font-size: 50px;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.bnr-cont p {
  color: #fff;
  line-height: 30px;
  margin-bottom: 20px;
  font-size: 18px;
}

.bnr-form {
  width: 100%;
  height: auto;
  padding: 50px;
  border-radius: 8px;
  background: #fff;
  max-width: 550px;
  margin-left: auto;
}

.bnr-form label {
  display: block;
  text-align: start;
  font-size: 14px;
  line-height: 26px;
  color: #000;
  margin-bottom: 5px;
}

.bnr-form .form-control {
  width: 100%;
  height: 50px;
  box-shadow: none !important;
  border-radius: 8px;
  border: 1px solid #ebebeb;
}

.bnr-form .radio-group {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.bnr-form .radio-wrapper {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  line-height: 22px;
}

.bnr-form .radio-wrapper input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  left: 0;
  top: 0;
}

.bnr-form .custom-radio {
  position: absolute;
  top: 0px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border-radius: 50%;
  border: 2px solid #612815;
  transition: 0.2s;
}

.bnr-form .radio-wrapper input[type="radio"]:checked ~ .custom-radio {
  background-color: #612815;
  border-color: #612815;
}

.bnr-form .custom-radio::after {
  content: "";
  position: absolute;
  display: none;
}

.bnr-form .radio-wrapper input[type="radio"]:checked ~ .custom-radio::after {
  display: block;
}

.bnr-form .radio-wrapper .custom-radio::after {
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.bnr-form .why-txt {
  font-size: 16px;
  line-height: 26px;
  color: #000;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 0;
  text-align: center;
}

.bnr-form .why-txt a {
  color: var(--primary-color);
}

.bnr-form .why-txt a:hover {
  text-decoration: underline !important;
}

/*======================= BANNER CSS END HERE =======================*/

/*======================= FEATURES CSS STARTS HERE =======================*/

.single-item {
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: all 0.5s ease-in-out;
}

.single-item .icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 8px;
  color: #fff;
}

.features .col-lg-3:nth-child(1) .single-item .icon {
  background-color: rgb(0, 184, 242) !important;
}

.features .col-lg-3:nth-child(2) .single-item .icon {
  background-color: rgb(130, 82, 233) !important;
}

.features .col-lg-3:nth-child(3) .single-item .icon {
  background-color: rgb(69, 179, 105) !important;
}

.features .col-lg-3:nth-child(4) .single-item .icon {
  background-color: rgb(227, 10, 10) !important;
}

.single-item h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #471200;
}

.single-item p {
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 0;
}

.single-item:hover {
  transform: translateY(-10px);
}

/*======================= FEATURES CSS END HERE =======================*/

/*======================= SOLUTIONS CSS STARTS HERE =======================*/

.solutions-sec {
  background-color: #f9f9f9;
}
.solution-left-content {
  margin-right: 50px;
}

.single-solution-list {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}

.single-solution-list .icon {
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  min-width: 64px;
  height: 64px;
  border-radius: 8px;
  color: #fff;
}

.solutions-sec .single-solution-list.child1 .icon {
  background-color: #f4941e !important;
}

.solutions-sec .single-solution-list.child2 .icon {
  background-color: #de3ace !important;
}

.solutions-sec .single-solution-list.child3 .icon {
  background-color: #00b8f2 !important;
}

.solutions-sec .single-solution-list.child4 .icon {
  background-color: #45b369 !important;
}

.single-solution-list h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
  color: #000;
  margin: 0;
}

.single-solution-list p {
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
}

.visual-outer {
  width: 100%;
  height: auto;
  max-height: 730px;
  overflow: hidden;
  background-color: #471200;
  border-radius: 8px;
}

.visual-outer .visual-info {
  padding: 50px;
}

.visual-info h1 {
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.visual-info p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.visual-outer .visual-img {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.visual-outer .visual-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/*======================= SOLUTIONS CSS ENDS HERE =======================*/

/*======================= BEST PRODUCT CSS STARTS HERE =======================*/

.best-product {
  background: url("../img/best-deal-bg.webp") no-repeat center/cover;
  padding: 60px 0;
}

.product-wrapper {
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  overflow: hidden;
}

.product-wrapper .product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
  margin: 0rem;
  text-align: center;
}

.product-wrapper .product-info h2 {
  font-weight: 700;
}

.product-wrapper .product-info .wrapper-details {
  color: #1d1d1d;
}

/*======================= BEST PRODUCT ENDS HERE =======================*/

/*======================= FAQ's CSS STARTS HERE =======================*/

.faq-section .accordion ul {
  padding-left: 15px;
}

.faq-section .accordion ul li,
.faq-wrapper .accordion ol li {
  list-style: disc !important;
  margin-bottom: 10px;
  color: var(--text-color);
  font-size: 16px;
  line-height: 28px;
}

.faq-section .accordion .accordion-item {
  position: relative;
  background-color: var(--white);
  padding: 12px 12px;
  margin: 25px 0;
  border-bottom: 0;
  border-radius: 7px;
  border: 1px solid #cbcbcb !important;
}

.faq-section .accordion-header {
  margin-bottom: 0;
}

.faq-section .accordion button.accordion-button {
  color: var(--dark-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  padding: 10px;
  background: transparent !important;
  box-shadow: none !important;
  padding-right: 50px;
}

.faq-section .accordion .accordion-button.collapsed {
  box-shadow: none !important;
}

.faq-section .accordion-button::after {
  content: "";
  background-image: url("../img/faq-plus.png");
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  position: absolute;
  top: 10px;
  right: 20px;
  width: 30px;
  height: 30px;
  z-index: 1;
  border-radius: 50%;
}

.faq-section .accordion-button:not(.collapsed)::after {
  content: "";
  background-image: url("../img/faq-minus.png") !important;
}

.faq-section .accordion .accordion-body p {
  font-size: 16px;
  line-height: 28px;
  color: #060a14;
  margin: 0;
}

.faq-section .accordion .accordion-body {
  padding: 0 15px;
}

/*======================= FAQ's CSS ENDS HERE =======================*/

/*======================= NEWSLETTER CSS STARTS HERE =======================*/

.cta-footer-creative {
  background: #060a14;
  padding: 50px 0;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.cta-footer-creative h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.cta-footer-creative .subtitle {
  font-size: 18px;
  color: #fff;
  margin-bottom: 0px;
}

.secondary-links {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-footer-creative a.main-white-btn {
  margin-bottom: 10px;
}

.secondary-links a,
.secondary-links p {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  margin: 0;
}

.secondary-links a:hover {
  color: #fff;
  text-decoration: underline !important;
}

.secondary-links p a {
  margin: 0;
  text-decoration: underline !important;
}

.secondary-links span {
  color: #fff;
}

/*======================= NEWSLETTER CSS ENDS HERE =======================*/

/*======================= FOOOTER CSS ENDS HERE =======================*/

.ftr-links > h4 {
  font-weight: 500;
}

.footer-sec {
  background: #060a14;
  padding-top: 70px;
}

.ftr-dis p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 1);
  line-height: 28px;
}

.ftr-links ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.ftr-links ul li {
  margin-bottom: 15px;
}

.ftr-links ul li a {
  display: block;
  color: #fff;
  transition: all 0.5s ease-in-out;
}

.ftr-links ul li a:hover {
  transform: translateX(5px);
}

.ftr-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.ftr-logo img {
  max-width: 180px;
}

.ftr-cntct {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footr-icn {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #fff;
  min-width: 35px;
  min-height: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 6px;
  color: var(--primary-color);
  margin-right: 10px;
}

.ftr-cntct a,
.ftr-cntct p {
  margin-bottom: 0;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
}

.ftr-cntct a:hover,
.ftr-cntct.styleOne:hover p {
  text-decoration: underline !important;
}

.ftr-cntct.styleOne .footr-icn {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #fff;
  min-width: 35px;
  min-height: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  color: var(--primary-color);
  margin-right: 10px;
}

.cpy-rt {
  padding: 10px 0;
}

.cpy-rt p {
  text-align: center;
  color: #fff;
}

.cpy-rt p a {
  font-size: 14px;
  line-height: 26px;
  color: #fff;
  transition: all 0.5s ease-in-out;
}

.cpy-rt p a:hover {
  text-decoration: underline !important;
}

.bg-lt-sky {
  background: #e1f8ff;
}

.cpy-rt ul li {
  list-style: none;
}

.cpy-rt ul li a {
  color: #fff;
  font-size: 14px;
  line-height: 26px;
}

.cpy-rt ul li a:hover {
  text-decoration: underline !important;
}

/*======================= FOOTER CSS ENDS HERE =======================*/

/*======================= INNER PAGES CSS STARTS HERE =======================*/

.inner-banner {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--primary-color);
    position: relative;
}

.inner-banner .page-title h2 {
	margin-top: 0;
	margin-bottom: 0px;
	font-size: 36px;
	font-weight: 900;
	color: #fff;
}

.inner-banner .page-title li:not(:last-child) {
	position: relative;
	padding-right: 15px;
	margin-right: 10px;
}

.inner-banner .page-title li {
	font-size: 16px;
}

.inner-banner .page-title li:not(:last-child)::after {
	font-family: "font awesome 6 Free";
	content: "\f105";
	right: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
  font-weight: 900;
}

.inner-banner .page-title li a {
	color: var(--white);
	font-weight: 500;
}

.inner-banner .page-title li {
	font-size: 16px;
	color: #fff;
}

.support-group .card .wrap h3 {
  color: #071c4d;
}

/*======================= INNER PAGES CSS ENDS HERE =======================*/