@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--dark-color);
    color: #fff;
    font-weight: 300;
    overflow-x: hidden;
}

/* ::selection {
    background: var(--secondary-color);
    color: #fff;
} */

img {
    transition: all .3s ease-in-out;
}

:root {
    --orange-color: #CEB14C;
    --dark-color: #0B0B0B;
}

.text-theme{
    color: var(--orange-color);
}

/* :root {
    --orange-color: #FF2F1B;
    --dark-color: #0B0B0B;
} */

a {
    text-decoration: none;
}

.mt-80 {
    margin-top: 80px;
}

.mtb-80 {
    margin-top: 80px;
    margin-bottom: 80px;
}

.ptb-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.top_header {
    background: var(--orange-color);
    color: var(--dark-color);
    padding: 0.6rem 0;
}

.top_header a {
    font-size: 13px;
    color: var(--dark-color);
    font-weight: 500;
}

.top_info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.top_info .vr {
    opacity: 1;
}

header {
    padding: 0.8rem;
}

.nav_menu {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: start;
    gap: 2rem;
    justify-content: center;
}

.footer_logo,
.logo {
    background: var(--dark-color);
    border-radius: 100%;
    padding: 12.5px;
    position: relative;
    z-index: 99999;
}

.footer_logo {
    background: var(--orange-color);
    display: inline-block;
    margin-top: -50px;
}

.nav_link {
    margin-top: 2rem;
}

.nav_link a {
    color: #fff;
    position: relative;
    padding-bottom: 4px;
    transition: all .3s ease-in-out;
}

.nav_link a:hover {
    color: var(--orange-color);
}

.nav_link a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    transition: all .3s ease-in-out;
    background: linear-gradient(to right, var(--orange-color), rgba(255, 255, 255, 0));
}

.nav_link a:hover::before {
    width: 100%;
}

.top_banner {
    margin-top: -85px;
    height: 85vh;
}

.top_banner .carousel-item {
    height: 100%;
    position: relative;
}

.top_banner img {
    height: 100%;
    object-fit: cover;
}

.singer_name {
    background: #00000073;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px 50px 25px 50px;
    z-index: 99;
    backdrop-filter: blur(10px);
    border-radius: 0 10px 0 0;
}

.singer_name p {
    margin: 0;
    color: var(--orange-color);
    font-weight: 600;
}

.carousel-control-next,
.carousel-control-prev {
    height: 50px;
    width: 50px;
    position: static;
    background: #00000073;
    opacity: 1;
    color: var(--dark-color);
    backdrop-filter: blur(15px);
    font-size: 1.5rem;
    transition: all .3s ease-in-out;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
    background: var(--orange-color);
}

.slider_control {
    display: flex;
    justify-content: end;
    margin-top: -50px;
}

.carousel-control-prev-icon {
    background-image: url(../img/icons/arrow-left-short.svg);
}

.carousel-control-next-icon {
    background-image: url(../img/icons/arrow-right-short.svg);
}

.sub_title {
    color: var(--orange-color);
    font-size: 20px;
    margin-bottom: 12px;
}

.title_animate {
    position: relative;
}



.title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.5;
    opacity: 0.2;
    display: inline-block;
}

.animate_title {
    color: #fff;
    position: absolute;
    inset: 0;
    white-space: nowrap;
    overflow: hidden;
    opacity: 1;
    width: 0;
    height: 100%;
}

@keyframes title01 {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.animate_title.in-view {
    animation: title01 3s both;
}

.tag_line {
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
}

.about_img_01 {
    padding: 10px;
    position: absolute;
    background: var(--dark-color);
    width: 80%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.about_img img:nth-child(2) {
    width: 60%;
    object-fit: contain;
}

.btn {
    padding: 8px 30px;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all .3s ease-in-out;
}

.btn_orange {
    padding: 16px 50px;
    color: #322121 !important;
    background: var(--orange-color) !important;
}

.btn_orange:hover {
    box-shadow: #CEB14C 0px 5px 15px;
}

.bg_light_before {
    position: relative;
    overflow: hidden;
}

.bg_light_before::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    opacity: 10%;
    z-index: -1;
}

.disable_box {
    opacity: 0.2;
}

.event_box {
    position: relative;
    overflow: hidden;
}

.event_box_body {
    position: absolute;
    bottom: -100%;
    left: 0;
    height: 120%;
    width: 100%;
    background: linear-gradient(to top, var(--dark-color), rgba(255, 255, 255, 0));
    padding: 3.5rem;
    display: flex;
    align-items: end;
    justify-content: space-between;
    transition: all .3s ease-in-out;
}

.event_box:hover .event_box_body {
    bottom: 0;
}

.event_box_title {
    font-size: 25px;
    font-weight: bold;
    color: #fff;
}

.event_name {
    text-decoration-style: 20px;
    font-weight: 500;
    margin: 0.2rem 0;
}

.sponsor_box {
    background: #000;
    height: 110px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.sponsor_box_title {
    background: #000;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.sponsor_box:hover {
    box-shadow: 0 0 10px 0 var(--orange-color);
}

.sponsor_box img {
    height: 80%;
    width: 80% !important;
    object-fit: contain;
}

.list_style_none li i {
    color: var(--orange-color);
}

.list_style_none {
    list-style: none;
    padding: 0;
}

.list_style {
    list-style: none;
    padding: 0;
}

.list_style li {
    padding: 5px 5px 5px 35px;
    position: relative;
}

.list_style li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 32px;
    width: 30px;
    background: url(../img/icons/list-style-arrow.png) no-repeat;
    background-position: center;
}

.contact_form {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
}

.form_title {
    color: var(--orange-color);
    font-weight: bold;
    font-size: 27px;
    margin-bottom: 1.2rem;
}

.contact_form .form-control {
    background: #F3F3F3;
    padding: 8px 15px;
    border: 1px solid #fff;
}

.contact_form .form-control:focus {
    box-shadow: none;
    border: 1px solid var(--orange-color);
}

footer {
    background: var(--orange-color);
    padding-bottom: 80px;
}

.footer_social_media {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-top: 35px;
}

.footer_social_media .icon {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2), 0 3px 6px rgba(0, 0, 0, 0.23);
    border-radius: 8px;
    transition: all .3s ease-in-out;
}

