@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");
:root {
  --primaryFont: "Montserrat", sans-serif;
  --secondaryFont: "Lora", serif;
  --greenColor: #16a34a;
  --blackTextColor: #0f172a;
  --GrayTextColor: #64748b;
  --WhiteColor: #ffffff;
}

/*================================
Default CSS
==================================*/
img {
  width: 100%;
}

p {
  line-height: 30px;
  margin-bottom: 15px;
  color: var(--GrayTextColor);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--secondaryFont);
}
p:last-child {
  margin-bottom: 0 !important;
}

a {
  color: #0f172a;
  text-decoration: none;
  display: inline-block;
}

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

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

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

.pl-20 {
  padding-left: 20px;
}

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

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

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

.isSticky {
  background-color: var(--blackTextColor) !important;
  transition: 0.5s ease-in-out;
  position: fixed !important;
  width: 100%;
  top: 0;
  z-index: 999999 !important;
}

.bg-F1F5F9 {
  background-color: #f1f5f9;
}

/*================================
Default Button CSS
==================================*/
.defaultButton {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  background-color: var(--greenColor);
  font-size: 20px;
  font-weight: 500;
  font-family: var(--secondaryFont);
}
.defaultButton::before {
  content: "";
  width: 30px;
  height: 300%;
  transition: 0.6s ease-in-out;
  background-color: rgba(255, 255, 255, 0.1882352941);
  position: absolute;
  left: -100%;
  top: 0;
  transform: rotate(45deg) translateY(-50%);
}
.defaultButton span {
  color: var(--WhiteColor);
  position: relative;
  z-index: 9;
}
.defaultButton:hover::before {
  left: 100%;
}

/*================================
Default Section Heading Area CSS
==================================*/
.default-section-heading h6 {
  margin-bottom: 12px;
  color: var(--greenColor);
  font-size: 24px;
  font-weight: 500;
  font-family: var(--secondaryFont);
}
.default-section-heading h1 {
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 48px;
  font-weight: 600;
  font-family: var(--primaryFont);
}
.default-section-heading h1:last-child {
  margin-bottom: 0;
}
.default-section-heading p {
  font-size: 18px;
}

.section-heading-middle {
  text-align: center;
  max-width: 685px;
  margin-left: auto;
  margin-right: auto;
}

/*=================================
Topbar Style CSS
==================================*/
.topbar {
  background-color: #0f172a;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

.topbar-left-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.topbar-left-area ul li {
  display: inline-block;
  margin-right: 20px;
}
.topbar-left-area ul li a {
  display: inline-block;
  color: var(--WhiteColor);
  line-height: 30px;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--secondaryFont);
}
.topbar-left-area ul li a iconify-icon {
  position: relative;
  top: 4px;
  font-size: 18px;
  margin-right: 3px;
}

.topbar-social-icon {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: end;
}
.topbar-social-icon li {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}
.topbar-social-icon li a {
  width: 24px;
  height: 24px;
}

/*=================================
Navigation Bar Style CSS
==================================*/
.main-responsive-nav {
  display: none;
}

.header-area {
  background-color: rgba(15, 23, 42, 0.6);
  position: relative;
  z-index: 9;
}

.main-nav .navbar-area {
  display: flex;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
.main-nav .mean-menu {
  width: 100%;
  align-items: center;
  display: flex !important;
  justify-content: space-between;
}
.main-nav .mean-menu .navbar-nav {
  margin: 0;
  padding: 0;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
.main-nav .mean-menu .navbar-nav .nav-item {
  display: inline-block;
}
.main-nav .mean-menu .navbar-nav .nav-item .nav-link {
  display: inline-block;
  color: var(--WhiteColor);
  transition: 0.5s ease-in-out;
  line-height: 30px;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--secondaryFont);
  margin-left: 15px;
  margin-right: 15px;
}
.main-nav .mean-menu .navbar-nav .nav-item .nav-link:hover {
  color: var(--greenColor);
}
.main-nav .mean-menu .navbar-nav .nav-item .active {
  color: var(--greenColor);
}

.menu-sidebar {
  display: flex;
  align-items: center;
  justify-content: end;
}

.nav-sidebarButton {
  background-color: #ffffff;
}
.nav-sidebarButton::before {
  background-color: rgba(22, 163, 74, 0.1254901961);
}
.nav-sidebarButton span {
  color: var(--blackTextColor);
}

/*=================================
Banner Area Style CSS
==================================*/
.banner-area {
  position: relative;
  margin-top: -93px;
  padding-top: 300px;
  padding-bottom: 350px;
  background-image: url("../images/bannerBG.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.banner-area::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.banner-content {
  max-width: 732px;
  position: relative;
  z-index: 2;
}
.banner-content h1 {
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--WhiteColor);
  font-size: 60px;
  font-weight: 600;
  font-family: var(--primaryFont);
}
.banner-content p {
  margin-bottom: 46px;
  color: #eeeeee;
  font-size: 26px;
  line-height: 44px;
}

/*=================================
Features Area Style CSS
==================================*/
.features-content {
  position: relative;
  max-width: 922px;
  margin-top: -150px;
  border-radius: 10px;
  background-color: var(--WhiteColor);
  box-shadow: 0px 1px 5px -1px rgba(0, 0, 0, 0.1294117647);
  z-index: 9;
  margin-left: auto;
  margin-right: auto;
}

.features-card {
  max-width: 802px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}
.features-card h2 {
  margin-bottom: 12px;
  color: var(--greenColor);
  font-size: 48px;
  font-weight: 600;
  font-family: var(--primaryFont);
}
.features-card h3 {
  margin-bottom: 12px;
  font-size: 36px;
  font-weight: 600;
  font-family: var(--primaryFont);
}
.features-card p {
  color: var(--blackTextColor);
  font-size: 18px;
  font-weight: 400;
  font-family: var(--secondaryFont);
}

/*=================================
About Area Style CSS
==================================*/
.about-text-area p {
  margin-top: 15px;
  margin-bottom: 25px;
}

/*=================================
Bedsiide Different Area Style CSS
==================================*/
.bedsidide-diffrent-img {
  position: relative;
  margin-top: 30px;
  border-radius: 10px;
}

.different-card {
  padding: 30px 25px;
  border-radius: 10px;
  height: 100%;
  background-color: #f1f5f9;
  box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1019607843);
}
.different-card h3 {
  width: 45px;
  height: 45px;
  margin-bottom: 12px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--WhiteColor);
  color: var(--blackTextColor);
  font-size: 20px;
  font-weight: 600;
  font-family: var(--secondaryFont);
}
.different-card p {
  font-size: 16px;
  font-weight: 400;
}

