/********** UASU-TUM FRONTEND CSS **********/

:root {
    --primary: #00B074;
    --secondary: #2B9BFF;
    --light: #EFFDF5;
    --dark: #2B3940;
}


/* =========================================================
   GENERAL
========================================================= */

.content {
    text-align: justify;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/* =========================================================
   SPINNER
========================================================= */

#spinner {
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
}

#spinner.show {
    visibility: visible;
    opacity: 1;
    transition: opacity .5s ease-out, visibility 0s linear 0s;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #fff;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-weight: normal;
    border-radius: 2px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(-180deg);
}

.navbar-dark .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #fff;
    font-size: 15px;
    text-transform: capitalize;
    outline: none;
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {

    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        opacity: 1;
    }
}

@media (max-width: 991.98px) {

    .navbar-dark .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #eee;
    }
}


/* =========================================================
   PAGE / HERO HEADER
========================================================= */

.header-carousel .container,
.page-header .container {
    position: relative;
    padding: 45px 0 45px 35px;
    border-left: 15px solid var(--primary);
}

.header-carousel .container::before,
.header-carousel .container::after,
.page-header .container::before,
.page-header .container::after {
    position: absolute;
    left: 0;
    width: 100px;
    height: 15px;
    content: "";
    background: var(--primary);
}

.header-carousel .container::before,
.page-header .container::before {
    top: 0;
}

.header-carousel .container::after,
.page-header .container::after {
    top: 100%;
    margin-top: -15px;
}


/* =========================================================
   PAGE HEADER BACKGROUNDS
========================================================= */

.page-header {
    background:
        linear-gradient(
            rgba(43, 57, 64, .5),
            rgba(43, 57, 64, .5)
        ),
        url("../img/carousel-1.jpg") center center / cover no-repeat;
}

.page-header-mandate {
    background:
        linear-gradient(
            rgba(43, 57, 64, .5),
            rgba(43, 57, 64, .5)
        ),
        url("../img/mandate.jpg") center center / cover no-repeat;
}

.page-header-history {
    background:
        linear-gradient(
            rgba(43, 57, 64, .5),
            rgba(43, 57, 64, .5)
        ),
        url("../img/history.jpg") center center / cover no-repeat;
}

.page-header-civil {
    background:
        linear-gradient(
            rgba(43, 57, 64, .5),
            rgba(43, 57, 64, .5)
        ),
        url("../img/civil.jpg") center center / cover no-repeat;
}

.page-header-membership {
    background:
        linear-gradient(
            rgba(43, 57, 64, .5),
            rgba(43, 57, 64, .5)
        ),
        url("../img/membership.jpg") center center / cover no-repeat;
}


/* =========================================================
   HEADER CAROUSEL
========================================================= */

@media (max-width: 768px) {

    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    margin: 7px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}


/* =========================================================
   ABOUT
========================================================= */

.about-bg {
    background-image:
        repeating-radial-gradient(
            center center,
            rgba(0, 0, 0, .2),
            rgba(0, 0, 0, .2) 1px,
            transparent 1px,
            transparent 100%
        );
    background-size: 5px 5px;
}


/* =========================================================
   CATEGORY
========================================================= */

.cat-item {
    display: block;
    border: 1px solid transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.cat-item:hover {
    border-color: rgba(0, 0, 0, .08);
    box-shadow: none;
}


/* =========================================================
   JOB LISTING
========================================================= */

.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}

.job-item {
    border: 1px solid transparent;
    border-radius: 2px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.job-item:hover {
    border-color: rgba(0, 0, 0, .08);
    box-shadow: none;
}


/* =========================================================
   TESTIMONIAL
========================================================= */

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #fff !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 5px;
    border: 5px solid var(--primary);
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}


/* =========================================================
   FOOTER
========================================================= */

