@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,500&display=swap');
/* font-family: 'Poppins', sans-serif; */

:root {
  --primaryColor: #000B89;
  --secondaryColor: #E70F0E;
  --secondaryHoverColor: #CD0C0B;
  --baseColor: #565360;
  --darkColor: #000;
  --lightBg: #F2F5F5;
  --primaryLightBg: #E6F0F8;
  --primaryLgihtBgBorder: #CAD9E7;
  --secondaryLightBg: #FCEDE9;
  --secondaryLightBgBorder: #F2E1DD;
  --baseFont: 'Poppins', sans-serif;
  --fwLight: 300;
  --fwNormal: 400;
  --fwMedium: 500;
  --fwSBold: 600;
  --fwBold: 700;
  --fwEBold: 800;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100vw;
}

body {
  font-family: var(--baseFont);
  color: var(--baseColor);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

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

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: var(--primaryColor);
}

a,
.btn,
a.nav-link {
  -webkit-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

a:hover,
a:focus,
.btn:focus {
  text-decoration: none;
  outline: none;
}

:focus,
.form-control:focus,
.btn:focus,
button,
button:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn {
  font-weight: var(--fwMedium);
  padding: 13px 35px;
  border-radius: 5px;
}

.btnSecondary {
  background-color: var(--secondaryColor);
  color: #fff;
}

.btnSecondary:hover {
  background-color: var(--secondaryHoverColor);
  color: #fff;
}

.btnOutlineSecondary {
  border-color: var(--secondaryColor);
  color: var(--secondaryColor);
}

.btnOutlineSecondary:hover {
  background-color: var(--secondaryColor);
  color: #fff;
}

.mdTitle {
  font-size: 24px;
  font-weight: var(--fwBold);
}

.hcsContentCol .mdTitle {
  padding-bottom: 10px;
}

.hcsContentCol>p+.btn {
  margin-top: 20px;
}

.hcsContentCol {
  max-width: 580px;
}

.hcsImgCol {
  max-width: 630px;
}

.hcsImgCol img {
  border-radius: 10px;
  width: 100%;
  height: 415px;
  -o-object-fit: cover;
  object-fit: cover;
}

.primaryColor {
  color: var(--primaryColor);
}

.secondaryColor {
  color: var(--secondaryColor);
}

.baseColor {
  color: var(--baseColor);
}

.darkColor {
  color: var(--darkColor);
}

.secondaryBg {
  background-color: var(--secondaryColor);
}

.primarBg {
  background-color: var(--primaryColor);
  color: var(--bs-white);
}

.secondaryBg {
  background-color: var(--secondaryColor);
  color: var(--bs-white);
}

.lightBg {
  background-color: var(--lightBg);
}

.badge {
  font-weight: var(--fwMedium);
  font-size: 14px;
  border-radius: 20px;
  padding: 6px 15px;
  line-height: 1;
}

.fwLight {
  font-weight: var(--fwLight);
}

.fwNormal {
  font-weight: var(--fwNormal);
}

.fwMedium {
  font-weight: var(--fwMedium);
}

.fwBold {
  font-weight: var(--fwBold);
}

.fwEBold {
  font-weight: var(--fwEBold);
}

/********* toggle css start *********/

.toggle {
  width: 26px;
  height: 18px;
  /* top: 10px; */
  position: relative;
  margin-left: auto;
  cursor: pointer;
  display: block;
  margin-left: 5px;
}

.bar {
  width: 100%;
  height: 2px;
  position: absolute;
  background-color: #000;
  z-index: 99;
  -webkit-transition: all 500ms ease-in-out 0s;
  -o-transition: all 500ms ease-in-out 0s;
  transition: all 500ms ease-in-out 0s;
  top: 7px;
  border-radius: 20px;
}

.bar:nth-child(1) {
  top: 0px;
}

.bar:nth-child(3) {
  top: 14px;
  width: 60%;
  right: 0;
}

.actNav .mbMenuCol {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

body.actNav {
  overflow: hidden;
}

.menuBackDrop {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 800ms ease-in-out 0s;
  -o-transition: all 800ms ease-in-out 0s;
  transition: all 800ms ease-in-out 0s;
  z-index: 9;
}

.actNav .menuBackDrop {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}

.actNav .bar:nth-child(1) {
  transform: rotate(135deg);
  top: 8px;
}

.actNav .bar:nth-child(2) {
  transform: translate(-100%, 0);
  opacity: 0;
}

.actNav .bar:nth-child(3) {
  transform: rotate(-135deg);
  top: 8px;
  width: 100%;
}

.toggle::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9;
}

/********* toggle css end *********/

.bannerTitle {
  font-size: 70px;
  line-height: 1.2;
  font-weight: var(--fwLight);
  color: var(--primaryColor);
  position: relative;
  z-index: 5;
  padding-top: 50px;
}

.bannerSection {
  padding: 0px 0 60px;
  /* height: 680px; */
  /* display: flex; */
  /* align-items: center; */
  position: relative;
}

.headerCol {
  /* padding: 30px 0; */
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 5px 0 10px !important;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
}

/* .bannerimgCol {
  position: absolute;
	right: 0;
	top: 0;
	height: calc(100% + 120px);
	width: 100%;
	text-align: right;
} */

.bannerImg {
  display: inline-block;
}

.bannerContent {
  position: relative;
  z-index: 5;
  /* display: flex;
	align-items: center;
	min-height: 550px; */
  /* padding-top: 150px; */
  /* padding-bottom: 100px; */
  padding-bottom: 5px;
  background-color: var(--lightBg);
}

.bannerImg {
  -webkit-mask-image: url('../images/banner-img-shape.svg');
  mask-image: url('../images/banner-img-shape.svg');
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  /* width: 59vw; */
  height: 680px;
  -webkit-mask-position: left bottom;
  -o-mask-position: left bottom;
  mask-position: left bottom;
  margin-bottom: -110px;
  margin-left: -150px;
}

.bannerImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-position: left bottom;
}

