 
/* Fonts */
:root {
  --default-font: "Lato",  system-ui, -apple-system, "Segoe UI", Lato, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Lato",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #111111; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #8c5ea8; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #8c5ea8; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #8c5ea8; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #11121B;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #353535;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
  
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: #fff;
    background-color: #8c5ea8;
    padding: 10px 0;
    transition: all 0.5s;
    z-index: 997;
}
.scrolled .header { 
    padding: 5px 0;
}
.scrolled .header .logo img {
    max-height: 65px;
    margin-bottom: -29px;
}
.header .logo {
  line-height: 1;
}

.header .logo img {
   max-height: 85px;
    margin-right: 0;
    margin-bottom: -50px;
    border-radius: 4px;
    filter: drop-shadow(2px 2px 3px #ababab);
}
.header .logo-1 { 
    margin-left: 10px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: #ec7044;
    font-size: 16px;
    padding: 12px 14px 12px 14px;
    margin: -4px 15px 0px 30px;
    border-radius: 4px;
    transition: 0.3s;
    font-weight: 600;
    line-height: 100%;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #fff;
  background: #e06233;
}
.partner-col {
    width: 100%;
    text-align: center;
}
.img-pt {
    max-width: 300px;
    width: 100%;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
 
  .sos-icon {
    display: none;
  }
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
        color: #fbdbe2;
        padding: 10px 20px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        letter-spacing: 0.3px;
        text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #fff;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

.sos-icon {
    color: #fbdbe2;
  }
.sos-icon:hover,
.sos-icon:focus
 {
    color: #f6de34;
  }
.sos-icon .bi {
  font-size: 30px;
  margin: 0px 5px 0px 5px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: var(--alt-background-color);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.banner-bg {
  background: #1d1d1b;
  padding: 28px 0px 28px 0px;
}
.bn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.bn-row .bn-left {
  width: 30%;
  text-align: center;
}
.bn-row .bn-right {
  width: 30%;
  text-align: center;
}
.bn-row .logo-wt {
  width: 140px;
}

.bn-row h1 {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 0px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;

}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

.section-bg {
background-color: transparent;
  padding: 60px 0;
  position: relative;
}

.section-bg:before {
  content: "";
  background-color: var(--background-color);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.section-bg .container {
  position: relative;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 15px;
  position: relative;
}

.section-title h2 {
  font-size: 37px;
  font-weight: 800;
  position: relative;
  text-transform: uppercase;  
  margin-bottom: 20px;
}
.section-title .hd-color {
   color: #8c5ea8;
}
 
.section-title p {
  margin-bottom: 5px 0px;
  font-size: 15px;
  text-align: justify;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.banner-section { 
  width: 100%;
  min-height:100%; 
  padding: 0px 0;   
} 
.banner-section .banner-text {
  position: absolute;
  width: 100%;
  height: 750px;
  z-index: 2; 
  text-align: center;    
  padding: 45px 0px 30px 0px;
} 
/** For video height code start **/
.banner-section {
  width: 100%;
  overflow: hidden;  
}
.video-banner {
  width: 100%;
  height: 750px; 
  object-fit: cover;
  pointer-events: none;  
  background: #020202;
} 
/** For video height code End **/
.banner-section .bn-logo {
  width: 360px;
}
.banner-section .banner-ci {
  width: 250px;
}
.banner-section .banner-text h2 {
  font-size: 43px;
  width: 100%;
  color: #fff;
  text-shadow: 1px 1px 4px #000000e1;
  font-weight: 800;
  text-transform: uppercase;
  margin: 25px 0px 25px 0px;
  letter-spacing: 0.4px;
}
.banner-section .banner-text p {
  font-size: 37px;
  width: 100%;
  color: #fff;
  text-shadow: 1px 1px 4px #000000e1;
  font-weight: 700;
  text-transform: uppercase;  
  margin: 0px 0px 40px 0px;
  letter-spacing: 0.4px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 60px 0px !important;
}
 
.bg-1 {
     background: #8c5ea80d;
}
.bg-1::before {
  content: "";
  background-color: var(--background-color);
}
.about .content h1 {
  font-weight: 800;
  font-size: 37px;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #8c5ea8;
}

.about .content p {
  margin-bottom: 15px;
  font-size: 16px;
  text-align: center;
}

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: var(--default-color);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent-color);
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.about .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

.about .icon-box:hover h4 a {
  color: var(--accent-color);
}

/** youtube video iframe css start **/
.video-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

    .video-container::after {
        padding-top: 56.25%;
        display: block;
        content: '';
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
/** youtube video iframe css end **/
.about-con {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.video-top {
  margin-top: 60px;
}
/** Entry Guidelines **/
 .entry-col {
    background: #fbd30a72;
    color: #fff;
    padding: 20px;
    border-radius: 20px;
    width: 100%;
  }
 .entry-col:hover {
    background: #fbd30a; 
  }
.entry-col h3 {
    font-size: 23px;
    font-weight: 700;
    color: #0a0a0a;
}
.entry-col ul {
    margin: 0;
    padding-left: 17px;
    font-size: 16px;
    width: 100%;
    color: #373737;
    line-height: 32px;
}
.entry-col .sh-not {
    margin: 0px;
    padding: 0px;
    font-size: 15px;
    width: 100%;
    color: #595959;
    line-height: 16px;
    font-weight: 600;
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
 .bg-dark-pink {
    background: #fbfbfb;
}
/** Award tab section start **/
.tabs-container {
  max-width: 100%;
  margin: 0 auto;  
}
.tabs {  
  text-align: center;
  display: block;
  margin-bottom: 25px;
}
.tab-button {
    padding: 13px 5px;
    text-align: center;
    color: rgb(17, 17, 17);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    text-overflow: ellipsis;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .7px;
    margin: 0px 6px;
    border: 1px solid #e8e7e7;
    border-radius: 10px;
    line-height: initial;
    text-transform: uppercase;
    width: 160px;
    background-color: #ffffff;
    color: var(--heading-color);
}
.tab-button.active,
.tab-button:hover { 
  background-color: #8c5ea8;
  color: #fff;
  border: 1px solid #8c5ea8;
} 
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}
.tabs-container .ex-map {
  width: 75%;
  margin: 0 auto;
  display: block;
}
 /** Award tab section End **/
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.pf-margin {
  margin-bottom: 25px;
}
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding:19px 19px;
  text-align: center;
  transition: 0.3s;
  border-radius: 20px;
}

.services .service-item .icon {
  font-size: 32px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
}

.services .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-weight: 700;
  font-size: 18px;
  text-transform: capitalize;
  transition: 0.3s;  
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical; 
  overflow: hidden;
  margin-bottom: 0px;
}

.services .service-item p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  transition: 0.3s;
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 22px;
  overflow: hidden;
}

.award-btn {
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 6px 2px;
  display: block;
  width: 110px;
  margin: 10px auto 0px auto;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: 0.3px;
  background-color: #fff;
}
.award-btn:hover { 
  background-color: var(--accent-color);
  color: #fff;
}

 /** Award popup section start **/
  .popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    z-index: 1000;
    width: 650px;
    max-width: 95%;  
    text-align: center;
  }
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  .close-icon {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #141414;
  }
  .close-icon:hover {
    color: var(--accent-color);
  }
  .close-btn {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 7px 10px;
    display: block;
    width: 90px;
    margin: 14px auto 0px auto;
    border-radius: 6px;
    font-size: 15px;
    letter-spacing: 0.3px;
    background-color: #fff;
  }
  .close-btn:hover {
    background-color: var(--accent-color);
    color: #fff;
  }
  .popup-content h5 {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 20px; 
    text-align: left;
    text-transform: uppercase;
  }
  .popup-content p {
    margin-bottom: 0;
    color: var(--default-color); 
    font-size: 15px; 
    text-align: left;
  }
  .popup-content p b {
    margin-bottom: 0;
    margin-top: 10px;
    font-size: 15px;
    display: block;
    text-align: left;
  }
 /** Award popup section End **/



.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-teal .icon {
  color: #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-red .icon {
  color: #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-indigo .icon {
  color: #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-pink .icon {
  color: #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

.services .service-item:hover {
   transform: scale(1.06);
  background: #8c5ea8;
  color: #fff;
}
.services .service-item:hover h3 { 
  color: #fff;
}

.services .service-item:hover h3 a {
  color: var(--heading-color);
}

.services .service-item:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}
@media (max-width: 575px) {
  .services .service-item { 
    padding: 15px 10px; 
  }
  .services .service-item h3 {
    font-size: 18px;
    line-height: 24px;
    -webkit-line-clamp: 2;
    margin-bottom: 1px;
}
.services .service-item p {
  font-size: 14px;
  line-height: 22px;
}
  .award-btn { 
    padding: 5px 10px; 
    width: 115px;
    margin: 9px auto 0px auto; 
  }
  .tab-button {
    padding: 10px 10px;
    width: 115px;
    margin: 0px auto 0px auto;
    font-size: 15px;
}

}

   .table-section {
  max-width: 770px;
  margin: 0 auto;
  overflow-x: auto;
  display: grid;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.table-section table {
  border: 1px solid #ececec;
  border-collapse: collapse;
  margin: 0 0 0 0;
  padding: 0;
  width: 100%;
  background: #fff;
}

.table-section::-webkit-scrollbar {
  height: 2px
}

.table-section::-webkit-scrollbar-thumb {
  background: #eaeaea;
  width: 20px;
  border-radius: 0
}

.table-section table thead tr {
  background: #8c5ea8;
  color: #fff;
}

.table-section table tr {
  border: 1px solid #e3e3e3
}

.table-section table th,.table-section table td {
  padding: 6px 10px;
  text-align: left;
  font-size: 15px;
  vertical-align: top;
  border-left: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}

.table-section table td:first-child {
 font-weight: 500;  
 min-width: 90px;
}
.table-section table td {
  color: var(--nav-color);
}

.table-section table td .magazine-name {
  font-weight: 600
}

.table-section table thead th {
  font-size: 15px;
  letter-spacing: .2px;
  font-weight: 600;
  padding: 6px 10px;
  text-transform: uppercase;
  background:none;  
  color: #fff;
}
.table-section td a {
  color: #4b80aa; 
}
.table-section td a:hover {
  color: #4b80aa; 
  text-decoration: underline;
}
/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}


.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 20px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}
 

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  margin-bottom: 20px;
}