/*=================================
Services Area Style CSS
==================================*/
.services-card {
  padding: 30px 24px;
  text-align: center;
  border-radius: 5px;
  transition: 0.5s ease-in-out;
  background-color: var(--WhiteColor);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.services-card iconify-icon {
  font-size: 80px;
  color: var(--blackTextColor);
  transition: 0.5s ease-in-out;
}
.services-card h3 {
  color: var(--blackTextColor);
  line-height: 42px;
  font-size: 30px;
  font-weight: 500;
  font-family: var(--primaryFont);
  margin-top: 12px;
  margin-bottom: 12px;
}
.services-card:hover {
  box-shadow: 0 0 15px 0px #cecece;
}
.services-card:hover iconify-icon {
  -webkit-animation: shakeX 1s linear;
          animation: shakeX 1s linear;
  color: var(--greenColor);
}

.services-card-varification h3 {
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.services-card-varification h3:hover {
  color: var(--greenColor);
  text-decoration: underline;
}

.varification-area {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999999;
  align-items: center;
  justify-content: center;
}
.varification-area .close-btn {
  font-size: 36px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  transition: 0.5s ease-in-out;
  color: red;
}

.varification-card {
  max-width: 924px;
  width: 100%;
  padding: 30px;
  border-radius: 15px;
  background-color: var(--WhiteColor);
}
.varification-card h3 {
  margin-bottom: 12px;
  font-size: 36px;
  font-weight: 600;
  font-family: var(--primaryFont);
}
.varification-card ul {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}
.varification-card ul li {
  display: block;
  padding-left: 25px;
  position: relative;
  color: var(--blackTextColor);
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 30px;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--secondaryFont);
}
.varification-card ul li iconify-icon {
  color: var(--greenColor);
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 18px;
}
.varification-card p {
  color: var(--blackTextColor);
}

.working-timeline h3 {
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.working-timeline h3:hover {
  color: var(--greenColor);
  text-decoration: underline;
}

.working-timeline-card {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999999;
  align-items: center;
  justify-content: center;
}
.working-timeline-card .close-btn {
  font-size: 36px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  transition: 0.5s ease-in-out;
  color: red;
}

.working-timeline-content {
  width: 100%;
  max-width: 1500px;
  background-color: var(--WhiteColor);
  max-height: calc(100vh - 50px);
  overflow-y: auto;
}
.working-timeline-content .wt-topbar {
  display: flex;
  align-items: baseline;
  justify-content: start;
  background-color: #082938;
  padding: 20px 30px;
}
.working-timeline-content .wt-topbar img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 20px;
}
.working-timeline-content .wt-topbar p {
  color: var(--WhiteColor);
  position: relative;
  top: -20px;
  font-size: 24px;
  font-weight: 500;
  font-family: var(--primaryFont);
}
.working-timeline-content .wt-body {
  display: flex;
}
.working-timeline-content .wt-body .wt-sidebar {
  display: block;
  width: 95px;
  background-color: #38a629;
  height: auto;
  border-right: 10px solid #4d4d4d;
}
.working-timeline-content .wt-body .wt-content {
  padding: 15px 25px;
  width: 100%;
}
.working-timeline-content .wt-body .wt-content .wt-content-heading h5 {
  padding-left: 20px;
}
.working-timeline-content .wt-body .wt-content .wt-content-heading span {
  color: var(--blackTextColor);
  font-size: 20px;
  font-weight: 500;
  font-family: var(--primaryFont);
}
.working-timeline-content .wt-body .wt-content .wt-card .wt-card-header {
  position: relative;
}
.working-timeline-content .wt-body .wt-content .wt-card .wt-card-header h1 {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 10px solid #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--WhiteColor);
  position: relative;
  z-index: 2;
  font-size: 18px;
  font-weight: 500;
}
.working-timeline-content .wt-body .wt-content .wt-card .wt-card-header:before {
  content: "";
  width: 100%;
  height: 15px;
  border-radius: 25px;
  background-color: #16a34a;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
.working-timeline-content .wt-body .wt-content .wt-card .wt-card-content {
  padding-left: 100px;
  position: relative;
  top: -20px;
}
.working-timeline-content .wt-body .wt-content .wt-card .wt-card-content p {
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: 500;
  font-family: var(--primaryFont);
  color: var(--blackTextColor);
}
.working-timeline-content .wt-body .wt-content .wt-card .wt-card-content .wt-card-list {
  padding-left: 20px;
  position: relative;
}
.working-timeline-content .wt-body .wt-content .wt-card .wt-card-content .wt-card-list::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--blackTextColor);
  position: absolute;
  left: 0;
  top: 9px;
}
.working-timeline-content .wt-body .wt-content .wt-card .wt-card-content h6 {
  text-decoration: underline;
  margin-bottom: 0;
  color: var(--blackTextColor);
  font-size: 17px;
  font-weight: 600;
  font-family: var(--primaryFont);
}
.working-timeline-content .wt-body .wt-content .wt-card .wt-card-content ul {
  margin: 0;
}
.working-timeline-content .wt-body .wt-content .wt-card .wt-card-content ul li {
  list-style-type: decimal;
  font-size: 17px;
  font-weight: 500;
  font-family: var(--primaryFont);
  color: var(--blackTextColor);
}
.working-timeline-content .wt-body .wt-content .wt-card .wt-card-content .devider {
  text-align: center;
  display: block;
  position: relative;
}
.working-timeline-content .wt-body .wt-content .wt-card .wt-card-content .devider::before {
  content: "";
  width: 80%;
  height: 1px;
  background-color: #16a34a;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.working-timeline-content .wt-body .wt-content .wt-card .wt-card-content .devider span {
  background-color: var(--WhiteColor);
  position: relative;
  z-index: 2;
  padding-left: 50px;
  padding-right: 50px;
}

