﻿@charset "utf-8";
@font-face {
    font-family: 'Montserrat-Regular';
    src: url('fonts/Montserrat-Regular.woff2') format('woff2');
    src: url('fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'), url('fonts/Montserrat-Regular.woff') format('woff'), url('fonts/Montserrat-Regular.TTF') format('truetype'), url('fonts/Montserrat-Regular.svg#CenturyGothic') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Montserrat-Light';
    src: url('fonts/Montserrat-Light.woff2') format('woff2');
    src: url('fonts/Montserrat-Light.eot?#iefix') format('embedded-opentype'), url('fonts/Montserrat-Light.woff') format('woff'), url('fonts/Montserrat-Light.TTF') format('truetype'), url('fonts/Montserrat-Light.svg#CenturyGothic') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap
}
:root {
    --main-yellow-color:#f9e547; 
    --main-ye-green-color:#A3D969;
    --main-color:#46cace;
    --main-blue-color:#26477c;
    --main-bg-color:#46cace;
    --main-bg-3-color:rgba(38,71,124,0.3);
    --main-link-color:#c00000;
    /* --main-link-color:#0ea37c; */
    --con-width:76vw;
    --max-width:90%;
    --white-color:#fff;
    --black-color:#000;
    --border-color:#ccc;
    --gray-color:#f2f2f2;
    --gray-g-color:#eef9fd;
    --light-gray-color:#fafafa;
    --linear-bg:linear-gradient(to right, #46cace,#a6c4fa);
    --small-radius:5px;
    --big-radius30:30px;
    --h-tit-fontsize:40px;
    --font-bold:'Montserrat-Regular', sans-serif !important;
    --font-light:'Montserrat-Light', sans-serif !important;
    --dark-color: #1856b2;    
    --border-color: #e5e7eb;
    --bg-green-light-color:#eef7f6;
    --top-nav-height:50px;
  }
/* Global reset and box sizing */
html,body{
  padding:0px;
  margin:0px;
}
* {
      box-sizing: border-box;
}
a{
    text-decoration: none !important;
    color:var(--main-color);
}
a:hover{
  color:var(--main-link-color);
}
        /* Base typography settings */
h1, h2, h3 {
            font-family: 'Montserrat-Regular', sans-serif;
 }
body {
    font-family: 'Montserrat-Light', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    font-size: 14px;
    line-height: 1.8em;
    font-weight: 600; 
    color: #000;
}
.ther-container {
  width: 90%;
  max-width:var(--max-width);
  margin: 0 auto;
  padding: 40px 0px;
}
.ther-container-top{
  width: 100%;
  max-width:90%;
  margin: 0 auto;
}
.navarea{
  width: 100%;
  max-width:90%;
  margin: 0 auto;
}
.section{
  padding:4rem 0;
}
/*=================haed nav begin==================*/
header {
  position: sticky;
  top: 0px !important;
  width: 100%;
  z-index: 300;
  padding: 0px !important;
  margin: 0px !important;
  background-color:var(--main-color);
  
}
/*---header top begin----*/
.scallbg{
  background-color: #fff;
  color:#000 !important;
}
.scallbg .ther-t-header{
   color:#000 !important;
}

.scallbg .ther-t-logo img{
  filter: none;
}
.scallbg .ther-t-contact-item i{
  color:var(--main-color);
}
.scallbg .ther-t-contact-item a{
  color:var(--main-color);
}

.ther-t-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 1rem; */
  color:#fff;
}

.ther-t-logo {
  display: flex;
  /* flex-direction: column; */
}
.ther-t-logo img{
  filter: grayscale(100%) brightness(1000%) contrast(100);
}

.ther-t-logo-main {
  font-weight: bold;
  color: #004AAD;
}

.ther-t-logo-sub {
  color: #666;
}

.ther-t-contact-group {
  display: flex;
  gap: 2rem;
}

.ther-t-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size:1.6rem;
}
.ther-t-contact-item a{
  color:#fff;
}

.ther-t-contact-item svg {
  flex-shrink: 0;
}

.ther-t-search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width:40px;
  height:40px;
  padding:0px !important;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  display: inline-block;
  font-size:18px;
  /* border:1px solid var(--main-color); */
  border-radius: 40px;
  line-height:40px;

}

.ther-t-search-toggle:hover {
  background-color:var(--main-color);
  color:#fff;
}

.ther-t-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}

.ther-t-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.ther-t-modal-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.ther-t-modal-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  transition: color 0.2s ease;
}

.ther-t-modal-close:hover {
  color: #000;
}