.menuCol {
  position: relative;
  z-index: 5;
  margin-top: -40px;
}

.navCol {
  display: inline-block;
  background: var(--primaryColor);
  color: #fff;
  /* border-radius: 60px; */
  /* padding: 12px 25px; */
  border-radius: 15px !important;
  padding: 5px 10px !important;
}

.navCol a,
.navCol a:hover,
.navCol .nav-link:focus {
  color: inherit;
}

.navCol .navbar-expand-xl .navbar-nav .nav-link,
.navCol .nav-link {
  /* padding: 16px; */
  /* font-size: 18px; */
  font-size: 16.3px;
  /* font-size: 14px; --- Article subscriber */
  /* font-size: 13px; --- Tourism && Legal services */
  font-weight: var(--fwSBold);
  border-radius: 50px;
}

.navCol .navbar-expand-xl .navbar-nav .nav-link.dropdown-toggle,
.navCol .nav-link.dropdown-toggle {
  /* padding-right: 35px; */
  padding-right: 24px;
}

/* .navCol .nav-item+.nav-item {
  margin-left: 80px;
} */

.navCol .dropdown-menu {
  border-radius: 10px;
  border: none;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  /* width: 300px; */
  max-width: 350px;
  padding: 0 20px;
}

.navCol .dropdown-menu.hidden-mobile {
  overflow-y: auto;
  max-height: 275px;
  max-width: 425px;
}

/* .navCol .dropdown-menu.show-mobile {
  overflow-y: scroll;
  max-height: 125px;
} */

.subscriber-article {
  width: 425px;
}

.subscriber-article>li span {
  white-space: initial;
}

.style-1::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.style-1::-webkit-scrollbar {
  width: 8px;
  background-color: #F5F5F5;
}

.style-1::-webkit-scrollbar-thumb {
  border-radius: 4px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #555;
}

.navCol .dropdown-menu.dropdown-menu-center {
  margin-left: 6px !important;
}

.navCol .dropdown-item {
  padding: 12px 0px;
  font-weight: var(--fwMedium);
  /* font-size: 15px; */
  font-size: 13px;
}

.navCol .dropdown-item:hover,
.navCol .dropdown-item.active,
.navCol .dropdown-item:focus {
  color: var(--secondaryColor);
  background-color: transparent;
}

