@import url('https://fonts.googleapis.com/css2?family=Holtwood+One+SC&family=Inter:wght@100;300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');

:root{
	--academy: #CDE782;
	--dina: #FFF96A;
	--innovation: #D2AD8C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    /* background: linear-gradient(-45deg, #9c27b0, #673ab7); */
    background-size: 100% 200%;
    color: #000000;
    min-height: 100vh;
    font-size: 14px;
	    overflow-x: hidden;
  }
  .nav-logo-margin{
    color: #fff;
  }
  .by{
    color: #fff;
    text-transform: lowercase;
    margin-left: 10px;
    font-size: 16px;

font-weight: 400;
line-height: 49.12px;
  }
  .nav-logo img {
    width: 40px;
}
.nav-logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-logo a{
    font-size: 34.39px;
    font-family: 'Holtwood One SC', serif;
    font-weight: 400;
    line-height: 49.12px;
	white-space: nowrap;
}
.nav-logo-margin{
    margin: 0px 12px;
}
img.user-pic {
    width: 40px;
    border-radius: 50%;
}
.user{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}
  /* navbar */

  .navbar {
	background: #001D21;
	height: 65px;
	display: flex;
	align-items: center;
	/*padding: 0 15px;*/
	-webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
	box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  }
   .navbar.cloned {
		position: fixed;
		top: 0px;
		width: 100%;
		z-index: 999;
		box-shadow:0px 0px 10px rgba(0,0,0,.1);
		opacity: 1;
	}
	.navbar.cloned.unsticky {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translate(0, -100%) scale(1);
		transition: 0.3s;
	}
	.navbar.cloned.sticky {
		opacity: 1;
		visibility: visible;
		transform: translate(0, 0) scale(1);
		transition: 0.3s;
	}
  
  .navbar .logo {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
  }
  
  /* nav menu button */
  
  .menu-btn {
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    z-index: 2;
  }
  
  .navbar .menu-btn__lines::before,
  .navbar .menu-btn__lines::after {
    content: "";
    position: absolute;
  }
  
  .navbar .menu-btn__lines,
  .navbar .menu-btn__lines::before,
  .navbar .menu-btn__lines::after {
    width: 1.5rem;
    height: 0.1rem;
    background: #fff;
    transition: all 0.4s ease-in-out;
  }
  
  .navbar .menu-btn__lines::before {
    transform: translateY(-0.5rem);
  }
  
  .navbar .menu-btn__lines::after {
    transform: translateY(0.5rem);
  }
  
  .navbar .menu-items {
    display: flex;
    align-items: center;
    margin-left: 30px;
	    margin-bottom: 0;
  }
  
  .navbar ul li {
    list-style: none;
    transition: 0.3s ease;
  }
  
  .navbar ul li .arrow {
    transition: all 0.3s ease-out;
  }
  
  .navbar ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
  }
  
  /* dropdown menu */
  
  .navbar .drop-menu {
    position: relative;
  }
  .expand-btn:after {
    content: " \25BE";
    /* opacity: 0.4; */
    margin-left: 5px;
	 font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: "\f078";
    font-size: 10px;
    margin-top: 1px;
  }
  .drop-menu .menu-item.expand-btn::after {
    position: absolute;
    right: 10px;
    top: 7px;
  }
  
  .navbar .drop-menu,
  .menu-right {
       position: absolute;
    background: #ffffff;
    width: 190px;
    line-height: 30px;
    border-radius: 0 0 5px 5px;
    top: calc(100% + 22px);
    border-top: 1px solid white;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 0 50px 0 rgb(0 0 0 / 14%);
    padding-left: 0;
  }
  
  .navbar .menu-right {
    top: 0;
    left: 100%;
  }
  .navbar .drop-menu,
  .menu-left {
/*    left: unset;*/
    right: 0;
  }
  .navbar .menu-left {
    left: -100%;
  }
  
  .navbar .menu-item {
    display: flex;
    margin-right: 15px;
    font-size: 14px;
  }
  .navbar .menu-item:hover {
    color: #e5e5e5;
  }
  .navbar .menu-item.active:hover {
    color: #001d21;
}
  .drop-menu .menu-item {
    padding: 6px 15px;
    margin: 0;
    color: #000;
    border-bottom: 1px solid #e1e1e1;
  }
  .drop-menu li:last-child .menu-item {
    border-bottom:  none;
  }
  
  .navbar .ddown:hover .drop-menu {
    opacity: 1;
    visibility: visible;
  }
  
  .navbar .dropdown-right:hover .menu-right {
    left: 100%;
    opacity: 1;
    visibility: visible;
  }
  
  .navbar .dropdown-right:hover .menu-left {
    left: -100%;
  }
  
  /* mega menu  */
  
  .navbar .mega-menu {
    position: absolute;
    left: 0;
    width: 100vw;
    top: 65px;
    border-top: 1px solid #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
  }
  
  .mega-menu .content {
    background: #e9ecef;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    justify-content: space-between;
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  }
  
  .blog .content {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .content .col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    line-height: 3rem;
  }
  
  .content .col .img-wrapper {
    display: block;
    position: relative;
    width: 100%;
    height: 20vw;
    overflow: hidden;
  }
  
  .content .col .img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  .content .col img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
  }
  
  .content .col .img-wrapper:hover img {
    transform: scale(1.1);
  }
  
  .content .col .menu-title {
    color: #ff5722;
    font-size: 1.2rem;
    line-height: 3rem;
    font-weight: bold;
  }
  
  .content .col p {
    line-height: 1.2rem;
    margin-top: 5px;
    color: #112f48;
  }
  
  .content .col .mega-links {
    border-left: 1px solid #3c3c3c;
  }
  
  .content .col .read-more {
    font-size: 16px;
    display: flex;
    padding-top: 1rem;
    color: #03a9f4;
    transition: color 0.3s ease;
    justify-content: flex-end;
    padding-right: 10px;
  }
  
  .col .mega-links li,
  .col .mega-links li a {
    padding: 0 1rem;
  }
  
  .menu-items li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
  }
  
  .content .col .read-more:hover {
    color: #ff5722;
  }
  
  /* container */
  .container {
    margin: 100px auto auto;
    padding: 0 15px;
    max-width: 1200px;
    text-align: center;
  }
  .container p {
    color: #ffffff;
  }
  
  h1 {
    font-weight: 700;
    line-height: 10vw;
    color: #ffffff;
    text-transform: uppercase;
  }
  
  /* animation menu hamburger */
  .menu-btn.open .menu-btn__lines {
    transform: translateX(1rem);
    background: transparent;
  }
  
  .menu-btn.open .menu-btn__lines::before {
    transform: rotate(45deg) translate(-0.5rem, 0.5rem);
    background: #fff;
  }
  
  .menu-btn.open .menu-btn__lines::after {
    transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
    background: #fff;
  }
  
  /* Responsive style */
  
  
  .user{
    position: relative;
  }
  .menu-items li .active{
    background-color: #E5E5E5;
    color: #000;
    border-radius: 86px;
    padding: 5px 12px;
    font-weight: 700;
  }
  .menu-items li a img{
    margin-right: 3px;
    width: 20px;
    height: 20px;
  }
  .dropdown-menu-bell{
        /* display: none; */
    position: absolute;
    top: 47px;
    right: 0;
    background: #fff;
    width: 278px;
    line-height: 30px;
    border-radius: 0 0 5px 5px;
    border-top: 1px solid white;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 0 50px 0 rgb(0 0 0 / 14%);
    padding-left: 0;
  }
  .user-corner{
    display: flex;
    justify-content: center;
align-items: center;
	      margin-bottom: 0;
  }
  .dropdown-bell:hover .dropdown-menu-bell{
    opacity: 1;
visibility: visible;
  }
