html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    /* background-color: #f5f5f5; */
    overflow-x: hidden;
}
.text-important {
    color: red;
}
.text-green {
    color: #327d19;
}
.text-yellow {
    color: #FFCB05;
}
.image-round {
    border-radius: 50%;
}
::selection {
    color: white;
    background-color: #327d19;
}
.text-semibold {
    font-weight: 600;
}
.dropdown-header {
    color: black;
    font-weight: 600;
    background-color: #FFCB05;
}
.bg-emag {
    background-color: rgba(63, 157, 32, .9);
}
.bg-emag .navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    transition: 0.3s ease color;
}
.bg-emag .navbar-nav .nav-link:hover,
.bg-emag .navbar-nav .nav-link:focus,
.bg-emag .navbar-nav .active > .nav-link {
    color: #FFCB05;
}
/* Navigation */
.navbar {
    padding: .8rem;
}
.navbar-ja li a {
    font-size: 500;
}
.navbar-ja  li {
    margin: 0px 5px;
}
.navbar-ja .nav-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: .9rem;
    letter-spacing: .8px;
}
/* Dropdown Styles */
.navbar-ja .dropdown-menu {
    background-color: #3e9321;
    border-radius: 0;
    top: 54px;
}

.navbar-ja .dropdown-menu a {
    color: white;
}