.ther-t-search-type {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.ther-t-search-input {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  flex-grow: 1;
}

.ther-t-search-action {
  padding: 0.8rem 1.2rem;
  background-color: #FCE205;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

.ther-t-search-action:hover {
  background-color: #FAD900;
}
@media (max-width: 993px) {
  .ther-t-header {
      color:#000;
  }
  .ther-t-contact-group {
    display: none;
}
.navarea{
  width: 100%;
  margin: 0 auto;
}
}
@media (max-width: 768px) {
  .ther-t-header {
      /* flex-direction: column; */
      align-items: flex-start;
      gap: 1rem;
      /* padding: 1rem; */
      display: flex;
  }

   .ther-t-search-toggle {
      /* margin-left: auto; */
      color:#000;
      margin-top:15px;
  } 
  .ther-t-search-type {
      flex-direction: column;
      gap: 0.5rem;
  } 
  .ther-t-modal-inner {
      /* width: 95%; */
      padding: 1.5rem;
  }
  
}

@media (max-width: 480px) {
  .ther-t-header {
      /* flex-direction: column; */
      align-items: flex-start;
      gap: 1rem;
      /* padding: 1rem; */
      display: flex;
      /* flex-direction: row; */
       align-items: center; 
  }
  .ther-t-contact-group {
      display: none;
  }
  .ther-t-search-toggle {
      margin-left: auto;
  }
  .ther-t-logo-main {
      font-size: 1.5rem;
  }
  .ther-t-search-type {
      flex-direction: column;
      gap: 0.5rem;
  }
  .ther-t-modal-inner {
      padding: 1rem;
  }
}
/*----------header top end---------------*/
.heada {
  display: flex;
  color: var(--black-color);
  /* border-bottom: 1px solid var(--border-color); */
  background-color:var(--white-color);

}

.nav {
  display: block;
  position: relative;
  width: 100% !important; 
  /* border-bottom: 1px solid #efefef; */
}

.nav .logo {
  display: flex;
  align-items: center;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.heada .nav .logo img {
  filter: grayscale(100%) brightness(1000%) contrast(100);
}

.nav .navul>ul {
  position: relative;
  padding: 0px;
  margin: 0px;
}
.nav .navul > ul  > li{
  position: relative;
}

/*s-menu-nomal third layer*/
ul.navsmenu  > li > ul{
  /* position: fixed  !important;
  left:33.3% !important;
  z-index: 1000;
  width:33% !important;
  padding-left:20px !important;  */
  /* max-height:300px !important; */
  margin-left:30px;
  overflow-y: auto;
}

ul.navsmenu  > li > ul > li{
  padding:5px 0px;
  font-weight:bold;
}
/* ul.navsmenu  > li:hover > ul{
  display: block !important;
} */
/*s-menu-nomal four layer*/
ul.navsmenu  > li > ul > li > ul {
  /* position: fixed !important;
  left:66.3% !important;
  z-index: 1000;
  width:33% !important;
  padding-left:20px !important; */
  /* max-height:300px !important; */
    overflow-y: auto;
}
/* ul.navsmenu  > li > ul > li:hover > ul{
  top:0px;
  display: block !important;
} */
ul.navsmenu  > li > ul > li > ul > li{
  font-weight:bold;
}
/*------------s-menu-nomal end---------*/

.nav .navul>ul>li>a {
  color: var(--black-color);
  display: block;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  z-index: 10;
  position: relative;
  font-family: var(--font-bold);
}

.nav .navul>ul>li:hover>a {
  /*background-color: var(--main-color);*/
  color: var(--black-color);
  cursor: pointer;
}


.nav .navul>ul>li>ul {
  box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.1);
}

.nav .navul>ul>li>ul {
  background-color: #fafafa;
  max-height: 600px;
  overflow: auto;
  z-index: 200;
}

/*.nav .navul > ul > li > ul > li{margin-top:5px;margin-bottom:5px;}*/
.nav .navul ul>li>ul>li {
  display: block;
  position: relative;
  height: auto;
  /* border-bottom: 1px solid #efefef; */
  /* padding:0 0 10px 0; */
}

.nav .navul > ul>li>ul>li>a {
  /* font-family: 'gilroy-medium', sans-serif; */
  font-size: 16px !important;
  height: auto !important;
  line-height: 22px;
  padding: 8px;
  /* color: var(--main-color) !important; */
  display: block;
  margin-bottom:0px;
  
}
 .nav .navul > ul>li:nth-child(1)>ul>li>a,
.nav .navul > ul>li:nth-child(2)>ul>li>a,
.nav .navul > ul>li:nth-child(3)>ul>li>a,
.nav .navul > ul>li:nth-child(4)>ul>li>a
{
  color: var(--main-blue-color);
  font-family: var(--font-bold);
} 
 .nav .navul > ul>li:nth-child(1)>ul>li:hover > a,
.nav .navul > ul>li:nth-child(2)>ul>li:hover > a,
.nav .navul > ul>li:nth-child(3)>ul>li:hover > a,
.nav .navul > ul>li:nth-child(4)>ul>li:hover > a{
  color: var(--main-color);
} 

.nav .navul ul li ul li a{
  color:#444;
  padding: 10px 0px;
}
.nav .navul ul li ul li a:hover {
  color: var(--main-color);
  /* background-color:#efefef; */
}
/*layer three*/
.nav .navul > ul>li>ul>li>ul {
  /* display: none; */
  width: 100%;
  margin:8px 0px!important;
  position: relative;
}
/*layer four*/
 .nav .navul > ul>li>ul>li>ul>li>ul{
  /* display: none; */
  width: 100%;
  margin:8px 0px!important;
  position: relative;
} 
/* .nav .navul ul > li:nth-child(1) > ul > li > ul{
  max-height: 250px !important;
} */
/* .nav .navul > ul > li:nth-child(1) > ul > li > ul{
  height: 350px !important;
} */

.nav .navul ul>li>ul>li>ul>li {
  display: block;
  width: 100%;
  float: none;
  line-height: 22px;
  margin-right: 0 !important;
   padding:8px 0; 
}
/* .nav .navul > ul>li>ul>li>ul>li > a{
  font-size:14px;
} */


/* .nav .navul ul>li>ul>li>ul>li:hover{
  background-color: #efefef;
} */

.nav .navul ul>li>ul>li>ul>li:last-child {
  border: 0px;
}

.nav .navul ul>li>ul>li>ul>li a {

  height: auto !important;
  line-height: 22px;
}
/* .nav .navul ul>li>ul>li>ul>li>ul>li{
  font-size:12px;
} */

.nav .navul ul li .menu-drop-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute !important;
  top: 0px;
  right: 0;
  font-size: 16px;
  z-index: 200;
}

/* .nav .navright {
  position: absolute;
  height: 100%;
  top: 0px;
  right: 0px ;
  z-index: 10000;
}

.nav .navright {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.nav .navright a {
  background-color: var(--main-yellow-color);
  color: var(--white-color);
  padding: 6px 10px;
  border-radius: 8px;
}

.nav .navright a:hover {
  color: var(--white-color);
  background-color: var(--main-color);
}

.nav .navright .btnsearch {
  margin-right: 20px;
  font-size: 18px;
  padding: 5px 8px;
} */

.menubar {
  margin-left: 6px;
  padding: 10px;
  font-size: 24px;
  margin-top:10px;
  /* position:absolute; */
  /* width:98%;
  font-family: var(--font-bold); */
}
/* .menubar::after{
  content:"Therapeutics";
   position: absolute;
   right:15px;
   top:15px;
   font-size:18px;
   color:var(--main-blue-color);
} */


@media (min-width: 1920px) {
  .defcolor {
    /* color: #000; */
    /* background-color: #fff; */
     color: #fff;
    background: var(--linear-bg);
  }

  .defcolor .nav .navul>ul>li>a {
    /* color: #000; */
    color: #fff;
  }

  .defcolor .nav .navul>ul>li:hover {
    border-bottom: 4px solid var(--main-yellow-color);
  }

  .nav .logo {
    z-index: 100000;
  }

  .defcolor .nav .logo img {
    filter: none;
  }

  .menubar {
    display: none;
  }

  .navul {
    display: block;
    /* text-align: right; */
  }

  .nav .navul ul>li>a {
    padding-left: 5px;
    padding-right: 10px;
	 
  }

  .nav .navul {
    position: absolute;
    /* left: 300px; */
    top: 0px;
    width: 100%;
  }

  .nav .navul>ul>li:hover>ul {
    display: block;
  }

  .nav .navul ul>li>ul {
    display: none;
    position: fixed;
    width: 100vw;
    /*top:var(--top-nav-height);*/
    left: 0;
    z-index: auto;
    text-align: left;
  }

  .nav .navul>ul>li>ul {
    padding: 40px !important;
  }

  .nav .navul>ul>li>ul>li>a {
    padding-right: 30px !important;
  }


}

@media (min-width: 1601px) and (max-width: 1919px) {
  .defcolor {
    /* color: #000;
    background-color: #fff; */
        color: #fff;
    background: var(--linear-bg);
  }

  .defcolor .nav .navul>ul>li>a {
    color: #fff;
  }

  .defcolor .nav .navul>ul>li:hover {
    border-bottom: 4px solid var(--main-yellow-color);
  }

  .nav .logo {
    z-index: 100000;
  }

  .defcolor .nav .logo img {
    filter: none;
  }

  .menubar {
    display: none;
  }

  .navul {
    display: block;
    /* text-align: right; */
  }

  .nav .navul ul>li>a {
    padding-left: 10px;
    padding-right: 5px;
  }

  .nav .navul {
    position: absolute;
    /* left: 270px; */
    top: 0px;
    width: 100%;
  }

  .nav .navul ul>li>ul {
    display: none;
    position: fixed;
    width: 100vw;
    /*top:var(--top-nav-height);*/
    left: 0;
    z-index: auto;
    text-align: left;
  }

  .nav .navul>ul>li:hover>ul {
    display: block;
  }

  .nav .navul>ul>li>ul {
    padding: 30px 80px !important;
  }

  .nav .navul>ul>li>ul>li>a {
    padding-right: 20px !important;
  }
}

@media (min-width: 1280px) and (max-width: 1601px) {
  .defcolor {
     color: #fff;
    background: var(--linear-bg);
  }

  .defcolor .nav .navul>ul>li>a {
    color: #fff;
  }

  .defcolor .nav .navul>ul>li:hover {
    border-bottom: 4px solid var(--main-yellow-color);
  }

  .nav .logo {
    z-index: 100000;
  }

  .defcolor .nav .logo img {
    filter: none;
  }

  .menubar {
    display: none;
  }

  .navul {
    display: block;
    /* text-align: right; */
  }

  .nav .navul ul>li>a {
    padding-left: 8px;
    padding-right: 8px;
  }

  .nav .navul>ul>li:hover>ul {
    display: block;
  }

  .nav .navul {
    position: absolute;
    /* left: 260px; */
    top: 0px;
    width: 100%;
  }

  .nav .navul>ul>li>ul {
    display: none;
    position: fixed;
    width: 100vw;
    /*top:var(--top-nav-height);*/
    left: 0;
    z-index: auto;
    text-align: left;
  }

  .nav .navul>ul>li:hover>ul {
    display: block;
  }

  .nav .navul>ul>li>ul {
    padding: 30px 80px !important;
  }

  .nav .navul>ul>li>ul>li>a {
    padding-right: 30px !important;
  }

}

@media (min-width: 993px) and (max-width: 1279px) {
  .defcolor {
    color: #000;
    background-color: #fff;
  }

  .defcolor .nav .navul>ul>li>a {
    color: var(--black-color) !important;
  }

  .defcolor .nav .navul>ul>li:hover {
    border-bottom: 4px solid var(--main-yellow-color);
  }

  .nav .logo {
    z-index: 100000;
  }

  .defcolor .nav .logo img {
    filter: none;
  }

  .menubar {
    display: block;
  }

  .heada {
    display: none;
    /* text-align: right; */
  }

  .nav .navul ul>li>a {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 16px;
    color: var(--black-color) !important;
  }

  .nav .navul ul li>.menu-drop-icon {
    color: #000;
  }

  .nav .navul {
    position: absolute;
    left: 0px;
    /*top:var(--top-nav-height);*/
    width: 100vw;
    background-color: var(--gray-color);
    z-index: 100;
    text-align: left;
  }

  .nav .navul>ul>li>ul {
    display: none;
    position: absolute;
    width: 100vw;
    top: var(--top-nav-height);
    left: 0;
    z-index: auto;
  }

  .nav .navul>ul>li>ul {
    padding: 30px 80px !important;
  }

  .nav .navul>ul>li>ul>li>a {
    padding-right: 20px !important;
  }
}

@media (min-width: 993px) {
  .heada {
    height: var(--top-nav-height);
  }

  .nav {
    width: var(--right-width);
  }

  .nav .logo {
    width: 260px;
    position: absolute;
  }

  .nav .logo img {
    width: 220px;
    margin-left: 15px;
  }

  .nav .navright {
    width: 160px;
  }

  .nav .navright a i {
    margin-right: 5px;
    font-size: 12px;
  }

  .nav .navul>ul>li {
    height: var(--top-nav-height);
  }

  .nav .navul ul li .menu-drop-icon {
    width: 30px;
    height: 30px;
    cursor: pointer;
  }

  .nav .navul ul>li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav .navul>ul>li>.menu-drop-icon {
    position: relative !important;
    height: 30px !important;
    line-height: 30px !important;
  }

  .nav .navul>ul>li>ul .menu-drop-icon {
    top: 5px !important;
    color: #000;
  }

  .nav .navul ul>li>ul>li {
    display: block;
    width: 32%;
    float: left;
    margin-right: 1%;
  }

  .nav .navul ul>li>ul>li>ul {
    left: 0;
    padding: 0px;
    margin: 0px;
  }

  .nav .navul>ul>li:hover {
    border-bottom: 8px solid var(--main-yellow-color);
  }

/*------------s-menu-nomal begin-----------*/
ul.navsmenu  > li .menu-drop-icon{
  transform: rotate(-90deg);
}
/*s-menu-nomal second layer*/
ul.navsmenu {
   position: relative;
   width:100%;
   /* max-height:580px; */
}
ul.navsmenu > li{
  float: none !important;
}
.navul>ul>li:nth-child(1) ul.navsmenu{
  height:400px;
}
.navul>ul>li:nth-child(2) ul.navsmenu{
  height:590px;
}
.navul>ul>li:nth-child(4) ul.navsmenu{
  height:560px;
}
/*s-menu-nomal third layer*/
ul.navsmenu  > li > ul{
  position: fixed  !important;
  left:33% !important;
  z-index: 1000;
  width:33% !important;
  padding-left:20px !important;
  height:480px;
  margin-left:30px;
  overflow-y: auto;
}

ul.navsmenu  > li > ul > li{
  padding:5px 0px;
  font-weight:bold;
}
ul.navsmenu > li > ul{
  display: none;
} 
 ul.navsmenu > li:nth-child(1):not(:has(~ li:hover)) > ul {
  display: block;
} 
ul.navsmenu > li:hover > ul{
  display: block;
}
ul.navsmenu li:hover > span.menu-drop-icon{
  color:var(--main-color);
}
ul.navsmenu  > li:hover > a{
  color:var(--main-color);
}
/*s-menu-nomal four layer*/
ul.navsmenu  > li > ul > li > ul {
  position: fixed !important;
  left:66% !important;
  z-index: 1000;
  width:33% !important;
  padding-left:20px !important;
  height:480px;
  overflow-y: auto;
}

ul.navsmenu  > li > ul > li > ul{
  display: none;
} 
ul.navsmenu  > li > ul > li:nth-child(1):not(:has(~ li:hover)) > ul {
  display: block;
}
ul.navsmenu  > li > ul > li:hover > ul{
  display: block;
}

ul.navsmenu  > li > ul > li:hover > ul{
  top:0px;
  display: block !important;
}
ul.navsmenu  > li > ul > li:hover > a{
  color:var(--main-color);
}
ul.navsmenu  > li > ul > li > ul > li{
  font-weight:bold;
}
/*------------s-menu-nomal end---------*/

}

@media (max-width: 992px) {
  .heada {
    height: var(--top-nav-height);
    
  }
  .nav {
    width: 100vw;
  }

  .nav .logo {
    width: 240px;
  }

  .heada .nav .logo img {
    width: 200px;
    margin-left: 5px;
    filter: none;
  }

  .defcolor,
  .heada,
  .ther-t-headerbg {
    color: #000 !important;
    background-color: #fff !important;
  }
  .defcolor .nav .navul>ul>li>a,
  .heada .nav .navul>ul>li>a {
    color: #000 !important;
  }
  .ther-t-headerbg .ther-t-logo img{
filter: none;
  }


  .left-area {
    width: 15vw;
    flex-wrap: nowrap;
  }

  .logo-left-area {
    font-size: 30px;
  }

  .logo-left-area img {
    width: 60px;
    height: 60px;
  }

  .nav .navright {
    width: 140px;
  }

  .nav .navright .font {
    display: none;
  }


  /* .menubar {
    display: block;
  } */

  .heada {
    display: none;
  }

  .nav .navul {
    position: fixed;
    left: 0px;
    top: 109px;
    width: 100vw;
    z-index: 100;
    background-color: var(--light-gray-color);
    height: 400px;
    overflow-y: auto;
  }

  .navul ul li {
    width: 100% !important;
    display: block !important;
    position: relative;
  }

  .nav .navul>ul>li>a {
    padding-left: 10px;
    padding-right: 10px;
    color: #000;
  }

  .nav .navul ul li .menu-drop-icon {
    width: 40px;
    height: 32px;
    cursor: pointer;
    top: 5px;
    color: #000;
  }

  .nav .navul ul li ul {
    display: none;
    position: relative;
    width: 100%;
  }

  .nav .navul ul>li>ul>li {
    display: block;
    width: 100%; 
  }

  .nav .navul>ul>li>ul {
    padding: 0px 20px 20px 20px !important;
  }
  /*------------s-menu-nomal begin-----------*/
/* ul.navsmenu  > li .menu-drop-icon{
  transform: rotate(-90deg);
} */
/*s-menu-nomal second layer*/
ul.navsmenu {
   position: relative;
   width:100%;
   max-height:350px;
}
ul.navsmenu > li{
  float: none !important;

}
/*s-menu-nomal third layer*/
ul.navsmenu  > li > ul{
  position: relative  !important;
 width:100%;
  max-height:300px;
  margin-left:30px;
  overflow-y: auto;
}

ul.navsmenu  > li > ul > li{
  padding:5px 0px;
  font-weight:bold;
}
/* ul.navsmenu  > li:hover > ul{
  display: block !important;
} */
/*s-menu-nomal four layer*/
ul.navsmenu  > li > ul > li > ul {
  position: relative !important;
  width:100%;
  max-height:300px !important;
  overflow-y: auto;
}
/* ul.navsmenu  > li > ul > li:hover > ul{
  top:0px;
  display: block !important;
} */
ul.navsmenu  > li > ul > li > ul > li{
  font-weight:bold;
  padding:5px 10px !important;
}
/*------------s-menu-nomal end---------*/
}

@media (max-width: 768px) {
  .nav .navul>ul>li>.mobilenav {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 10;
    position: absolute;
  }
}

.heada ::-webkit-scrollbar {
  width: 5px;
}

.heada ::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 5px;
}

