@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Ruda:wght@400;500;600;700;800;900&display=swap');
/*font-family: 'Ruda', sans-serif;*/

:root {	
	--gim-dark:#465a65;
	--gim-darkness:#273238;
	--gim-light:#ebeff2;
	--gim-lightdark:#92a4b0;
	--gim-blue:#03a9f5;
	--gim-bluedark:#02579a;	
	--gim-rose:#f06292;
	--gim-rosedark:#ec407a;	
}
* {
	outline: none!important;	
	transition: all ease-in-out .3s;	
}
body {
	background: #fff;
	font-family: 'Ruda', sans-serif;
	font-size: 1rem;
	font-weight: normal;
	line-height: 1.5em;
	color: #474747;
}
.wrapper {
	width: 100%;
	position: relative;
}
section {
	padding: 50px 0;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.3em;  
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	margin-bottom: 15px;
	margin: 20px 0;
	color:  var(--gim-yellow);
}
a,
a:hover, 
a:focus, 
a:active {
	text-decoration: none;
	color: #29b7f7;
}
a {
  color: #0277bd;
}
ul, ol {
	padding: 0;
	margin: 0;
}
img {
  max-width: 100%;
  height: auto;
}
::-moz-selection {
    text-shadow: none;
    background: #5f5e5e;
	color:#eee;	
}
::selection {
    text-shadow: none;
    background: #5f5e5e;
	color:#eee;	
}
section {
	padding: 50px 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1920px) {
	.page-content {
		max-width: 1200px;
		margin: auto;
	}
}
@media only screen and (min-width: 481px) and (max-width: 575px) {
	.page-content {
		max-width: 450px;
		margin: auto;
	}
}

/* BACK TO TOP */
.back-to-top {
	display: none;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 1.5em;
	color: #fff;
	border-radius: 10px 0 0 10px;
	position: fixed;	
	bottom: 20px;
	right: 0;
	background-color: var(--gim-dark);
	z-index: 5;
}
.back-to-top:hover {
	color: #fff;
	background-color: var(--gim-darkness);
	transition: all .5s;
}

/*SWITCHER*/
.switcher-wrapper {
	width: 400px;
	height: 100%;
	position: fixed;
	right: -400px;
	top: 0;
	bottom: 0;
	z-index: 16;
	background: #fff;
	border-left: 0px solid #d2d2d2;
	box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, .13);
	transition: all .2s ease-out;
}
@media (max-width: 575px) {
	.switcher-wrapper {
		width: 300px;
		right: -300px;
	}
}
.switcher-btn {
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 24px;
	background: #607d8b;
	color: #fff;
	text-align: center;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	position: absolute;
	top: 10px;
	right: 100%;
	cursor: pointer;
}
.switcher-wrapper.switcher-toggled {
	right: 0px;
}
.switcher-body {
	padding: 1.25rem;
}
.switcher-list li {
	list-style: none;
	margin: 10px;
}
.switcher-list li img {
	width: 40px;
	margin-right: 10px;
}	
.switcher-list li:hover a{
	padding-left: 5px;
}

.inline-list li {
	list-style: none;
	display: inline-block;
	margin: 10px 20px 10px 0;
	font-size: 1.2em;
}
/*
.inline li:hover a{
	padding-left: 5px;
}*/

/* ANIMATION KEYFRAME*/
@-webkit-keyframes move {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@keyframes move {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    		transform: rotate(0deg);	  
  }
  to {
    -webkit-transform: rotate(359deg);
			transform: rotate(359deg);	  
  }
}
@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
			transform: rotate(0deg);	  
  }
  to {
    -webkit-transform: rotate(359deg);
			transform: rotate(359deg);	  
  }
}

