/* -------------------------------------------------------------------------- */
/*                                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 v1 */
.theme-navbar-v1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;    
    border-bottom: 1px solid var(--border-color);
}
.theme-navbar-v1.sticky{
    position: fixed;
    background-color: var(--background-primary);
    animation: slideInFromTop 2s ease;
}
.theme-navbar-v1 .navbar {
    padding: 0;
}
.theme-navbar-v1 .navbar .navbar-brand {
    margin: 0;
    padding: 0;
}
.theme-navbar-v1 .navbar-lead-logo {
    border-left: 1px solid #ccc;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
}
.theme-navbar-v1 .navbar-nav .nav-item{
    position: relative;
    margin-right: 2rem;
}
.theme-navbar-v1 .navbar-nav .nav-item:last-child {
    margin-right: 0;
}
.theme-navbar-v1 .navbar-nav .nav-link {
    color: var(--text-color);
    font-size: 1.5rem;
    padding: 2rem 0;
    font-weight: 500;
}
.theme-navbar-v1 .navbar-nav .nav-link:hover{
    color: var(--theme-color);
}
.theme-navbar-v1 .navbar-nav .nav-link:hover + .dropdown-menu{
    display: block;
}
.theme-navbar-v1 .navbar-nav .dropdown-menu:hover{
    display: block;
}
.theme-navbar-v1 .navbar-nav .dropdown-menu{
    background-color: var(--background-secondary);
    color: var(--text-color);
    width: 25rem;
    /* left: initial;
    right: 0; */
    margin: 0;
}
.theme-navbar-v1 .navbar-nav .dropdown-menu .dropdown-item{
    color: var(--text-color);
    font-size: 1.4rem;
    white-space: pre-wrap;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}
.theme-navbar-v1 .navbar-nav .dropdown-menu .dropdown-item:hover, .theme-navbar-v1 .navbar-nav .dropdown-menu .dropdown-item:focus{
    background-color: var(--background-secondary);
    color: var(--theme-color);
}
.theme-navbar-v1 .navbar-nav .dropdown-menu li:last-child .dropdown-item {
    border-bottom: none;
}

/* 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);
}
.navbar-header .navbar-toggler{
    border-width: 0;
    outline: 0;
    padding: 1rem 0;
}
.navbar-header .navbar-toggler.active{
    position: fixed;
    z-index: 1001;
    right: 1.5rem;
    top: 1rem;
}
.navbar-header .navbar-toggler.active .icon-bar {
    background-color: var(--theme-color);
}
.navbar-header .navbar-toggler .icon-bar {
    width: 22px;
    height: 2px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    display: block;
    background-color: var(--text-color);
}
.navbar-header .navbar-toggler .icon-bar+.icon-bar {
    margin-top: 4px;
}
.navbar-header .navbar-toggler.active .icon-bar:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 10% 10%;
    -ms-transform-origin: 10% 10%;
    transform-origin: 10% 10%;
}
.navbar-header .navbar-toggler.active .icon-bar:nth-of-type(2) {
    opacity: 0;
    filter: alpha(opacity=0);
}
.navbar-header .navbar-toggler.active .icon-bar:nth-of-type(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 10% 90%;
    -ms-transform-origin: 10% 90%;
    transform-origin: 10% 90%;
}
@keyframes slideInFromTop {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* Footer */
.theme-footer {
    background-color: var(--background-secondary);
    padding: 1.5rem 0;
}
.theme-footer .iq-footer-logo{
    padding-top: 2.5rem;
}
.theme-footer p{
    font-size: 1.2rem;
    margin: 1.5rem 0 0;
}
.theme-footer h3{
    padding: 2.5rem 0 1rem;
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
}
.theme-footer .nav-link{
    font-size: 1.35rem;
}
.theme-footer .nav-link, .theme-footer h3 a{
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 0;
}
.theme-footer h3 a:hover, .theme-footer .nav-link:hover{
    color: var(--theme-color);
}
.theme-footer .footer-social-links li{
    display: inline-block;
    margin-right: 1rem;
}
.theme-footer .copyright-social-section{
    margin-bottom: 2.5rem;
}
/* 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;
}

/* Banner Section */
.banner-section {
    position: relative;
    overflow: hidden;
}
.banner-section svg{
    width: 120px;
    height: 50%;
    top: auto;
    bottom: -30%;
    position: absolute;
    right: 0;
}
.banner-section svg path {
    stroke: var(--theme-color);
}
.banner-section .banner-overlay {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 2rem;
    width: 100%;
}
.banner-section .banner-overlay-text{
    max-width: 467px;
    background: rgb(0 0 0 / 50%);
    padding: 2rem;
}
.banner-section video{
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center;
}

/* 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;
}
.who-should-apply-section a{
    color: var(--text-color);
    text-decoration: none;
}

/* 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: 10rem 0 4rem;
    /* 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: 1199.98px) {
    .theme-footer .iq-footer-logo .footer-logo img{
        height: 3.2rem;   
    }
}
@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%;
    }
    .theme-footer .iq-footer-logo .footer-logo img {
        height: 2.3rem;
    }
}
@media (max-width: 767.98px) {
    body.noscroll{
        overflow: hidden;
    }
    .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%;
    }
    .header-overlay{
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    .theme-navbar-v1{
        padding: 1rem 0;
    }
    .theme-navbar-v1 .navbar-collapse {
        display: block;
        position: fixed;
        right: 0;
        top: 0;
        height: 100%;
        width: 26.5rem;
        background: var(--background-primary);
        z-index: 1000;
        display: block;
        margin-right: -26.5rem;
        padding: 0;
        transition: all 0.5s ease-in-out;        
        padding: 3rem 1.5rem 1.5rem;
    }
    .theme-navbar-v1 .navbar-nav .dropdown-menu {
        background-color: transparent;
        width: auto;
        display: block;
    }
    .theme-navbar-v1 .navbar-collapse.show {
        margin-right: 0;
    }
    .theme-navbar-v1 .navbar-collapse.show + .header-overlay {
        display: block;
    }
    .theme-navbar-v1 .navbar-nav .nav-item {
        margin-right: 0;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--border-color);
    }
    .theme-navbar-v1 .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    .theme-navbar-v1 .navbar-nav .nav-link {
        padding: 2rem 1rem 0;
        font-weight: 600;
        font-size: 1.5rem;
    }
    .theme-navbar-v1 .navbar-nav .dropdown-menu .dropdown-item{
        font-size: 1.3rem;
        border-width: 0;
        padding: 1.5rem 1rem 0;
    }
    .theme-navbar-v1 .navbar-nav .dropdown-menu .dropdown-item:hover, .theme-navbar-v1 .navbar-nav .dropdown-menu .dropdown-item:focus{
        background-color: transparent;
    }
}

@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;
    }
    .countdown-timer span {        
        font-size: 3rem!important;
        padding: 1rem!important;
        margin-right: 0.5rem!important;
    }
    .countdown-timer span:last-child {
        margin-right: 0rem!important;
    }
    .countdown-timer span i{
        font-size: 1.2rem!important;
    }
}