* {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}

body {
  color: #333;
}

/* .container {
  width: 90%;
  margin: auto;
  padding: 0px 20px;
} */

.absoute-bg {
  position: absolute;
  inset: 0;
  background: #f4fdff;
  height:53%;
  width: 100%;
  z-index: -1;
}

.li {
  list-style: none;
}

.heading_h1 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 500;
}

.meta {
  font-size: 16px;
  color: #0c5a62;
  margin-bottom: 10px;
}

.meta span {
  padding: 0 5px;
}

.table-container {
  background-color: #ffff;
  padding: 10px;
  width: 67%;
  border-radius: 8px;
}

.grid-wrapper-section {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.grid-wrapper {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  height: auto;
}

.inner-table-container {
  background-color: white;
  border-radius: 8px;
  padding: 8px;
  margin-top: 8px;
  /*overflow: hidden;*/
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
}

.custom-table thead th {
  background-color: #37959f;
  color: white;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.custom-table th,
.custom-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

.custom-table tbody td {
  text-align: left;
  background-color: #f9f9f9;
  font-weight: bold;
  white-space: nowrap;
}

.second_table_headiing td {
  font-weight: bold;
  color: #37959f;
}

.table-caption {
  font-size: 16px;
  font-weight: 800;
  color: #000;
  /*text-align: center;*/
}

.footer-bar {
  width: 100%;
  padding-top: 8px;
}

/*.list-container*/
/*{*/
/*    overflow: hidden;*/
/*    text-overflow: ellipsis;*/
/*    -webkit-line-clamp: 4;*/
/*    -webkit-box-orient: vertical;*/
/*    line-height: 1.6;*/
/*    height: 230px;*/
/*}*/

.list-container {
  width: 60%;
  padding: 20px 20px;
  border-radius: 8px;
  background-color: white;
  border: 1px solid #37959f;
}

.list-container p {
  font-size: 18px;
  color: #37959f;
  font-weight: 600;
  margin-bottom: 10px;
}

.list {
  list-style-type: disc;
  /* padding: inherit; */
  word-wrap: break-word;
  font-size: 16px;
  overflow-wrap: break-word;
  max-width: 100%;
}

.list li {
  margin-bottom: 20px;
}

.buttons {
  width: 100%;
  display: flex;
  gap: 30px;
  margin-top: 20px;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

button {
  flex: 1;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 16px;
  display: flex;
  box-shadow: 0px 3px 4px 0px #0000001a;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 9px;
  border-radius: 4px;
  font-weight: 600;
}

button.red {
  background: linear-gradient(#e81616, #ff3737);
  color: white;
}

button.red:hover {
    border: 1px solid #fff;
    -moz-box-shadow: 6px 6px 5px -4px rgba(0,0,0,.36);
    box-shadow: 6px 7px 5px -4px rgba(0, 0, 0, .36);
}

button.white {
  background: white;
  border: 2px solid #37959f;
  color: #37959f;
}

button.white:hover {
    background: white;
    border: 2px solid #37959f;
    color: #37959f;
    -moz-box-shadow: 6px 6px 5px -4px rgba(0,0,0,.36);
    box-shadow: 6px 7px 5px -4px rgba(0, 0, 0, .36);
}

.highlight-box {
  background: #e6f7ff;
  padding: 15px;
  border-left: 5px solid #0077b6;
  flex: 1;
  font-size: 14px;
}

.highlight-label {
  background: #0077b6;
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: bold;
}

.key-highlights {
  background: #f3f3f3cc;
  width: 50%;
  border-radius: 8px;
  padding: 10px 20px;
}

.key-highlights h3 {
  color: #37959f;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.key-highlights ul {
  list-style: disc;
  padding-left: 30px;
}

.key-highlights ul li {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

.chart {
  width: 50%;
  /* padding: 20px; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.chart h4 {
  font-size: 18px;
  font-weight: 400;
}

.flexbox {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-bar {
  background: #24939d;
  color: white;
  padding: 12px;
  width: 80%;
  text-align: center;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  margin-top: 20px;
}

.cta-bar span {
  font-size: 24px;
  font-weight: 700;
}

.cta {
  position: absolute;
  right: -6%;
  background: linear-gradient(#e81616, #ff3737);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 11px 34px;
  font-size: 16px;
  font-weight: bold;
}

.cta:hover {
    -moz-box-shadow: 6px 6px 5px -4px rgba(0,0,0,.36);
    box-shadow: 6px 7px 5px -4px rgba(0, 0, 0, .36);
}

.samp_cus_btn:hover{
     -moz-box-shadow: 6px 6px 5px -4px rgba(0,0,0,.36);
    box-shadow: 6px 7px 5px -4px rgba(0, 0, 0, .36);
}

.cus_btn_red:hover{
     -moz-box-shadow: 6px 6px 5px -4px rgba(0,0,0,.36);
    box-shadow: 6px 7px 5px -4px rgba(0, 0, 0, .36);
}

.cus_red :hover{
     -moz-box-shadow: 6px 6px 5px -4px rgba(0,0,0,.36);
    box-shadow: 6px 7px 5px -4px rgba(0, 0, 0, .36);
}

.artifact-seat {
  /* margin-top: 20px; */
  /* width: 60%; */
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.artifact-seat h1 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #37959f;
}

.artifact-seat h3 {
  font-size: 18px;
  font-weight: 600;
  padding-left: 30px;
}

.artifact-seat h4 {
  font-size: 18px;
  font-weight: 400;
  padding-left: 31px;
}

.gap-40 {
  gap: 40px;
  justify-content: space-between;
}

.artifact-seat-dynamics {
  margin-top: 20px;
  /* width: 60%; */
  /* display: flex; */
  flex-direction: column;
  gap: 10px;
}

.artifact-seat-dynamics h1 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #37959f;
}

.artifact-seat-dynamics h4 {
  font-size: 18px;
  font-weight: 400;
  padding-left: 34px;
}

.cylinder-chart {
  width: 40%;
}

.bg-#F7F7FB {
  background-color: #f7f7fb;
}

.container-fluid {
  width: 97%;
  margin: auto;
  padding: 0px 10px;
}

.navbar_inner {
  display: flex;
  justify-content: space-between;
}

.cus_navbar {
  padding: 10px 0px;
  background-color: #fff;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 264px;
  height: 40px;
  border-radius: 12px;
  padding: 5px 10px;
  border: 1px solid #E3E3E3
}

.search-box input {
  border: none;
  background: transparent;
  outline: none;
  padding-right: 20px;
}

.search-box input::placeholder {

  font-weight: 400;
  font-size: 18px;
  color: #00000033;
}


.search-box i {
  position: absolute;
  right: 10px;
  font-size: 24px;
  color: #999;
}

.right_nav_top {
  display: flex;
  align-items: center;
  gap: 25px;
}

.right_nav_top_contact i {
  color: #E31837;
  font-size: 24px;
}

.right_nav_top_contact span {
  color: #E31837;

  font-weight: 400;
  font-size: 14px;


}

.right_nav_top_contact_span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.right_nav_top_contact {
  display: flex;
  gap: 18px;
  cursor: pointer;
}

.right_nav_top_contact ol li {
  font-weight: 500;
  font-size: 14px;
  color: #5B5B5B;
  list-style: none;
  cursor: pointer;
}

.right_nav_top_contact ol {
  display: flex;
  gap: 18px;
  padding-top: 4px;
}

.right_nav_bottom {
  float: right;
}

.right_nav_bottom ol {
  display: flex;
  gap: 30px;
  padding-top: 18px;

}

.right_nav_bottom ol li {
  font-weight: 500;
  font-size: 14px;
  color: #5B5B5B;
  list-style: none;
  cursor: pointer;
}

.right_nav_bottom ol li i {
  font-size: 18px;
}

.cus_btn {
  /* width: 102px; */
  height: 28px;
  background-color: #24939D;
  color: #fff;
  display: flex;
  border-radius: 4px;
  padding-top: 17px;
  padding-right: 46px;
  padding-bottom: 17px;
  padding-left: 46px;

}

.cus_btn:hover {
  background-color: #a4f1fa;
  color: #000000;
    box-shadow: 6px 7px 5px -4px rgba(0, 0, 0, .36);
}

.artifact-seat-dynamics h4 {
  padding-top: 12px;
  padding-bottom: 12px;
  color: #494949;
}

.segment_analysis h2 {
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: #37959F;
  padding-top: 5px;
}

.segment_analysis {
  padding: 0px 35px;
}

.aircraft_toggle {
  padding: 0px 30px;
}

.custome_aircraft_toggle {
  padding: 0px 65px !important;
}


.segment_box {
  /* display: grid
; */
  display: flex;
  /* grid-template-columns: 1fr 2fr 3fr; */
  gap: 20px;
  padding-top: 10px;
}

.heading_first h1 {
  background-color: #30828B;
  font-weight: 500;
  font-size: 20px;
  border-radius: 8px;
  color: #fff;
  padding: 9px 13px;
  margin: 0px;
  text-align: center;
  border-bottom: 3px solid #57C2CD;
}

.segment_box1 p {
  margin-bottom: 0px;
}

.h_second h1 {
  background-color: #37959F;
  color: #fff;
  padding: 9px 0px;
  text-align: center;
}

.h_third h1 {
  background-color: #46ADB8;
  color: #fff;
  padding: 9px 0px;
  text-align: center;
}

.segment_box1 {
  /* width: 216px; */
  /* height: 170px; */
  /*gap: 10px;*/
  /*padding-top: 12px;*/
  /*padding-right: 12px;*/
  /*padding-bottom: 12px;*/
  /*padding-left: 20px;*/
  /*border-radius: 12px;*/
  /*border-width: 1px;*/
  /*border: 1px solid #DDE2EB;*/
  /*margin-top: 10px;*/
}

.c_p {
  color: #5E5E5E;
  /* padding-left: 20px; */
  text-align: center;
}

.segment_box2 {
  /* width: 216px; */
  /* height: 170px; */
  /*gap: 10px;*/
  /*padding-top: 12px;*/
  /*padding-right: 12px;*/
  /*padding-bottom: 12px;*/
  /*padding-left: 20px;*/
  /*border-radius: 12px;*/
  /*border-width: 1px;*/
  /*border: 1px solid #DDE2EB;*/
  /*margin-top: 10px;*/
  /*background-color: #FBFBFB;*/
}

.segment_box1 p {

  font-weight: 400;
  font-size: 18px;
  color: #535353;
}

.segment_box2 p {

  font-weight: 400;
  font-size: 18px;
  color: #535353;
}

.sample_card {
  position: relative;
  background-color: #337AB7;
  border-radius: 12px;
}

.samp_cus_btn {
  box-shadow: 0px 1px 2px -1px #0000001A;
  border: 1px solid #4CDAF6;
  width: 154px;
  height: 46px;
  gap: 10px;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 8px;
  border-width: 1px;
  background-color: #FFFFFF;
  font-weight: 400;
  font-size: 22px;
  font-family: Roboto;
  font-weight: 400;
  font-size: 22px;
  color: #337AB7;
}

.samp_cus_btn:hover {
  background-color: #337AB7;
  border: 1px solid #fff;
  color: #fff;
}

.sample_text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 50px;
}

.subs_img {
  position: absolute;
  top: 22px;
}

.sample_text h1 {
  font-family: Roboto;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  width: 80%;
  padding-top: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sample_card {
  padding: 12px 0px;
  margin: 0 5%;
}

.cus_title {
  font-weight: 700;
  font-size: 24px;
  color: #37959F;
  text-transform: uppercase;

}

.aircraft_tab_area {
  background-color: #F7F7FB;
  padding: 10px 0px;
  margin-top: 10px;
}

.cus_acc_btn {
  font-weight: 500;
  font-size: 22px;
  color: #170F49;
  padding-left: 40px;
  border-radius: 18px !important;
  box-shadow: 0px 5px 16px 0px #080F340F !important;
}

.cus_acc_item {
  border-radius: 18px !important;
  box-shadow: 0px 5px 16px 0px #080F340F !important;
  margin-top: 12px;
}

.c_title svg {
  margin-bottom: 5px;
}

.cus_p {

  font-weight: 400;
  font-size: 18px;
  color: #494949;

}

.cus_span {
  font-weight: 600;
  font-size: 18px;
  color: #494949;
}

.research_img_cus {
  display: contents;
  gap: 18px;
  flex-wrap: wrap;
  padding: 3px;
}

.recent_h3 {
  font-weight: 500;
  font-size: 29px;
  text-align: center;
  padding-top: 10px;
}

.recent_h3 span {
  font-weight: 700;
  color: #3300FF;
}

.aircraft_category {
  padding: 0px 40px;
  text-align: center;
  margin-top: 10px;
}

.cateory_card {
  border: 1px solid #E0E0E0;
  box-shadow: 0px 5px 16px 0px #080F340F;
  background-color: #FFFFFF;
  text-align: left;
  padding: 20px;
  margin: 10px 0px 0px 0px;
  border-radius: 8px;
  height: auto !important;

}

.cateory_card ul {
  text-align: left;
}

.cateory_card h5 {

  font-weight: 600;
  font-size: 18px;
  color: #494949;
  padding-bottom: 15px;
}

.key_play_card ul li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}

.subscribe-box {
  background-color: rgb(55, 149, 159);
  padding: 14px 35px;
  border-radius: 12px;
  color: rgb(255, 255, 255);
  margin: 0px 10%;
}

.cus_red_22 {
  font-family: Roboto;
  font-weight: 700;
  font-size: 18.44px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #FFFFFF;
  width: 205px;
}

.subscribe-box h4 {

  font-weight: 600;
  font-size: 24px;
  ;

}

.subscribe-box small {
  color: #fff;
}

.cus_btn_red {
  border-radius: 30px;
  background: linear-gradient(0deg, #E81616 0%, #FF3737 100%);

}

.sub-card {
  border: 1px solid #E0E0E0;
  box-shadow: 0px 5px 16px 0px #080F340F;
  padding-top: 20px;
  padding-right: 58px;
  padding-bottom: 20px;
  padding-left: 58px;
  border-radius: 18px;
  border-width: 1px;
  background-color: #fff;
  margin-top: 4px;
  height: auto;

}

.sub-card h6 {
  font-family: Roboto;
  font-weight: 600;
  font-size: 18px;
  color: #494949;
}

.bg_cl {
  background-color: #F7F7FB;
}

.research_inner figure h3 {

  font-weight: 500;
  font-size: 18px;
  color: #fff;
  padding-top: 10px;
  padding-left: 15px;
}

.research_inner {
  background-color: #24939D;
  border-radius: 12px;
  margin: 0 10%;
}

.research_inner figure {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
}

.cus_red {
  box-shadow: 0px 0px 13.83px 0px #FBFF7952;
  border-radius: 8px;
  border: 1px solid #FFFFFF;
}

.cus_option_start h3 {

  font-weight: 500;
  font-size: 24px;
  color: #494949;
  text-align: center;
  text-transform: capitalize;

}

.cateory_card ul li span {
  color: #3300FF;
}

.submit_inner {
  display: flex;
  gap: 20px;
}

.submit_area {
  margin: 0px 26px;
  background-color: #fff;
  border: 1px solid #CFCFCF;
  padding-top: 27px;
  padding-right: 58px;
  padding-bottom: 27px;
  padding-left: 58px;
  border-radius: 18px;
  border-width: 1px;

}

.submit_inner input {
  border: 1px solid #909090;
  border-radius: 6px;
}

.submit_inner input::placeholder {
  padding-left: 30px;
  color: #909090;
}

.footer {
  background-color: #1f7a7a;
  color: white;
  font-size: 13px;
  position: relative;
  margin-top: 40px;
}

.footer-top-bar {
  margin-left: 65px;
  background-color: #D84124;
  border-radius: 2rem;
  /* margin: auto; */
  width: 90%;
  margin-top: -70px;
  /* width: fit-content; */
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  /* max-width: 98%; */
  font-weight: 600;
  /* position: absolute; */
  /* left: 28%; */
  top: 1px;
  font-family: Roboto;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  /* gap: 110px; */
  /* height: 23px; */
}

.footer-links {
  padding-top: 40px;
}

.footer-links a {
  color: white;
  font-size: 14px;
  text-decoration: none;
  margin: 0 6px;
  border-right: 1px solid white;
  padding-right: 6px;
}

.footer-links a:last-child {
  border-right: none;
}

.payment-box {
  border: 2px solid #42a7a7;
  border-radius: 5px;
  padding: 10px;
  background-color: #1f7a7a;
  display: inline-block;
}

.payment-box img {
  height: 32px;
  margin: 3px;
}

.footer-bottom {
  /* background-color: #145f5f; */
  color: white;
  padding: 10px 0px;
  font-size: 13px;
}

.social-icons i {
  margin-left: 12px;
  color: white;
  cursor: pointer;
}

@media (max-width: 576px) {
  .submit_area {
    margin: 0px;
    background-color: #fff;
    border: 1px solid #CFCFCF;
    padding: 10px;
    border-radius: 4px;
    border-width: 1px;
}
.submit_inner input {
  border: 1px solid #909090;
  border-radius: 6px;
  height: 60px !important;
}
  .footer-top-bar {
    flex-direction: column;
    margin-left: 0px;
    gap: 4px;
    text-align: center;
    padding: 10px 20px;
  }

  .c1_img {
    width: 100%;
  }
}

.footer-links {
  font-size: 12px;
  text-align: center;
}

.footer-bottom .d-flex {
  flex-direction: column;
  text-align: center;
  gap: 5px;
}

.text-end {
  text-align: center !important;
}


.footer-bottom-wrapper {
  /* background-color: #145f5f; */
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  overflow: hidden;
}

.left_footer {
  background-color: #145f5f;
}

.footer-bottom {
  background-color: #126d6d;
  /* height: 60px; */
  position: relative;
  overflow: hidden;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  width: 555px;
  height: 100%;
  background-color: #0d5a5a;

  border-top-right-radius: 100px;

  z-index: 1;
}

.footer-bottom::after {
  content: "";
  position: absolute;
  top: 0;
  width: 555px;
  height: 100%;
  background-color: #0d5a5a;
  border-top-left-radius: 100px;

  z-index: 1;
}

.footer-bottom::after {
  right: 0;
  border-top-left-radius: 100px;
  left: auto;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 2;
  gap: 20px;
}

.social-icons i {
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.social-icons i:hover {
  color: #ccc;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  background: #333;
  border-radius: 2px;
}

/* Sidebar styles */
.sidebar {
  position: fixed;
  top: 0;
  right: -117%;
  width: 80%;
  height: 100%;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  transition: right 0.3s ease;
  padding: 20px;
  overflow-y: auto;
}

.sidebar.active {
  right: 0;
}

.close_btn {
  font-size: 28px;
  cursor: pointer;
  margin-bottom: 20px;
  text-align: right;
}

.sidebar,
.overlay {
  display: none;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}




.inner-table-container {
  width: 100%;
  overflow-x: auto;
}

.custom-table {
  width: 100%;
  min-width: 522px;
  border-collapse: collapse;
  margin: 0;
}

.custom-table th,
.custom-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}


.inner-table-container {
  width: 100%;
  /*overflow-x: auto;*/
  /* scrollbar-width: thin;  */
  scrollbar-color: #AACFC0 #DFEEE8;
  max-width: 555px;
    overflow-x: scroll;
}


.inner-table-container::-webkit-scrollbar {
  height: 10px;


}

.inner-table-container::-webkit-scrollbar-track {
  background: #DFEEE8;
  border-radius: 8px;

}

.inner-table-container::-webkit-scrollbar-thumb {
  background-color: #AACFC0;
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: content-box;

}

.inner-table-container::-webkit-scrollbar-thumb:hover {
  background-color: #388e3c;
}

.breadcrumb {
  font-size: 14px;
  color: #333;
  padding-top: 15px !important;
  padding-bottom: 0px !important;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: '\f105';
  font-family: FontAwesome;
  padding: 0 8px;
  font-size: 18px;
  color: #000000;
  font-weight: 600;
}

.breadcrumb-item a {
  color: #5B5B5B;
  text-decoration: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;

}

.breadcrumb-item.active a {
  /* font-family: Roboto; */
  font-weight: 400;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 300px;
  color: #007A85 !important;
}

.btn-teal {
  background-color: #2a9da5;
  color: white;
  border-radius: 6px;
}

.btn-teal:hover {
  background-color: #257f87;
}

.cus_label {
  font-family: Roboto;
  font-weight: 500;
  font-size: 14px;
  color: #5E5E5E;
  margin-bottom: 0px;
}

.cus_mod_title {
  font-weight: 600;
  font-size: 20px;
  color: #37959F;

}

.cus_reg {
  color: #FFBCB7 !important;
  padding-right: 2px;
}

.cus_form_control {
  border: 1px solid #DDDDDD !important;
}

.form_btn_cus {
  margin-top: 20px;
}

.cus_f_btn {
  padding: 11px 68px;
  font-weight: 700;
  font-size: 18.44px;
  color: #fff;
  background-color: #37959F;
  border-radius: 8px;
  margin: 0 auto;
}

.cus_2 {
  display: block !important;
}

.iti {
  position: relative;
  display: block !important;
}

.modal-header {
  border-bottom: 2px dashed #ccc;
  width: 100%;

}

.modal-content {
  border: none !important
}

.cus_form_control::placeholder {
  /* font-family: Lato; */
  font-weight: 400;
  font-size: 14px;

  color: #B1B0B0;
}

.cus_form_select {
  font-weight: 400;
  font-size: 14px;

  color: #B1B0B0;
}

.cus_form_control2 {
  font-weight: 400;
  font-size: 14px;

  color: #B1B0B0;
}

.market-card {
  border-radius: 12px;
  overflow: hidden;
  background: #f9f9f9;
  display: flex;
  flex-wrap: nowrap;
}

.chart-section {
  flex: 3;
  border-top: 4px solid #5ccbf5;
  padding: 2rem;
}

.side-panel {
  flex: 1;
  background: linear-gradient(to top, #0c1a2b, #3c0f56);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.side-panel h3 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.side-panel p {
  text-align: center;
  font-size: 0.9rem;
}

.source {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 1.5rem;
}

.source a {
  color: #b3e6ff;
  text-decoration: none;
}

.side-panel {
  flex: 1;
  position: relative;
  background: #2E003E;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  overflow: hidden;
}

.side-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
  width: 100%;
  background-color: #00C3FF;
  /* Top blue strip */
}

.p_left {
  padding-left: 40px;
}

.side-panel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 80px;
  width: 100%;
  background: url('https://www.grandviewresearch.com/static/images/footer_graphic.png') bottom no-repeat;
  background-size: cover;
  opacity: 0.4;
}

.chart-container {
  height: 200px;
  padding-left: 25%;
}

.c_p {
  color: #5E5E5E;
  padding-left: 20px;
}

.cus_acc_btn {
  position: relative;
  justify-content: space-between;
  /* Pushes text and icon apart */
}

/* Override Bootstrap default arrow */
.cus_acc_btn::after {
  display: none !important;
}

/* Align title and custom arrow */
.cus_acc_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  /* Adjust spacing between title and arrow */
  padding-right: 1rem;
}

/* Title styling (optional) */
.btn-title {
  font-weight: bold;
  color: #0B0B45;
}

/* Arrow circle */
.arrow-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* Arrow shape */
.arrow-icon::before {
  content: ">";
  /* Unicode for › */
  font-size: 18px;
  color: #00676C;
  display: block;
  transform: translateX(1px);
}

.cus_acc_btn[aria-expanded="true"] .arrow-icon {
  transform: rotate(90deg);
}

.arrow-icon::before {
    content: "\0076"; /* "v" by default */
    font-size: 18px;
    margin-left: 0px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.accordion-button:not(.collapsed) .arrow-icon::before {
    content: "<";
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .right_nav {
    display: none;
  }

  .c1_img {
    width: 100%;
  }

  .sidebar,
  .overlay {
    display: block;
  }

  .market-card {
    border-radius: 12px;
    overflow: hidden;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    /* flex-wrap: nowrap; */
  }


  .segment_box1 {
    /* width: 216px; */
    height: 100%;
    /*gap: 10px;*/
    /*padding-top: 12px;*/
    /*padding-right: 20px;*/
    /*padding-bottom: 12px;*/
    /*padding-left: 20px;*/
    /*border-radius: 12px;*/
    /*border-width: 1px;*/
    /*border: 1px solid #DDE2EB;*/
    /*margin-top: 10px;*/
  }

  .cateory_card {
    height: 100%;
  }

  .segment_box2 {
    /* width: 216px; */
    height: 100%;
    gap: 10px;
    padding-top: 12px;
    padding-right: 20px;
    padding-bottom: 12px;
    padding-left: 20px;
    border-radius: 12px;
    border-width: 1px;
    border: 1px solid #DDE2EB;
    margin-top: 10px;
  }

  .sample_text {
    display: flex;
    align-items: center;
    flex-direction: column;
    /* flex-wrap: wrap; */
    justify-content: center;
    padding: 0px 50px;
  }

  .samp_cus_btn {
    box-shadow: 0px 1px 2px -1px #0000001A;
    border: 1px solid #4CDAF6;
    width: 100%;
    height: 100%;
  }

  .subscribe-box {
    background-color: #37959F;
    padding: 20px;
    /* text-align: center; */
    border-radius: 12px;
    color: #fff;
    margin: 0;
  }

  .sub-card {
    border: 1px solid #E0E0E0;
    box-shadow: 0px 5px 16px 0px #080F340F;
    padding-top: 20px;
    padding-right: 19px;
    padding-bottom: 20px;
    padding-left: 20px;
    border-radius: 18px;
    border-width: 1px;
    background-color: #fff;
    margin-top: 4px;
    height: 100%;
  }

  .research_inner figure h3 {
    font-weight: 500;
    font-size: 12px;
    color: #fff;
    padding-top: 10px;
  }

  .research_inner {
    background-color: #24939D;
    border-radius: 12px;
    margin: 0;
  }

  .cateory_card {
    border: 1px solid #E0E0E0;
    box-shadow: 0px 5px 16px 0px #080F340F;
    background-color: #FFFFFF;
    text-align: left;
    padding: 11px;
    font-size: 10px;
    margin: 10px 0px 0px 0px;
    border-radius: 8px;
    height: 100%;
  }

  .cateory_card ul li span {
    color: #3300FF;
    font-size: 10px;
  }

  .hamburger {
    display: flex;
    margin-top: 28px;
    ;
  }

  .right_nav_bottom ol {
    display: flex;
    gap: 30px;
    flex-direction: column;
    padding-top: 18px;
  }
}

@media (max-width: 768px) {
  .custome_aircraft_toggle {
    padding: 0px 0px !important;
  }
  .grid-wrapper {
    display: flex;
    flex-direction: column;
  }
  
  .grid-wrapper-section {
    display: flex;
    flex-direction: column;
  }

  .c1_img {
    width: 100%;
  }

  .table-container {
    background-color: #37959f;
    padding: 10px;
    width: 100%;
    border-radius: 8px;
  }

  .list-container {
    width: 100%;
    padding: 20px 20px;
    border-radius: 8px;
    background-color: white;
    border: 1px solid #37959f;
  }

  .key-highlights {
    background: #f3f3f3cc;
    width: 100%;
    border-radius: 8px;
    padding: 20px;
  }

  .chart {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .cta-bar {
    background: #24939d;
    color: white;
    padding: 20px;
    /* width: 70%; */
    text-align: center;
    display: flex;
    flex-direction: column;
    /* position: relative; */
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    margin-top: 20px;
  }

  .cta {
    position: static;
    right: -6%;
    background: linear-gradient(#e81616, #ff3737);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 11px 34px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
  }

  .artifact-seat {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .p_left {
    padding: 0;
  }

  .cylinder-chart {
    width: 100%;
  }

  .artifact-seat-dynamics {
    margin-top: 20px;
    width: 100%;
    /* display: flex
; */
    flex-direction: column;
    gap: 10px;
  }

  .segment_box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 22px;
  }

  .segment_box1 {
    height: 100%;
  }

  .segment_box2 {
    height: 100%;
  }

  .sample_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 50px;
  }

  .samp_cus_btn {
    width: 100%;
  }

  .recent_h3 {
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    padding-top: 22px;
  }

  .cus_title {
    font-weight: 700;
    font-size: 18px;
    color: #37959F;
    padding-top: 5px;
    text-transform: uppercase;
  }

  .aircraft_category {
    padding: 0px 0px;
    text-align: center;
    margin-top: 10px;
  }

  .research_inner figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
  }

  .research_inner {
    padding: 10px;
    margin: 0;
    text-align: center;
  }

  .research_inner figure h3 {
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    padding-top: 10px;
  }

  .cus_option_start h3 {
    font-weight: 500;
    font-size: 16px;
    color: #494949;
    text-align: center;
    text-transform: capitalize;
  }

  .submit_inner input {
    border: 1px solid #909090;
    border-radius: 6px;
    height: 90px;
  }

  .btn-title {
    font-size: 15px;
    font-weight: bold;
    color: #0B0B45;
  }

  .submit_inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-links a {
    color: white;
    /* font-size: 14px; */
    text-decoration: none;
    margin: 0 6px;
    border-right: 1px solid white;
    padding-right: 6px;
  }
  #segmentationTable th {
    min-width: 250px; /* adjust as needed */
    white-space: nowrap;
  }
  .footer-top-bar {
    background-color: #D84124;
    border-radius: 2rem;
    /* margin: auto; */
    width: 100%;
    margin-top: -70px;
    /* width: fit-content; */
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    /* max-width: 98%; */
    font-weight: 600;
    /* position: absolute; */
    /* left: 28%; */
    top: 1px;
    font-family: Roboto;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    /* gap: 110px; */
    /* height: 23px; */
  }

  .gg svg {
    width: 100%;
  }

  .heading_h1 {
    font-size: 21px;
    margin-bottom: 10px;
    font-weight: 500;
  }

  .buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
  }

  .market-card {
    border-radius: 12px;
    overflow: hidden;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .side-panel {
    flex: 1;
    position: static;
    background: #2E003E;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    overflow: hidden;
  }

  .chart-container {
    height: 200px;
    padding-left: 0%;
  }

  .hamburger {
    display: flex;
    margin-top: 28px;
  }

  .right_nav {
    display: none;
  }

  .right_nav_top_contact {
    display: flex;
    margin-top: 10px;
    gap: 18px;
    flex-direction: column;
    /* cursor: pointer; */
  }

  .sidebar,
  .overlay {
    display: block;
  }

  .right_nav_bottom ol {
    display: flex;
    gap: 30px;
    flex-direction: column;
    padding-top: 18px;
  }

  .right_nav_bottom {
    float: none;
  }

  .close_btn {
    font-size: 28px;
    cursor: pointer;
    margin-bottom: 20px;
    text-align: left;
  }

  .subscribe-box {
    background-color: #37959F;
    padding: 20px;
    /* text-align: center; */
    border-radius: 12px;
    color: #fff;
    margin: 0;
  }

  .subscribe-box input {
    margin-bottom: 10px;
  }

  .cus_btn_red {
    border-radius: 30px;
    background: linear-gradient(0deg, #E81616 0%, #FF3737 100%);
    margin-top: 5px;
  }

  .sub-card {
    border: 1px solid #E0E0E0;
    box-shadow: 0px 5px 16px 0px #080F340F;
    padding-top: 27px;
    padding-right: 15px;
    padding-bottom: 22px;
    padding-left: 15px;
    border-radius: 18px;
    border-width: 1px;
    background-color: #fff;
    margin-top: 8px;
    height: 100%;
  }

  .cateory_card {
    height: 100%;
  }

  .sample_text h1 {
    font-family: Roboto;
    font-weight: 700;
    font-size: 19px;
    color: #fff;
    width: 80%;
    padding-top: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}



.text-content {
  max-height: 164px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease-in-out;
}

.text-content.expanded {
  max-height: none;
  /* Show full content */
}

/* alignment changes  */
.segment tbody tr td {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  font-weight: 400;
  font-size: 18px;
  color: #535353;
  vertical-align: top;
}

.segment {
  border-collapse: separate !important;
  border-spacing: 12px 16px !important;
}
button a {
  text-decoration: none;
  color: inherit;
 display: contents;
}

.guest_btn{
    margin-top: 20px;
    display: flex !important;
    gap: 10px !important;
}

.guest_submit{
    padding: 15px 12px !important;
}