.bell-item{
  display: flex;
justify-content: space-between;
width: 100%;
padding: 0.5rem 1.5rem;
font-size: 14px;
padding: 6px 15px;
margin: 0;
color: #000 !important;
border-bottom: 1px solid #e1e1e1;
}
.bell-item:hover{
color: #ff5722;
}
.bell-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
	color: #fff !important;
}
.bell-icon img {
  width: 20px;
  height: 20px;
}

.login-info{
	display: flex;
	align-items: center;
	position: relative;
}
.login-info h5, .login-info p{
	color:#fff;
	margin: 0;
	font-size:14px;
}
.login-info p{
	font-size:12px;
}
.login-info  img.user-pic {
    margin-right: 6px;
	width:40px;height: 40px;
}
.login-info >ul{
	width: 160px;
    top: 55px;
    left: auto;
    padding: 0;
    position: absolute;
    z-index: 8;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(89, 102, 122, 0.1);
    transform: translateY(4px);
    opacity: 0;
    visibility: hidden;
    right: 0;
    transition: all linear 0.3s;
}
.login-info >ul > li > a{
	padding: 6px 15px;
	font-size: 14px;
	color:#001d21;
	display: block;
    border-bottom: 1px solid #eee;
	font-size: 14px
}
.login-info >ul > li > a > i{
	margin-right: 4px;
	color: #E5E5E5;
}
.login-info:hover >ul{
	opacity: 1;
    transform: translateY(0px);
    visibility: visible;
    border-radius: 5px;
    overflow: hidden;
}
@media only screen and (min-width:1025px){
	.navbar ul li {
		position: relative;
	}
	.drop-menu .menu-item:hover {
		color: #fff;
		background: #10a37f;
	}
}