.footer .btn.btn-social {
    width: 35px;
    height: 35px;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 2px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255, 255, 255, .5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


/* =========================================================
   GENERAL HEADINGS
========================================================= */

.my-heading {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
}

.name-heading {
    font-size: 24px;
    font-weight: 700;
}

.pages-heading {
    margin-top: 15px;
    font-size: 24px;
    font-weight: 700;
}

.section-title {
    margin: 10px 0;
    color: #666;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}


/* =========================================================
   TEAM
========================================================= */

.team {
    --background-color: #f4f4f4;
}

.team .member {
    position: relative;
}

.team .member .member-img {
    position: relative;
    margin: 0 80px;
    overflow: hidden;
    border: 4px solid var(--background-color);
    border-radius: 50%;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, .2);
}

.team .member .member-img img {
    position: relative;
    z-index: 1;
}

.team .member .member-img .social {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
    background: rgba(0, 0, 0, .6);
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}

.team .member .member-img .social a {
    margin: 0 8px;
    color: #fff;
    font-size: 20px;
    transition: .3s;
}

.team .member .member-img .social a:hover {
    color: var(--primary);
}

.team .member .member-info {
    margin-top: 30px;
}

.team .member .member-info h4 {
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 700;
}

.team .member .member-info span {
    display: block;
    margin-bottom: 10px;
    color: rgba(0, 0, 0, .6);
    font-size: 15px;
    font-style: italic;
}

.team .member .member-info p {
    margin-bottom: 0;
    font-size: 14px;
}

.team .member:hover .member-img .social {
    padding-bottom: 0;
    visibility: visible;
    opacity: 1;
}


/* =========================================================
   TEAM ITEM
========================================================= */

.team-item {
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.pic img.member-avatar {
    width: 100px;
    height: 130px;
    object-fit: cover;
    border: 2px solid green;
    border-radius: 50%;
}

.team-text {
    padding: 15px;
    text-align: center;
    background: #f9f9f9;
}


/* =========================================================
   MEMBERS / PEOPLE
========================================================= */

.name {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 700;
}

.member-title {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 700;
}

.vocation {
    margin-bottom: 10px;
    color: #004a00;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.members {
    margin: 0;
    padding: 10px;
    color: #555;
    font-size: 12px;
    line-height: 1.6;
    text-align: justify;
    background: #f9f9f9;
    border-left: 4px solid rgba(0, 128, 0, .8);
}


/* =========================================================
   OFFICIALS / USER INFORMATION
========================================================= */

.uasu-title {
    padding: 4px 10px;
    color: #fff;
    background: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.lo-name {
    color: #004040;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.officer-title {
    font-size: 14px;
    font-weight: 600;
}

.readmore {
    color: #808000;
    font-size: 10px;
    text-transform: capitalize;
}

.readmore2 {
    float: right;
    color: #808000;
    font-size: 11px;
    font-style: italic;
}


/* =========================================================
   CAREERS / FILTERING
========================================================= */

.tradebut {
    display: inline-block;
    margin: 4px 5px 10px;
    padding: 4px 10px;
    color: #fff;
    background: #ff8000;
    border: none;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.bt1 {
    border-radius: 12px;
}


/* =========================================================
   POSTS / CONTENT
========================================================= */

.posted-by {
    color: #009d00;
    font-size: 12px;
}

.posted-on {
    color: #000;
    font-size: 11px;
    font-style: italic;
}

.post-details {
    margin-top: 12px;
    color: #006633;
    font-size: 11px;
    line-height: 1.4;
    text-align: left;
}

.front-post-date {
    display: inline-block;
    margin-top: 5px;
    padding: 2px 5px;
    background: #ffddbb;
    font-size: 12px;
}

.bb {
    border-bottom: 1px solid #000;
}

.caption {
    width: 100%;
    padding: 0 5px;
    font-size: 14px;
}

.fe-brief {
    margin-top: 8px;
    font-size: 14px;
    text-align: justify;
}

.fe-news-img {
    width: 100%;
    height: auto;
}

.pis-ken {
    height: 190px;
    object-fit: cover;
}


/* =========================================================
   BLOG / NEWS
========================================================= */

.blog {
    background: #fff;
}

.blog .blog-title {
    text-align: center;
}

.blog .single-news {
    position: relative;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .08);
    transition: .4s ease;
}

.blog .single-news .news-head {
    position: relative;
    overflow: hidden;
}

.blog .single-news img {
    width: 100%;
    margin: 0;
    padding: 0;
    transition: .4s ease;
}

.blog .single-news .news-content {
    position: relative;
    z-index: 1;
    padding: 10px;
    text-align: left;
    background: #fff;
}

.blog .single-news .news-content::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    content: "";
    background: #1a76d1;
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
}

.blog .single-news:hover .news-content::before {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.blog .single-news .news-body h2 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.blog .single-news .news-body h2 a {
    color: #2c2d3f;
    font-weight: 500;
}

.blog .single-news .news-body h2 a:hover {
    color: #1a76d1;
}

.blog .single-news .news-content p {
    font-size: 13px;
    font-weight: 400;
    line-height: 23px;
}

.blog .single-news .news-body .date {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 15px;
    color: #000;
    background: #e6ffe6;
    border-radius: 3px;
    font-size: 14px;
}

.blog.grid .single-news {
    margin-top: 30px;
}


/* =========================================================
   VIDEO BANNER
========================================================= */

.main-banner {
    position: relative;
    max-height: 100%;
    margin-bottom: -7px;
    overflow: hidden;
}

#bg-video {
    min-width: 100%;
    min-height: 100vh;
    max-width: 100%;
    max-height: 100vh;
    object-fit: cover;
    z-index: -1;
}

#bg-video::-webkit-media-controls {
    display: none !important;
}

.video-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    background: rgba(31, 39, 43, .5);
}

