@font-face {
    font-family: 'Open Sans';
    src: url("../fonts/Open Sans/OpenSans-ExtraBold.ttf") format('truetype');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Open Sans';
    src: url("../fonts/Open Sans/OpenSans-SemiBold.ttf") format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Open Sans';
    src: url("../fonts/Open Sans/OpenSans-Medium.ttf") format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Open Sans';
    src: url("../fonts/Open Sans/OpenSans-Light.ttf") format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Open Sans';
    src: url("../fonts/Open Sans/OpenSans-MediumItalic.ttf") format('truetype');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Barlow Condensed';
    src: url("../fonts/Barlow Condensed/BarlowCondensed-Medium.ttf") format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Barlow Condensed';
    src: url("../fonts/Barlow Condensed/BarlowCondensed-SemiBold.ttf") format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Barlow Condensed';
    src: url("../fonts/Barlow Condensed/BarlowCondensed-ExtraBold.ttf") format('truetype');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url("../fonts/Inter_18pt-Bold.ttf") format('truetype');
    font-weight: 700;
    font-style: normal;
}
:root {
    --soniq-font: 'Open Sans';
    --barlow-font:"Barlow Condensed", sans-serif;
    --font-Inter: 'Inter';
    --body-font-size: 20px;
    --base-font-weight: 400;
    --base-line-height: 1.5;
    --active-color: #A61D3A;
    --text-color-dark: #000033;
    --text-color-light: #ffffff;
    --text-color-grey: #7F7F7F;
    --soniq-dark-bg: #000033;
    --bg-white: #ffffff;
    --soniq-bg-light: #f8f9fa;
    --text-color-light-gray:#8E8E93;
}   

body {
    font-family: var(--soniq-font);
    margin: 0;
    padding: 0;
    background-color: var(--bg-white);
    font-weight: var(--base-font-weight);
    font-size: var(--body-font-size);
    line-height: var(--base-line-height);
}


/* common styles */
.p-80{
    padding: 80px 0;
}
.nav-p{
    padding-top: 88px;
}
.soniq-dark-bg{
    background-color: var(--soniq-dark-bg);
    color: var(--text-color-light);
}
/*.gradient-text {
    background: var(--gradient-color-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}*/
.gradient-btn{
    width: 290px;
    padding: 10px;
    color: var(--active-color);
    text-decoration: none !important;
   /* height: 45px;*/
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 8px 22px;
    text-transform: uppercase;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    display: inline-block;
    background: var(--text-color-light);
    transition: all 0.3s linear;
}
.gradient-btn:hover{
    background: var(--active-color);
    color: var(--text-color-light);
}
.light .gradient-btn{
    color:#fff;
    background: var(--active-color);
}

.light .gradient-btn{
    color:var(--text-color-light);
    background: var(--active-color);
}
.light .gradient-btn:hover{
    color:var(--active-color);
    background: var(--text-color-light);
}

.gradient-btn .btn_theming{
    position: absolute;
    width: 100%;
    height: 100%;
    
    left: 0;
    top: 0;
    color: #fff;
  /*  line-height: 21px;
    line-height: 45px;*/
    padding: 10px;
    transition: all 0.3s linear;
}
.gradient-text-btn{
    transform: translateY(0px);
}
.gradient-btn:hover .gradient-text-btn{
    visibility: hidden;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s linear;
    color: var(--active-color)
}
.gradient-bg-btn{
    visibility: hidden;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s linear;
}
/*.gradient-btn:hover .gradient-bg-btn{
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    background: #fff;
    color: #A61D3A;
    transition: all 0.3s linear;
}
.gradient-btn:hover .gradient-bg-btn span{
    color: #A61D3A;
    transition: all 0.3s linear;
}*/




/* Navbar */
.navbar{
    background-color: var(--bg-white);
    box-shadow: 0px 4px 20px 8px #0000330D;
    backdrop-filter: blur(50px)
}
.navbar-brand img{
    /*max-height: 62px;*/
    width: 250px;
}
.dark .navbar {
   background-color: rgba(0, 0, 0, 0.2);
   box-shadow: 0px 4px 20px 8px #0000330D;
}
.nav-link {
    font-family: var(--barlow-font);
    font-weight: 600;
    font-size: 20px;
    line-height: var(--base-line-height);
    letter-spacing: -1%;
    text-transform: uppercase;
    color: var(--text-color-dark);
    transition: linear 0.3s;
    line-height: calc(45px - 0.5rem);
    padding: 0px 10px 0px 10px;
}
.dark .nav-link {
    color: var(--text-color-light);
}
.navbar-nav .nav-link.active, 
.navbar-nav .nav-link.show.active,
.navbar-nav .nav-link:hover {
    background: transparent;
    color: var(--active-color);
}
.navbar-nav .dropdown-toggle.gradient-btn{
    width: 191px;
    font-family: var(--font-Inter);
    font-weight: 700;
}
.navbar-nav .dropdown-toggle.gradient-btn.show{
    background: var(--active-color);
    color: var(--text-color-light);
}
.gradient-btn:hover .icon-angle-up {

display: unset;
}
.gradient-btn:hover .icon-angle-down {

display: none;
}

