#ProgressBar {
  width: 100%;
  height: 30px;
  border: 0px solid black;
  border-radius: 7px;
  padding-top: 4px;
}

#Progress1 {
  width: 92%;
  background-color: #4A90E2;
  height: 25%;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  border-color: #4A90E2;

  animation-name: progressBar;
  animation-iteration-count: 2;
  animation-duration: 5s;
}
#Progress2 {
  width: 98%;
  background-color: #4A90E2;
  height: 30%;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  border-color: #4A90E2;

  animation-name: progressBar;
  animation-iteration-count: 2;
  animation-duration: 5s;
}
#Progress3 {
  width: 96%;
  background-color: #4A90E2;
  height: 25%;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  border-color: #4A90E2;

  animation-name: progressBar;
  animation-iteration-count: 2;
  animation-duration: 5s;
}
#Progress4 {
  width: 95%;
  background-color: #4A90E2;
  height: 25%;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  border-color: #4A90E2;

  animation-name: progressBar;
  animation-iteration-count: 2;
  animation-duration: 5s;
}


@keyframes progressBar {
  0% {
    width: 10%;
  }

  100% {
    width: 50%;
  }
}


.zoom {
    padding: 18px;
    transition: transform 1s; /* Animation */
    width: auto;
    height: auto;
    margin: 0 auto;
}

.zoom:hover {
    transform: scale(1.43); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
	/*opacity: 0.7;*/
}



.zoom1 {
    padding: 0px;
    transition: transform 1s; /* Animation */
    width:  auto;
    height: auto;
    margin: 0 auto;
}

.zoom2 {
    padding: 0px;
    transition: transform 1s; /* Animation */
    width:  auto;
    height: auto;
    margin: 0 auto;
}

.zoom1:hover {
    transform: scale(1.01); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.zoom2:hover {
    transform: scale(1.2); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.clients {
  text-align: center;
  padding: 0;
    width: 100%;
}

.logo3 {
  width: 13%;
  display: inline-block;
  vertical-align: bottom;
    margin: 0px 5px 5px 5px;
}

li img {
  max-width: 96%;
  height: auto;
}


.buttons {
    box-shadow: 0px 5px 11px -2px rgba(0, 0, 0, 0.18), 0px 4px 12px -7px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    display: block;
    width: 30px;
    height: 30px;
    margin: 18px 0px 0px 10px;
    position: relative;
    -webkit-transition: all .1s ease-out;
    transition: all .1s ease-out;
}

.buttons:active,
.buttons:focus,
.buttons:hover {
  box-shadow: 0 0 4px rgba(0,0,0,.14),
    0 4px 8px rgba(0,0,0,.28);
}

.buttons:not(:last-child) {
  width: 25px;
  height: 25px;
  margin: 15px auto 0;
  opacity: 0;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
}
.share {
    display: block;
    position: absolute;
    float: right;
    left: 0px;
    margin: 32% 0px 0px 0px;
    width: 3%;
	display: none;
}
.share
.buttons:not(:last-child) {
  opacity: 1;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
      margin: 19px 0px 19px 15px;
}

/* Unessential styling for sliding up buttons at differnt speeds */
/*.button:nth-last-child(1) {
  -webkit-transition-delay: 25ms;
          transition-delay: 25ms;
  background-image: url('images/if_contact_126567%20(1).png');
  background-size: contain;
}*/

.buttons:nth-last-child(1) {
  -webkit-transition-delay: 25ms;
          transition-delay: 25ms;
background-image:url("/en/images/contact1.svg");
  background-size: contain;
}

.buttons:not(:last-child):nth-last-child(2) {
  -webkit-transition-delay: 50ms;
          transition-delay: 20ms;
  background-image: url('images/Facebook-Flat.png');
  background-size: contain;
}

.buttons:not(:last-child):nth-last-child(3) {
  -webkit-transition-delay: 75ms;
          transition-delay: 40ms;
  background-image: url('images/Twitter-Flat.png');
  background-size: contain;
}

.buttons:not(:last-child):nth-last-child(4) {
  -webkit-transition-delay: 100ms;
          transition-delay: 60ms;
  background-image: url('images/linkedin.png');
  background-size: contain;
}
/*
.buttons:not(:last-child):nth-last-child(5) {
  -webkit-transition-delay: 100ms;
          transition-delay: 60ms;
  background-image: url('images/contact1.svg');
  background-size: contain;
}
*/



/* Show tooltip content on hover */

[tooltip]:before {
  bottom: 25%;
  font-family: arial;
  font-weight: 600;
  border-radius: 2px;
  background: #585858;
  color: #fff;
  content: attr(tooltip);
  font-size: 12px;
  visibility: hidden;
  opacity: 0;
  padding: 5px 7px;
  margin-right: 12px;
  position: absolute;
  right: 100%;
  white-space: nowrap;
}

[tooltip]:hover:before,
[tooltip]:hover:after {
  visibility:hidden;
  opacity: 1;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #28429c;
  background-color: transparent;
}

/*.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: deepskyblue;
  background-color: transparent;
}*/

.navbar-default .navbar-nav > li > .nav-active{
	 color: deepskyblue !important;
  background-color: transparent;

}


#demo-1 {
			position: relative; /* can either be relative, absolute or fixed. If position is not set (i.e. static), it would be set to "relative" by script */
			overflow: hidden; /* to bound the empty top space created by inner element's top margin */
			width: 100%;
			min-height: 650px;
			background-color: #999;
		}

#hexagon {
	width: auto;
	height: auto
	background: white;
	position: relative;
}
#hexagon:before {
	content: "";
	position: absolute;
	top: -25px;
	left: 0;
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-bottom: 25px solid deepskyblue;
}
#hexagon:after {
	content: "";
	position: absolute;
	bottom: -25px;
	left: 0;
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-top: 25px solid deepskyblue;
}