.navbar-ja .dropdown-menu a:hover {
    color:#fecb05;
    background-color:rgba(0,0,0,0.2);
}
.ja-logo {
    width: 150px;
}
.ja-logo > img {
    max-width: 100%;
}
.ja-hero {
    height: 100%;
    min-height: 600px;
    background-image: url(../img/hero1-min.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.ja-hero .row, .ja-hero .container {
    height: 100%;
    padding: 3rem 15px 2rem;
}
.ja-hero .hero-body {
    background: rgba(0,0,0,0.8);
    border-top: 5px solid #3f9d20;
    padding: 25px;
}
.hero-title {
    font-weight: 600;
    color: #3f9d20;
    word-wrap: break-word;
}
/* E-Magazine Area */

.em-area {
    padding-top: 15px;
}
.section-head {
    padding: 0 0 1.5rem;
}
.section-title {
    font-weight: 600;
    display: inline-block;
}
.section-separator {
    width: 55px;
    height: 4px;
    background-color: #3f9d20;
}
.emag-body {
    padding: 0 0 2rem;
}
.emag-body-content h4 {
    font-weight: 600;
}
.btn-emag {
    color: #fff;
    background-color: #3f9d20;
    border-color: #3f9d20;
}
.btn-emag:hover, .btn-emag:focus {
    background-color: #327d19;
    border-color: #327d19;
    color: #fff;
}

/* Editorial Staff Section */
.bg-parallax {
  background-image: url("../img/hero3-min.jpg");
  min-height: 200px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.bg-parallax::before {
    content: "";
    position: absolute;
    background-color: rgba(0,0,0,0.8);
    height: 100%;
    width: 100%;
    left: 0;
}
.editorial-staff-section .container {
    padding: 2rem 15px;
    position: relative;
}
.editorial-staff-section .section-title {
    color: #FFCB05;
}
.editorial-staff-section .section-separator {
    background-color: #FFCB05;
    margin: 0 auto;
}
.member-image {
    width: 180px;
    padding: 15px 0px;
}
.member-content h3 {
    position: relative;
}
.member-content h3::after {
    content: "";
    background: #FFCB05;
    width: 25px;
    height: 2px;
    margin: 0 auto;
}
.member-contacts ion-icon {
    font-size: 25px;
    margin: 0 15px;
}
.member-contacts > a {
    color: #fff;
}
.member-contacts > a:hover,
.member-contacts > a:focus {
    text-decoration: none;
}
.contact-linkedin,
.contact-facebook,
.contact-twitter,
.contact-email {
    transition: ease all 0.5s;
}

.contact-linkedin:hover, .contact-linkedin:focus {
    color: #007bb5;
}
.contact-facebook:hover, .contact-facebook:focus {
    color: #1877f2;
}
.contact-twitter:hover, .contact-twitter:focus {
    color: #1da1f2;
}
.contact-email:hover, .contact-email:focus {
    color: #ea4335;
}

/* Recent Publications */
.recent-publications .container {
    padding: 2rem 15px;
}


/* Footer */
footer {
    background-color: #3f9d20;
}
.footer-menu {
    list-style: none;
    padding: 1rem 0;
    margin-bottom: 0;
}
.footer-menu > li {
    display: inline-block;
}
.footer-menu > li::after {
    content: "|";
    color: white;
    font-size: 12px;
    margin: 0px 8px;
}
.footer-menu > li:nth-last-child(1)::after {
    content: "";
}
.footer-link {
    color: #fff;
    transition: 0.2s ease color;
}
.footer-link:hover, .footer-link:focus {
    color: #FFCB05;
    text-decoration: none;
}
.copyright-text {
    font-size: 14px;
    margin-bottom: 0;
    padding-bottom: 3px;
    background-color: #327d19;
}
.social-icons-footer {
    list-style: none;
    padding: 15px 0px;
    margin: 0;
}
.social-icons-footer > li {
    display: inline-block;
    margin: 0px 8px;
    width: 50px;
    height: 50px;
    border-radius: 5px;
}
.social-icons-footer > li.fb {
    background-color: #1877f2;
}
.social-icons-footer > li.twitter {
    background-color: #1da1f2;
}
.social-icons-footer > li.instagram {
    background-color: #c32aa3;
}
.social-icons-footer > li.linkedin {
    background-color: #007bb5;
}
.social-icons-footer > li > a {
    font-size: 1.8rem;
    color: white;
    line-height: 60px;
}
/* Countdown */
.deadline-countdown p {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffc107;
    margin-bottom: .5rem;
}

.deadline-countdown span {
    color: #969696;
    padding: 2px 5px;
    border-radius: 3px;
}

.countdown-section .container {
    position: relative;
}
.countdown-section .section-head h2 {
    color: #3f9d20;
}
.countdown-section .section-head .section-separator {
    background-color: #3f9d20;
}

/* Index1.html */
.bg-darken {
    position: relative;
}
.bg-darken::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}
.emag-transparent .navbar-nav .nav-link {
    font-weight: 500;
    transition: 0.3s ease color;
}
.emag-transparent {
    transition: 0.3s ease all;
}
.hero-body-alt .hero-title {
    font-size: 4rem;
}
.bg-yellow {
    display: inline-block;
    background-color: #FFCB05;
    padding: 3px 6px;
    border-radius: 2px;
}

.hero-scroll ion-icon {
    font-size: 2rem;
    color: white;
    animation: 2s ease bounce infinite;
}
@keyframes bounce {
    0%   {padding-top: 0;}
    50% {padding-top: 8px;}
    100% {padding-top: 0;}
}

/* Page */

.page-container {
    margin-top: 7rem;
}
.page-title {
    font-weight: 600;
    color: #3f9d20;
    position: relative;
}
.page-separator {
    width: 60px;
    height: 2px;
    background-color: #3f9d20;
    bottom: 0;
}

.editor-image {
    width: 130px;
    padding: 15px 0px;
}

.editor-title {
    background-color: #FFCB05;
    display: inline-block;
    padding: 3px 8px;
    border-radius: 5px;
}

.editor-content > p, .pub-content > p {
    margin-bottom: 5px;
}
.editor-content a {
    color: #212529;
}

.editor-col, .pub-col {
    background-color: #f5f5f5;
    border-radius: 10px;
    border: 3px solid #fff;
}
.pub-content {
    text-align: left;
}
@media only screen and (max-width: 992px) {
    .ja-hero {
        height: 100%;
    }
    .hero-footer {
        display: none;
    }
    .emag-transparent {
        background-color: rgba(63, 157, 32, .9);
    }
    .navbar-ja .dropdown-menu {
        background-color: transparent;
        top: inherit;
        border: none;
    }
    
    .navbar-ja .dropdown-menu a:hover {
        color:#fecb05;
        background-color:rgba(0,0,0,0.2);
    }
    .navbar-ja .dropdown-menu a {
        color: rgba(255,255,255,.5);
    }
    
    .navbar-ja .dropdown-menu a:hover {
        color:#fecb05;
        background-color:rgba(0,0,0,0.2);
    }
    
}
@media only screen and (max-width: 600px) {
    .ja-hero {
        height: 100%;
    }
    .emag-transparent {
        background-color: rgba(63, 157, 32, .99);
    }
    .hero-footer {
        display: none;
    }
    .hero-title {
        font-size: 3rem !important;
    }
}

/* Whatsapp Button */
.wa-floating-button {
    position: fixed;
    bottom: 15px;
    right: 15px;
    font-size: 40px;
    padding: 15px;
    border-radius: 50px;
    color: white;
    line-height: 15px;
    background-color: green !important;
    border: 2px solid white;
    z-index: 1111;
}
.wa-floating-button:hover, .wa-floating-button:focus {
    color: white;
    text-decoration: none;
}

/* Carousel */
.collab-carousel .carousel-indicators {
	left: 0;
	top: auto;
    bottom: -40px;
}
.collab-carousel .carousel-indicators li {
    background: #a3a3a3;
    height: 5px;
    padding: 0;
    border: 0;
}

.collab-carousel .carousel-indicators .active {
background: #707070;
}

/* Multi-item Carousel */

/* medium - display 2  */
@media (min-width: 768px) {

    .carousel-inner .carousel-item-right.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(50%);
    }
  
    .carousel-inner .carousel-item-left.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(-50%);
    }
  }
  
  /* large - display 3 */
  @media (min-width: 992px) {
  
    .carousel-inner .carousel-item-right.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(33%);
    }
  
    .carousel-inner .carousel-item-left.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(-33%);
    }
  }
  
  @media (max-width: 768px) {
    .carousel-inner .carousel-item>div {
        display: none;
    }
  
    .carousel-inner .carousel-item>div:first-child {
        display: block;
    }
  }
  
  .carousel-inner .carousel-item.active,
  .carousel-inner .carousel-item-next,
  .carousel-inner .carousel-item-prev {
    display: flex;
  }
  
  .carousel-inner .carousel-item-right,
  .carousel-inner .carousel-item-left {
    transform: translateX(0);
  }
  .carousel-control-prev-icon, .carousel-control-next-icon {
      background-color: rgba(33, 37, 41, 0.5);
  }



