@import url('https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,600,700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,900&display=swap');

/* -- :: Root */
:root {
  --thBlue          : #38adb1;
  --thBlue2         : #031c8e;
  --HEXCOLOR        : #0078FF;
  --thYellow        : #ff8400;
  --thYellow2       : #ff8400;
  --thGreen         : #69e781;
  --thRed           : #ff4546;
  --thRed2          : #e00001;
  --thBlack         : #161c2d;
  --thGray          : #000000;
  --thGray2         : #444444;
  --thWhite2        : #e3e9ed;
  --thWhite3        : #a5b8c5;
}

/* --------------------------------- */

/* -- :: Default Elements Properties */
body {
  position: relative;
  overflow-x: hidden;
  left: 0;
  margin-top: 70px;
  -webkit-transition: left 1s cubic-bezier(0.23, 1, 0.320, 1);
  transition: left 1s cubic-bezier(0.23, 1, 0.320, 1);
  font-size: 1em;

}
@media (max-width: 767.98px) {
	body {font-size: 0.92em;  }
}
body::after {
  position: fixed;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, .5);
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
body.navbar-activated::after {
  visibility: visible;
  opacity: 1;
}

h1, h2, h3, h4, p, a, li, span, div {
  /* font-family: 'Segoe UI', sans-serif !important; */
  font-family: 'Poppins', sans-serif !important;
  font-display: swap;
}

p {
  font-size: 1em;
  line-height: 1.9; 
}

button {
  outline: none !important;
  cursor: pointer;
}

a {
  text-decoration: none !important;
  color: #004941;
}
/* --------------------------------- */

/* -- :: Selection */
::-moz-selection {
  background: rgba(249, 184, 81, 0.9);
  color: var(--thBlack);
}

::selection {
  background: rgba(249, 184, 81, 0.9);
  color: var(--thBlack);
}
/* --------------------------------- */

/* -- :: Custom */
.py-80 {
  padding: 40px 0;
}
.py-80-40 {
  padding: 80px 0 40px;
}

.bg-2 {
  background: #f0f8fb;
}

.child-mr-1 > * {
  margin-right: 15px;
}
.child-mr-2 > * {
  margin-right: 30px;
}
.child-mb-1 > * {
  margin-bottom: 15px;
}
.child-mb-2 > * {
  margin-bottom: 30px;
}
.child-mb-6 > * {
  margin-bottom: 90px;
}