/* TITLE LINE */
.title-block {
	margin: auto;
	text-align: center;
	margin-bottom: 30px;
}
.title-block h2{
	margin: 5px 0;
}	
.hr-title {
	position: relative;
	background-image: linear-gradient(45deg, #5f6fad 0%, #cee8ff 50%, #5f6fad 100%);
	width: 50px;
	height: 5px;
	display: inline-block;
	border-radius: 5px;
}
.hr-title::before, 
.hr-title::after {
	width: 35px;
	height: 100%;
	content: "";
	position: absolute;
	top: 0;
	background: #5f6fad;
	border-radius: 5px;
}
.hr-title::before {
	left: -40px;
}
.hr-title::after {
	right: -40px;
}

/* SIDEBAR */
.sidebar-wrapper {
	width: 250px;
	height: 100%;
	position: fixed;
	top: 0px;
	bottom: 0;
	left: 0;
	background: var(--gim-dark);
	z-index: 11;	
	transition: all .2s ease-out;
}
.sidebar-header {
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
	position: absolute;
	top: 0px;
	bottom: 0;
	padding: 0 15px;
	z-index: 5;
	background: var(--gim-dark);
	background-clip: border-box;
	border-bottom: 1px solid rgba(255,255,255,0.3);
}
.toggle-icon {
	font-size: 2em;
	cursor: pointer;
	color: var(--gim-light);
}
.mobile-toggle-menu {
	display: none;
	font-size: 2em;
	color: var(--gim-dark);
	cursor: pointer;
}
@media screen and (max-width: 1024px) {
	.mobile-toggle-menu {
		display: block;
	}	
}

/*METIS MENU*/
.sidebar-wrapper .metismenu {
	background: transparent;
	display: flex;
	flex-direction: column;
	padding: 0;
	margin-top: 100px;	
}
.sidebar-wrapper .metismenu a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: left;
	padding: 10px 15px;
	font-size: 1.1em;
	color: var(--gim-light);
	outline-width: 0;
	text-overflow: ellipsis;
	overflow: hidden;
	border-bottom: 1px dotted rgba(255,255,255,0.3);
	transition: all .3s ease-out;
}
.sidebar-wrapper .metismenu a .parent-icon {
	font-size: 1.5em;
	line-height: 1;
}
.sidebar-wrapper .metismenu a .parent-icon img {
	width: 25px;
}
.sidebar-wrapper .metismenu a .menu-title {
	margin-left: 15px;
}
.sidebar-wrapper .metismenu a:hover,
.sidebar-wrapper .metismenu a:focus,
.sidebar-wrapper .metismenu a:active,
.sidebar-wrapper .metismenu .mm-active>a {
	color: #cfd8dd;
    text-decoration: none;	
    background: rgba(255,255,255,0.1);
}

@media screen and (min-width: 1025px) {
	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper {
		width: 70px;
	}
	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header {
		width: 70px;
	}
	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header .toggle-icon {
		display: none;
	}
	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header {
		justify-content: center;
	}
	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-header {
		width: 70px;
	}
	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu a {
		justify-content: center;
	}
	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .metismenu .menu-title {
		display: none;
	}
	.wrapper.toggled:not(.sidebar-hovered) .sidebar-wrapper .sidebar-footer {
		display: none;
	}	
	.wrapper.toggled:not(.sidebar-hovered) .page-footer	{
		margin-left: 70px;
	}
}
.sidebar-footer {
	width: 250px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 0;
}
.sidebar-footer li {
	display: inline-block;
	margin: 5px;
}
.sidebar-footer li a {
	font-size: 1.2em;
	display: block;
	color: #fff;
	border-radius: 100%;
	height: 35px;
	line-height: 33px;
	text-align: center;
	width: 35px;
	background-color: var(--gim-lightdark);
}
.sidebar-footer li a:hover {
	background-color: var(--gim-blue);
	color: #fff;
}