.footer_social_media .icon:hover {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.footer_menu {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    gap: 50px;
    justify-content: center;
    margin: 35px 0 0 0;
}

.footer_menu a {
    color: #fff;
    position: relative;
    padding-bottom: 3px;
}

.footer_menu a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    transition: all .3s ease-in-out;
    background: linear-gradient(to right, #fff, #ffffff2c);
}

.footer_menu a:hover::before {
    width: 100%;
}

.only_img {
    overflow: hidden;
}

.only_img:hover img {
    scale: 1.1;
}

.nav_two .logo {
    display: inline-block;
}

.nav_btn {
    color: var(--orange-color);
    font-size: 1.8rem;
    /* border: 2px solid green; */
    margin-top: -80px;
}

.nav_btn_close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--orange-color);
    font-size: 1.5rem;
}

.page_cover {
    margin-top: -85px;
    padding: 50px 0;
}

.page_cover h2 {
    font-size: 3rem;
    font-weight: 600;
    /* color: var(--orange-color); */
}

.back_link a {
    font-weight: 600;
    color: var(--orange-color);
}

.back_link {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.coming_soon {
    font-size: 2.8rem;
    /* color: var(--orange-color); */
    font-weight: bold;
    text-transform: uppercase;
}

.con_box_001 {
    padding: 2rem;
    border-radius: 15px;
    overflow: hidden;
    border-bottom: 2px solid var(--orange-color);
    transition: all .3s ease-in-out;
}

.con_box_001:hover {
    box-shadow: var(--orange-color) 0px 5px 15px;
}

.con_icon_001 {
    height: 40px;
    width: 40px;
    background: var(--orange-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 1.3rem;
    color: #fff;
}

.con_title_001 {
    margin: 1rem 0;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.con_title_001::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 50px;
    background: linear-gradient(to right, var(--orange-color), rgba(255, 255, 255, 0));
}

.con_p {
    color: #fff !important;
}

.orange_box {
    background: var(--orange-color);
    padding: 1rem;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

.orange_box .title {
    font-size: 1.5rem;
    color: #fff;
    opacity: 1;
}

.policy_page .title {
    opacity: 1;
}

.orange_box ul {
    font-size: 14px;
    line-height: 2;
}

.orange_box ul a {
    color: #fff;
    text-decoration: underline;
}

.dark_box {
    background: none;
}

.team_box {
    /* border: 1px solid red; */
    border-radius: 10px;
    overflow: hidden;
    padding: 2rem;
}

.team_box::before {
    background: #000;
    opacity: 1;
}

.team_box::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 600px;
    width: 600px;
    background: var(--orange-color);
    z-index: -1;
    border-radius: 100%;
    transition: all .35s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.team_animate {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 70px;
    width: 70px;
    background: var(--orange-color);
    z-index: -1;
    border-radius: 100%;
    opacity: 0.5;
    transition: all .3s ease-in-out;
}

.team_box:hover .team_animate,
.team_box:hover::after {
    top: 100px;
    height: 700px;
    width: 700px;
}

.team_box:hover .team_animate {
    top: 50px;
}

.team_img {
    width: 200px;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
}

.team_name {
    text-align: center;
    color: #fff;
    transition: all .3s ease-in-out;
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 1.5rem;
    line-height: 1.2;
}

.team_name span {
    font-size: 14px;
}

.vision_area,
.mission_area {
    padding: 80px 0;
}


.vision_area::after,
.mission_area::after,
.vision_area::before,
.mission_area::before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: var(--orange-color);
}

.mission_area::before {
    left: 0;
    z-index: -1;
}

.mission_area::after {
    right: 0;
    background: url(../img/mision_vision_bg.webp) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    z-index: -2;

}

.vision_area::before {
    right: 0;
    z-index: -1;

    /* border-radius: 0 0 0 50px; */
}

.vision_area::after {
    left: 0;
    /* border-radius: 0 0 50px 0; */
    background: url(../img/mision_vision_bg.webp) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: left;
    z-index: -2;

}

.inner_video {
    height: 140vh;
    display: flex;
    align-items: center;
}

.inner_video video {
    margin-top: -600px;
}

.error {
    color: red;
    font-size: 16px;
    font-weight: 600;
}

.success {
    color: green;
    font-size: 16px;
    font-weight: 600;
}

.call_number {
    padding: 10px;
}

.event_banner{
    background: var(--orange-color);
    /* height: 400px; */
    margin-bottom: 20px;
}

.red {
    background-color: rgb(163, 23, 23);
}