@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap");

:root {
  --color-primary: #316898;
  --color-primary-dark: #204e76;
  --color-primary-light: #4a7eab;
  --color-primary-lighter: #cfd2ff;
  --color-primary-lighter2: #e8e9ff;

  --color-secondary: #04b0ad;
  --color-secondary-dark: #079895;
  --color-secondary-light: #2dcac7;
  --color-secondary-lighter1: #d0f3f3;
  --color-secondary-lighter2: #e7f7f7;

  --color-yellow-medium: #ffd96c;
  --color-yellow-light: #ffefbf;
  --color-orange-medium: #fdad7e;
  --color-green-medium: #8ddc91;
  --color-purple-medium: #9299f3;
  --color-pink-medium: #e1aaea;

  --color-darkgray: #333;
  --color-mediumgray: #666;
  --color-gray: #999;
  --color-lightgray: #ccc;
  --color-lightgray2: #ddd;
  --color-lightgray3: #eee;

  --color-white: #fff;
  --color-black: #000;

  --color-orange: #ff9800;
  --color-orange-dark: #d68309;
  --color-orange-lighter: #f7d6a6;

  --color-success: #3ac93a;
  --color-success-dark: #28a628;
  --color-success-light: #61d861;

  --color-danger: #e75656;
  --color-danger-dark: #df5757;
  --color-danger-light: #eb8181;

  --color-info: #0090d3;
  --color-info-dark: #0484bf;
  --color-info-light: #8dc7e2;
  --color-info-lighter: #a8d3e7;

  
  /*--font-heading: 'Charm', cursive;*/
  --font-spl: 'Charm', cursive;
  --font-icon: FontAwesome;
  --fw-l: 300;
  --fw-n: 400;
  --fw-sb: 500;
  --fw-b: 700;
}

body {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;

  color: #111;
  text-align: center;
  /*font-weight: 500;*/
  background: #f5f5f5;
}

/*text colors*/
.text_primary { color: var(--color-primary); } 
.text_secondary { color: var(--color-secondary); } 
.text_orange { color: var(--color-orange); } 
.text_success { color: var(--color-success); } 
.text_danger { color: var(--color-danger); } 
/************/

.light_yellow {
  background-color: #fff59d !important;
}
.light_blue {
  background-color: #c5cae9 !important;
}
.light_red {
  background-color: #ffccbc !important;
}
.light_cyan {
  background-color: #80deea !important;
}

.bg_light_orange {
  background-color: var(--color-orange-lighter);
}
.bg_light_green {
  background-color: var(--color-green-medium);
}
.bg_light_blue {
  background-color: var(--color-info-lighter);
}

/*.theme_gradient {
	background: rgba(0,146,214,1);
	background: -moz-linear-gradient(top, rgba(0,146,214,1) 0%, rgba(10,121,173,1) 22%, rgba(18,52,107,1) 61%, rgba(0,33,87,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,146,214,1)), color-stop(22%, rgba(10,121,173,1)), color-stop(61%, rgba(18,52,107,1)), color-stop(100%, rgba(0,33,87,1)));
	background: -webkit-linear-gradient(top, rgba(0,146,214,1) 0%, rgba(10,121,173,1) 22%, rgba(18,52,107,1) 61%, rgba(0,33,87,1) 100%);
	background: -o-linear-gradient(top, rgba(0,146,214,1) 0%, rgba(10,121,173,1) 22%, rgba(18,52,107,1) 61%, rgba(0,33,87,1) 100%);
	background: -ms-linear-gradient(top, rgba(0,146,214,1) 0%, rgba(10,121,173,1) 22%, rgba(18,52,107,1) 61%, rgba(0,33,87,1) 100%);
	background: linear-gradient(to bottom, rgba(0,146,214,1) 0%, rgba(10,121,173,1) 22%, rgba(18,52,107,1) 61%, rgba(0,33,87,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0092d6', endColorstr='#002157', GradientType=0 );
}*/

.bg_primary_dark {
  background-color: var(--color-primary-dark);
}
.bg_primary_light {
  background-color: var(--color-primary-light);
}
.bg_primary {
  background-color: var(--color-primary);
}
.bg_secondary {
  background-color: var(--color-secondary);  
}
.bg_secondary_light {
  background-color: var(--color-secondary-light);  
}
.bg_secondary_dark {
  background-color: var(--color-secondary-dark);  
}