/* HEADER */
.topbar {
	position: fixed;
	top: 0;
	left: 250px;
	right: 0;
	height: 60px;
	display: flex;
	align-items: center;
	background: #eceff1;
	border-bottom: 1px solid rgba(255,255,255,1);
	background-clip: border-box;
	z-index: 10;
	box-shadow: 0 0 20px 10px rgba(0,0,0,0.05);
}
@media screen and (max-width: 1024px) {
	.topbar {
		left: 0px !important;
	}	
}
.topbar .navbar {
	width: 100%;
	height: 60px;
	padding: 0 30px;
	margin-right: 20px;
}
@media screen and (max-width: 620px) {
	.topbar .navbar .dropdown-menu::after {
		display: none;
	}
	.topbar .navbar .dropdown {
		position: static !important;
	}
	.topbar .navbar .dropdown-menu {
		width: 100% !important;
	}
}
.topbar .top-menu-left {
	padding: 0 0.5rem;
	color: var(--gim-dark);
	font-size:1.5em;
}
.topbar .navbar .navbar-nav .nav-link {
	padding-right: 0.8rem;
	padding-left: 0.8rem;
	color: var(--gim-dark);
	font-size: 2em;
}
.nav-item img {
	width: 40px;
	border-radius: 100%;
}
.dropdown-toggle-nocaret:after {
	display: none
}
.dropdown-large {
	position: relative;
}
.dropdown-large .dropdown-menu {
	width: 360px;
	border: 0;
	padding: 0rem 0;
	box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
}
.topbar .navbar .dropdown-large .dropdown-menu::after {
	content: '';
	width: 13px;
	height: 13px;
	background: #ffffff;
	position: absolute;
	top: -6px;
	right: 27px;
	transform: rotate(45deg);
}
.dropdown-large .dropdown-menu .dropdown-item {
	padding: .50rem 1.3rem;
	border-bottom: 1px solid #ededed;
}
.summaru-list {
	margin:0;
}
.summaru-list li {
	list-style:none;
	display: flex;
	align-items: center;
	margin:0;
	border-bottom: 1px dashed rgba(0,0,0,0.15);
	padding: 8px;
	font-size: 0.9em;
}
.summaru-list li a{
	color: #474747;
}	
.summaru-list li a:hover{
	color: var(--gim-blue);
	padding-left: 5px;
}	
.summaru-list li span{
	display: inline-flex;
	align-items: center;
    justify-content: center;	
	background: var(--gim-lightdark);
	width:30px;
	height:30px;
	margin-right:10px;
	border-radius:100%;
	font-size: 1.3em;
	color: #fff;
}
.summaru-list li:hover span{
	transform: rotate(360deg);
}	
.summaru-list li.title {
	font-size: 1.1em;
	font-weight: 600;
}	
.summaru-list li.title  span{
	background:transparent;
	width:100px;
	height:100px;
	border-radius: 0;
	margin-right:10px;
}
.summaru-list li.title:hover  span{
	transform: none;
}
.summaru-list li.title span img{
	width:100px;
	height:100px;
	border-radius: 0;
}

/* PAGE BLOCK */
.page-wrapper {
	height: 100%;
	margin: 50px 0 20px 250px;
	position: relative;
}
.page-content {
	padding: 1.5rem;
	min-height: 85vh;
}
.page-footer {
	background: #fff;
	text-align: center;
	padding: 15px;
	font-size: 0.875em;
	border-top: 1px solid rgba(0,0,0,0.1);
}
@media screen and (min-width: 1025px) {
	.page-footer {
		margin-left: 250px;
	}	
}
.wrapper.toggled .topbar {
	left: 70px;
}
.wrapper.toggled .page-wrapper {
	margin-left: 70px;
}
.wrapper.toggled .page-footer {
	left: 70px;
}
@media screen and (max-width: 1024px) {
	.sidebar-wrapper {
		left: -300px;
		box-shadow: none;
	}
	.page-wrapper {
		margin-left: 0px;
	}
	.page-footer {
		left: 0px;
	}
	.wrapper.toggled .sidebar-wrapper {
		left: 0px;
	}
	.wrapper.toggled .page-wrapper {
		margin-left: 0px;
	}	
	.wrapper.toggled .overlay {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: #000;
		opacity: 0.4;
		z-index: 10;
		display: block;
		cursor: move;
		transition: all .2s ease-out;
	}
}