.team .member img {
  margin: 0 0 8px 0px;
}

.team .member .member-content {
  padding: 0 4px 7px 4px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}


@media (max-width: 575px) {
  .team .member img {
    margin: 0px 0px 5px 0px;
  }
  
  .team .member .member-content {
    padding: 0 0px 4px 0px;
  }
  .team .member h4 { 
    font-size: 14px;
  }
  .team .member span {
    font-size: 12px;
    line-height: 15px;
  }
}


/*--------------------------------------------------------------
# partners Section
--------------------------------------------------------------*/
 .partners p {
  font-size: 15px;
  line-height: 24px;
}
  
/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
 .faq .faq-container .faq-item {
  position: relative;
  padding: 17px 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  background: #fff;
  transition: border-color 0.3s;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  max-height: 0;
  overflow: auto;
  transition: max-height 0.4s ease;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  padding-top: 10px;
  font-size: 15px;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  border-color:#e6e6e6;
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  max-height: 500px; /* enough to show content */
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

.faq p {
  font-size: 15px;
}

.faq-container {
  margin-top: 25px;
}



/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
 .tabs-col {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
 
.tab-scroll .nav-tabs {
  border-bottom: 1px solid #888888;
}

.tabs .nav-tabs li {
  margin: 0 0 -1px 0;
  padding: 0;
  width: auto;
}
.tabs .nav-link {
  color: #8c5ea8;
  border-bottom: 1px solid #888888;  
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}


.tabs .nav-link h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #8c5ea8;
  text-transform: uppercase;
}

.tabs .nav-link:hover {
   background: #fff;
  color: #8c5ea8; 
  border-top: 1px solid #888888;
  border-right: 1px solid #888888;
  border-left: 1px solid #888888;
  border-bottom: 1px solid #fff;
}

.tabs .nav-link.active {
  background: #fff;
  color: #8c5ea8;
 
  border-top: 1px solid #888888;
  border-right: 1px solid #888888;
  border-left: 1px solid #888888;
}

.tabs .nav-link.active h4 {
   color: #8c5ea8;
}

@media (max-width: 768px) {
  .tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .tabs .nav-link {
    padding: 11px;
  }

  .tabs .nav-link i {
    font-size: 24px;
  }
}

.tabs .tab-content {
  margin-top: 30px;
}

.tabs .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs .tab-pane ul li {
  padding-bottom: 10px;
}

.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

.responsive-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }
 
    .responsive-table td {
      border-bottom: 1px solid #c8c8c8;
      padding: 12px;
      text-align: left;
      color: #8c5ea8;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.3px;
    }

    .responsive-table th {
      border: 1px solid #e9e9e9;
      font-weight: 600;  
      padding: 12px;
      text-align: left;
      letter-spacing: 0.3px;
      background-color: #ececec; 
      color: #151515;
        font-size: 16px;
    }

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 0px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 10px;
}

