/**
* MARHS WEBSITE ver. 006 (ALPHA)
* Author : Vincent Ferrer
* Ask Vincent Ferrer for changes/updates

==== COLOR PALLETE ====
golden yellow:
#e6a314

brown:
#733411

Gradient Backgrounds:
Light Gold Yellow:
#e6a314

Dark Gold Yellow:
#febb2e


Elements or Abstracts:
Light Gold Yellow:
#e6a314

Dark Gold Yellow:
#febb2e

**/

/*--------------------------------------------------------------
==== GENERAL ====
--------------------------------------------------------------*/

* {
    padding: 0;
    margin: 0;
}
:root {
    scroll-behavior: smooth;
}

body {
    font-family: 'Trueno Regular', sans-serif;
    color: #444444;
}

a {
    color: #733411;
    text-decoration: none;
}

a:hover {
    color: #b8860b;
    text-decoration: none;
}



/*--------------------------------------------------------------
# PRELOADER
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #733411;
    border-top-color: #e2eefd;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# BACK TO TOP BUTTON
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #733411;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #733311ce;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# DISABLE AOS LIBRARY ANIMATION ON MOBILE DEVICES (768PX)s
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# SECTIONS GENERAL
--------------------------------------------------------------*/

section {
    padding: 150px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f6f9fe;
}

.section-title {
    font-family: 'Trueno SemiBold';
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #733411;
}

.section-title h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #fdc134;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    font-family: 'Trueno Light';
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# BREADCRUMBS
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: linear-gradient(-90deg, #E8B542  0%, #a5440f 94%);
    min-height: 40px;
    color: #f6f9fe;
}

.breadcrumbs h2 {
    font-family: 'Trueno SemiBold';
    font-size: 28px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol a {
    color: #f6f9fe;
    transition: 0.3s;
}

.breadcrumbs ol a:hover {
    text-decoration: underline;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #f6f9fe;
    content: "/";
}

/*--------------------------------------------------------------
# TOP BAR
--------------------------------------------------------------*/
#topbar {
    background: #e6a314;
    height: 40px;
    font-size: 14px;
    transform-origin: all 0.5s;
    color: #fff;
    padding: 0;
}

#topbar .contact-info i {
    font-style: normal;
    color: #fff;
}

#topbar .contact-info i a, #topbar .contact-info i span {
    font-family: 'Trueno Light';
    padding-left: 5px;
    color: #fff;
}

#topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

#topbar .contact-info i a:hover {
    color: #fff;
    cursor: default;
    text-decoration: underline;
}

#topbar .social-links a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

#topbar .social-links a:hover {
    color: rgb(126, 92, 8);
}

@media (max-width: 500px) {
    #topbar .contact-info i.bx {
        visibility: hidden;
    }
}

@media (max-width: 500px) {
    #topbar .contact-info i.bi {
        position: relative;
        left: 50px;
    }
}

/*--------------------------------------------------------------
# HEADER
--------------------------------------------------------------*/

#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 999;
    height: 86px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.fixed-top {
    height: 75px;
}

#header .logo img {
    max-height: 70px;
    image-rendering: optimizeQuality;
}

.scrolled-offset {
    margin-top: 70px;
}

@media (max-width: 375px) {
    #header .logo img {
        max-height: 55px;
    }
}

@media (max-width: 320px) {
    #header .logo img {
        max-height: 50px;
    }
}

/*--------------------------------------------------------------
# NAVIGATION MENU
--------------------------------------------------------------*/
/**
* DESKTOP NAVIGATION
*/

.navbar {
    font-family: 'Trueno SemiBold';
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar > ul > li {
    white-space: nowrap;
    padding: 10px  0 10px 28px;
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 15px;
    font-weight: 600;
    color: #222222;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}

.navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #733411;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
    visibility: visible;
    width: 100%;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: #733411;
}

.navbar .dropdown ul {
    font-family: 'Trueno Light';
    font-weight: 600;
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}
  

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-weight: 400;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: #733411;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul {
      left: -100%;
    }
  }

