/* General styles */

body {
    background: #ffffff;
    font-family: 'Source Sans Pro', sans-serif;
    font-style: normal;
    font-weight: 300;
    overflow-x: hidden;
    overflow-y: overlay;
}

html,
body {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-style: normal;
    font-weight: 300;
}

h1,
h2,
h3 {
    font-weight: 300;
}

h1 {
    font-size: 42px;
    padding-bottom: 14px;
    margin-bottom: 0px;
}

h2 {
    font-size: 42px;
    line-height: 52px;
    margin-top: 0px;
}

h3 {
    font-size: 26px;
    line-height: 32px;
    padding-bottom: 6px;
}

h4 {
    color: #999;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-top: 6px;
}

h5 {
    color: #666666;
}

strong {
    color: #232B2B;
    font-weight: normal;
}

p {
    color: #888;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 0.2px;
}

.section-btn {
    background-color: transparent;
    border: 3px solid #232B2B;
    border-radius: 100px;
    color: #232B2B;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1.6px;
    padding: 12px 36px;
    margin-top: 42px;
    transition: all 0.4s ease-in-out;
    text-transform: uppercase;
}

.section-btn:hover {
    background: #E3AE57;
    border-color: transparent;
    color: #ffffff;
}

.btn-success:focus {
    background-color: #000;
    border-color: transparent;
}

.parallax-section {
    background-attachment: fixed !important;
    background-size: cover !important;
}

.section-title {
    position: relative;
    padding-bottom: 22px;
}

.background-image {
    background-position: 50% 50% !important;
    background-size: cover !important;
    width: 100%;
    height: 100%;
    min-height: 75vh;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.color-white {
    color: #ffffff;
}

.color-yellow {
    color: #E3AE57;
}

.color-black {
    color: #232B2B;
}

.color-grey {
    color: #ececec;
}

.color-orange {
    color: #e36e57;
}

.bg-yellow {
    background: #E3AE57;
}

.bg-orange {
    background: #E9724C;
    ;
}

.bg-beige {
    /* background: #f9f9f9; */
    background: #f1e2d7;
}

.bg-white {
    background: #ffffff;
}

.bg-dark {
    background: #161616;
}

html {
    -webkit-font-smoothing: antialiased;
}

a {
    color: #E3AE57;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none !important;
}

a:hover,
a:active,
a:focus {
    color: #E3AE57;
    outline: none;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.container-fluid {
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}

.page-header {
    border: 0;
}


/* Preloader Styles */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #ffffff;
}

.spinner {
    border: 1px solid transparent;
    border-radius: 5px;
    position: relative;
}

.spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 2px solid #E3AE57;
    border-top-color: #f9f9f9;
    animation: spinner .6s linear infinite;
}

@-webkit-@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}



/* Navbar Styles */

.navbar-container {
    position: relative;
    z-index: 999;
    padding: 0 52px 0 32px;
}

.custom-navbar {
    margin-bottom: 0;
    /* background-color: #ffffff; */
    background-color: #636363;
}

.custom-navbar .navbar-brand {
    background: url(../images/StatsML_Logo.jpg) no-repeat;
    background-size: contain;
    width: 200px;
    /* height: 100px; */
    /* color: #333;
    text-shadow: 1px 1px #777;
    font-weight: bold;
    font-size: 24px;
    line-height: 35px;
    letter-spacing: 1px; */
}

.custom-navbar .nav li a {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 40px;
    transition: all 0.4s ease-in-out;
}

.custom-navbar .nav li a:hover {
    background: transparent;
    color: #E3AE57;
}

.custom-navbar .navbar-nav>li>a:hover,
.custom-navbar .navbar-nav>li>a:focus {
    background-color: transparent;
}

.custom-navbar .nav li.active>a {
    background-color: transparent;
    color: #E3AE57;
}

.custom-navbar .navbar-toggle {
    border: none;
    padding-top: 10px;
}

.custom-navbar .navbar-toggle {
    background-color: transparent;
}

.custom-navbar .navbar-toggle .icon-bar {
    background: #E3AE57;
    border-color: transparent;
}

@media(min-width:768px) {
    .custom-navbar {
        padding: 12px 0;
        border-bottom: 0;
        background: 0 0;
    }

    .custom-navbar.top-nav-collapse {
        /* background: #ffffff; */
        background: #636363;
        box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.08);
        padding: 0;
    }

    .custom-navbar.top-nav-collapse .navbar-brand {
        margin-top: 10px;
    }

    .custom-navbar.top-nav-collapse li a {
        color: #fff;
    }
}

@media(max-width:768px) {
    .custom-navbar .nav li a {
        color: #fff;
    }
}