@media screen and (max-width: 1024px) {
	.user-corner {
		padding-left: 0px;
	}
	.login-info h5, .login-info p{
		display: none;
	}
	.login-info img.user-pic {
		margin-right: 0px;
	}
	.navbar {
		padding: 0px 0px;
	}
  	.navbar ul li {
		position: relative;
	}
    .overflow {
      overflow: hidden;
    }
  
    .overlay {
      position: fixed;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      z-index: 500;
      background-color: rgba(0, 0, 0, 0.6);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }
  	.navbar .logo {
		font-size: 14px;
	}
    .overlay--active {
      opacity: 1;
      visibility: visible;
    }
  
    .menu-btn {
      display: flex;
		    margin-left: 10px;
    }
  
    .navbar .menu-items {
      position: fixed;
      height: 100%;
      max-height: initial;
      overflow-y: auto;
      top: 65px;
      left: 0;
      background: #fcfcfc;
      display: block;
      transform: translateX(-100%);
      transition: 0.3s ease-out;
      padding-bottom: 100px;
		margin-left: 0px;
		padding:0;
		z-index: 100;
		
    width: 360px;
    }
  
    .menu-items.open {
      transform: translateY(0);
    }
  
    .menu-items li:first-child {
      margin-top: 0px;
    }
  	.menu-items li .active {
		/*background-color: #10a37f;
		color: #fff;*/
	}
    .menu-items li a {
      padding: 10px 1rem;
      display: block;
      font-size: 18px;
    }
  
    .menu-items .dropdown-right .right-arrow {
      transform: rotate(90deg);
    }
  
    .menu-item.first-item {
		padding: 12px 15px;
	}
  
    /* DROPDOWN, MEGA MENUS */
    .menu-items .drop-menu,
    .menu-items .menu-right,
    .menu-items .mega-menu {
      position: static;
      opacity: 1;
      top: 4rem;
      visibility: visible;
      margin-left: -18px;
      width: auto;
      max-height: 0;
      transform: scaleX(0);
      transform-origin: left;
      overflow: hidden;
      transition: all 0.5s ease;
    }
  
    .menu-items .drop-menu,
    .menu-items .menu-right {
      padding-left: 0;
    width: 100%;
    margin-left: 0;
    }
  
    .menu-items .mega-menu .col {
      padding-left: 1rem;
    }
  
    .expand-btn.open + .sample {
      max-height: 100%;
      transform: scaleZ(1);
    }
  
    .expand-btn.open + .blog.sample {
      max-height: 100%;
      transform: scaleZ(1);
      max-width: fit-content;
    }
  
    .navbar .sample {
      border-top: none;
    }
  
    .sample li {
      margin: 0;
    }
  
    .sample li:last-child {
      border-bottom: none;
    }
  
    .sample li a {
      font-size: 1rem;
    }
  
    .mega-menu .content {
      grid-template-columns: auto;
      padding: 1rem 1rem 0 1rem;
    }
  
    .mega-menu .content .col {
      width: 100%;
      padding-top: 1rem;
      margin-bottom: 0.5rem;
    }
  
    .col .mega-links li,
    .col .mega-links li a {
      padding: 0 0.5rem;
    }
  
    .content .col .mega-links {
      border-left: 0;
      padding-left: 0.5rem;
    }
    .col .mega-links li {
      margin: 0;
    }
	.nav-logo-margin {
		margin: 0px 6px;
		font-size: 10px;
	}
	  .navbar ul li a {
    	text-decoration: none;
   	 color: #212121;
	  }
	  .menu-items li a img {
		filter: brightness(0);
	}
.menu-items li .active {
    border-radius: 0;
    padding: 12px 15px;
}
	  .menu-items li a.active img {
    /*filter: brightness(10) saturate(0) contrast(1000);*/
}
	  .expand-btn:after {
		margin-left:0;
		position: absolute;
		right: 20px;
	}
	  .navbar .menu-item {
			margin-right: 0px;
		  border-bottom: 1px solid #f6f6f6;
		}
	.navbar .menu-item:hover {
		color: #001d21;
	}
  }