.navCol .dropdown-menu>li:first-child .dropdown-item {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.navCol .dropdown-menu>li:last-child .dropdown-item {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.navCol .dropdown-menu>li+li {
  border-top: 1px solid #DEE2E6;
}

.sectionSpace {
  padding: 110px 0;
}

.lgTitle {
  font-size: 40px;
  font-weight: var(--fwBold);
  line-height: 1.2;
  color: var(--primaryColor);
}

p {
  font-size: 16px;
  line-height: 1.75;
}

.cs1ImgCol {
  height: 282px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.cs1ImgCol img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  -webkit-transition: transform 800ms ease-in-out 0s;
  -o-transition: transform 800ms ease-in-out 0s;
  transition: transform 800ms ease-in-out 0s;
}

.cs1ContentCol {
  padding: 20px 20px 40px;
}

.cardStyle1 {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  height: 100%;
}

.cs1ContentCol>p:last-child {
  margin-bottom: 0;
}

.cs1ContentCol h4 {
  font-weight: var(--fwBold);
  font-size: 20px;
  color: var(--darkColor);
  line-height: normal;
  margin-bottom: 15px;
}

.cardStyle1:hover .cs1ImgCol img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.noteColMain {
  padding-top: 30px;
}

.noteCol {
  background-color: var(--secondaryColor);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  font-style: italic;
  font-weight: var(--fwMedium);
}

.noteCol p:last-child {
  margin: 0;
}

.gInfoBtmContent {
  padding-top: 30px;
  padding-bottom: 10px;
  position: relative;
  z-index: 2;
}

.foodPoisoning {
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 10px;
  background-color: #fff;
}

.gInfoImgColMain {
  width: 400px;
}

.gInfoTopContent {
  padding-right: 150px;
  padding-top: 150px;
}

.gInfoImgCol {
  margin-left: -140px;
}

.fpContentCol>p:last-child {
  margin-bottom: 0;
}

.genInfoCol p {
  font-size: 14px;
}

.fpContentCol p {
  line-height: normal;
}

.fpContentCol h5 {
  font-size: 20px;
  font-weight: var(--fwBold);
  color: var(--darkColor);
}

.genInfoCol {
  position: relative;
  z-index: 2;
}

.genInfoCol::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 90px;
  bottom: 60px;
  background-color: var(--lightBg);
  z-index: -1;
}


.hCardStyle1+.hCardStyle1 {
  margin-top: 80px;
}

.legalServicesSection .noteColMain {
  padding-top: 60px;
}

.footerCol {
  background-color: var(--lightBg);
  /* padding: 130px 0 90px; */
  padding: 45px 0 65px;
}

.navCol .nav-link.dropdown-toggle::before {
  position: absolute;
  content: '';
  background-image: url('../images/blue-arrow-down.svg');
  height: 9px;
  /* width: 15px; */
  width: 9px;
  -webkit-filter: grayscale(1) invert(1);
  filter: grayscale(1) invert(1);
  background-repeat: no-repeat;
  background-size: contain;
  right: 13px;
  top: 55%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.navCol .nav-link.dropdown-toggle::after {
  display: none;
}

.navCol .nav-link.dropdown-toggle.show::before,
.navCol .nav-link.dropdown-toggle.active::before {
  -webkit-filter: none;
  filter: none;
}

.footerLinks h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--darkColor);
  margin-bottom: 30px;
}

.footerLinks ul li+li {
  margin-top: 15px;
}

.footerLogo {
  margin-bottom: 30px;
}

.footerLeftCol {
  max-width: 400px;
}

/* .footerSec {
  border-bottom: 1px solid #565360;
  padding-bottom: 30px;
} */

.copyright {
  font-size: 14px;
  text-align: center;
  padding-top: 25px;
}



.vrImg {
  border-radius: 10px;
}

.visaRunsImgCol {
  padding-top: 30px;
}



/* rt-pcr-test css start */


.listCol {
  padding-left: 60px;
}

.listCol .listStyle>li::before {
  background-image: url('../images/red-arrow-right-icon.svg');
}

.mdText {
  font-size: 22px;
  color: var(--darkColor);
}

.cardSection {
  position: relative;
  margin-bottom: 70px;
}

.overlayBgLft::before,
.overlayBgRyt::after {
  content: "";
  position: absolute;
  top: 100px;
  bottom: 100px;
  background-color: var(--lightBg);
  z-index: -1;
}

.overlayBgLft::before {
  left: -50%;
  right: 250px;
}

.overlayBgRyt::after {
  right: -50%;
  left: 250px;
}

.mtCol {
  margin-top: -40px;
}

.cardImgCol {
  height: 600px;
  max-width: 430px;
  margin: 0 auto;
}

.cardImgCol>img {
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(-10px 4px 50px rgba(0, 0, 0, 0.08));
  width: 100%;
}

/* rt-pcr-test css end */

/* thailand-pass css start */

.thailandImg {
  padding: 40px 0 15px;
}

/* thailand-pass css end */




/* covid-19-entry-requirements css start */
.covidImgCol {
  height: 100%;
}

.covidImgCol img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cs2IconCol {
  width: 56px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 10px;
  margin-right: 5px;
}

.cs2IconCol img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
  object-fit: contain;
}

.primaryLightBg {
  background-color: var(--primaryLightBg);
  border: 1px solid var(--primaryLgihtBgBorder);
}

.secondaryLightBg {
  background-color: var(--secondaryLightBg);
  border: 1px solid var(--secondaryLightBgBorder);
}

.primaryLightBg .cs2IconCol {
  background-color: var(--primaryColor);
}

