/* Import font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* Custom properties */
:root{
    --light-color: #fff;
    --light-color-alt: #afb6cd;/*afb6cd*/
    --primary-background-color: #131417;
    --secondary-background-color: #252830;
    --hover-light-color: var(--light-color);
    --hover-dark-color: var(--primary-background-color);
    --gradient-color: linear-gradient(
        115deg,#4fcf70,#fad648,#a767e5,#12bcfe,#44ce7b);
    --transparent-light-color: rgba(255,255,255,.05);
    --transparent-dark-color: rgba(0,0,0,.75);
    --font-family: 'Poppins', sans-serif;
    --font-size-xsm: 1.2rem;
    --font-size-sm: 1.6rem;
    --font-size-md: 2.4rem;
    --font-size-lg: 3rem;
    --font-size-xl: 4rem;
    --gap: 2rem;
    --margin-sm: 2rem;
    --margin-md: 3rem;
    --item-min-height-sm: 15rem;
    --item-min-height-md: 30rem;
}

/* Base styles */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 62.5%;
}
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;

  }
.loader {
    display: none; 

  }
body{
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    color: var(--light-color-alt);
    background-color: var(--primary-background-color);
    letter-spacing: 1px;
    transition: background-color .25s,color .25s;
} 
ul{
    list-style: none;
}

img{
    max-width: 100%;
}
 