.dropdown-menu {
  min-width: 191px;
}

.navbar-nav .dropdown-toggle::after{
    content: none;
}
.navbar-nav .nav-item{
    margin: 0px 5px;
}
.dropdown-menu{
    padding: 0;
    box-shadow: 0px 4px 20px 8px #214C9D26;
    border-radius: 8px;
    border: none;
    overflow: hidden;
}
.dropdown-menu li{
    border-bottom: 1px solid #E1E4ED;
}
.dropdown-menu li:last-child{
    border-bottom: none;
}
.dropdown-item{
    font-weight: 600;
    color: var(--text-color-dark);
    padding: 10px 20px;
    
}
.dropdown-item:hover{
    background-color: #E9E9E9;
}
.btn_theming span img{
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out;
}
.dropdown-toggle.show .btn_theming span img{
    transform: rotate(180deg);
    transition: all 0.3s ease-in-out;
}

/* headings */
.heading-1{
    font-weight: 800;
    font-size: 64px;
    letter-spacing: -1%;
    text-transform: uppercase;
}
.heading-2{
    font-family: var(--barlow-font);
    font-weight: 600;
    letter-spacing: 0%;
    font-size: 75px;
    text-transform: uppercase;
}
.heading-3{
    font-weight: 500;
    font-size: 36px;
    letter-spacing: 0%;
}

/* landing banner */
.landing-banner > img{
    width: 100%;
 /*   max-height: 100vh;*/
    object-fit: cover;
}
.landing-logo{
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
}
.banner-text{
    background: var(--gradient-color);
    padding: 12px 0px 6px;
}


/* leader section */
#leaderTab{
    border: none;
}
#leaderTab .nav-link{
    font-family: var(--soniq-font);
    font-size: 16px;
    font-weight: 700;
    color: #AEAEB2;
    background-color: #E5E5EA;
    letter-spacing: 2%;
    padding: 8px 24px;
    border: 1px solid rgba(142, 142, 147, 0.5);
    /*border:1px solid #8E8E93;*/
    text-transform: uppercase;
    border-radius: 0px;
}
#leaderTab .nav-link.active{
    background-color: #FFFFFF;
    color: #A61D3A;
}
#leaderTab .nav-item:first-child .nav-link{
    border-top-left-radius: 5px;
}
#leaderTab .nav-item:last-child .nav-link{
    border-top-right-radius: 5px;
}
.leaders-section{
    /*background-color: var(--soniq-dark-bg);*/
    background: url('../images/Texture.png');
    color: var(--text-color-light-gray);
}
.leader--tab .tab-content{
   padding: 40px 30px;
   border: 1px solid rgba(255, 255, 255, 0.12);
   border-radius: 16px;
   border-top-left-radius: 0;
   background-color: #FFF;
   box-shadow: 0px 4px 20px 8px #214C9D0D;
   display: flex;
   min-height: 540px;
}

.leader--tab .tab-content .tab-pane{
    flex: 1;
    display: none;
    flex-direction: column;
}
.leader--tab .tab-content .tab-pane.active{
    display: flex !important;
}
.leader--tab .leader-tabpane-content p{
    max-width: 680px;
    margin-bottom: 30px;
    font-family: var(--soniq-font);
    font-weight: 200;
    font-size: 20px;
}
.leader--tab .leader-tabpane-content p:last-child{
    margin-bottom: 0;
}
.leader-card img{
    border-radius: 16px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    max-height: 315px;
    object-fit: cover;
}
.leader_position{
    font-size: 16px;
    color: var(--text-color-grey);
    font-weight: 700;
}
.leader-card h4{
    font-family: var(--font-Inter);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1%;
    margin-bottom: 15px;
}
.sch_address{
    font-family: var(--soniq-font);
    font-size: 20px;
    margin-bottom: 0px;
    font-weight: 400;
}

