/* Fonts */

:root {

  --default-font: "Roboto", sans-serif,"Noto Sans Sinhala", sans-serif;

  --heading-font: "Roboto", sans-serif,"Noto Sans Sinhala", sans-serif;

  --nav-font: "Roboto", sans-serif,"Noto Sans Sinhala", 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: #212529; /* Default color used for the majority of the text content across the entire website */

  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */

  --accent-color: #116530; /* 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: #116530; /* 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: #116530; /* 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: #060606;

  --default-color: #ffffff;

  --heading-color: #ffffff;

  --accent-color: #2ea359;

  --surface-color: #252525;

  --contrast-color: #ffffff;

}



/* Smooth scroll */

:root {

  scroll-behavior: smooth;

}



.btn-success {

  background-color: #006600 !important;

}



.btn-success:hover {

  border: solid 1px #333333;

  color: #333333;

}



.text-primary {

  color: #ff8707 !important;

}

/*--------------------------------------------------------------

# General Styling & Shared Classes

--------------------------------------------------------------*/

.main {

  overflow: hidden;

}



body {

  color: var(--default-color);

  background-color: var(--background-color);

  font-family: var(--default-font);

  font-size: small;

}



a {

  color: white !important;

  text-decoration: none;

  transition: 0.3s;

}



a:hover {

  color: black !important;

  text-decoration: none;

}



h1,

h2,

h3,

h4,

h5,

h6 {

  color: black;

  font-family: var(--heading-font);

}



/*--------------------------------------------------------------

# Global Header

--------------------------------------------------------------*/

.header {

  color: white !important;

  background-color: #ff6806 !important;

  min-height: 60px;

}



.header .logo {

  line-height: 1;

}



.header .logo img {

  max-height: 32px;

  margin-right: 8px;

}



.header .logo h1 {

  font-size: 30px;

  margin: 0;

  font-weight: 700;

  color: var(--heading-color);

}



.scrolled .header {

  box-shadow: 0px 0 18px

    color-mix(in srgb, var(--default-color), transparent 85%);

}



.bg-nav {

  background-color: #ffffff00  !important;

}



.bg-orange {

  background-color: #ff6806 !important;

}



.head_logo {

  max-width: 350px !important;

  z-index: 1;

  /* position: absolute;

  margin: 10px 0 0 0; */

}



/* @media (max-width: 992px) {

  .head_logo {

    margin: 0 0 0 50% !important;

  }

} */



.cLanguages {

  float: left;

  margin-bottom: 25px;

  margin-left: 15px;

}



ul.cHorizontalList {

  list-style: none;

  padding: 0px;

  margin: 0px;

}

ul.cHorizontalList li {

  padding: 0 1em;

  display: inline-block;

}



.lang_text {

  padding: 10px 4px !important;

  border-left: solid 0px #b3b3b3 !important;

}



.header_links a {

  font-size: 18px;
  display: inline-block;
  background: rgb(237 237 237 / 0%);
  color: #ff6806 !important;!i;!;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid;

}



.header_links a:hover {

  color: green;

  background: rgba(255, 255, 255, 0.789);

  text-decoration: none;

}



.lh-11 {

  line-height: 30px !important;

}





.list-none{

  list-style: none!important;

}



.float-end{

  text-align: right!important;

}

/*--------------------------------------------------------------

# Navigation Menu

--------------------------------------------------------------*/

/* Navmenu - Desktop */

.nav_width {

  width: 800px !important;

}



.pl-2 {

  padding-left: 20px;

}



.d_down {

  font-weight: 300 !important;

  border-bottom: 1px solid #3d3d3d78;

  padding-bottom: 0 !important;

}



.d_down:hover {

  background-color: #efe996;

}



@media (min-width: 1200px) {

  .navmenu {

    padding: 0 0 0 5%;

  }



  .navmenu ul {

    margin: -10px !important;

    padding: 0;

    display: flex;

    list-style: none;

    align-items: center;

  }



  .navmenu li {

    position: relative;

  }



  .navmenu a,

  .navmenu a:focus {

    color: var(--nav-color);

    padding: 18px 15px;

    font-size: 16px;

    font-family: var(--nav-font);

    font-weight: 400;

    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;

    transition: 0.3s;

  }



  .navmenu li:last-child a {

    padding-right: 0;

  }



  .navmenu li:hover > a,

  .navmenu .active,

  .navmenu .active:focus {

    color: var(--nav-hover-color);

  }



  .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

      color-mix(in srgb, var(--default-color), transparent 85%);

  }



  .navmenu .dropdown ul li {

    min-width: 200px;

  }



  .navmenu .dropdown ul a {

    padding: 10px 20px;

    font-size: 15px;

    text-transform: none;

    color: blue !important;

  }



  .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: var(--nav-color);

    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;

    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

      color-mix(in srgb, var(--default-color), transparent 90%);

  }



  .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;

    background: #6b6b6b;

  }

}





.si_nav_width {

    width: 960px !important;

}



.ta_nav_width {

    width: 960px !important;

}



/*--------------------------------------------------------------

 video

--------------------------------------------------------------*/

.slider_video {

  margin-left: -10px !important;

  margin-bottom: -7px;

  padding: 10px;

}