.secondaryLightBg .cs2IconCol {
  background-color: var(--secondaryColor);
}

.cardStyle2 {
  padding: 20px 15px 25px;
  border-radius: 10px;
}

.cs2TopCol+.cs2BtmCol {
  margin-top: 15px;
}

.cs2BtmCol p {
  font-size: 14px;
  line-height: 2;
}

.cs2BtmCol p:last-child {
  margin-bottom: 0;
}

.cardStyle2+.cardStyle2 {
  margin-top: 20px;
}

.cs2TopCol h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--darkColor);
  margin: 0;
}

.notificationCol {
  min-height: 234px;
}

.noteCol.noteStyle2 {
  font-style: normal;
}

.smTitle {
  font-size: 20px;
  font-weight: bold;
  color: var(--darkColor);
}

.borderColList>li+li {
  border-top: 1px dashed var(--primaryColor);
  padding-top: 20px;
}

.smTitle .badge {
  margin-left: 5px;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}





.listStyle>li {
  position: relative;
  padding-left: 30px;
  font-weight: var(--fwMedium);
}

.listStyle>li::before {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url('../images/arrow-right-icon.svg');
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  top: 5px;
  left: 2px;
}

.listStyle>li+li {
  margin-top: 15px;
}

.smSectionSpace {
  padding: 85px 0;
}

.smTextCol p {
  font-size: 14px;
  line-height: 2;
}

.appDownloadCol {
  padding: 40px 0;
}

.appLinks>li {
  display: inline-block;
  max-width: 49%;
}

.timeLineList>li {
  padding-left: 60px;
  position: relative;
  padding-top: 6px;
  padding-bottom: 40px;
}

.timeLineList>li::before {
  content: "";
  width: 40px;
  height: 40px;
  background-color: var(--bs-white);
  border: 12px solid var(--primaryColor);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}

.timeLineList>li::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 30px;
  border-left: 2px dashed var(--primaryColor);
  height: 100%;
}

.timeLineList>li:last-child::after {
  display: none;
}




.fImgCol img {
  border-radius: 10px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.fContentCol>p+p {
  padding-top: 10px;
}

.fCardStyle1+.fCardStyle1 {
  padding-top: 60px;
}


.costLivingImgCol img {
  border-radius: 10px;
  width: 100%;
}

.formStyle .form-select,
.formStyle .form-control,
.formStyle .formBtn {
  height: 70px;
  border: none;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size: 18px;
  padding: 10px 25px;
}

.formStyle .form-select {
  padding-right: 40px;
  background-position: right 20px center;
}

.formBtn>span {
  display: inline-block;
  vertical-align: middle;
}

.formBtn>span>img {
  display: block;
}

.formBtn>span+span {
  padding-left: 10px;
}

.cSelect {
  width: 144px;
}

.sSelect {
  width: 200px;
}


.liveCalculatorFilter {
  padding-bottom: 50px;
}

.tableStyle>thead>tr>th {
  font-size: 18px;
  font-weight: var(--fwMedium);
  background-color: var(--primaryColor);
  color: var(--bs-white);
  padding: 20px 25px;
}

.tableStyle>thead>tr>th:first-child {
  border-top-left-radius: 10px;
}

.tableStyle>thead>tr>th:last-child {
  border-top-right-radius: 10px;
}

.tableStyle>tbody>tr>td {
  padding: 20px 25px;
}

.lastAlignRight>thead>tr>th:last-child,
.lastAlignRight>tbody>tr>td:last-child {
  text-align: right;
}

.table-striped.tableStyle>tbody>tr:nth-of-type(2n+1)>* {
  --bs-table-accent-bg: #fff;
}

.table-striped.tableStyle>tbody>tr:nth-of-type(2n)>* {
  background-color: var(--lightBg);
}

.table-striped.tableStyle>tbody>tr>td:first-child,
.table-striped.tableStyle>tbody>tr>td:last-child {
  position: relative;
}

.table-striped.tableStyle>tbody>tr>td:last-child::before,
.table-striped.tableStyle>tbody>tr>td:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  border-left: 1px solid var(--lightBg);
}

.table-striped.tableStyle>tbody>tr>td:first-child::before {
  left: 0;
}

.table-striped.tableStyle>tbody>tr>td:last-child::before {
  right: 0;
}

.table-striped.tableStyle.tableStyle2>tbody>tr:nth-of-type(2n+1)>* {
  --bs-table-accent-bg: var(--lightBg);
}

.table-striped.tableStyle.tableStyle2>tbody>tr:nth-of-type(2n)>* {
  background-color: #fff;
}

.table-striped.tableStyle>tbody>tr:last-child>* {
  border-bottom: 1px solid var(--lightBg);
}