.main-banner .caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.main-banner .caption h6 {
    margin-top: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-banner .caption h2 {
    margin: 20px 0;
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-banner .caption h2 em {
    color: #f5a425;
    font-style: normal;
    font-weight: 900;
}

.main-banner .caption p {
    max-width: 570px;
    color: #fff;
    font-size: 14px;
}

.main-banner .caption .main-button-red {
    margin-top: 30px;
}


/* =========================================================
   CALL TO ACTION
========================================================= */

.call-to-action {
    --default-color: #fff;
    --background-color-rgb: 0, 0, 0;

    position: relative;
    padding: 80px 0;
    clip-path: inset(0);
}

.call-to-action img {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.call-to-action::before {
    position: absolute;
    inset: 0;
    z-index: 2;
    content: "";
    background: rgba(var(--background-color-rgb), .5);
}

.call-to-action .container {
    position: relative;
    z-index: 3;
}

.call-to-action h3 {
    color: var(--default-color);
    font-size: 28px;
    font-weight: 700;
}

.call-to-action p {
    color: var(--default-color);
}

.call-to-action .cta-btn {
    display: inline-block;
    margin: 10px;
    padding: 12px 40px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: .5s;
}

.call-to-action .cta-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}


/* =========================================================
   MISCELLANEOUS
========================================================= */

.spacer-1 {
    margin-bottom: 15px;
}

.push {
    margin-top: -5px;
}

.vocation-home {
    font-size: 14px;
}

.verify-email {
    padding: 10px;
    font-size: 15px;
}

.verify-email2 {
    padding: 10px;
    color: #00b000;
    font-size: 15px;
}

.rs-button {
    margin-right: auto;
    margin-left: auto;
}

.login-img-round {
    width: 120px;
    border: medium ridge #008000;
    border-radius: 55%;
}

.login {
    font-size: 24px;
    font-weight: 700;
}

.fe-video {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.small-txt {
    color: #fff;
    font-size: 18px;
    text-align: center;
}

.no-posts {
    font-size: 18px;
    font-style: italic;
}

.ken-edit {
    padding: 15px;
    border: 1px dotted #000;
}

.user-count {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 800;
}

.totalcount {
    padding: 0 5px;
    background: #bbe868;
    border-radius: 80%;
}

.search-highlight {
    background: #62ff62;
}

.img-round {
    border: medium ridge #007700;
    border-radius: 60%;
}

.img-news-border {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    border: medium outset #008000;
    border-radius: 20%;
}

.img-ken-24 {
    width: 100px;
    height: 50px;
}

.ken-border {
    padding: 3px;
    text-align: center;
    border: thin ridge #006633;
    border-radius: 35px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {

    .team .member .member-img {
        margin: 0 60px;
    }
}

@media (max-width: 767px) {

    .main-banner .caption h6 {
        font-weight: 500;
    }

    .main-banner .caption h2 {
        font-size: 36px;
    }



    
}