.footer .footer-about .logo img {
    max-height: 80px;
    margin-right: 6px;
    margin-top: -10px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 25px;
  font-weight:600;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
  line-height: 22px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}
.footer .footer-contact p a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}
.banner-desktop {
    display: block;
    width: 100%;
}
.banner-mobile {
    display: none;
    width: 100%;
}

    @media screen and (max-width: 768px) {
      
      .responsive-table td { 
        padding:10px 4px; 
        font-size: 11px; 
        line-height: 15px;    
        vertical-align: top;
      }
      .responsive-table th {         
        padding:10px 4px; 
        font-size: 12px; 
        line-height: 15px;    
        vertical-align: top;
      }
      .responsive-table { 
        margin-top: 15px;
      }
      .faq .faq-container .faq-item h3 {
        font-weight: 600;
        font-size: 15px;
      }
      .faq .faq-container .faq-item { 
          padding: 10px 7px;
      }
      .faq .faq-container .faq-item .faq-toggle { 
        top: 15px;
        right: 10px;
      }

    }
 
@media only screen and (max-width: 800px) {
.tab-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch; 
  padding-bottom: 8px;
}
.tab-scroll .nav-tabs {
  flex-wrap: nowrap; 
  padding-left: 17px;
}
.tabs .nav-link h4 {
  font-size: 17px;
}
}

