@-webkit-viewport {
  width: device-width;
}

@-moz-viewport {
  width: device-width;
}

@-ms-viewport {
  width: device-width;
}

@-o-viewport {
  width: device-width;
}

@viewport {
  width: device-width;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --primary-color: #f1bd1b;
  --secondary-color: #ffffff;
  --tertiary-color: #f1bd1b;
  --quaternary-color: #2c2c2c;
  --quinary-color: #343935;
  --senary-color: #be7f4a;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  overflow-x: hidden;
  position: relative;
  color: var(--tertiary-color);
  background-color: var(--secondary-color);
  font-family: 'Poppins', sans-serif!important;
  font-size: 16px !important;
  letter-spacing: 0.8px;
}

.hamburger-menu {
  height: 2em;
}

.navbar-toggler {
  border: 0 !important;
  padding: 0 !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* img{
  max-width: 100%;
  height: auto;
  vertical-align: top;
} */

a,
input,
textarea {
  outline: 0 !important;
  box-shadow: none;
  text-decoration: none !important;
}

.no-border {
  border: 0 !important;
}

.pd-left-zero {
  padding-left: 0;
}

.no-padding {
  padding: 0 !important;
}

.no-margin-top {
  margin-top: 0 !important;
}

.no-margin {
  margin: 0 !important;
}

.no-margin-left {
  margin-left: 0;
}

.no-margin-right {
  margin-right: 0;
}

.padding-right-zero {
  padding-right: 0;
}

.btn-center {
  text-align: center;
  margin-bottom: 2em;
}

.no-margin-auto {
  margin: unset !important;
}

.border-right-zero {
  border-right: 0 !important;
}

.xs-padding {
  padding: 2em 0;
}

.sm-padding {
  padding: 4em 0;
}

.xs-padding-top {
  padding-top: 2em;
}

.space-mg {
  height: 1em;
}

.space-lg {
  height: 2em;
}

.mrg-btm-sec {
  margin-bottom: 2em;
}

.margin-btm-sm {
  margin-bottom: 1.5em;
}

.margin-btm-md {
  margin-bottom: 3em;
}

.margin-top-sm {
  margin-top: 3em;
}

.xl-btn {
  padding: 1.4em 2.2em !important;
  margin: 0 0.5rem;
}

.bg-grey {
  background-color: #f3f4f4;
}

.line-height-1 {
  line-height: 1;
}

.increase-font {
  font-size: 1.5em !important;
  font-weight: 800 !important;
}

.bg-gradient {
  background-image: linear-gradient(90deg, #00f3f7 0, #109df7 100%) !important;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("../img/icons/mobile-toogle.svg") !important;
}

.navbar-light .navbar-toggler {
  border: 1px solid var(--secondary-color) !important;
  color: var(--secondary-color) !important;
}

.navbar-light .navbar-toggler:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

.logo {
  /* margin-left: 2em; */
  height: 5em;
  object-fit: contain;
}

.logo-footer {
  max-width: 5em;
}

.height-auto {
  height: auto !important;
}


.section-title h2 {
  font-size: 1.8em;
  font-weight: 600;
  color: #303030;
  position: relative;
  margin-bottom: 0.5em;
  text-align: center;
}

.section-title h3 {
  font-size: 1.8em;
  font-weight: 600;
  color: #303030;
  position: relative;
  margin-bottom: 0.5em;
  text-align: center;
}

.section-title h3 {
  font-size: 1.8em;
  font-weight: 600;
  color: #303030;
  position: relative;
  margin-bottom: 0.5em;
  text-align: center;
}

.section-title h4 {
  font-size: 1.8em;
  font-weight: 600;
  color: #303030;
  position: relative;
  margin-bottom: 0.5em;
  text-align: center;
}

.section-title p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--quaternary-color);
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 0.5em;
  text-align: center;
}

.section-title p+p+p {
  margin-bottom: 0;
}

/* img{
  width: 100%;
  display: block;
  max-width: 100%;
  height: auto;
} */

.default-btn {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  display: inline-block;
  padding: 0.8em 2em;
  border-radius: 8px !important;
  letter-spacing: 0.5px;
  border-width: 1px;
  color: var(--secondary-color);
  text-decoration: none !important;
  font-size: 1.1em;
  line-height: 25px;
  position: relative;
  -webkit-transition: .5s;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  font-weight: 500;
}