.table-striped.tableStyle>tbody>tr:first-child>* {
  border-top: 1px solid var(--lightBg);
}

.tableStyle>tbody>tr>td {
  border-bottom: none;
}

.table.tableStyle.tableStyle2>tbody>tr>td+td {
  border-left: 1px solid var(--bs-white);
}



.modalStyle .modal-title {
  font-size: 20px;
  font-weight: var(--fwBold);
}

.modalStyle .modal-header {
  border-bottom: 1px solid #DEE2E6;
  padding: 30px;
}

.modalStyle .modal-body {
  padding: 30px 84px 45px;
}


.incDecBtn {
  width: 40px;
  height: 40px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}

.increaseDecreaseCol {
  position: relative;
}

.increaseDecreaseCol>.incDecInput {
  height: 54px;
  border-radius: 30px;
  border: none;
  width: 100%;
  text-align: center;
  padding: 10px 55px;
}

.incDecBtn.minus {
  left: 10px;
}

.incDecBtn.plus {
  right: 10px;
}

.tdVAlignMdl td {
  vertical-align: middle;
}

.increaseDecreaseCol.ctIncDecCol {
  max-width: 260px;
  margin: 0 auto;
}

.modalStyle .tableStyle>tbody>tr>td.incTdCol {
  padding: 10px 15px;
}

.ctTable>tbody>tr>td {
  width: 50%;
}


/****************** media queries ********************/


@media (min-width:1400px) {
  .container {
    max-width: 1350px;
  }
}

@media (min-width:1200px) {

  .navCol .nav-link.show,
  .navCol .nav-link.active {
    background-color: #fff;
    color: var(--primaryColor);
  }

  /* .navCol .nav-item.dropdown:hover */
  .navCol .nav-item:hover {
    border-radius: 50px;
    background-color: var(--primaryColor);
  }

  .navCol .nav-item.dropdown:hover ul.dropdown-menu {
    display: block;
  }

  .navCol .navbar-expand-xl .navbar-nav>li:last-child .dropdown-menu {
    right: 0;
  }
}

@media(max-width:1575px) {
  /* .bannerimgCol {
  height: calc(100% + 80px);
  } */
}

@media(max-width:1480px) {
  /* .bannerimgCol {
  height: calc(100% + 30px);
  } */
}

@media (max-width:1399px) {

  /* .bannerimgCol {
      height: calc(100% + -40px);
  } */
  /* .navCol .nav-item+.nav-item {
    margin-left: 50px;
  } */

  .cs1ImgCol {
    height: 230px;
  }

  .bannerImg {
    height: 540px;
    margin-bottom: -60px;
    margin-left: -80px;
  }

  .bannerTitle {
    font-size: 60px;
  }

  .navCol .nav-link {
    padding: 14px 15px;
    font-size: 15px;
  }

  .navCol {
    padding: 15px;
  }

  .bannerSection {
    padding: 0px 0 30px;
  }

  .navCol .nav-link.dropdown-toggle {
    padding-right: 30px;
  }

  .navCol .nav-link.dropdown-toggle::before {
    right: 10px;
  }

  .navCol .dropdown-item {
    padding: 10px 0px;
    font-size: 14px;
  }

  .navCol .dropdown-menu {
    width: 250px;
    padding: 5px 15px;
  }

  .navCol .dropdown-menu.dropdown-menu-center {
    margin-left: 0px !important;
  }

  .navCol .navbar-expand-xl .navbar-nav .nav-link,
  .navCol .nav-link {
    padding: 14px 10px;
    font-size: 16px;
  }

  .fContentCol>p+p {
    padding-top: 0;
  }

  .tableStyle>thead>tr>th,
  .tableStyle>tbody>tr>td {
    padding: 15px;
  }

  .formStyle .form-select,
  .formStyle .form-control,
  .formStyle .formBtn,
  .tableStyle>thead>tr>th {
    font-size: 16px;
  }

  .formStyle .form-select,
  .formStyle .form-control,
  .formStyle .formBtn {
    height: 60px;
  }

  .tableStyle>tbody>tr>td {
    font-size: 14px;
  }

  .formBtn>span>img {
    width: 26px;
  }
}

