@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700');
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;   
    
}

.container {
  position: relative;
  width: 100%;
}

.text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.container {
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: green;
  opacity: 0.6;
}





.overlay h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color:white;
  text-align: center;
  width: 100%;
  background-color: green;
  opacity: 0.6;
  z-index: -1;
}









.nav {
    width: 100%;
    height: 65px;
    position: fixed;
    line-height: 65px;
    text-align: center;
    
}
.nav div.main_list ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    
}
.nav div.main_list ul li {
    width: auto;
    height: 65px;
    padding: 0;
    padding-right: 3rem;
    
}

.nav div.main_list ul li a {
    text-decoration: none;
    color: white;
    line-height: 65px;
    font-size: 1.4rem;
    font-family:'Raleway',sans-serif; 
    font-weight: 20px
}

.nav div.main_list ul li a:hover {
    color: #a5da27;
}

.home {
    width: 100%;
    height: 100vh;
    background-image: url();
    background-position: center top;
	background-size:cover;
    margin-bottom: 60px;
}

.navTrigger {
    display: none;
}

.nav {
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    
    
}

@media screen and (max-width:992px) {
    .navTrigger {
        display: block;
    }


    /* .nav div.logo {
        margin-left: 15px;
    } */
    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    .nav div.show_list {
        height: auto;
        display: none;
    }
    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        background-color: white;
        background-position: center top;
    }


    
    .nav div.main_list ul li {
        width: 100%;
        text-align: center;
    }
    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 1rem;
        color: #198754;        
    }
    
    .nav div.media_button {
        display: block;
    }
}



.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
}

.navTrigger i {
    background-color:darkgreen;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    color: darkgreen;
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.affix {
    padding: 0;
    background-color: white;   
    
}

.nav.affix div.main_list ul li a{
    color: #198754;
}
.nav.affix div.main_list ul li a:hover{
    color: #a5da27;
}

a.navbar-brand span{
    color: aliceblue;
}
.nav.affix a span{
    color: #198754;
}



.animated-line {
    position: relative;
}

  .animated-line::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    width: 0;
    height: 3px;
    background-color: green;
    transition: width 0.3s ease;
  }
  
  .animated-line:hover::before {
    width: 50%;
  }

  .img-zoom {
    transition: transform 0.5s;
  }

  .img-zoom:hover {
    transform: scale(0.8);
  }




  .animated-line2 {
    position: relative;
  }

  .animated-line2::before {
    content: "";
    position: absolute;
    bottom: 8px;
    border: 1px solid green;
    left: 25%;
    right: 25%;
    width: 0;
    height: 2px;
    background-color: green;
    transition: width 0.3s ease;
  }
  
  .animated-line2:hover::before {
    width: 50%;
  }




  body {
    background-color: #f1f6ff;
}

#news-slider {
    margin-top: 80px;
}

.post-slide {
    background: #fff;
    margin: 20px 15px 20px;
    border-radius: 10px;
    padding-top: 1px;
    box-shadow: 0px 14px 22px -9px #bbcbd8;
}

.post-slide .post-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: -12px 15px 8px 15px;
    margin-left: -10px;
}

.post-slide .post-img img {
    width: 100%;
    height: auto;
    transform: scale(1, 1);
    transition: transform 0.2s linear;
}

.post-slide:hover .post-img img {
    transform: scale(1.1, 1.1);
}

.post-slide .over-layer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
   
    transition: all 0.50s linear;
}

.post-slide:hover .over-layer {
    opacity: 1;
    text-decoration: none;
}

.post-slide .over-layer i {
    position: relative;
    top: 45%;
    text-align: center;
    display: block;
    color: #fff;
    font-size: 25px;
}

.post-slide .post-content {
    background: #fff;
    padding: 2px 20px 40px;
    border-radius: 15px;
}

.post-slide .post-title a {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}

.post-slide .post-title a:hover {
    text-decoration: none;
    color: green;
}

.post-slide .post-description {
    line-height: 24px;
    color: #808080;
    margin-bottom: 25px;
}

.post-slide .post-date {
    color: #a9a9a9;
    font-size: 14px;
}

.post-slide .post-date i {
    font-size: 20px;
    margin-right: 8px;
    color: #CFDACE;
}



.post-slide .read-more:hover {
    
    text-decoration: none;
    color: lightgreen;
}

.owl-controls .owl-buttons {
    text-align: center;
    margin-top: 20px;
}