/* Footer Styles */

.social-icon {
    position: relative;
    padding: 0;
    margin: 0;
    text-align: center;
}

.social-icon li {
    display: inline-block;
    list-style: none;
}

.social-icon li a {
    border: 2px solid transparent;
    color: #999;
    border-radius: 100px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
    position: relative;
    margin: 22px 4px 10px 4px;
}

.social-icon li a:hover {
    background: #E3AE57;
    border-color: #ffffff;
    color: #ffffff;
    transform: scale(1.1);
}

#footer {
    padding: 5vh 15px 5vh 15px;
}


/* Scrollbar Styles */

::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #c9a76f;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #9c7637;
}



/* Landing Page Styles */

#home h1 {
    padding-bottom: 18px;
}

#home .col-md-6 {
    background: #f1e2d7;
    /* light blue color: #c3eafd; */
    padding-right: 0;
    padding-left: 0;
}

#home .home-img {
    /* background: url('../images/statsml_group_photo.jpg') no-repeat; */
    background: url('../images/Stats_Ml_new.png') no-repeat;
    /* background-size: cover; */
    background-size: auto;
    background-position: 50% 50%;
    width: 100%;
    max-width: ;
    height: 100vh;
}

#home .home-thumb {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
    padding: 0 45px 0 45px;
}


#service {
    background: #E9724C;
}

#service p {
    font-size: 18px;
    line-height: 30px;
}

@media (min-width: 768px) {
    #service p {
        min-height: 180px;
    }
}

#service .service-thumb {
    padding: 52px 22px 52px 22px;
}

#service .service-thumb .fa {
    font-size: 42px;
    padding-bottom: 22px;
}

#about .about-thumb {
    padding: 22px 32px 32px 32px;
}

#about .about-thumb-bg {
    background-color: #f1e2d7
}

#about .about-colab-bg {
    background-color: #E9724C;
}

#about .about-colab {
    padding: 22px 32px 32px 32px;
}

#about .about-colab img {
    width: 120px;
    background-color: white;
    border-radius: 50%;
    margin-top: 10px;
}

@media (min-width: 768px) {
    #about .about-thumb {
        min-height: 400px;
    }

    #about .about-colab {
        min-height: 400px;
    }
}

@media (min-width: 1440px) {
    #home .home-img {
        background-size: cover;
    }
}

@media (min-width: 1740px) {
    #home .home-img {
        background-size: cover;
        width: 870px;
    }
}



/* Publications Page and timeline Styles */

#home .conf-home-img {
    background: url('../images/neurips_conference.jpg') no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    width: 100%;
    height: 100vh;
}

#timeline {
    /* background: ; */
    min-height: 100vh;
    padding: 22px 42px 32px 52px;
}

.timeline {
    border-left: 1px solid hsl(0, 0%, 90%);
    position: relative;
    list-style: none;
}

.timeline .timeline-item {
    position: relative;
}

.timeline .timeline-item:after {
    position: absolute;
    display: block;
    top: 0;
}

.timeline .timeline-item:after {
    background-color: hsl(0, 0%, 90%);
    left: -46.5px;
    border-radius: 50%;
    height: 11px;
    width: 11px;
    content: "";
}

.large {
    padding-top: 0;
    font-size: 1.3em;
}

.nopad {
    padding: 0;
    margin: 0;
}

#preprints {
    background: #E9724C;
    padding: 22px 32px 32px 32px;
    min-height: 80vh;
}



/* Members Page Styles */

@media screen and (max-width: 576px) {
    .col-xs-10 {
        width: 83.33333333%;
    }
}

#faculty-members {
    min-height: 60vh;
}

#faculty-members h2 {
    padding: 72px 32px 32px 32px;
}

#doctoral-members {
    min-height: 60vh;
}

#doctoral-members h2 {
    padding: 22px 32px 32px 32px;
}

#masters-members {
    min-height: 60vh;
}

#masters-members h2 {
    padding: 22px 32px 32px 32px;
}

#alumni {
    min-height: 60vh;
}

#alumni h2 {
    padding: 22px 32px 32px 32px;
}

.member {
    background: #fff;
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding-bottom: 1rem;
    margin: 0 2.5rem 4rem 2.5rem;
}

.member h4 {
    font-size: 1.4em;
    margin-top: 0;
    padding-top: 0;
}

.member img {
    border-radius: 0.25rem;
}

.member .member-top {
    position: relative;
    background-color: #d7d4d4;
    margin-bottom: 1.35rem;
    overflow: hidden
}

.member .member-top figure {
    position: relative
}

.member .member-top figure img {
    display: block;
    width: 100%;
    height: auto
}