@media only screen and (max-width: 650px) {
.banner-bg {
  background: #1d1d1b;
  padding: 28px 0px 28px 0px;
} 
.bn-row .bn-left {
  width: 100%;
  text-align: left;
}
.bn-row .bn-right {
  display: none;
} 
.bn-row h1 { 
  font-size: 27px; 
  text-align: left;
  font-weight: 700;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.banner-section .banner-text { 
  height: 410px; 
  padding: 25px 0px 20px 0px;
}
.video-banner { 
  height: 410px; 
}
.banner-section .bn-logo {
  width: 190px;
}
.banner-section .banner-text h2 {
    font-size: 25px;
    margin: 10px 0px 15px 0px;
}
.banner-section .banner-text p {
  font-size: 16px;
  margin: 0px 0px 20px 0px;
}
.banner-section .banner-ci {
  width: 150px;
}
.banner-desktop {
    display: none; 
}
.banner-mobile {
    display: block; 
}
}

@media only screen and (max-width: 512px) {
.video-top {
  margin-top: 30px;
}
.section-title h2 {
  font-size: 29px; 
  margin-bottom: 15px;
}  
.header { 
  padding: 7px 0;
}
.header .logo img {
  max-height: 60px;
  margin-bottom: -25px;
}
.header .btn-getstarted, .header .btn-getstarted:focus {
    padding: 10px 12px;
    font-size: 14px;
  }
.about .content p {
  margin-bottom: 8px;
  font-size: 15px;
}
.about {
  padding: 35px 0px !important;
}
.about .content h1 { 
  font-size: 30px;
  margin-bottom: 15px; ;
}
.services .service-item h6 {
  font-weight: 700; 
  font-size: 20px; 
}
.services .service-item .txt {
  line-height: 21px;
  font-size: 13px; 
}
.deadline-table td {
  padding: 5px 5px; 
  font-size: 13px; 
} 
.services .service-item .service-ul li { 
  font-size: 13px; 
}
.services .service-item .about-btn {
  font-size: 14px;
}
.section-title p { 
  font-size: 13px;
}
  
.partners p {
  font-size: 13px;
  line-height: 21px;
}
.section-title { 
  padding-bottom: 20px;
}
.contact .info-item h3 { 
  font-size: 23px; 
}
.contact .info-item p { 
  font-size: 15px;
}
 .faq p {
  font-size: 13px;
}
.entry-col {  
    margin-bottom: 20px;
}
.entry-col h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a0a0a;
}
.entry-col ul { 
    font-size: 15px; 
    line-height: 29px;
}
.entry-col .sh-not { 
    font-size: 15px; 
    line-height: 16px; 
}

}