@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

* {
  box-sizing: border-box;
}

html,
body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  height: 0;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-weight: normal;
  font-size: 16px;
}

body p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: normal;
  margin: 0 0 15px;
  line-height: 160%;
  color: #303030;
}

body p:last-child {
  margin-bottom: 0;
}

body p:empty {
  display: none !important;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  display: block;
}

a {
  text-decoration: none;
  transition: all 0.5s ease 0s;
}

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

.img-responsive {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", sans-serif;
  margin: 0 0 15px;
  color: #080808;
  font-weight: 600;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin: 0;
}

.container {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

.container-fluid {
  max-width: 100%;
}

.btn-inline {
  display: inline-flex;
  gap: 20px;
}

.btn-center {
  text-align: center;
}

.btn {
  color: #015057;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  border-radius: 50px;
  background: #c6faff;
  border: 1px solid #c6faff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 10px 25px;
  text-decoration: none;
  transition: all 0.5s ease 0s;
  cursor: pointer;
  outline: none;
}

.btn:hover {
  background: #015057;
  color: #c6faff;
  border-color: #015057;
}

.btn-premium {
  background-color: #015057;
  border: 1px solid #015057;
  color: #fff;
}

.btn-premium:hover {
  background-color: #c6faff;
  border: 1px solid #c6faff;
  color: #015057;
}

.section-gapping {
  padding-top: 100px;
  padding-bottom: 100px;
}

.top-gapping {
  padding-top: 100px;
}

.bottom-gapping {
  padding-bottom: 100px;
}

.title-div {
  position: relative;
  margin-bottom: 25px;
  z-index: 1;
}

.main-title {
  font-size: 40px;
  color: #303030;
  font-weight: 600;
  width: 100%;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.small-title {
  background-color: rgba(255, 238, 0, 0.5);
  padding: 5px 20px;
  display: inline-flex;
  border-radius: 50px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #006670;
}

.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/************************************/

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  width: 100%;
  transition: all 0.5s ease 0s;
}

header.header404 {
  background-color: #015057;
}

header.scrolled {
  background-color: #015057;
  top: -50px;
}

.top-header {
  background-color: #006670;
  padding: 8px 0;
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}

.top-header .contact-detail {
  display: flex;
  gap: 15px;
}

.top-header .contact-detail li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-header .contact-detail li:not(:last-child) {
  border-right: 1px solid rgba(165, 190, 255, 0.6);
  padding-right: 20px;
}

.top-header .contact-detail li .fa,
.social-icon a {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c6faff;
  font-size: 18px;
  fill: #c6faff;
}

.social-icon a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.top-header .contact-detail li a {
  color: #fff;
}

.top-header .contact-detail li a:hover {
  color: #fff;
}

.login_link .btn {
  padding: 2px 15px;
  min-height: auto;
  font-size: 14px;
  background-color: #ffec00;
  border-color: #ffec00;
}

.login_link .btn:hover {
  background-color: #e3d200;
  border-color: #cdbe03;
  color: #000;
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.main-header .logo {
  max-width: 238px;
  width: 100%;
  flex: none;
  transition: all 0.5s ease 0s;
}

.scrolled .main-header .logo {
  max-width: 190px;
}

.scrolled .main-header {
  padding: 5px 0;
}

.main-menu .menu {
  display: flex;
  gap: 30px;
}

.main-menu .menu a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.5s ease 0s;
  padding: 20px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.main-menu .menu a:hover,
.main-menu .menu .current_page_item a {
  color: #ffec00;
}

.main-header .toggle {
  border-radius: 0;
  border: none;
  background-color: #080808;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0;
  flex-shrink: 0;
  font-size: 24px;
  transition: all 0.5s ease 0s;
}

.footer {
  background-color: #303030;
  margin-top: auto;
}

.footer-section {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-section .col-1,
.footer-section .col-2 {
  flex: none;
  width: 100%;
  max-width: 440px;
}

.footer-section .col-2 {
  max-width: 420px;
}

.footer-section .col-1 .logo {
  margin-bottom: 20px;
  width: 100%;
  max-width: 220px;
}

.footer-section .col-1 p.description {
  color: #ededed;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.footer-section h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.footer-section .details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-section .details li {
  display: flex;
  align-items: center;
  gap: 15px;
  line-height: 160%;
  color: #fff;
}

.footer-section .details li .icon {
  width: 40px;
  height: 40px;
  background-color: #006670;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.footer-section .details a {
  color: #ededed;
  word-break: break-all;
}

.footer-section .details a:hover {
  color: #c6faff;
}

.footer-section .menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-section .menu li a {
  color: #fff;
}

.footer-section .menu li a:hover,
.footer-section .menu li.current_page_item a {
  color: #ffec00;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
  background-color: #282828;
}

.footer-bottom p {
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.footer-bottom p a {
  color: #fff;
}

.footer-bottom p a:hover {
  text-decoration: underline;
}

.main-banner-slider .full-banner-img {
  width: 100%;
  height: 90vh;
  position: relative;
}

.main-banner-slider .full-banner-img::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(13, 28, 76, 0.5);
}

.main-banner-slider .banner-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-40%);
}

.banner-content h2,
.banner-content .container p {
  margin-bottom: 25px;
}

.banner-content h2 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
}