.theme_gradient {
  background: rgba(4, 176, 173, 1);
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, rgba(4, 176, 173, 1)),
    color-stop(100%, rgba(6, 117, 113, 1))
  );
  background: -o-linear-gradient(
    top,
    rgba(4, 176, 173, 1) 0%,
    rgba(6, 117, 113, 1) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(4, 176, 173, 1)),
    to(rgba(6, 117, 113, 1))
  );
  background: linear-gradient(
    to bottom,
    rgba(4, 176, 173, 1) 0%,
    rgba(6, 117, 113, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#04b0ad', endColorstr='#067571', GradientType=0 );
}

.grad1 {
  background: rgba(49, 104, 152, 1);
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, rgba(49, 104, 152, 1)),
    color-stop(100%, rgba(2, 41, 78, 1))
  );
  background: -o-linear-gradient(
    top,
    rgba(49, 104, 152, 1) 0%,
    rgba(2, 41, 78, 1) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(49, 104, 152, 1)),
    to(rgba(2, 41, 78, 1))
  );
  background: linear-gradient(
    to bottom,
    rgba(49, 104, 152, 1) 0%,
    rgba(2, 41, 78, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#316898', endColorstr='#02294e', GradientType=0 );
}
.grad2 {
  background: rgba(49, 104, 152, 1);
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, rgba(49, 104, 152, 1)),
    color-stop(100%, rgba(4, 176, 173, 1))
  );
  background: -o-linear-gradient(
    top,
    rgba(49, 104, 152, 1) 0%,
    rgba(4, 176, 173, 1) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(49, 104, 152, 1)),
    to(rgba(4, 176, 173, 1))
  );
  background: linear-gradient(
    to bottom,
    rgba(49, 104, 152, 1) 0%,
    rgba(4, 176, 173, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#316898', endColorstr='#04b0ad', GradientType=0 );
}

a,
a:focus,
a:active {
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: #04b0ad;
}
a:hover {
  color: #067571;
  text-decoration: none;
}
p {
  line-height: 1.5;
  margin-bottom: 20px;
}

.pl0 {
  padding-left: 0;
}
.pr0 {
  padding-right: 0;
}

.pt0 {
  padding-top: 0;
}
.pb0 {
  padding-bottom: 0;
}
.pt10 {
  padding-top: 10px;
}
.pb10 {
  padding-bottom: 10px;
}
.pt20 {
  padding-top: 20px;
}
.pb20 {
  padding-bottom: 20px;
}
.pt30 {
  padding-top: 30px;
}
.pb30 {
  padding-bottom: 30px;
}
.pt40 {
  padding-top: 40px;
}
.pb40 {
  padding-bottom: 40px;
}
.pt50 {
  padding-top: 50px;
}
.pb50 {
  padding-bottom: 50px;
}

.mt0 {
  margin-top: 0;
}
.mb0 {
  margin-bottom: 0;
}
.mt10 {
  margin-top: 10px;
}
.mb10 {
  margin-bottom: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mb20 {
  margin-bottom: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mb30 {
  margin-bottom: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mb40 {
  margin-bottom: 40px;
}
.mt50 {
  margin-top: 50px;
}
.mb50 {
  margin-bottom: 50px;
}

/** Owl Carousel **/

.owl-carousel .item {
  border: 0px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.owl-carousel .item a {
  display: block;
}

.owl-carousel .item a:focus {
  text-decoration: none;
  outline: none;
}

.owl_controls {
  position: absolute;
  width: 30px;
  height: 50px;
  padding: 0;
  border: 0px;
  border-radius: 2px;
  background-color: rgba(0, 0, 0, 0.15);
  color: #fff;
  display: inline-block;
  top: 40%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.owl_controls i {
  font-size: 40px;
  line-height: 32px;
}
.owl_controls.customPrevBtn {
  left: 0px;
}
.owl_controls.customNextBtn {
  right: 0px;
}
.owl_controls:hover,
.owl_controls:focus {
  background-color: rgba(0, 0, 0, 0.25);
  color: #fff;
  outline: none;
}

/***********************/

/*** Button styles ***/

.theme_btn {
  display: inline-block;
  min-width: 120px;
  border-radius: 2px;
  padding: 10px 20px;
  color: #fff;
  font-size: 16px;
  background-color: #333;
  text-align: center;
  text-decoration: none;
  border: 0px;
  outline: none;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.theme_btn.shadow {
  -webkit-box-shadow: 0 1px 4px rgba(45, 45, 45, 0.2);
  box-shadow: 0 1px 4px rgba(45, 45, 45, 0.2);
}

.theme_btn.small_btn {
  padding: 6px 12px;
  font-size: 14px;
}
.theme_btn.large_btn {
  padding: 12px 30px;
  min-width: 120px;
  font-size: 17px;
}

.theme_btn.round_btn {
  border-radius: 25px;
}

.theme_btn.circle_btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  min-width: 0px;
  font-size: 18px;
  line-height: 40px;
  padding: 0;
}

.theme_btn:hover,
.theme_btn:active,
.theme_btn:focus {
  text-decoration: none;
  outline: none;
}

.theme_btn.white_btn {
  background-color: var(--color-white);
  color: var(--color-darkgray);
}
.theme_btn.white_btn:hover {
  background-color: var(--color-lightgray3);
}
.theme_btn.black_btn {
  background-color: var(--color-darkgray);
  color: var(--color-white);
}
.theme_btn.black_btn:hover {
  background-color: #222;
}

.theme_btn.primary_btn {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.theme_btn.primary_btn:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
}
.theme_btn.danger_btn {
  background-color: var(--color-danger);
  color: var(--color-white);
}
.theme_btn.danger_btn:hover {
  background-color: var(--color-danger-dark);
  color: var(--color-white);
}

.theme_btn.orange_btn {
  background-color: var(--color-orange);
  color: var(--color-white);
}
.theme_btn.orange_btn:hover {
  background-color: var(--color-orange-dark);
}

.theme_btn.red_btn:hover {
  background-color: #d60000;
}
.theme_btn.red_btn {
  background-color: #ff0000;
  color: #fff;
}

.theme_btn.blue_btn {
  background-color: #0090d3;
  color: #fff;
}
.theme_btn.blue_btn:hover {
  background-color: #0484bf;
}
.theme_btn.green_btn {
  background-color: #1faf66;
  color: #fff;
}
.theme_btn.green_btn:hover {
  background-color: #18a05b;
}
.theme_btn.palegreen_btn {
  background-color: #04b0ad;
  color: #fff;
}
.theme_btn.palegreen_btn:hover {
  background-color: #06a5a2;
}

.theme_btn.facebook_btn {
  background-color: #3b5998;
  color: #fff;
}
.theme_btn.youtube_btn {
  background-color: #ff0000;
  color: #fff;
}

.theme_btn.connect_btn {
  text-align: left;
  width: 160px;
  position: relative;
  z-index: 1;
}
.theme_btn.connect_btn:after {
  content: "";
  width: 50px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -2;
  -webkit-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
.theme_btn.connect_btn:before {
  content: "\f178";
  font-family: FontAwesome;
  right: 0;
  width: 50px;
  height: 100%;
  background-color: transparent;
  color: #fff;
  font-size: 20px;
  top: 0;
  bottom: 0;
  display: inline-block;
  text-align: center;
  position: absolute;
  z-index: -1;
  line-height: 46px;
}
.theme_btn.connect_btn.facebook_btn:before {
  content: "\f09a";
}
.theme_btn.connect_btn.web_btn:before {
  content: "\f0ac";
}
.theme_btn.connect_btn.youtube_btn:before {
  /*content: '\f167';*/
  content: "\f16a";
}
.theme_btn.connect_btn.pdf_btn:before {
  /*content: '\f167';*/
  content: "\f1c1";
}

.theme_btn.connect_btn:hover:after {
  width: 100%;
}

.theme_btn.btn_link {
  position: relative;
  min-width: 0px;
  width: auto;
  padding: 2px;
  padding-right: 12px;
  color: var(--color-darkgray);
  font-size: 16px;
  font-weight: 600;
  background-color: transparent;
  text-align: center;
  text-decoration: none;
  border: 0px;
  outline: none;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.theme_btn.btn_link:before {
  content: '\f101';
  color: inherit;
  position: absolute;
  right: 0;
  font-family: FontAwesome;
  opacity: 0.9;
  transition: 0.3s ease-in-out; 
}
.theme_btn.btn_link:hover {
  background-color: transparent;
  color: var(--color-black);
  padding-right: 15px;
}
.theme_btn.btn_link:hover:before {
  opacity: 1;
}

.theme_btn.btn_link.primary_link {
  color: var(--color-primary);
}
.theme_btn.btn_link.primary_link:hover {
  color: var(--color-primary-dark);
}
.theme_btn.btn_link.secondary_link {
  color: var(--color-secondary);
}
.theme_btn.btn_link.secondary_link:hover {
  color: var(--color-secondary-dark);
}

.theme_btn.btn_link.orange_link {
  color: var(--color-orange);
}
.theme_btn.btn_link.orange_link:hover {
  color: var(--color-orange-dark);
}

.theme_btn.btn_link.success_link {
  color: var(--color-success);
}
.theme_btn.btn_link.success_link:hover {
  color: var(--color-success-dark);
}

.theme_btn.btn_link.info_link {
  color: var(--color-info);
}
.theme_btn.btn_link.info_link:hover {
  color: var(--color-info-dark);
}


/**********************/

/*** floating menu ***/

.floating_menu {
  display: inline-block;
  position: fixed;
  top: 42%;
  z-index: 1000;
}
.floating_menu.left {
  left: 0;
}
.floating_menu ul li {
  display: block;
  background-color: transparent;
  height: 46px;
  width: 46px;
  position: relative;
  overflow: hidden;
  margin-bottom: 4px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.floating_menu.left ul li {
  left: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.floating_menu ul li .trig_icon {
  display: inline-block;
  width: 46px;
  height: 46px;
  position: absolute;
  background-color: #333;
  color: #fff;
  text-align: center;
}
.floating_menu.left ul li .trig_icon {
  right: 0;
}
.floating_menu ul li .trig_icon i {
  font-size: 20px;
  line-height: 48px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.floating_menu ul li .trig_icon:hover i {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.floating_menu ul li.fb .trig_icon {
  background-color: #3b5998;
}
.floating_menu ul li.twit .trig_icon {
  background-color: #00acee;
}
.floating_menu ul li.phone .trig_icon {
  background-color: #008fd2;
}
.floating_menu ul li.whtsapp .trig_icon {
  background-color: #169c0f;
}
.floating_menu ul li.email .trig_icon {
  background-color: #ff802b;
}

/**********************/

/*** Header Section ***/

header {
  position: relative;
  display: block;
  min-height: 1px;
}

.top {
  position: fixed;
  width: 100%;
  z-index: 2;
  left: 0;
  top: 156px;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  padding: 8px 0;
  /*background-color: #123758;*/
  background-color: var(--color-primary-dark);
  /*-webkit-box-shadow: inset 0px -1px 2px rgba(45, 45, 45, 0.6);
  box-shadow: inset 0px -1px 2px rgba(45, 45, 45, 0.6);*/
}
.top.fixed {
  top: 145px;
  padding: 5px 0;
  /*background-color: #123758;*/
}

.top_contact {
  padding: 8px 0;
  /*background-color: #123758;*/
  background-color: var(--color-primary);
  margin-bottom: 10px;
}

.top_line {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 3;
  padding: 0px 0 10px;
  /*background-color: #1a456d;*/
  background-color: var(--color-primary-light);
  /*box-shadow: inset 0px 1px 3px rgba(45, 45, 45, 0.6);*/
  -webkit-box-shadow: 0px 0px 1px rgba(45, 45, 45, 0.6);
  box-shadow: 0px 0px 1px rgba(45, 45, 45, 0.6);
}
.top_line .container {
    position: relative;
}

.foundation_logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.foundation_logo .logo_box img {
  width: 100px;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.top_line.fixed .foundation_logo .logo_box img {
  width: 90px;
}
.top_line.fixed p.foundation_title {
  font-size: 18px;
}
.top_line.fixed p.foundation_title strong {
  font-size: 22px;
}
.foundation_name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 15px;
}
.top_line p.foundation_title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 0;
  color: #1ae4e0;
}
.top_line p.foundation_title strong {
  color: #b2fffd;
  font-size: 24px;
}

.top_line .quick_cont_link {
  text-align: left;
}
.top_line .quick_cont_link ul {
  margin-bottom: 0;
  margin-top: 0px;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
/*.top_line.fixed .quick_cont_link ul { margin-top: 35px; }*/
.quick_cont_link ul li a {
  position: relative;
  font-size: 14px;
  display: block;
  text-decoration: none;
  color: #c1d6e8;
  padding-left: 30px;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.quick_cont_link ul li a:before {
  content: "";
  font-family: FontAwesome;
  font-size: 14px;
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 2px;
  text-align: center;
  /*background-color: #40709a;*/
  background-color: var(--color-primary-dark);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.quick_cont_link ul li.phone a:before {
  content: "\f095";
}
.quick_cont_link ul li.email a:before {
  content: "\f003";
}
.quick_cont_link ul li a:hover {
  color: #1ae4e0;
}
.quick_cont_link ul li a:hover:before {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  background-color: #1ae4e0;
  color: #40709a;
}

.top_line .quick_social_link {
  text-align: right;
}
.top_line .quick_social_link ul {
  margin-bottom: 0;
  margin-top: 0px;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.quick_social_link ul li a {
  position: relative;
  font-size: 14px;
  display: block;
  text-decoration: none;
  color: #c1d6e8;
  /*background-color: #40709a;*/
  background-color: var(--color-primary-dark);
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.quick_social_link ul li a:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  background-color: #1ae4e0;
  color: #40709a;
}

/*.quick_login {
    text-align: right;
    position: absolute;
    right: 15px;
}
.quick_login ul {
  margin-bottom: 0;
  margin-top: 26px;
}
.quick_login ul li a {
  position: relative;
  font-size: 16px;
  display: block;
  text-decoration: none;
  color: #c1d6e8;
  background-color: var(--color-primary-dark);
  min-width: 180px;
  font-weight: var(--fw-sb);
  height: 48px;
  padding: 0 15px;
  line-height: 48px;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.quick_login ul li.login a {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
.quick_login ul li.register a {
  background-color: var(--color-orange);
  color: var(--color-white);
}
.quick_login ul li.login a:hover {
  background-color: var(--color-secondary-dark);
  color: var(--color-white);
}
.quick_login ul li.register a:hover {
  background-color: var(--color-orange-dark);
  color: var(--color-white);
}*/

/** 21-July -21 **/
.quick_login {
    text-align: right;
    position: absolute;
    right: 15px;
}
/*.demo_page .quick_login {
  max-width: 200px;
}*/

.multiple_links.quick_login {
  max-width: 200px;
}
.quick_login ul {
  margin-bottom: 0;
  margin-top: 26px;
}
.demo_page .quick_login ul {
  margin-top: 4px;
}
.demo_page .top_line.fixed .quick_login ul { margin-top: 0; }
.demo_page .quick_login ul li + li {
  margin-top: 10px;
}

.multiple_links.quick_login ul {
  margin-top: 4px;
}
.top_line.fixed .multiple_links.quick_login ul { margin-top: 0; }
.multiple_links.quick_login ul li + li {
  margin-top: 10px;
}

.quick_login ul li a {
  position: relative;
  font-size: 16px;
  display: block;
  text-decoration: none;
  color: #c1d6e8;
  background-color: var(--color-primary-dark);
  min-width: 180px;
  font-weight: var(--fw-sb);
  height: 48px;
  padding: 0 15px;
  line-height: 48px;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.multiple_links.quick_login ul li a {
  position: relative;
  font-size: 14px;
  display: block;
  text-decoration: none;
  color: #c1d6e8;
  /*background-color: #40709a;*/
  background-color: var(--color-primary-dark);
  min-width: 180px;
  font-weight: var(--fw-sb);
  height: 40px;
  padding: 0 15px;
  line-height: 40px;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.demo_page .quick_login ul li a {
  position: relative;
  font-size: 14px;
  display: block;
  text-decoration: none;
  color: #c1d6e8;
  /*background-color: #40709a;*/
  background-color: var(--color-primary-dark);
  min-width: 180px;
  font-weight: var(--fw-sb);
  height: 40px;
  padding: 0 15px;
  line-height: 40px;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.quick_login ul li.login a {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
.quick_login ul li.register a {
  background-color: var(--color-orange);
  color: var(--color-white);
}
.quick_login ul li.download a {
  background-color: var(--color-danger);
  color: var(--color-white);
}
.quick_login ul li.login a:hover {
  background-color: var(--color-secondary-dark);
  color: var(--color-white);
}
.quick_login ul li.register a:hover {
  background-color: var(--color-orange-dark);
  color: var(--color-white);
}
.quick_login ul li.download a:hover {
  background-color: var(--color-danger-dark);
  color: var(--color-white);
}

/*****************/


.main_navbar.navbar-default {
  background-color: transparent;
  border: 0;
  margin-bottom: 0;
  min-height: 30px;
  padding: 0px 0;
}

.main_navbar.navbar-default .container {
  position: relative;
}

.main_navbar.navbar-default .navbar-brand {
  height: auto;
  padding: 0;
  margin-left: 0;
}

/*.main_navbar.navbar-default .navbar-nav { margin-top: 50px; }*/
/*.top.fixed .main_navbar.navbar-default .navbar-nav { margin-top: 20px; }*/

.main_navbar.navbar-default .navbar-nav.navbar-right {
  margin-right: 0;
}

.main_navbar.navbar-default .navbar-nav li:not(:last-child) {
  margin-right: 8px;
}

.main_navbar.navbar-default .navbar-nav li a {
  /*color: #c1d6e8;*/
  color: #c1d6e8;
  padding: 12px 31px;
  font-size: 16px;
  position: relative;
  z-index: 0;
  border-radius: 25px;
}
.main_navbar.navbar-default .navbar-nav li.login_link a {
  background-color: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1)
}
/*.main_navbar.navbar-default .navbar-nav li a:before,
.main_navbar.navbar-default .navbar-nav li a:after {
  position: absolute;
  width: 100%;
  height: 0%;
  left: 0;
  content: "";
  background: #40709a;
  opacity: 0.3;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
}
.main_navbar.navbar-default .navbar-nav li a:before {
  top: 0;
}
.main_navbar.navbar-default .navbar-nav li a:after {
  bottom: 0;
}

.main_navbar.navbar-default .navbar-nav li a:hover:before,
.main_navbar.navbar-default .navbar-nav li a:hover:after,
.main_navbar.navbar-default .navbar-nav li.active a:before,
.main_navbar.navbar-default .navbar-nav li.active a:after {
  height: 100%;
}*/

.main_navbar.navbar-default .navbar-nav > .active > a,
.main_navbar.navbar-default .navbar-nav > .active > a:focus,
.main_navbar.navbar-default .navbar-nav > .active > a:hover {
  color: #1adddc; /*c1d6e8*/
  background-color: var(--color-primary); /* #61f3ef */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1)
}
.main_navbar.navbar-default .navbar-nav li a:hover {
  color: #1adddc;
  background-color: var(--color-primary); /* #61f3ef */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1)
}
.main_navbar.navbar-default .navbar-nav li.login_link a:hover {
  background-color: var(--color-secondary-dark);
  color: var(--color-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1)
}

.menu_trig {
  display: none;
  position: absolute;
  top: 47px;
  right: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  padding: 10px 15px;
  background-color: #04b0ac;
  border-radius: 2px;
  cursor: pointer;
  z-index: 10;
}

.menu_trig i {
  font-size: 24px;
  color: #fff;
}

/** Responsive Side Navigation **/
#sidenav_wrapper {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0px;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-x: hidden;
  overflow-y: auto;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0px;
  /*background-color: rgb(31,31,31);*/
  background-color: #069a97;

  overflow-x: hidden;
  overflow-y: auto;
  /*-webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    transition: 0.4s;*/
  padding-top: 25px;
  /*border-left: 8px solid #f14537;*/
}
.sidenav:before {
  width: 8px;
  content: "";
  position: absolute;
  height: 100%;
  background-color: #066f6d;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.sidenav_logo {
  padding: 8px 8px 8px 60px;
  background-color: #1c1c1c;
  display: none;
}

.sidenav ul {
  list-style-type: none;
}
.sidenav ul a > i {
  position: absolute;
  right: 15px;
}

.sidenav ul .hasdrop a > i {
  top: 14px;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.nav_menu_wrap {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  opacity: 0;
  margin-top: 100px;
}

ul.first_level {
  padding-left: 0px;
  text-align: left;
}

ul.first_level > li {
  position: relative;
  border-bottom: 1px solid #07827f;
  background: none;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

ul.first_level > li a {
  padding: 8px 10px 8px 30px;
  font-size: 18px;
  color: #fff;
  display: block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
ul.first_level > li.spl_link.conference_link a {
  background-color: var(--color-orange);
}
ul.first_level > li.spl_link.download_link a {
  background-color: var(--color-danger);
}

ul.first_level > li a:hover {
  color: #09564f;
}
ul.first_level > li.spl_link.conference_link a:hover {
  color: var(--color-white);
}

ul.first_level > li a:hover,
ul.first_level > li a:focus,
ul.first_level > li a:active {
  text-decoration: none;
  outline: none;
}

ul.first_level > li.active > a {
  color: #09564f;
  text-decoration: none;
}

ul.first_level > li.hasdrop > ul.drop_menu li a {
  padding: 6px 10px 6px 20px;
  font-size: 22px;
}

ul.first_level > li.hasdrop > ul.drop_menu li.active a {
  color: #09564f;
  text-decoration: none;
}

.sidenav .closebtn {
  position: absolute;
  top: 0px;
  right: 0;
  font-size: 35px;
  line-height: 1.2;
  background-color: #107d72;
  color: #fff;
  width: 50px;
  height: 50px;
  text-align: center;
  display: inline-block;
  border-bottom-left-radius: 2px;
  cursor: pointer;
}
.sidenav .closebtn b {
  position: absolute;
  top: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-weight: 400;
}

.mobile_header {
  display: none;
}

/**************/

/*** Main Banner ***/

#main_banner {
  margin-top: 150px;
}

#main_banner .explore_btn {
  position: absolute;
  width: 150px;
  padding: 3px 0;
  height: auto;
  bottom: 30px;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  background-color: #365c7d;
  /* font-size: 14px; */
  border-radius: 3px;
  left: 0;
  right: 0;
  margin: auto;
  /*z-index: 2;*/
  text-align: center;
  -webkit-animation: fade_ele 2s linear infinite;
  animation: fade_ele 2s linear infinite;
}
#main_banner .explore_btn:before {
  content: "\f103";
  font-family: FontAwesome;
  font-size: 18px;
  font-weight: 500;
  color: #21eae6;
  text-align: center;
  display: inline-block;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-animation: move_ele 2s linear infinite;
  animation: move_ele 2s linear infinite;
}
@-webkit-keyframes fade_ele {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}
@keyframes fade_ele {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}
@-webkit-keyframes move_ele {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes move_ele {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

#main_banner .carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5%;
  /* height: 50px; */
  font-size: 50px;
  line-height: 500px;
  color: #6ca7dc;
  text-align: center;
  text-shadow: none;
  background-color: transparent;
  filter: alpha(opacity=50);
  opacity: 0.5;
}
#main_banner .carousel-control:hover {
  color: #a3fffd;
  opacity: 0.9;
}
#main_banner .carousel-control.right {
  left: auto;
  right: 0;
}
#main_banner .carousel-control.right,
#main_banner .carousel-control.left {
  background: none;
}
/*********************************/
/* Carousel Fading slide */
/*********************************/

#main_banner.carousel-fade .item {
  opacity: 0;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

#main_banner.carousel-fade .next.left,
#main_banner.carousel-fade .prev.right,
#main_banner.carousel-fade .item.active {
  opacity: 1;
}

#main_banner.carousel-fade .active.left,
#main_banner.carousel-fade .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

/* Safari Fix */
@media all and (transform-3d), (-webkit-transform-3d) {
  #main_banner.carousel-fade .carousel-inner > .item.next,
  #main_banner.carousel-fade .carousel-inner > .item.active.right {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  #main_banner.carousel-fade .carousel-inner > .item.prev,
  #main_banner.carousel-fade .carousel-inner > .item.active.left {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  #main_banner.carousel-fade .carousel-inner > .item.next.left,
  #main_banner.carousel-fade .carousel-inner > .item.prev.right,
  #main_banner.carousel-fade .carousel-inner > .item.active {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/*********************************/
/*********************************/

#main_banner .item {
  height: 680px;
  padding-top: 80px;
}
#main_banner .item .container {
  height: 100%;
  position: relative;
}

#main_banner .item.banner1 img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  width: 100%;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

#main_banner .banner_content {
  color: #fff;
  text-align: center;
}

#main_banner .new_dates .banner_content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5.5%;
  /*height: 100%;*/
}
#main_banner .new_dates .banner_content .ban_text {
  width: 80%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
#main_banner .new_dates .banner_content h3 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 25px;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
#main_banner .new_dates .banner_content h3 span {
  display: block;
  color: var(--color-yellow-medium);
}

#main_banner .new_dates .banner_content .annoucement_title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  /*color: #04b0ac;*/
  color: var(--color-orange);
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  margin-bottom: 20px;
}
#main_banner .new_dates .banner_content .date_row {
  padding: 15px;
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  
  color: #04b0ac;
}
#main_banner .new_dates .banner_content .date_row span {
  display: inline-block;
  margin-right: 15px;
  /*color: var(--color-orange);*/
  text-shadow: 0 1px 3px rgba(25,25,25, 0.17);
  animation-duration: 1s;
}
#main_banner .new_dates .banner_content .date_row span:last-child {
  margin-right: 0;
}
#main_banner .new_dates .banner_content .date_row span:nth-child(1) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
#main_banner .new_dates .banner_content .date_row span:nth-child(2) {
  -webkit-animation-delay: 2.3s;
  animation-delay: 2.3s;
}
#main_banner .new_dates .banner_content .date_row span:nth-child(3) {
  -webkit-animation-delay: 3.1s;
  animation-delay: 3.1s;
}
#main_banner .new_dates .banner_content .date_row span:nth-child(4) {
  -webkit-animation-delay: 3.9s;
  animation-delay: 3.9s;
}
#main_banner .new_dates .banner_content .date_row span:nth-child(5) {
  -webkit-animation-delay: 4.7s;
  animation-delay: 4.7s;
}