.heada ::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.heada ::-webkit-scrollbar-track {
  background-color: #eee;
}

.searchboxbg {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 10000;
  display: none;
  justify-content: center;
}

.searchbox {
  text-align: center;
  color: #fff;
  position: relative;
}

.searchboxbgtop {
  /* position: absolute;
  right: 100px;
  top: 10px; */
  z-index: 99;
}

.search-label{
	text-align: center;
	color:#fff;
	padding:15px;
}

.searchboxbg.hidenvisible {
  display: flex;
  /* Default state is hidden */
  animation: slideup 0.5s ease-out forwards;
}

.searchboxbg.visible {
  display: flex;
  /* Visible when the 'visible' class is added */
  animation: slideDown 0.5s ease-out forwards;
}


@keyframes slideDown {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideup {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

@media (min-width: 1920px) {
  .searchboxbgtop {
    width: 40%;
  }
}

@media (min-width: 1601px) and (max-width: 1919px) {
  .searchboxbgtop {
    width: 70%;
  }
}

@media (min-width: 1280px) and (max-width: 1601px) {
  .searchboxbgtop {
    width: 70%;
  }
}

@media (min-width: 993px) and (max-width: 1279px) {
  .searchboxbgtop {
    width: 60%;
  }
}

@media (max-width: 992px) {
  .searchboxbgtop {
    width: 90%;
  }
}

.searchboxbgtop .closesearch {
  position: absolute;
  top: 10px;
  right:10px;
  color: #fff;
  font-size: 15px;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  z-index: 200;
  background-color: var(--main-color);
}

.searchboxbgtop .closesearch:hover {
  background-color: var(--main-yellow-color);
  color: var(--black-color);
  cursor: pointer;
}

.searchboxbgtop.sdefcolor {
  background-color: rgba(0, 0, 0, 0.8);
}

.serchinpbox {
  width: 100%;
  border-radius: 20px;
  position: relative;
  font-size: 16px;
  margin-bottom: 10px;
  /* border: 1px solid var(--main-yellow-color); */
  /* border-radius: 25px; */
  /* overflow: hidden; */
  z-index: 1000;
  
}

.serchinpbox .serchinput {
  width: 100%;
  border-radius: 20px;
  padding: 0px 15px;
  height: 50px;
  border: 0px;
  outline: none;
  color: var(--black-color);
  background-color: rgba(0, 0, 0, 0);
}
.serchinpbox select,.serchinpbox input{
  font-family:var(--font-mon-ligt);
}

.searchboxbgtop .searchwidth {
  width: 100%;
  border-radius: 25px;
  position: relative;
  font-size: 16px;
  margin-bottom: 10px;
  background-color: #fff;
  /* background-image: linear-gradient(to bottom, #042943, #14688d); */
}

.serchinpbox select {
  /*background-color:var(--main-yellow-color);*/
  /* background-color: rgba(0, 0, 0, 0);
  color: var(--white-color); */
  position: absolute;
  top: 0px;
  left: 0px;
  height: 50px;
  padding: 0px 15px;
  border: 0px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  width: 140px;
  z-index: 100;
}

.serchinpbox select option {
  font-weight: bold;
  color: #000;
}

.searchboxbgtop #btn_productsearch,
.serchinpbox #btn_productsearch2 {
  position: absolute;
  height: 50px;
  width: 50px;
  line-height: 50px;
  font-size: 24px;
  text-align: center;
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 100;
  display: inline-block;
  background-color:var(--main-yellow-color);
  color: var(--white-color);

  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;

}

.searchboxbgtop #btn_productsearch:hover,
.serchinpbox #btn_productsearch2:hover {
  background-color:var(--main-color);
  color: #fff;
}