.owl-controls .owl-buttons .owl-prev {
    background: #fff;
    position: absolute;
    top: -13%;
    left: 15px;
    padding: 0 18px 0 15px;
    border-radius: 50px;
    box-shadow: 3px 14px 25px -10px green;
    transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-next {
    background: #fff;
    position: absolute;
    top: -13%;
    right: 15px;
    padding: 0 15px 0 18px;
    border-radius: 50px;
    box-shadow: -3px 14px 25px -10px green;
    transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
    content: "\f104";
    font-family: FontAwesome;
    color: #333;
    font-size: 30px;
}

.owl-controls .owl-buttons .owl-next:after {
    content: "\f105";
}

@media only screen and (max-width:1280px) {
    .post-slide .post-content {
        padding: 0px 15px 25px 15px;
    }
}


.img-resize1 {
   /* max-height: 280px;*/
    object-fit: cover;
    width:450px ;

  }
  .activity {
    
  margin-top: 50px;
  
}

.timeline {
  list-style-type: none;
  position: relative;
}

.timeline:before {
  background: #dee2e6;
  left: 9px;
  width: 2px;
  height: 100%;
  content: " ";
  display: inline-block;
  position: absolute;
  z-index: 1;
}

.timeline-item:before {
  background: #fff;
  border-radius: 50%;
  border: 1px solid green;
  left: 0;
  width: 20px;
  height: 20px;
  content: " ";
  display: inline-block;
  position: absolute;
  z-index: 1;
}

.card {
  margin-bottom: 24px;
  box-shadow: 0 0 0.875rem 0 rgba(33,37,41,.05);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: initial;
  border: 0 solid transparent;
  border-radius: .25rem;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-header:first-child {
  border-radius: .25rem .25rem 0 0;
}

.card-header {
  padding: 1rem 1.25rem;
  margin-bottom: 0;
  background-color: #fff;
  border-bottom: 0 solid transparent;
}



.pb-0 {
  padding-bottom: 0!important;
}
.jumbotron {
  height: 100vh;
  background: url() center center;
  background-size: cover;
}

.navbar-brand .brand-logo {
  width: 100px;
  transition: all 0.3s ease-out;
}

.navbar-brand.shrink .brand-logo {
  width: 50px;
}

.navbar {
  transition: padding-top 0.3s ease-out;
  
}




.navbar.shrink {
  padding-top: 10px;
}

.aboutus-section {
    padding: 90px 0;
}
.aboutus-title {
    font-size: 30px;
    letter-spacing: 0;
    line-height: 32px;
    margin: 0 0 39px;
    padding: 0 0 11px;
    position: relative;
    text-transform: uppercase;
    color: #000;
}

.aboutus-title::after {
    background: green none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 54px;
}
.aboutus-text {
    color: green;
    font-size: 13px;
    line-height: 22px;
    margin: 0 0 35px;
}

a:hover, a:active {
    color:green;
    text-decoration: none;
    outline: 0;
}
.aboutus-more {
    border: 1px solid green;
    border-radius: 25px;
    color: green;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    padding: 7px 20px;
    text-transform: uppercase;
}

.feature .feature-box .iconset {
    background: #fff none repeat scroll 0 0;
    float: left;
    position: relative;
    width: 18%;
}
.feature .feature-box .iconset::after {
    background: green none repeat scroll 0 0;
    content: "";
    height: 150%;
    left: 43%;
    position: absolute;
    top: 100%;
    width: 1px;
}

.feature .feature-box .feature-content h4 {
    color: #0f0f0f;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 22px;
    margin: 0 0 5px;
}


.feature .feature-box .feature-content {
    float: left;
    padding-left: 28px;
    width: 0%;
}
.feature .feature-box .feature-content h4 {
    color: #0f0f0f;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 22px;
    margin: 0 0 0;
}
.feature .feature-box .feature-content p {
    color: green;
    font-size: 13px;
    line-height: 22px;
}
.icon {
    color : green;
    padding:0px;
    font-size:40px;
    border: 1px solid green;
    border-radius: 0px;
    color: green;
    font-size: 28px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    width: 0px;
}


.resize1{
    width: 274px;
    height: 274px;
}



.btn-change7{
    height: 50px;
    width: 100px;
    background: darkgreen;
    margin: 20px;
    float: left;
    border:0px;
    color: white;
    box-shadow: 0 0 1px green;
    -webkit-transition-duration: 0.5s;
    -webkit-transition-timing-function: linear;
    box-shadow:0px 0 0 #31708f  inset;
}

.btn-change7:hover{
    box-shadow:100px 0 0 lightgreen inset;
}

a.nav-link:hover{
    color: green;
    font-size: 19px;
}

a.nav-link{
    color: #198754;
    font-size: 18px;
}

/* Carousel Styles */
.carousel-item img{
    max-height: 600px;
    min-height: 320px;
}

div.mask{
    background-color: rgba(24, 180, 126, 0.55);
    margin: 0;
}

.carousel-caption{
    right: 0%;
    bottom: 0;
    left: 0%;
}

.caption-wrapper{
    position: absolute;
    bottom: 80px;
    left: 0%;
    right: 0%;
}
.caption-wrapper p{
    font-size: larger;
    margin-bottom: 50px;
    font-weight: 400;
}

.caption-wrapper h1{
    font-weight: 800;
}

.navbar-inverse, .navbar-toggle{
    border-color: #198754 !important;
}


a.entrance-button {
    border: 1px solid #fff;
    border-radius: 25px;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 30px;
    text-decoration: none;
    display: inline-block;
    margin-right: 20px;
    margin-left: 20px;
    width: 250px;
}

a.signup-button{
    background: #fff;
    color: #198754;
}

span.navbar-toggler-icon{
    color: #198754;
}

.btn-change6{    
    height: 40px;
    width: 100px;
    background: white;
    ;
    float: right;
    border:0px;
    color: green;
    box-shadow: 0 0 1px darkgreen;
    -webkit-transition-duration: 0.5s;
    -webkit-transition-timing-function: linear;
    box-shadow:0px 0 0 #31708f  inset;
}

.btn-change6:hover{
    box-shadow:100px 0 0 lightgreen inset;
}

.img-executive{
    min-height: 350px;
    max-height: 350px;
}

.almanac-image{
    background-position-y: top;
    background-position-x: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 250px;
}

@media screen and (max-width:768px) {
    .caption-wrapper{
        bottom: 30px;
    }
    .caption-wrapper p{
        margin-bottom: 20px;
    }
}