#main_banner .banner_2021_two .banner_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 5.5%;
  /*height: 100%;*/
}

#main_banner .banner_2021 {
  background-size: cover; 
}

#main_banner .banner_2021 .banner_content .ban_text {
  width: 100%;
  text-align: center;
}
#main_banner .banner_2021 .banner_content .ban_text h3 {
  font-size: 50px;
  line-height: 1.2;
  font-weight: var(--fw-b);
  margin-bottom: 25px;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
#main_banner .banner_2021 .banner_content .ban_text h3 span {
  /*font-style: italic;*/
  color: var(--color-orange);
  display: block;
  font-size: 70px;
}
#main_banner .banner_2021 .banner_content .duration {
  width: 300px;
  display: block;
  padding: 6px 0px;
  border-radius: 2px;
  background-color: var(--color-secondary);
  color: var(--color-white);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin: 0 auto 35px;
  -webkit-box-shadow: 0 1px 3px rgba(25, 25, 25, 0.17);
  box-shadow: 0 1px 3px rgba(25, 25, 25, 0.17);
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

#main_banner .banner_2021_two .banner_content .ban_text {
  width: 50%;
  text-align: left;
}
#main_banner .banner_2021_two .banner_content .ban_text h5 {
  font-size: 20px;
  color: #c1d6e8;
}


#main_banner .banner_2021_two .banner_content .ban_img_box {
  width: 50%;
}
#main_banner .banner_2021_two .banner_content h3 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 25px;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
#main_banner .banner_2021_two .banner_content .duration {
  width: 230px;
  display: block;
  padding: 6px 0px;
  border-radius: 25px;
  background-color: #04b0ac;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 35px;
  -webkit-box-shadow: 0 1px 3px rgba(25, 25, 25, 0.17);
  box-shadow: 0 1px 3px rgba(25, 25, 25, 0.17);
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
#main_banner .banner_2021_two .banner_content img {
  width: 460px;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
#main_banner .banner2 .banner_content img {
  width: 460px;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
#main_banner .banner_content h4 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-top: 20px;
  margin-bottom: 0;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
.year_style {
  margin-bottom: 20px;
}
.year_style span {
  font-size: 70px;
  font-weight: 300;
  color: #4f87c7;
  display: inline-block;
  margin-right: 90px;
  line-height: 1;
  -webkit-animation-duration: 2.3s;
  animation-duration: 2.3s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.year_style span:last-child {
  margin-right: 0;
}

#main_banner .banner_content p {
  /*text-transform: uppercase;*/
  /*font-size: 17px;*/
  /*font-weight: 300;*/
  /*letter-spacing: 1px;*/
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
#main_banner .banner_2020 .banner_content p {
  font-size: 15px;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

#main_banner .banner_btn {
  display: inline-block;
  background: url("../img/cloud-icon.png") center no-repeat;
  background-size: 120px;
  width: 120px;
  height: 85px;
  color: #fff;
  white-space: normal;
  line-height: 18px;
  padding-top: 45px;
  margin-top: 20px;
  -webkit-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-animation-duration: 2.3s;
  animation-duration: 2.3s;
}

#main_banner .banner_2020 .theme_btn {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

#main_banner .banner2 .banner_btn {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

#main_banner .banner1 .banner_btn {
  position: absolute;
  bottom: 120px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

#main_banner .banner_btn span {
  font-size: 18px;
  /*line-height: 15px;*/
  /*font-weight: 300;*/
}
#main_banner .banner_btn:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.5));
}