.green_text {

  color: #006600;

}



.commd_title {

  font-size: xx-large;

  margin-top: 10%;

  font-family: fantasy;

  line-height: 1;

  color: #006600;

  margin: 0px;

  padding-top: 20px;

  padding-bottom: 20px;

  margin-left: 20px;

}



.commd_rank {

  line-height: 1;

  color: #006600;

  font-weight: 900;

  margin: 0px;

  font-size: 22px;

}



.commd_name {

  line-height: 1;

  color: #006600;

  margin: 0px;

  font-size: 22px;

  font-weight: bold;

}



.align-justify {

  text-align: justify !important;

}

/*--------------------------------------------------------------

 news bar

--------------------------------------------------------------*/



.bg-low {

  background-color: #000000;

  align-content: center;

}



.ticker_n {

  color: #ffffff;

  font-size: 16px;

  line-height: 2em;

  font-weight: bold;

}

.news_logo {

  max-width: 100%;

}



/*--------------------------------------------------------------

# announcement

--------------------------------------------------------------*/



.announcement {

  background-color: #c7c7c7;

}



.bord_brown {

  border: 8px solid #560f0f !important;

}



/*--------------------------------------------------------------

# cimic

--------------------------------------------------------------*/

.cimic_title_text {

  color: white;

  font-size: 4em;

  font-weight: 300;

  font-style: normal;

  line-height: 1.5em;

}



.cimic_tittle_down {

  color: #fe6806;

  font-size: 60px;

  font-family: fantasy;

  text-transform: uppercase;

  line-height: 1em;

  /* margin-top: -31px; */

  margin: 0px;

}



.cimic {

  background-image: url(img/cimic.jpg);

  background-color: #cccccc;

  background-position: center;

/*  background-repeat: no-repeat;

  background-size: cover;*/

}



.bg-black {

  background: #00000092 !important;

}



.estab {

  background: #32077a !important;

}



/*--------------------------------------------------------------

# un mission

--------------------------------------------------------------*/



.un_txt {

  text-transform: uppercase;

  font-weight: 800;

  font-family: fantasy;

  color: black;

  font-size: 43px;

  line-height: 1em;

  margin-top: 0px;

}



.welfare {

  background-color: #d8f2ff;

}

/*--------------------------------------------------------------

# Global Footer

--------------------------------------------------------------*/

.c_footer {

    background-color: #f56300 !important;

}

.footer {

  color: var(--default-color);

  background-color: #1a1a1a !important;

  font-size: 14px;

  position: relative;

}



.footer .footer-top {

  background-color: #1a1a1a !important;

  padding-top: 50px;
  background-image: url(https://lankalive.lk/web/img/footer_bg.jpg);
    background-size: contain;

}



.footer .footer-about .logo {

  line-height: 1;

  margin-bottom: 25px;

}



.footer .footer-about .logo img {

  max-height: 40px;

  margin-right: 6px;

}



.footer .footer-about .logo span {

  color: var(--heading-color);

  font-family: var(--heading-font);

  font-size: 26px;

  font-weight: 700;

  letter-spacing: 1px;

}



.footer .footer-about p {

  font-size: 14px;

  font-family: var(--heading-font);

}



.footer h4 {

  font-size: 16px;

  font-weight: 600;

  position: relative;

  padding-bottom: 12px;

  margin-bottom: 15px;

}



.footer h4::after {

  content: "";

  position: absolute;

  display: block;

  width: 20px;

  height: 2px;

  background: var(--accent-color);

  bottom: 0;

  left: 0;

}



.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 30%);

  display: inline-block;

  line-height: 1;

}



.footer .footer-links ul a:hover {

  color: var(--accent-color);

}



.footer .footer-contact p {

  margin-bottom: 5px;

}



.footer .copyright {

  padding: 10px 0;

}



.footer .copyright p {

  margin-bottom: 0;

}



.footer .credits {

  margin-top: 5px;

  font-size: 13px;

}



.footer .social-links a {

  font-size: 18px;

  display: inline-block;

  background: color-mix(in srgb, var(--default-color), transparent 92%);

  color: var(--accent-color);

  line-height: 1;

  padding: 8px 0;

  margin-right: 4px;

  border-radius: 4px;

  text-align: center;

  width: 36px;

  height: 36px;

  transition: 0.3s;

}



.footer .social-links a:hover {

  color: var(--contrast-color);

  background: var(--accent-color);

  text-decoration: none;

}



.footer_txt:hover {

  color: #e8e8a3 !important;

}





.text_black{

  color: black !important;

}





.text_white{

  color: white !important;

}




section.head {
    border-top: 5px solid #ff6806;
    background-image: url(https://lankalive.lk/web/img/world.png);
    background-size: contain;
}


.social_media {
    margin-top: 5px;
    margin-bottom: 5px;
}

.find_result {
    margin-bottom: 5px;
}


.news_bar{
    margin-bottom: 0px !important;
      background-color: #696969;
}


.news_homepage {
    background-color: #696969;
    padding-top: 10px;
    padding-bottom: 10px;
}


.news_read_more {
    font-size: 15px;
}

.bg-white {
    color: #ff6806;
}


.test_black{
  color: orange !important;
}