.variant-color2 {
	background: linear-gradient(270deg, #29469e,#00afed,#29469e);
	background-size: 400% 400%;
	-webkit-animation: Gradient 10s ease infinite;
	-moz-animation: Gradient 10s ease infinite;
	animation: Gradient 10s ease infinite;
}


    @-webkit-keyframes Gradient {
		0%{background-position:0% 50%}
		50%{background-position:100% 50%}
		100%{background-position:0% 50%}
	}
	@-moz-keyframes Gradient {
		0%{background-position:0% 50%}
		50%{background-position:100% 50%}
		100%{background-position:0% 50%}
	}
	@keyframes Gradient {
		0%{background-position:0% 50%}
		50%{background-position:100% 50%}
		100%{background-position:0% 50%}
	}

.variant-color4 {
	background: linear-gradient(120deg, green,#215eab,yellow);
	background-size: 400% 400%;
	-webkit-animation: Gradient 10s ease infinite;
	-moz-animation: Gradient 10s ease infinite;
	animation: Gradient 10s ease infinite;
}


    @-webkit-keyframes Gradient {
		0%{background-position:0% 50%}
		50%{background-position:100% 50%}
		100%{background-position:0% 50%}
	}
	@-moz-keyframes Gradient {
		0%{background-position:0% 50%}
		50%{background-position:100% 50%}
		100%{background-position:0% 50%}
	}
	@keyframes Gradient {
		0%{background-position:0% 50%}
		50%{background-position:100% 50%}
		100%{background-position:0% 50%}
	}


.variant-color3 {
	/*background: linear-gradient(270deg, #01afeb,#00afed,#29469e);*/
	background-size: auto;
	-webkit-animation: Gradient 30s ease infinite;
	-moz-animation: Gradient 30s ease infinite;
	animation: Gradient 30s ease infinite;
}


    @-webkit-keyframes Gradient {
		0%{background-position:0% 50%}
		50%{background-position:100% 50%}
		100%{background-position:0% 50%}
	}
	@-moz-keyframes Gradient {
		0%{background-position:0% 50%}
		50%{background-position:100% 50%}
		100%{background-position:0% 50%}
	}
	@keyframes Gradient {
		0%{background-position:0% 50%}
		50%{background-position:100% 50%}
		100%{background-position:0% 50%}
	}


.variant-color1 {
	background: linear-gradient(270deg, white,deepskyblue,white);
	background-size: 400% 400%;
	-webkit-animation: Gradient 30s ease infinite;
	-moz-animation: Gradient 30s ease infinite;
	animation: Gradient 30s ease infinite;
}


    @-webkit-keyframes Gradient {
		0%{background-position:0% 50%}
		50%{background-position:100% 50%}
		100%{background-position:0% 50%}
	}
	@-moz-keyframes Gradient {
		0%{background-position:0% 50%}
		50%{background-position:100% 50%}
		100%{background-position:0% 50%}
	}
	@keyframes Gradient {
		0%{background-position:0% 50%}
		50%{background-position:100% 50%}
		100%{background-position:0% 50%}
	}


/*.nav>li>a {
    position: relative;
    display: block;
    padding: 10px 15px;

}*/

#triangle-topleft {
	width: 0;
	height: 0;
	border-top: 100px solid deepskyblue;
	border-right: 100px solid transparent;
}

#triangle-bottomright {
	width: 0;
	height: 0;
	border-bottom: 100px solid deepskyblue;
	border-left: 100px solid transparent;
    float: right;
}

#triangle-bottomleft {
	width: 0;
	height: 0;
	border-bottom: 100px solid deepskyblue;
	border-right: 100px solid transparent;
}


#triangle-topright {
	width: 0;
	height: 0;
    float: right;
	border-top: 100px solid deepskyblue;
	border-left: 100px solid transparent;

}

.border {
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
    margin: 0 45%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.welcome-section:hover .border {
    margin: 0 30%;
     border-bottom: 1px solid deepskyblue;

}
.welcome-section:hover h4 {

     color:deepskyblue;


}

.feature-2 .border {
    margin-top: 20px;
    margin-left: 49.999%;
    margin-right: 49.999%;
	border-color: #fff;
}

.feature-2:hover .border {
    margin-left: 0%;
    margin-right: 0%;
}
.feature-3:hover .border {
    margin: 0 35%;
}

.bgc{
    -webkit-filter: grayscale(100%);
     filter: grayscale(100%);
}
.con {
    width: 17em;
    height:21em;
    margin: 1em auto;
    overflow: hidden;
    background: white;
    position: relative;
    box-sizing: border-box;
}


/*
.marquee {
    top: 8em;
    position: relative;
    box-sizing: border-box;
    animation: marquee 15s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}
*/

/* Make it move! */
/*
@keyframes marquee {
    0%   { top:   8em }
    100% { top: -11em }
}

*/


.holder {
  background-color:white;
  width:265px;
  height:350px;
  overflow:hidden;
  padding:10px;
  font-family:Helvetica;
}
.holder .mask {
  position: relative;
  left: 0px;
  top: 10px;
  width:265px;
  height:350px;
  overflow: hidden;
}
.holder ul {
  list-style:none;
  margin:0;
  padding:0;
  position: relative;
}
.holder ul li {
  padding:10px 0px;
}
.holder ul li a {
  color:midnightblue;
  text-decoration:none;
}



a.effect-box:before {
    border-left: 1px solid;
    border-right: 1px solid;
    -webkit-transform: scale(1,0);
    transform: scale(1,0);
}
a.effect-box:after, a.effect-box:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    display: inline-block;
    height: 37px;
    width: 100%;
    margin-top: 0px;
    margin-top: 5px;
    opacity: 0;
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
}

a.effect-box:hover:after, a.effect-box:hover:before {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}