/* table section */
.bg-transparent{
    background: transparent;
}
.tablesec .table > :not(caption) > * > *{
    background: transparent;
    border: none;
}
.tablesec .table {
    color: var(--text-color-light);
}
.tablesec .table thead th{
    font-family: var(--barlow-font);
    font-weight: 500;
    font-size: 35px;
    letter-spacing: 0%;
    text-align: center;
    padding: 20px;
    border-top: 1px solid var(--text-color-light);
    border-right: 1px solid var(--text-color-light);
}
.tablesec .table tbody td{
    font-family: var(--soniq-font);
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0%;
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--text-color-light);
    border-top: 1px solid var(--text-color-light);
}
.tablesec .table thead th,
.tablesec .table tbody td{
    width: 50%;
}
.tablesec .table tbody td:last-child,
.tablesec .table tbody th:last-child{
    border-right: 0px;
}
.tablesec .table tbody tr:nth-child(odd){
   background: #FFFFFF26;
}

/* rules and guidelines */
.column_list{
    list-style: disc inside;
    padding: 0;
    margin-top: 10px;
}
.column_list li{
    margin-bottom: 12px;
}
.column_list li:last-child{
    margin-bottom: 0;
}
.rules_card{
 /*   border-radius: 16px;
    border: 1px solid #FFFFFF1F;
    background: #FFFFFF0F;*/
}
.rules_card ul{
    margin: 0;
    padding:0;
    list-style: none;
}
.rules_card ul li{
    font-family: var(--soniq-font);
    font-size: 20px;
    position: relative;
    padding-left: 40px;
    margin-bottom: 22px;
    line-height: 1.3;
    font-weight: 200;
}
.rules_card ul li::before{
    content: "";
    width: 22px;
    height: 22px;
    background: url(../images/tick_icon.png) no-repeat center center / cover;
    position: absolute;
    left: 0;
    top: 2px;
}

/* judiging section */
.marks_row{
    position: relative;
}
.marks_row > div{
    padding: 0px 20px;
    line-height: 1.1;
}
.marks_row > div:first-child{
    padding-left: 0;
}
.marks_row > div:last-child{
    padding-right: 0;
}
.marks_row::after{
    content: "";
    width: 100%;
    height: 1px;
    background: var(--gradient-color-2);
    position: absolute;
    left: 0;
    bottom: 0;
}
.marks_row:last-child::after{
    content: none;
}
.marks_row  ul{
    padding: 0;
    margin: 0;
    list-style: inside;
}
.marks_row  ul li{
    margin-top: 2px;
}
.performance_type{
    max-width: 350px;
    margin-right: auto;
}
.marks_basedon{
    width: 28%;
    margin-right: auto;
}

/* importat notice */
#important_notice{
    position: relative;
}
#important_notice::before,
#important_notice::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
    right: 0;
    z-index: 1;
}
#important_notice::before{
    background-color: #ffffff;
    top: 0;
}
#important_notice::after{
    background-color: var(--soniq-dark-bg);
    bottom: 0;
}
.important_notice_card{
    padding: 60px;
    background: url(../images/Important\ notes.jpg)no-repeat center center / cover;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    color: var(--text-color-light);
}
.important_notice_card ul{
    margin: 0;
    padding:0;
    list-style: none;
}
.important_notice_card ul li{
    position: relative;
    padding-left: 40px;
    margin-bottom: 22px;
    line-height: 1.2;
}
.important_notice_card ul li:last-child{
    margin-bottom: 0;
}
.important_notice_card ul li::before{
    content: "";
    width: 22px;
    height: 22px;
    background: url(../images/white_tick.png) no-repeat center center / cover;
    position: absolute;
    left: 0px;
    top: 2px;
}

/* join us section */
.joinus_at_row{
    padding: 80px 0;
}
.title_joinus{
    width: 40%;
}
.tdv_details{
    width: 20%;
    line-height: 1.2;
    padding: 10px;
}
.tdv_details > div{
    max-width: 170px;
    margin: 0 auto;
}
.joinus_date > div,.joinus_timing > div{
    max-width: 140px;
}
.joinus_date,.joinus_timing{
    border-right: 1px solid rgba(255, 255, 255, 0.25);   
}
.tdv_details p{
    margin: 0;
}
.joinus_btn_row .gradient-btn{
  margin: 0px 10px;
  text-align: center;
}
footer{
    padding: 80px 0;
    line-height: 1.2;
    background: #091A33 url(../images/footer_pattern.png)no-repeat right center / contain;
}
.ft_ph,.ft_mail{
    font-weight: 700;
}
.ft_ph img,.ft_mail img{
    margin-right: 7px;
}
.gallery_wrapper{
    max-width: 1320px;
    padding: 0px 1rem;
    margin: 0 auto;
    display: table;
    width: 100%;
}
.gallery_list {
  width: 100%;
  margin: 0 auto;
}