/**
* RESPONSIVE MOBILE NAVIGATION
*/
.mobile-nav-toggle {
    color: #222222;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
} 

.mobile-nav-toggle.bi-x {
    color: #fff;
    display: block;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
      display: block;
    }
    .navbar ul {
      display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}


.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: #222222;
}

.navbar-mobile > ul > li {
    padding: 0;
}

.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
    visibility: hidden;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #733411;
}

.navbar-mobile .getstarted {
  margin: 15px;
}


.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: #733411;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# HERO SECTION
--------------------------------------------------------------*/

.hero {
    width: 100%;
    height: 100vh;
    background: url(../img/hero/hero-bg.jpg) top center no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

#hero .container {
    position: relative;
    bottom: 134px;
}

#hero h1 {
    text-align: center;
    margin: 0;
    font-size: 36px;
    font-weight: 100;
    line-height: 56px;
    color: #444444;
    font-family: 'Bebas Neue Regular';
    font-style: normal;
    font-weight: normal;
}

#hero h1 span {
    font-family: 'Trueno SemiBold', sans-serif;
    color: #733411;
    font-size: 72px;
}

#hero h2 {
    color: #444444;
    margin: 5px 0 30px 0;
    font-size: 36px;
    font-weight: 400;
    font-family: "Bebas Neue Regular";
    letter-spacing: 1px;
    text-align: center;
}

#hero .btn-learn-more {
    font-family: 'Trueno Regular', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #733411;
}

#hero .btn-learn-more:hover {
    background: rgb(126, 92, 8);
}

#hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: #222222;
    font-weight: 600;
    display: flex;
    align-items: center;
}

#hero .btn-watch-video i {
    color: #733411;
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

#hero .btn-watch-video:hover {
    color: #733411;
}

#hero .btn-watch-video:hover i {
    color: rgb(126, 92, 8);
}


#hero .short-text { display: none; }

@media (max-width: 1024px) {
    #hero .short-text { display: inline-block; }
    #hero .full-text { display: none; }
}


@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .btn-get-started, #hero .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/

.footer {
    font-family: 'Trueno Light';
    text-align: center;
    background: #f6f9ff;;
    padding: 0 0 30px 0;
    font-size: 14px;
}

.footer .footer-top {
    background: white;
    border-top: 1px solid #e1ecff;
    border-bottom: 1px solid #e1ecff;
    padding: 30px 0 30px 0;
}

.footer .footer-top img {
    max-height: 80px;
}

.footer .footer-top .footer-info p {
    font-size: 15px;
    line-height: 30px;
    margin-bottom: 0;
}

.footer .footer-top .social-links a {
    font-size: 20px;
    display: inline-block;
    color: #733411;
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
    color: #b8860b;
}

.footer .copyright {
    text-align: center;
    padding-top: 30px;
}
  
.footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
}

/*--------------------------------------------------------------
# ABOUT SECTION
--------------------------------------------------------------*/

.about {
    height: 100%;
    background-color: #fff;
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
}

.about .about-left {
    padding-right: 100px;
}

.about .about-left p {
    text-align: justify;
    margin-bottom: 25px;
    font-size: 15px;
}

.about .about-left .about-title {
    padding: 0;
    margin-bottom: 40px;
}

.about .about-left .about-title span {
    position: relative;
    text-transform: capitalize;
    padding: 8px 20px;
    border-radius: 30px 30px 30px 0;
    font-weight: 600;
    color: #fff;
    background-color: #733411;
    font-size: 13px;
}

.about .about-left .about-title h2 {
    margin-top: 20px;
    font-size: 35px;
    padding-bottom: 20px;
    line-height: 40px;
    text-transform: capitalize;
    position: relative;
    font-weight: 700;
}

.about .about-left .button {
    margin-top: 40px;
}

.about .about-left .button .btn {
    margin-right: 10px;
}

.about .about-left .button .btn:last-child {
    margin: 0;
}

.about .about-left .button .btn {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #733411;
}

.about .about-left .button .btn:hover {
    background: #b8860b;
}