@media (max-width:1199px) {

  /* .bannerContent {
  min-height: 510px;
  } */
  /* .bannerimgCol {
  height: calc(100% + -75px);
  } */
  /* .bannerImg {
    width: 61vw;
  } */

  .bannerTitle {
    font-size: 50px;
  }

  .navCol .nav-link {
    padding: 20px 30px;
    font-size: 18px;
  }

  .navCol .nav-link.dropdown-toggle::before {
    right: 0px;
    top: 18px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-filter: grayscale(1) invert(1);
    filter: grayscale(1) invert(1);
  }

  .navCol .nav-link.dropdown-toggle.show::before {
    -webkit-filter: grayscale(1) invert(1);
    filter: grayscale(1) invert(1);
  }

  /* .navCol .nav-item+.nav-item {
    margin-left: 20px;
  } */

  .lgTitle {
    font-size: 35px;
  }

  .cs1ContentCol h4 {
    font-size: 18px;
  }

  .bannerImg {
    margin-bottom: -60px;
    margin-left: -50px;
    margin-right: -150px;
    height: 460px;
  }

  .sectionSpace {
    padding: 90px 0;
  }

  .menuCol {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    margin: 0;
    width: 270px;
    z-index: 99;
    background-color: var(--primaryColor);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    overflow-y: auto;
  }

  .actNav .menuCol {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .navCol {
    padding: 15px 0;
    background-color: transparent;
    display: block;
  }

  .navCol .nav-link {
    padding: 10px 0;
    font-size: 15px;
  }

  .headerCol {
    background-color: rgba(255, 255, 255, 0.8);
  }

  .navCol .dropdown-menu {
    width: 100%;
  }

  .navCol .navbar {
    display: block;
  }

  .navCol .dropdown-menu {
    border-radius: 0;
    background-color: transparent;
    padding: 0 0 0 15px;
  }

  .navCol .dropdown-item {
    color: #fff;
    padding: 4px 0px;
    position: relative;
  }

  .navCol .dropdown-menu>li+li {
    border-top: none;
  }

  .navCol .dropdown-item::before {
    content: "";
    position: absolute;
    left: -12px;
    width: 5px;
    height: 5px;
    background-color: #fff;
    border-radius: 50%;
    top: 12px;
  }

  .logoCol img {
    width: 120px;
  }

  .headerCol {
    padding: 20px 0;
  }

  .navCol .nav-pills .nav-link.active {
    background-color: transparent;
  }

  .navCol .navbar-expand-xl .navbar-nav .nav-link,
  .navCol .nav-link {
    padding: 8px 0px;
  }

  .navCol .dropdown-menu {
    display: block;
    margin: 0 !important;
    padding-left: 20px;
  }

  .navCol .dropdown-item:hover,
  .navCol .dropdown-item.active,
  .navCol .dropdown-item:focus {
    color: #fff;
    opacity: 1;
  }

  .navCol .nav-link,
  .navCol .dropdown-item {
    opacity: 0.7;
  }

  .navCol .nav-link:hover,
  .navCol .dropdown-item:hover,
  .navCol .nav-link.active,
  .navCol .dropdown-item.active {
    opacity: 1;
  }

  .navCol .navbar-expand-xl .navbar-nav .nav-link,
  .navCol .nav-link {
    font-size: 15px;
  }

  .navCol .nav-link.dropdown-toggle::before {
    opacity: 0;
  }

  .navCol .navbar-expand-xl .navbar-nav .nav-link.dropdown-toggle,
  .navCol .nav-link.dropdown-toggle {
    padding-right: 0;
  }

  .smSectionSpace {
    padding: 65px 0;
  }

  .mdText {
    font-size: 20px;
    color: var(--darkColor);
  }

  .cardImgCol {
    height: 540px;
    max-width: 100%;
  }

  .modalStyle .modal-body {
    padding: 20px 30px 20px;
  }

  .modalStyle .modal-header {
    padding: 20px 30px;
  }
}

.headerCol {
  position: fixed;
  background-color: #fff;
  padding: 0;
}

@media (max-width:991px) {
  html.actNav {
    overflow: hidden;
  }

  .headerCol {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px 0;
    background-color: #fff;
  }

  .headerCol.fixedHeader {
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  }

  .mbMenuCol {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    background-color: var(--primaryColor);
    z-index: 99;
    padding: 30px 15px;
    width: 270px;
    border-radius: 0;
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    -webkit-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    transform: translateX(-150%);
  }

  .sidenavBarLinks>ul>li {
    display: block;
    text-align: left;
  }

  .sidenavBarLinks>ul>li+li {
    margin-top: 15px;
  }

  .sidenavBarLinks>ul>li>a {
    padding: 8px 15px;
    font-size: 14px;
    color: var(--bs-white);
    font-weight: var(--fwSBold);
    border-radius: 50px;
    display: block;
    background-color: rgba(255, 255, 255, 0.2);
  }

  .subMenu {
    padding: 15px;
  }

  .subMenu>li {
    display: block;
    text-align: left;
  }

  .subMenu>li+li {
    margin-top: 5px;
  }

  .subMenu>li>a {
    font-size: 14px;
    color: var(--bs-white);
    display: block;
    position: relative;
    padding-left: 15px;
  }

  .subMenu>li>a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    background-color: #fff;
    width: 5px;
    height: 5px;
    border-radius: 50%;
  }

  .logoCol img {
    max-width: 120px;
  }

  /********************************************/
  /* .bannerImg {
    -webkit-mask-position: left top;
    -o-mask-position: left top;
    mask-position: left top;
  }*/
  .gInfoImgColMain {
    margin: 0 0px 0 180px;
  }

  .hcsContentCol {
    max-width: 100%;
    margin-top: 30px;
  }

  .footerRightCol {
    margin-top: 30px;
  }

  .footerLeftCol {
    max-width: 100%;
  }

  .hcsImgCol {
    max-width: 100%;
  }

  .gInfoTopContent {
    padding-right: 0px;
  }

  .bannerTitle {
    font-size: 50px;
  }

  .sectionSpace {
    padding: 80px 0;
  }

  .footerCol {
    padding: 90px 0 50px;
  }

  .genInfoCol::before {
    top: 0;
  }

  .gInfoTopContent {
    padding-top: 60px;
  }

  .bannerTitle {
    font-size: 44px;
    padding-top: 30px;
  }

  .notificationCol {
    min-height: initial;
  }

  .cs2TopCol h4,
  .smTitle {
    font-size: 18px;
  }

  .cs2BtmCol p {
    line-height: 1.6;
  }

  .timeLineList>li::before {
    width: 25px;
    height: 25px;
    border-width: 8px;
  }

  .timeLineList>li::after {
    left: 12px;
    top: 20px;
  }

  .timeLineList>li {
    padding-left: 35px;
    padding-top: 2px;
    padding-bottom: 30px;
  }

  .listStyle>li+li {
    margin-top: 10px;
  }

  .appDownloadCol {
    padding: 30px 0;
  }

  .smSectionSpace {
    padding: 45px 0;
  }

  .noteColMain {
    padding-top: 20px;
  }

  .fCardStyle1+.fCardStyle1 {
    padding-top: 30px;
  }

  .cardImgCol {
    height: 400px;
  }

  .mdText {
    font-size: 18px;
  }

  .overlayBgLft::before,
  .overlayBgRyt::after {
    top: 50px;
    bottom: 50px;
  }

  .cardSection.mtCol {
    margin-top: 50px;
  }

  .liveCalculatorFilter {
    padding-bottom: 30px;
  }
}