/* Misc */

.payment-logos > img {
    margin-right: 8px;
}
.payment-logos:hover {
    text-decoration: none;
}

.winter-button {
    animation: winter 1s ease-in-out infinite;
}

@keyframes winter {
    0% {
        background-color: transparent;
        border-color: transparent;
    }
    100% {
        background-color: #1877f2;
    }
}

.training-button {
    animation: training 2s ease-in-out infinite;
}

@keyframes training {
    0% {
        background-color: transparent;
        border-color: transparent;
    }
    50% {
        background-color: #dc3545;
    }
    100% {
        background-color: transparent;
        border-color: transparent;
    }
}


/* Promotion for Training */

.promotion-title {
    font-size: 2.5rem;
    color: #0966CC;
    font-weight: 600;
}

.promotion-subtitle {
    font-weight: 600;
    color: white;
}

.btn-promotion-register {
    background-color: #ffcb05;
    border: 2px solid #ffcb05;
}
.btn-promotion-register:hover, .btn-promotion-register:focus {
    background-color: transparent;
    color: #ffcb05;
    border: 2px solid #ffcb05;
}

.btn-promotion-dl {
    color: #fff;
    background-color: #e7762b;
    border: 2px solid #e7762b;
}
.btn-promotion-dl:hover, .btn-promotion-dl:focus {
    color: #e7762b;
    background-color: transparent;
}

.btn-red {
    color: #fff;
    background-color: #CC2D09;
    border-color: #CC2D09;
}
.btn-red:hover, .btn-red:focus {
    background-color: transparent;
    border-color: #CC2D09;
    color: #CC2D09;
}

.btn-blue {
    color: #fff;
    background-color: #0966CC;
    border-color: #0966CC;
}
.btn-blue:hover, .btn-blue:focus {
    background-color: transparent;
    border-color: #0966CC;
    color: #0966CC;
}
.text-expo {
    color: #00c4cc;
}
.text-expo-secondary {
    color: #ec3642;
}
.btn-expo {
    background-color: #00c4cc;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid #00c4cc;
}
.btn-expo:hover, .btn-expo:focus {
    background-color: white;
    color: #00c4cc;
}

.btn-expo-secondary {
    background-color: #ec3642;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid #ec3642;
}
.btn-expo-secondary:hover, .btn-expo-secondary:focus {
    background-color: white;
    color: #ec3642;
}