/* Base styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }

  .container {
    max-width: 960px;
    margin: 0 auto;
   padding: 8px;
  }

  .bg-blue {
    background-color: #1e90ff;
  }

  .top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
  }

  .float-left {
    display: flex;
    align-items: center;
  }

  .float-left i {
    margin-right: 5px;
  }

  .float-right {
    display: flex;
    align-items: center;
  }

  .goog-te-combo {
    margin-right: 10px;
  }

  /* Media queries for responsiveness */
  @media only screen and (max-width: 768px) {
    /* Adjustments for smaller screens */
    .top-header {
      flex-direction: column;
      align-items: flex-start;
      text-align: center;
    }

    .float-left {
      margin-bottom: 10px;
    }

    .float-right {
      margin-top: 10px;
    }
  }
  /* second header css code start here  */
  a{
  text-decoration:none;
  }
  .nav-bar{
  background-color: #ffffff;
  width: 100%;
  height: 80px;
  position: sticky;
    top: 0;
    z-index: 1;
  }
  .nav-hold{
  display:block;
  width: 90%;
  }
  .nav-logo{
  float: left;
  display: block;

  font-weight: 600;
  }
  .nav-logo a{
  color: #ff0000;
  }
  .nav-items{
  float: right
  }
  .nav-items li{
  display:block;
  float: left;
  padding: 10px 20px;
  margin-left:10px;
  }
  .nav-items li a {
  color: #000000;
  }

  .nav-hold{
  overflow:hidden;
  }
  .nav-menu{
  display: none;
  }
  /*media Queries*/
  @media screen and (max-width: 768px){
  .nav-menu{
  display: block;
  float: right;
  padding: 10px 20px;
  cursor: pointer;
  color: #000000;
  }
  .nav-items{
  width: 100%;
  float: left;
  height: 0px;
  padding:0px;
  margin:0px;

  }
  .nav-items li{
  width: 100%;
  display: block;
  }
  }
  .nav-open{
  height: auto;
  }

  /* Start Gallery CSS photo gallery image code start here */
  .thumb {
      margin-bottom: 25px;

  }
  .thumb:last-child {
      margin-bottom: 0;
  }
  /* CSS Image Hover Effects: https://www.nxworld.net/tips/css-image-hover-effects.html */
  .thumb
  figure:hover img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(0%);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
  .thumb
  figure img {
    -webkit-filter: grayscale(0);
    filter: grayscale(100%);
  }


  /* 2nd part table css code here  */
  /* Table Styles */

  .table-wrapper{
      margin: 10px 70px 70px;
      /* box-shadow: 0px 35px 50px rgba( 0, 0, 0, 0.2 ); */
  }

  .fl-table {
      border-radius: 5px;
      font-size: 17px;
      font-weight: normal;
      border: none;
      border-collapse: collapse;
      width: 100%;
      max-width: 100%;
      white-space: nowrap;
      background-color: white;
  }

  .fl-table td, .fl-table th {
      text-align: center;
      padding: 8px;
  }

  .fl-table td {
      border-right: 1px solid #f8f8f8;
      font-size: 17px;
      color: black;
  }
  .fl-table td a{
    color: black;

  }
  .fl-table thead th {
      color: #ffffff;
      background: #324960;
  }


  .fl-table thead th:nth-child(odd) {
      color: #ffffff;
      background: #324960;
  }

  .fl-table tr:nth-child(even) {
      background: #F8F8F8;
  }

  /* Responsive */

  @media (max-width: 767px) {
      .fl-table {
          display: block;
          width: 100%;
      }
      .table-wrapper:before{
          content: "Scroll horizontally >";
          display: block;
          text-align: right;
          font-size: 11px;
          color: white;
          padding: 0 0 10px;
      }
      .fl-table thead, .fl-table tbody, .fl-table thead th {
          display: block;
      }
      .fl-table thead th:last-child{
          border-bottom: none;
      }
      .fl-table thead {
          float: left;
      }
      .fl-table tbody {
          width: auto;
          position: relative;
          overflow-x: auto;
      }
      .fl-table td, .fl-table th {
          padding: 20px .625em .625em .625em;
          height: 60px;
          vertical-align: middle;
          box-sizing: border-box;
          overflow-x: hidden;
          overflow-y: auto;
          width: 120px;
          font-size: 13px;
          text-overflow: ellipsis;
      }
      .fl-table thead th {
          text-align: left;
          border-bottom: 1px solid #f7f7f9;
      }
      .fl-table tbody tr {
          display: table-cell;
      }
      .fl-table tbody tr:nth-child(odd) {
          background: none;
      }
      .fl-table tr:nth-child(even) {
          background: transparent;
      }
      .fl-table tr td:nth-child(odd) {
          background: #F8F8F8;
          border-right: 1px solid #E6E4E4;
      }
      .fl-table tr td:nth-child(even) {
          border-right: 1px solid #E6E4E4;
      }
      .fl-table tbody td {
          display: block;
          text-align: center;
      }
  }
  /* text css code start here */
  .dettel {

    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  /* Set maximum width for the content */
  .para {
    max-width: 75%;
  }
  span{
    color: black;

  }

  /* Responsive styles */
  @media only screen and (max-width: 768px) {
    .para {
      max-width: 100%;
    }
  }

  /* footer css start here  */
  .pg-footer {
  font-family: 'Roboto', sans-serif;
  }


  .footer {
  background-color: #004658;
  color: #fff;

  }
  .footer-wave-svg {
  background-color: transparent;
  display: block;
  height: 30px;
  position: relative;
  top: -1px;
  width: 100%;
  }
  .footer-wave-path {
  fill: #fffff2;
  }

  .footer-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1230px;
  padding: 40px 15px 400px;
  position: relative;
  }

  .footer-content-column {
  box-sizing: border-box;
  float: left;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  color: #fff;
  }

  .footer-content-column ul li a {
  color: #fff;
  text-decoration: none;
  }

  .footer-logo-link {
  display: inline-block;
  }
  .footer-menu {
  margin-top: 30px;
  }

  .footer-menu-name {
    color: #fffff2;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 0.6px;
      line-height: 17px;
      margin-bottom: 15px;
      margin-top: 0;
      text-transform: uppercase;
  }

  .footer-content-column li{font-size: 15px;margin: 0 0 8px 0;}
  .footer-call-to-action ul{padding: 0; margin: 0;}

  .footer-menu-list {
  list-style: none;
  margin-bottom: 0;
  margin-top: 10px;
  padding-left: 0;
  }
  .footer-menu-list li {
  margin-top: 5px;

  }

  .footer-call-to-action-description {
  color: #fffff2;
  margin-top: 10px;
  margin-bottom: 20px;
  }
  .footer-call-to-action-button:hover {
  background-color: #fffff2;
  color: #00bef0;
  }
  .button:last-of-type {
  margin-right: 0;
  }
  .footer-call-to-action-button {
  background-color: #027b9a;
  border-radius: 21px;
  color: #fffff2;
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 18px;
  padding: 12px 30px;
  margin: 0 10px 10px 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .2s;
  cursor: pointer;
  position: relative;
  }
  .footer-call-to-action {
  margin-top: 30px;
  }
  .footer-call-to-action-title {
  color: #fffff2;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 18px;
  margin-bottom: 0;
  margin-top: 0;
  text-transform: uppercase;
  }
  .footer-call-to-action-link-wrapper {
  margin-bottom: 0;
  margin-top: 10px;
  color: #fff;
  text-decoration: none;
  }
  .footer-call-to-action-link-wrapper a {
  color: #fff;
  text-decoration: none;
  }





  .footer-social-links {
  bottom: 0;
  height: 54px;
  position: absolute;
  right: 0;
  width: 236px;
  }

  .footer-social-amoeba-svg {
  height: 54px;
  left: 0;
  display: block;
  position: absolute;
  top: 0;
  width: 236px;
  }

  .footer-social-amoeba-path {
  fill: #027b9a;
  }

  .footer-social-link.linkedin {
  height: 26px;
  left: 3px;
  top: 11px;
  width: 26px;
  }

  .footer-social-link {
  display: block;
  padding: 10px;
  position: absolute;
  }

  .hidden-link-text {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px,1px,1px,1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
  top: 50%;
  }

  .footer-social-icon-svg {
  display: block;
  }

  .footer-social-icon-path {
  fill: #fffff2;
  transition: fill .2s;
  }



  .footer-copyright {
  background-color: #1e90ff;
  color: #fff;
  padding: 15px 30px;
  text-align: center;
  }

  .footer-copyright-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  }

  .footer-copyright-text {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 0;
  margin-top: 0;
  }

  .footer-copyright-link {
  color: #fff;
  text-decoration: none;
  }







  /* Media Query For different screens */
  @media (min-width:320px) and (max-width:479px)  { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
  .footer-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1230px;
  padding: 40px 15px 1050px;
  position: relative;
  }
  }
  @media (min-width:480px) and (max-width:599px)  { /* smartphones, Android phones, landscape iPhone */
  .footer-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1230px;
  padding: 40px 15px 1050px;
  position: relative;
  }
  }
  @media (min-width:600px) and (max-width: 800px)  { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
  .footer-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1230px;
  padding: 40px 15px 1050px;
  position: relative;
  }
  }
  @media (min-width:801px)  { /* tablet, landscape iPad, lo-res laptops ands desktops */

  }
  @media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */

  }
  @media (min-width:1281px) { /* hi-res laptops and desktops */

  }




  @media (min-width: 760px) {
  .footer-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1230px;
  padding: 40px 15px 450px;
  position: relative;
  }

  .footer-wave-svg {
  height: 50px;
  }

  .footer-content-column {
  width: 24.99%;
  }
  }
  @media (min-width: 568px) {
  /* .footer-content-column {
  width: 49.99%;
  } */
  }

