

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --clr-bg-header: #3D8361;
  --clr-btn: #3D8361;
  --clr-dropdown: #1C6758;
  --clr-nav-hover: #1E6F5C;
  --clr-dropdown-hov: #289672;
  --clr-dropdown-link-hov: #29BB89;
  --clr-light: #FAFAFA;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body { 
			margin: 0; 
			font-family: 'Arial', sans-serif; 
		}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

header {
  top: 0px;
  background: #fff;	
  width: 100%;
  min-height: 50px;
  z-index: 1000;
}


.container {
  max-width: 70rem;
  padding: 0 2rem;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.newstitle{
    width:100%;
}


.nav-btn {
  flex: 3;
  display: flex;
}

.nav-links {
  flex: 2;
}


.nav-links > ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-link {
  position: relative;
}

.nav-btn .nav-links .nav-link > a {
  line-height: 1rem;
  color: black;
  padding: 0.2rem;
  letter-spacing: 1px;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .5s;
}

.nav-link > a > i {
  margin-left: .2rem;
}

.nav-btn .nav-links .nav-link > a:hover {
  text-decoration: none;
}

.nav-link:hover > a {
  transform: scale(1.1);
}


.dropdown {
      background: #fafafa;
			opacity: 0;
			padding: 15px 0;
			position: absolute;
			top: 100%;
			transform: scaleY(0);
			transform-origin: 0 0 0;
			visibility: hidden;
			transition: all 0.3s ease-in-out 0s;
			box-shadow: 0 1px 2px 2px rgba(0,0,0,0.2);
			width: 220px;
			z-index: 99;
			border-radius: 3px;
}

.dropdown ul {
  position: relative;
}

.dropdown-link > a {
  display: flex;
  background-color: var(--clr-light);
  color: var(--clr-dropdown);
  padding: .5rem 1rem;
  font-size: 0.95rem;
  align-items: center;
  justify-content: space-between;
  transition: .3s;
}

.dropdown-link > a:hover{
  text-decoration: none;
}

.dropdown-link:hover > a {
  background-color: var(--clr-dropdown);
  color: var(--clr-light);
}

.dropdown-link:not(:nth-last-child(2)) {
  border-bottom: 1px solid var(--clr-light);
}

.dropdown-link i {
  transform: rotate(-90deg);
}


.dropdown-link {
  position: relative;
}

.dropdown.second {
  top: 0;
  left: 100%;
  padding-left: .8rem;
  cursor: pointer;
  transform: translateX(10px);
}


.nav-link:hover > .dropdown,
.dropdown-link:hover>.dropdown {
  transform: scaleY(1);
	opacity: 1;				
	visibility: visible;
}


@keyframes animation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

.nav-links .responsive-menu {
  background: #11998e; 
  background: -webkit-linear-gradient(to right, #38ef7d, #11998e);  
  background: linear-gradient(to right, #38ef7d, #11998e); 
}

.header-middle .ins-title{
  display: none;
}

.nav-btn .responsive-menu a { 
      margin-top: 1px;
			display: none; 
      font-size: 25px;
      font-weight: 400;
		} 


		.nav-btn .responsive .responsive-menu a { 
			position: absolute; 
			right: 0; 
			top: 0;    
		} 

    .responsive .nav-links{
      display: none;
    }

    .header-sticky.sticky {
      background: #11998e;  
      background: -webkit-linear-gradient(to right, #11998e, #38ef7d);  
      background: linear-gradient(to right, #11998e, #38ef7d); 
      left: 0;
      position: fixed;
      right: 0;
      top: 0;
      -webkit-transition: all 300ms ease-in 0s;
      transition: all 300ms ease-in 0s;
      z-index: 1049;
    }
    .sticky {
        -webkit-animation: 800ms ease-in-out 0s normal none 1 running slideInDown;
        animation: 800ms ease-in-out 0s normal none 1 running slideInDown;
    }

    .header-sticky.sticky .responsive-menu a{
      display: none;
    }


    .slider_container{
      position: relative;
      width: 100%;
      height: 25rem;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      overflow: hidden;
  }
  .slider{
      position: relative;
      width: 700%;
      height: 100%;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      animation: 30s cubic-bezier(1, 0.95, 0.565, 1) sliding infinite;
  }
  .slide{
      position: relative;
      min-width: 100%;
      height: 100%;
  }
  .slide img{
      width: 100%;
      height: 100%;
  }

  .slide .caption{
    position: absolute;
    left: 0;
    bottom: 5%;
    font-size: 5rem;
    font-weight: 600;
    color: white;
    text-transform: capitalize;
    background: rgba(0, 0, 0, 0.348);
    backdrop-filter: blur(10px);
    padding: 1rem 5rem;
    border-radius: 0 2rem 2rem 0 ;
}

  @keyframes sliding {
        0% { 
          transform: translateX(0%);
      }
      10%{
          transform: translateX(0%);
      }
      15%{
          transform: translateX(-100%);
      }
      25%{
          transform: translateX(-100%);
      }
      30%{
          transform: translateX(-200%);
      }
      40%{
          transform: translateX(-200%);
      }
      45%{
          transform: translateX(-300%);
      }
      50%{
          transform: translateX(-300%);
      }
      60%{
          transform: translateX(-400%);
      }
      65%{
          transform: translateX(-400%);
      }
      70%{
          transform: translateX(-500%);
      }
      80%{
          transform: translateX(-500%);
      }
      85%{
          transform: translateX(-600%);
      }
      95%{
          transform: translateX(-600%);
      }
      100%{
          transform: translateX(-700%);
      }
      
      
  }

    
@media (max-width: 691px) {

    .nav-btn .nav-links { 
      margin-top: 35px;
      background: #11998e; 
	  background: -webkit-linear-gradient(to right, #38ef7d, #11998e);  
 	  background: linear-gradient(to right, #38ef7d, #11998e); 
      padding: 0 2rem;
      width: 100%;
      flex: initial;
      margin-left: -32px; 
      visibility: visible; 
      z-index: 9999;
	  } 

      .container{
        width: 100%;
        padding: 0 0;
      }
      
      .staff{
           justify-content: center;
           align-items: center;
           }
 
	.nav-btn .responsive-menu a { 
		display: block; 
        padding: 0 2rem;
        float: left;
        margin-left: 0;     
			}

      .header-middle .ins-title{
        display: block;
      }

      header {
        height: 120px;
        background: #11998e; 
	      background: -webkit-linear-gradient(to right, #38ef7d, #11998e);  
 	      background: linear-gradient(to right, #38ef7d, #11998e); 
      }
      .header-top {
        display: none;
      }

      .header-middle .top {
        display: none;
      }
  .nav-links > ul {
    flex-direction: column;
  }

  .nav-link {
    width: 100%;
    opacity: 1;
        
  }

  .nav-link > a > i {
		margin-left: .2rem;
  }

  .nav-link > a {
    line-height: 1;
    padding: 1.6rem 2rem;
  }

  .nav-link:hover > a {
    transform: scale(1.1);
    
  }

  .dropdown,
  .dropdown.second {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    background-color: var(--clr-dropdown-hov);
    display: none;
  }

  .nav-link:hover > .dropdown,
  .dropdown-link:hover>.dropdown {
    display: block;
    margin-left: 70px;
  }

  .nav-link:hover > a > i,
  .dropdown-link:hover>a>i {
    transform: rotate(360deg);
  }

  .dropdown-link > a {
    background-color: transparent;
    color: var(--clr-light);
    padding: 1.2rem 2rem;
    line-height: 1;
  }

  .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 3rem;
  }

  .dropdown.second .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 4rem;
  }

  .dropdown-link:not(:nth-last-child(2)) {
    border-bottom: none;
  }

 
  .nav-link > a > i {
    font-size: 1.1rem;
    transform: rotate(-90deg);
    transition: .7s;
  }

  .dropdown i {
    font-size: 1rem;
    transition: .7s;
  }

  .frame {
    width: 100%;
  }

 

  .f-bottom {
    padding-left: 0px;
  }


}

.header-top {	
  height: 45px;
	padding: 12px 0;
	border-bottom: 1px solid #e1e1e1;
	color: black;
	background: #11998e; 
	background: -webkit-linear-gradient(to right, #38ef7d, #11998e); 
 	background: linear-gradient(to right, #38ef7d, #11998e); 
}

.header-bottom {
  height: 40px;
	background: #11998e;  
	background: -webkit-linear-gradient(to right, #67c98c, #11998e);  
 	background: linear-gradient(to right, #67c98c, #11998e); 
}


.header-middle {
  
  	padding: 10px;
}

.heading {
	font-size: 20px;
	font-weight: 500;
	border-bottom: 1px solid #46b7c1;
	margin-bottom: 20px;
	color: #46b7c1;
  }

.event {
	width: 48%;
	margin-right: 1%;
	float: left;
	background-color: #fff;
	padding: 10px;
  }
  
  .event .heading {
	border-bottom: 1px solid #46b7c1;
	padding: 5px;
	color: #fff;
	background: #46b7c1;
	text-align: center;
  }

  .event ul li {
	margin-bottom: 20px;
	width: 100%;
	float: left;
	list-style: none;
  }

  .event-date {
	background: #46b7c1;
	float: left;
	text-align: center;
	font-size: 14px;
	color: #fff;
	padding: 8px 12px;
	margin-right: 10px;
  }
  
  .event h6{
	text-align: center;
  }
  
  .newnews a {
  font-size: 13px;
  }
  
  .head-img {
    border-radius: 2%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
}

.event {
  width: 49%;
  margin-right: 1%;
  float: left;
  background-color: #fff;
  padding: 10px;
}

#news {
  background: #fff;
  padding-top: 10px;
}
.headnew {
  border-bottom: 1px solid #46b7c1;
  padding: 5px;
  color: #fff;
  background: #46b7c1;
  text-align: center;
}
.newsshow a {
  color: #242424;
}

.video .video-card video{
  width: 100%;
}

.video .video-card {
  z-index: 1;
  background: #dcdfd2;
  position: relative;
  width: 100%;
  margin: 20px;
  border-radius: 10px;
  margin-left: 5px;
}

.video .video-card iframe{
   width: 100%; 
   height: 400px;
}

.form-data{
  margin: 30px auto;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  background-color: #FFF; 
  padding-bottom: 5%;
  padding-top: 30px;
  padding-left: 30px;
}

.form-head{
  border: 5px solid rgba(255, 255, 255, .25);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, .45);
  background: linear-gradient(to right, #a8bcbe, #e0eca6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(15px);
}

.ins-details{
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #f0f3fa;
    padding: 30px 0 30px 0;
    width: 100%;
    height: 100%;
    align-items: center;
    text-align: center;
}

.staff {
  padding: 20px 0 20px 0;
  line-height: 1rem;
  display: flex;
  justify-content: space-between;
}

.card-img-top {
  width: 100%;
  border-radius: 3%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.card {
  width: 290px;
  margin-bottom: 10px;
  padding: .5em 0.5em 0.5em;
  text-align: center;
  line-height: .8;
  border-radius: .5em;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.card-title {
  font-weight: bold;
  font-size: 1.5em;
}
.btn-primary {
  border-radius: 2em;
  padding: 0.5em 1.5em;
}

.frame{
  border: 2px solid;
  box-shadow: 10px 10px 15px rgb
  (193, 182, 182), -6px -6px 15px #eee;
  padding: 20px;
  width: 500px;
  height: auto;
  margin: 40px auto;
  border-radius: 15px;
  color: white;
	background: #11998e;  
	background: -webkit-linear-gradient(to right, #38ef7d, #11998e); 
 	background: linear-gradient(to right, #38ef7d, #11998e); 
  align-content: center;
}

.frame select, input {
  height: 40px;
  width: 100%;
  border-radius: 5px;
  border: none;
  margin: 2px 0 2px 0;
  outline: none;
}

.vsearch select, input {
  height: 40px;
  border-radius: 5px;
  border: none;
  margin: 2px 0 2px 0;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
}


.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #444;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

.limupa-counter {
	padding-bottom: 90px;
	padding-top: 90px;
	text-align: center;
	width: 100%;
}
.counter-img {
	display: inline-block;
	margin-right: 20px;
	vertical-align: middle;
}
.counter-info {
	color: #444;
	display: inline-block;
	text-align: left;
	vertical-align: middle;
}

.white-bg {
	background: #fff;
}
.white-smoke-bg {
	background: #f8f8f8;
}
.gray-bg {
	background: #e8e8e8;
}
.blue-bg {
	background: #4FC1F0;
}
.default-bg {
	background: #50C1F0;
}
.black-bg {
	background: #000;
}
.transparent-bg {
	background: transparent;
}

.footer {
	background: #11998e;  
	background: -webkit-linear-gradient(to right, #11998e, #38ef7d);  
 	background: linear-gradient(to right, #11998e, #38ef7d); 
	border-top: 1px solid #e1e1e1;
}

.iframe-element {  
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 400px;
  border: none;
}

.f-bottom {
  padding-left: 22px;
}
.footer-block .useful-link li a{
  line-height: .9;
}

.f-bottom .des > li, a {
	color: #fff;
	font-size: 14px;
	margin: 0;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 5px;
}


.footer-block > h3 {
	font-size: 20px;
	line-height: 24px;
	font-weight: 500;
	color: #242424;
	margin: 0 0 15px 0;
	cursor: pointer;
	padding-top: 20px;
	text-transform: capitalize;
}
.footer-block > ul > li {
	display: block;
	margin: 0;
	line-height: 32px;
	border: 0;
	padding: 0;
}
.footer-block > ul > li > a {
	font-size: 14px;
	color: #fff;
	line-height: 36px;
	display: block;
	position: relative;
	transition: all 0.3s ease-in-out;
}
.footer-block > ul > li > a:hover {
	color: #242424;
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.social-link {
	line-height: 30px;
	margin-bottom: 40px;
	margin-top: 25px;
}
.social-link > li {
	display: inline-block !important;
	transition: all 0.3s ease-in-out;
	margin-right: 12px !important;
}
.social-link > li > a {
	width: 40px;
	height: 40px;
	line-height: 40px !important;
	text-align: center;
}
.social-link > li > a > i {
	font-size: 18px;
	color: #fff;
}
.social-link > li:hover > a {
	background: #fed700 ;
}
/*Social Link Color Variations*/
.twitter {
	background: #40c1df;
}
.rss {
	background: #eb8314;
}
.google-plus {
	background: #ed3c32;
}
.facebook {
	background: #3c5b9b;
}
.youtube {
	background: #c72982;
}
.instagram {
	background: #c619b8;
}

.footer-newsletter {
	float: left;
	width: 100%;
}
.footer-newsletter > h4 {
	font-size: 20px;
	line-height: 24px;
	font-weight: 500;
	color: #242424;
	margin: 25px 0 25px 0;
	cursor: pointer;
	text-transform: capitalize;
}
.footer-newsletter .form-group {
	position: relative;
	float: left;
	width: 100%;
}
.footer-newsletter .form-group input {
	background: #fff;
	border: 1px solid #e1e1e1;
	padding: 0 135px 0 10px;
  outline: invert;
  outline-color: #fff;
}
.footer-newsletter .form-group .btn {
	position: absolute;
	right: 0;
	background: #fed700;
	border: none;
	color: #242424;
	height: 45px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	padding: 0 28px;
	display: block;
	line-height: 29px;
	top: 0;
	transition: all 0.5s ease-in-out;
}
.footer-newsletter .form-group .btn:hover {
	background: #333333;
	color: #ffffff;
}

.modal-wrapper {
  display: block !important;
}
.modal-wrapper.modal {
  visibility: hidden;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: -9;
}
.modal-wrapper.modal.show {
  visibility: visible;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  z-index: 1050;
}
.modal-wrapper .modal-dialog {
  max-width: 880px;
}
.modal-wrapper .close {
  color: #333333;
  font-size: 30px;
  font-weight: 400;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  position: absolute;
  right: 15px;
  top: 5px;
  z-index: 99;
}
.modal-wrapper .close:hover {
	color: #fed700;
}

.single-banner > a {
	width: 100%;
	height: 100%;
	display: block;
	overflow: hidden;
	position: relative;
}

.lg-image img {
  	width: 100%;
	height: 100%;
	display: block;
	overflow: hidden;
}

.single-banner > a::before {
	position: absolute;
	content: "";
	top: 15px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	border: 1.5px solid #fff;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: opacity 0.35s,transform 0.35s;
	-moz-transition: opacity 0.35s,transform 0.35s;
	-ms-transition: opacity 0.35s,transform 0.35s;
	-o-transition: opacity 0.35s,transform 0.35s;
	transition: opacity 0.35s,transform 0.35s;
	-webkit-transform: translate3d(-10px,0,0);
	-moz-transform: translate3d(-10px,0,0);
	-ms-transform: translate3d(-10px,0,0);
	-o-transform: translate3d(-10px,0,0);
	transform: translate3d(-10px,0,0);
}

.single-banner:hover > a:before {
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.single-banner > a > img {
	width: 100%;
}

.single-banner img {
  width: 100%;
}

.gallery-title{
  background: #fff;
  width: 100%;
  border-radius: 2%;
  margin: auto;
}

.breadcrumb-area {
	padding: 10px 0 10px;
	background: #f9f9f9;
}
.breadcrumb-content li {
	color: #a4a4a4;
	display: inline-block;
	font-size: 14px;
	margin-right: 28px;
	position: relative;
}
.breadcrumb-content li a {
	color: #242424;
}
.breadcrumb-content li a:hover {
	color: #242424;
	text-decoration: none;
}
.breadcrumb-content li::before {
	background-color: #aaaaaa;
	content: "";
	height: 2px;
	position: absolute;
	right: -22px;
	top: 10px;
	transform: rotate(-67deg);
	transition: all 0.4s ease 0s;
	width: 10px;
}
.breadcrumb-content li:last-child::before {
	display: none;
}

.card-body{
    line-height:.05;
}