@media (max-width:767px) {
  .footerLogo img {
    max-width: 150px;
  }

  .bannerTitle {
    font-size: 40px;
  }

  .bannerSection {
    padding: 0px 0 0px;
  }

  .genInfoCol::before {
    top: 20px;
  }

  .gInfoTopContent {
    padding-top: 60px;
  }

  .gInfoImgCol {
    margin-left: 0;
  }

  .gInfoImgColMain {
    margin: 0 auto;
  }

  .lgTitle {
    font-size: 30px;
  }

  .mdTitle {
    font-size: 22px;
  }

  .btn {
    padding: 10px 30px;
  }

  .bannerImg {
    margin-bottom: 0px;
    margin-left: -10px;
    margin-right: -130px;
    height: 400px;
  }

  .bannerTitle {
    font-size: 36px;
    padding-top: 50px;
  }

  .navCol .nav-link {
    font-size: 14px;
    padding: 8px 0;
  }

  .menuCol {
    /* width: 255px; */
    width: 295px;
  }

  .navCol .nav-link.dropdown-toggle {
    padding-right: 20px;
  }

  .navCol .nav-link.dropdown-toggle::before {
    top: 16px;
  }

  .navCol .navbar-expand-xl .navbar-nav .nav-link,
  .navCol .nav-link {
    font-size: 14px;
  }

  .navCol .navbar-expand-xl .navbar-nav .nav-link.dropdown-toggle,
  .navCol .nav-link.dropdown-toggle {
    padding-right: 20px;
  }

  .navCol .nav-link.dropdown-toggle::before {
    top: 14px;
    width: 12px;
  }

  .overlayBgLft::before,
  .overlayBgRyt::after {
    display: none;
  }

  .cardImgCol {
    margin-bottom: 30px;
  }

  .cardText {
    text-align: center;
  }

  .mdText {
    font-size: 16px;
  }

  .listCol {
    padding-left: 0;
  }

  .imgCol {
    margin-bottom: 40px;
  }

  .cSelect {
    width: 120px;
  }

  .sSelect {
    width: 100%;
  }

  .formStyle .form-select,
  .formStyle .form-control,
  .formStyle .formBtn {
    height: 60px;
    border-radius: 4px;
    font-size: 16px;
    padding: 10px 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }

  .formStyle .form-select {
    padding-right: 30px;
    background-position: right 10px center;
  }

  .formBtn>span>img {
    width: 20px;
  }

  .formBtn>span+span {
    padding-left: 5px;
  }

  .ctTable>tbody>tr>td {
    width: initial;
  }
}