@media (min-width: 993px) {
  .searchbox {
    width: 50%;
  }

  .searchboxbg {
    align-items: center;
  }

}

@media (max-width: 993px) {
  .searchbox {
    width: 90%;
  }

  .searchboxbg {
    align-items: flex-start;
  }
}

.selectItems,
.selectItems2 {
  position: absolute;
  top: 0px;
  left: 0;
  background-color: var(--main-color);
  background-image: linear-gradient(to bottom, #042943, #14688d);
  width: 100%;
  text-align: center;
  padding: 65px 10px 15px 10px;
  z-index: 130;
  border-radius: 25px;
}

.selectItems ul,
.selectItems2 ul {
  list-style: none;
  font-size: 1em;
  padding: 0px;
  margin: 0px
}

.selectItems ul li,
.selectItems2 ul li {
  line-height: 1.4em;
  color: #fff;
  cursor: pointer;
  text-align: left;
  padding-left: 12px;
  margin-bottom: 10px
}

.selectItems ul li:hover,
.selectItems2 ul li:hover {
  color: #f60
}

.selectItems ul li.curr,
.selectItems2 ul li.curr {
  color: #f60;
  background-color: #efefef
}

@media (min-width: 993px) {
  .searchbox {
    width: 50%;
  }

  .searchboxbg {
    align-items: center;
  }

}

@media (max-width: 993px) {
  .searchbox {
    width: 90%;
  }

  .searchboxbg {
    align-items: center;
  }
}

.expo {
  height: var(--top-nav-height);
  display: flex;
  position: relative;
  z-index: -1;
}

.expo-ad {
  background-color: var(--main-yellow-color);
  height: var(--top-nav-height);
  width: 100%;
}

.expo-ad img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.expo .expo-close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer
}