.th-btn {
  display: -webkit-inline-box;
  display: inline-block;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  white-space: nowrap;
  outline: none;
  font-size: 1.15em;
  font-weight: 500;
  border-radius: 4px;
  padding: 12px 30px;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.th-btn:focus {border: 3px solid #000}
.th-btn.th-btn-lg {
  font-size: 14px;
  padding: 12px 36px;
}
.th-btn.th-btn-sm {
  padding: 10px 18px;
}

.th-btn-fill-primary {
  background: var(--thBlue);
  color: #fff !important;
  border: 1px solid var(--thBlue);
  /* box-shadow: 0 10px 15px 0 rgba(47,85,212,.3); */
}
.th-btn-fill-primary:hover {
  background: var(--thBlue2);
  border-color: var(--thBlue2);
}

.th-btn-outline-primary {
  color: var(--thBlue);
  border: 1px solid var(--thBlue);
  background: transparent;
}
.th-btn-outline-primary:hover {
  color: #fff;
  border: 1px solid var(--thBlue);
  background: var(--thBlue);
}

.th-btn-fill-warning {
  background: var(--thYellow);
  color: #fff !important;
  border: 1px solid transparent;
}
.th-btn-fill-warning:hover {
  background: var(--thYellow2);
  border-color: var(--thYellow2);
}

.th-btn-outline-warning {
  color: var(--thYellow);
  border: 1px solid var(--thYellow);
  background: transparent;
}
.th-btn-outline-warning:hover {
  color: #fff;
  border: 1px solid var(--thYellow);
  background: var(--thYellow);
}

.th-btn-fill-light {
  background: var(--thWhite2);
  color: var(--thBlack) !important;
  border: 1px solid var(--thWhite3);
}
.th-btn-fill-light:hover {
  background: var(--thWhite3);
}
.th-btn-outline-light {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.th-btn-outline-light:hover {
  color: var(--thBlack);
  border: 1px solid #fff;
  background: #fff;
}

.has-sm-shadow {
  box-shadow: 0 8px 16px rgba(47, 85, 212, .03);
}

/* -- :: Section Head */
.section-head {
  margin-bottom: 25px;
  text-align: center;
}
.section-head h5 {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--thYellow);
}
.section-head h2 {
  position: relative;
  display: inline-block;
  font-size: 3rem;
  font-weight: bold;
  line-height: 52px !important;
  color: var(--thBlack);
}

.section-head p {
  font-size: 15px;
  font-weight: 400;
  color: var(--thGray);
  max-width: 760px;
  line-height: 2 !important;
}

/* -- :: Features Box */
.fe-box img {
  height: 70px;
  min-height: 70px;
}
.fe-box .t-c h4 {
  position: relative;
  font-size: 20px;
  color: var(--thBlack);
  font-weight: 700;
}
.fe-box .t-c h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -25px;
  height: 3px;
  width: 60px;
  border-radius: 5px;
  background: var(--thYellow);
}
.fe-box .t-c p {
  margin: 0 auto;
  font-size: 1em;
  line-height: 1.9;
  color: var(--thGray);
  font-weight: 400;
}

/* -- :: Features Row */
.features-row {
  background: #38adb1;

}
.features-row .item {
  position: relative;
}
.features-row .item img {
  width: 50px;
}
.features-row .item h5 {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
}
.features-row .item p {
  color: var(--thWhite3);
  font-size: 1em;
  font-weight: 400;
}

/* -- :: Money Back Section */
.m-b .contain {
  -webkit-box-pack: space-evenly;
          justify-content: space-evenly;
}

.m-b .contain img {
  width: 170px;
}

.m-b .contain .t-c h3 {
  font-size: 32px;
  font-weight: bold;
  color: var(--typeColor)
}

.m-b .contain .t-c p {
  font-size: 1em;
  width: 80%;
  color: var(--typeColor);
  opacity: .8;
}

/* -- :: FAQ Section */
.faq .row > div:last-child {
  margin-bottom: 0 !important;
}
.faq .item {
  background: #fff;
  padding: 40px 30px;
  border-radius: 4px;
  border: 1px solid var(--thWhite2);
}
.faq .item h5 {
  font-size: 16px;
  font-weight: bold;
  color: var(--thBlack);
  line-height: 1.6;
}
.faq .item p {

  color: var(--thGray);
}
.faq .item a {
  color: var(--thBlue);
  -webkit-transition: color .25s ease-in-out;
  transition: color .25s ease-in-out;
}
.faq .item a:hover {
  color: var(--thBlue2);
}

/* -- :: Navbar */
nav.th-nav-st1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 28px rgba(93,93,102,.1);
  z-index: 999;
}
/* brand */
nav.th-nav-st1 a.brand  {
  height: 100px;	
}
nav.th-nav-st1 a.brand img {
  height: 90px;
  margin: 10px 0px;

}
@media (max-width: 991.98px) {
nav.th-nav-st1 a.brand img {
  height:69px;
}	

	
	}
