@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css");
*{
	padding: 0;
	margin: 0;
	font-family: 'Roboto', sans-serif;
}
body{
  background-color: #ffffff;
}

.button-primary{

    border-radius: .25rem;
    font-size: 14px;
    text-transform: capitalize;
    padding: 16px 26px 16px !important;
    line-height: 1;
    background: #92c14d;
    background: -webkit-linear-gradient(legacy-direction(to right), #92c14d 0%, #0d852e 100%);
    background: -webkit-linear-gradient(left, #92c14d 0%, #0d852e 100%);
    background: -o-linear-gradient(left, #92c14d 0%, #0d852e 100%);
    background: linear-gradient(to right,#92c14d 0%, #0d852e 100%);
    color: #fff;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}
.button-primary:hover{

  color: #fff;
  
}

section p a{
  color: #0D852E ;
  text-decoration: underline;
}
section p a:hover{
  color: #0D852E ;
  text-decoration: underline;
}





/*-------------NAVBAR--------------*/


.navbar {
  height: 55px;
}

.bg-light{
  background-color: #1d502e !important;
}

.nav-item{
  font-size: 0.92rem;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
}

.navbar-nav .nav-item .nav-link {
    color: #fff;
    padding: 0.4rem 0.8rem;
}

.navbar-nav .nav-item .nav-link:hover,.navbar-nav .nav-item .nav-link:focus,.navbar-nav .nav-item .nav-link:visited {
    color: #fff;
    
}

.navbar-light .navbar-nav .nav-item{
  margin: 0 10px;
}

.navbar-toggler{
  border: none !important;
  outline: none !important;

}

.navbar-toggler i{
  font-size: 25px;
  color: #fff;
}

.navbar-collapse{
  background-color: #1d502e !important;
  padding: 0 20px;
  z-index: 1000;
}






.dropdown-menu a{
  text-transform: capitalize;
}

.dropdown-menu  {
  border-radius: 6px;
  border: none;
  outline: none;
  box-shadow: 0 6px 20px 8px rgba(80, 200, 120, 0.15);  
}

.dropdown-submenu {
  position:relative;
}

.dropd:hover .dropdown-menu-right{
    display: block;
}

.dropdown-submenu:hover .dropdown-menu{
  display: block;
} 

.dropdown-menu   a:hover, .dropdown-menu   a:focus {
  background-image:none  !important;
}

.dropdown-menu  a:hover, .dropdown-menu   a:focus {
  background-color: #fff;
  color: #0d852e;
}

.dropdown-submenu>.dropdown-menu {
  top:0;  
  left:-10rem; 
  margin-top:-6px;
}

.dropd ul li .side-toggle i { 
  float: right;
}
.dropdown-toggle::after {
    display: none;
}

.dropdown-toggle i{
  font-size: 14px;
  padding-left:  5px;
}

@media (max-width:767px)
{
  .top-text{
    display: none;
  }
}

.bottom-nav {
  background: #fff;
   box-shadow:  0 10px 8px -10px #888;
}
.logo-sec{
  padding-top: 75px;
  height:  110px;
  box-sizing: content-box;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
}

.brand-logo img{
  width: 160px;
  height: auto;
}

.button-sec .button-primary{
  line-height: 85px;
  margin-right: 10px;
}

.reveal-text,
.reveal-text::after {
  -webkit-animation-delay: var(--animation-delay, 2s);
          animation-delay: var(--animation-delay, 2s);
  -webkit-animation-iteration-count: var(--iterations, 1);
          animation-iteration-count: var(--iterations, 1);
  -webkit-animation-duration: var(--duration, 2000ms);
          animation-duration: var(--duration, 2000ms);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
          animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
}

.reveal-text {
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 2000ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  font-size: 18px;
  -webkit-animation-name: clip-text;
          animation-name: clip-text;
  color: #995746;
  font-weight: 800;
  margin-left: 20px; 
  white-space: nowrap;
  cursor: default
  
}

.reveal-text::after {
    content: "";
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    transform: scaleX(0);
    transform-origin: 0 50%;
    pointer-events: none;
    -webkit-animation-name: text-revealer;
            animation-name: text-revealer;
  }


@-webkit-keyframes clip-text {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}


@keyframes clip-text {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}


@-webkit-keyframes text-revealer {
  
  0%, 50% {
    transform-origin: 0 50%;
  }
  
  60%, 100% {
    transform-origin: 100% 50%;   
  }

  
  60% {
    transform: scaleX(1);
  }
  
  100% {
    transform: scaleX(0);
  }
}


@keyframes text-revealer {
  
  0%, 50% {
    transform-origin: 0 50%;
  }
  
  60%, 100% {
    transform-origin: 100% 50%;   
  }

  
  60% {
    transform: scaleX(1);
  }
  
  100% {
    transform: scaleX(0);
  }
}

/*-------------NAVBAR--------------*/

#banner{
	background-image: url('images/home.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	color: #fff;
	padding-top: 5%;
}
.promo-title{
	font-size: 60px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-top: 95px;
  margin-bottom: 0;
}
.promo-title sup{
  font-size: 35px;
}
.promo-sub {
  font-family: 'Rajdhani', sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
  }
 
.carousel-inner img{
	width: 30px;
}
.carousel-item{
  height: 80vh;
}
.carousel-inner a{
	text-decoration: none;
	color: #fff;	
}
.carousel-caption {
  padding-bottom: 70px;
}
.alert{
	font-size: 25px;
}
.carousel-control-prev {
 
  z-index: 10;
}

.carousel-control-next {
 
  z-index: 10;
}
.carousel-control-prev:hover {
  color: #0d852e;
}

.carousel-control-next:hover {
  color: #0d852e;
}

.heading{
	font-size: 30px;
	font-weight: 600;
}
#notice .heading{
	font-size: 30px;
}
#notice img{
  	display: none;
  }

.home-newsletter {
padding: 40px 0 80px 0;
background: #fff;
}

.home-newsletter .single {
max-width: 650px;
margin: 0 auto;
text-align: center;
position: relative;
z-index: 2; 
}

.home-newsletter .single h2 {
font-size: 22px;
color: #303030;
text-transform: uppercase;
margin-bottom: 40px; 
}

.home-newsletter .single .form-control {
height: 50px;
background: lightgray;
border-color: transparent;
padding: 10px;
border-radius: 20px 0 0 20px; 
}

.home-newsletter .single .form-control:focus {
box-shadow: none;
border-color: #0d852e; 
}

.home-newsletter .single .btn {
min-height: 50px; 
border-radius: 0 20px 20px 0;
background: #0d852e;
color: #fff;
}
#about .heading{
	color: #303030;
	font-size: 30px;
}
#about p a{
	color: #0d852e;
}
#about p a:hover{
	color: #0d852e;
}

 .news-box{
    
border-radius: 12px;
background: #ffffff;
box-shadow:  -3px 3px 15px #ebebeb, 
             3px -3px 10px #ffffff,
             3px -3px 10px #f2f2f2, 
             -3px 3px 10px #ffffff;
padding: 53px 20px;
margin-bottom: 40px;

}
.news-box p{
  font-size: 16px;
  color: #0D852E;
  width: 48ch;
  word-wrap: break-word;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; 
  
}

