@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         : #38adb1;
  --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;
	line-height: 1.9;

}
@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 img {
  height: 102px;
  margin: 10px 0px;

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

@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: 18px;
}
@media (max-width: 1688px) {
nav.th-nav-st1 ul.nav-links li.th-nav-item:not(:last-child) {
  margin-right: 13px;
}	
}
@media (max-width: 1366px) {
nav.th-nav-st1 ul.nav-links li.th-nav-item:not(:last-child) {
  margin-right: 7px;
}	
}
nav.th-nav-st1 ul.nav-links li.th-nav-item > a {
  height: 55px;
  color: var(--thBlack);
  font-size: 1em;
  font-weight: 500;
  line-height: 16px;
}
@media (max-width: 1688px) {
	nav.th-nav-st1 ul.nav-links li.th-nav-item > a {

  font-size: 0.9em;

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

  font-size: 0.83em;

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

  font-size: 0.75em;

}
}
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: 200px;
  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: 14px;
  font-weight: 500;
  padding: 7px 15px;
  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 #004AAF}
.borderleft {border-left: solid 7px #5ec9d9; }


.subheader1 {font-size: 27px; font-weight: 700; color: #005878; margin-top: 20px; text-align: left; line-height: 25px; display: inline-block;}
.subheader2 {font-size: 27px; font-weight: 700; color: #099bca; margin-top: 30px; text-align: left; line-height: 30px; display: inline-block}
.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%;}
.table01 td {padding: 5px; border: solid 1px #009BA3 }

@media (max-width: 1366px) {
.logo {width: 100%; height:auto}
}
	
.img100 {width: 100%; height: auto}

/* -- :: Support Blocks :: -- */
.support-blocks {
  position: relative;
  z-index: 2;
  padding: 70px 0 30px;
}
.support-blocks .item {
  display: inline-block;
  box-shadow: 0 4px 8px rgba(3, 27, 78, 0.15) ;
  border-radius: 4px;
  padding-top: 20px;
  border: 1px solid var(--thBorderColor);
  -webkit-transition: box-shadow .3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: box-shadow .3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, box-shadow .3s ease-in-out;
  transition: transform 0.3s ease-in-out, box-shadow .3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background: #fff;
}
/* Image Contain */
.support-blocks .item .img-c {
  box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  margin-top: -45px;
  margin-bottom: 20px;
  background: #11598b;
}
.support-blocks .item .img-c img {
  width: 50px;
}
/* Text Contain */
.support-blocks .t-c {
  padding: 0 30px;
}
.support-blocks .t-c h3 {
  font-size: 30px;
  font-weight: 600;
  color: var(--typeColor);
  margin-bottom: 10px;
}
.support-blocks .t-c p {
  font-size: 18px;
  color: var(--pColor);
  margin-bottom: 25px;
}

.support-blocks .img-c i {
  font-size: 38px;
  color: #fff;

}
/* Item Footer */
.support-blocks .i-f {
  background: #f9fbfc;
  border-radius: 0 0 2px 2px;
}
.support-blocks .i-f p {
  font-size: 16px;
  font-weight: 600;
  color: var(--pColor);
  padding: 10px 0;
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}
.support-blocks .i-f  i {
  font-size: 12px;
}
.support-blocks .item:hover {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(50,50,93,.1), 0 11px 15px rgba(0,0,0,.07);
}
.support-blocks .item:hover .i-f p {
  color: var(--thGreen);
}
/* --------------------------------- */
.banner1 {display: block}
.banner2 {display: none}
@media (max-width: 768px) {
.banner1 {display: none}
.banner2 {display: block}	
}
.br01 {display: none}
.br02 {display: block}
@media(max-width:980px){
.br01 {display: block}
.br02 {display: none}
}
ul.table-list {margin-top: 0px; margin-bottom: 1px }
.table01 p {margin-bottom: 0}

.link1 {width: 100%; padding: 20px; margin-bottom: 10px}
.link1:hover {background: #E2F7FF}
.link1-1 {width: 5%; display: inline-block; margin-right: 1%; vertical-align: middle; margin-bottom: 5px}
.link1-2 {width: 92%; display: inline-block; vertical-align: middle}

.link1-2-1 {font-weight: bold; font-size: 24px; line-height: 28px; margin-bottom: 4px}
.link1-2-2 {line-height: 20px}
@media(max-width:980px){
.link1 {width: 100%; padding: 10px; margin-bottom: 5px}
.link1:hover {background: #E2F7FF}
.link1-1 {width: 10%; display: inline-block; margin-right: 1%; vertical-align: middle; margin-bottom: 5px}
.link1-2 {width: 85%; display: inline-block; vertical-align: middle}

.link1-2-1 {font-weight: bold; font-size: 16px; line-height: 18px}
.link1-2-2 {font-size: 14px; line-height: 16px}	
}
.slogo1 {display:inline-block; width: auto; height: 6.5vw; vertical-align: text-top; margin: 1vw}
.slogo2 {display:inline-block; width: auto; height: 7.8vw; vertical-align: text-top; margin: 0 1vw}
@media(max-width:980px){
.slogo1 { height: 120px; margin: 10px}	
}
@media(max-width:580px){
.slogo1 { height: 100px; margin: 5px}	
}

.btn1 {display: inline-block;padding: 3px 15px; border-radius: 30px; background: #368071; color: #fff; margin-top: 5px }
.btn2 {display: inline-block;padding: 3px 15px; border-radius: 30px; background: #005173; color: #fff;  margin-top: 5px }

.counter .timer-col{
	display:inline-block;
	margin:0 3px;
	text-align:center;
	border-radius:120px;
	text-align: center;
	width: 140px;
	height: 140px;
	border: solid 4px #99C5B0;
	box-shadow: 0 0 15px 3px #3e6b59 ;
}
.timer-col #days, .timer-col #hours, .timer-col #minutes, .timer-col #seconds{
	display: inline-block;
	font-size:52px;
	line-height: 14px;
	font-family: "Audiowide", sans-serif;
  font-weight: 400;
	color: #000;
	padding-top: 53px;


}

.timer-col .timer-type{

	display: inline-block;
	font-size:14px;
    color: #000;
	margin-top:-60px;
	line-height: 8px;


	
}
@media(max-width:991px) {
.counter .timer-col{
	margin:0 1%;
	width: 130px;
	height: 130px;
	border-radius:120px;
}
.timer-col #days, .timer-col #hours, .timer-col #minutes, .timer-col #seconds{
	font-size:50px;
	line-height: 15px;
	padding-top: 45px;
}
}
	@media(max-width:580px) {
.counter .timer-col{
	margin:0 0.5%;
	width: 120px;
	height: 120px;
	border-radius:120px;
}
.timer-col #days, .timer-col #hours, .timer-col #minutes, .timer-col #seconds{
	font-size:46px;
	line-height: 10px;
	padding-top: 45px;
}
.timer-col .timer-type{
	display: inline-block;
	font-size:13px;
	margin-top:-10px;
}
}

	
	.time-color1 { background: #0b9dca}
.time-color2 { background: #e41622}
.time-color3 { background: #1d1d1b}
.time-color4 { background: #fff; border: thin solid #8A8A8A}
.table-left td {text-align: left}
.welcome-photo {box-shadow: 7px 7px 0 #3e5173; max-width: 240px; margin-bottom: 15px } 
	@media(max-width:580px) {
		
	.welcome-photo {max-width: 160px; margin-right: px} 	
}
.box1 {background: #E6FBFF; padding:20px; border-radius: 10px; border: 3px #f4f4f4 solid; margin: 10px 0px}
ul.list01 {}
.btn-orange {background: #FF8600}