@media (min-width:1025px){
	body.academy .menu-items li .active {
		background-color: var(--academy);
		color: #000;
	}
}
.menu-items li a.active img {
    filter: brightness(0);
}
body.academy .breadcrumb-div {
    background-color: var(--academy);
}



.breadcrumb-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.breadcrumb-div{
  background-color: #FFF96A;
  padding: 12px 0;
}
.breadcrumb-div .breadcrumb-menu > ul {
  list-style: none;
  display: flex;
  align-items: center;
	margin: 0;
	padding: 0;
}
.breadcrumb-div .breadcrumb-menu > ul li:not(:first-child) {
  position:relative;
	margin-left:10px;
	padding-left: 15px;
}
.breadcrumb-div .breadcrumb-menu > ul li{
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  
}
.breadcrumb-div .breadcrumb-menu > ul li:not(:first-child):before {
  content:'/';
  display: block;
	position: absolute;
	left:0;
	top:0px;
	color: #676767;
}
.breadcrumb-div .breadcrumb-menu > ul li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  
}

@media (max-width:1024px){
	.breadcrumb-wrap {
		display: block;
		justify-content: space-between;
		align-items: center;
		padding: 0 15px;
	}
}



.search-section{
	padding: 50px 0px;
	padding-bottom: 60px;
	border-bottom: 1px solid #eee;
	width:100%;
	position: relative;
	overflow: hidden;
	
}
.search-section .search-container{
	display: flex;
	width: 100%;
	position: relative;
}
.search-section .search-container:before {
	font-family: 'Font Awesome 5 Free';
    color: #bebebe;
    position: absolute;
    left: 20px;
    top: 15px;
    content: "\f002";
	    font-weight: 900;
}
.search-section input.custom-search{
	padding: 15px 40px;
    /*border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    box-shadow: none;*/
    outline: none;
    border: 1px solid #001d21;
    /*border-right: none;*/
	border-radius: 50px;
	    width: 100%;
	padding-right: 235px;
}
.search-section a.clear-link {
    color: #001d21;
    text-decoration: none;
    padding: 2px 25px;
    display: inline-block;
    border-left: 1px solid #eee;
	white-space: nowrap;
}
.search-section .actions {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
}
.search-section .btn-search {
    border: none;
    box-shadow: none;
    padding: 15px 16px;
    min-width: 166px;
    background: #001d21;
	border:#001d21 1px solid;
    color: #fff;
    border-radius: 50px;
	transition: all .3s ease-in-out;
}
.search-section .btn-search:hover {
    background-color: var(--academy);
	color: #001d21
}
.search-section:before{
	content: '';
    display: block;
    background: url(../images/icons/online-learning.png);
    background-repeat: no-repeat;
    background-size: 83px;
    background-position: center center;
    width: 328px;
    height: 328px;
    position: absolute;
    right: 0;
    top: -60px;
    background-color: #c9e27f;
    border: 64px solid #f0ffc4;
    border-radius: 50%;
	transform: scale(1.2);
	z-index: -1;
}


@media (max-width:1024px){
	.search-section .search-container {
		display: block;
	}
	.search-section .actions {
		position: relative;
    	justify-content: center;
   		margin-top: 5px;
    	flex-direction: column;
	}
	.search-section .btn-search {
		min-width: 100%;
	}
	.search-section a.clear-link {
    	padding: 2px 0;
    	border: none;
	}
	.search-section:before {
		top: -7%;
		opacity: .7;
	}
}

.profiles-section{
	padding: 50px 0;
	position: relative;
}
.profiles-section .profiles-container {
    border: 1px solid #eee;
    padding: 35px 20px;
    padding-bottom: 25px;
    border-radius: 10px;
    text-align: center;
}

.profile-thumbnail {
    display: block;
	    margin-bottom: 20px;
}
.profile-thumbnail .profile-icon {
    background: #f0ffc4;
    border: 4px solid #c9e27f;
    width: 140px;
    height: 140px;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: -25px;
}
.profile-thumbnail .profile-icon img{
	width: 80px;
    height: 80px;
}
.profile-thumbnail .profile-text {
    
    
   
}
.profile-thumbnail .profile-text a, .profile-thumbnail .profile-text p {
    margin-bottom: 0;
    text-transform: uppercase;
    color: #000;
    font-weight: 700;
	text-decoration: none;
		background: #c9e27f;
	padding: 5px 15px;
	 white-space: nowrap;
    border-radius: 6px;
	min-width: 150px;
	display: inline-block;
	transition:all .3s ease-in-out;
}
.profile-thumbnail .profile-text a:hover, .profile-thumbnail .profile-text p:hover{
	background: #001D21;
	color:#fff;
}