/** Banner 2 Special event ERCP Webinars **/
.banner_new .spl_info_wrap {
  /*text-align: left;*/
  text-align: center;
  padding: 50px 20px 20px;
  width: 70%;
  margin: auto;
}
.banner_new .spl_info_wrap .post_title {
  position: relative;
  display: inline-block;
}
.banner_new .spl_info_wrap .post_title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  /* border-top: 2px dashed #ffc107; */
  border-top: 2px dashed #ffd200;
}
#main_banner .banner_new .banner_content .spl_info_wrap h4 {
  font-size: 24px;
  color: #42dcd9;
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: 500;
  letter-spacing: 0.1px;
}
.banner_new .banner_content .spl_info_wrap p {
  /*font-size: 18px;*/
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
  color: #fff;
  margin-bottom: 15px;
  -webkit-animation-duration: 2.2s;
  animation-duration: 2.2s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.banner_new .spl_info_wrap p strong {
  font-weight: 500;
}
.banner_new .spl_info_wrap hr {
  border-top: 1px dashed #999;
  margin: 25px 0;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
.banner_new .spl_info_wrap .connect_btn {
  width: 210px;
  padding: 12px 20px;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  margin-top: 30px;
}
.banner_new .spl_info_wrap .connect_btn:first-child {
  margin-right: 10px;
}

/** Banner 3 - about banner **/
.about_banner .about_banner_cont {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  width: 65%;
  margin: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 6%;
}
.top_sect_box {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.fimage {
  width: 160px;
  margin-right: 40px;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  /*animation-duration: 3s;*/
}
.fimage img {
  width: 100%;
}
.ftext {
  width: 200px;
  text-align: left;
  margin-right: 30px;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}
.ftext h4 {
  font-size: 30px;
  font-weight: 700;
  color: #67dde4;
}
.ban_logo {
  width: 180px;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}
.ban_logo img {
  width: 100%;
}
.text_bot_box {
  padding: 20px 0;
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
  /*animation-duration: 2.2s;*/
}
.text_bot_box p {
  font-size: 24px;
  color: #fff;
  font-weight: 300;
}
/****************/
/** Banner 4 - Free Genda banner **/

.free_agenda_banner_cont {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90%;

  -webkit-box-pack: justify;

  -webkit-justify-content: space-between;

  -ms-flex-pack: justify;

  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
  padding-top: 6%;
}
.fa_img_box {
  width: 30%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fa_img_box img {
  width: 250px;
}
.fa_ban_text {
  width: 65%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: left;
  color: #fff;
}
.fa_ban_text h4 {
  font-size: 30px;
  font-weight: 700;
  color: #67dde4;
  margin-bottom: 20px;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.fa_ban_text .theme_info_list ul {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fa_ban_text .theme_info_list li {
  font-size: 20px;
  margin-bottom: 8px;
}
/*********************/
/** banner 5 - Free Praise **/
.free_praise_banner_cont {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;

  -webkit-box-pack: justify;

  -webkit-justify-content: space-between;

  -ms-flex-pack: justify;

  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
  padding-top: 6%;
}
.fp_img_box {
  width: 45%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fp_img_box img {
  /*width: 250px;*/
  width: 100%;
}
.fp_ban_text {
  width: 55%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: left;
  color: #fff;
  padding-left: 30px;
  position: relative;
  min-height: 440px;
}
.fp_ban_text h4 {
  font-size: 30px;
  font-weight: 700;
  color: #67dde4;
  margin-bottom: 20px;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.quote_box {
  width: 220px;
  font-size: 14px;
  text-align: center;
  padding: 10px;
  /*border: 2px solid #165994;*/
  background-color: #086ab4;
  border-radius: 25px;
  position: absolute;
  -webkit-box-shadow: 0 0 2px #1f405f;
  box-shadow: 0 0 2px #1f405f;
}
.quote_box:before {
  content: "";
  /*width: 40px;
	height: 40px;*/
  display: inline-block;
  position: absolute;
  left: 50px;
  border-top: 25px solid #086ab4;
  /*border-left: 20px solid #086ab4;*/
  border-right: 36px solid transparent;
  top: 100%;
}
.quote_box p {
  margin-bottom: 0;
}

.quote_box.one {
  left: 30px;
  top: 15%;
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
.quote_box.two {
  right: 0;
  top: 15%;
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.quote_box.three {
  bottom: 50px;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}

/*** Index Section ***/

.index_sect {
  padding: 80px 0;
}

.index_sect h1 {
  margin-bottom: 30px;
  margin-top: 0;
  font-weight: 700;
  color: #00aeac;
  text-transform: uppercase;
}
.index_sect h2 {
  font-size: 36px;
  margin-bottom: 30px;
  margin-top: 0;
  font-weight: 700;
  color: var(--color-primary-dark);
  text-transform: uppercase;
}

/*********************/

/** Event basic info **/

.conf_info_card {
  text-align: left;
  color: var(--color-white);
}
.conf_info_card .icon_wrap {
  height: 70px;
  margin-bottom: 15px;
}
.conf_info_card .icon_wrap img {
  object-fit: cover;
  height: 100%;
  filter: invert(0.95);
}
.conf_info_card .card_body {
  padding: 10px;
}
.conf_info_card h4 {
  font-size: 20px;
  font-weight: var(--fw-sb);
  margin-top: 0;
  margin-bottom: 15px;
  color: inherit;
}
.conf_info_card p {
  margin-bottom: 0;
  color: inherit;
}

/***************/

/*** Schedule section ***/

.schedule_section {
  padding: 0;
}
.schedule_section .row {
  margin-left: 0;
  margin-right: 0;
}
.schedule_section .row .img_container,
.schedule_section .row .text_content {
  min-height: 640px;
  width: 100%;
}
.schedule_section .img_container {
  background-size: cover;
}
.d_flex {
  display: flex;
}
.schedule_section .text_content {
  /*align-items: center;*/
  padding: 70px 15px 30px 40px;
}
.schedule_section .text_content .schedule_card_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 530px;
  padding-top: 20px;
}
.schedule_section .text_content .schedule_card_wrap .card {
  width: 48%;
  background-color: var(--color-secondary);
  color: var(--color-darkgray);
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 6px;
  text-align: left;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: 0.25s ease;
}
.schedule_section .text_content .schedule_card_wrap .card p {
  margin-bottom: 5px;
}
.schedule_section .text_content .schedule_card_wrap .card strong {
  font-weight: var(--fw-sb);
}
.schedule_section .text_content .schedule_card_wrap .card:nth-child(1) {
  background-color: var(--color-yellow-medium);
}
.schedule_section .text_content .schedule_card_wrap .card:nth-child(2) {
  background-color: var(--color-green-medium);
}
.schedule_section .text_content .schedule_card_wrap .card:nth-child(3) {
  background-color: var(--color-purple-medium);
}
.schedule_section .text_content .schedule_card_wrap .card:nth-child(4) {
  background-color: var(--color-orange-medium);
}
.schedule_section .text_content .schedule_card_wrap .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.15);
}

/*********************/

/** Speakers section **/

.speakers_section {
  background-color: var(--color-secondary-lighter2);
}

.speakers_section.bg_white {
  background-color: transparent;
}

.speaker_card {
  position: relative;
  height: 290px;
  overflow: hidden;
  margin-bottom: 30px;
}
.speaker_card a {
  display: block;
}
.speaker_card .overlay {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 176, 173, 0.25);
  opacity: 0;
  transition: 0.25s ease;
  z-index: 1;
}
.speaker_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
  transition: 0.25s ease;
}
.speaker_card .card_body {
  position: absolute;
  text-align: left;
  /*min-width: 200px;*/
  left: 10px;
  right: 10px;
  bottom: 15px;
  padding: 5px;
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-radius: 2px;
  display: inline-block;
  transition: 0.25s ease;
  z-index: 1;
}
.speaker_card .card_body h4 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 16px;
}
.speaker_card .card_body span {
  color: var(--color-yellow-light);
}

.speaker_card:hover .overlay {
  opacity: 1;
}
.speaker_card:hover .card_body {
  background-color: var(--color-secondary-dark);
}
.speaker_card:hover img {
  transform: scale(1.05);
}

.title_card {
  display: flex;
  height: auto;
  min-height: 80px;
  border-radius: 2px; 
  overflow: hidden;
  transition: 0.25s ease;
  margin-bottom: 30px;
}

.title_card .card_body {
  width: 100%;
  text-align: center;
  padding: 0px 10px;
  background-color: #c0d5e8;
  color: #29445d;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.25s ease;
  z-index: 1;
}
.title_card .card_body h4 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 16px;
}
.title_card .card_body span {
  color: #29445d;
}
.title_card:hover {
  transform: translateY(-2px);
}
.title_card:hover .card_body {
  background-color: #dbe6f1;
}


/*************/

/*** Oragnizing Committee PAge **/

#oc_page {
  padding: 40px 0;
}

@-webkit-keyframes rotateFull {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes rotateFull {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotateFull {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.oc_cards_wrapper {
  width: 95%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0px auto;
}

/*.oc_card {
  width: 30%;
  position: relative;
  border-radius: 20px;
  min-height: 150px;
  overflow: hidden;
  margin: 1.66%;
  box-shadow: 0 1px 30px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.25s ease;
}
.oc_card:after {
    content: '\f2dc';
    font-family: FontAwesome;
    font-size: 32px;
    color: #303030;
    text-shadow: 0px 1px 2px rgba(45, 45, 45, 0.35);
    text-align: center;
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    margin: auto;
    animation: rotateFull 4s infinite linear;
}
.oc_card:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 152, 0, 0.1);
  opacity: 0;
  transition: 0.25s ease;
  z-index: 1;
}
.oc_card a {
  display: block;
}

.oc_card .card_body {
  text-align: center;
  padding: 40px 20px 5px;
  color: var(--color-secondary);
  border-radius: 20px;
  display: inline-block;
  transition: 0.1s ease;
}
.oc_card .card_body h4 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 17px;
}
.oc_card:hover {
  transform: scale(1.05);
  box-shadow: 0 1px 10px rgba(0,0,0,0.1);
}
.oc_card:hover:before {
  opacity: 1;
}
.oc_card:hover .card_body {
  color: var(--color-orange);
}*/

.oc_card {
  width: 25%;
/*  width: 22%;*/
  position: relative;
  /*height: 260px;*/
  height: 310px;
  overflow: hidden;
  /*margin-bottom: 30px;*/
  /*margin: 1.66%;*/
  margin: 1%;
}
.oc_card .overlay {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 176, 173, 0.25);
    opacity: 0;
    transition: 0.25s ease;
    z-index: 1;
}
.oc_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    backface-visibility: hidden;
    transition: 0.25s ease;
}
.oc_card .card_body {
    position: absolute;
    text-align: left;
    min-width: 200px;
    left: 15px;
    bottom: 15px;
    padding: 10px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-radius: 2px;
    display: inline-block;
    transition: 0.25s ease;
    z-index: 1;
}
.oc_card .card_body h4 {
    margin-top: 0;
    margin-bottom: 0px;
    font-size: 16px;
}
.oc_card:hover .overlay {
    opacity: 1;
}
.oc_card:hover img {
    transform: scale(1.05);
}
.oc_card .card_body span {
    color: var(--color-yellow-light);
    font-size: 15px;
}



/*******************/


/*** About Us section Index ***/

.founder_info {
  padding: 0px 0;
}
.founder_info .prof_img {
  width: 250px;
  /*height: 320px;*/
  /*overflow: hidden;*/
  /*border-radius: 50%;*/
  margin: 10px auto 30px;
  /*border: 10px solid #4f87c7;*/
  -webkit-box-shadow: 1vmax 1vmax rgba(87, 204, 201, 0.7);
  box-shadow: 1vmax 1vmax rgba(87, 204, 201, 0.7);
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.founder_info .prof_img:hover {
  /*box-shadow: -0.6vmax -0.6vmax rgba(0,146,214,0.35), 0.6vmax 0.6vmax rgba(0,146,214,0.6);*/
  -webkit-box-shadow: -0.6vmax -0.6vmax rgb(143, 243, 240),
    0.6vmax 0.6vmax rgb(87, 204, 201);
  box-shadow: -0.6vmax -0.6vmax rgb(143, 243, 240),
    0.6vmax 0.6vmax rgb(87, 204, 201);
}
.founder_info .prof_img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
  -webkit-box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.founder_info .prof_img:hover img {
  -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.founder_info .prof_img + p {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.prof_info {
  padding: 50px 20px 30px;
  text-align: left;
}
.prof_info p {
  font-size: 18px;
  line-height: 1.5;
}

.about_foundation {
  background-color: #e9f8ff;
}
.about_foundation h1 {
  color: #c1d6e8;
}
.about_foundation .page_text {
  padding-top: 70px;
  text-align: left;
}
.about_foundation p {
  text-align: left;
  font-size: 18px;
  margin-bottom: 25px;
  color: #c1d6e8;
}
.about_foundation .page_text li {
  text-align: left;
  font-size: 18px;
  margin-bottom: 15px;
  color: #c1d6e8;
}
.about_foundation img {
  max-width: 400px;
}

.welcome_msg .messanger_img {
  float: right;
  margin: 20px;
  margin-right: 0;
  margin-top: 0;
  font-size: 18px;
}
.welcome_msg .messanger_img .img_cont img {
  width: 100%;
  margin-bottom: 10px;
}
.welcome_msg .messanger_img .messanger_name {
  font-weight: 600;
}


.feedback_sect {
  background-color: var(--color-lightgray3);
}

.feedback_slider .item {
  padding: 15px;
}

.feedback_sect .feedback_box {
  display: inline-block;
  min-height: 210px;
  -webkit-box-shadow: 0 1px 18px rgba(45, 45, 45, 0.15);
  box-shadow: 0 1px 18px rgba(45, 45, 45, 0.15);
  position: relative;
  padding: 90px 20px 20px;
  text-align: center;
  border-radius: 12px;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.feedback_sect .feedback_box:before {
  content: "\f10d";
  font-size: 36px;
  color: #04b0ac;
  font-family: FontAwesome;
  position: absolute;
  top: 24px;
  left: 20px;
  right: 20px;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.feedback_sect .feedback_box:after {
  content: "";
  width: 60px;
  height: 60px;
  background-color: #00aeac;
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  margin: auto;
  border-radius: 50%;
  z-index: -1;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.feedback_sect .feedback_box:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.19);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.19);
}
.feedback_sect .feedback_box:hover:after {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  opacity: 1;
}
.feedback_sect .feedback_box:hover:before {
  /*color: #333;*/
  text-shadow: 1px 1px 3px rgb(62, 193, 192);
  color: #068684;
}

/*** Stay Connected Index ***/

/*.stay_connected h1 {
	color: #fff;
}
*/
.connect_box {
  width: 100%;
  /*background-color: rgba(255,255,255,0.85);*/
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 180px;
  -webkit-box-shadow: 0 1px 18px rgba(45, 45, 45, 0.15);
  box-shadow: 0 1px 18px rgba(45, 45, 45, 0.15);
  position: relative;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  margin-bottom: 30px;
}
.connect_box p {
  margin-bottom: 20px;
  font-size: 20px;
}
.connect_box:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.connect_box.web_connect a {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  /*color: #333;*/
}

.connect_box .form_style {
  width: 90%;
}
.connect_box .form_style .form-group {
  margin-bottom: 0;
}
.connect_box .newsletter_style {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.connect_box .form_style .form-control {
  height: 48px;
  border-radius: 2px;
  border: 1px solid #ccc;
  color: #817575;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.connect_box .form_style .theme_btn {
  min-width: 50px;
  margin-top: 0;
  padding: 12px 18px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.connect_box .connect_btn {
  width: 180px;
  padding: 12px 20px;
}

/*************************/

/*** FREE online Index ***/

.free_online h1 {
  color: #c1d6e8;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.free_online h2 {
  color: var(--color-secondary-lighter1);
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.free_online h1 strong {
  display: block;
  font-size: 30px;
}

.free_online .btn_wrap > a.theme_btn {
  margin-right: 20px;
}

.free_online .duration {
  width: 230px;
  display: block;
  padding: 6px 0px;
  border-radius: 25px;
  background-color: #04b0ac;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin: 0 auto 30px;
  -webkit-box-shadow: 0 1px 3px rgba(25, 25, 25, 0.17);
  box-shadow: 0 1px 3px rgba(25, 25, 25, 0.17);
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.free_online .font_18 p {
  font-size: 18px;
  color: #072035;
  width: 80%;
  margin: auto;
  line-height: 1.5;
}

.free_online .connect_box {
  box-shadow: none;
  min-height: 0;
  height: auto;
  width: 70%;
  margin: 20px auto 0;
}


.online_list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: justify;

  -webkit-justify-content: space-between;

  -ms-flex-pack: justify;

  justify-content: space-between;
  padding-top: 30px;
}
.online_list .online_list_item {
  width: 31%;
  display: inline-block;
  min-height: 210px;
  -webkit-box-shadow: 0 2px 25px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  padding: 90px 20px 20px;
  text-align: center;
  border-radius: 12px;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.online_list .online_list_item:before {
  content: "\f00c";
  font-size: 30px;
  color: #fff;
  font-family: FontAwesome;
  position: absolute;
  top: 28px;
  left: 20px;
  right: 20px;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.online_list .online_list_item:after {
  content: "";
  width: 60px;
  height: 60px;
  background-color: #4caf50;
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  margin: auto;
  border-radius: 50%;
  z-index: -1;
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.online_list .online_list_item:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.19);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.19);
}
.online_list .online_list_item:hover:after {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.online_list .online_list_item:hover:before {
  text-shadow: 1px 1px 3px #419245;
  color: #fff;
}

/*******************/

/*** News section ***/

.news_section {

}

.blog_card {
  position: relative;
  min-height: 480px;
  background-color: var(--color-lightgray3);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 30px;
}
.blog_card .card_img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.blog_card .card_img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: 0.25s ease;
}
.blog_date {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    padding: 1rem;
    color: var(--color-white);
    background-color: var(--color-secondary);
    border: 1px solid var(--color-secondary-dark);
}
.blog_card .card_body {
  text-align: left;
    padding: 20px 15px;
}
.blog_card h4 {
  margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.35;
    font-size: 18px !important;
}
.blog_card h4 a {
    color: var(--color-darkgray);
}
.blog_card .card_footer {
  position: absolute;
  bottom: 0px;
  left: 0;
  padding: 5px 15px 15px;
  min-height: 40px;
}
.blog_card:hover .card_img img {
    transform: scale(1.1);
}
.blog_card h4 a:hover {
    color: var(--color-secondary);
}

/*************/



/*** Inner Page banner & Breadcrumbs ***/

.inner_banner {
  min-height: 300px;
  position: relative;
  margin-top: -20px;
}

.inner_banner_text {
  padding: 260px 0 0;
  text-align: center;
  color: var(--color-lightgray3);
}
.inner_banner_text h2 {
  font-weight: 600;
}

.inner_banner .breadcrumb {
  background-color: transparent;
  margin-bottom: 15px;
}
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: var(--color-lightgray3);
  content: "\f105";
  font-family: FontAwesome;
}
.inner_banner .breadcrumb > li,
.inner_banner .breadcrumb > li a {
  color: var(--color-lightgray3);
}
.inner_banner .breadcrumb > .active,
.inner_banner .breadcrumb > li a:hover {
  color: var(--color-primary-dark);
  text-decoration: none;
}

/*** Inner Page style ***/

.inner_page {
  padding: 80px 0;
  text-align: left;
}

.inner_page h2 {
  font-weight: 600;
  text-transform: uppercase;
  color: #04b0ac;
}

.inner_page h4 {
  font-size: 22px;
  margin-bottom: 25px;
}
.inner_page h5 {
  font-size: 20px;
  margin-bottom: 25px;
}

.page_text ul,
.theme_info_list ul {
  list-style-type: none;
  margin-bottom: 0;
}
.page_text ul li,
.theme_info_list li {
  position: relative;
  font-size: 18px;
  padding-left: 25px;
  margin-bottom: 10px;
  display: block;
}
.page_text ul li:before,
.theme_info_list ul li:before {
  content: "";
  font-size: 14px;
  font-family: FontAwesome;
  width: 10px;
  height: 10px;
  left: 0;
  top: 6px;
  position: absolute;
  display: inline-block;
  background-color: #00aeac;
}
.theme_info_list li {
  font-size: 16px;
  margin-bottom: 12px;
}
.theme_info_list li strong a {
  color: #111;
}
.theme_info_list li strong a:hover {
  color: #04b0ad;
}
.theme_info_list li .theme_btn {
  margin-top: 10px;
}
/**********************/

/** Page Sidenav **/
.side_navigation {
  text-align: left;
  background-color: #eee;
  border-radius: 2px;
  overflow: hidden;
}
.side_navigation h5 {
  font-size: 18px;
  background-color: #436686;
  padding: 14px 15px;
  margin: 0;
  color: #c1d6e8;
  border: 1px solid #436686;
}
.side_navigation ul {
  border: 1px solid #ddd;
  margin-bottom: 0;
}

.side_navigation ul li {
  display: block;
  border-bottom: 1px solid #ddd;
}
.side_navigation ul li:last-child {
  border-bottom: 0px solid #ddd;
}
.side_navigation ul li a {
  display: block;
  padding: 10px 15px 10px 30px;
  font-size: 15px;
  color: #222;
  position: relative;
}
.side_navigation ul li a:before {
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  left: 15px;
}
.side_navigation ul li a:hover,
.side_navigation ul li.active a {
  color: #04b0ac;
  background-color: #f3f3f3;
}

/**  Theme Tabs ***/

/*.theme_tabs {
}*/
.theme_tabs .nav-tabs {
  border-bottom: 1px solid #c0d5e8;
}
.theme_tabs .nav-tabs > li > a {
  color: #222;
  background-color: #dbe6f1;
  padding: 13px 15px;
}
.theme_tabs .nav-tabs > li.active > a,
.theme_tabs .nav-tabs > li.active > a:focus,
.theme_tabs .nav-tabs > li.active > a:hover,
.theme_tabs .nav-tabs > li > a:hover {
  color: #29445d;
  cursor: pointer;
  background-color: #c0d5e8;
  border: 1px solid #c0d5e8;
  border-bottom-color: transparent;
}

.theme_tabs .nav-tabs.normal_tabs {
  border-bottom: 1px solid transparent;
}
.theme_tabs .nav-tabs.normal_tabs > li > a {
  color: #222;
  background-color: transparent;
  padding: 5px 15px;
}
.theme_tabs .nav-tabs.normal_tabs > li.active > a,
.theme_tabs .nav-tabs.normal_tabs > li.active > a:focus,
.theme_tabs .nav-tabs.normal_tabs > li.active > a:hover,
.theme_tabs .nav-tabs.normal_tabs > li > a:hover {
  color: #29445d;
  font-weight: 600;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid transparent;
  border-bottom-color: transparent;
}

.theme_tabs .nav-tabs.nav-justified > li > a {
  color: #222;
  padding: 10px 5px;
  font-size: 18px;
  border: 0;
  border-radius: 0;
  height: 70px;
}
.theme_tabs .nav-tabs.nav-justified > li > a small {
  padding-left: 5px;
}

.theme_tabs .nav-tabs.nav-justified > li.active > a,
.theme_tabs .nav-tabs.nav-justified > li.active > a:focus,
.theme_tabs .nav-tabs.nav-justified > li.active > a:hover,
.theme_tabs .nav-tabs.nav-justified > li > a:hover {
  border: 0;
  color: var(--color-black);
}

.theme_tabs .nav-tabs.nav-justified > li:nth-child(1) > a {
  background-color: var(--color-yellow-medium);
}
.theme_tabs .nav-tabs.nav-justified > li:nth-child(2) > a {
  background-color: var(--color-green-medium);
}
.theme_tabs .nav-tabs.nav-justified > li:nth-child(3) > a {
  background-color: var(--color-purple-medium);
}
.theme_tabs .nav-tabs.nav-justified > li:nth-child(4) > a {
  background-color: var(--color-orange-medium);
}

.theme_tabs .tab-content {
  border: 1px solid #c0d5e8;
  /*border-top: 0;*/
  padding: 30px 15px;
}
.theme_tabs .tab-content h4 {
  margin-top: 0;
}

.tab_content_inner {
  padding: 10px 0px;
}

.theme_tabs .tab-content .tab_content_inner .tab-content {
  border: 0px;
}

/** About Us ***/

#about_us_page {
  padding-bottom: 0;
}

#about_us_page .page_text p {
  font-size: 18px;
  line-height: 1.5;
  /*text-align: center;*/
}

#about_us_page .about_foundation .page_text {
  padding-top: 0px;
}

#about_us_page .founder_info {
  padding: 0 0 80px;
}

#about_us_page .about_foundation {
  text-align: center;
  padding: 80px 0;
}
#about_us_page .about_foundation h1 {
  margin-top: 0;
  margin-bottom: 30px;
}

.objectives {
  padding: 60px 0;
}
.objectives h2 {
  font-size: 36px;
}

.spl_message {
  padding: 60px 0;
  background-color: #e9f8ff;
}
.spl_message p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #c1d6e8;
}

/****************/

/*** Conference Page ***/

#conference hr {
  border-top: 1px dashed #bbb;
}