a.effect-box:hover:after, a.effect-box:hover:before {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
a.effect-box:after {
    border-bottom: 1px solid;
    border-top: 1px solid;
    -webkit-transform: scale(0,1);
    transform: scale(0,1);
}
a.effect-box:after, a.effect-box:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    display: inline-block;
    height: 37px;
    width: 100%;
    margin-top: 0px;
    margin-top: 5px;
    opacity: 0;
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
}




.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .open>.dropdown-toggle.btn-primary.focus, .open>.dropdown-toggle.btn-primary:focus, .open>.dropdown-toggle.btn-primary:hover {
    color: #fff;
    background-color: #215eab;
    border-color: #29469e00;
}



button.btn.btn-primary.white {
    color: #fdfefe;
    background: #4991db;
    border: none;
}

button.btn.btn-primary.white:hover {
    color: white;
    background: #05064d;
    border: none;
}





.link2:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    display: block;
    margin-top: 1px;
    right: 0;
    background: white;
    transition: width .2s ease;
    -webkit-transition: width .2s ease;
}




.mar-0 {
    margin: 0px;
}

.new-btn {
    background-color: rgb(33, 94, 171) !important;
    color: #eee !important;
    border: 0.5px solid rgb(33, 94, 171) !important;
    border-radius: 0px!important;
    -webkit-box-shadow: 0 8px 6px -6px black;
    -moz-box-shadow: 0 8px 6px -6px black;
    box-shadow: 0 8px 6px -6px black;
}




.carousel-fade .carousel-inner .item {
  transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-control {
  z-index: 2;
}




/*div#main-slide {
    margin-top: 4em;
}*/



/*.blwsec{
	display: none;
	
}*/




.sponsers h4{
	
	margin-top: 2em;
	font-size: 30px;
	
}

.sponser-logos{
	margin-top: 20px;
	
}



.social-carousel__background-graphic {
    position: absolute;
    top: 0rem;
    right: -62.5rem;
    width: 120rem;
    height: 120rem;
    background-image: linear-gradient(318deg,#42baff,#232882);
    border-radius: 100%;
    box-shadow: 0 8px 20px 0 rgba(0,0,0,.2);
}

.social-carousel__background-graphic:before {
    content: "";
    position: absolute;
    top: 24.5rem;
    left: 23.2rem;
    width: 100rem;
    height: 75rem;
    background: #04064d;
    border-radius: 100%;
    box-shadow: inset 0 0 20px rgba(0,0,0,.5);
    transform: rotate(14deg);
}


/*.owl-item {
    margin: 0px 15px;
}*/


.latest-news h1 {
    color: white !important;
    text-shadow: 1px 1px 1px black;
    text-align: left;
    text-transform: uppercase;
    margin-left: 20px;
}
span.blue-colr-sub.head {
    color: rgb(41, 69, 157);
    font-weight: 600;
}

.latest-topic span.blue-colr-sub.head {
    color: rgb(255, 255, 255);
    font-weight: 600;
}

.publication-section span.blue-colr-sub.head {
    color: rgb(255, 255, 255);
    font-weight: 600;
}


.widget__link {
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,.3);
    background-color: #232882;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 3.2rem;
    text-transform: uppercase;
    white-space: nowrap;
    will-change: box-shadow;
    transition:.5s ease,box-shadow .25s ease,transform .5s ease;
}

.widget__link:hover {
    background-color: #42baff;
    color: white;
}
.widget__link:hover.u-hide-phablet span {
    color: rgb(255, 255, 255);
    font-weight: 700 !important;
}
.widget__link:hover {
    transform: translateY(1px);
    position: relative;
    box-shadow: 0 0 5px 1px rgba(0,0,0,.3);
    text-decoration: none;
    top: 2px;
    transition:1s ease;
}

.all-news-btn {
    margin: 35px 0px 20px;
    text-align: right;
}

.header-section-latest-news{
	position: relative;
	z-index: 99;
	
}
.widget__link.u-hide-phablet span {
    color: rgba(0,191,255,1);
    font-weight: 700 !important;
}



.owl-theme .owl-controls .owl-buttons div {
    color: #FFF;
    display: inline-block;
    zoom: 1;
    margin: 5px;
    padding: 10px!important;
    font-size: 25px!important;
    color: white !important;
    border-radius:15px 0px !important;
    background: #869791;
    filter: Alpha(Opacity=50);
    opacity: .5;
}



.owl-theme .owl-controls .owl-page span {
    display: block;
    width: 58px !important;
    height: 8px !important;
    margin: 5px 7px;
    filter: Alpha(Opacity=50);
    opacity: .5;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #e99558  !important;
}



.owl-theme .owl-controls .owl-buttons div {

    top: 50%;
}



.publication-section {
    background: #05064d;
}

.publication-section h1 {
    color: white !important;
    text-shadow: 1px 1px 1px black;
	text-transform: uppercase;
	font-weight: 600;
}


.publication-section-para p {
    position: relative;
    color: white;
}

.publication-section-para .link2 {
    color: white;
}



section.members {
    background: white;
    border-radius: 25px;
    padding: 2em 0px;
    border: 1.5px solid #29469e;
    box-shadow: 7px 10px 10px 5px #0000006b;
    margin: 5px;
    /* z-index: 10; */
}

#wrapper {
    background: #05064d;
	/*background: #fefefe;*/
}








.contact-title i {
    color: #ff8e02;
    font-size: 22px;
    margin-right: 7px;
}


.profile-section p{
	font-family: 'Dubai-font', sans-serif;
	font-weight: 500;
	
}