/* ABOUT BLOCK */
.about-block {
	position: relative;
	padding: 0;
}
@media screen and (max-width: 1199px) {
	.about-block {
		padding: 20px 0px;
	}
}
@media screen and (max-width: 991px) {
	.about-img-content {
		margin-bottom: 50px;
	}
}
.about-img-content img {
	-webkit-animation: move 0.8s infinite alternate;
			animation: move 0.8s infinite alternate;
}
.about-list li{
	list-style: none;
	margin: 10px;
}
.about-list li:before{
	font-family: 'Line Awesome Free';
	font-weight: 900;		
	content: "\f00c";
	display: inline-block;
	width: 30px;
	height: 30px;
	background: var(--gim-light);
	color: var(--gim-bluedark);
	margin-right: 10px;
	border-radius: 100%;
	font-size: 1.2em;
	text-align: center;
	line-height: 1.5;
}

/* LABS BLOCK */
.labs-card {
	display: flex;
	position: relative;
	background: #f7faff;
	align-items: center;
	padding: 40px;
	border-radius: 15px;
}
@media screen and (max-width: 1199px) {
	.labs-card {
		flex-direction: column;
	}
}
.labs-card .line {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.labs-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: white;
	box-shadow: 0px 22px 35px 0px rgba(2, 18, 106, 0.08);
	width: 115px;
	height: 115px;
	margin-right: 50px;
	border-radius: 100%;
}
@media screen and (max-width: 1199px) {
	.labs-icon {
		width: 100px;
		height: 100px;
	}
}
@media screen and (max-width: 991px) {
	.labs-icon {    
		margin: 0 auto 30px;
	}	
}
.labs-icon .roted-around {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.labs-icon .roted-around span {
	position: relative;
	display: block;
	height: 100%;
}
.labs-icon .roted-around span::before, 
.labs-icon .roted-around span::after {
	position: absolute;
	width: 8px;
	height: 8px;
	content: "";
	border-radius: 50%;
}
.labs-icon .roted-around span::before {
	left: 15px;
	bottom: 10px;
}
.labs-icon .roted-around span::after {
	right: 15px;
	top: 10px;
}
.labs-icon .roted-around.dagnger span {
	-webkit-animation: rotation 10s infinite linear;
			animation: rotation 10s infinite linear;
}
.labs-icon .roted-around.dagnger span::before, 
.labs-icon .roted-around.dagnger span::after {
	background-image: linear-gradient(-45deg, #fd4485 0%, #ffa38d 100%);
}
.labs-icon .roted-around.warning span {
	-webkit-animation: rotation 9s infinite linear;
			animation: rotation 9s infinite linear;
}
.labs-icon .roted-around.warning span::before, 
.labs-icon .roted-around.warning span::after {	
	background-image: linear-gradient(-45deg, #fd6300 0%, #ffe121 100%);
}
.labs-icon .roted-around.primary span {
	-webkit-animation: rotation 8s infinite linear;
			animation: rotation 8s infinite linear;
}
.labs-icon .roted-around.primary span::before, 
.labs-icon .roted-around.primary span::after {
    background-image: linear-gradient(to top right, #505eff 0%, #03bdff 100%);
}
.labs-icon .roted-around.secondary span {
	-webkit-animation: rotation 7s infinite linear;
			animation: rotation 7s infinite linear;
}
.labs-icon .roted-around.secondary span::before, 
.labs-icon .roted-around.secondary span::after {
	background-image: linear-gradient(-45deg, #b241ff 0%, #fe86ff 100%);
}
.labs-content {
	flex: 1;
}
.labs-content h4 {
	color: var(--gim-dark);
	font-weight: 700;
	margin-bottom: 25px;
	font-size: 1.1em;
}
@media screen and (max-width: 1199px) {
	.labs-content h4 {
		text-align: center;
	}
}

/* WORKING BLOCK */
.working-process .arrow-shape {
	position: absolute;
	top: -10px;
	right: -30px;
}
@media screen and (max-width: 991px) {
	.working-process .arrow-shape {
		top: 30px;
	}
}
@media screen and (max-width: 575px) {
	.working-process .arrow-shape {
		display: none;
	}
}
.working-process .working-process-list {
	position: relative;
	text-align: center;
}
.working-process .working-process-list .icon {
	margin: 0 auto 5px;
	position: relative;
	border: 1px solid #eee;
	border-radius: 50%;
	background-color: var(--gim-light);
	width: 170px;
	height: 170px;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
	.working-process .working-process-list .icon {
		width: 150px;
		height: 150px;
	}
}
@media screen and (max-width: 991px) {
	.working-process .working-process-list .icon {
		width: 140px;
		height: 140px;
	}
}
.working-process .working-process-list .icon::before {
	position: absolute;
	left: -8px;
	top: -8px;
	content: "";
	background-image: url("../images/circle.png");
	width: 110%;
	height: 110%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
}
.working-process .working-process-list:hover .icon::before {
	-webkit-animation: rotation 5s infinite linear;
			animation: rotation 5s infinite linear;
	opacity: 1;
	visibility: visible;
}
.working-process .working-process-list h5 {
	font-weight: 700;
	color: #474747;
	margin-bottom: 0;
	font-size: 1.1em;
	transition: all 0.3s;
}
.working-process .working-process-list:hover h5 {
	background: linear-gradient(to right, #f06292 0%, #ec407a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.working-process .working-process-list:nth-child(odd) {
	margin-top: 125px;
}
@media screen and (max-width: 991px) {
	.working-process .working-process-list:nth-child(odd) {
		margin-top: 0px;
	}
}
.working-process .working-process-list:nth-child(even) .arrow-shape {
	top: 125px;
	right: -40px;
}
@media screen and (max-width: 991px) {
	.working-process .working-process-list:nth-child(even) .arrow-shape {
		display: none;
	}
}

/*** ====================================================================
	Lecture Section
====================================================================***/

.lecture-section{
	position:relative;
	padding:30px 0px;
}
.lecture-section .owl-carousel .owl-stage-outer{
	position:static;
	padding:15px 0px;
}
.lecture-section .owl-theme .lecture-block{
	margin:0px 15px;
}
.lecture-section .owl-carousel{
	margin:0px -15px;
	width:auto;
}
.lecture-section .owl-nav{
	display:none;
}
.lecture-section .owl-dots{
	position:relative;
	text-align:center;
	margin-top:40px;
}
.lecture-section .owl-dots .owl-dot{
	position:relative;
	width:8px;
	height:8px;
	margin:0px 4px;
	border-radius:50px;
	display:inline-block;
	background-color:var(--gim-rose);
	transition:all 0.3s ease;
}
.lecture-section .owl-dots .owl-dot.active,
.lecture-section .owl-dots .owl-dot:hover{
	width:30px;
	background-color:var(--gim-dark);
}
.lecture-block{
	position:relative;
	margin-bottom:30px;
}
.lecture-block .inner-box{
	position:relative;
	min-height: 375px;
	text-align:left;
	border-radius:0px;
	padding:50px 45px 60px;
	transition:all 600ms ease;
	background: #b0bfc6;
	background: linear-gradient(to bottom, #b0bfc6 0%, #536d7a 100%);
}
.lecture-block .inner-box .arrow-icon{
	position:absolute;
	left:40px;
	bottom:-25px;
	width:50px;
	height:50px;
	color:#fff;
	font-size:1.5em;
	line-height:44px;
	text-align:center;
	border-radius:100%;
	display:inline-block;
	border:3px solid #fff;	
	opacity:0;
	transform:translateY(-25px);
	box-shadow:0px 15px 20px rgba(0,0,0,0.10);
	background: #03a9f5;
	background-image: linear-gradient(to bottom, #03a9f5 0%, #02579a 100%);
	transition:all 600ms ease;
}
.lecture-section .owl-carousel .owl-stage-outer .owl-item.center .lecture-block .inner-box .arrow-icon,
.lecture-block .inner-box:hover .arrow-icon{
	transform:translateY(0px);
	opacity:1;
}
.lecture-section .owl-carousel .owl-stage-outer .owl-item.center .lecture-block .inner-box,
.lecture-block .inner-box:hover{
	box-shadow:0px 0px 20px rgba(0,0,0,0.15);
}
.lecture-block .inner-box .color-layer{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	border-radius:0px;
}
.lecture-block .inner-box .color-layer:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:50%;
	height:100%;
	opacity:0;
	background: #ffffff;
	transform:rotateY(90deg);
	border-radius:0px;
	transition:all 500ms ease;
}
.lecture-block .inner-box .color-layer:after{
	position:absolute;
	content:'';
	right:0px;
	top:0px;
	width:50%;
	height:100%;
	opacity:0;
	background: #fff;
	transform:rotateY(90deg);
	border-radius:0px;
	transition:all 500ms ease;
}
.lecture-section .owl-carousel .owl-stage-outer .owl-item.center .lecture-block .inner-box .color-layer:before,
.lecture-section .owl-carousel .owl-stage-outer .owl-item.center .lecture-block .inner-box .color-layer:after,
.lecture-block .inner-box:hover .color-layer:before,
.lecture-block .inner-box:hover .color-layer:after{
	opacity:1;
	transform:rotateY(0deg);
}
.lecture-block .inner-box .icon-box{
	position:relative;
	color:#ffffff;
	z-index:1;
	font-size:60px;
	line-height:1em;
	padding:10px 10px;
	margin-bottom:20px;
	transition:all 600ms ease;
}
.lecture-section .owl-carousel .owl-stage-outer .owl-item.center .lecture-block .inner-box .icon-box,
.lecture-block .inner-box:hover .icon-box{
	color:var(--gim-blue);
}
.lecture-section .owl-carousel .owl-stage-outer .owl-item.center .lecture-block .inner-box .icon-box,
.lecture-block .inner-box:hover .icon-box{
	background:none;
}
.lecture-section .owl-carousel .owl-stage-outer .owl-item.center .lecture-block .inner-box .text,
.lecture-block .inner-box:hover .text,
.lecture-section .owl-carousel .owl-stage-outer .owl-item.center .lecture-block .inner-box h5,
.lecture-block .inner-box:hover h5{
	color:var(--gim-dark);
}
.lecture-block .inner-box h5{
	position:relative;
	line-height:1.3em;
	font-weight:600;
	color: #fff;
}
.lecture-block .inner-box h5 a{
	position:relative;
	color:#fff;
	transition:all 600ms ease;
}
.lecture-block .inner-box .text{
	position:relative;
	color:#fff;
	font-size:1em;
	line-height:1.8em;
	margin-top:10px;
	transition:all 600ms ease;
}
@media only screen and (max-width: 767px){
	.lecture-section .owl-carousel{
		margin:0px -15px;
	}	
}
@media only screen and (max-width: 575px) {	
	.lecture-block .inner-box{
		padding:20px 20px 35px;
	}
}

/* FAQ */
.faq-block {
	position: relative;
}
.faq-image {
	text-align: center;
}
.faq-image img {
	-webkit-animation: move 1s infinite alternate;
			animation: move 1s infinite alternate;
}
.accordion {
	margin-top: 40px;
	margin-bottom: -10px;
}
@media screen and (max-width: 991px) {
	.accordion {
		margin-top: 0px;
	}
}
.accordion-button {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 19px 40px;
	font-size: 18px;	
	font-weight: 700;
	line-height: 1.5;
	text-align: left;
	border: 0;
	border-radius: 15px;
	overflow-anchor: none;
	color: var(--gim-bluedark);
	background-color: var(--gim-light);
	transition: color 0.15s ease-in-out, 
				background-color 0.15s ease-in-out, 
				border-color 0.15s ease-in-out, 
				box-shadow 0.15s ease-in-out, 
				border-radius 0.15s ease, 
				-webkit-box-shadow 0.15s ease-in-out;
}
@media screen and (max-width: 767px) {
	.accordion-button {
		padding: 19px;
	}
}
@media screen and (max-width: 767px) {
	.accordion-button {
		font-size: 16px;
	}
}
@media (prefers-reduced-motion: reduce) {
	.accordion-button {
		transition: none;
	}
}
.accordion-button.collapsed {
	border-bottom-width: 0;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}
.accordion-button:not(.collapsed) {
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	color: #02105f;
	background-color: #f7faff;
	box-shadow: inset 0 0px 0 rgba(0, 0, 0, 0.125);	
}
.accordion-button:not(.collapsed) span {
	background: linear-gradient(45deg, #03a9f5 0%, #02579a 50%, #03a9f5 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.accordion-button:not(.collapsed)::after {
	font-family: 'Line Awesome Free';
	font-weight: 900;	
	content: "\f106";
	background-image: none;
	transform: rotate(0deg);
	color: var(--gim-rose);
}
.accordion-button::after {
	background-image: none;
	font-family: 'Line Awesome Free';
	font-weight: 900; 	
	content: "\f107";
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-text-fill-color: currentColor;
	background-color: white;
	box-shadow: 0px 5px 8px 0px rgba(39, 66, 161, 0.03);
	width: 30px;
	height: 30px;
	z-index: 1;
	border-radius: 50%;
}
.accordion-button:hover {
	z-index: 2;
}
.accordion-button:focus {
	z-index: 3;
	border-color:var(--gim-blue);
	outline: 0;
	box-shadow: 0 0 0 0 rgba(2, 18, 106, 0.25);
}
.accordion-header {
	margin-bottom: 0;
}
.accordion-item {
	background: #f7faff!important;
	margin-bottom: 10px;
	border-radius: 15px;
	border: none;
}
.accordion-item:first-of-type .accordion-button {
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}
.accordion-item:last-of-type .accordion-button.collapsed {
	border-bottom-width: 0px;
	border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px;
}
.accordion-item:last-of-type .accordion-collapse {
	border-bottom-width: 0px;
	border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px;
}
.accordion-collapse {
	border: solid rgba(0, 0, 0, 0.125);
	border-width: 0 0px;
}
.accordion-body {
	padding: 19px 40px;
	padding-top: 0px;
}

/*DISTRIBUTE BALLS*/
.distribute-list {
	text-align: center;
}
.distribute-list li {
	display: inline-block;
	list-style: none;
	width: 350px;
	margin: 10px;
	vertical-align: top;
}	
@media (max-width: 575px) {
	.distribute-list li {
		width: 90%;
	}
}
.distribute-list li figure{
	padding: 20px;
	box-shadow: 0 15px 45px rgba(1, 2, 2, 0.10);
}	
.distribute-list li:hover figure{
	transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(1, 2, 2, 0.15);
}
.distribute-list li figure h3{
	font-size: 2em;	
	margin: 0;
}
.distribute-list li figure figcaption {
	font-size: 2em;
}	
.distribute-list li figure dl {
	margin: 20px 0;
}	
.distribute-list li figure dd {
	text-align: left;
	border-bottom: 1px dashed rgba(0,0,0,0.1);
	margin:0;
	padding: 10px 0;
}	
.distribute-list li figure dd:first-child {
	border-top: 1px dashed rgba(0,0,0,0.1);
}	
.distribute-list li figure dd:hover {
	background: #fafafa;
	padding-left: 5px;
}	
.distribute-list li figure dd span{
	display:inline-block;
	text-align:center;
	font-size:1.3em;
	font-weight: 600;
	line-height:2.2;
	background:var(--gim-light);
	width:50px;
	height:50px;
	margin-right:10px;
	border-radius:100%;
}
.distribute-list li figure dd span.test{
	background:var(--gim-blue);
	color: #fff;
}	
.deadline-list {
	text-align:center;
}
.deadline-list li {
	list-style:none;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-align: center;
	align-items: center;
	margin: 10px;
}
.deadline-list li strong{
	display:inline-block;
	background:var(--gim-light);
	width:30px;
	height:30px;
	margin-right:5px;
	border-radius:100%;
}
.deadline-list li strong.test{
	background:var(--gim-blue);
}



/* PAGES */

.title-picture img {
	-webkit-animation: move 0.8s infinite alternate;
			animation: move 0.8s infinite alternate;
}	
.work-block ol li,
.work-block ul li,	
aside ol li,
aside ul li {
	margin: 10px 10px 10px 30px;
}
.work-block h6 {
	text-align: center;
	margin: 30px  auto;
}
.image-list {
	padding: 0px;
	margin: 20px auto;
	list-style: none;
	text-align: center;
}
.image-list li {
	width:250px;
	display: inline-block;
	margin: 10px;
	padding: 0px;
	vertical-align:top;
	list-style-type: none;
}
.image-list figure{
	position: relative;
    overflow: hidden;
    margin: 0;
	padding:10px;
	transition: all 1s ease;
}
.image-list figure:hover{
	box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 
				0 3px 20px 0px rgba(0, 0, 0, 0.12), 
				0 8px 10px -5px rgba(0, 0, 0, 0.2);	
}
.image-list figure img{
	max-width:230px;
	max-height:230px;
}
.image-list figcaption {
	padding: 10px;
	font-size: 1.2em;
} 

.image-list.big li {
	width:350px;
}
.box-code {
	background:rgba(228,234,242,0.7);
	padding:10px 20px;
	margin:20px 0;
	line-height: 1.3;
	font-size: 0.9em;
}
ul.column3,
ul.column2,
ul.column1 {
	margin:10px 0 20px;
}
ul.column3{
 -webkit-columns: 3; 
	-moz-columns: 3; 
		 columns: 3;
		 
-webkit-column-gap: 2em;
   -moz-column-gap: 2em;
		column-gap: 2em;	 
}
ul.column2{
 -webkit-columns: 2; 
	-moz-columns: 2; 
		 columns: 2;
		 
-webkit-column-gap: 2em;
   -moz-column-gap: 2em;
		column-gap: 2em;	 
}
ul.column3,
ul.column2 {
	margin:10px 0 20px;
}
@media (max-width:991px) {
	ul.column3,
	ul.column2 {
	 -webkit-columns: 1; 
		-moz-columns: 1; 
			 columns: 1;
	}
}

.masonry {
	-webkit-column-count: 2;
	-moz-column-count:2;
	column-count: 2;
	-webkit-column-gap: 1.5em;
	-moz-column-gap: 1.5em;
	column-gap: 1.5em;
	margin: 0;
	padding: 0;
	font-size: .85em;
}
.masonry .item {
	display: inline-block;
	background: #fff;
	padding: 10px 10px 0;
	margin: 0 0 1.5em;
	width: 100%;
	transition:1s ease all;
	box-sizing: border-box;
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);	
}
.masonry .item p{
	font-size: 1.1em;
	line-height: 1.5;
}

.masonry .item .box-code {
	font-size: 0.75;
	line-height: 1.2;
}
@media only screen and (max-width: 767px) {
	.masonry {
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;
	}
}

img.float-end {
	float: right;
	width: 150px;
	margin-left: 20px;
	margin-bottom: 20px;
}
.page-content ol li,
.page-content ul li{
	margin: 10px 10px 10px 30px; 
}

.resource-list	li {
	display: inline-block;
	width: 230px;
	border: 1px solid #fff;
}
.resource-list	li a{
	display: flex;
	width: 100%;
	background: var(--gim-light);
	padding: 10px;
	color: var(--gim-dark);
}	
.resource-list	li:hover{
	transform: translateY(-5px);
	box-shadow: 0 0 30px 0 rgba(0,0,0,0.1);
}

.video-block .ratio {
	margin: 10px;
}
.video-block h5 {
	text-align: center;
	margin: 0 0 25px;
}
@media only screen and (min-width: 992px) {
	.ratio-box  {
		width: 60%;
		margin: auto;
	}
}

@media only screen and (min-width: 992px){
	.video-single {
		width: 800px;
		margin: auto;
	}	
}	