/*=================================
Pricing Area Style CSS
==================================*/
.pricing {
  position: relative;
  width: 800px;
  border-radius: 10px;
  background-color: var(--WhiteColor);
  box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1254901961);
  margin-top: 50px;
  margin-bottom: 50px;
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pricing h6 {
  margin-bottom: 12px;
  color: var(--greenColor);
  font-size: 24px;
  font-weight: 500;
  font-family: var(--secondaryFont);
}
.pricing h1 {
  line-height: 1.5;
  margin-bottom: 5px;
  font-size: 48px;
  font-weight: 600;
  font-family: var(--primaryFont);
}
.pricing .price {
  line-height: 1.5;
  margin-bottom: 15px;
  color: var(--greenColor);
  font-size: 48px;
  font-weight: 600;
  font-family: var(--primaryFont);
}
.pricing h5 {
  color: var(--blackTextColor);
  font-size: 24px;
  font-weight: 500;
  font-family: var(--primaryFont);
}
.pricing ul {
  margin: 20px 0 30px 0;
  padding: 0;
  list-style: none;
}
.pricing ul li {
  position: relative;
  padding-left: 30px;
  margin-top: 12px;
  color: var(--GrayTextColor);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--secondaryFont);
}
.pricing ul li iconify-icon {
  color: var(--greenColor);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 2px;
}

.pricing-img {
  border-radius: 5px;
  background-image: url("../images/pricing.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  height: 100%;
}
.pricing-img img {
  display: none;
}

/*=================================
Support Area Style CSS
==================================*/
.Support-area {
  position: relative;
  background-size: cover;
  background-image: url("../images/support.png");
  background-position: top center;
  background-repeat: no-repeat;
}
.Support-area::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(22, 163, 74, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.Support-area .container {
  position: relative;
  z-index: 9;
}

.support-content .section-heading-middle {
  max-width: 860px;
}
.support-content .section-heading-middle h6,
.support-content .section-heading-middle h1 {
  color: var(--WhiteColor);
}
.support-content .support-section-content {
  margin-top: 30px;
  text-align: center;
}
.support-content .support-section-content h3 {
  color: var(--WhiteColor);
  margin-bottom: 12px;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  font-family: var(--primaryFont);
}
.support-content .support-section-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.support-content .support-section-content ul li {
  display: inline-block;
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 30px;
  font-weight: 600;
  font-family: var(--primaryFont);
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 15px;
}
.support-content .support-section-content ul li iconify-icon {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  transition: 0.5s ease-in-out;
  background-color: var(--WhiteColor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border-radius: 5px;
  color: var(--greenColor);
}
.support-content .support-section-content ul li a {
  color: var(--WhiteColor);
}
.support-content .support-section-content ul li:hover iconify-icon {
  background-color: var(--blackTextColor);
  color: var(--WhiteColor);
}/*# sourceMappingURL=style.css.map */