/*-------------Cube-flip-------*/

		.square-flip{
		-webkit-perspective: 1000;
		-moz-perspective: 1000;
		-ms-perspective: 1000;
		perspective: 1000;

		-webkit-transform: perspective(1000px);
		-moz-transform: perspective(1000px);
		-ms-transform: perspective(1000px);
		transform: perspective(1000px);

		-webkit-transform-style: preserve-3d; 
		-moz-transform-style: preserve-3d; 
		-ms-transform-style: preserve-3d; 
		transform-style: preserve-3d; 

		/*border:1px solid #efefef;*/
		
		position:relative;
		float:left;
		margin:0px;

		}
		.square-flip{
			width:100%;
			height:200px;
		}
		.square,.square2{
			width:100%;
			height:100%;
		}
		.square{

			background-size: cover;
			background-position:center center;

			-ms-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
			    transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
			    -webkit-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
			overflow: hidden;

			position:absolute;
			top:0;


			-webkit-backface-visibility: hidden; 
			backface-visibility: hidden;
		}
		.square-flip .square {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    transform-style: preserve-3d;
    z-index: 1;
    box-shadow: 14px 16px 14px 1px rgba(0, 0, 0, 0.0392156862745098);
}
		.square-flip:hover .square{
			-webkit-transform: rotateY(-180deg);
			-moz-transform: rotateY(-180deg);
			-o-transform: rotateY(-180deg);
			-ms-transform: rotateY(-180deg);
			transform: rotateY(-180deg);
			transform-style: preserve-3d;
			 box-shadow: 14px 16px 14px 1px #0000000a;
		}


		.square2{

			background-size: cover;
			background-position:center center;

			-ms-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
			    transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
			    -webkit-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
			overflow: hidden;

			position:absolute;
			top:0;

			-webkit-backface-visibility: hidden; 
			backface-visibility: hidden;
		}
		.square-flip .square2{
			-webkit-transform: rotateY(180deg);
			-moz-transform: rotateY(180deg);
			-o-transform: rotateY(180deg);
			-ms-transform: rotateY(180deg);
			transform: rotateY(180deg);
			transform-style: preserve-3d;
			z-index:1;
		}
		.square-flip:hover .square2{
			-webkit-transform: rotateY(0deg);
			-moz-transform: rotateY(0deg);
			-o-transform: rotateY(0deg);
			-ms-transform: rotateY(0deg);
			transform: rotateY(0deg);
			transform-style: preserve-3d;
		}

		/*Square content*/
		.square-container{
			padding:30px;
			text-align:center;
			position:relative;
			top:50%;

			-ms-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
			    transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
			    -webkit-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);

		
			-webkit-transform: translateY(-50%) translateX(0px)  scale(1);
			-ms-transform: translateY(-50%) translateX(0px)  scale(1);
	transform: translateY(-50%) translateX(0px)  scale(1);
			transform-style: preserve-3d;
			z-index:2;
		}
		.square-flip:hover .square-container{
			
			-webkit-transform: translateY(-50%) translateX(-650px)  scale(.88);
			-ms-transform: translateY(-50%) translateX(-650px)  scale(.88);
      transform: translateY(-50%) translateX(-650px)  scale(.88);
			transform-style: preserve-3d;

		}

		.square-container2{
			padding:20px;
			text-align:center;
			position:relative;
			top:50%;

			-ms-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
			    transition: transform 0.60s cubic-bezier(.5,.3,.3,1);
			    -webkit-transition: transform 0.60s cubic-bezier(.5,.3,.3,1);

			
			-webkit-transform: translateY(-50%) translateX(650px) translateZ(60px) scale(.88);
			-ms-transform: translateY(-50%) translateX(650px) translateZ(60px) scale(.88);
      transform: translateY(-50%) translateX(650px) translateZ(60px) scale(.88);

			transform-style: preserve-3d;
			z-index:2;
		}
		.square-flip:hover .square-container2{
			
			-webkit-transform: translateY(-50%) translateX(0px) translateZ(0px) scale(1);
			-ms-transform: translateY(-50%) translateX(0px) translateZ(0px) scale(1);
			transform: translateY(-50%) translateX(0px) translateZ(0px) scale(1);
      transform-style: preserve-3d;
		}



		/*Style text*/
		.square-flip h2 {
    color: black;
    /* font-family: "Open Sans"; */
    /* font-weight: 700; */
    font-size: 15px;
    text-align: center;
    margin: 10px 0px;
    border: none;
}
		.square-flip h3{
			color:black;
			
			font-size:16px;
			text-align: center;
		
		}
		/*Elements*/
		.flip-overlay {
    display: block;
    background: rgba(212, 212, 212, 0);
    width: 100%;
    height: 100%;
			border-radius: 2px;
    position: absolute;
    top: 0;
    border: 1px solid rgba(107, 151, 200, 0.18823529411764706);
}
		.align-center{
			margin:0 auto;
		}
		.kallyas-button{
			display:block;
			width:160px;
			padding:18px 30px;
			font-family:"Open Sans";
			font-weight:600;
			color:#fff;
			background:#FF2024;
			margin:0 auto;
			border-radius:2px;
			text-decoration:none;

			/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffa067+0,ff2959+49,ff2024+100 */
			background: #ffa067; /* Old browsers */
			background: -moz-linear-gradient(-45deg,  #ffa067 0%, #ff2959 49%, #ff2024 100%); /* FF3.6-15 */
			background: -webkit-linear-gradient(-45deg,  #ffa067 0%,#ff2959 49%,#ff2024 100%); /* Chrome10-25,Safari5.1-6 */
			background: linear-gradient(135deg,  #ffa067 0%,#ff2959 49%,#ff2024 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffa067', endColorstr='#ff2024',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
		}


		/*ADD SHADOWS OPTIONAL*/
		.square-flip .square .boxshadow, .square-flip .square .textshadow, .square-flip .square2 .boxshadow, .square-flip .square2 .textshadow{
			-ms-transition: 0.60s;
			    transition: 0.60s;
			    -webkit-transition: 0.60s;
		}

		.square-flip .square .boxshadow{
			-webkit-box-shadow: 24px 42px 58px -8px rgba(0,0,0,0.3);
			-moz-box-shadow: 24px 42px 58px -8px rgba(0,0,0,0.3);
			box-shadow: 24px 42px 58px -8px rgba(0,0,0,0.3);
		}
		.square-flip .square .textshadow{
			-webkit-text-shadow: 24px 42px 58px -8px rgba(0,0,0,0.3);
			-moz-text-shadow: 24px 42px 58px -8px rgba(0,0,0,0.3);
			text-shadow: 24px 42px 58px -8px rgba(0,0,0,0.3);
		}
		.square-flip:hover .square .boxshadow, .square-flip:hover .square .textshadow{
			-webkit-box-shadow: 240px 42px 58px -8px rgba(0,0,0,0.0);
			-moz-box-shadow: 240px 42px 58px -8px rgba(0,0,0,0.0);
			box-shadow: 240px 42px 58px -8px rgba(0,0,0,0.0);
		}


		.square-flip .square2 .boxshadow{
			-webkit-box-shadow: 240px 42px 58px -8px rgba(0,0,0,0.0);
			-moz-box-shadow: 240px 42px 58px -8px rgba(0,0,0,0.0);
			box-shadow: 240px 42px 58px -8px rgba(0,0,0,0.0);
		}
		.square-flip .square2 .textshadow{
			-webkit-text-shadow: 240px 42px 58px -8px rgba(0,0,0,0.0);
			-moz-text-shadow: 240px 42px 58px -8px rgba(0,0,0,0.0);
			text-shadow: 240px 42px 58px -8px rgba(0,0,0,0.0);
		}
		.square-flip:hover .square2 .boxshadow, .square-flip:hover .square2 .textshadow{
			-webkit-box-shadow: 24px 42px 58px -8px rgba(0,0,0,0.3);
			-moz-box-shadow: 24px 42px 58px -8px rgba(0,0,0,0.3);
			box-shadow: 24px 42px 58px -8px rgba(0,0,0,0.3);
		}




.square-container h1 {
    font-size: 16px;
    text-align: center;
   /* background: rgba(41,70,158,1);
    background: -moz-linear-gradient(left, rgba(41,70,158,1) 0%, rgba(41,70,158,1) 40%, rgba(8,168,237,1) 79%, rgba(0,191,255,1) 88%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(41,70,158,1)), color-stop(40%, rgba(41,70,158,1)), color-stop(79%, rgba(8,168,237,1)), color-stop(88%, rgba(0,191,255,1)));
    background: -webkit-linear-gradient(left, rgba(41,70,158,1) 0%, rgba(41,70,158,1) 40%, rgba(8,168,237,1) 79%, rgba(0,191,255,1) 88%);
    background: -o-linear-gradient(left, rgba(41,70,158,1) 0%, rgba(41,70,158,1) 40%, rgba(8,168,237,1) 79%, rgba(0,191,255,1) 88%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;*/
	color: #2c55a9;
    margin-top: 15px;
    text-transform: uppercase;
 
}







.for-circle-image .media-wrap img {
    border-radius: 50%;
    max-width: 100px;
}


.centerflipcards {
    margin-top: -40px;
    margin-bottom: 20px;
}


.square-container2 p {
    font-size: 15px;
    margin-top: 35px;
}


.board-block{
	margin-top:40px;
	margin-bottom: 40px;
	
}



.all-events-btn {
    margin: 0px;
    text-align: left;
}

.visit-site{
    margin: 0px;
    text-align: right;
}

		.caro-item {
    height: 350px;
    background: white;
}




.caro-item {
    position: relative;
    margin: auto;
    overflow: hidden;
    border-radius: 0px 20px;
    
    margin: 8px;
}
/*.caro-item a img {
    transition: all 0.3s;
    display: block;
    width: auto;
    height: 200px;
    transition: 1s ease;
    border-bottom: 1px solid #05064d;
}*/

.caro-item a:hover img {
    transform: scale(1.05);
	transition: 1s ease;
}

.news-content p {
    margin: 10px;
    margin-top: 20px;
}


.caro-item a:hover p {
    color: #05064e;
    font-weight: 600;
}


.caro-item a:hover .news-hover-text {
opacity: 0.1;
	transition: 1s ease;
}

.news-hover-text {
    background: url(/en/images/download.png) -20px -20px no-repeat;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    display: block;
    /* filter: grayscale(100%); */
    position: absolute;
    opacity: 0;
    font-size: 97px !important;
    font-family: arial;
    /* text-align: center; */
    /* margin-top: 0px; */
    font-weight: bold;
    letter-spacing: 2px;
    background-size: cover;
    width: 100%;
    padding: 0px;
    margin: 0px;
    bottom: -32px;
	transition: 1s ease;
}


.all-publication-btn a {
    text-align: right;
    float: right;
	position: relative;
	z-index: 99;
}

.all-member-btn a {
    text-align: right;
    float: right;
}



.board-of-director:hover .for-circle-image img{
	 transform: scale(1.05);
	transition: 1s ease;
}








/*----------FlipClock--------------*/


/* Get the bourbon mixin from http://bourbon.io */
/* Reset */
.flip-clock-wrapper * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-clock-wrapper a {
  cursor: pointer;
  text-decoration: none;
  color: #ccc; }

.flip-clock-wrapper a:hover {
  color: #fff; }

.flip-clock-wrapper ul {
  list-style: none; }

.flip-clock-wrapper.clearfix:before,
.flip-clock-wrapper.clearfix:after {
  content: " ";
  display: table; }

.flip-clock-wrapper.clearfix:after {
  clear: both; }

.flip-clock-wrapper.clearfix {
  *zoom: 1; }

/* Main */
.flip-clock-wrapper {
  font: normal 11px "Helvetica Neue", Helvetica, sans-serif;
  -webkit-user-select: none; }

.flip-clock-meridium {
  background: none !important;
  box-shadow: 0 0 0 !important;
  font-size: 36px !important; }

.flip-clock-meridium a { color: #313333; }

.flip-clock-wrapper {
    text-align: center;
    position: relative;
    width: 100%;
    margin: 1em;
    top: 236px;
    left: 21%;
}

.flip-clock-wrapper:before,
.flip-clock-wrapper:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}
.flip-clock-wrapper:after {
    clear: both;
}

/* Skeleton */
.flip-clock-wrapper ul {
  position: relative;
  float: left;
  margin: 5px;
  width: 60px;
  height: 90px;
  font-size: 80px;
  font-weight: bold;
  line-height: 87px;
  border-radius: 6px;
  background: #000;
}

.flip-clock-wrapper ul li {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 87px;
  text-decoration: none !important;
}

.flip-clock-wrapper ul li:first-child {
  z-index: 2; }

.flip-clock-wrapper ul li a {
  display: block;
  height: 100%;
  -webkit-perspective: 200px;
  -moz-perspective: 200px;
  perspective: 200px;
  margin: 0 !important;
  overflow: visible !important;
  cursor: default !important; }

.flip-clock-wrapper ul li a div {
  z-index: 1;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  font-size: 80px;
  overflow: hidden; 
  outline: 1px solid transparent; }

.flip-clock-wrapper ul li a div .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2; }

.flip-clock-wrapper ul li a div.up {
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  top: 0; }

.flip-clock-wrapper ul li a div.up:after {
  content: "";
  position: absolute;
  top: 44px;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 3px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4); }

.flip-clock-wrapper ul li a div.down {
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  -o-transform-origin: 50% 0;
  transform-origin: 50% 0;
  bottom: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.flip-clock-wrapper ul li a div div.inn {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 200%;
  color: #ccc;
  text-shadow: 0 1px 2px #000;
  text-align: center;
  background-color: #333;
  border-radius: 6px;
  font-size: 70px; }

.flip-clock-wrapper ul li a div.up div.inn {
  top: 0; }

.flip-clock-wrapper ul li a div.down div.inn {
  bottom: 0; }

/* PLAY */
.flip-clock-wrapper ul.play li.flip-clock-before {
  z-index: 3; }

.flip-clock-wrapper .flip {   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7); }

.flip-clock-wrapper ul.play li.flip-clock-active {
  -webkit-animation: asd 0.5s 0.5s linear both;
  -moz-animation: asd 0.5s 0.5s linear both;
  animation: asd 0.5s 0.5s linear both;
  z-index: 5; }

.flip-clock-divider {
  float: left;
  display: inline-block;
  position: relative;
  width: 20px;
  height: 100px; }

.flip-clock-divider:first-child {
  width: 0; }

.flip-clock-dot {
  display: block;
  background: #323434;
  width: 10px;
  height: 10px;
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  left: 5px; }

.flip-clock-divider .flip-clock-label {
    position: absolute;
    top: -1.5em;
    right: -92px;
    color: white;
    text-shadow: none;
    font-size: 14px;
}

.flip-clock-divider.minutes .flip-clock-label {
  right: -88px; }

.flip-clock-divider.seconds .flip-clock-label {
  right: -91px; }

.flip-clock-dot.top {
  top: 30px; }

.flip-clock-dot.bottom {
  bottom: 30px; }

@-webkit-keyframes asd {
  0% {
    z-index: 2; }

  20% {
    z-index: 4; }

  100% {
    z-index: 4; } }

@-moz-keyframes asd {
  0% {
    z-index: 2; }

  20% {
    z-index: 4; }

  100% {
    z-index: 4; } }

@-o-keyframes asd {
  0% {
    z-index: 2; }

  20% {
    z-index: 4; }

  100% {
    z-index: 4; } }

@keyframes asd {
  0% {
    z-index: 2; }

  20% {
    z-index: 4; }

  100% {
    z-index: 4; } }

.flip-clock-wrapper ul.play li.flip-clock-active .down {
  z-index: 2;
  -webkit-animation: turn 0.5s 0.5s linear both;
  -moz-animation: turn 0.5s 0.5s linear both;
  animation: turn 0.5s 0.5s linear both; }

@-webkit-keyframes turn {
  0% {
    -webkit-transform: rotateX(90deg); }

  100% {
    -webkit-transform: rotateX(0deg); } }

@-moz-keyframes turn {
  0% {
    -moz-transform: rotateX(90deg); }

  100% {
    -moz-transform: rotateX(0deg); } }

@-o-keyframes turn {
  0% {
    -o-transform: rotateX(90deg); }

  100% {
    -o-transform: rotateX(0deg); } }

@keyframes turn {
  0% {
    transform: rotateX(90deg); }

  100% {
    transform: rotateX(0deg); } }

.flip-clock-wrapper ul.play li.flip-clock-before .up {
  z-index: 2;
  -webkit-animation: turn2 0.5s linear both;
  -moz-animation: turn2 0.5s linear both;
  animation: turn2 0.5s linear both; }

@-webkit-keyframes turn2 {
  0% {
    -webkit-transform: rotateX(0deg); }

  100% {
    -webkit-transform: rotateX(-90deg); } }

@-moz-keyframes turn2 {
  0% {
    -moz-transform: rotateX(0deg); }

  100% {
    -moz-transform: rotateX(-90deg); } }

@-o-keyframes turn2 {
  0% {
    -o-transform: rotateX(0deg); }

  100% {
    -o-transform: rotateX(-90deg); } }

@keyframes turn2 {
  0% {
    transform: rotateX(0deg); }

  100% {
    transform: rotateX(-90deg); } }

.flip-clock-wrapper ul li.flip-clock-active {
  z-index: 3; }

/* SHADOW */
.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, black));
  background: linear, top, rgba(0, 0, 0, 0.1) 0%, black 100%;
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: linear, to bottom, rgba(0, 0, 0, 0.1) 0%, black 100%;
  -webkit-animation: show 0.5s linear both;
  -moz-animation: show 0.5s linear both;
  animation: show 0.5s linear both; }