.default-btn:active,
.default-btn:focus,
.default-btn:hover {
  -webkit-transform: translate3d(0, -5px, 0);
  -o-transform: translate3d(0, -5px, 0);
  -ms-transform: translate3d(0, -5px, 0);
  -moz-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  color: var(--secondary-color);
  text-decoration: none !important;
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.default-outline-btn {
  border: 1px solid var(--primary-color) !important;
  background-color: transparent;
  display: inline-block;
  padding: 0.8em 2em;
  border-radius: 15px !important;
  letter-spacing: 0.5px;
  color: var(--primary-color);
  text-decoration: none !important;
  font-size: 1.1em;
  line-height: 25px;
  font-weight: 500;
}

.default-outline-btn:active,
.default-outline-btn:focus,
.default-outline-btn:hover {
  border: 1px solid var(--primary-color) !important;
  background-color: transparent;
  color: var(--primary-color);
  text-decoration: none !important;
}


.white-btn {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  display: inline-block;
  padding: 0.8em 2em;
  border-radius: 8px !important;
  letter-spacing: 0.5px;
  border-width: 1px;
  color: var(--primary-color);
  text-decoration: none !important;
  font-size: 1.1em;
  line-height: 25px;
  position: relative;
  -webkit-transition: .5s;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  font-weight: 500;
}

.white-btn:active,
.white-btn:focus,
.white-btn:hover {
  -webkit-transform: translate3d(0, -5px, 0);
  -o-transform: translate3d(0, -5px, 0);
  -ms-transform: translate3d(0, -5px, 0);
  -moz-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  color: var(--primary-color);
  text-decoration: none !important;
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}

.header-nav-center {
  padding: 0em 0em;
  background-color: #f7f7f7;
  position: relative;
}

.header-nav-center .navbar .nav-item .nav-link {
  font-size: 0.9em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--senary-color);
  opacity: 0.8;
  letter-spacing: 0.5px;
  padding: 0.5em 1em;
  position: relative;
  transition: transform 0.5s;
  padding-bottom: 0.5em;
  border-radius: 0;
  border-bottom: 1px solid transparent;
}

.header-nav-center .navbar .nav-item .nav-link:hover {
  color:var(--senary-color)!important;
  border-bottom: 1px solid var(--senary-color);
  border-radius: 0;
}

.header-nav-center .navbar .navbar-nav {
  gap: 1em;
  align-items: center;
}

.header-nav-center .navbar .nav-item .nav-link:hover {
  color: var(--tertiary-color);
  opacity: 1;
}

.header-nav-center .navbar .header-new-link .nav-item .nav-link {
  font-weight: 600;
}

.open-header-btn {
  background-color: var(--primary-color);
  border-radius: 0 !important;
  color: var(--secondary-color) !important;
  font-weight: 600 !important;
  font-size: 1em !important;
  /* padding: 0.8em 1.5em !important; */
  line-height: 2 !important;
  opacity: 1 !important;
  display: flex;
  align-items: center;
}

.open-header-btn svg {
  fill: var(--secondary-color);
}

.open-header-btn:hover {
  -webkit-transform: translate3d(0, -5px, 0);
  -o-transform: translate3d(0, -5px, 0);
  -ms-transform: translate3d(0, -5px, 0);
  -moz-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  color: var(--secondary-color) !important;
  background-color: var(--primary-color) !important;
}

.margin-top-xl {
  margin-top: 3em;
}

.banner-img {
  width: 100%;
}

.banner-content {
  padding-left: 2em;
}

.banner-content h1 {
  font-size: 3em;
  color: var(--primary-color);
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 0.4em;
  max-width: 600px;
}

.banner-content p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.875rem;
  color: var(--quaternary-color);
  opacity: 0.8;
  line-height: 1.8;
  max-width: 450px;
}

.banner-content h5 {
  font-size: 1.2em;
  color: #606060;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1em;
}

.banner-content h2 {
  font-size: 2.8em;
  font-weight: 500;
  color: #303030;
}

.banner-btn-sec {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-top: 1em;
}

.banner-info-sec {
  padding-top: 1.5em;
}

.banner-info-sec p {
  font-size: 1em;
  color: var(--quaternary-color);
  line-height: 1.8;
}

.banner-caption {
  min-height: 88vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2em;
  position: relative;
}

.home-banner-sec {
  /* background-image: url("../img/home-banner-bg.png"); */
  /* background: linear-gradient(180deg, #FFFFFF 0%, #E4FBED 100%); */
  /* min-height: 100vh; */
  /* background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  width: 100%;
  display: block; */
}

/* 
.home-banner-sec:before {
  position: absolute;
  content: "";
  background: rgba(243, 94, 171, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
} */


.header-dropdown .dropdown-menu {
  border-top: 4px solid #cc4783 !important;
  border: 0;
  padding: 0 !important;
}

.header-dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1em !important;
}

.header-dropdown .dropdown-menu:last-child .dropdown-item:hover {
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.37rem;
}

.navbar-brand h4 {
  color: var(--tertiary-color);
  margin-bottom: 0;
  font-size: 1.75rem;
  font-weight: 600;
}

.flog1 {
  margin-top: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 2em;
  font-size: 11px;
  font-weight: 600;
}

.phone_top {
  text-align: right;
  font-size: 20px;
  color: #fff;
  margin-top: -12px
}

.phone_top h3 {
  font-size: 20px
}

.newyork {
  color: #000;
  margin-left: 10px;
  float: left
}

.london {
  margin-left: 10px;
  color: #000;
  float: left
}

.india {
  margin-left: 10px;
  color: #000
}

.india_time,
.london_time,
.newyork_time {
  margin-left: 5px
}

.flog1 .india {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  text-align: center;
}

.flog1 .newyork {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1em;
}

.flog1 .london {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  text-align: center;
}