/* links */
ul.nav-links {margin-top: 40px;}
nav.th-nav-st1 ul.nav-links li.th-nav-item:not(:last-child) {
  margin-right: 15px;
}
@media (max-width: 1366px) {
nav.th-nav-st1 ul.nav-links li.th-nav-item:not(:last-child) {
  margin-right: 25px;
}	
}
nav.th-nav-st1 ul.nav-links li.th-nav-item > a {
  height: 50px;
  color: var(--thBlack);
  font-size: 1.0em;
  font-weight: 500;
  line-height: 16px;
}
@media (max-width: 1366px) {
	nav.th-nav-st1 ul.nav-links li.th-nav-item > a {

  font-size: 0.9em;

}
}
@media (max-width: 1200px) {
	nav.th-nav-st1 ul.nav-links li.th-nav-item > a {

  font-size: 0.8em;

}
}
nav.th-nav-st1 ul.nav-links li.th-nav-item:not(.user-item) > a::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0px;
  height: 4px;
  border-radius: 50px;
  width: 0;
  background: var(--thBlue);
  -webkit-transition: width .25s ease;
  transition: width .25s ease;
	margin-bottom: -5px;
}
nav.th-nav-st1 ul.nav-links li.th-nav-item:not(.user-item):hover > a::before {
  width: 50%;
}
nav.th-nav-st1 ul.nav-links li.th-nav-item.user-item > a {
  border: 1px solid var(--thBlue);
  background: var(--thBlue);
  padding: 7px 15px;
  height: auto;
  border-radius: 4px;
  color: #fff;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
nav.th-nav-st1 ul.nav-links li.th-nav-item.user-item > a:hover {
  background: var(--thBlue2);
  color: #fff;
  border-color: var(--thBlue2);
}
/* nav item has dropdown */
nav.th-nav-st1 li.th-nav-item.has-dropdown > a::after {
  position: relative;
  content: "\f107";
  display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 1px;
}
nav.th-nav-st1 li.th-nav-item.has-dropdown ul.th-dropdown-list {
  display: none;
  position: absolute;
  left: 0;
  background: #fff;
  min-width: 300px;
  padding: 15px;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .04);
  z-index: 9;
}
nav.th-nav-st1 ul.th-dropdown-list li.th-dropdown-item a {
  color: var(--thBlack);
  font-size: 15px;
  font-weight: 500;
  padding: 15px 17px;
  border-radius: 4px;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all .25s ease-in;
  transition: all .25s ease-in;
}
nav.th-nav-st1 ul.th-dropdown-list li.th-dropdown-item a:hover {
  color: #fff;
}
nav.th-nav-st1 ul.th-dropdown-list li.th-dropdown-item a::before {
  position: absolute;
  content: '';
	top: 10%;
	left: 10%;
	-webkit-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
	padding: 0;
	border-radius: 50%;
	z-index: -1;
	background: var(--thBlue);
	-webkit-transition: padding .05s;
	transition: padding .05s;
}
nav.th-nav-st1 ul.th-dropdown-list li.th-dropdown-item a:hover::before {
  padding: 110%;
	-webkit-transition: padding .25s ease-in;
	transition: padding .25s ease-in;
}
/* toggler */
nav.th-nav-st1 .nav-toggler {
  padding: 0;
  background: transparent;
  min-width: 26px;
  width: 26px;
  height: 26px;
  border: 0;
  color: var(--thBlack);
  cursor: pointer;
}
nav.th-nav-st1 .nav-toggler span {
  height: 2px;
  background: var(--thBlue);
}
nav.th-nav-st1 .nav-toggler span:nth-child(2) {
  margin: 7px 0;
}