.upcoming_conf .conference_box .schedule_info,
.upcoming_conf .conference_box .icon_box {
  width: 50%;
}

.conference_box {
  padding: 30px;
  display: block;
  width: 100%;
  -webkit-box-shadow: 0 1px 12px rgba(45, 45, 45, 0.15);
  box-shadow: 0 1px 12px rgba(45, 45, 45, 0.15);
  border-radius: 10px;
  margin-bottom: 30px;
  min-height: 270px;
}
.conference_box p {
  margin-bottom: 20px;
}
.conference_box p span {
  display: inline-block;
  padding: 3px 8px;
  background-color: #ceecec;
  border-radius: 3px;
  font-weight: 500;
  -webkit-box-shadow: 0 0px 2px rgba(45, 45, 45, 0.3);
  box-shadow: 0 0px 2px rgba(45, 45, 45, 0.3);
}
.schedule_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 30px 0;
  overflow: hidden;
  /*padding: 10px;*/
}
.schedule_wrap .schedule {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.schedule_wrap .btn_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /*align-items: center;*/
  /*justify-content: center;*/
  /*border-left: 1px dashed #ccc;*/
  width: 100%;
}
.schedule_wrap .btn_wrap .theme_btn:not(:last-child) {
  margin-right: 10px;
}
.icon_box {
  width: 40%;
  text-align: center;
  /*background-color: #b2d2fd;*/
  background-color: #ddd;
  padding: 0px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.icon_box:hover:before {
  visibility: visible;
  opacity: 1;
}
.icon_box:hover a.theme_btn {
  opacity: 1;
}
.icon_box:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 1;
}
.icon_box img {
  width: 100%;
}
.icon_box svg {
  width: 60%;
  margin: auto;
}
.icon_box a.theme_btn {
  position: absolute;
  min-width: 210px;
  font-size: 14px;
  top: 50%;
  left: 50%;
  right: 0;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.download_card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #dbe6f1;
  border-radius: 3px;
  border: 1px solid #c0d5e8;
  color: #29445d;
}
.download_card .card_body {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.download_card h5 {
  margin-bottom: 0px;
  margin-top: 0px;
}
.download_card .theme_btn {
  margin-bottom: 0px;
}

.schedule_info {
  width: 60%;
  padding: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.schedule_info table {
  margin-bottom: 30px;
  margin-top: 20px;
  max-width: 500px;
}
.schedule_info table tr td {
  padding: 12px;
  border: 1px solid #ddd;
  font-size: 15px;
}
.schedule_info table tr td:nth-child(1) {
  width: 120px;
  font-weight: 600;
  background-color: #eee;
}
/*.schedule_info table tr.bg_light_green td {
  background-color: var(--color-green-medium);
}*/

/*** Conference Details Page ***/

.faculty_box {
  overflow: hidden;
  border-radius: 5px;
  -webkit-box-shadow: 0 1px 15px rgba(45, 45, 45, 0.2);
  box-shadow: 0 1px 15px rgba(45, 45, 45, 0.2);
  margin-bottom: 30px;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.faculty_box .faculty_img {
  height: 200px;
  overflow: hidden;
}
.faculty_box .faculty_img img {
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.faculty_box .faculty_info {
  padding: 10px;
  background-color: #eee;
  text-align: center;
}
.faculty_box .faculty_info h5 {
  margin-bottom: 3px;
  margin-top: 0;
  font-size: 15px;
  font-weight: 600;
}
.faculty_box .faculty_info p {
  margin-bottom: 0;
  color: #666;
}
.faculty_box:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 1px 3px rgba(45, 45, 45, 0.25);
  box-shadow: 0 1px 3px rgba(45, 45, 45, 0.25);
}

/*** Register Page **/

.register_page {
  padding: 0;
}
.register_page .row {
  margin-left: 0;
  margin-right: 0;
}
.register_page .row .img_container,
.register_page .row .text_content {
  min-height: 800px;
  width: 100%;
}
.register_page .img_container {
  background-size: cover;
}
.d_flex {
  display: flex;
}
.register_page .text_content {
  /*align-items: center;*/
  padding: 40px 15px 30px 40px;
}
.register_page .text_content .form_wrap {
  display: flex;
  width: 530px;
  padding-top: 20px;
}
.register_page .text_content .form_wrap .form_style {
  width: 100%;
}

.register_page .reg_content {
  padding: 40px 15px;  
  display: flex;
  justify-content: flex-end;
}
.register_page .reg_details_wrap {
  display: flex;
  width: 550px;
  /*padding-top: 20px;*/
}
.reg_pkg_info h4 {
  margin-bottom: 45px;
}
.reg_card {
  border: 1px solid var(--color-primary-lighter);
  margin-bottom: 20px;
}
.reg_link_card {
  width: 100%;
}

.reg_link_card.reg_link_card1 {
  border: 1px solid var(--color-primary-lighter);
  margin-bottom: 20px;
}
.reg_link_card.reg_link_card1 .card_title {
  background-color: var(--color-primary-lighter);
  color: var(--color-darkgray);
}

.reg_link_card.reg_link_card2 {
  border: 1px solid var(--color-orange-lighter);
  margin-bottom: 20px;
}
.reg_link_card.reg_link_card2 .card_title {
  background-color: var(--color-orange-lighter);
  color: var(--color-darkgray);
}

.reg_card .card_body {
  padding: 15px;
  font-size: 14px;
}
.card_title {
  padding: 10px;
  background-color: var(--color-primary-lighter);
  color: var(--color-darkgray);
}
.card_title h5 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 5px;
  color: inherit;
}
.card_title p {
  margin-bottom: 0;
  font-size: 14px;
  color: inherit;
}
.card_body table thead th {
  background-color: var(--color-lightgray3);
  font-size: 13px;
  vertical-align: top;
  text-align: center;
}
.card_body table tbody tr td {
  font-size: 13px;
}

.card_body p {
  margin-bottom: 10px;
}

.schedule_card_info .card_body table thead tr th:first-child {
  width: 160px;
}
.schedule_card_info .card_body table thead tr th:last-child {
  width: 250px;
}

.schedule_card_info .card_body table thead th {
  background-color: var(--color-primary-lighter);
}


.d_flex {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.d_flex span {
  font-size: 2rem;
}
.d_flex .small_box {
  width: 20%;
}
.d_flex .large_box {
  width: 70%;
}




/************/

/*** Downloads page ***/

.resource_card {
  padding: 20px 15px;
  border: 1px solid #c1d7ea;
  margin-top: -1px;
  text-align: left;
  background-color: #eff5fb;
  border-radius: 3px;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.resource_card h6 {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 0px;
}
.resource_card h5 {
  margin-bottom: 10px;
}
.resource_card:hover {
  background-color: #e5fbfb;
  /*border-color: #78c7c6;*/
}
.resource_card.youtube_channel {
  /*border-color: #ff9090;*/
  /*background-color: #ffd5d5;*/
}
.resource_card.youtube_channel:hover {
  /*background-color: #ffd0d0;*/
  /*border-color: #ff0000;*/
}
.resource_card.spl_note_card {
  border-color: #e4db89;
  background-color: #fff9c3;
}

.resource_card .theme_btn {
  margin-top: 15px;
}
.resource_card.youtube_channel .theme_btn.connect_btn {
  width: 180px;
  background-color: #04b0ad;
}

#downloads hr {
  margin-top: 40px;
  margin-bottom: 40px;
  border-top: 1px dashed #78c7c6;
}

#downloads .table-bordered > tbody > tr > td,
#downloads .table-bordered > tbody > tr > th,
#downloads .table-bordered > tfoot > tr > td,
#downloads .table-bordered > tfoot > tr > th,
#downloads .table-bordered > thead > tr > td,
#downloads .table-bordered > thead > tr > th {
  border: 1px solid #c0d5e8;
}

#downloads .table > thead > tr > th:nth-child(1),
#downloads .table > thead > tr > td:nth-child(1),
#downloads .table > tbody > tr > td:nth-child(1),
#downloads .table > thead > tr > th:nth-child(3),
#downloads .table > thead > tr > td:nth-child(3),
#downloads .table > tbody > tr > td:nth-child(3) {
  text-align: center;
}
#downloads .table > thead > tr > th:nth-child(1),
#downloads .table > thead > tr > td:nth-child(1),
#downloads .table > tbody > tr > td:nth-child(1) {
  width: 80px;
}