.app-link-sec{
  display: flex;
  align-items: center;
  gap: 1em;
}

.app-link{
  border: 1px solid #ddd;
  width: 3em;
  height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.app-logo{
  width: 2em;
}

.marquee-sec{
  background-color: var(--secondary-color);
  padding: 1em 0;
}

marquee {
  font-weight: 600;
  color: #2c2c2c;
  margin-top: 2px;
  font-size: 15px;
}

.headertable1 {
  background: #343935;
  color: #fff;
  border-radius: 10px;
}

.headertable1 th:first-child {
  border-top-left-radius: 10px;
  border-left: 1px solid #fff;
}

.table_responstive1 {
  /* border-collapse: separate; */
  border-collapse: separate;
  border-spacing: 0;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-radius: 10px!important;
}

.efi-data-table-sec{
  background-color: var(--tertiary-color);
  padding: 2em 0;
}

.headertable1 th:nth-child(3) {
  border-top-right-radius: 10px;
  border-right: 1px solid #fff;
}

.table_responstive1 thead th{
  border-top: 1px solid #fff;
  color: var(--secondary-color);
  font-size: 1.2em;
  font-weight: 600;
  text-align: left;
  vertical-align: middle;
}

.table_responstive1 tbody td{
  font-size: 1.5em;
  color: var(--secondary-color);
  font-weight: 700;
  text-align: left;
  border-bottom: 0;
  padding: 0.5em;
  vertical-align: middle;
  width:30%;
}

.table_responstive1 h3{
  font-size: 0.8em;
  font-weight: 600;
  margin-bottom: 0;
}

.table_responstive1 p{
  font-weight: 600;
  font-size: 0.6em;
  margin-bottom: 0;
}

.online-booking-link-sec a{
  background: #343935;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  margin-bottom: 10px;
  display: block;
  font-size: 1.2em;
  font-weight: 600;
  text-transform: uppercase;
}

.online-booking-img{
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
}


.disclaimer label {
  color: #252525;
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 0.5em;
}

.disclaimer p{
  line-height: 2;
  color: #343935;
  font-weight: 500;
  font-size: 0.9em;
  margin-bottom: 0.6em;
}

.disclaimer .marquee-label{
  border: 1px solid #ddd;
  border-radius: 10px;
}

.footer-sec{
  padding: 2em 0;
}

.disclaimer p a{
  color: #343935;
}

.footer-copyright-sec{
  background: #343935;
  color:var(--secondary-color);
  padding: 1em 0;
}

.copyright-cotent p{
  margin-bottom: 0;
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 0.9em;
}

.footer-link{
  display: flex;
  align-items: center;
  /* gap: 0.5em; */
  margin-bottom: 0;
}

.footer-link li{
  border-right: 1px solid var(--secondary-color);
  padding:0 0.5em ;
}

.footer-link li:last-child{
  border-right: 0;
}

.footer-link li a{
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9em;
}

.footer-link li a:hover{
  text-decoration: underline!important;
}

.site-name-title-sec{
  font-size: 2em;
  font-weight: 800;
  color: var(--quaternary-color);
}

.time{
  display: none;
}
.time_on{
  display: block;
}

.india_time.singtime.time{
  display: block;
}

.static-page-header{
  padding: 13px;
  text-align: center;
  font-size: 30px;
  background-image: linear-gradient(to bottom, #ffffff, #f5f5f5, #ebebeb, #e2e2e2, #d8d8d8);
}

.static-page-header h2{
  color: var(--quaternary-color);
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 500;
}

.static-page-sec{
  background-color: #f1bd1b;
  padding: 2em 0;
}

.static-page-card p{
  line-height: 1.5;
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 0.9em;
  margin-bottom: 1em;
}

.static-page-card p:last-child{
  margin-bottom: 0;
}

.static-page-card h4{
  color: var(--quaternary-color);
  font-size: 1.1em;
  margin-bottom: 1em;
}

.static-page-card{
  margin-bottom: 1em;
}


/* New Changes CSS */

.table-grid-header-sec {
  background: #343935;
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
  align-items: center;
  /* gap: 1rem; */
}

.table-grid-box{
  border: 1px solid #fff;
  border-radius: 10px;
}

.table-grid-header-sec .ratevalue1{
  padding: 0.6rem 0.8rem;
  color: var(--secondary-color);
  font-size: 1.2em;
  font-weight: 600;
  text-align: left;
}

.table-grid-sec{
  grid-template-columns: repeat(1, 1fr);
  display: grid;
  gap: 1rem;
}

.table-grid-card{
  grid-template-columns: repeat(3, 1fr);
  display: grid;
  align-items: center;
}

.table-grid-item h3{
  color: var(--secondary-color);
  font-size: 1.2em;
  font-weight: 600;
  text-align: left;
   padding: 0.6rem 0.8rem;
   margin-bottom: 0;
   line-height: 1.8;
}

.table-grid-item p{
   font-size: 1.5em;
  color: var(--secondary-color);
  font-weight: 700;
  padding: 0.6rem 0.8rem;
  text-align: left;
  margin-bottom: 0;
}