.profile-thumbnails {
    display: flex;
	flex-wrap: wrap;
    justify-content: space-around;
}

@media (max-width:1024px){
	.profile-thumbnails {
		justify-content:center;
	}
	.profile-thumbnail {
		margin: 0 3px;
		margin-bottom: 20px;
	}
	.profiles-section .profiles-container {
		margin-bottom: 15px;
	}
}



.whatsapp-feedback{
	background: #f0ffc4;
	padding: 12px 20px;
    border-radius: 10px;
	height: 100%;
}
.whatsapp-feedback .icons-heading{
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	    margin-bottom: 10px;
    width: 100%;
}
.whatsapp-feedback .icons-heading img{
	max-width: 40px;
	margin-bottom: 15px;
}

.whatsapp-feedback .form-control{
    border: 1px solid #bdbdbd;
    margin-bottom: 20px;
	outline: 0;
	box-shadow: none;
}

.whatsapp-feedback .btn-submit {
    border: none;
    box-shadow: none;
    padding: 15px 16px;
    min-width: 100%;
    background: #001d21;
	border:#001d21 1px solid;
    color: #fff;
    border-radius: 50px;
	transition: all .3s ease-in-out;
	text-align: center;
}
.whatsapp-feedback .btn-submit:hover {
    background-color: var(--academy);
	color: #001d21
}



.agronomy-section{
	padding:0;
	padding-bottom: 25px;
}
.agronomy-section .heading-section{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.agronomy-section .heading-section h5{
	margin-bottom: 0;
	font-weight: 600
}
.agronomy-section .heading-section a{
	margin-left: 20px;
	margin-top: 3px;
}

.course-thumbnail{
	background: #fff;
	box-shadow: 0px 10px 8px rgba(0 0 0 / 10%);
	border-radius: 10px;
	display: flex;
	overflow: hidden;
	margin-bottom: 15px;
}
.course-thumbnail .course-image{
	display: block;
	height: 100%;
	min-height: 160px;
	min-width: 140px;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	
}
.course-thumbnail .course-desc{
	display: flex;
	flex-direction: column;
	padding: 15px 10px;
	justify-content: center;
	position: relative;
}
.course-thumbnail .course-desc h6{
	font-weight: 600;
}
.course-thumbnail .action-button{
	display: flex;
    align-items: center;
    min-width: 50px;
    height: auto;
    justify-content: center;
	padding-right: 15px;
}
.course-thumbnail .action-button a{
	color: #001d21;
    background: #f0ffc4;
    width: 40px;
    height: 40px;
	min-width: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
	transition:all .3s ease-in-out;
}
.course-thumbnail .action-button a:hover{
	color: #fff;
    background: #001d21;
}

.footer{
	background: #001D21;
	padding: 50px 0;
}
.footer-logo{
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
	margin-bottom: 40px;
}
.footer-logo .logo {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
	font-family: 'Holtwood One SC', serif;
    font-weight: 400;
    line-height: 49.12px;
    white-space: nowrap;
  }
.footer-logo .by-logo {
	display: flex;
    justify-content: flex-start;
    align-items: center;
}
.footer-logo .by-logo img {
    max-width: 40px;
}
.footer-logo .by {
    font-size: 16px;
    margin: 0;
    margin-bottom: 15px;
}
.footer h6{
	color: #aeaeae;
	margin-bottom: 20px;
}
.footer ul{
	list-style: none;
	padding-left: 0;
}
.footer ul li a{
	color: #fff;
    padding-bottom: 8px;
    text-decoration: none;
    display: inline-block;
	transition:all .3s ease-in-out;
}
body.academy .footer ul li a:hover {
    color:var(--academy);
}
.footer-bottom {
    background: #001d21;
    padding: 15px 0;
    border-top: 1px solid #042529;
}
.footer-bottom p{
    margin: 0;
	color:#fff;
	margin-top: 7px;
}
ul.footer-social {
    list-style: none;
    padding: 0;
    display: flex;
    margin: 0;
    justify-content: flex-end;
}
.footer-social li a {
    display: inline-block;
    margin-left: 17px;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-size: 21px;
    color: #ccc;
}
body.academy .footer-social li a:hover {
	color:var(--academy);
}
@media (max-width:1024px){
	ul.footer-social {
		justify-content: flex-start;
	}
	.footer-bottom p{
		margin-bottom: 15px;
	}
}