@media (max-width:767px){
   .news-box{
    padding: 40px 15px;
}
  .news-box p{
  font-size: 16px;
  color: #0D852E;
  white-space: normal;
  word-wrap: normal;
  width: inherit;
  overflow: auto;
  text-overflow: all; 
 }
}
.newsletter-box{
  display: flex;
  flex-wrap: wrap;
}
.news-box a:hover p{
  color: #0d852e;
}
.news-box a:hover{
  text-decoration: none;
}
.content-card{
  background: #ffffff;
  box-shadow:  -3px 3px 15px #ebebeb, 
             3px -3px 10px #ffffff,
             3px -3px 10px #f2f2f2, 
             -3px 3px 10px #ffffff;
  min-height: 226px;
  transition: 1s;
  border-radius: 15px;
}
.content-card .icon {
    padding:50px 15px 10px 15px;
}
.content-card .icon i{
    color:#0D852E;
    font-size: 40px;

}
.content-card:hover {
  transform: translateY(5px);
  box-shadow: inset 10px 10px 10px #f2f2f2, 
            inset -10px -10px 10px #ffffff,
            inset -10px -10px 10px #f2f2f2, 
            inset 10px 10px 10px #ffffff;
}

.content-card .content-header{
  font-size:16px;
  font-weight: 550;
  color: #0D852E;
  padding: 30px;
}
a:hover{
  text-decoration: none;
}
.newsletter-box{
  border-radius: 12px;
  background: #ffffff;
  box-shadow:  -3px 3px 15px #ebebeb, 
               3px -3px 10px #ffffff,
               3px -3px 10px #f2f2f2, 
               -3px 3px 10px #ffffff;
}
.newsletter-box h4{
  padding: 20px;
  font-size: 18px;
  font-weight: 800;
  color: #0D852E;
}

.btn-newsletter{
  margin-bottom: 43px;
}

.itto-box{
  border-radius: 12px;
  background: #ffffff;
  box-shadow:  -3px 3px 15px #ebebeb, 
               3px -3px 10px #ffffff,
               3px -3px 10px #f2f2f2, 
               -3px 3px 10px #ffffff; 
}
.itto-box img{
  margin: 80px 0;
}
.itto-box p{
  margin: 80px 50px 0 50px;
  text-align: justify;
}