.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, black));
  background: linear, top, rgba(0, 0, 0, 0.1) 0%, black 100%;
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: linear, to bottom, rgba(0, 0, 0, 0.1) 0%, black 100%;
  -webkit-animation: hide 0.5s 0.3s linear both;
  -moz-animation: hide 0.5s 0.3s linear both;
  animation: hide 0.5s 0.3s linear both; }

/*DOWN*/
.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow {
  background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, rgba(0, 0, 0, 0.1)));
  background: linear, top, black 0%, rgba(0, 0, 0, 0.1) 100%;
  background: -o-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -ms-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: linear, to bottom, black 0%, rgba(0, 0, 0, 0.1) 100%;
  -webkit-animation: show 0.5s linear both;
  -moz-animation: show 0.5s linear both;
  animation: show 0.5s linear both; }

.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow {
  background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, rgba(0, 0, 0, 0.1)));
  background: linear, top, black 0%, rgba(0, 0, 0, 0.1) 100%;
  background: -o-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -ms-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: linear, to bottom, black 0%, rgba(0, 0, 0, 0.1) 100%;
  -webkit-animation: hide 0.5s 0.3s linear both;
  -moz-animation: hide 0.5s 0.3s linear both;
  animation: hide 0.5s 0.2s linear both; }