.news-container{
    max-width: 160rem;
    margin: 0 auto;
    padding: 0 1.5rem; 
	font-size:16px;
	background:#008a55;
	color:#fff;
	display:flex;
	box-shadow: 0 4px 40px -8px rgb(0,51,98);
	overflow: hidden;
	text-align: center;
}
.news-container::after{
position: absolute;
content:"";
bottom:0;
left:0;
right:0;
height:10px;
background: linear-gradient(transparent,#003262)
}
.news-container .news-heading{
	font-weight: bold;
	padding-right: 20px;
	margin-right: 20px;
	border-right: 1px solid #fff;
}
.news-container .news{
	position: relative;
	width:100%;
}
.news-container .news-signle{
	color:#fff;
	text-decoration: none;
	font-weight:normal;
	opacity:0;
	position: absolute;
	top:0;
	left:0;
	transform: translateY(-8px);
	transition: all 400ms ease;
}
.news-container .news-signle.active{
	opacity:1;
	transform:translateY(0);
}

.news  a{
    text-decoration: none;
    color: #fff;
    font-weight: 600; 
  }
.news  a:hover{
    color: #E5FFCC;
  }


input,
button {
  font: inherit;
  color: inherit;
  border: none;
  background-color: transparent;
}

i{
    font-size: var(--font-size-md);
}

/* Langaug Butten */
.selected-lang{
    cursor: pointer;
    display: flex;
    justify-content: space-between;;
    line-height: 2;
    width: 100px;
}
.lang-div  a{
    text-decoration: none;
    color: var(--light-color-alt);
    font-weight: 600; 
  }
.lang-div  a:hover{
    color: var(--light-color);
  }

/* parallax */
.parallax {
    /* The image used */
    background-image: url("index.jpg");
    /* Set a specific height */
    min-height: 300px; 
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
.parallax_home {
    /* The image used */
    background-image: url("home.jpg");
    /* Set a specific height */
    min-height: 500px; 

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.scrollToTop {
    bottom: 60px;
    border-radius: 4px;
    display: none;
    font-size: 32px;
    line-height: 45px;
    font-weight: bold;
    height: 40px;
    padding-top:8px;
    position: fixed;
    right: 40px;
    text-align: center;
    text-decoration: none;
    width: 40px;
    z-index: 999;
    color: #fff;    
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    background-color: #008a55;
}
  
.scrollToTop:hover,
.scrollToTop:focus{
  background-color: #fff;
  text-decoration: none;
  outline: none;
  color: #008a55;
  border: 1px solid #008a55; 
}
.container-bodyinfo{
    transition: 0.5s;
    outline: none;
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
} 

.title-area {
    display: inline;
    float: left;
    padding: 0 150px;
    text-align: center;
    width: 100%;
}
.title-area .title, .title-team{	
    font-size: 35px;
    font-weight: 700;
    line-height: 35px;
    text-transform: uppercase;
    color: #008a55;
}
    
.title-area .subtitle {	
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    color: #008a55;
}
    
.title-area .line {
    background-color: #777777;
    display: inline-block;
    height: 2px;
    width: 60px;
    margin-top: 12px;
    margin-bottom: 12px;
}
    
.title-area p {
    color: #777777;
    line-height: 25px;
}
.title-area a{
    text-decoration: none;
    color: #008a55;
    font-weight: 600; 
}
.title-area a:hover{
    color: #008a55;
}
.our-team-content {
    display: grid;
    margin-top: 0px;
    width: 100%;
}
.single-team-member {
    display: inline;
    float: left;
    margin-top: 0px;
    padding: 10px;
    padding-bottom: 10px;
    padding-bottom: 50px;
    position: relative;
    text-align: center;
    width: 100%;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.team-member-name {
  display: inline;
  float: left;
  padding: 25px 0 15px;
  width: 100%;
}
.team-member-name span {
    color: var(--light-color);
    font-size: 13px;
}
.team-member-name p {
    color: var(--light-color);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
}
.single-brand { 
    background-color: #f8f8f8; 
    border: 1px solid #ccc; 
    display: grid;  
    padding-top: 8%;  
    height: 100px; 
    text-align: center;  
    margin-bottom: 25px; 
    width: 90%;
}
.blog-archive-area {
    display: grid;
    width: 100%;
}
.blog-archive-left {
    display: grid;
    float: left;
    width: 100%;
}
.blog-archive-left .blog-news-single {
    margin-bottom: 30px;
}
.blog-news-single {
    display: inline;
    float: left;
    width: 100%;
    padding-bottom: 20px;
}
.blog-news-title {
    display: inline;
    float: left;
    padding: 20px 15px 15px;
    width: 100%;
}
.blog-news-details {
    display: inline;
    float: left;
    padding: 0 15px;
    width: 100%;
}

.blog-news-details a{
    text-decoration: none;
    color: #008a55;
    font-weight: 600; 
}
.blog-news-details a:hover{
    color: #008a55;
}

.blog-news-title h2, .blog-news-title h2 > a {
    color: #008a55;
    font-family: "Lato",sans-serif;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}


.col-xs-12 {
    width: 100%;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

/* Theme color change */
body.light-theme{
    --light-color: #3d3d3d;
    --light-color-alt: rgba(0,0,0,.6);
    --primary-background-color: #fff; /*rgb(188, 252, 212);*/
    --secondary-background-color: #f1f1f1;
    --hover-light-color: #fff;
    --transparent-dark-color: var(--secondary-background-color);
    --transparent-light-color: rgba(0,0,0,.1);
}
/* Reusable classes */
.container{  
    max-width: 160rem;
    margin: 0 auto;
    padding: 0 1.5rem; 
}

.place-items-center{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.section:not(.featured-articles){
    padding-block: 5rem;
}

.d-grid{
    display: grid;
}

.screen-sm-hidden{
    display: none;
}
/* Header */
.header{
    background-color: var(--secondary-background-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.navbar{   
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 1.5rem;
}

.logo{   
   width: 75%; 
}
.qr-code{
    float: right;
    border: 1px dotted black;
    margin: 0px 0px 15px 20px;
}
.menu{
    position: absolute;
    top: 8.5rem;
    right: 1.5rem;
    width: 23rem;
    padding: 1.5rem;
    background-color:var(--secondary-background-color);
    opacity: 0;
    transform: scale(0);
    transition: opacity .25s ease-in;
}
.menu a{
    color: inherit;
    text-decoration: none;
}
.ul-lsitportal{
    padding-left: 30px;
    list-style-type:square
}
.quicksupport {
    color: #008a55;
    display: block;
    float: right;
  }
  .quicksupportlink {
    color: #008a55;
  }
  
  .quicksupport>a:hover,
  .quicksupport>a:focus {
    color: #41b488;
  } 

  a.home-link:hover, a.home-link:active span{
    text-decoration: underline;
    text-decoration-color: #008a55;
    display:inline-block;
    padding-bottom:5px;
}

/*.menu a:hover {
    color: #008a55;
  }*/

.list{  
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.menu > .list{
    flex-direction: column;
}
a.list-link:hover, a.list-link:active span{
    text-decoration: overline;
    text-decoration-color: #008a55;
    display:inline-block;
    padding-bottom:5px;
}


.list > li > a::before {
    background-color: transparent;
    content: "";
    height: 10px;
    left: 0;
    position: absolute;
    top: 0;  
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    width: 0;
  }

.list-link.current{
    text-decoration: overline;
    text-decoration-color: #008a55;
    display:inline-block;
    padding-bottom:5px;
    color: var(--light-color);
}

.close-menu-icon{
    display: none;
}

.btn{
    cursor: pointer;
}


.list-link:hover,
.btn:hover,
.btn:hover span{
    color: var(--light-color);
}

.moon-icon{
    display: none;
}

.light-theme .sun-icon{
    display: none;
}

.light-theme .moon-icon{
    display: block;
}
.light-theme .logo{
    content: url("logo.png")
}
/* Header JavaScript Styles */
.header.activated{
    box-shadow: 0 1px .5rem var(--transparent-light-color); 
}

.menu.activated{
    box-shadow: 1px 1px 1rem var(--transparent-light-color);
    opacity: 1;
    transform: scale(1);
}

.menu-toggle-icon.activated .open-menu-icon{
    display: none;
}

.menu-toggle-icon.activated .close-menu-icon{
    display: block;
}


/* Form JavaScript styles */
.search-form-container.activated{
    opacity: 1;
    transform: scale(1);
}

/* Featured articles */
.featured-articles{
    padding-block: 2rem;
}

.section-header-offset{
    margin-top: 7.4rem;
}

.featured-articles-container,
.featured-content{
    gap: var(--gap);
}

.article{
    position: relative;
    min-height: var(--item-min-height-md);
}

.article-image{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s;
}

.article-category{
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 1rem;
    background-color:var(--primary-background-color);
    font-size: 1rem;
    color: var(--light-color);
    text-transform: uppercase;
    z-index: 10;
}

.article-data-container{
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 2rem 1.5rem;
    background-color: var(--transparent-dark-color);
    z-index: 10;
    transition: background-color .5s;
}
.article-data-container p{
    font-family: 'Lato', sans-serif;
}
.article-data-container a{
    text-decoration: none;
    color: #008a55;
    font-weight: 600; 
}
.article-data-container a:hover{
    color: #008a55;
}
.feat-title {
    font-weight: bold;
    font-size: 20px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    
}
/* Light theme color hover styles */

.article:hover .article-data-spacer{
    background-color: var(--hover-light-color);
}

.article:hover .article-title{
    color: var(--hover-light-color);
}

.article-data{
    display: flex;
    align-items: center;
    gap: var(--gap);
    font-size: var(--font-size-xsm);
    margin-bottom: 1rem;
}

.article-data-spacer{
    width: .5rem;
    height: .5rem;
    background-color: var(--light-color-alt);
    transform: rotate(45deg);
}

.title{
    color: var(--light-color);
}

.article-title{
    font-size: var(--font-size-md);
}


/* Quick read */
.section-title{
    position: relative;
    font-size: var(--font-size-md);
    margin-bottom: 6rem;
}

.section-title::after{
    content: attr(data-name);
    font-size: var(--font-size-lg);
    text-transform: uppercase;
    opacity: .1;
    position: absolute;
    top: 1.5rem;
    left: 2rem;
}


/* Older posts */
.older-posts-grid-wrapper{
    gap: var(--gap);
    margin-bottom: 100px;
}

.older-posts-article-image-wrapper,
.older-posts .article{
    min-height: var(--item-min-height-sm);
}

.older-posts .article{
    background-color: var(--secondary-background-color);
}

.older-posts-article-image-wrapper{
    position: relative;
}

.older-posts-grid-wrapper .article-data-container{
    position: static;
    background-color: transparent;
}

.older-posts-grid-wrapper .article-title{
    margin-bottom: var(--margin-sm);
}
/* inmain */
.inmain {
    position: relative;
    z-index: 2;
    margin-bottom: 150px;
    background-color:var(--primary-background-color);
  }
/* Footer */
.footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 195px;  
    padding-left: 0px;
    background-color: var(--secondary-background-color);
}

.footer-container{
    gap: var(--gap);
}
.footer-menu{
	display: flex;
    flex-direction: column;
    order: 1;
    font-size: 11px;
    padding-top: 10px;
    align-items: center;
}
.footer-menu a{
    text-decoration: none;
    color: var(--light-color-alt);
}
.footer-menu a:hover {
    color: var(--light-color);
}

.footer-menu li {
    display: inline-block;
    padding: 0 5px;
    position: relative;
    line-height: 1;
    border-right: 1px solid var(--light-color-alt);
    
}
.company-data{
    display: flex;
    flex-direction: column;
    order: 1;
    font-size: 11px;
}
.company-data a{
    color: inherit;
    text-decoration: none;
}
.company-data a:hover {
    color: #008a55;

  }
.company-description{
    margin-block: var(--margin-sm);
    max-width: 75%;
}

.social-media{
    margin-bottom: var(--margin-md);
}

.copyright-notice{
    opacity: .8;
}

.footer-list{
    flex-direction: column;
    align-items: flex-start;
}

.footer-title{
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    margin-bottom: var(--margin-sm);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 1rem;
}
  
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
  
::-webkit-scrollbar-thumb {
    background: #3f4254;
}
  
::-webkit-scrollbar-thumb:hover {
    background: #2e303b;
}
  
.gMaps{
    width:100%;
    height:25%;
    border:0;
}

@media screen and (min-width: 700px) {
    .gMaps{
        height:25%;
    }
    .col-lg-4 {
        width: 20%;
    }
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left;
    }
    .col-sm-4 {
        width: 20%;
    }
    .col-md-4 {
        width: 50%;
    }
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        float: left;
    }
    .col-md-12 {
        width: 100%;
    }
    .col-md-2 {
        width: 16.66666667%;
    }
    .col-md-3 {
        width: 25%;
    }
    .footer .col-xs-12{
        width: 100%;
        padding-top: 20px;
    }
    .footer-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .company-data{
        order: 0;
        font-size: 12px;
    }

}

@media screen and (min-width: 768px) {
    .gMaps{
        height:50%;
    }
    .featured-content{
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 5rem repeat(4, 1fr);
    }

    .featured-article{
        grid-column: 3/-1;
        grid-row: 2/4;
    }

    .featured-article-1{
        grid-column: 1/3;
    }
    
    .featured-article-3{
        grid-column: 1/-1;
        grid-row: 4/6;
    }

    .older-posts .article{
        grid-template-columns: 25rem 1fr;
        
    }

    .older-posts-article-image-wrapper{
        height: auto;
    }
}

@media screen and (min-width: 1024px) {
    .gMaps{
        height:50%;
    }
    .menu{
        position: static;
        width: initial;
        padding: initial;
        background-color: transparent;
        opacity: 1;
        transform: scale(1);
    }

    .menu > .list{
        flex-direction: row;
    }
    .screen-lg-hidden{
        display: none;
    }
    .screen-sm-hidden{
        display: block;
    }
    .featured-articles-container{
        grid-template-columns: 1fr 40rem;
    }

    .footer-container{
        grid-template-columns: repeat(5, 1fr);
    }

    .company-data{
        grid-column: span 4;
        font-size: 16px;
    }
    .footer-menu{
        grid-column: span 4;
        font-size: 16px;
    }
    .company-description{
        max-width: 85%;
    }

    .copyright-notice{
        margin-top: auto;
    }
}

@media screen and (min-width: 1200px) {
    .gMaps{
        height:75%;
    }
    .older-posts-grid-wrapper{
        grid-template-columns: repeat(2, 1fr);
    }

}
@media screen and (min-width: 1500px) {
    .gMaps{
        height:75%;
    }
    .featured-article{
        grid-column: 3/-1;
    }
    
    .featured-article-1{
        grid-column: 1/3;
        grid-row: 2/-1;
    }
    .footer .col-lg-4{
        width: 100%;
        padding-top: 20px;
    }
}


/* On screens that are 600px or less, set the background color to olive */
@media screen and (max-width: 600px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4 ,  .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left;
    }
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        float: left;
    }
    .title-area {
        padding: 0 15px;
    }
    .title-area .title, .title-team{	
        font-size: 24px;
        font-weight: 700;
        line-height: 24px;
    }
    .title-area .subtitle {	
        font-size: 20px;
        font-weight: 500;
        line-height: 20px;
    }
    .blog-news-details {
        padding: 0 0px;
    }
    .blog-news-title h2, .blog-news-title h2 > a {
        font-size: 20px;
    }
    .scrollToTop {
        bottom: 20px;
        border-radius: 1px;
        font-size: 16px;
        line-height: 20px;
        height: 25px;
        right: 25px;
        width: 25px; 
        padding-top:1px; 
    }
}