@media (max-width:575px) {
  .hcsImgCol img {
    height: 370px;
  }

  .footerLogo img {
    max-width: 130px;
  }

  .bannerTitle {
    font-size: 35px;
  }

  .mdTitle {
    font-size: 20px;
  }

  .footerLinks {
    padding-top: 30px;
  }

  .footerLinks h5 {
    margin-bottom: 20px;
  }

  .footerLinks ul li+li {
    margin-top: 10px;
  }

  .footerRightCol {
    margin-top: 0px;
  }

  .fpContentCol h5 {
    font-size: 18px;
  }

  .fpContentCol {
    padding-top: 25px;
  }

  .foodPoisoning {
    padding: 20px;
  }

  p {
    font-size: 15px;
    line-height: 1.6;
  }

  .noteCol {
    padding: 15px;
  }

  .hcsContentCol>p+.btn {
    margin-top: 10px;
  }

  .bannerImg {
    height: 300px;
  }

  .bannerContent {
    min-height: 230px;
  }

  .bannerImg {
    height: 250px;
    margin-left: -30px;
  }

  .logoCol img {
    max-width: 100px;
  }

  .bannerTitle {
    font-size: 30px;
  }

  .cs1ContentCol {
    padding: 15px;
  }

  .hcsContentCol {
    margin-top: 20px;
  }

  .btn {
    padding: 7px 25px;
    font-size: 14px;
  }

  .cs2TopCol h4,
  .smTitle {
    font-size: 16px;
  }

  .footerCol {
    padding: 60px 0 30px;
  }

  .listStyle>li {
    padding-left: 25px;
    font-size: 14px;
  }

  .listStyle>li::before {
    width: 10px;
    height: 10px;
  }

  .cardSection {
    margin-bottom: 50px;
  }

  .timeLineList>li {
    padding-left: 30px;
  }

  .timeLineList>li::before {
    width: 20px;
    height: 20px;
    border-width: 6px;
    top: 2px;
  }

  .timeLineList>li::after {
    left: 10px;
  }

  .cSelect {
    width: 100px;
  }

  .tableStyle>thead>tr>th,
  .tableStyle>tbody>tr>td {
    padding: 15px 10px;
  }

  .tableStyle>thead>tr>th:first-child {
    border-top-left-radius: 5px;
  }

  .tableStyle>thead>tr>th:last-child {
    border-top-right-radius: 5px;
  }

  .tableStyle>thead>tr>th {
    white-space: nowrap;
  }

  .modalStyle .modal-header {
    padding: 15px;
  }

  .modalStyle .modal-body {
    padding: 15px 15px 15px;
  }

  .modalStyle .tableStyle>tbody>tr>td.incTdCol {
    padding: 10px 10px;
  }
}

@media (max-width:480px) {
  .footerLinks h5 {
    font-size: 16px;
  }

  .sectionSpace {
    padding: 50px 0;
  }

  .hcsImgCol img {
    height: 350px;
  }

  .footerLogo img {
    max-width: 110px;
  }

  .mdTitle {
    font-size: 18px;
  }

  p {
    font-size: 14px;
    line-height: 1.5;
  }

  .lgTitle {
    font-size: 22px;
  }

  .bannerTitle {
    font-size: 32px;
  }

  .gInfoImgColMain {
    width: 100%;
  }

  .cs1ContentCol h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .fpContentCol h5 {
    font-size: 16px;
  }

  .bannerTitle {
    font-size: 26px;
  }

  .logoCol img {
    max-width: 80px;
  }
}

@media(max-width:375px) {
  .footerCol {
    padding: 50px 0 20px;
  }

  .sectionSpace {
    padding: 50px 0;
  }

  .footerLinks {
    padding-top: 30px;
  }

  .footerLinks h5 {
    margin-bottom: 10px;
  }

  .footerLinks ul li+li {
    margin-top: 8px;
  }

  .hcsImgCol img {
    height: 255px;
  }

  .footerLogo img {
    max-width: 100px;
  }

  .bannerTitle {
    font-size: 28px;
  }

  .bannerTitle {
    font-size: 22px;
  }

  .cs2TopCol h4,
  .smTitle {
    font-size: 15px;
  }
}