.gallery-sizer {
  width: 33.333%;
  height: 1px;
}
.gallery-item {
  float: left;
  padding: 10px;
}
.gallery-item img{
    width: 100%;
    max-height: 294px;
    object-fit: cover;
    border-radius: 16px;
}
.gallery-item-width-33 {
  width: 33.333%;
}
.gallery-item-width-66 {
  width: 66.666%;
}

.leaders-content{
    box-shadow: 0px 4px 20px 8px rgba(33,76,157,0.3);
    border: 1px solid #8E8E93;
}
.leader-tabpane-content {
  /*  padding: 0 70px 0 0;*/
}
.Leader-name{
    color: #A61D3A;
    font-size: 36px;
}

.table-red td, .table-red th, .table-red thead th {
   border: 1px solid #d1cecf !important;
   font-family: "Barlow Condensed";
}
.table-red {
    color: #fff;
    background-color: #A61D3A;
    --bs-table-bg :#A61D3A;
}
.table>:not(caption)>*>*{
    color: #fff;
}
.bg-red{
      background-color: #A61D3A;
}
.goal-heading{
    padding: 40px;
    color: #FFF;
font-family: "Barlow Condensed";
font-size: 75px;
font-style: normal;
font-weight: 600;
line-height: 110%; /* 82.5px */
text-transform: uppercase;
}
.rules-heading{
    line-height: 110%;
}
.rule-guidelines{
     background: url('../images/Texture.png');
    color: var(--text-color-light-gray);
}
.guidline-heading{
    color: #091A33;
    font-family: var(--barlow-font);
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 38.5px */
    margin-bottom: 15px;
}
.guidelines-inner-blocks{
    margin-bottom: 30px;
}
.guideline-img-block{
   margin-bottom: 15px;
}
.guideline-img-block img{
   max-width: 100%;
   height: auto;
   max-height: 50px;
}
.guidelines-inner-blocks p, .guidelines-inner-blocks ul li{
    /* Body Text 1 */
    font-family: var(--soniq-font);
    font-size: 20px;
    font-weight: 200;
    color:#8E8E93;
    line-height: 140%; /* 28px */
    margin-left: 0;
    max-width: 230px;
}
.rule-guidelines ul{
    padding-left:25px;
}
.rule-guidelines-block{
    padding:50px 0;
}
.goals-time{
    background: url('../images/action.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}
.btn-download{
    font-family: var(--font-Inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    text-transform: uppercase;
    background: #fff;
    color: #A61D3A;
    border-radius: 50px;
    padding: 12px 22px;
    margin-top: 30px;
}

.btn-download:hover{
   background: #A61D3A; 
   color: #fff;
}

.red-band{
    background: #A61D3A; 
    color: #fff;
   padding: 20px 15px;
   text-align: center;
    
}
.red-band h5{
    font-family: "Barlow Condensed";
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 38.5px */
    text-transform: uppercase;
    margin: 0;
}
.goaldsEvent-heading{
    color: #FFF;
    font-family: "Barlow Condensed";
    font-size: 75px;
    font-weight: 600;
    line-height: 110%; /* 82.5px */
    text-transform: uppercase;
}
.goals-time-block{
    padding:50px;
}

.goals-time-block h4{
    color: #FFF;
font-family: "Barlow Condensed";
font-size: 38.742px;
font-style: normal;
font-weight: 500;
line-height: 110%; /* 42.616px */
}
.leftborder{
    position: relative;
}
.leftborder:before{
    position: absolute;
    content: "";
    border-style: solid;
    height: 150px;
    left: -36px;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.5);
}
.goals-time img {
    max-height: 62px;
    margin-bottom: 10px;
}
.footer_left p{
    font-family: var(--soniq-font);
    font-size: 20px;
    font-weight: 200;
}
.ft_title{
 color: #FFF;
font-family: "Open Sans";
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 140%; 
margin: 0 0 5px;
}
.ft_name{
font-family: "Barlow Condensed";
font-size: 35px;
font-style: normal;
font-weight: 500;
line-height: 110%; /* 38.5px */
margin-bottom: 30px;
}
.ft_ph, .ft_mail{
    color: #FFF;
font-family: "Open Sans";
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 140%; /* 28px */
}
@media (max-width: 575.98px) {
    .wave-img {
        display: none;
    }
}



.image-extend-section img{
        height: 35px;
    width: 100%;
}

.display_none{
    display: none;
}