#downloads .table > thead > tr > th {
  background-color: #dbe6f1; /*c0d5e8*/
  vertical-align: top;
  color: #40709a;
  text-align: center;
}

/*** Training page ***/

/*#training {
	padding-bottom: 0;
}*/

#training .video_section {
  margin-top: 80px;
  text-align: center;
  padding: 50px 0;
}
#training .video_section h2 {
  color: #c1d6e8;
  margin-bottom: 50px;
}
.video_box {
  margin-bottom: 30px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #eee;
}
.video_box iframe {
  width: 100%;
  height: 300px;
  border: 0;
}
.video_box .video_title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 60px;
  margin-top: -5px;
}
.video_btn {
  width: 80px;
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.video_btn .theme_btn {
  min-width: 0px;
  width: 100%;
  height: 60px;
  line-height: 40px;
  font-size: 22px;
}
.title_text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 10px 15px;
}
.title_text h5 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

/*** Free Online page ***/

#free_online .font_18 {
  text-align: center;
}

.reg_sect {
  text-align: center;
  /*border: 8px groove #d3d3d3;*/
  padding: 40px 30px;
  border-radius: 2px;
}

.reg_sect h4 {
  font-size: 24px;
  color: #c1d6e8;
  margin-bottom: 15px;
  margin-top: 10px;
  /*font-weight: 600;*/
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.reg_sect .banner_btn {
  display: inline-block;
  background: url("../img/cloud-icon.png") center no-repeat;
  background-size: 130px;
  width: 130px;
  height: 90px;
  color: #fff;
  white-space: normal;
  line-height: 20px;
  padding-top: 37px;
  margin-top: 10px;
  -webkit-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.reg_sect .banner_btn span {
  font-size: 16px;
  /*line-height: 15px;*/
  /*font-weight: 300;*/
}
.reg_sect .banner_btn:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.5));
}

/***********************/

/*** Workshops page ***/

#workshops_page .page_text.font_18 ul {
  padding-top: 10px;
}
#workshops_page .page_text.font_18 ul li {
  font-size: 18px;
}

.workshop_highlights {
  padding-top: 40px;
}

.wokshop_imgs img {
  width: 100%;
}

/*********************/

/*** Gallery page ***/

.gallery_img_wrap .grid {
  width: 100%;
  text-align: center;
  display: block;
  margin: 50px auto 0;
}
.gallery_img_wrap .grid-item {
  display: inline-block;
  width: 31%;
  margin: 1.16%;
  overflow: hidden;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.gallery_img_wrap .col-xs-12 a {
  display: block;
}

.gallery_img_wrap .col-xs-12 .gallery_img_box .gall_img {
  height: auto;
  border: 1px solid #ddd;
  padding: 10px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.gallery_img_wrap .col-xs-12 .gallery_img_box .gall_img img {
  width: 100%;
}
.gallery_img_wrap .col-xs-12 .gallery_img_box:hover .gall_img {
  border-color: #04b0ac;
}
/******************/

/*** Contact Page ***/

#contact h3 {
  margin-bottom: 30px;
  margin-top: 0;
  font-size: 26px;
}
#contact .form_style {
  text-align: left;
  /*border: 8px groove #d3d3d3;*/
  padding: 20px;
  border-radius: 3px;
  background-color: var(--color-secondary-lighter2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
#contact .form_style h4 {
  color: #04b0ad;
}

.contact_info {
  width: 100%;
  padding: 40px 0 20px;
  text-align: left;
}
.contact_info h4 {
  font-size: 22px;
  margin-bottom: 20px;
  margin-top: 0;
  color: #04b0ad;
}
.contact_info h5 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
}
.contact_info p {
  line-height: 1.5;
  /*font-size: 15px;*/
  margin-bottom: 15px;
}

.contact_info ul.hashtags {
  margin-bottom: 20px;
  padding-left: 0;
}
.contact_info ul.hashtags li {
  display: inline-block;
  font-size: 16px;
  color: #111;
  font-weight: 500;
  position: relative;
  padding-right: 5px;
  margin-right: 6px;
}
.contact_info ul.hashtags li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.contact_info ul.hashtags li:not(:last-child):after {
  content: "|";
  position: absolute;
  right: -5px;
  font-size: 16px;
}

ul.follow_list {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  padding-top: 10px;
}
ul.follow_list li {
  display: inline-block;
  margin-right: 6px;
}
ul.follow_list li a {
  font-size: 18px;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 2px;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  color: #333;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
ul.follow_list li a:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  background-color: #04b0ad;
  color: #fff;
}
ul.follow_list li.fb a:hover {
  background-color: #3b5998;
}
ul.follow_list li.twit a:hover {
  background-color: #00acee;
}
ul.follow_list li.youtube a:hover {
  background-color: #ff0000;
}

ul.contact_list {
  list-style-type: none;
  margin-bottom: 20px;
  padding-left: 0;
}
ul.contact_list li {
  display: block;
  margin-bottom: 10px;
}
ul.contact_list li a {
  position: relative;
  font-size: 16px;
  display: block;
  text-decoration: none;
  color: #111;
  padding-left: 25px;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
ul.contact_list li a:before {
  content: "";
  font-family: FontAwesome;
  font-size: 16px;
  position: absolute;
  left: 0;
}
ul.contact_list li.phone a:before {
  content: "\f095";
}
ul.contact_list li.email a:before {
  content: "\f003";
}
ul.contact_list li.time a:before {
  content: "\f017";
}
ul.contact_list li.web a:before {
  content: "\f0ac";
}
ul.contact_list li.fax a:before {
  content: "\f1ac";
}
ul.contact_list li a:hover {
  color: #04b0ad;
}

/*** Footer section ***/

.freefoot {
  padding: 50px 0 60px;
  background-color: #021a31;
  color: #fff;
}
.freefoot h4 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.freefoot h5 {
  font-size: 16px;
  margin-bottom: 15px;
}
.freefoot .footlogo {
  padding: 30px 15px;
  text-align: center;
}
.freefoot .footlogo img {
  width: 200px;
}

.footfollow {
  text-align: left;
}
.footfollow ul {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
}
.footfollow ul li {
  display: inline-block;
  margin-right: 6px;
}
.footfollow ul li a {
  font-size: 18px;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 2px;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  color: #333;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.footfollow ul li a:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  background-color: #04b0ac;
  color: #fff;
}
.footfollow ul li.fb a:hover {
  background-color: #3b5998;
}
.footfollow ul li.twit a:hover {
  background-color: #00acee;
}
.footfollow ul li.youtube a:hover {
  background-color: #ff0000;
}
.footfollow ul.hashtags {
  margin-bottom: 20px;
}
.footfollow ul.hashtags li {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #b6d6df;
  position: relative;
  padding-right: 5px;
}
.footfollow ul.hashtags li:last-child {
  padding-right: 0;
}
.footfollow ul.hashtags li:not(:last-child):after {
  content: "|";
  position: absolute;
  right: -5px;
  font-size: 16px;
}

/*.footfollow p { font-size: 14px; }*/

.footcontact {
  text-align: left;
}
.footcontact ul {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
}
.footcontact ul li {
  display: block;
  margin-bottom: 10px;
}
.footcontact ul li a {
  position: relative;
  font-size: 16px;
  display: block;
  text-decoration: none;
  color: #ccc;
  padding-left: 25px;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.footcontact ul li a:before {
  content: "";
  font-family: FontAwesome;
  font-size: 16px;
  position: absolute;
  left: 0;
}
.footcontact ul li.phone a:before {
  content: "\f095";
}
.footcontact ul li.email a:before {
  content: "\f003";
}
.footcontact ul li.time a:before {
  content: "\f017";
}
.footcontact ul li.web a:before {
  content: "\f0ac";
}
.footcontact ul li.fax a:before {
  content: "\f1ac";
}
.footcontact ul li a:hover {
  color: #04b0ac;
}

/************ copyright ************/

#copyright {
  /*background-color: #001529;*/
  background-color: var(--color-primary-dark);
  padding: 18px 0px;
}
#copyright .container {
  position: relative;
}

#copyright p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 0px;
}
#copyright .copy p {
  text-align: left;
}
#copyright .company p {
  text-align: right;
}
#copyright .company p a {
  color: #fff;
  text-decoration: none;
}
#copyright .company p a:hover {
  color: #fff !important;
}
#copyright .company p a span.orange_text {
  color: #ff9c00;
}

/** Designed By **/

.designedby {
  position: absolute;

  width: 40px;
  height: auto;
  background-color: transparent;
  text-align: center;
  bottom: -3px;
  right: 5px;
  z-index: 50;
  overflow: hidden;
}