@-webkit-keyframes show {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-moz-keyframes show {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-o-keyframes show {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@keyframes show {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-webkit-keyframes hide {
  0% {
    opacity: 1; }

  100% {
    opacity: 0; } }

@-moz-keyframes hide {
  0% {
    opacity: 1; }

  100% {
    opacity: 0; } }

@-o-keyframes hide {
  0% {
    opacity: 1; }

  100% {
    opacity: 0; } }

@keyframes hide {
  0% {
    opacity: 1; }

  100% {
    opacity: 0; } }






.topbar i {
    color: rgba(0,191,255,1);
}

.login i {
    color: rgba(0,191,255,1);
}

.blue-box {
    background: #2c58a8;
    width: 35%;
    padding: 20px;
    color: white;
    border-radius: 0px 0px 50px 0px;
    box-shadow: 2px 4px 9px -2px grey;
    margin: 1em auto 4em;
    transition: 0.5s linear;
    font-size: 18px;
	cursor: pointer;
	position: relative;
	z-index: 0;
}

.blue-box:hover {
    box-shadow: 10px 10px 10px #c3c3c3;
    background: #61c0fd;
    transition: 0.5s linear;
}

.blue-box p {
    text-align: center;
    margin-bottom: 0px;
	color: white;
}

.move-left-box {
    margin-left: 15px;
    border-radius: 0px 50px 0px 0px;
}


.line-dotted {
    position: absolute;
    z-index: 0;
    top: 5%;
    bottom: 0px;
    left: 49%;
    height: 85%;
    border-left: 2px dashed #ecae7f;
}


.circle-image-governance .media-wrap {
    display: inline-block;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    top: -22px;
    left: 233%;
    z-index: 99;
    padding: 2px;
    background: rgba(33, 94, 171, 0.65);
    box-shadow: 0 5px 21px 3px rgba(130,133,144,.2);
}

.circle-image-governance .media-wrap img {
    border-radius: 50%;
    max-width: 100px;
    padding: 10px;
    background: white;
	transition: 0.5s ease;
}

.circle-image-governance {
    position: absolute;
}

.move-left-img .media-wrap {
    left: -50px;
}
/*.governance{
	margin: 20px;
}*/

.gov-p {
    margin-bottom: 18px;
}



.gov-block:hover > .circle-image-governance .media-wrap img{
	padding: 5px;
	transition: 0.5s ease;
}



.line-horizontal {
    position: absolute;
    z-index: 0;
    top: 64%;
    bottom: 0px;
    left: 29%;
    width: 20%;
    height: 10%;
    border-bottom: 2px dashed #ecae7f;
}


.line-horizontal-2 {
    position: absolute;
    z-index: 0;
    top: 66%;
    bottom: 0px;
    left: 29%;
    width: 20%;
    height: 1%;
    border-bottom: 2px dashed #ecae7f;
}

.gov-block {
    z-index: 10;
    position: relative;
}





@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }
  to {
    -webkit-transform: scale(1.2, 1.2);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.1, 1.1);
  }
}

.carousel-inner .item > img {
  -webkit-animation: zoom 30s;
  animation: zoom 30s;
}



.overlay-banner {
    position: absolute;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(34, 33, 33, 0));
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 0;
}