.about.swiper-container {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.about.swiper-slide {
    background-size: cover;
    background-position: center;
}

.aboutSwiper2 {
    height: 80%;
    width: 100%;
}

.aboutSwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.aboutSwiper .swiper-slide {
    opacity: 0.6;
    width: 25%;
    height: 100%;
}

.aboutSwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.about .about-right .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .about-title {
    text-align: center;
    padding: 20px;
}

.about .about-title h2 span {
    position: relative;
    text-transform: capitalize;
    padding: 8px 20px;
    border-radius: 30px 30px 30px 0;
    font-weight: 600;
    color: #fff;
    background-color: #733411;
    font-size: 13px;
}

.about .about-title h1 {
    font-family: "Bebas Neue Regular";
    padding-top: 3rem;
    font-size: 4rem;
}

@media (max-width: 1024px) {
    .about .about-left {
        padding:0;
    }
}

/*--------------------------------------------------------------
# MESSAGE SECTION
--------------------------------------------------------------*/
.message {
    height: 100%;
    background-image: url(../img/message/bg.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.message img {
    max-height: 100%;
    border-radius: 450px;
}

.message-title h3 {
    font-weight: 600;
    color: #444444;
    text-transform: uppercase;
    font-size: 32px;
    margin-bottom: 0;
    padding-top: 20px;
}

.message-inner .text-1, .message .text-1 {
    font-family: 'Trueno UltraLight';
    font-weight: 600;
    font-size: 16px;
    text-align: justify;
}

.message-inner .text-1 {
    font-size: 19px;
}

.message-inner .lead, .message .lead {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bolder;
    padding: 20px;
}

.message-inner .lead span, .message .lead span {
    color: #733411;
}

.message .msg-btn-readmore {
    display: block;
    right: 0;
    bottom: 0;
    float: right;
    margin-top: 10px;
}

.message .msg-btn-readmore a {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #733411;
}

.message .msg-btn-readmore a:hover {
    background-color: #b8860b;
    color: #222222;
}

/*--------------------------------------------------------------
# INNER MESSAGE SECTION
--------------------------------------------------------------*/
.message-inner img {
    max-height: 450px;
}

section.message-inner {
    padding: 50px 0 50px 0;
}

/*--------------------------------------------------------------
# PROGRAMS SECTION
--------------------------------------------------------------*/
.programs {
    padding-top: 90px;
    padding-bottom: 90px;
}

.programs .card {
    border: 0;
    padding: 0 30px;
    margin-bottom: 60px;
    position: relative;
    background: transparent;
}

.programs .card-img {
    width: calc(100% + 60px);
    margin-left: -30px;
    overflow: hidden;
    z-index: 9;
    border-radius: 0;
}

.programs .card-img img {
    max-width: 100%;
    transition: all 0.3s ease-in-out;
}

.programs .card-body {
    z-index: 10;
    background: #fff;
    border-top: 4px solid #fff;
    padding: 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    margin-top: -60px;
    transition: 0.3s;
}

.programs .card-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.programs .card-title a {
    color: #733411;
    transition: 0.3s;
}

.programs .card-text {
    text-align: justify;
    font-family: 'Trueno Light';
    color: #5e5e5e;
}

.programs .read-more a {
    color: #777777;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    transition: 0.3s;
}

.programs .read-more a:hover {
    color: #b8860b;
}

.programs .card:hover img {
    transform: scale(1.1);
}

.programs .card:hover .card-body {
    border-color: #b8860b;
}

.programs .card:hover .card-body .card-title a {
    color: #b8860b;
}

/*--------------------------------------------------------------
# INNER PAGE PROGRAMS SHS
--------------------------------------------------------------*/
.inner-program-shs {
    padding: 100px 0 ;
}

.inner-program-shs .section-title p {
    text-align: justify;
}

.inner-program-shs .program-box {
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    height: 100%;
    padding: 60px 30px;
    text-align: center;
    transition: 0.3s;
    border-radius: 5px;
}

.inner-program-shs .program-box .icon {
    font-size: 36px;
    padding: 40px 20px;
    border-radius: 4px;
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
    line-height: 0;
    transition: 0.3s;
}

.inner-program-shs .program-box h3 {
    font-family: 'Trueno SemiBold';
    font-size: 1.2em;
    color: #444444;
}

.inner-program-shs .program-box p {
    font-family: 'Trueno Light';
    font-weight: 500;
    padding: 16px 0;
    text-align: justify;
}

.inner-program-shs .program-box .read-more {
    font-family: 'Trueno SemiBold';
    font-weight: bold;
    color: #444444;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 8px 20px;
    position: relative;
}

.inner-program-shs .program-box .read-more i {
    line-height: 0;
    margin-left: 5px;
    font-size: 18px;
}

.inner-program-shs .program-box.brown {
    border-bottom: 3px solid #733411;
}

.inner-program-shs .program-box.yellow {
    border-bottom: 3px solid #e6a314;
}

.inner-program-shs .program-box.brown .icon {
    color: #733411;
    background: #7333112d;
}

.inner-program-shs .program-box.yellow .icon {
    color: #e6a314;
    background: #e8b6423f;
}

.inner-program-shs .program-box.brown:hover {
    color: #f6f9fe;
    background: #733411;
}

.inner-program-shs .program-box.yellow:hover {
    color: #f6f9fe;
    background: #e6a314;
}

.inner-program-shs .program-box:hover h3, .inner-program-shs .program-box:hover .read-more {
    color: #f6f9fe;
}

.inner-program-shs .program-box:hover .icon {
    background: #fff;
}

.inner-program-shs .program-box:hover h3 p {
    color: red;
}

/*--------------------------------------------------------------
# PROGRAM DETAILS SHS
--------------------------------------------------------------*/
.program-details {
    padding-top: 40px;
}

.program-details .program-details-slider img {
    width: 100%;
    height: 100%;
}

.program-details .program-details-slider .swiper-pagination  {
    margin-top: 20px;
    position: relative;
}

.program-details .program-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #733411;
}

.program-details .program-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #733411;
}

.program-details .program-info {
    text-align: justify;
    padding: 30px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.program-details .program-info {
    text-align: center;
}

.program-details .program-info h3 {
    font-family: 'Trueno SemiBold';
    position: relative;
    text-transform: capitalize;
    padding: 8px 20px;
    border-radius: 30px 30px 30px 0;
    color: #444444;
    background-color: #e6a314;
    font-size: 13px;
}

.program-details .program-info h2 {
    font-family: 'Trueno SemiBold';
    font-size: 20px;
}

.program-details .program-info p {
    text-align: justify;
    font-family: 'Trueno Light';
}

/*--------------------------------------------------------------
# CONTACT
--------------------------------------------------------------*/
.contact {
    padding-top: 100px;
}
.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
    background: #fff;
}

.contact .info-box i {
    font-size: 32px;
    color: #733411;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #7333115b;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    font-family: 'Trueno Light';
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# INNER PAGE FACULTY STAFF SHS
--------------------------------------------------------------*/
.shs-faculty-staff {
    background-color: #f6f9fe;
    padding: 60px;
}

.shs-faculty-staff .staff {
    text-align: center;
    margin-bottom: 20px;
    background-color: #e6a314;
    position: relative;
    overflow: hidden;
}

.shs-faculty-staff .staff:hover {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.24);
    transition: 0.4s;
}

.shs-faculty-staff .staff .staff-info {
    opacity: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
}

.shs-faculty-staff .staff .staff-info-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    transition: bottom 0.4s;
}

.shs-faculty-staff .staff .staff-info-content h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    color: #f6f9ff;
}

.shs-faculty-staff .staff .staff-info-content span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #f6f9ff;
}

.shs-faculty-staff .staff:hover .staff-info {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.30) 20%, rgba(255, 230, 0, 0) 100%);
    opacity: 1;
    transition: 0.4s;
}

.shs-faculty-staff .staff:hover .staff-info-content {
    bottom: 20px;
    transition: bottom 0.4s;
}