.member .member-top figure:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #673AB7;
    opacity: 0;
    visibility: hidden;
    transition: all .65s cubic-bezier(0.92, 0.17, 0.29, 0.93) 0s;
    z-index: 50
}

.member .member-top .social-icons {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: stretch;
    align-items: stretch;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 99;
    padding: 0;
    margin: 0;
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: all .65s cubic-bezier(0.92, 0.17, 0.29, 0.93) 0s
}

.member .member-top .social-icons label {
    color: #f2f2f2;
    font-weight: 400;
    margin-right: 4px;
    font-size: 12px
}

.member .member-top .social-icons .social-icon {
    display: block;
    border-radius: 0;
    margin: 0;
    width: 3rem;
    height: 3rem;
    line-height: 3rem
}

@media (min-width: 992px) and (max-width: 1199px) {
    .member .member-top .social-icons .social-icon {
        width: 2.7rem;
        height: 2.7rem;
        line-height: 2.7rem
    }
}

.member .member-title {
    font-size: 1.25rem;
    margin: 0;
}

.member .member-title a {
    color: #212121
}

.member .member-title a:hover,
.member .member-title a:focus {
    color: #673AB7
}

.member .member-title small {
    display: inline;
    font-size: 80%;
    color: #E91E63;
    font-weight: 600
}

.member .member-title:after {
    content: '';
    clear: both;
    display: table
}

.member.text-center .member-title {
    margin-bottom: 0rem;
}

.member.text-center .member-title small {
    display: block;
    margin-top: 0.6rem
}

.member:hover .member-top figure:after {
    visibility: visible;
    opacity: 0.35
}

.member:hover .member-top .social-icons {
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.swiper-container .member {
    margin-bottom: 0
}

.swiper-container .member p:last-child {
    margin-bottom: 0
}


.social-icons {
    margin-bottom: 1rem
}

.social-icons:after {
    content: '';
    display: table;
    clear: both
}

.social-icons .social-icon {
    display: inline-block;
    font-size: 1.1rem;
    width: 2.2rem;
    height: 2.2rem;
    line-height: 2.2rem;
    border-radius: 4px;
    color: #323232;
    background-color: #fff;
    transition: all .65s cubic-bezier(0.92, 0.17, 0.29, 0.93) 0s;
    margin: 0 0 0.25rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1)
}

.social-icons .social-icon+.social-icon {
    margin-left: 0.25rem
}

.social-icons .social-icon.circle {
    border-radius: 50%
}

.social-icons .social-icon:hover,
.social-icons .social-icon:focus {
    color: #fff;
    background-color: #673AB7
}

.bg-white .social-icons .social-icon {
    background-color: #d7d4d4
}

.bg-white .social-icons .social-icon:hover,
.bg-white .social-icons .social-icon:focus {
    color: #fff;
    background-color: #673AB7
}

.social-icons.circle .social-icon {
    border-radius: 50%
}


/* Courses Page Styles */

#courses {
    min-height: 100vh;
}

#courses h2 {
    padding: 72px 32px 32px 32px;
}

.margin {
    margin: 0 2rem 3rem 2rem;
}

.course h4,
.course h5 {
    font-size: 1.4em;
    margin-top: 0;
    padding-top: 0;
    font-weight: bolder;
}

#courses .thumbnail {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5);
    transition: 0.3s;
    min-width: 40%;
    border-radius: 5px;
}
 
#courses .thumbnail-description {
    min-height: 40px;
}

#courses .thumbnail:hover {
    cursor: pointer;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 1);
}

/* Openings Page Styles */

#openings-content {
    min-height: 60vh;
    padding: 32px 32px 72px 32px;
}

#openings h2 {
    padding: 72px 32px 32px 32px;
}

#openings h3 {
    font-size: 2.2em;
    font-weight: bolder;
    color: #888;
    padding-top: 20px;
}

#openings p {
    font-size: 2em;
}

#openings ol {
    font-size: 1.5em;
    padding-left: 30px;
    color: #888;
}

#openings .note {
    font-size: 1.6em;
    font-style: italic;
    color: #b76c3a;
}

#openings .paragraph {
    font-size: 1.6em;
}

#openings .paragraph i {
    font-size: 0.9em;
}

#openings .paragraph a {
    color: #b76c3a;
    font-weight: bolder;
}




/* research page Naveen styles */


.box {
    background-color: #209cee;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    font-family: Arial, sans-serif;
    margin: 20px 0;
    !important;  /* Force the style to be applied */
}
/* Box styling */
/*.box {
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}
/* Background Color for Box 
.has-background-info {
    background-color: #209cee;
}

/* Text Color for Box 
.has-text-white {
    color: white;
}
*/