.content-sponser h1, .content-sponser p{
	text-align: center;
	
}

/*div#main-slide {
    margin-top: 1%;
}*/

.content-sponser p{
	text-transform: uppercase;
	font-size: 40px !important;
	margin-bottom: 10px !important;
	font-weight: 600;
	text-shadow: 1px 1px 1px black;
	color: white;
}

.slider-content.content-sponser p {
    left: -3%;
    position: relative;
    top: 22px;
	color: white;
	
}

.sponser-head h1 {
    position: absolute;
    top: -14%;
    left: 40px;
    text-align: left;
    width: 45%;
    font-size: 40px;
    color: white;
	text-shadow: 1px 1px 1px black;
}

.content-sponser{
    top: 0%;
    margin-top: 13%;
    left: 0%;
    padding: 0;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    color: #fff;
}



.date-counter li {
  display: inline-block;
  font-size: 1.5em;
  list-style-type: none;
  padding: 1em;
  text-transform: uppercase;
	color: white;
}

.date-counter li span {
  display: block;
  font-size: 4.5rem;
	color: white;
	
}

.date-counter {
   
    position: relative;
    top: 5%;
}


.sponsers-logo h1 {
    position: absolute;
    right: 15%;
    bottom: 100%;
    color: white;
    text-shadow: 1px 1px 1px black;
    font-size: 30px;
}