.designedby a {
  display: block;
}
.designedby img {
  display: inline-block;
  margin: auto;
  width: 25px;
  top: 6px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.designedby span {
  content: "";
  height: 6px;
  width: 30px;
  display: block;
  background-color: #ff6600;
  border-radius: 5px;
  position: relative;
  left: 0;
  right: 0;
  margin: auto;
  top: 6px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.designedby:hover span,
.designedby:hover img {
  top: 0;
}

/*****************/

/********** Back To Top Anchor ******/

.back_to_top {
  position: fixed;
  bottom: 70px;
  right: 30px;
  width: 45px;
  height: 45px;
  line-height: 42px;
  text-align: center;
  display: none;
  font-size: 22px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  cursor: pointer;

  z-index: 20;

  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.back_to_top:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: #00a85a;
  text-decoration: none;
}

/** Enq Form Modal Styles **/

.form_style .form-group {
  margin-bottom: 25px;
  position: relative;
}
.form_style .form-group .error_msg {
  font-size: 13px;
  color: #f24a46;
  position: absolute;
  left: 0;
  top: 100%;
  text-align: left;
}

.form_style .form-control {
  border-radius: 1px;
  height: 45px;
  border: 1px solid #ccc;
  color: #817575;
  font-weight: 500;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form_style select.form-control {
  background-color: #fff;
}
.form_style select.form-control option {
  font-weight: 600;
}
.form_style .form-control:focus {
  border-color: #04b0ad;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.form_style textarea.form-control {
  height: 80px;
  resize: none;
}

.form_style .theme_btn {
  margin-top: 5px;
}

.form_style .form-control::-webkit-input-placeholder {
  color: #817575;
}

.form_style .form-control::-moz-placeholder {
  color: #817575;
  opacity: 1;
}

.form_style .form-control:-ms-input-placeholder {
  color: #817575;
}

.form_style .form-control::-ms-input-placeholder {
  color: #817575;
}

.form_style .form-control::placeholder {
  color: #817575;
}

/*Modal Styles*/

.theme_modal .modal-dialog {
  margin: 60px auto 30px;
}

.theme_modal .modal-content {
  background-color: #21364a;
  border: 0px;
  -webkit-box-shadow: 0 2px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 25px rgba(0, 0, 0, 0.5);
}
.theme_modal .modal-title {
  text-align: left;
  color: #c1d6e8;
  text-transform: uppercase;
}
.theme_modal .modal-header {
  border-bottom: 1px solid #405263;
  padding: 15px 20px;
}
.theme_modal .modal-body {
  padding: 30px 20px;
}
.theme_modal .modal-header .close {
  color: #c1d6e8;
  opacity: 0.9;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #40709a;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.theme_modal .modal-header .close:hover {
  background-color: #04b0ad;
}
.theme_modal .form_style .form-control {
  border-radius: 1px;
  height: 45px;
  border: 1px solid #405263;
  color: #c1d6e8;
  font-weight: 500;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
}
.theme_modal .form_style .form-control:focus {
  border-color: #04b0ad;
}
.theme_modal .form_style .form-control::-webkit-input-placeholder {
  color: #798a98;
}

.theme_modal .form_style .form-control::-moz-placeholder {
  color: #798a98;
  opacity: 1;
}

.theme_modal .form_style .form-control:-ms-input-placeholder {
  color: #798a98;
}

.theme_modal .form_style .form-control::-ms-input-placeholder {
  color: #798a98;
}

.theme_modal .form_style .form-control::placeholder {
  color: #798a98;
}

/**** Custom Modal Styles ****/

.custom_modal .modal-content {
  /*background: #a5e6e5;*/
  /*background: #2a547a;*/
  background: var(--color-primary);
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}
.custom_modal .close {
  color: #fff;
  opacity: 1;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #2eccc9;
  position: absolute;
  right: -15px;
  top: -15px;
}
.custom_modal .modal-body .info {
  padding: 50px 20px 30px;
  text-align: center;
}
.custom_modal.custom_img_modal .modal-body .info,
.custom_modal.custom_img_modal .modal-body {
  padding: 0;
}
.custom_modal.custom_img_modal .modal-body .info {
  overflow: hidden;
}

.custom_modal .modal-body .info hr {
  border-top: 1px dashed #999;
  margin: 25px 0;
}
.custom_modal .modal-body .info h4 {
  font-size: 24px;
  color: #42dcd9;
  line-height: 1.5;
  margin-bottom: 30px;
}

.custom_modal .modal-body .info .post_title {
  position: relative;
  display: inline-block;
}

.custom_modal .modal-body .info .post_title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  /*border-top: 2px dashed #ffc107;*/
  border-top: 2px dashed #ffd200;
}

.custom_modal .modal-body .info h5 {
  font-size: 20px;
  color: #222;
  line-height: 1.5;
  margin-bottom: 25px;
}
.custom_modal .modal-body .info ul {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  text-align: center;
}
.custom_modal .modal-body .info ul li {
  display: block;
  font-size: 15px;
  color: #222;
  margin-bottom: 10px;
}

.custom_modal .modal-body .info .theme_info_list ul {
  text-align: left;
  margin-bottom: 20px;
}
.custom_modal .modal-body .info .theme_info_list ul li {
  display: block;
  font-size: 18px;
  color: #fff;
  font-weight: 300;
}

.custom_modal .modal-body .info .quick_social_link ul {
  text-align: left;
}
.custom_modal .modal-body .info .quick_social_link ul li {
  display: inline-block;
}

.custom_modal .modal-body .info .quick_social_link ul li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.custom_modal .modal-body .info p {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
}
.custom_modal .modal-body .info p strong {
  font-weight: 500;
}
/*#exibi_modal .modal-body .info ul.general_list li,*/
.custom_modal .modal-body .info ul.general_list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 25px;
  text-align: left;
}
/*#exibi_modal .modal-body .info ul.general_list li:last-child,*/
.custom_modal .modal-body .info ul.general_list li:last-child {
  margin-bottom: 0;
}
/*#exibi_modal .modal-body .info ul.general_list li:before,*/
.custom_modal .modal-body .info ul.general_list li:before {
  content: "\f00c";
  font-family: FontAwesome;
  position: absolute;
  font-size: 17px;
  color: #14bd39; /*#ec8e15;*/
  left: 0;
}

.custom_modal .modal-body .connect_btn {
  width: 210px;
  padding: 12px 20px;
}

.custom_modal .modal-body .info .theme_btn:not(:last-child) {
  margin-right: 6px;
}


.custom_modal .modal-body .info table {
  width: 100%;
  margin: 20px auto;
}
.custom_modal .modal-body .info table tbody tr td {
  border: 1px solid var(--color-primary-dark);
  padding: 8px;
  font-size: 15px;
  color: var(--color-lightgray3);
  text-align: left;
  position: relative;
}
.custom_modal .modal-body .info table tbody tr td:nth-child(1) {
  font-weight: 500;
  width: 160px;
  background-color: rgba(0,0,0,0.15);
  color: #c1d6e8;

}
.custom_modal .modal-body .info table tbody tr td:nth-child(1):before {
  content: ':';
  position: absolute;
  right: 8px;
  font-size: 16px;
  color: #c1d6e8;
}


/** Exhibition modal ***/
#exibi_modal .modal-body .info ul.contact_list li span {
  width: 90px;
  display: inline-block;
  text-align: left;
}
#exibi_modal .modal-body .info ul.contact_list li:last-child {
  margin-bottom: 0;
}
#exibi_modal .modal-body .info ul.contact_list li a {
  position: relative;
  display: inline-block;
  padding: 5px 10px 5px 45px;
  text-align: left;
  color: #fff;
  width: 160px;
  background-color: #ffa22b;
  border-radius: 30px;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
#exibi_modal .modal-body .info ul.contact_list li a:before {
  content: "";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  top: -3px;
  text-align: center;
  background-color: #ec8e15;
  font-size: 15px;
  color: #fff;
  width: 36px;
  height: 36px;
  line-height: 38px;
  border-radius: 36px;
}
#exibi_modal .modal-body .info ul li.tel a:before {
  content: "\f095";
}
#exibi_modal .modal-body .info ul.contact_list li.cell a:before {
  content: "\f10b";
  font-size: 22px;
}
#exibi_modal .modal-body .info ul.contact_list li a:hover {
  background-color: #ff9813;
  text-decoration: none;
}
#exibi_modal .modal-body .info ul.contact_list li a:active,
#exibi_modal .modal-body .info ul.contact_list li a:focus {
  outline: none;
  text-decoration: none;
  color: #fff;
}
/***********************/

/*** Special Event Modal ***/

#special_event.custom_modal .modal-body .info {
  text-align: left;
}

/****************************/

@media screen and (max-width: 480px) {
  #exibi_modal .modal-body .info,
  .custom_modal .modal-body .info {
    padding: 50px 0px;
  }
  #exibi_modal .close,
  .custom_modal .close {
    top: -5px;
    right: -5px;
  }
}

/*** Responsive CSS ***/

@media screen and (max-width: 1199px) {
  .top_line .top_contact + .container .row .col-xs-12 {
    width: 100%;
  }
  .main_navbar .logo_box img {
    width: 140px;
  }
  .foundation_logo { padding-right: 200px; }
  .founder_image {
    width: 110px;
  }
  .main_navbar p.foundation_title {
    font-size: 22px;
    margin-top: 46px;
  }
  .founder_image p {
    font-size: 14px;
  }
  .main_navbar.navbar-default hr {
    top: 90px;
  }

  .main_navbar.navbar-default .navbar-nav li:not(:last-child) {
    margin-right: 15px;
  }

  .main_navbar.navbar-default .navbar-nav li a {
    /*padding: 10px 12px 10px 0px;*/
    padding: 15px 14px;
    font-size: 16px;
  }
  .about_banner .about_banner_cont {
    width: 72%;
  }

  .banner_new .spl_info_wrap {
    width: 80%;
    padding-top: 80px;
  }

  #main_banner .new_dates .banner_content .ban_text {
    width: 95%;
  }

  .index_sect h2 {
    font-size: 30px;
  }

  .speaker_card { height: 320px; }
  .speaker_card .card_body {
    right: 10px;
    left: 10px;
    min-width: 0;
    width: auto;
  }
  .speaker_card .card_body h4 {
    font-size: 14px;
  }
  .speaker_card .card_body span {
    font-size: 13px;
  }
  .schedule_section .text_content .schedule_card_wrap {
    width: 430px;
  }
  .register_page .text_content .form_wrap {
    width: 420px;
  }
  .register_page .reg_details_wrap {
    width: 440px;
  }
  .register_page .row .img_container img {
    width: 80%;
  }

  .oc_card { 
    /*width: 30% */
    width: 40%;
    height: 360px;
  }

}

@media screen and (max-width: 1024px) {
  .menu_trig {
    display: inline-block;
    padding: 8px 12px;
  }
  .quick_login { display: none; }

  .top { display: none; }
  .main_navbar.navbar-default {
    padding: 0;
    min-height: 0;
    height: auto;
  }

  .main_navbar .navbar-nav {
    display: none;
  }
  .main_navbar.navbar-default .navbar-brand {
    height: auto;
    padding-left: 0;
  }
  .main_navbar hr {
    display: none;
  }

  .founder_image {
    width: 120px;
    position: relative;
    right: 15px;
    left: 0px;
    top: 120px;
    margin: auto;
  }

  #main_banner .item
	/*#main_banner .item .container*/ {
    /*height: 580px;*/
    height: 640px;
  }
  #main_banner .item {
    padding-top: 20px;
  }

  .main_banner .item .container {
    width: 100%;
  }
  .main_banner .banner2 .banner_content img {
    width: 320px;
  }
  .main_banner .banner_content h4 {
    font-size: 20px;
  }
  .year_style span {
    font-size: 58px;
  }
  .main_banner .banner_content p {
    font-size: 15px;
  }
  .main_banner .banner_btn {
    width: 110px;
    background-size: 110px;
    padding-top: 37px;
    margin-top: 0;
  }
  .main_banner .banner_btn span {
    font-size: 14px;
  }
  .main_banner .banner1 .banner_btn {
    bottom: 90px;
  }

  #main_banner .banner_2020 .banner_content .ban_text {
    width: 60%;
  }
  #main_banner .banner_2020 .banner_content .ban_img_box {
    width: 38%;
  }

  #main_banner .banner_2020 .banner_content {
    width: 90%;
    margin: auto;
  }

  .inner_banner_text {
    padding: 200px 0 0;
  }

  .free_praise_banner_cont {
    width: 95%;
  }
  /*.inner_banner_text {
	    padding: 340px 0 0;
	}*/
}

@media screen and (max-width: 991px) {
  .foundation_logo {
    padding-right: 50px;
  }
  .top_line p.foundation_title {
    font-size: 18px;
  }
  .quick_cont_link ul li a {
    font-size: 14px;
    padding-left: 25px;
  }
  .quick_cont_link ul li a:before {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
  }

  #main_banner .item.banner1 img {
    bottom: 100px;
  }
  #main_banner .banner1 .banner_btn {
    bottom: 150px;
  }

  #main_banner .banner_2021 .banner_content h3 {
    font-size: 24px;
  }
  /*#main_banner .banner_2021 .banner_content .duration {
    width: 200px;
    font-size: 15px;
  }*/
  #main_banner .banner_2021 .banner_content .ban_text h3 { font-size: 36px; }
  #main_banner .banner_2021 .banner_content .ban_text h3 span { font-size: 60px; }
  /*#main_banner .banner_2021 .banner_content .ban_text h3 br { display: none; }*/

  .about_banner .about_banner_cont {
    width: 80%;
  }
  .text_bot_box p {
    font-size: 20px;
  }
  .free_agenda_banner_cont {
    width: 95%;
  }
  .fa_img_box img {
    width: 180px;
  }
  .fa_ban_text {
    width: 67%;
  }
  .fa_ban_text .theme_info_list li {
    font-size: 18px;
  }
  .fp_img_box {
    width: 40%;
  }
  .fp_ban_text {
    width: 60%;
    padding-left: 10px;
  }
  .quote_box {
    width: 180px;
    font-size: 13px;
  }
  .quote_box.one {
    left: 10px;
  }
  .quote_box.three {
    bottom: 30px;
    left: 80px;
    right: auto;
  }

  .banner_new .spl_info_wrap {
    width: 100%;
    padding: 80px 25px 20px;
  }
  #main_banner .banner_content p {
    font-size: 16px;
  }

  .prof_info {
    padding: 50px 0px 0px;
  }

  .schedule_wrap .schedule {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .upcoming_conf .conference_box .schedule_info,
  .upcoming_conf .conference_box .icon_box,
  .icon_box,
  .schedule_info {
    width: 100%;
  }

  .theme_tabs {
    margin-bottom: 30px;
  }

  .feedback_sect .feedback_box {
    margin-bottom: 30px;
    min-height: 180px;
  }

  .contact_info {
    padding-bottom: 40px;
  }

  .footfollow {
    margin-bottom: 30px;
  }

  .schedule_section .text_content .schedule_card_wrap {
    width: 740px;
    margin: auto;
  }
  .schedule_section .row .text_content {
    min-height: 0;
    height: auto;
    text-align: center;
    padding: 50px 15px;
  }
  .schedule_section .row .text_content .text-left {
    text-align: center;
  }
  .speaker_card {
    height: 360px;
  }
  .speaker_card .card_body h4 {
    font-size: 16px;
  }
  .speaker_card .card_body span {
    font-size: 15px;
  }

  .freefoot .container .row .col-xs-12:last-child {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px dashed var(--color-lightgray3);
  }

  .register_page .container-fluid {
    width: 700px;
    margin: auto;
  }
  .register_page .text_content .form_wrap,
  .register_page .reg_details_wrap { width: 100%; }
  .register_page .row .img_container, 
  .register_page .row .text_content {
    padding: 15px;
    min-height: 600px;
  }
  .contact_info { padding-top: 0; }

  .oc_cards_wrapper { width: 100%; }
  /*.oc_card .card_body {
    padding: 40px 15px 5px;
  }*/
  .oc_card .card_body {
    min-width: 0;
    width: auto;
    right: 15px
  }

}

