@charset "UTF-8";
 :root {
     --primary-color: #022858;
     --secondary-color: #ddc685;
     --dark-color: #002048;
     --bg-color: #f4f5f9;
     --white-color: #ffffff;
     --black-color: #000000;
     --inner-color: #f0f2f8;
     --text-gray-color: #606060;
     --transition: all 0.3s ease 0s;
}
 *, ::after, ::before {
     -webkit-box-sizing: border-box;
     box-sizing: border-box 
}
 html {
     scroll-behavior: smooth 
}
 body, html {
     padding: 0;
     margin: 0;
     font-size: 16px;
     font-weight: 400;
     font-style: normal;
     line-height: 22px;
     overflow-x: hidden;
     color: var(--black-color);
     font-family: "Poppins", sans-serif;
}
 h1,h2,h3 {
     margin: 0;
     font-family: "Merriweather", serif;
}
 h4,h5,h6 {
     margin: 0;
}
 p {
     margin-top: 0;
     margin-bottom: 10px;
     color: var(--black-color);
}
 p:last-child {
     margin-bottom: 0 
}
 a, button {
     cursor: pointer;
     text-decoration: none;
     color: var(--black-color);
     transition: var(--transition);
}
 a, button, img, input, textarea {
     -webkit-transition: var(--transition);
     transition: var(--transition);
}
 :focus {
     outline: 0;
     -webkit-box-shadow: none;
     box-shadow: none 
}
 a:focus {
     text-decoration: none;
     outline: 0 
}
 a:hover {
     text-decoration: none;
     color: inherit;
}
 img {
     max-width: 100%;
     height: auto 
}
 ul {
     margin: 0;
     padding: 0 
}
 li {
     list-style: none;
     transition: var(--transition);
}
 .all-search i {
     font-size: 22px;
}
 .container-fluid {
     padding-right: 80px;
     padding-left: 80px;
}
 .section-padding {
     padding: 50px 0 50px 0;
}
 .pad-top {
     padding-top: 50px;
}
 .pad-bottom {
     padding-bottom: 50px;
}
 .section-heading-center {
     display: flex;
     justify-content: center;
     align-content: center;
     position: relative;
     text-align: center;
}
 .section-heading-between {
     display: flex;
     align-items: center;
     justify-content: space-between;
     position: relative;
}
 .section-heading {
     margin-bottom: 30px;
}
 .main-head {
     font-size: 26px;
     line-height: 30px;
     margin-bottom: 10px;
     font-weight: 700;
     font-family: "Merriweather", serif;
}
 .inline-main-btn {
     display: flex;
     align-items: center;
     column-gap: 10px;
     position: absolute;
     bottom: 20px;
}
 .main-btn {
     font-size: 15px;
     min-width: 130px;
     font-weight: 600;
     line-height: 15px;
     height: 40px;
     padding: 0 20px;
     letter-spacing: .2px;
     border-radius: 3px;
     border: 0;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     transform: skewX(-20deg);
     position: relative;
}
 .main-btn:after {
     content: '';
     position: absolute;
     top: -5px;
     left: 8px;
     width: 98%;
     height: 100%;
     border: 2px solid;
     -webkit-transition: .4s;
     -moz-transition: .4s;
     transition: .4s;
     border-radius: 3px;
     padding: 0;
     z-index: -1;
}
 .main-btn i {
     padding-right: 5px;
}
 .btn-1 {
     background: var(--primary-color);
     color: var(--white-color);
}
 .btn-1:after {
     border-color: var(--primary-color);
}
 .btn-2 {
     background: var(--secondary-color);
     color: var(--primary-color);
}
 .btn-2:after {
     border-color: var(--secondary-color);
}
 .btn-white:after {
     border-color: var(--secondary-color);
}
 .btn-white {
     background: var(--white-color);
     color: var(--primary-color);
}
 .btn-white:after {
     border-color: var(--white-color);
}
 .btn-1:hover {
     color: var(--white-color);
}
/*-------------------------------------------- header section start --------------------------------------------*/
 .header-top-section {
     padding: 10px 0;
     background: var(--dark-color);
}
 .header-top-bar {
     display: flex;
     align-items: center;
     justify-content: space-between;
}
 .header-social-list-icon {
     width: 26px;
     height: 26px;
     color: var(--white-color);
     border: 1px solid var(--white-color);
     line-height: 24px;
     text-align: center;
     border-radius: 50%;
     position: relative;
     font-size: 12px;
     display: inline-block;
}
 .header-social-list-icon:hover {
     border: 1px solid var(--secondary-color);
     color: var(--secondary-color);
}
 .header-social-inline {
     display: flex;
     column-gap: 5px;
     align-items: center;
}
 .header-social-inline li {
     color: var(--white-color);
     font-size: 14px;
}
 .top-info a {
     color: var(--white-color);
     font-size: 14px;
     margin-right: 15px;
}
 .top-info a:hover {
     color: var(--secondary-color);
}
 .logo img {
     width: 100px;
     height: auto;
}
/*-------------------------------------------- header section end --------------------------------------------*/
/*-------------------------------------------- banner section start --------------------------------------------*/
 .banner-text-list {
     margin-bottom: 15px;
}
 .banner-item {
     position: relative;
     overflow: hidden;
}
 .banner-item {
     background-repeat: no-repeat;
     background-attachment: scroll;
     background-position: top;
     background-size: cover;
     position: relative;
     width: 100%;
     height: 480px;
}
/*.banner-item:before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     background: linear-gradient(to right, #000000e0 30%, transparent);
     background: #000;
     width: 100%;
     height: 100%;
     opacity: 0.5;
}
*/
 .banner-content {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 480px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     z-index: 9;
     align-items: center;
     text-align: center;
     gap: 20px;
}
 .banner-heading {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: "Merriweather", serif;
    position: absolute;
    bottom: 0;
    background: #0000004f;
    width: auto;
    color: #e5bf3a;
    padding: 10px 30px;
}
 .banner-content p {
     color: #ffffff;
     font-size: 15px;
     margin-bottom: 15px;
}
/*-------------------------------------------- banner section end --------------------------------------------*/
/*-------------------------------------------- home section start --------------------------------------------*/
 .z-index-1 {
     z-index: 1;
}
 .heading-white .main-head {
     color: #ffffff;
}
/*-------------------------------------------- home section end --------------------------------------------*/
/*-------------------------------------------- footer section start --------------------------------------------*/
 .footer-section {
     background: var(--dark-color);
     overflow: hidden;
     position: relative;
}
 .footer-social-inline {
     display: flex;
     column-gap: 8px;
     margin-top: 20px;
}
 .footer-social-list-icon:hover i{
     background: #ffffff;
     color: var(--primary-color);
}
 .footer-social-list-icon i {
     width: 34px;
     height: 34px;
     background: var(--primary-color);
     color: #fff;
     line-height: 34px;
     text-align: center;
     border-radius: 4px;
     position: relative;
     font-size: 15px;
     display: inline-block;
     transition: var(--transition);
}
 .main-footer {
     display: grid;
     width: 100%;
     grid-column-gap: 20px;
     grid-row-gap: 20px;
     grid-template-columns: repeat(4, minmax(0px, 1fr));
     padding: 70px 0 55px 0;
}
 .footer-title {
     font-size: 20px;
     line-height: 24px;
     color: #ffffff;
     font-weight: 600;
     padding-bottom: 20px;
     margin-bottom: 15px;
     position: relative;
}
 .footer-title:before {
     content: "";
     background: #ffffff;
     position: absolute;
     bottom: 0;
     left: 0;
     width: 80px;
     height: 3px;
     border-radius: 4px;
}
 .footer-title:after {
     content: "";
     background: var(--dark-color);
     position: absolute;
     bottom: 0;
     left: 15px;
     width: 10px;
     height: 3px;
     border-radius: 0;
}
 .footer-widget a {
     font-size: 14px;
     line-height: 26px;
     width: fit-content;
     color: #bfcfe3;
     display: flex;
     align-items: center;
     margin-bottom: 5px;
}
 .footer-widget a:hover {
     color: #ffffff;
}
 .footer-item:nth-child(3) {
     padding-right: 0;
}
 .footer-widget ul li {
     margin-bottom: 5px;
}
 .footer-widget p{
     font-size: 14px;
     line-height: 26px;
     color: #bfcfe3;
}
 .footer-bottom {
     padding: 15px 0;
     position: relative;
     z-index: 2;
     border-top: 1px solid #234166;
}
 .copyright-content-link {
     color: #bfcfe3;
}
 .copyright-content-link:hover {
     color: #ffffff;
}
 .footer-bottom p {
     font-size: 12px;
     line-height: 24px;
     color: #bfcfe3;
     margin: 0;
}
 .contact-info i {
     font-size: 20px;
     color: #bfcfe3;
     margin-right: 10px;
}
 .contact-info a:hover i {
     color: #ffffff;
}
 .extra-link a {
     font-size: 12px;
     line-height: 24px;
     color: #bfcfe3;
     margin: 0;
     position: relative;
     padding: 0 20px;
}
 .extra-link a:hover {
     color: #ffffff;
}
 .extra-link a:after {
     content: "";
     position: absolute;
     right: 0;
     top: 6px;
     width: 7px;
     height: 7px;
     border-radius: 50%;
     background: #144583;
}
 .extra-link a:last-child {
     padding-right: 0;
}
 .extra-link a:last-child:after {
     display: none;
     opacity: 0;
}
 #scroll__top {
     position: fixed;
     bottom: 80px;
     right: 25px;
     z-index: 99;
     outline: 0;
     background-color: var(--primary-color);
     color: var(--white-color);
     box-shadow: 0 2px 22px rgba(0, 0, 0, .16);
     cursor: pointer;
     transform: translateY(50px);
     opacity: 0;
     visibility: hidden;
     transition: var(--transition);
     width: 60px;
     height: 60px;
     border-radius: 50%;
     border: 2px solid #ffffff;
}
 #scroll__top:hover {
     color: var(--primary-color);
     background: var(--white-color) 
}
 #scroll__top.active {
     visibility: visible;
     opacity: 1;
     -webkit-transform: translateY(0);
     transform: translateY(0) 
}
 #scroll__top svg {
     width: 25px;
     line-height: 1 
}
/*-------------------------------------------- footer section end --------------------------------------------*/
/*-------------------------------------------- inner page start --------------------------------------------*/
 .breadcrumb-area {
     background-repeat: no-repeat;
     background-size: cover;
     background-position: center;
     width: 100%;
     height: 250px;
     position: relative;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
}
 .breadcrumb-area:before {
     content: "";
     position: absolute;
     left: 0;
     top: 0;
     background: #000000;
     width: 100%;
     height: 100%;
     opacity: 0.6;
}
 .breadcrumb-area h1, .breadcrumb-area h2, .breadcrumb-area h3, .breadcrumb-area h4 {
     color: #fff;
     position: relative;
     text-transform: uppercase;
     font-weight: 800;
     font-size: 40px;
}
 .breadcrumb-list a, .breadcrumb-list li {
     color: #fff;
     font-size: 12px;
     text-transform: uppercase;
     font-weight: 500;
     margin-right: 15px;
}
 .breadcrumb-list li:last-child {
     margin-right: 0;
}
 .breadcrumb-list li:last-child:after {
     display: none;
     opacity: 0;
}
 .breadcrumb-list li:after {
     content: "\f054";
     font-family: "Font Awesome 6 Pro";
     color: #fff;
     font-size: 12px;
     text-transform: uppercase;
     font-weight: 500;
}
 .breadcrumb-list ul {
     display: flex;
     background: #ffffff2e;
     width: fit-content;
     padding: 8px 20px;
     margin-top: 15px;
     transition: var(--transition);
}
 .breadcrumb-list ul:hover {
     background: var(--primary-color);
}
 .primary-bg {
     background: var(--primary-color);
}
 .secondary-bg {
     background: var(--secondary-color);
}
 .inner-bg {
     background: var(--inner-color);
}
 .easy-contact {
     background: #f5fbff;
}
 .left-bg {
     position: absolute;
     top: 0;
     left: 0;
     height: 250px;
}
 .right-bg {
     position: absolute;
     bottom: 0;
     right: 0;
     height: 250px;
}
 .easy-contact .main-head {
     padding: 0 150px;
     text-align: center;
}
 .main-blog-img img {
     height: 400px;
     width: 100%;
     object-fit: cover;
     border-radius: 30px;
}
 .main-blog-img {
     margin-bottom: 20px;
     width: 100%;
     position: relative;
}
 .main-blog-img:before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     background: linear-gradient(to top, #032f43db 10%, transparent);
     width: 100%;
     height: 100%;
     opacity: 1;
     border-radius: 30px;
}
 .main-blog-img .inline_blog_text .name_text {
     font-size: 16px;
     font-weight: 500;
}
 .main-blog-img .inline_blog_text {
     position: absolute;
     bottom: 15px;
     width: 100%;
     justify-content: center;
     column-gap: 60px;
}
 .sidebar-heading {
     font-size: 24px;
     font-weight: 700;
     margin-bottom: 35px;
     position: relative;
}
 .sidebar-heading:before {
     content: "";
     background: var(--primary-color);
     width: 55px;
     height: 4px;
     position: absolute;
     bottom: -10px;
     left: 0;
     border-radius: 6px;
}
 .search-section {
     display: flex;
     align-items: center;
     background: #f7f7f7;
     padding: 15px;
     margin-bottom: 15px;
}
 .search-section .form-control {
     border: 1px solid #eee;
     border-radius: .375rem 0 0 .375rem;
     font-size: 14px;
     height: 45px;
     outline: 0;
}
 .search-section button {
     width: 64px;
     height: 45px;
     border: 1px solid var(--primary-color);
     outline: 0;
     background: var(--primary-color);
     color: #fff;
     border-radius: 0 .375rem .375rem 0;
}
 .form-control:focus {
     color: #000000;
     background-color: #fff;
     border: 1px solid var(--primary-color) !important;
     outline: 0;
     box-shadow: 0 0 0 0 var(--primary-color);
}
 .card_section {
     margin-bottom: 30px;
}
 .card_section:last-child {
     margin-bottom: 0;
}
 .category-list ul li a{
     font-size: 15px;
     font-weight: 500;
     padding-bottom: 10px;
     margin-bottom: 10px;
     display: block;
     border-bottom: 1px dashed #e5e5e5;
     transition: var(--transition);
}
 .category-list ul li:last-child a{
     padding-bottom: 0;
     margin-bottom: 0;
     border-bottom: 0 dashed #e5e5e5;
}
 .category-list ul li a:hover {
     color: var(--primary-color);
}
 .category-list ul li a:after {
     content: "\f178";
     position: absolute;
     font-family: "Font Awesome 6 Pro";
     font-weight: 400;
     color: var(--primary-color);
     right: 0;
     opacity: 0;
     transform: translateX(-15px);
     transition: var(--transition);
}
 .category-list ul li a:hover:after {
     opacity: 1;
     transform: translateX(0);
}
 .category-list ul li a i {
     color: var(--primary-color);
     margin-right: 5px;
}
 .sticky {
     position: fixed;
     top: 0;
     width: 100%;
     z-index: 999;
}
/*tab style start*/
 div.tabBox {
     width:99.9%;
     float:left;
     overflow: visible;
}
 div.tabBox h3 {
     padding:20px 0px;
}
 ul.tabs {
     margin: 0;
     padding: 0;
     float: left;
     list-style: none;
     height: 40px;
     width:99.9%;
}
 ul.tabs li {
     float: left;
     margin-left: 0;
     padding: 0;
     height: 40px;
     line-height: 30px;
     margin-bottom: 0;
     overflow: hidden;
     position: relative;
}
 ul.tabs li a {
     display: block;
     padding: 5px 10px;
     outline: none;
     background:none;
}
 .tabContainer {
     border-top: none;
     overflow: hidden;
     clear: both;
     float: left;
     width:99.9%;
     min-height:300px;
     margin-bottom:10px;
}
 .tabContent {
     padding: 20px;
}
 .tabContent h3 {
     padding:0px;
}
/**** TABS STYLES ****/
 div.tabBox h3 {
}
 ul.tabs {
     border-bottom: 1px solid #ccc;
     border-left: 1px solid #ccc;
     border-top-left-radius:5px;
     -moz-border-top-left-radius:5px;
     -webkit-border-top-left-radius:5px;
}
 ul.tabs li {
}
 ul.tabs li a {
     background:#eee;
     text-decoration: none;
     font-size: 15px;
     color: #000;
     outline: none;
     border: 1px solid #ccc;
    /*border-left: none;
    */
     border-top-left-radius:5px;
     -moz-border-top-left-radius:5px;
     -webkit-border-top-left-radius:5px;
     border-top-right-radius:5px;
     -moz-border-top-right-radius:5px;
     -webkit-border-top-right-radius:5px;
}
 ul.tabs li a:hover {
     background: #eee;
}
 ul.tabs li.active {
     border-bottom:1px solid #fff;
}
 ul.tabs li.active a, ul.tabs li.active a:hover {
     background: #fff;
}
 div.tabContainer {
     border-bottom:1px solid #ccc;
     border-left:1px solid #ccc;
     border-right:1px solid #ccc;
     background:#fff;
}
/* THE RESPONSIVE PART */
 @media only screen and (max-width: 767px) {
     div.tabBox {
         border: 1px solid #ccc;
    }
     ul.tabs {
         height: auto;
         display: block;
         width:100%;
         border-left:0px;
    }
     ul.tabs li {
         width:100%;
    }
     ul.tabs li a {
         border-top-left-radius:0px;
         -moz-border-top-left-radius:0px;
         -webkit-border-top-left-radius:0px;
         border-top-right-radius:0px;
         -moz-border-top-right-radius:0px;
         -webkit-border-top-right-radius:0px;
         border:0px;
    }
     div.tabContainer {
         border: 0px;
    }
}
/*tab style end*/
 .filter-button {
     background: #3a3a3a !important;
     color: #fff;
     padding: 4px 15px;
     font-size: 14px;
     border-radius: 30px;
     margin-bottom: 5px;
}
 .filter-button:hover {
     background-color: var(--primary-color) !important;
     color: #fff !important;
}
 .inline-btn-portfolio {
     margin-bottom: 20px;
}
 .portfolio-item .play-btn img {
     width: 100%;
     height: 250px;
     object-fit: cover;
     object-position: top;
     transform: var(--transition);
}
 .portfolio-item .play-btn {
     position: relative;
     overflow: hidden;
     transform: var(--transition);
}
 .portfolio-item .play-btn:hover img {
     transform: scale(1.1);
}
 .portfolio-item .play-btn:hover:before {
     content: "";
     background: #000000;
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
     opacity: 0.5;
     transform: var(--transition);
}
 .portfolio-item .play-btn:hover:after {
     content: "\f00e";
     color: #ffffff;
     font-family: "Font Awesome 6 Pro";
     position: absolute;
     top: 50%;
     left: 45%;
     width: 100%;
     height: 100%;
     z-index: 1;
     opacity: 1;
     font-size: 40px;
}
 .portfolio-item {
     margin-bottom: 30px;
     transform: var(--transition);
}
 .link_head {
     font-size: 14px;
     font-weight: 500;
     width: 100%;
     padding: 10px 15px;
     color: #ffffff;
     background: var(--primary-color);
     display: block;
     text-align: center;
}
 .link_head:hover {
     color: #ffffff;
     background: #3a3a3a;
}
 .home-contact-map iframe {
     height: 500px;
     filter: grayscale(100%);
     border: 0 solid #eff2f5;
     width: 100%;
     transition: var(--transition);
     margin-bottom: -10px;
}
 .home-contact-map:hover iframe {
     filter: grayscale(0);
}
/*.contact-box-inline {
     display: grid;
     width: 100%;
     grid-template-columns: repeat(2, minmax(0px, 1fr));
}
*/
/*.container-info .home-contact-info {
     background: var(--primary-color);
     padding: 30px 200px 30px 30px;
     display: grid;
     width: 100%;
     height: 100%;
     grid-template-columns: repeat(1, minmax(0px, 1fr));
}
*/
 .container-info .home-contact-info-icon i {
     font-size: 20px;
     margin-right: 15px;
     background: #ffffff;
     width: 45px;
     height: 45px;
     line-height: 45px;
     border-radius: 50%;
     text-align: center;
     color: var(--primary-color);
}
 .contact-info-content p, .contact-info-content a {
     color: #ffffff;
     line-height: 22px;
     font-size: 14px;
}
 label {
     display: inline-block;
     font-weight: 600;
     font-size: 15px;
     margin-bottom: 5px;
}
 .contact-form {
     border-radius: 0;
     box-shadow: 0 0 7px rgb(0 0 0 / 8%);
     padding: 40px;
}
 .home-contact-map img {
     width: 100%;
     height: 100%;
     object-fit: cover;
}
 .contact-form .inline-main-btn {
     display: flex;
     align-items: center;
     column-gap: 10px;
     position: relative;
     bottom: 0;
     margin-top: 10px;
}
 .contact-form .form-control {
     font-size: 14px;
     border: 1px solid #ece9e3;
     height: 45px;
     border-radius: 0;
     padding: 5px 10px;
     background: #f7f7f7;
}
 .form-group {
     margin-bottom: 15px;
}
 .contact-form textarea.form-control {
     height: 100px;
}
 .contact-info-content h4 {
     font-size: 18px;
     color: #fff;
     font-weight: 700;
     margin-bottom: 5px;
}
 .footer-social-inline h4 {
     font-size: 22px;
     font-weight: 600;
     color: #fff;
}
 .container-info .footer-social-list-icon i {
     width: 34px;
     height: 34px;
     background: #ffffff;
     color: var(--primary-color);
     line-height: 34px;
     font-size: 16px;
     border-radius: 50%;
}
 .home-contact-info-items {
     border-bottom: 1px dashed #88daff;
}
 .home-contact-info-items:last-child {
     border-bottom: 0 dashed #88daff;
}
 .home-contact-info .footer-social-inline {
     display: flex;
     column-gap: 8px;
     margin-top: 0;
     align-items: center;
}
 .team-box {
     background: #eaf3ff;
     text-align: center;
     border-radius: 60px 0 60px 0;
     overflow: hidden;
     position: relative;
}
 .team-box img {
     width: 250px;
     height: 250px;
     object-fit: cover;
     object-position: top;
     border-radius: 50%;
     padding: 30px;
     transition: var(--transition);
}
 .team-box h3 {
     font-size: 14px;
     font-weight: 600;
     text-align: center;
     text-transform: uppercase;
     background: var(--primary-color);
     color: #fff;
     padding: 20px 10px;
     border-radius: 60px 0 60px 0;
     height: 60px;
     transition: var(--transition);
}
 .team-box:hover h3 {
     background: #3a3a3a;
}
 .team-grid {
     display: grid;
     width: 100%;
     grid-column-gap: 20px;
     grid-row-gap: 20px;
     grid-template-columns: repeat(4, minmax(0px, 1fr));
}
 .team-box:hover img {
     transform: scale(1.1);
}
 .gallery-section {
     display: grid;
     width: 100%;
     grid-column-gap: 20px;
     grid-row-gap: 20px;
     grid-template-columns: repeat(3, minmax(0px, 1fr));
}
 .gallery-category h4 {
     font-size: 16px;
     text-transform: capitalize;
     line-height: 24px;
     font-weight: 600;
     background: #f0faff;
     padding: 10px 15px;
     color: var(--primary-color);
     width: 80%;
     height: 70px;
}
 .heading-gallery a {
     text-align: center;
     width: 20%;
     background: var(--primary-color);
     height: 70px;
     color: #fff;
     font-size: 24px;
     line-height: 70px;
}
 .heading-gallery a i {
     transition: var(--transition);
}
 .gallery-category:hover .heading-gallery a i {
     padding-left: 5px;
}
 .gallery-category img{
     width: 100%;
     height: 250px;
     object-fit: cover;
     object-position: top;
}
 .gallery-category:hover .heading-gallery a {
     background: #3a3a3a;
}
 .gallery-box {
     display: flex;
     transition: var(--transition);
     position: relative;
     overflow: hidden;
}
 .gallery-category .gallery-box:before {
     content: "";
     background: var(--primary-color);
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 0;
     visibility: hidden;
     transition: var(--transition);
}
 .gallery-category:hover .gallery-box:before {
     opacity: 0.8;
     visibility: visible;
}
 .gallery-box a {
     position: absolute;
     top: 43%;
     left: 37%;
     color: #fff;
     text-transform: uppercase;
     font-weight: 600;
     background: #3a3a3a;
     padding: 10px 20px;
     font-size: 14px;
     border-radius: 30px;
     visibility: hidden;
     opacity: 0;
     transition: var(--transition);
     transform: scale(0);
}
 .gallery-category:hover .gallery-box a {
     visibility: visible;
     opacity: 1;
     transform: scale(1);
}
 .gallery-details {
     display: grid;
     width: 100%;
     grid-column-gap: 5px;
     grid-row-gap: 5px;
     grid-template-columns: repeat(3, minmax(0px, 1fr));
}
 .view-icon {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     font-size: 20px;
     width: 50px;
     height: 50px;
     line-height: 50px;
     border-radius: 50%;
     text-align: center;
     background: var(--primary-color);
     color: #ffffff;
     opacity: 0;
     visibility: hidden;
}
 .gallery-img-img {
     height: 250px;
     width: 100%;
     object-fit: cover;
     background: #e4f6ff;
     padding: 10px;
}
 .gallery-details a {
     position: relative;
}
 .gallery-details a:before {
     content: "";
     background: #3a3a3ab5;
     position: absolute;
     top: 10px;
     left: 10px;
     width: calc(100% - 20px);
     height: calc(100% - 20px);
     opacity: 0;
     visibility: hidden;
     transition: var(--transition);
}
 .gallery-details a:hover:before {
     opacity: 1;
     visibility: visible;
}
 .gallery-details a:hover .view-icon {
     opacity: 1;
     visibility: visible;
}
 .gallery-head .main-head {
     font-size: 34px;
     margin-bottom: 24px;
}
/*-------------------------------------------- inner page end --------------------------------------------*/
 .banner-section .slick-prev {
     left: 30px;
     z-index: 99;
}
 .banner-section .slick-next {
     right: 30px;
     z-index: 99;
}
 .banner-section .slick-prev:before {
     content: '\f053';
     font-family: "Font Awesome 6 Pro";
     font-size: 36px;
     font-weight: 200;
}
 .banner-section .slick-next:before {
     content: '\f054';
     font-family: "Font Awesome 6 Pro";
     font-size: 36px;
     font-weight: 200;
}
 .looking-area {
     display: grid;
     width: 100%;
     grid-column-gap: 20px;
     grid-template-columns: repeat(4, minmax(0px, 1fr));
}
 .looking-item {
     display: flex;
     align-items: center;
     column-gap: 15px;
}
 .looking-item i {
     font-size: 24px;
}
 .looking-item h4 {
     font-size: 18px;
}
 .looking-item {
     display: flex;
     align-items: center;
     justify-content: center;
     column-gap: 10px;
     background: #edf5ff;
     padding: 20px 15px;
     border-radius: 10px;
}
 .post-text {
     background: #fff;
     border-radius: 0 0 10px 10px;
     padding: 15px;
}
 .post-text h4 {
     font-size: 16px;
     line-height: 22px;
     margin-bottom: 5px;
     display: -webkit-box;
     max-width: 100%;
     height: 45px;
     min-width: 0;
     overflow: hidden;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     word-break: break-word;
}
 .post-action div {
     font-size: 13px;
}
 .post-action div i {
     padding-right: 5px;
}
 .post-action {
     display: flex;
     align-items: center;
     justify-content: space-between;
     border-top: 1px solid #eee;
     padding-top: 8px;
     margin-top: 10px;
}
 .play-btn img {
     width: 50px;
}
 .play-btn {
     opacity: 0;
     visibility: hidden;
     position: absolute;
     transition: all .3s ease;
     top: 50%;
     left: 50%;
     transform: translate(-25px, -25px);
}
 .post-item:hover .play-btn {
     opacity: 1;
     visibility: visible;
}
 .video-post {
     position: relative;
}
 .post-img {
     width: 100%;
     height: 180px;
     object-fit: cover;
     border-radius: 10px 10px 0 0;
}
 .point-box {
     display: grid;
     width: 100%;
     grid-column-gap: 15px;
     grid-template-columns: repeat(4, minmax(0px, 1fr));
}
 .point-list {
     display: flex;
     flex-direction: column;
     align-items: center;
     color: #767676;
     font-weight: 400;
     font-size: 12px;
     line-height: 20px;
}
 .point-list span {
     font-size: 15px;
     color: #000000;
     font-weight: 600;
}
 .top-box img {
     width: 100px;
     height: 100px;
     object-fit: contain;
     margin: 15px 0;
}
 .top-box {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     padding: 30px 10px;
     border-radius: 10px 10px 0 0;
     background: #fff;
}
 .top-box h3{
     font-size: 15px;
     font-weight: 600;
     margin: 0;
}
 .recent-point-box {
     display: grid;
     width: 100%;
     grid-column-gap: 2px;
     grid-template-columns: repeat(6, minmax(0px, 1fr));
     margin-top: 5px;
}
 .point-box-details {
     display: flex;
     justify-content: space-between;
     background: #063979;
     border-radius: 0 0 10px 10px;
}
 .point-box-position {
     width: 25%;
     display: flex;
     justify-content: center;
    /* align-items: center;
     */
     position: relative;
     padding: 8px;
}
 .box-right {
     width: 75%;
     background: #e2effd;
     padding: 15px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     position: relative;
     border-radius: 0 0 10px 0;
}
 .box-right h3 {
     color: #063979;
     font-size: 16px;
     font-weight: 600;
     margin-bottom: 5px;
}
 .point-position {
     color: #000000;
     font-size: 12px;
     font-weight: 600;
     border: 1px solid transparent;
     width: 22px;
     height: 22px;
     line-height: 20px;
     text-align: center;
     border-radius: 50%;
}
 .point-position.lost {
     color: #d31426;
     border: 1px solid #d31426;
}
 .point-position.wine {
     color: #43B049;
     border: 1px solid #43B049;
}
 .box-right span {
     display: block;
     position: absolute;
     right: 10px;
     top: 10px;
     text-align: center;
     font-size: 12px;
     font-weight: 500;
     font-family: "Merriweather", serif;
     width: 20px;
     height: 20px;
     line-height: 20px;
     background: #43B049;
     border-radius: 50%;
     color: #fff;
}
 .point-box-position h4 {
     display: block;
     -webkit-text-stroke: 1px #fff;
     color: #063979;
     font-size: 46px;
     font-family: "Merriweather", serif;
}
 .point-table-item:hover {
     border: 1px solid #063979;
     border-radius: 10px;
}
 .point-table-item {
     border: 1px solid #e2effd;
     border-radius: 10px;
     transition: var(--transition);
}
 .top-performers-img img {
     height: 370px;
     width: 100%;
     object-fit: cover;
     object-position: top;
     border-radius: 10px;
}
 .top-performers-text h3 {
     font-size: 22px;
     font-weight: 600;
     text-align: center;
     color: #fff;
     margin-bottom: 0;
     padding-top: 15px;
     height: 70px;
}
 .top-performers-img {
     display: flex;
     justify-content: center;
     align-items: center;
     width: 45%;
}
 .special-text {
     border: 1px solid #fff;
     border-radius: 30px;
     width: fit-content;
     text-align: center;
     padding: 15px 30px;
     font-size: 20px;
     font-weight: 600;
     color: #ffffff;
}
 .performers-list span {
     font-size: 12px;
     color: #ffffff;
     font-weight: 600;
}
 .performers-box .performers-list {
     display: flex;
     flex-direction: column;
     align-items: center;
     color: #96c1f5;
     font-weight: 400;
     font-size: 12px;
     line-height: 20px;
}
 .performers-box {
     display: flex;
     justify-content: space-evenly;
     width: 100%;
     column-gap: 10px;
     border-top: 1px solid #fff;
     padding: 10px 10px;
     position: absolute;
     left: 0;
     bottom: 0;
}
 .performers-grid-box {
     display: grid;
     width: 100%;
     grid-column-gap: 0;
     grid-template-columns: repeat(2, minmax(0px, 1fr));
}
 .top-performers-left img {
     width: 100%;
     height: 130px;
     object-fit: contain;
     object-position: left;
     margin-bottom: 5px;
}
 .top-performers-left {
     padding: 50px 30px;
     padding-left: 115px;
     display: flex;
     flex-direction: column;
     row-gap: 15px;
     width: 100%;
     height: 450px;
     align-items: flex-start;
}
 .top-performers-item {
     display: flex;
     align-items: center;
     justify-content: center;
     height: 450px;
}
.top-performers-text {
    width: 50%;
    background: #063979;
    height: 220px;
    padding: 30px;
    position: relative;
    border-radius: 0 10px 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
 .special-span span {
     border-radius: 30px;
     width: fit-content;
     text-align: center;
     padding: 5px 20px;
     font-size: 12px;
     font-weight: 500;
     color: #000000;
     background: #ddc685;
     display: flex;
     align-items: center;
     column-gap:5px;
}
 .special-span span img {
     height: 18px;
}
 .top-performers-owl.right-dots .owl-nav .owl-prev {
     left: 12px;
}
 .top-performers-owl.right-dots .owl-nav .owl-next {
     right: 12px;
}
 .view-part-item {
     overflow: hidden;
     background: linear-gradient(to right, #063979 40%, #205ca7);
     height: 160px;
     padding: 15px 30px;
     border-radius: 15px;
     width: 100%;
     display: flex !important;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     font-size: 34px;
     font-weight: 600;
     color: #fff;
     letter-spacing: 0.5px;
     position: relative;
}
 .view-part-item span {
     font-size: 14px;
     display: block;
     font-weight: 400;
     letter-spacing: 0.5px;
     color: #fff;
     margin-top: 5px;
}
 .view-part .slick-dots li {
     position: relative;
     display: inline-block;
     margin: 0 5px;
     padding: 0;
     cursor: pointer;
     width: auto;
     height: auto;
}
 .view-part .slick-dots li button {
     width: 5px;
     height: 5px;
     padding: 5px;
     border-radius: 50%;
     color: #ffffff;
     background: #ffffff4d;
}
 .view-part .slick-dots {
     bottom: 15px;
     left: 0;
}
 .view-part li.slick-active button {
     background: #ffffff;
}
 .view-part-item img {
     position: absolute;
     right: 30px;
     width: 85px;
     height: 85px;
     object-fit: contain;
     background: #fff;
     padding: 10px;
     border-radius: 50%;
     box-shadow: 0 0 0 6px #e5cb81;
}
 .view-part.team-view .view-part-item {
     align-items: flex-start;
     font-size: 20px;
     font-weight: 600;
}
 .player-view-item-content h4 {
     color: #fff;
     font-size: 16px;
     font-weight: 500;
     margin: 5px 0;
}
 .player-view-item-content .view-item {
     color: #fff;
     font-size: 12px;
     display: flex;
     justify-content: space-between;
}
 .player-view-img img {
     height: 145px;
     border-radius: 10px;
     width: 100%;
     position: relative;
}
 .player-view-item {
     width: 100%;
     display: flex !important;
     justify-content: center;
     align-items: center;
     column-gap: 50px;
     height: 185px;
     overflow: hidden;
     padding: 15px 30px;
     position: relative;
     border-radius: 15px;
}
 .player-view-item-content .special-span span {
     padding: 2px 14px;
     font-size: 12px;
     background: #fff;
}
 .special-span span img {
     height: 14px;
}
 .bg-orange {
     background: #E97335;
}
 .bg-purple {
     background: #4C2E76;
}
 .bg-blue {
     background: #2d9bd7;
}
 .bg-deepblue {
     background: #094AB7;
}
 .view-part.player-view-part {
     background: none;
     padding: 0;
}
 .view-part.team-view .view-part-item {
     background: linear-gradient(to right, #b99530 40%, #c9af68);
}
 .view-part.team-view .view-part-item:before {
     content: "";
     background: url(../images/bg-12.png) no-repeat;
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 160px;
     background-size: cover;
     opacity: 0.8;
}
 .player-view-item:before {
     content: "";
     background: url(../images/line.png) no-repeat;
     position: absolute;
     bottom: 20px;
     left: -20px;
     width: 110%;
     height: 100%;
     background-size: cover;
     background-position: center;
     opacity: 0.1;
     transform: rotate(347deg);
}
 .brand-section {
     display: flex;
     align-items: center;
     column-gap: 5px;
     padding-bottom: 50px;
}
 .brand-item:first-child {
    width: 50%;
    border: 1px solid #eee;
    height: 190px;
}
.title-sponsors .inline-brand {
    height: 130px;
}
 .brand-item:last-child {
     width: 50%;
     border: 1px solid #eee;
}
 .inline-brand {
     padding: 10px 15px 25px 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     column-gap: 15px;
}
.title-sponsors img {
    height: 60px;
    width: 100%;
    object-fit: contain;
}
.supported-by img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}
 .brand-item .inline-brand {
     padding: 15px 15px;
}
 .brand-item h4 {
     background: #063979;
     color: #fff;
     font-size: 30px;
     line-height: 36px;
     padding: 10px 15px;
     text-align: center;
     font-weight: 700;
     font-family: "Merriweather", serif;
}
 .slick-dotted.slick-slider {
     margin-bottom: 0 !important;
}
 .mt-30px {
     margin-top: 30px;
}
 .sponsor-part .sponsor-bg {
    background: #fff;
    padding: 5px;
    border-radius: 15px;
    width: 95% !important;
    height: 110px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
 .sponsor-section{
     padding: 25px 0;
}
 .sponsor-part img {
    width: auto;
    height: 65px;
    object-fit: contain;
}
.sponsor-part.gold-sponsor img {
    width: auto;
    height: 55px;
    object-fit: contain;
}
 .sponsor-part h4 {
     background: #063979;
     color: #fff;
     font-size: 16px;
     text-transform: uppercase;
     padding: 10px 15px;
     text-align: center;
}
 .sponsor-section:before {
     content: "";
     background: url(../images/new-bg.svg) no-repeat;
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     opacity: 0.5;
}
 .shorts-owl .post-img {
     width: 100%;
     height: 150px;
     object-fit: cover;
     border: 1px solid #fff;
     border-radius: 10px;
}
 .shorts-owl .post-img:hover {
     padding: 5px;
     border: 1px dashed #f57070;
}
 .shorts-owl h4 {
     font-size: 10px;
     color: #fff;
     letter-spacing: 0.5px;
     text-align: center;
     margin-top: 10px;
}
 .banner-section {
     margin-bottom: -10px;
}
 .shorts-section:before {
     content: "";
     background: url(../images/new-story-helix-bg.svg) no-repeat;
     position: absolute;
     bottom: 0;
     left: 0;
     width: 70%;
     height: 70%;
     background-size: contain;
     background-position: left;
     opacity: 1;
}
 .shorts-section {
     border-radius: 0 0 40px 40px;
}
 .looking-bg:before {
     content: "";
     background: url(../images/new-wrulf-bg-1.svg) no-repeat;
     position: absolute;
     top: -33px;
     left: 0;
     width: 33%;
     height: 100%;
     background-size: cover;
     background-position: left bottom, right top;
     opacity: 1;
     z-index: -1;
}
 .looking-bg:after {
     content: "";
     background: url(../images/new-wrulf-bg-2.svg) no-repeat;
     position: absolute;
     bottom: 0;
     right: 0;
     width: 45%;
     height: 100%;
     background-size: cover;
     background-position: center;
     opacity: 1;
     z-index: -1;
}
 .point-bg:before {
     content: "";
     background: url(../images/new-wrulf-bg-1.svg) no-repeat;
     position: absolute;
     bottom: 0;
     left: 0;
     width: 25%;
     height: 100%;
     background-size: cover;
     background-position: bottom;
     opacity: 1;
     z-index: -1;
}
 .point-bg:after {
     content: "";
     background: url(../images/new-wrulf-bg-2.svg) no-repeat;
     position: absolute;
     bottom: 67px;
     right: -45px;
     width: 38%;
     height: 92%;
     background-size: cover;
     background-position: bottom;
     opacity: 1;
     z-index: -1;
}
 .in-number-section:before {
     content: "";
     background: url(../images/new-bg.svg) no-repeat;
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     opacity: 0.5;
}
 .footer-section:before {
     content: "";
     background: url(../images/footer-sparkel-top.svg) no-repeat;
     position: absolute;
     bottom: 0;
     left: 0;
     width: 25%;
     height: 100%;
     background-size: cover;
     background-position: bottom;
     opacity: 1;
     z-index: -1;
}
 .footer-section:after {
     content: "";
     background: url(../images/footer-sparkel-bottom.svg) no-repeat;
     position: absolute;
     bottom: 0;
     right: 0;
     width: 33%;
     height: 100%;
     background-size: contain;
     background-position: bottom right;
     opacity: 1;
     z-index: 1;
}
/*----- breadcrumb-section start -----*/
 .breadcrumb-section {
     background: var(--dark-color);
     padding: 50px 15px;
     margin-bottom: 50px;
}
 .breadcrumb-section:before {
     content: "";
     background: url(../images/bg-img/breadcrumb-bg.jpg) no-repeat;
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
}
 .breadcrumb-section:after {
     content: "";
     background: var(--primary-color);
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     opacity: 0.7;
}
 .breadcrumb-section .container {
     display: flex;
     align-items: center;
     justify-content: space-between;
}
 .breadcrumb-section h1 {
     color: #ffffff;
     margin: 0;
     font-size: 18px;
     z-index: 11;
}
 .breadcrumb-section ul {
     display: flex;
     align-items: center;
     column-gap: 10px;
}
 .breadcrumb-section ul li a {
     color: #ffffff;
     margin: 0;
     font-size: 14px;
}
 .breadcrumb-section ul li {
     color: #ffffff;
     margin: 0;
     font-size: 14px;
     position: relative;
     padding-right: 15px;
     z-index: 11;
}
 .breadcrumb-section ul li:last-child {
     padding-right: 0;
}
 .breadcrumb-section ul li:before {
     content: "/";
     position: absolute;
     right: 0;
     top: 0;
}
 .breadcrumb-section ul li:last-child:before {
     display: none;
     opacity: 0;
}
/*----- breadcrumb-section end -----*/
/*----- match result start -----*/
 .tab-box ul {
     display: flex;
     justify-content: center;
     align-items: center;
     column-gap: 5px;
     background: #fff;
     border-radius: 30px;
     width: max-content;
     padding: 15px 10px;
}
 .tab-box ul li a {
     text-align: center;
     border-radius: 30px;
     background: var(--white-color);
     color: #000000;
     padding: 8px 25px;
}
 .tab-box ul li .active-tab {
     background: var(--primary-color);
     color: #fff;
}
 .tab-box ul li a:hover {
     background: var(--primary-color);
     color: #fff;
}
/*select option start*/
 .select_wrap{
     width: 225px;
     position: relative;
     user-select: none;
}
 .select_wrap .default_option{
     background: #fff;
     border-radius: 5px;
     position: relative;
     cursor: pointer;
}
 .select_wrap .default_option:before{
     content: "";
     position: absolute;
     top: 18px;
     right: 18px;
     width: 6px;
     height: 6px;
     border: 2px solid;
     border-color: transparent transparent #555555 #555555;
     transform: rotate(-45deg);
}
 .select_wrap .select_ul{
     position: absolute;
     top: 55px;
     left: 0;
     width: 100%;
     background: #fff;
     border-radius: 5px;
     display: none;
     z-index: 111;
     box-shadow: 0 0 3px 0 #00000017;
}
 .select_wrap .select_ul li{
     cursor: pointer;
}
 .select_wrap .select_ul li:first-child:hover{
     border-top-left-radius: 5px;
     border-top-right-radius: 5px;
}
 .select_wrap .select_ul li:last-child:hover{
     border-bottom-left-radius: 5px;
     border-bottom-right-radius: 5px;
}
 .select_wrap .select_ul li:hover{
     background: #ffffff;
}
 .select_wrap .option {
     display: flex;
     align-items: center;
     padding: 10px 20px;
     border-bottom: 1px solid #e7e7e7;
}
 .select_ul .option:last-child {
     border-bottom: 0 solid #e7e7e7;
}
 .select_wrap .option .icon img {
     width: 30px;
     margin-right: 5px;
}
 .select_wrap.active .select_ul{
     display: block;
}
 .select_wrap.active .default_option:before{
     top: 25px;
     transform: rotate(-225deg);
}
 .filter-match-result {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 15px;
}
/*select option end*/
/*----- match result end -----*/
 .tab-box-body {
     background: #fff;
     padding: 30px;
     border-radius: 14px;
     border: 1px solid #e5e5e5;
     position: relative;
}
 .match-center {
     position: absolute;
     top: 0;
     left: 0;
}
 .match-team {
     display: flex;
}
 .inline-match-list {
     width: 85%;
     display: flex;
     justify-content: space-between;
     position: relative;
}
 .match-result {
     width: 15%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: flex-start;
     text-align: left;
     border-right: 1px dashed #ababab;
     padding-right: 15px;
}
 .tab-box-list {
     display: flex;
     column-gap: 30px;
     border-bottom: 1px solid #e1e1e1;
     padding-bottom: 30px;
     margin-bottom: 30px;
     position: relative;
}
 .tab-box-list:last-child {
     border-bottom: 0 solid #e1e1e1;
     padding-bottom: 0;
     margin-bottom: 0;
}
 .match-result span {
     position: absolute;
     top: 0;
     left: 0;
     border: 1px solid var(--primary-color);
     text-transform: uppercase;
     background: var(--primary-color);
     -webkit-text-stroke: 1px #fff;
     color: var(--primary-color);
     font-size: 40px;
     width: 60px;
     height: 60px;
     font-family: "Merriweather", serif;
     display: flex;
     justify-content: center;
     align-items: center;
     border-radius: 6px;
}
 .inline-match-box {
     display: flex;
     align-items: center;
     padding-top: 60px;
     column-gap: 30px;
     width: 100%;
     justify-content: space-between;
}
 .match-box {
     width: 40%;
}
 .match-center h3 {
     font-size: 14px;
     font-family: "Poppins", sans-serif;
}
 .match-center p {
     font-size: 13px;
     color: #878787;
     margin-top: 2px;
}
 .match-result h4 {
     font-size: 15px;
     line-height: 20px;
     padding-top: 50px;
     word-break: break-word;
}
 .match-team-info h5 {
     font-size: 13px;
}
 .match-team-info h3 {
     font-size: 20px;
     font-family: "Poppins", sans-serif;
     margin: 2px 0;
}
 .match-team-info p {
     font-size: 12px;
     color: #787878;
     font-weight: 500;
}
 .match-box:last-child .match-team {
     text-align: right;
     justify-content: end;
}
 .right-box {
     display: flex;
     justify-content: flex-end;
     align-items: center;
     padding-top: 60px;
     width: 35%;
     padding-right: 15px;
}
 .match-btn span {
     width: 46px;
     height: 46px;
     display: block;
     background: #eee;
     padding: 12px;
     border-radius: 50%;
     margin-right: 15px;
}
 .right-box .main-btn {
     margin-left: 15px;
}
 .match-team-logo {
     width: 25%;
     margin-right: 5px;
}
 .match-box:last-child .match-team .match-team-logo {
     width: 25%;
     margin-right: 0;
     margin-left: 5px;
}
 .match-team-info {
     width: 75%;
}
 .match-bg-1:before {
     content: "";
     background: url(../images/bottom-section-bg.svg) no-repeat;
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: 120%;
     background-position: center top;
     opacity: 1;
     background-repeat: repeat-y;
}
 .upcoming-match .match-result span {
     position: relative;
}
 .upcoming-match .match-result {
     align-items: center;
}
 .point-team img {
     height: 32px;
     margin-right: 5px;
     border-radius: 50%;
}
 .recent-match span {
     width: 24px;
     height: 24px;
     line-height: 24px;
     border-radius: 50%;
     margin-right: 5px;
     display: inline-block;
     text-align: center;
     font-size: 12px;
     font-weight: 600;
}
 .recent-match span:last-child {
     margin-right: 0;
}
 .recent-match span.N {
     border: 1px solid #8d8787;
     color: #8d8787;
}
 .recent-match span.L {
     border: 1px solid #D34646;
     color: #D34646;
}
 .recent-match span.W {
     border: 1px solid #2A841B;
     color: #2A841B;
}
 .point-table-section table {
     vertical-align: middle;
     background: #fff;
     margin: 0;
     border-radius: 14px;
     border: 0 solid #dddddd;
     position: relative;
}
 .point-table-section table tbody tr {
     border-bottom: 1px solid #ededed;
     background: #FAFBFC;
}
 .point-table-section table tbody tr:last-child {
     border-bottom: 0 solid #ededed;
     border-radius: 0 0 14px 14px;
}
 .point-table-section table tbody tr td {
     border: 0;
     font-size: 14px;
     padding: 15px 20px;
     text-align: center;
}
 .point-table-section table tbody tr td:nth-child(2) {
     text-align: left;
}
 .point-table-section table thead tr th:nth-child(2) {
     text-align: left;
}
 .point-table-section table thead tr th {
     padding: 20px 20px;
     font-size: 15px;
     font-weight: 600;
     text-align: center;
     border-bottom: 1px solid #e8e8e8;
     text-transform: uppercase;
}
 .grid-video {
     position: relative;
     display: grid;
     width: 100%;
     grid-column-gap: 20px;
     grid-row-gap: 20px;
     grid-template-columns: repeat(4, minmax(0px, 1fr));
}
 .videobanner-bg {
     width: 100%;
     height: 37%;
     position: absolute;
     border-bottom-left-radius: 100px;
     border-bottom-right-radius: 100px;
     background: var(--primary-color);
     background-image: url(../images/latest-new-bg.svg);
     background-repeat: no-repeat;
     background-size: 100%;
     background-position: center;
}
 .video-mt-60 {
     margin-top: -60px;
}
 .point-table-section.stats-table .point-team img {
     height: 64px;
     margin-right: 8px;
     border-radius: 4px;
}
 .point-table-section.stats-table table thead tr th {
     background: #002048;
     color: #fff;
}
 .point-table-section.stats-table .point-team {
     display: flex;
     align-items: center;
}
 .point-table-section.stats-table .point-team h4 {
     font-size: 14px;
     text-align: left;
}
 .point-table-section.stats-table .point-team h4 span {
     display: block;
     margin-top: 4px;
     color: #8f8f8f;
     font-size: 12px;
}
 .point-table-section.stats-table table tbody .position-player {
     font-size: 22px;
     font-weight: 600;
}
 .awards thead tr th:nth-child(2){
     text-align: left;
}
 .point-table-section.stats-table.awards .awards-team-name {
     text-align: left;
}
 .team-list .team-card {
     background: #ffffff;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     text-align: center;
     width: 100%;
     height: 360px;
     border-radius: 6px;
}
 .team-card h4 {
     font-family: "Merriweather", serif;
     font-size: 18px;
     font-weight: 600;
     margin: 0;
     color: #fff;
     position: absolute;
     bottom: 45px;
}
 .team-list .team-card:before {
     content: "";
     position: absolute;
     background: url(../images/shape-1.png) no-repeat;
     width: 100%;
     height: 167px;
     bottom: 0;
     border-radius: 0 0 6px 6px;
}
 .team-list:hover .team-on-hover {
     display: flex;
}
 .team-list .team-on-hover {
     display: none;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     row-gap: 90px;
     background: #ffffff;
     text-align: center;
     width: 100%;
     height: 360px;
     position: absolute;
     top: 0;
     left: 0;
     border-radius: 6px;
}
 .team-list .team-on-hover:before {
     content: "";
     position: absolute;
     background: url(../images/shape-1.png) no-repeat;
     width: 100%;
     height: 167px;
     bottom: 0;
     border-radius: 0 0 6px 6px;
}
 .team-on-hover .trophy-text {
    position: relative;
    color: #fff;
    top: 35px;
}
 .team-list {
     margin-top: 35px;
     display: block;
}
 .team-list {
     margin-top: 35px;
     display: block;
}
 .team-section .col-lg-3:nth-child(1) .team-list, .team-section .col-lg-3:nth-child(2) .team-list, .team-section .col-lg-3:nth-child(3) .team-list, .team-section .col-lg-3:nth-child(4) .team-list {
     margin-top: 0;
}
 .team-section .col-lg-4:nth-child(1) .team-list, .team-section .col-lg-4:nth-child(2) .team-list, .team-section .col-lg-4:nth-child(3) {
     margin-top: 0;
}
/*---------- new pages start ----------*/
 .details-big-video iframe {
     width: 100%;
     height: 410px;
     object-fit: cover;
}
 .share-video {
     display: flex;
     align-items: center;
     gap: 15px;
}
 .share-video a {
     border: 1px solid #bdbdbd;
     width: 30px;
     height: 30px;
     border-radius: 50%;
     line-height: 30px;
     text-align: center;
}
 .share-video a i {
     padding: 0;
}
 .details-big-video h2 {
     font-size: 28px;
     font-weight: 600;
     margin-top: 10px;
}
 .details-big-video .post-action {
     padding-top: 15px;
     margin-top: 20px;
     padding-bottom: 15px;
     border-bottom: 1px solid #eee;
     margin-bottom: 30px;
}
 .related-video-owl .post-text {
     background: #f9f9f9;
}
 .related-video-owl {
     margin-left: 25px;
     margin-bottom: 20px;
}
/*.owl-carousel .owl-stage-outer {
     margin-left: -25px;
}
*/
 .details-big-video .related-video-owl .post-action {
     border-bottom: 0 solid #eee;
     margin-bottom: 0;
     margin-top: 15px;
     padding-bottom: 0;
}
 .details-big-video {
     height: 685px;
     overflow-y: auto;
}
 .sidebar-video {
     padding: 15px;
     height: 685px;
     overflow-y: auto;
}
 .card-video-item {
     display: flex;
     align-items: center;
     margin-bottom: 10px;
}
 .sidebar-video .section-heading {
     margin-bottom: 20px;
}
 .card-img img {
     width: 100%;
     height: 110px;
     object-fit: cover;
     border-radius: 10px 0 0 10px;
}
 .card-content-box h4 {
     font-size: 16px;
     line-height: 22px;
}
 .card-img {
     width: 35%;
}
 .card-content-box {
     width: 65%;
     background: #ffffff;
     padding: 10px;
     height: 110px;
     border-radius: 0 10px 10px 0;
}
/* width */
 .sidebar-video::-webkit-scrollbar, .details-big-video::-webkit-scrollbar {
     width: 5px;
}
/* Track */
 .sidebar-video::-webkit-scrollbar-track, .details-big-video::-webkit-scrollbar-track {
     background: #f1f1f1;
}
/* Handle */
 .sidebar-video::-webkit-scrollbar-thumb, .details-big-video::-webkit-scrollbar-thumb {
     background: #EF4123;
}
/* Handle on hover */
 .sidebar-video::-webkit-scrollbar-thumb:hover, .details-big-video::-webkit-scrollbar-thumb:hover {
     background: #555;
}
 .team-gallery-box {
     display: grid;
     width: 100%;
     grid-column-gap: 2px;
     grid-row-gap: 2px;
     grid-template-columns: repeat(4, minmax(0px, 1fr));
}
 .team-gallery-item {
     position: relative;
}
 .team-gallery-item img {
     height: 230px;
     object-fit: cover;
     width: 100%;
}
 .team-gallery-box-text {
     position: absolute;
     bottom: 0;
     left: 0;
     padding: 15px;
     width: 100%;
}
 .team-gallery-box-text h4 {
     color: #fff;
     font-size: 14px;
}
 .team-gallery-box-text p {
     color: #eaf3ff;
     font-size: 15px;
     margin-top: 5px;
}
 .team-gallery-item:before {
     content: "";
     position: absolute;
     bottom: 0;
     left: 0;
     background: linear-gradient(to top, #011b3a 0%, transparent);
     width: 100%;
     height: 75%;
     opacity: 1;
}
 .gallery-details-img img {
     cursor: pointer;
     width: 100%;
     height: 230px;
     object-fit: cover;
}
 .about-image {
    position: relative;
     background: var(--primary-color);
     min-height: 300px;
     display: flex;
     justify-content: center;
     align-items: center;
     border-radius: 10px;
}
 .about-text p {
    font-size: 14px;
    line-height: 22px;
}
.text-2 {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 14px;
    color: #fff;
    background: #00000082;
    width: 100%;
    padding: 10px;
}
/*---------- new pages end ----------*/
 .share-icons {
     position: absolute;
     background: #022858;
     min-width: 115px;
     display: flex;
     justify-content: space-around;
     padding: 5px 10px;
     border-radius: 4px;
     top: -50px;
     right: 0;
     border: 1px solid #ffffff;
}
/*.share-icons {
     position: absolute;
     background: rgb(255, 255, 255);
     min-width: 115px;
     display: flex;
     justify-content: space-around;
     padding: 5px 10px;
     border-radius: 4px;
     bottom: -35px;
}
*/
 .share-icons a {
     color: #fff;
}
 .share-icons a:hover {
     color: #fff;
}
 select {
     height: 40px;
     padding: 0 15px;
     width: 100%;
     border: 0;
}
 option {
     font-size: 13px;
}
 .tooltip {
     position: absolute;
     background-color: #333;
     color: #fff;
     padding: 5px;
     border-radius: 4px;
     font-size: 12px;
     bottom: 100%;
    /* Position above the icon */
     left: 50%;
     transform: translateX(-50%);
     white-space: nowrap;
     z-index: 100;
}
 #copy-link:hover .tooltip {
     display: block;
    /* Show tooltip on hover */
}
 .details-heading-section .container {
     position: relative;
}
 .details-heading-section:before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     background: linear-gradient(to top, #000000e0 30%, transparent);
     width: 100%;
     height: 500px;
     opacity: 1;
}
 .details-heading-section img {
     height: 500px;
     width: 100%;
     object-fit: cover;
}
 .details-heading-section h1 {
     color: #fff;
     font-size: 30px;
     line-height: 36px;
     margin-bottom: 15px;
     font-weight: 700;
     font-family: "Merriweather", serif;
}
 .details-heading-section .date-heading {
     color: #fff;
}
 .details-heading {
     position: absolute;
     bottom: 20px;
     left: 20px;
}
 .team-card img {
     width: auto;
     height: 200px;
     position: absolute;
     top: 25px;
}
/*===== Vertical Timeline =====*/
 #conference-timeline {
     position: relative;
     max-width: 920px;
     width: 100%;
     margin: 0 auto;
}
 #conference-timeline .timeline-start, #conference-timeline .timeline-end {
     display: table;
     font-size: 18px;
     font-weight: 600;
     text-transform: uppercase;
     background: var(--primary-color);
     padding: 15px 23px;
     color: #fff;
     max-width: 20%;
     width: 100%;
     text-align: center;
     margin: 0 auto;
}
 #conference-timeline .conference-center-line {
     position: absolute;
     width: 3px;
     height: 100%;
     top: 0;
     left: 50%;
     margin-left: -2px;
     background: var(--primary-color);
     z-index: -1;
}
 #conference-timeline .conference-timeline-content {
     padding-top: 67px;
     padding-bottom: 67px;
}
 .timeline-article {
     width: 100%;
     height: 100%;
     position: relative;
     overflow: hidden;
     margin: 40px 0;
}
 .timeline-article .content-left-container, .timeline-article .content-right-container {
     max-width: 44%;
     width: 100%;
}
 .timeline-article .timeline-author {
     display: block;
     font-weight: 400;
     font-size: 14px;
     line-height: 24px;
     color: #242424;
     text-align: right;
}
 .timeline-article .content-left, .timeline-article .content-right {
     position: relative;
     width: auto;
     background-color: var(--inner-color);
     padding: 20px 20px;
}
 .timeline-article p {
     margin: 0 0 0 60px;
     padding: 0;
     font-weight: 400;
     color: #242424;
     font-size: 14px;
     line-height: 24px;
     position: relative;
}
 .timeline-article p span.article-number {
     position: absolute;
     font-weight: 700;
     font-size: 40px;
     top: 10px;
     left: -60px;
     color: var(--primary-color);
}
 .timeline-article .content-left-container {
     float: left;
}
 .timeline-article .content-right-container {
     float: right;
}
 .timeline-article .content-left:before, .timeline-article .content-right:before{
     position: absolute;
     top: 20px;
     font-size: 23px;
     font-family: "FontAwesome";
     color: var(--inner-color);
}
 .timeline-article .content-left:before {
     content: "\f0da";
     right: -8px;
}
 .timeline-article .content-right:before {
     content: "\f0d9";
     left: -8px;
}
 .timeline-article .meta-date {
     position: absolute;
     top: 0;
     left: 50%;
     width: 80px;
     height: 80px;
     margin-left: -40px;
     color: #fff;
     border-radius: 100%;
     background: var(--primary-color);
     display: flex;
     justify-content: center;
     align-items: center;
}
 .timeline-article .meta-date .date, .timeline-article .meta-date .month {
     display: block;
     text-align: center;
     font-weight: 900;
}
 .timeline-article .meta-date .date {
     font-size: 18px;
     line-height: 40px;
     font-weight: 500;
}
 .timeline-article .meta-date .month {
     font-size: 18px;
     line-height: 10px;
}
/*===== // Vertical Timeline =====*/
/*===== Resonsive Vertical Timeline =====*/
 @media only screen and (max-width: 991px) {
     #conference-timeline .timeline-start, #conference-timeline .timeline-end {
         margin: 0;
         max-width: 60%;
    }
     #conference-timeline .conference-center-line {
         margin-left: 0;
         left: 50px;
    }
     .timeline-article .meta-date {
         margin-left: 0;
         left: 20px;
         width: 70px;
         height: 70px;
    }
     .about-image {
         margin-top: 20px;
    }
     .timeline-article .content-left-container, .timeline-article .content-right-container {
         max-width: 100%;
         width: auto;
         float: none;
         margin-left: 110px;
         min-height: 53px;
    }
     .timeline-article .content-left-container {
         margin-bottom: 20px;
    }
    /* .timeline-article .content-left, .timeline-article .content-right {
         padding: 10px 25px;
         min-height: 65px;
    }
    */
     .timeline-article .content-left:before {
         content: "\f0d9";
         right: auto;
         left: -8px;
    }
     #conference-timeline .conference-timeline-content {
         padding-top: 20px;
         padding-bottom: 20px;
    }
     .about-text {
         margin-top: 20px;
    }
}
 @media only screen and (max-width: 400px) {
     .timeline-article p {
         margin: 0;
    }
     .timeline-article p span.article-number {
         display: none;
    }
}
/*===== // Resonsive Vertical Timeline =====*/
/*---------- contact pages start ----------*/
 .container-info .home-contact-info {
     background: var(--secondary-color);
     border-radius: 100px;
     padding: 40px 50px;
     row-gap: 20px;
     display: grid;
     width: 100%;
     height: 100%;
     grid-template-columns: repeat(3, minmax(0px, 1fr));
}
 .home-contact-info-items {
     border-bottom: 0 dashed #ffffff;
     padding-bottom: 0;
}
 .container-info .home-contact-info-icon i {
     font-size: 20px;
     margin-right: 15px;
     background: #ffffff;
     width: 45px;
     height: 45px;
     line-height: 45px;
     border-radius: 50%;
     text-align: center;
     color: var(--secondary-color);
}
 .contact-info-content h4 {
     font-size: 18px;
     color: #fff;
     font-weight: 700;
     margin-bottom: 5px;
}
 .contact-info-content p, .contact-info-content a {
     color: #ffffff;
     line-height: 22px;
     font-size: 14px;
     word-break: break-word;
}
 .contact-box-inline {
     display: grid;
     width: 100%;
     grid-template-columns: repeat(2, minmax(0px, 1fr));
     background: var(--bg-color);
     margin-top: 50px;
}
 .contact-form {
     border-radius: 0;
     padding: 40px;
}
 .contact-form .form-group {
     margin-bottom: 15px;
}
 .contact-form label {
     display: inline-block;
     font-weight: 600;
     font-size: 15px;
     margin-bottom: 5px;
}
 .contact-form .form-control {
     font-size: 12px;
     border: 1px solid #ece9e3;
     height: 40px;
     padding: 5px 15px;
     background: #fff;
     border-radius: 30px;
     color: #000;
}
 .contact-form textarea.form-control {
     height: 100px;
}
 .home-contact-map iframe {
     height: 100%;
     filter: grayscale(100%);
     border: 0 solid #eff2f5;
     width: 100%;
     transition: var(--transition);
     margin-bottom: 0;
}
/*---------- contact pages end ----------*/
 .post-action .share-container {
     position: absolute !important;
     right: 0;
}
 .digital-partner {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 12px;
     line-height: 24px;
     color: #bfcfe3;
}
 .digital-partner img {
     height: 30px;
}
 .grid-team-member {
     display: grid;
     width: 100%;
     grid-column-gap: 20px;
     grid-row-gap: 20px;
     grid-template-columns: repeat(4, minmax(0px, 1fr));
}
 .member-item {
     position: relative;
}
 .member-item:before {
     content: "";
     position: absolute;
     bottom: 0;
     right: 0;
     background: linear-gradient(to top, #022858e6 30%, transparent);
     width: 100%;
     height: 50%;
     opacity: 1;
     border-radius: 16px;
}
 .member-item img {
     width: 100%;
     height: 320px;
     object-fit: cover;
     object-position: top;
     border-radius: 16px;
}
 .member-text {
     position: absolute;
     bottom: 15px;
     width: 100%;
     text-align: center;
}
 .member-item h4 {
     color: #fff;
     font-weight: 700;
     font-family: "Merriweather", serif;
     font-size: 20px;
}
 .member-item p {
     color: #bad8ff;
     text-transform: capitalize;
     font-size: 14px;
     margin-top: 5px;
}
 .mobile-more-btn {
     display:none;
}
 .banner-video iframe {
     width: 100%;
     height: 500px;
}
 .team-gallery-box a {
     position: relative;
     overflow: hidden;
     transition: var(--transition);
}
 .team-gallery-box .view-btn {
     padding: 7px 15px;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     background: #ffffff;
     color: #022858;
     display: none;
     transition: var(--transition);
}
 .team-gallery-box a:hover .view-btn {
     display: block;
     transition: var(--transition);
}
 .team-gallery-box .video-btn {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     display: none;
     transition: var(--transition);
}
 .team-gallery-box a:hover .video-btn {
     display: block;
     transition: var(--transition);
}
 .about-text td, .about-text th {
     padding: 10px;
}
 .about-text table {
     border: 1px solid #000;
     width: 100%;
}
.banner-video {
    width: 100%;
    height: 480px;
    overflow: hidden;
}
.banner-video video {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}
.about-video video {
    width: 100%;
    height: auto;
    object-position: center;
    object-fit: cover;
    overflow: hidden;
}
.footer-logo {
    height: 150px;
}
.player-view-item-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}














 