/* -- :: Footer */
footer {
  background: #6ec1e4;
}
footer .n-l {
  padding: 50px 0;
  border-bottom: 1px solid var(--thGray2);
}
footer .n-l h2 {
  color: #000;
  font-size: 28px;
  font-weight: 600;
}
footer .n-l form {
  max-width: 720px;
}
footer .n-l form input {
  height: 50px;
  border: 1px solid var(--thWhite2);
  padding: 0 30px;
  outline: none;
  border-radius: 50px 0 0 50px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
footer .n-l form input::-webkit-input-placeholder {
  color: var(--thWhite3);
  font-weight: lighter;
}
footer .n-l form input::-moz-placeholder {
  color: var(--thWhite3);
  font-weight: lighter;
}
footer .n-l form input:-ms-input-placeholder {
  color: var(--thWhite3);
  font-weight: lighter;
}
footer .n-l form input::-ms-input-placeholder {
  color: var(--thWhite3);
  font-weight: lighter;
}
footer .n-l form input::placeholder {
  color: var(--thWhite3);
  font-weight: lighter;
}
footer .n-l form input:focus {
  background: rgba(47, 85, 212, .05);
}
footer .n-l form button {
  min-width: 130px;
  height: 50px;
  border: 1px solid var(--thWhite2);
  border-radius: 0 50px 50px 0;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
footer .n-l form button:hover {

  color: var(--thBlue);
}
footer .links {
  padding: 50px 0;
}
footer .links ul li:not(:last-child) {
  margin-bottom: 5px;
}
footer .links ul li.title {
  color: #000;
  font-size: 1rem;
  font-weight: 600;
}
footer .links ul li a {
  font-size: 0.95rem;
  color: var(--thWhite3);
}
footer .links ul li a:hover {
  color: var(--thYellow);
  text-decoration: underline !important;
}
footer .c-r {
  padding-bottom: 50px;
}
footer .c-r p {
  font-size: 0.95rem;
  color: #000;
}
footer .c-r a {
  color: #00286F;
}
footer .c-r a:hover {
  color: #005E9A;
}
/* --------------------------------- */

/* -- :: Media Query */
@media (max-width: 991.98px) {
  /* -- :: Navbar */
  body.navbar-activated nav.th-nav-st1 ul.nav-links {
    left: 0;
  }
  nav.th-nav-st1 {
    border-bottom: 1px solid var(--thWhite3);
  }
  nav.th-nav-st1 .nav-content {
    height: 69px;
  }
  nav.th-nav-st1 ul.nav-links {
    position: fixed;
    top: 70px;
    bottom: 0;
    padding: 30px 0;
    left: -222px;
    background: #fff;
    border-right: 1px solid var(--thWhite3);
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
  }
  nav.th-nav-st1 ul.nav-links li.th-nav-item:not(:last-child) {
    margin-right: 0;
  }
  nav.th-nav-st1 ul.nav-links li.th-nav-item > a {
    height: auto;
    padding: 10px 20px;
    width: 220px;
    font-size: 14px;
  }
  nav.th-nav-st1 ul.nav-links li.th-nav-item > a:hover {
    color: var(--thYellow);
  }
  nav.th-nav-st1 ul.nav-links li.th-nav-item:not(.user-item) > a::before {
    display: none;
  }
  nav.th-nav-st1 ul.nav-links li.th-nav-item.user-item > a {
    border: none;
    background: #fff;
    color: var(--thBlack);
    padding: 10px 20px;
    border-radius: 0;
  }
  nav.th-nav-st1 ul.nav-links li.th-nav-item.user-item > a:hover {
    background: transparent;
    color: var(--thYellow);
  }
  nav.th-nav-st1 li.th-nav-item.has-dropdown ul.th-dropdown-list {
    position: relative;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    background: var(--thWhite2);
  }
  nav.th-nav-st1 ul.th-dropdown-list li.th-dropdown-item a {
    font-size: 14px;
  }
  /* -- :: Money Back Section */
  .m-b .contain .t-c p {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  /* -- :: Custom */
  .py-80 {
    padding: 40px 0;
  }
  .py-80-40 {
    padding: 60px 0 20px;
  }

  /* -- :: Section Head */
  .section-head {
    margin-bottom: 25px;
  }
  .section-head h2 {
    font-size: 2.3rem;
    line-height: 2.2rem;
  }
@media (max-width: 479.98px) {
	  .section-head h2 {
    font-size: 1.8rem;
    line-height: 1.8rem;
  }	
	}

  /* -- :: Features Box */
  .fe-box .t-c h4 {
    font-size: 17px;
  }
  .fe-box .t-c h4::after {
    left: 50%;
    bottom: -16px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  /* -- :: Footer */
  footer .n-l h2 {
    font-size: 22px;
  }
  footer .n-l form {
    max-width: 100%;
  }
  footer .n-l form input,
  footer .n-l form button {
    height: 44px;
    font-size: 14px;
    line-height: 22px !important;
  }
  footer .n-l form button {
    min-width: 100px;
  }
}
@media (max-width: 575.98px) {
  /* -- :: Footer */
  footer .n-l form input,
  footer .n-l form button {
    border-radius: 50px;
  }
}

 .skip-link {
     position: relative;
     z-index: 1001;
}
 .skip-link__link {
     display: -moz-inline-stack;
     display: block;
     margin: 0;
     max-height: 0;
     color: #FFF;
     position: absolute;
     top: -5000px;
     left: -5000px;
	 font-size:1.2em;
}
 .skip-link__link:focus {
     max-height: 1920px;
     display: inline-block;
     padding: 15px;
     margin: 5px;
     outline: 3px solid #FFF;
     text-decoration: underline;
     left: 20px;
     top: 20px;
     background-color: #eb6100;
	 font-size:1.2em;
}
 #skiptargetholder {
     display: block;
     margin: 0 auto;
     max-height: 0;
}
 #skiptargetholder #skiptarget {
     display: -moz-inline-stack;
     display: block;
     margin: 0;
     max-height: 0;
}
@media (max-width: 991.98px) { 
.img-80 {width:80%; height: auto}
.img-60 {width:60%; height: auto}
.img-40 {width:40%; height: auto}
}
.desktop {display: block}
.mobile {display: none}

@media (max-width: 991.98px) {
.desktop {display: none}
.mobile {display: block}
}

.accessibility {height: 0px;width: 0px; display: inline-block; overflow: hidden; margin: 0;padding: 0;font-size: 0; text-indent: -9999px; position: absolute;}

.nav-sub {text-align: right; margin-bottom: -20px; margin-top: 10px}

.search-block {display: inline-block; margin-top: 5px; vertical-align: text-top}
* {
  box-sizing: border-box;
}

/* Style the search field */
form.form-search input[type=text] {
  padding: 3px;
  font-size: 15px;
  border-bottom: 1px solid #38adb1;
  border-top: none;
	border-left: none;
	border-right: none;
  float: left;
  width: 80%;
  background: #fff;
}


/* Style the submit button */
form.form-search button {
  float: left;
  width: 20%;
  padding: 2px;
  background: #fff;
  color: #38adb1;
  font-size: 16px;
  border: none;
  border-left: none; /* Prevent double borders */
  cursor: pointer;
}
@media (max-width: 991.98px) {
form.form-search input[type=text] {width: 150px;}
form.form-search button {width: 45px;}
}

form.form-search button:hover {
  background: #0b7dda;
}

/* Clear floats */
form.form-search::after {
  content: "";
  clear: both;
  display: table;
}

.social-links1 {display: inline-block; vertical-align: text-top; margin-top: 5px}
.social-links1 a {padding: 0 10px;}
a .icon-links {background:url('../../images/icon-menu-links.svg') center center no-repeat; width:20px; height:20px; vertical-align:text-bottom; display:inline-block;}
a:hover .icon-links {background:url('../../images/icon-menu-links-active.svg') center center no-repeat;}
a .icon-contact {background:url('../../images/icon-menu-contact.svg') center center no-repeat; width:20px; height:20px; vertical-align:text-bottom; display:inline-block;}
a:hover .icon-contact {background:url('../../images/icon-menu-contact-active.svg') center center no-repeat;}
a .icon-share {background:url('../../images/icon-menu-share.svg') center center no-repeat; width:20px; height:20px; vertical-align:text-bottom; display:inline-block;}
a:hover .icon-share {background:url('../../images/icon-menu-share-active.svg') center center no-repeat;}

a.fb {background:url('../../images/icon-share-facebook-active.png') center center no-repeat; width:30px; height:30px; display: inline-block; background-size: contain;}
a.fb:hover {background:url('../../images/icon-share-facebook.png') center center no-repeat; background-size: contain;}
a.twitter {background:url('../../images/icon-share-twitter-active.png') center center no-repeat; width:30px; height:30px; display: inline-block; background-size: contain;}
a.twitter:hover {background:url('../../images/icon-share-twitter.png') center center no-repeat; background-size: contain;}
a.weibo {background:url('../../images/icon-share-weibo-active.png') center center no-repeat; width:30px; height:30px; display: inline-block; background-size: contain;}
a.weibo:hover {background:url('../../images/icon-share-weibo.png') center center no-repeat; background-size: contain;}



.lang {  display: inline-block; vertical-align: text-top ; margin: 5px 10px 0; }
.lang a{display: inline-block; font-size: 0.90em ; color: #000 }

#fontsize {  display: inline-block; vertical-align: text-top ; margin: 0 10px; }

a.texttoggler{ /*CSS for Text Size Toggler control*/
	margin-right: 5px; text-align:center;  text-decoration: none; vertical-align: baseline; padding: 0px;  color:#000; 
}
a.texttoggler:visited {color: #0066B0}
a.selectedtoggler{ /*CSS for Selected Text Size Toggler control*/
font-size: 1em;
}

.smallview{ /*CSS for "small font" setting*/
font-size: 0.88em;
}

.normalview{ /*CSS to return page to default setting (with no additional CSS rules added)*/
font-size: 1.00em;

}

.largeview{ /*CSS for "large font" setting*/
font-size: 1.17em;

}

@media (max-width: 991.98px) {
.nav-sub {text-align:left; margin-bottom: 10px; margin-top: 10px}	
.search-block { width: 80%; display: block; margin-top: 5px; margin-left: 5% }
#fontsize { width: 80%; display: block; vertical-align: text-top ; margin: 0 10px; }

}
@media (max-width: 767.98px) {
.search-block { width: 90%; display: block; margin-top: 5px; margin-left: 5% }
}
.share-block {display: none; width: 100px; height: 30px; background: #002962; color: #fff; position: absolute; margin-left: 60px}
.formerror, .msg {color: red}

.headerline {width: 80px; height: 3px; background:  rgba(0,63,115,1); display: inline-block}
.banner {margin-top: 130px; border-top: solid 6px #38adb1; height:400px;  background: rgba(0, 0, 0, 0) url("../../images/banner.jpg") no-repeat center center; background-size:cover}
.banner img {width: 100%}
.block1 {width: 40%; height: 50px; margin-top: -25px; background:rgba(56,173,177,0.7); z-index: 10; position: relative}
@media (max-width: 991.98px) { 
.banner {margin-top: -3px;  }
.block1 {width: 40%; height: 30px; margin-top: -15px; z-index: 10; position: relative}
}
.btn-back {padding: 3px 10px; border-radius: 3px; color: #fff; background: #005753; font-size:0.88rem}
.btn-back img {display: inline-block; width: 20px}
.btn-back:hover { color: #fff; background: #005F6F; }
.idate { width: 100%; padding: 15px; background: #fff; box-shadow: 0 0 10px #b1b1b1; margin-bottom: 12px }
.idate01 { font-size: 18px; font-weight: 700}
.idate02 { font-size: 20px; }
.borderright {border-right: solid 7px #265069}
.borderleft {border-left: solid 7px #e3ba62; text-align: right}



.subheader1 {font-size: 27px; color: #1763cd; margin-top: 5px; text-align: left; line-height: 30px; width: 100%; 
  font-weight: 700;
  font-style: normal;}
.header-line {height: 1px; width: 100%; background-color:#1763cd; display: inline-block; vertical-align: middle}
.subheader2 { font-size: 22px;  color: #099bca; margin-top: 10px; text-align: left; line-height: 30px; display: inline-block; 
  font-weight: 700;
  font-style: normal;}
.subheader3 {font-size: 20px; font-weight: 700; color: #007e7c; text-align: left}

@media (max-width: 580px) {
.subheader1 {font-size: 22px;  text-align: left }
.subheader2 {font-size: 22px;   text-align: left;margin-top: 10px; }	
}
.table01 {width: 100%; min-width: 600px}
.table01 td {padding: 5px; border: solid 1px #009BA3 }
.table02 {width: 100%;}
.table02 td {padding: 3px; border: solid 1px #009BA3 }
.table-prog {width: 100%; }
.table-prog td {padding: 5px; border: solid 1px #000 }
.table-prog td p {margin: 0px; margin-bottom: 10px; line-height: 24px }
.table-prog td.norightborder {border-right: solid 1px #eaedf1 }
.table-prog td.norightborder1 {border-right: solid 1px #e1eeda }
@media (max-width: 580px) {
.table-prog {width: 100%; }
.table-prog td {padding: 1px; }
	.table-prog td p {margin-bottom: 8px; line-height: 16px; font-size: 12px }
}
@media (max-width: 1366px) {
.logo {width: 100%; height:auto}
}
.img100 {width: 100%}
.banner1 {display:block}
.banner2 {display:none}
@media (max-width: 768px) {
.banner1 {display:none}
.banner2 {display:block}
	}

.faculty-box { width: 32%; display:inline-block; vertical-align: text-top; margin-bottom: 15px; margin-right: 1%; text-align: center} 
.faculty-image img {width: 95%; height: auto; border-radius: 10px;  display: inline-block;}


.faculty-name { font-weight: bold; font-size: 20px; margin-top: 10px }
.faculty-title { font-style: italic; line-height: 22px}
.faculty-text { width: 65%; display:inline-block; vertical-align: text-top; } 
@media (max-width: 768px) {
.faculty-box { width: 48%;  margin-right: 1%; } 	
	.faculty-text { width: 100%;  } 
}
@media (max-width: 580px) {
.faculty-image {width: 150px; height: 150px; }
.faculty-image img {width: 150px;height: 150px;}
.faculty-name { font-size: 16px; line-height: 20px }
.faculty-title { font-size:14px; line-height: 16px}
}

.hidelogo{
    position: absolute;
    width: 100%;
    height: 56px;
    background: #fff;

    top: 0px;
    z-index:2;
    display: block;

}
.btn1 { display: inline-block; border: solid 2px #031D4A; padding: 8px 12px; border-radius: 30px; transition: 0.3s; font-weight: bold; color:#031D4A }
.btn1:hover { display: inline-block; border: solid 2px #031D4A; padding: 8px 12px; border-radius: 30px; transition: 0.3s; font-weight: bold; color:#fff; background: #031D4A  }




.btn-book {
  display: inline-block;
  width: 24vw;
	height:7vh;
	padding: 1.4vh 0.6vw;
  border-radius: 50px;
  border: 2px solid #fff;
  font-size: 1.2vw;
	line-height: 2.6vh;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;	
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 1);
	text-align: center;
	background: #ff621d ;
}
.btn-book  .text01 {font-size: 16px; color: #FFFFFF;}
.btn-book  .btn-icon { font-size: 1.8vw;display: inline-block; vertical-align: middle;  margin-right: 3px; color: #FFFFFF;}
.btn-book  .btn-text {display: inline-block; vertical-align: middle; color: #FFFFFF;}

.btn-past {
  display: inline-block;
	padding: 15px;
  border-radius: 50px;
  border: 2px solid #fff;
  font-size: 22px;
	line-height: 24px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;	
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 1);
	text-align: center;
	background: #007396;
}
.btn-past  .text01 {font-size: 16px; color: #FFFFFF;}
.btn-past  .btn-icon {font-size: 32px; display: inline-block; vertical-align: middle;  margin-right: 3px; color: #FFFFFF;}
.btn-past  .btn-text {display: inline-block; vertical-align: middle; color: #FFFFFF;}


.btn-home {display : inline-block; position: absolute; z-index: 100; margin-top: 15%; left: 33%}
@media (max-width:768px) {
.btn-home { margin-top: 42%; left: 5%}	
	
}

@media (max-width: 768px) {
.btn-book   { width: 320px; height:50px; margin-bottom: 5px; padding:10px 5px }
.btn-book  .text01 {font-size: 13px}
.btn-book  { padding: 10px;font-size: 16px; line-height: 18px;}
.btn-book  .btn-icon {font-size: 20px;  margin-right: 2px}
.btn-past   {  margin-bottom: 5px; padding:10px }
.btn-past  .text01 {font-size: 14px}
.btn-past  { padding: 8px 20px 10px 20px;font-size: 20px; line-height: 18px;}
.btn-past  .btn-icon {font-size: 26px;  margin-right: 2px}
}

.btn-book:hover {
  background: #e4b966;
  color: #fff;
  border: 2px solid #fff;
}
.box-award {width: 31%; margin: 10px 1%; padding: 15px; display: inline-block; vertical-align: text-top; background: #ECE6D8; border: solid 1px #286178;  text-align: left}

@media (max-width: 1280px) {.box-award {width: 100%;}   }
.blink {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  0% {
    background: #AD0002;
	  border: #AD0002;
  }  
	50% {
    background: orange;
		 border: orange;
  }
	100% {
    background: #AD0002;
		border: #AD0002;
  }
}

.speaker-item {width: 23.2%; margin: 20px 0.5%; display: inline-block; vertical-align: text-top; text-align: center}
.speaker-item1 {width: 46.4%; margin: 20px 0.5%; display: inline-block; vertical-align: text-top; text-align: center}
.speaker-photo img {width: 100%}
.speaker-name {font-size: 20px; color: #fff; font-weight: bold; margin-top: 10px }
.speaker-name1 {font-size: 20px; color: #0D3D49; font-weight: bold; margin-top: 10px }
.speaker-title {font-size: 16px; color: #fff; font-weight:400; margin-top: 5px}
.speaker-title1 {font-size: 16px; color: #000; font-weight:400; margin-top: 5px}

@media (max-width: 1200px) {
.speaker-item {width: 31.2%; margin: 40px 0.5%;}	
	.speaker-item1 {width: 62.4%; margin: 40px 0.5%;}	
}
@media (max-width: 980px) {
.speaker-item {width: 46.2%; margin: 40px 0.5%;}	
	.speaker-item1 {width: 93.4%; margin: 40px 0.5%;}
}
@media (max-width: 580px) {
.speaker-item {width: 94%; margin: 40px 3%;}	
}

.archive { width: 400px; height: 300px; display: inline-block; margin-right: 15px; margin-top: 10px;}
.archive1 { width: 400px; height: 300px; overflow:hidden; position:absolute; cursor:pointer;}
.archive1 img {width: 100%; height: auto}
.archivetext1 { background-color:#000; opacity: 0.5; width: 100%; height: 45px; color: #FFF; font-size: 36px;  font-weight: bold; line-height: 38px; position:absolute; top: 300px; text-align: center;}
@media (max-width: 480px) {
.archive { width: 90%; height: 300px; margin-right: 5%; }
.archive1 { width: 90%; height: auto; }	
}
.slogo1 {width: auto; height: 250px; margin-right: 20px }
@media (max-width: 580px) {
	.slogo1 {width: auto; height: 180px; margin-right: 10px }
	
}