.expo .expo-close:hover {
  color: #fff;
  background-color: var(--main-color);
}

@media (min-width:769px) {
  .source-img-box {
    display: block;
    width: 90%;
    margin: auto;
    height: var(--top-nav-height);
    background-image: url(https://www.cblcdn.com/_noindex/ad_exhibition/upcoming-events-pic-1.png);
    background: -webkit-image-set(url(https://www.cblcdn.com/_noindex/ad_exhibition/upcoming-events-pic-1.webp) 1x, url(https://www.cblcdn.com/_noindex/ad_exhibition/upcoming-events-pic-1.webp) 2x);
    background: image-set(url(https://www.cblcdn.com/_noindex/ad_exhibition/upcoming-events-pic-1.webp) 1x, url(https://www.cblcdn.com/_noindex/ad_exhibition/upcoming-events-pic-1.webp) 2x);
    background: url("https://www.cblcdn.com/_noindex/ad_exhibition/upcoming-events-pic-1.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    overflow: hidden;
  }
}

@media (max-width:768px) {
  .source-img-box {
    display: block;
    width: 90%;
    margin: auto;
    height: var(--top-nav-height);
    background-image: url(https://www.cblcdn.com/_noindex/ad_exhibition/upcoming-events-pic-2.webp);
    background: -webkit-image-set(url(https://www.cblcdn.com/_noindex/ad_exhibition/upcoming-events-pic-2.webp) 3x);
    background: image-set(url(https://www.cblcdn.com/_noindex/ad_exhibition/upcoming-events-pic-2.webp) 3x);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    overflow: hidden;
  }
}

/*=================haed nav end==================*/

/* footer begin*/

    /* Top Navigation Sections */
    .footerbg{
       background-color:var(--gray-g-color);
    }


    .ther-footer {
      background: #2EC4B6;
      color: #fff;
      padding: 30px 20px;
    }
    
    .ther-footer-container {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }
    
    .ther-footer-item {
      flex: 1 1 300px;
      margin-bottom: 20px;
      padding: 0 10px;
      display: flex;
    }
    
    .ther-footer-icon {
      width: 100px;
      height: 100%;
      background-size: contain;
      display: inline-block;
      vertical-align: middle;
      margin-right: 10px;
      text-align: center;
    }
    .ther-footer-icon img{
      width: 60px;
      height: 60px;
      display: block;
      margin:0 auto 10px auto;
    }
    
    .ther-footer-title {
      font-size: 18px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
    }
    
    .ther-footer-info {
      font-size: 14px;
      line-height: 1.8;
    }
    .ther-footer-info a{
      color:#fff;
    }
    .ther-footer-info a:hover{
      color:var(--main-yellow-color);
    }
    
    @media (max-width: 480px) {
      .ther-footer-item {
          flex: 1 1 100%;
      }
    }


    .ther-top-sections {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-bottom: 40px;
  }

  .ther-section {
      flex: 1 1 200px;
      margin-right: 20px;
      margin-bottom: 20px;
  }
  .ther-section:nth-child(3){
    flex: 1 1 600px;
  }
   .ther-section:nth-child(3) ul {
    display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
  }
  .ther-section:nth-child(3) ul li{
    flex: 1 1 300px;
  }

  .ther-section h3 {
      color: #333;
      font-size: 18px;
      margin-bottom: 10px;
      padding-bottom: 8px;
      display: inline-block;
      font-family: var(--font-bold);
      position: relative;
      padding-bottom:10px;
  }
  .ther-section h3::after{
   content: "";
   width:50px;
   height:4px;
   position: absolute;
   bottom:0px;
   left:0px;
   background-color: var(--main-color);
  }

  .ther-section ul {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .ther-section li {
      margin-bottom: 8px;
  }

  .ther-section a {
      color: #666;
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .ther-section a:hover {
      color: var(--main-color);
  }

  /* Middle Navigation Links */
  /* .ther-middle-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      border-top: 1px solid #ddd;
      border-bottom: 1px solid #ddd;
      padding: 15px 0;
      margin-bottom: 30px;
  }

  .ther-middle-links a {
      color: #666;
      text-decoration: none;
      margin: 0 15px;
      transition: color 0.3s ease;
  }

  .ther-middle-links a:hover,
  .ther-middle-links a.ther-active {
      color: var(--main-color);
  } */

  /* Footer Bottom */
  .ther-footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
  }

  .ther-logo-social {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
  }
  .ther-logo-social img{
    width:300px;
  }

  .ther-logo {
      margin-bottom: 20px;
  }

  .ther-social-icons {
      display: flex;
  }

  .ther-social-icon {
      display: inline-block;
      width: 40px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      border-radius: 50%;
      background-color: #333;
      color: #fff;
      margin-right: 10px;
      text-decoration: none;
      transition: background-color 0.3s ease;
  }

  .ther-social-icon:hover {
      background-color: var(--main-color);
      color:#fff;
  }

  .ther-certification {
      display: flex;
      align-items: center;
  }

  .ther-certification img {
      max-width: 200px;
  }

  .ther-copyright {
      width: 100%;
      text-align: center;
      margin-top: 30px;
      padding: 20px 0px 60px 0px ;
      border-top: 1px solid #ddd;
      color: #fff;
      background: var(--linear-bg);
  }

  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
      .ther-top-sections {
          flex-direction: column;
      }

      .ther-section {
          margin-right: 0;
      }

      .ther-middle-links {
          flex-direction: column;
          align-items: flex-start;
      }

      .ther-middle-links a {
          margin: 5px 0;
      }

      .ther-footer-bottom {
          flex-direction: column;
          align-items: center;
      }

      .ther-logo-social {
          align-items: center;
          margin-bottom: 20px;
      }

      .ther-certification {
          flex-direction: column;
      }

      .ther-certification img {
          margin-left: 0;
          margin-top: 10px;
      }
  }

  @media (min-width: 769px) and (max-width: 1024px) {
      .ther-top-sections {
          flex-wrap: wrap;
      }

      .ther-section {
          flex: 1 1 30%;
      }
  }
/* footer end*/

.secbanner {
    background-color: var(--main-color);
    height: 160px;
    background-size: cover;
    background-position: center;
}
.sectoptitcon{
  background-color: var(--main-color);
  color:#fff;
  padding:30px 0px;
  text-align: center;
  position: relative;
  background-position: center bottom ;
  background-image:url("../picture/secondbg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.sectoptitcon h1{
  font-size:36px;
  line-height:40px;
  /* line-height:1.3rem; */
  margin-top:20px;
}
/*--------------Breadcrumb navigation begin--------------*/
.pathbg {
  background-color: #fdfdfd;
  padding-top: 10px;
}

.bread-crumb {
  position: relative;
  font-size: 12px;
  margin:auto auto 10px auto;
  padding: 0px;
}

.bread-crumb li {
  position: relative;
  display: inline-block;
  margin-right: 30px;
  color: #fff;
  line-height: 28px;
}

.bread-crumb li:last-child {
  margin-right: 0;
}

.bread-crumb li:after {
  content: '/';
  position: absolute;
  font-size: 12px !important;
  right: -22px;
  width: 10px;
  line-height: 22px;
  color: #fff;
  top: 4px;
}

.bread-crumb li:last-child:after {
  display: none;
}

.bread-crumb li a {
  color: #fff;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  text-decoration: none;
  height: 28px;
  display: inline-block;
}

.bread-crumb li a:hover {
  color: var(--main-yellow-color);
}

.pathbg .nhp_container {
  padding: 0px 20px;
}

/*--------------Breadcrumb navigation end--------------*/
.p_bgcolor {
  background-color: #f2f2f2;
  padding-top: 20px;
  padding-bottom: 10px;
  position: relative;
}