/* -------------------------------------------------------------------------- */
/*                                Awards Theme                                */
/* -------------------------------------------------------------------------- */
/* Variables */
:root {
  --theme-color: #da1f26;
  --background-primary: #1a1717;
  --background-secondary: #211f1f;
  --text-color: #ffffff;
  --text-secondary: #ececec;
  --border-color: #3c3c3c;
  --box-shadow-color: #585858;

  --text-font: 'Poppins', sans-serif;
  --heading-font: 'Montserrat', sans-serif;

  --base-font-size: 10px;
}

/* Reset some default styles */
html {
    font-size: var(--base-font-size);
}
body {
    margin: 0;
    padding: 0;
    color: var(--text-secondary);
    font-family: var(--text-font);
    background-color: var(--background-primary);
    font-size: 1.6rem;
}
.col-5{
    flex: 0 0 20%; 
    max-width: 20%;
}
.col-7{
    flex: 0 0 14.285%; 
    max-width: 14.285%;
}
.theme-bg-secondary{
    background-color: var(--background-secondary);
}
.row {
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.col, [class*="col-"] {
    padding-left: 7.5px;
    padding-right: 7.5px;
}
/* @media (min-width: 1200px) {
    .container{
        max-width: 1313px;
    }
} */

/* Navbar */
.theme-header{
    min-height: 11.5rem;
}
.theme-navbar{    
    background-color: var(--background-primary);
    transition: all 0.3s ease-in-out;
}
.theme-navbar.sticky{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* box-shadow: 0 2px 4px var(--box-shadow-color); */
    animation: slideInFromTop 2s ease;
}
.theme-navbar .navbar-header{
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}
.theme-navbar .navbar {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}
.theme-navbar .navbar-title{
    color: var(--text-color);
    font-size: 1.6rem;
    font-family: var(--heading-font);
    /* padding-left: 15px; */
}   
.theme-navbar .navbar-nav{
    /* padding-right: 15px; */
}
.theme-navbar .navbar-nav .nav-link {
    color : var(--text-color);
    font-size: 1.4rem;
}
.theme-navbar .navbar-nav .nav-link:hover{
    color: var(--theme-color);
}
@keyframes slideInFromTop {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* Footer */
.theme-footer {
    background-color: var(--background-secondary);
    padding: 2rem 0;
}
.theme-footer p{
    font-size: 1.2rem;
    margin: 1.5rem 0 0;
}

/* Headings and Titles */
.section-title {
    font-size: 3.2rem;
    font-family: var(--heading-font);
    color: var(--text-color);
    margin-bottom: 1.5rem;
}
.section-description {
    font-size: 1.6rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}
.award-title{
    font-size: 3.2rem;
    font-family: var(--heading-font);
    color: var(--text-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    padding: 0 5rem;
    text-align: center;
}
.award-title:before{
    content: '';
    background: url(../images/award-leaf-left.svg) no-repeat center center / contain;
    width: 6rem;
    height: 6rem;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}
.award-title:after{
    content: '';
    background: url(../images/award-leaf-right.svg) no-repeat center center / contain;
    width: 6rem;
    height: 6rem;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}
.award-title small{
    font-size: 1.6rem;
    font-family: var(--text-font);
    display: block;
}
.award-sm-title{
    font-size: 2rem;
    font-family: var(--heading-font);
    color: var(--text-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    padding: 0 4rem;
    text-align: center;
}
.award-sm-title:before{
    content: '';
    background: url(../images/award-leaf-left.svg) no-repeat center center / contain;
    width: 4rem;
    height: 5rem;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}
.award-sm-title:after{
    content: '';
    background: url(../images/award-leaf-right.svg) no-repeat center center / contain;
    width: 4rem;
    height: 5rem;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}
.award-sm-title small{
    font-size: 1.4rem;
    font-family: var(--text-font);
    display: block;
}
.footer-title{
    font-size: 1.8rem;
    font-family: var(--heading-font);
    color: var(--text-color);
    margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background-color: var(--background-secondary);
    /* background: var(--background-secondary) url('../images/banner-image.png') no-repeat top right; */
    /* https://img.freepik.com/premium-photo/golden-trophy-award-bokeh-soft-blue-background-winner-1st-place-gold-trophy-award-concept_28629-2679.jpg?w=1380 */
}
.hero-section svg{
    width: 120px;
    height: 50%;
    top: auto;
    bottom: -30%;
    position: absolute;
    right: 0;
}
.hero-section svg path {
    stroke: var(--theme-color);
    /* stroke-width: 15px; */
}
/* .hero-section img {
    padding: 0 15rem;
} */

/* Intro Section */
.intro-section {
    padding: 4rem 0;
}
.intro-section svg{
    width: 120px;
    height: 50%;
    top: auto;
    bottom: -30%;
    position: absolute;
    right: 0;
}
.intro-section svg path {
    stroke: var(--theme-color);
    /* stroke-width: 15px; */
}

/* Leadership Section */
.leadership-section {
    padding: 4rem 0 2rem 0;
    background-color: var(--background-secondary);
}
.leadership-section h3 {
    font-size: 2rem;
    font-family: var(--heading-font);
    color: var(--text-color);
    margin-bottom: 1rem;
}
.leadership-section .leadership-card {
    background-color: var(--background-primary);
    color: var(--text-secondary);
    border: none;
    padding: 2rem;
    margin-bottom: 2rem;
    height: calc(100% - 2rem);
}
.leadership-section .leadership-card .card-img-top {
    max-width: 7rem;
    margin-bottom: 1.5rem;
}

/* Who Should Apply Section */
.who-should-apply-section {
    padding: 4rem 0;
}
.who-should-apply-section h3 {
    font-size: 2rem;
    font-family: var(--heading-font);
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

/* More Than Recognition Section */
.more-than-recognition-section {
    padding: 4rem 0;
    background-color: var(--background-secondary);
}
.more-than-recognition-section .position-relative {
    z-index: 1;
}
.more-than-recognition-section .more-than-recognition-image img{
    max-width: 240px;
}
.more-than-recognition-section svg{
    width: 120px;
    height: 50%;
    top: auto;
    bottom: -30%;
    position: absolute;
    right: 0;
    z-index: -1;
}
.more-than-recognition-section svg path {
    stroke: var(--theme-color);
    /* stroke-width: 15px; */
}

/* Awards Section */
.awards-section{
    padding: 4rem 0;
}
.awards-section a{
    color: var(--text-color);
    text-decoration: none;
}
.awards-section .award-card{
    margin-top: 2rem;
}
.awards-section .award-card .award-card-image{
    overflow: hidden;
}
.awards-section .award-card img{
    width: 100%;
    transition: .5s ease-in-out;
}
.awards-section .award-card:hover img{
    transform: scale(1.04);
    transition: .5s ease-in-out;
}
.awards-section .award-card-title{
    margin-top: 1.5rem;
    font-family: var(--heading-font);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.awards-section .award-card:hover .award-card-title{
    color: var(--theme-color);
}
.awards-section .award-card-company{
    font-size: 1.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.individuals-awards .awards-section:nth-child(even){
    background-color: var(--background-secondary);
}
.company-awards .awards-section:nth-child(odd){
    background-color: var(--background-secondary);
}

/* Methodology Section */
.methodology-section {
    padding: 4rem 0;
}
.methodology-section h3{
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.methodology-section ul{
    padding-left: 1.5rem;
}
.methodology-section p, .methodology-section li{
    font-size: 1.2rem;
}
.methodology-section li{
    margin-bottom: 1rem;
}
.methodology-section .link-btn{
    color: var(--theme-color);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0;
    background: transparent;
    outline: 0;
    box-shadow: none;
}
.methodology-section .link-btn .less-more-text:before{
    content: 'less';
}
.methodology-section .link-btn.collapsed .less-more-text:before{
    content: 'more';
}

/* Awardee Details Section */
.awardee-details-section {
    padding: 4rem 0;
    background-color: var(--background-secondary);
}
.awardee-details-section .award-sm-title{
    margin: 1rem 0 3rem;
}
.awardee-details-section a{
    color: var(--theme-color);
    text-decoration: none;
}

/* -------------------------------------------------------------------------- */
/*                                 Responsive                                 */
/* -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .section-title, .award-title{
        font-size: 2.6rem;
    }
    .leadership-section h3, .who-should-apply-section h3{
        font-size: 1.9rem;
    }
    .awards-section .award-card-title{
        font-size: 1.6rem;
    }
    .col-5{
        flex: 0 0 33.33%; 
        max-width: 33.33%;
    }
    .col-7{
        flex: 0 0 20%; 
        max-width: 20%;
    }
}
@media (max-width: 767.98px) {
    .who-should-apply-section .who-apply-card, .more-than-recognition-section .section-title{
        margin-top: 1.5rem;
    }
    .theme-navbar .navbar-title{
        padding-left: 15px;
    }
    .theme-navbar .navbar-nav {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        -ms-flex-direction: row;
        flex-direction: row;
        justify-content: space-between;
    }
    .awardee-details-section img{
        max-width: 25rem;
        margin-bottom: 4rem;
    }
    .col-7{
        flex: 0 0 25%; 
        max-width: 25%;
    }
}

@media (max-width: 480.98px) {
    body, .section-description{
        font-size: 1.4rem;
    }
    .who-should-apply-section .section-title br{
        display: none;
    }
    .col-5{
        flex: 0 0 50%; 
        max-width: 50%;
    }
    .col-7{
        flex: 0 0 33.33%; 
        max-width: 33.33%;
    }
    .section-title, .award-title {
        font-size: 2.2rem;
    }
    .award-title small {
        font-size: 1.2rem;
    }
    .awards-section .award-card-title, .footer-title {
        font-size: 1.4rem;
    }
    .award-title{
        padding: 0 3rem;
    }
    .award-title:before, .award-title:after{
        width: 3rem;
        height: 5rem;
    }
    .leadership-section h3, .who-should-apply-section h3{
        font-size: 1.6rem;
    }
    .leadership-section .leadership-card .card-img-top {
        max-width: 4rem;
    }
    .methodology-section p, .methodology-section li {
        font-size: 1.1rem;
    }
    .awardee-details-section img{
        max-width: 21rem;
    }
    .award-sm-title{
        font-size: 1.8rem;
        padding: 0 2.5rem;
    }
    .award-sm-title small {
        font-size: 1.2rem;
    }
    .award-sm-title:before, .award-sm-title:after{
        width: 3rem;
        height: 4rem;
        top: -5px;
    }
}