.banner-content .container p {
  width: 100%;
  max-width: 850px;
  color: #fff;
  font-size: 20px;
}

.main-banner-slider .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: transparent;
  opacity: 1;
  border-radius: 0;
  border: 2px solid #fff;
  cursor: pointer;
  transition: all 0.5s ease 0s;
}

.main-banner-slider .swiper-pagination .swiper-pagination-bullet:hover,
.main-banner-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #006670;
  border-color: #006670;
}

.home-about.about-section {
  background-color: transparent;
}

.about-section {
  background-color: #f1f1f1;
}

.company-box,
.home-about.about-section .about {
  display: grid;
  align-items: center;
  gap: 50px;
  grid-template-columns: repeat(2, 1fr);
}

.company-box .about-img {
  max-width: 100%;
  border: none;
  border-radius: 0;
  order: 2;
}

.company-box .about-content .main-title {
  color: #015057;
  margin-bottom: 15px;
}

.about-section .about {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-section .about .about-img {
  flex: none;
  width: 100%;
  max-width: 340px;
  border-radius: 50px;
  overflow: hidden;
  border: 5px solid rgb(255 236 0 / 30%);
  margin: 0 auto;
}

.about .about-title {
  color: rgba(1, 80, 87, 0.1);
  font-size: 70px;
  font-weight: bold;
  position: absolute;
  z-index: -1;
  top: -60px;
  text-transform: uppercase;
  letter-spacing: 10px;
}

.why-section {
  background-image: url(../images/ring_shape.png);
  background-position: 0 0;
  background-repeat: no-repeat;
}

.contact-section {
  background-color: #ededed;
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(48, 48, 48, 0.5);
  z-index: 1;
}

.contact-section iframe {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  bottom: 0;
  height: 100%;
}

.contact-section .container {
  z-index: 1;
}

.contact-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.contact-box h2 {
  color: #006670;
  font-size: 35px;
  margin: 0;
}

.contact-box .col-1:first-child {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-box .col-1:first-child p {
  margin: 0;
}

.contact-box .phone-number {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-box .phone-number .fa {
  background-color: #006670;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-box .phone-number a {
  font-size: 40px;
  color: #080808;
}

.contact-box .phone-number a:hover {
  color: #525252;
}

.form-box .input-group {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group .wpcf7-form-control-wrap {
  display: block;
}

.form-box .form-group.text-area {
  margin-bottom: 15px;
}

.form-box .form-group input:not([type="submit"]),
.form-box .form-group textarea,
.form-box .form-group select {
  width: 100%;
  font-family: "Lato", sans-serif;
  border: 1px solid #ddd;
  background: #fff;
  color: #080808;
  font-size: 16px;
  height: 50px;
  padding: 15px;
  outline: none;
}

.form-box .form-group textarea {
  resize: none;
  height: 190px;
}

.form-btn input.btn {
  width: 100%;
  border-radius: 0;
  font-weight: 500;
}

.form-box .form-group p .wpcf7-not-valid-tip {
  position: absolute;
  font-size: 14px;
  top: 100%;
  line-height: normal;
}

.form-box form.wpcf7-form .wpcf7-response-output {
  border: none;
  color: #ff0000;
  text-align: center;
  margin: 20px 0 0;
}

.form-box form.wpcf7-form.sent .wpcf7-response-output {
  color: green;
}

.text-center {
  text-align: center;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-40 .main-title {
  margin-bottom: 0;
}

.our-box,
.product-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.our-box .box {
  border-radius: 15px;
  text-align: center;
  transition: all 0.5s ease 0s;
  padding: 35px;
}

.our-box .box:hover {
  background-color: rgba(198, 250, 255, 0.1);
  box-shadow: 0 0 10px rgba(198, 250, 255, 0.5);
}

.our-box .box .full-img,
.product-box .box .full-img {
  overflow: hidden;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(198, 250, 255, 0.5);
  border-radius: 50%;
  padding: 25px;
  margin: 0 auto 20px;
}

.our-box .box .detail h3 {
  color: #303030;
  font-size: 24px;
  text-transform: capitalize;
}

.our-box .box .detail a,
.product-box .box .detail a {
  color: #006670;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.5s ease 0s;
  font-weight: 600;
}

.our-box .box .detail a:hover,
.product-box .box .detail a:hover {
  gap: 10px;
  color: #006670;
}

.product-section {
  background-color: rgba(48, 48, 48, 0.05);
}

.product-section .bottom-title {
  position: relative;
  text-align: center;
  font-size: 220px;
  font-weight: 800;
  line-height: 180px;
  display: block;
  opacity: 0.05;
  pointer-events: none;
  color: transparent;
  text-transform: capitalize;
  background-image: linear-gradient(180deg, #006670, rgba(48, 48, 48, 0.05));
  -webkit-text-stroke-color: rgba(48, 48, 48, 0.05);
  -webkit-text-stroke-width: 6px;
  -webkit-text-fill-color: rgba(48, 48, 48, 0.05);
  background-color: transparent;
  -webkit-background-clip: text;
}

.product-box {
  grid-template-columns: repeat(4, 1fr);
}

.product-box .box {
  position: relative;
  overflow: hidden;
  height: 100%;
  background-color: #fff;
  border-radius: 15px;
  padding: 35px 25px;
}

.product-box .box .full-img {
  background-color: #015057;
}

.product-box .box .full-img img {
  filter: invert(1);
}

.product-box .box .detail {
  text-align: center;
}

.product-box .box .detail h3 {
  color: #303030;
  font-size: 24px;
}

.product-box .box .detail p {
  font-size: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.cta_inner {
  padding: 90px 60px;
  overflow: hidden;
  border-radius: 15px;
  background: rgb(10, 127, 139);
  background: linear-gradient(
    45deg,
    rgba(10, 127, 139, 1) 0%,
    rgba(0, 93, 102, 1) 100%
  );
  position: relative;
  z-index: 1;
}

.cta_inner::before {
  content: "";
  background-image: url(../images/shape_icon_3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  left: 16%;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
  filter: invert(1);
  max-width: 380px;
}

.cta_inner .full-cta-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: -1;
}

.full-cta-img img {
  object-position: left;
}

.cta_inner h3 {
  color: #fff;
  font-size: 35px;
  width: 100%;
  max-width: 580px;
  margin-bottom: 35px;
}

.testimonials-list .inner_box {
  border-radius: 15px;
  border: 1px solid rgba(165, 190, 255, 0.5);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.testimonials-list .rating {
  display: flex;
  gap: 4px;
  color: #ffc844;
  font-size: 20px;
  margin-bottom: 10px;
}

.testimonials-list .inner_box p {
  font-size: 15px;
}

.testimonials-list .author_box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.testimonials-list .full-cta-img {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
}

.author_box .te-title {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
  color: #015057;
}

.author_box .designation {
  font-size: 14px;
}

.testimonials-pagination {
  display: flex;
  margin-top: 20px;
  justify-content: center;
  gap: 2px;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 25px;
  height: 5px;
  border: 2px solid #999;
  border-radius: 0;
  background-color: #fff;
  opacity: 1;
  margin: 0;
}

.testimonials-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active,
.testimonials-pagination .swiper-pagination-bullet:hover {
  border-color: #006670;
  background-color: #006670;
}

.inner-banner {
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.inner-banner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.banner-txt {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-txt h2 {
  text-align: center;
  color: #fff;
  font-size: 50px;
  margin-bottom: 25px;
}

.banner-txt .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.banner-txt .breadcrumb li {
  color: #fff;
  font-size: 18px;
}

.banner-txt .breadcrumb li:not(:first-child)::before {
  content: "\f105";
  font-family: "FontAwesome";
  margin-right: 15px;
}

.banner-txt .breadcrumb li a {
  color: #ffec00;
}

.banner-txt .breadcrumb li a:hover {
  color: #fff;
}

.featured-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 30px;
}

.featured-box .box {
  background-color: #f5f5f5;
  padding: 30px;
}

.featured-box .box .icon {
  background-color: #006670;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 24px;
}

.featured-box .box a {
  color: #080808;
  fill: #080808;
}

.featured-box .box .social-icon {
  justify-content: center;
}

.featured-box .box .social-icon a {
  width: 40px;
  height: 40px;
}

.contact-form .form-box {
  background-color: #f5f5f5;
  padding: 40px;
}

.map-section iframe {
  display: block;
  width: 100vw;
}

.error-404 {
  text-align: center;
}

.error-404 h1 {
  color: #006670;
  font-size: 52px;
}

.description a {
  color: #006670;
}

.download-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.download-box .box {
  background-color: rgba(48, 48, 48, 0.1);
}

.download-box .full-img {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  padding: 30px;
}

.download-box .box a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.download-box .detail {
  padding: 20px;
  text-align: center;
  margin-top: auto;
  background-color: #006670;
}

.download-box .detail h3 {
  color: #fff;
}

.form-box .file-wrapper {
  cursor: pointer;
  display: flex;
  border: 1px solid #ddd;
  background: #fff;
  padding: 10px;
}

.form-box .file-wrapper .attach-div {
  display: flex;
  gap: 15px;
  align-items: center;
}

.form-box .file-wrapper .action-link {
  font-weight: 700;
  color: #fff;
  background-color: #080808;
  padding: 5px 15px;
  font-size: 15px;
  line-height: normal;
}

.form-box .file-wrapper .file-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form-box .file-wrapper input[type="file"] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  cursor: pointer;
}

.post-contain h3 {
  font-size: 24px;
}

.post-contain h3:not(:first-child) {
  margin-top: 20px;
}

.post-contain .full-img {
  margin-bottom: 20px;
  border: 1px solid #ddd;
}

.vision-mission-section {
  background-color: #015057;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.vision-mission-section .box {
  padding: 60px 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.vision-mission-section .box:nth-child(2) {
  background-color: #ddd;
}

.vision-mission-section .box .icon-img {
  overflow: hidden;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  padding: 25px;
  margin: 0 auto 20px;
  flex: none;
  flex-shrink: 0;
}

.vision-txt h2 {
  color: #ffec00;
  font-size: 30px;
}

.vision-txt p {
  color: #fff;
}

.vision-mission-section .box:nth-child(2) h2 {
  color: #006670;
}

.vision-mission-section .box:nth-child(2) p {
  color: #303030;
}

.solutions-section {
  background-color: #f1f1f1;
}

.solutions-section .small-title {
  background-color: #fff;
}

.solution-col {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.solutions-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.solutions-box::before {
  content: "";
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  border-left: 2px dashed #fff;
  width: 2px;
  z-index: -1;
}

.solutions-box .box {
  display: flex;
  gap: 15px;
  align-items: center;
}

.solution-img {
  overflow: hidden;
  border-radius: 20% 0;
}

.solutions-box .box .full-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #015057;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solutions-box .box .full-img img {
  filter: invert(1);
}

.solutions-box .box h3 {
  font-size: 24px;
  margin-bottom: 5px;
  color: #015057;
}

.blog-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-box .full-img {
  height: 250px;
  margin-bottom: 15px;
  overflow: hidden;
}

.blog-box .full-img img {
  transition: all 0.5s ease 0s;
}

.blog-box .full-img a:hover img {
  transform: scale(1.1);
}

.blog-box .detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.blog-tags li {
  background-color: #c6faff;
  border-radius: 50px;
  padding: 5px 10px;
  display: inline-flex;
  color: #006670;
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
}

.blog-box .detail h3 {
  margin: 0;
}

.blog-box .detail h3 a {
  color: #303030;
  font-size: 24px;
  line-height: normal;
}

.blog-box .detail h3 a:hover {
  color: #006670;
}

.blog-box .detail .meta,
.meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.blog-box .detail .meta p,
.meta-info p {
  margin: 0;
  color: #6a6a6a;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-box .detail .meta p .fa,
.meta-info p .fa {
  font-size: 18px;
}

.meta-info {
  margin-bottom: 20px;
}

.post-contain {
  line-height: 160%;
  color: #303030;
}

.post-description ul {
  list-style: disc;
  margin-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #555555;
  margin-bottom: 20px;
}

.post-contain h2 {
  margin-top: 40px;
  color: #114345;
}

.post-contain ol,
.post-contain ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  color: #303030;
  padding-left: 20px;
}

.post-contain ul {
  list-style: circle;
  margin-left: 20px;
  padding-left: 0;
}

.post-contain table {
  border: 1px solid #ddd;
  width: 100%;
  border-collapse: collapse;
}

.post-contain table th {
  background-color: #006670;
  color: #fff;
}

.post-contain table th,
.post-contain table td {
  border: 1px solid #ddd;
  text-align: left;
  padding: 5px 15px;
  font-size: 15px;
}

.post-contain h3 {
  font-size: 20px;
  color: #545454;
}

.meta-info .blog-tags {
  margin: 0;
  list-style: none;
  flex-direction: row;
  flex-wrap: wrap;
}

.tab-calculator,
.tab-download {
  display: flex;
  cursor: pointer;
  padding: 11px 15px;
  background-color: #e3f9fc;
  color: #015057;
  font-weight: 500;
  font-size: 16px;
  border: none;
}

.tab-calculator.active,
.tab-download.active {
  background-color: #015057;
  color: #fff;
}

.tab-download-content {
  display: none;
}

.tab-calculator-content {
  display: none;
  padding: 30px;
  background-color: rgba(48, 48, 48, 0.05);
}

.tab-calculator-content.active,
.tab-download-content.active {
  display: block;
}

.tabs-calculator-container,
.tabs-download-container {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
  overflow-x: auto;
  white-space: pre;
  padding-bottom: 4px;
}

.tab-calculator-content h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #303030;
}

.calculator-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.calculator-box .form-box {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.calculator-box .form-group {
  margin: 0;
}

.calculator-box label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.calculator-box label .number-input input[type="number"] {
  border: none;
  padding: 5px 10px;
  height: 30px;
  background-color: #d3eef2;
  width: 124px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
}

.form-box .form-group input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px !important;
  background: #ccc;
  border-radius: 10px;
  padding: 0 !important;
  outline: none;
  margin: 0;
  border: none;
}

.form-box .form-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: white;
  border: 3px solid #01796f;
  border-radius: 50%;
  cursor: pointer;
}

.loan-value {
  background: #e3f9ec;
  color: #01796f;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  margin-left: 10px;
}

.calculator-box .results-box {
  background-color: rgba(48, 48, 48, 0.05);
  padding: 40px;
}

.results-box canvas {
  margin: 0 auto 20px;
  width: 100% !important;
  background-color: #fff;
  padding: 15px;
  border: 2px dashed rgba(48, 48, 48, 0.1);
}

.results-box h3 {
  text-align: center;
  color: #006670;
  font-size: 24px;
}

.results-box .cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.results-box .cols .col {
  border: 2px dashed rgba(48, 48, 48, 0.1);
  padding: 20px;
  text-align: center;
  background-color: #fff;
}

.results-box .cols h4 {
  color: #006670;
  font-weight: 500;
  margin-bottom: 10px;
}

.results-box .cols h5 {
  font-size: 24px;
  color: #303030;
  font-weight: bold;
}

#overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

#popup {
  position: fixed;
  z-index: 99;
  background-color: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 30px;
  width: 100%;
  max-width: 700px;
  display: none;
}

#popup .popup-content button {
  border: none;
  background-color: #006670;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  cursor: pointer;
  position: absolute;
  top: -15px;
  right: -15px;
}

.post-description ul.social-icon {
  margin: 0;
  flex-direction: row;
  list-style: none;
}

.post-description ul.social-icon a {
  background-color: rgb(48 48 48 / 20%);
  width: 40px;
  height: 40px;
  color: #015057;
  fill: #015057;
}

.post-description ul.social-icon a:hover {
  background-color: rgb(48 48 48 / 50%);
  color: #fff;
  fill: #fff;
}

.share-div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.share-div p {
  margin: 0;
  font-weight: bold;
}

.about-content .main-title {
  margin-bottom: 5px;
}

.about-content h3 {
  margin-bottom: 25px;
}

.ethics-section .our-box .box {
  border: 1px solid #f1f1f1;
}

.app-icon {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 320px;
}

.results-box h4 {
  text-align: center;
  margin: 20px 0;
  font-size: 20px;
}

.results-box .cols.cols-full {
  grid-template-columns: repeat(1, 1fr);
}

.yearly-breakdown {
  margin-top: 35px;
}

.table-responsive {
  overflow-x: auto;
  border: 1px solid #ddd;
}

.yearly-breakdown table {
  background-color: #fff;
  width: 100%;
  text-align: center;
  border-collapse: collapse;
}

.yearly-breakdown table th {
  padding: 10px;
  background-color: #015057;
  color: #fff;
}

.yearly-breakdown table td {
  padding: 10px;
  border: 1px solid #ddd;
}

.form-none {
  display: none;
}

.gallery-slider-marquee .swiper-slide {
  align-items: center;
  justify-content: center;
  display: flex;
}

.disclosure-section table {
  border: 1px solid #ddd;
  margin: 20px 0;
  width: 100%;
  border-collapse: collapse;
}

.disclosure-section table th {
  background-color: #015057;
  color: #fff;
  padding: 15px;
  text-align: left;
}

.disclosure-section table td {
  border: 1px solid #ddd;
  padding: 15px;
}

.pagination {
  margin-top: 50px;
}

.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pagination ul a,
.pagination ul span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #015057;
  width: 40px;
  height: 40px;
  border: 1px solid #015057;
  border-radius: 5px;
}

.pagination ul .btn-next,
.pagination ul .btn-prev {
  width: auto;
  padding: 0 10px;
}

.pagination ul a:hover,
.pagination ul span {
  background-color: #015057;
  color: #fff;
}

.gallery-slider-marquee {
  width: 100%;
  margin: 0 auto;
  max-width: 450px;
}