.newsletter-box p a{
  text-decoration: underline;
}
.modal-pic{
  max-width: 350px;
  height: auto;
}
.modal-close-button{
  width: 100px;
  height: 30px;
  position: relative;
  float: right;
  top: 0;
  right: 0;
}
/*Footer*/
.site-footer
{
  background-color:#00261c;
  padding:45px 0 20px;
  font-size:15px;
  line-height:24px;
  color:rgba(255,255,255,0.5);
}
.site-footer hr
{
  border-top-color:#bbb;
  opacity:0.5;
}
.site-footer hr.small
{
  margin:20px 0;
}
.site-footer h6
{
  color:#fff;
  font-size:16px;
  text-transform:uppercase;
  margin-top:5px;
  letter-spacing:2px;
}
.site-footer a
{
  color:rgba(255,255,255,0.7);
  text-decoration: none !important;
}
.site-footer a:hover
{
  color:rgba(255,255,255,0.7);
  text-decoration:none;
}
.footer-links
{
  padding-left:0;
  list-style:none;
}
.footer-links li
{
  display:block;
}
.footer-links a
{
  color:rgba(255,255,255,0.7);
}
.footer-links a:active,.footer-links a:focus,.footer-links a:hover
{
  color:#0d852e;
  text-decoration:none;
}
.footer-links.inline li
{
  display:inline-block;
}
.site-footer .social-icons
{
  text-align:right;
}
.site-footer .social-icons a
{
  width:40px;
  height:40px;
  line-height:40px;
  margin-left:6px;
  margin-right:0;
  border-radius:100%;
  background-color:#004a36;
}
.copyright-text
{
  margin:0;
}
@media (max-width:991px)
{
  .site-footer [class^=col-]
  {
    margin-bottom:30px;
  }
}
@media (max-width:767px)
{
  .site-footer
  {
    padding-bottom:0;
  }
  .site-footer .copyright-text,.site-footer .social-icons
  {
    text-align:center;
  }
  .top-text{
    display: none;
  }
}
.social-icons
{
  padding-left:0;
  margin-bottom:0;
  list-style:none;
}
.social-icons li
{
  display:inline-block;
  margin-bottom:4px;
}
.social-icons li.title
{
  margin-right:15px;
  text-transform:uppercase;
  color:#96a2b2;
  font-weight:700;
  font-size:13px;
}
.social-icons a{
  background-color:#eceeef;
  color:#818a91;
  font-size:16px;
  display:inline-block;
  line-height:44px;
  width:44px;
  height:44px;
  text-align:center;
  margin-right:8px;
  border-radius:100%;
  -webkit-transition:all .2s linear;
  -o-transition:all .2s linear;
  transition:all .2s linear;
}
.social-icons a:active,.social-icons a:focus,.social-icons a:hover
{
  color:#fff;
  background-color:#29aafe;
}
.social-icons.size-sm a
{
  line-height:34px;
  height:34px;
  width:34px;
  font-size:14px;
}
.social-icons a.facebook:hover
{
  background-color:#3b5998;
}
.social-icons a.youtube:hover
{
  background-color:#FF0000;
}
.news-link:hover{
  text-decoration: underline;

}

@media (min-width: 768px) and (max-width: 992px){
  .promo-title{
		font-size: 40px;
  }
  .promo-title sup{
		font-size: 30px;
	}
	.promo-sub{
		font-size: 30px;
	}
	#contents h4{
		font-size: 18px;
	}
	.col-md-4{
		padding: 15px !important;
  }
  .first-slide{
    padding: 0;

  }
  
  .other-slide{
    padding: 0;
    transform: translateY(-60px);
  }
  .carousel-item{
    height: 40vh;
  }
  .first-slide-item{
    height: 25vh;
  }
  .promo-watch{
    display: none;
  }
  }
@media (max-width: 767px) {
  .promo-watch{
    display: none;
  }
	.promo-title{
		font-size: 30px;
  }
  .promo-title sup{
		font-size: 20px;
	}
	.promo-sub{
		font-size: 18px;
	}
	#contents h4{
		font-size: 18px;
	}
	.col-md-4{
		padding: 15px !important;
  }
  .first-slide{
    padding: 0;

  }
  .other-slide{
    padding: 0;
    transform: translateY(-50px);
  }
  .carousel-item{
    height: 40vh;
  }
  .first-slide-item{
    height: 25vh;
  }
  #notice img{
    display: none;
  }
  .membership-button{
    display: none;

  }
  


.social-icons li.title
  {
    display:block;
    margin-right:0;
    font-weight:600
  }
  #notice img{
  	width: 350px;
  }
}
@media (min-width: 2170px) {
  .carousel-caption {
    padding-bottom: 70px;
    position: absolute;
    top: 35%;
}
}
@media (max-width: 576px) {
	 #notice img{
  	width: 300px;
  }
  #webinar a{
  	font-size: 15px;
  }
  .other-slide{
    padding: 0;
    transform: translateY(-60px);
  }
  
}
@media (max-width: 360px){
  .promo-title{
		font-size: 25px;
  }
  .promo-title sup{
		font-size: 20px;
	}
	.promo-sub{
		font-size: 18px;
	}
	#contents h4{
		font-size: 18px;
	}
	.col-md-4{
		padding: 15px !important;
  }
  .first-slide{
    padding: 0;

  }
  .other-slide{
    padding: 0;
    transform: translateY(-50px);
  }
  .carousel-item{
    height: 40vh;
  }
  .first-slide-item{
    height: 25vh;
  }
}