@media screen and (max-width: 767px) {
  body .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .top_line .container,
  #main_banner .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .floating_menu ul li .trig_icon,
  .floating_menu ul li {
    width: 34px;
    height: 34px;
  }
  .floating_menu ul li .trig_icon i {
    line-height: 34px;
    font-size: 16px;
  }

  .top_line {
    padding: 5px 0;
  }
  #main_banner {
    margin-top: 90px;
  }

  .foundation_logo .logo_box img {
    width: 90px;
  }

  .top_contact {
    display: none;
  }
  .top_line p.foundation_title,
  .top_line.fixed p.foundation_title {
    font-size: 15px;
  }
  .top_line p.foundation_title strong,
  .top_line.fixed p.foundation_title strong {
    font-size: 18px;
  }
  .foundation_logo {
    padding-right: 0px;
    width: 280px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .top {
    top: 0;
    padding: 0;
  }
  .top.fixed .main_navbar .logo_box img {
    width: 70px;
  }
  .menu_trig {
    top: 44px;
  }
  #main_banner .item {
    height: 600px;
  }
  .main_banner {
    padding-top: 150px;
    margin-top: 0px;
  }
  .main_banner .banner1 .banner_btn {
    bottom: 20px;
  }
  .main_banner .banner_content img {
    width: auto;
  }

  #main_banner .banner_2020 .banner_content {
    padding-top: 1%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #main_banner .banner_2020 .banner_content .ban_text {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  #main_banner .banner_2020 .banner_content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  #main_banner .banner_2020 .banner_content .duration {
    width: 180px;
    margin: 0 auto 20px;
    font-size: 14px;
  }
  #main_banner .banner_2020 .banner_content .ban_img_box {
    display: none;
  }
  #main_banner .banner_2021 .banner_content {
    padding-top: 60px;
  }

  #main_banner .banner_2021_two .banner_content {
    flex-wrap: wrap;
    flex-direction: column;
    padding-top: 0;
  }
  #main_banner .banner_2021_two .banner_content .ban_text {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }

  #main_banner .banner_2021 .banner_content .ban_text h3 {
    font-size: 28px;
  }
  #main_banner .banner_2021 .banner_content .ban_text h3 span {
    font-size: 48px;
  }

  #main_banner .banner_2021_two .banner_content h3 {
    font-size: 22px;
  }
  #main_banner .banner_2021_two .banner_content .duration {
    margin: 0 auto 30px;
  }
  #main_banner .banner_2021_two .banner_content .ban_img_box { width: 35%; }

  .ftext h4 {
    font-size: 22px;
  }
  .text_bot_box p {
    font-size: 18px;
  }

  .free_agenda_banner_cont {
    padding-top: 1%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .fa_ban_text {
    width: 90%;
    padding-top: 15px;
  }
  .fa_ban_text h4 {
    font-size: 22px;
    text-align: center;
  }
  .fa_ban_text .theme_info_list li {
    font-size: 16px;
  }

  .free_praise_banner_cont {
    width: 90%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 1%;
  }
  .fp_img_box {
    width: 50%;
  }
  .fimage {
    margin-right: 15px;
  }
  .fp_ban_text {
    width: 100%;
    min-height: 0;
    height: auto;
  }
  .fp_ban_text h4 {
    text-align: center;
    font-size: 22px;
  }
  .quote_box {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
  }
  .quote_box.one,
  .quote_box.two,
  .quote_box.three {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
  .quote_box:before {
    left: 30px;
    border-top: 15px solid #086ab4;
    border-right: 25px solid transparent;
  }

  #main_banner .new_dates .banner_content h3,
  #main_banner .new_dates .banner_content .annoucement_title {
    font-size: 28px;
  }
  #main_banner .new_dates .banner_content .date_row {
    font-size: 46px;
  }

  #mission_sect .page_text {
    padding: 10px;
  }
  .about_foundation.index_sect .text-left {
    text-align: center;
  }

  .schedule_section .text_content .schedule_card_wrap {
    width: 100%;
  }

  .speaker_card {
    height: 320px;
  }

  .inner_banner {
    margin-top: -20px;
    min-height: 220px;
  }

  .inner_banner_text {
    padding: 120px 0 0;
  }

  .register_page .container-fluid {
    width: 100%;
    margin: auto;
  }
  .about_foundation img {
    max-width: 100%;
  }

  #about_us_page .about_foundation .page_text {
    padding-top: 15px;
  }

  .prof_info p,
  .about_foundation p,
  #about_us_page .page_text p,
  .page_text ul li,
  .about_foundation .page_text li,
  .spl_message p,
  .font_18 p,
  #workshops_page .page_text.font_18 ul li {
    font-size: 16px;
  }

  .index_sect h1,
  .inner_banner h2,
  .objectives h2,
  .inner_page h2,
  #contact h3 {
    font-size: 24px;
  }
  .free_online h1 {
    font-size: 22px;
  }
  .free_online h1 strong {
    font-size: 24px;
  }
  .inner_banner h2 {
    margin-bottom: 0;
  }
  .inner_page h4 {
    font-size: 18px;
  }
  #contact h3 {
    margin-bottom: 0;
    line-height: 1.3;
  }

  .about_foundation .page_text {
    padding-top: 30px;
    padding-bottom: 0px;
  }

  .freefoot .footlogo img {
    width: 180px;
  }

  .feedback_sect .feedback_box,
  .connect_box {
    margin-bottom: 30px;
  }

  .online_list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .online_list .online_list_item {
    width: 90%;
    margin-bottom: 30px;
    min-height: 180px;
  }

  .gallery_img_wrap .grid-item {
    width: 45%;
    margin: 2.5%;
  }

  #copyright .copy p,
  #copyright .company p {
    text-align: center;
  }

  .wokshop_imgs {
    margin-bottom: 30px;
  }

  .back_to_top {
    right: 15px;
  }

  .oc_card {
    margin: 2%;
    width: 46%;
  }

  #contact { padding: 50px 0; }

  #copyright p {
    text-align: center;
    padding-bottom: 30px;
  }
  .designedby {
    right: 0;
    left: 0;
    margin: auto;
  }
}

@media screen and (max-width: 640px) {
  .download_card .card_body {
    flex-direction: column;
    padding: 15px;
  }
  .download_card h5 { margin-bottom:10px }
}

@media screen and (max-width: 560px) {
  .welcome_msg .messanger_img {
    float: none;
    margin-top: 0;
    margin-left: 0;
    width: 200px;
  }
  .main_banner {
    padding-top: 120px;
  }

  .main_banner .item,
  .main_banner .item .container {
    height: 380px;
  }
  #main_banner .banner1 .banner_btn {
    width: 90px;
    background-size: 90px;
    bottom: 120px;
  }
  #main_banner .banner1 .banner_btn span {
    font-size: 15px;
  }
  .main_banner .banner2 .banner_content img {
    width: 220px;
  }

  .main_banner .banner_content h4 {
    font-size: 18px;
  }
  .year_style span {
    font-size: 40px;
  }

  .main_banner .banner_btn {
    width: 95px;
    background-size: 95px;
    padding-top: 35px;
    margin-top: 0;
    padding-left: 4px;
    padding-right: 4px;
  }
  .main_banner .banner_btn span {
    font-size: 13px;
  }
  #main_banner .banner_new .banner_content .spl_info_wrap h4 {
    font-size: 20px;
  }
  #main_banner .banner_new .banner_content .spl_info_wrap p,
  #main_banner .banner_2020 .banner_content p {
    font-size: 14px;
  }

  #main_banner .banner_2021_two .banner_content .ban_img_box {
    width: 50%;
  }
  .index_sect h2 {
    font-size: 26px;
  }

  .text_bot_box p br {
    display: none;
  }

  .schedule_wrap .schedule_info .btn_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .schedule_wrap .btn_wrap .theme_btn:not(:last-child) {
    margin-right: 0px;
    margin-bottom: 15px;
  }

  .gallery_img_wrap .col-xs-12 .gallery_img_box .gall_img {
    height: 160px;
  }

  .event_basic_info_sect .col-xs-6 { width: 100%; }
  .conf_info_card { text-align: center; }

  .schedule_section .row .img_container {
    min-height: 350px;
  }
  .schedule_section .text_content .schedule_card_wrap .card { width: 100%; }

  .speakers_section .col-xs-6 { width: 100%; }
  .speaker_card { height: auto;  }
  .title_card { margin-bottom: 15px;  }

  .free_online .connect_box { width: 100%; }

  .register_page .row .img_container, .register_page .row .text_content {
    min-height: 0;
    height: auto;
    margin-bottom: 30px;
  }
  .register_page .reg_content {
    padding: 10px 15px;
  }

}
@media screen and (max-width: 480px) {
  .foundation_logo .logo_box img {
    width: 100px;
  }
  .gallery_img_wrap .col-xs-12 {
    width: 100%;
  }
  .gallery_img_wrap .col-xs-12 .gallery_img_box .gall_img {
    height: auto;
  }

  #main_banner .item {
    height: 630px;
  }

  #main_banner .banner_2020 .banner_content h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  #main_banner .banner_2020 .banner_content .ban_text h5 {
    font-size: 16px;
  }
  #main_banner .banner_2020 .banner_content .ban_img_box {
    width: 70%;
  }
  .banner_new .spl_info_wrap .connect_btn:first-child {
    margin-right: 0px;
  }
  .fa_img_box img {
    width: 150px;
  }
  .ftext h4,
  .fa_ban_text h4,
  .fp_ban_text h4 {
    font-size: 18px;
  }
  .text_bot_box p {
    font-size: 16px;
  }

  #main_banner .new_dates .banner_content .ban_text { padding-top: 10%; }
  #main_banner .new_dates .banner_content h3,
  #main_banner .new_dates .banner_content .annoucement_title {
    font-size: 24px;
  }
  #main_banner .new_dates .banner_content .date_row {
    font-size: 32px;
  }

  #contact h3 {
    font-size: 22px;
  }

  .ban_logo {
    display: none;
  }
  .conference_box,
  .schedule_info {
    padding: 20px 15px;
  }

  .gallery_img_wrap .grid-item {
    width: 90%;
    margin: 5%;
  }

  .d_flex .small_box {
    width: 90px;
  }
  .form_style .d_flex .small_box .form-control {
    padding: 6px;
  }
   

}

@media screen and (max-width: 420px) {
  #main_banner .banner1 .banner_btn {
    width: 80px;
    background-size: 80px;
    bottom: 110px;
  }
  #main_banner .banner1 .banner_btn span {
    font-size: 14px;
  }

  .mobile_header .mobile_logo_box {
    width: 85px;
    left: 10px;
  }
  .mobile_header .found {
    left: 100px;
    top: 30px;
  }
  .mobile_header .found p.foundation_title {
    font-size: 16px;
    margin-top: 2px;
    padding-right: 70px;
  }
  .menu_trig {
    right: 10px;
    padding: 8px 12px;
    top: 45px;
  }

  .main_banner .banner_content h4 {
    font-size: 16px;
  }
  .year_style span {
    font-size: 30px;
  }
  .main_banner .banner1 .banner_btn {
    bottom: 220px;
  }
  #main_banner .banner_2021_two .banner_content .ban_text { padding-top: 20px; }
  #main_banner .banner_2021_two .banner_content .ban_img_box {
    width: 75%;
  }
  #main_banner .banner_2021 .banner_content .ban_text h3 {
    font-size: 22px;
  }

  .oc_card {
    width: 90%;
    margin: 0 auto 20px;
    height: auto
  }

}

@media screen and (max-width: 380px) {
  .mobile_header .found p.foundation_title {
    font-size: 15px;
  }
  .main_banner .banner_content h4 {
    font-size: 16px;
    letter-spacing: 2px;
  }
  .year_style span {
    font-size: 30px;
    margin-right: 60px;
  }
  #main_banner .banner_2021 .banner_content .ban_text h3 br { display: none; }

}
@media screen and (max-width: 380px) {
  .mobile_header .found p.foundation_title {
    font-size: 14px;
  }
}