.log-for-sponser {
    position: absolute;
    bottom: 85%;
    right: -19%;
}

.sponser-head p {
    position: absolute;
    font-size: 19px !important;
    width: 36%;
    margin-left: 45px;
    text-transform: none;
    text-align: left;
    margin-top: 65px;
    text-shadow: none;
    font-weight: 500;
}



.round-image img {
    padding: 4% 35%;
    border-radius: 50%;
    width: 100%;
}

.mar-10{
	margin-top:5em;
	
}

.border-right {
    border-right: 0.5px dotted gainsboro;
}


.title-rounded h3 {
    text-align: center;
    margin-top: -5px;
}


.login-form {
    border: 1px solid gainsboro;
	margin-top: 30px;
	box-shadow: 5px 1px 14px 0px #b3b3b3
    
}

.login-form img {
    width: 10%;
    vertical-align: middle;
}

.login-form h2 {
   text-align: center;
}


.login-new-form {
    padding: 20px;
    
}

.login-new-form button {
   
    margin-left: auto;
    margin-right: auto;
    display: block;
}

button.custom-btn {
    background: linear-gradient(45deg, #53a6df, #3366b2);
    border: none;
    padding: 10px 35px;
    box-shadow: 0px 8px 6px -8px black;
}


button.custom-btn:hover {
    color: #ffffff;
    /* background: #fefefe; */
    /* border: 1px solid #3264b0; */
    box-shadow: 0px 0px 9px 7px #ccc7c78c;
    transition: 0.3s ease;
}




.footer-carousel-six-wrapper {
    background: url(/en/images/shape-wave.png);
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    /* padding: 1.2rem 0 6.93333rem 0; */
}





.login-right-section:hover >.round-image img{
	 transform: scale(1.1, 1.1);
	transition: 0.5s ease;
	cursor: pointer;	
}

.login-right-section:hover >.title-rounded h3{
	cursor: pointer;
	
}


.login-right-section:hover >.title-rounded h3 i{
	opacity: 1;
	transition: 0.5s ease;
	
}

.title-rounded h3 i{
	opacity: 0;
	transition: 0.5s ease;
    font-size: 13px;
	
}





.overlay-popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
	z-index: 10000;
}
.overlay-popup:target {
  visibility: visible;
  opacity: 1;
}



.popup-board .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup-board .close:hover {
  color: #06D85F;
}
.popup-board .popup-content {
  max-height: 30%;
  overflow: auto;
}


.square-container2 span i {
    /* text-align: right; */
    float: right;
}

.popup-content p {
    margin: 20px;
    /* font-weight: bold; */
    font-size: 17px;
    color: #8a8a8a;
}

.flip-read {
    float: right;
    right: 0px;
    font-size: 14px;
    margin-top: 15px;
}




.color-blue {
    color: #2c5996;
    font-weight: 600;
    width: 65%;
    /* font-weight: 600; */
    font-size: 17px;
}







.event-category h2 {
    margin-top: 0px;
    /* border-bottom: 2px solid #2c5a96; */
    /* width: auto; */
    color: #2c5a96;
    width: fit-content;
    border-bottom: 2px solid #2c5996;
    font-size: 31px;
    letter-spacing: 2px;
    font-weight: bold;
}




.event-category h1 {
    margin-bottom: -5px;
	 color: #2c5a96;
	font-weight: normal;
}


.event-right-section{
	text-align: center;
}

.event-right-section p{
	text-align: center;
}



.event-right-section i {
    font-size: 40px;
    color: deepskyblue;
    text-shadow: 5px 4px 3px #cccccc80;
}

.event-right-section .col {
    margin: 0px 0px 40px;
}

.event-right-section .number-part {
    text-align: center;
    color: #032858;
    font-weight: bolder;
    font-size: 30px;
	margin: 0px;
}

.event-right-section p {
    text-align: center;
    color: #0076c1;
    margin-top: -10px;
}


.reports .cardbox-1 {
    animation: 1s ease;
    background: linear-gradient(-45deg, #30629c, #2c5a96, #23a6d5, #2c5a96);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
	border-radius: 30px 0px 20px 0px;
}

@keyframes gradientBG {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.cardbox-1 {
	 animation: 1s ease;
    background: linear-gradient(-45deg, #30629c, #2c5a96, #23a6d5, #2c5a96);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
	border-radius: 30px 0px 20px 0px;
    
}

.card-box-content h3 {
    color: white;
    width: 95%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}


.navbar-brand img, .navbar-brand img::before {
    background: white;
    border-radius: 0px 20px;
}



table {
   
	background-size: 400% 400%;
    color: white;
    border: white;
	background: linear-gradient(270deg, #29469e,#00afed,#29469e);
	background-size: 400% 400%;
	-webkit-animation: Gradient 10s ease infinite;
	-moz-animation: Gradient 10s ease infinite;
	animation: Gradient 10s ease infinite;
}


    @-webkit-keyframes Gradient {
		0%{background-position:0% 50%}
		50%{background-position:100% 50%}
		100%{background-position:0% 50%}
	}
	@-moz-keyframes Gradient {
		0%{background-position:0% 50%}
		50%{background-position:100% 50%}
		100%{background-position:0% 50%}
	}
	@keyframes Gradient {
		0%{background-position:0% 50%}
		50%{background-position:100% 50%}
		100%{background-position:0% 50%}
	}


 .buttom-shape {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 101%;
}


.small-logo-back {
    background: url(/en/images/ubf-small-bk.png);
    background-position: 151px 120px;
    background-size: 62px;
    background-repeat: no-repeat;
}



.slider-content h1 span {
    color: white !important;
}


section.section-first {
    padding-top: 0px;
}


.marquee-section {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 0px;
    color: white;
    margin-top: -50px;
}


.marquee-section a {
    color: white;
	
}



span.date-marq {
    margin: 0px 15px;
}

a.marq-content {
    margin: 0px 20px;
}