/* Levy Pilotte News CSS */

/* Colors: Green - #1ad81a; Blue - #165269; Hover - #14a914; */

html, body {
  height:100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

* {
    font-family: 'Helvetica';
}


/*Fade in page */
#pagefade {

    -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 1s; /* Firefox < 16 */
        -ms-animation: fadein 1s; /* Internet Explorer */
         -o-animation: fadein 1s; /* Opera < 12.1 */
            animation: fadein 1s; 
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#navbardiv {
    -webkit-animation: slide-in-top 1.3s cubic-bezier(1.000, 0.000, 0.000, 1.000) both;
	        animation: slide-in-top 1.3s cubic-bezier(1.000, 0.000, 0.000, 1.000) both;
}
@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}


#maintitle1, #maintitle2 {
	-webkit-animation: tracking-in-expand 1.6s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: tracking-in-expand 1.6s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}
@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}


#slideshow div {
	-webkit-animation: slide-in-right 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-right 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}


#welcomediv {
	-webkit-animation: slide-in-bottom 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-bottom 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: 0.3s;
}
@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}




/* Content */

#pagefade {
    position: relative;
    width: 100%;
    height: 100%;
}

#navbargrid {
    position: relative;
    width: 1200px;
    height: 50px;
    margin: auto;
    margin-bottom: 1px;
}

#navbardiv {
    position: fixed;
    height: 50px;
    width: 1200px;
    border-bottom: 1px solid rgb(125,125,125,0.2);
    margin: auto;
    z-index: 999;
    background-color: white;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
}
#navbardiv:hover {
    box-shadow: 0 0 30px rgb(125,125,125,0.6);
}

#lplogo {
    position: absolute;
    top: 0px;
    width: 175px;
    height: 50px;
}

#mainmenu {
    position: relative;
    width: 60%;
    height: 100%;
    margin: auto;
    text-align: center;
}
#mainmenu a {
    position: relative;
    top: 15px;
    text-decoration: none;
    color: rgb(0,0,0,0.7);
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.2s;
    font-weight: 500;
    padding: 20px;
}
#mainmenu a:hover {
    color: #165269;
} 

.activelink {
    color: #165269 !important;
}

#menuhr {
    position: absolute;
    top: 41px;
    left: 170px;
    width: 70px;
    border: none;
    height: 3px;
    background-color: #165269;
    transition: all 0.3s;
}

#iconbar {
    position: absolute;
    top: 15px;
    right: 0px;
}
#iconbar i {
    position: relative;
    font-size: 22px;
    margin-left: 10px;
    margin-right: 5px;
    color: rgb(125,125,125,0.8);
    
}

#fb:hover {
    color: #3B5998;
}
#tw:hover {
    color: #1DA1F2;
}
#lin:hover {
    color: #0077B5;
}
#lang {
    color: #1ad81a !important;
    cursor: pointer;
}
#lang:hover {
    color: #165269 !important;
}

#langdrop {
    position: relative;
    top: 13px;
    left: 65px;
    height: 40px;
    width: 80px;
    visibility: hidden;
    background-color: white;
}
#langdrop img {
    position: relative;
    top: 5px;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    border-radius: 90%;
    cursor: pointer;
}

#lpdiv {
    position: absolute;
    top: 7px;
    left: 960px;
    font-size: 17px;
    font-weight: 600;
    color: #165269;
    padding: 7px;
    padding-bottom: 15px;
}
#lphr {
    position: absolute;
    width: 100%;
    top: 20px;
    left: 0px;
    border: none;
    background-color: #165269;
    height: 2px;
    transition: all 0.2s;
}

#lplink {
    position: relative;
    color: #165269;
    text-decoration: none;
    transition: all 0.2s;
}
#lpdiv:hover #lplink {
    color: #1ad81a;
} 
#lpdiv:hover #lphr {
    background-color: #1ad81a;
} 

#lpdrop {
    position: absolute;
    top: 36px;
    left: -46.5px;
    background-color: white;
    width: 130px;
    height: 10px;
    text-align: center;
    visibility: hidden;
    transition: all 0.3s;
    overflow: hidden;
    padding-top: 2px;
}
#lpdrop a {
    position: relative;
    top: -100px;
    display: block;
    margin-top: 20px;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    color: #165269;
    opacity: 0;
    transition: color 0.2s;
}

#lpdiv:hover #lpdrop {
    visibility: visible;
    transition: all 0.3s;
    height: 150px;
}
#lpdiv:hover #lpdropli {
    top: 0px;
    transition: 0.2s;
    opacity: 1;
}

#lpdrop a:hover {
    color: #1ad81a;
}

#subhr {
    position: relative;
    opacity: 0;
    transition: 0.2s;
    width: 50%;
    top: -100px;
    border: none;
    height: 1px;
    background-color: rgb(125,125,125);
}

#lpdiv:hover #subhr {
    opacity: 1;
    transition: 0.2s;
    top: 5px;
}




/* Bg Section */

#bgsection {
    position: relative;
    width: 100%;
    height: 300px;
    background-image: url(../images/newsbg.jpg);
    background-size: cover;
    object-fit: cover;
}

#bggrid {
    position: relative;
    width: 1200px;
    height: 100%;
    margin: auto;
}

#bgbar {
    position: relative;
    top: 260px;
    width: 100%;
    height: 80px;
    background-color: #1ad81a;
}

#bggrid h1 {
    position: absolute;
    color: white;
    top: 180px;
    font-size: 40px;
    margin-left: 10px;
}

#bgbar h2 {
    position: absolute;
    font-size: 30px;
    color: white;
    top: 12px;
    margin: 0px;
    margin-left: 10px;
    font-weight: 200;
}


/* Section 1 */

#section1a {
    position: relative;
    width: 100%;
    height: 140px;
    background-color: white;
}

#s1grid {
    position: relative;
    top: 20px;
    width: 1200px;
    height: 100%;
    margin: auto;
}
#s1wordsdiv {
    position: relative;
    top: 30px;
    text-align: left;
}

#s1descript {
    position: relative;
    width: 600px;
    color: rgb(125,125,125);
    font-size: 18px;
    line-height: 1.3;
}

#s1hr1 {
    position: relative;
    top: 50px;
    border: none;
    height: 2px;
    background: linear-gradient(to right, #fff, #c9c9c9, #fff);
    background: linear-gradient(to right, #fff, #c9c9c9, #fff);
    box-shadow: 0 px 3px 10px rgba(100, 100, 100, .7);
}

#section1b {
    position: relative;
    width: 100%;
    height: auto;
    background-color: rgb(240,240,240);
}

#s1grid2 {
    position: relative;
    width: 1200px;
    height: auto;
    margin: auto;
    overflow: hidden;
}

#s1title {
    position: absolute;
    font-size: 27px;
    color: #165269;
    font-weight: 400;
}

#subwordsdiv {
    position: relative;
    height: auto;
    width: 100%;
}

#s1words {
    position: relative;
    color: rgb(100,100,100);
    font-weight: 300;
    font-size: initial;
}

#s1words span {
    color: #165269;
    font-size: 17px;
    font-weight: 600;
}







#section2 {
    position: relative;
    height: 200px;
    width: 100%;
}
#s2grid {
    position: relative;
    width: 1200px;
    height: 100%;
    margin: auto;
}

#s2hr hr {
    position: relative;
    top: 30px;
    width: 80%;
    border: none;
    height: 2px;
    border-bottom: 2px;
    background: linear-gradient(to right, rgb(245,245,245), #c9c9c9, rgb(245,245,245));
    box-shadow: 0 8px 6px -6px black;
}


/* Next Page Div */

#nextprevdiv {
    position: relative;
    top: 80px;
    left: 0px;
    width: 100%;
    height: 60px;
}

#prevdiv {
    position: absolute;
    top: 0px;
    background-color: #1ad81a;
    width: 170px;
    height: 60px;
    transition: 0.2s;
    cursor: pointer;
}
#nextdiv {
    position: absolute;
    right: 0px;
    background-color: #1ad81a;
    width: 170px;
    height: 60px;
    transition: 0.2s;
    cursor: pointer;
}
#nextdiv:hover {
    background-color: #14a914;
}
#prevdiv:hover {
    background-color: #14a914;
}

#nextdiv:hover #rightarr {
    right: -20%;
}
#prevdiv:hover #leftarr {
    left: -20%;
}

#leftarr {
    position: absolute;
    top: 30%;
    left: 10%;
    color: white;
    transition: 0.5s;
}
#rightarr {
    position: absolute;
    top: 30%;
    right: 10%;
    color: white;
    transition: 0.5s;
}

#prevdiv p {
    position: absolute;
    color: white;
    top: 11px;
    left: 30%;
    margin: 0;
    text-align: right;
}
#nextdiv p {
    position: absolute;
    color: white;
    top: 11px;
    right: 35%;
    margin: 0;
    text-align: left;
}


/* Top Btn */

#myBtn {
    opacity: 0; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #1ad81a; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
    transition: all 0.9s;
    text-transform: uppercase;
    margin: -100px;
    overflow: hidden;
}

#myBtn:hover {
    background-color: #14a914; 
    transition: all 0.3s;
}
#up {
    height: 20px;
    width: 35px;
}





/* Footer */

#footer {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url(../images/footerimg.jpg);
    background-size: cover;
    object-fit: cover;
}
#footeropaque {
    position: relative;
    background-color: rgb(0,0,0,0.8);
    width: 100%;
    height: 100%;
}

#footergrid {
    position: relative;
    width: 1200px;
    height: 100%;
    text-align: center;
    overflow: hidden;
    margin: auto;
}

#frlogo {
    position: relative;
    top: 20px;
    color: white;
    font-size: 25px;
    width: 70px;
    height: 80px;
}

#frdivright {
    position: absolute;
    top: 100px;
    width: 300px;
    height: 170px;
    right: 0px;
    text-align: right;
    color: white;
}
#frdivright p {
    line-height: 1.6em;
}

#frdivleft {
    position: absolute;
    top: 100px;
    width: 600px;
    height: 170px;
    left: 0px;
    text-align: left;
    line-height: 1.6;
}

#adminlinks a {
    position: relative;
    top: 50px;
    color: white;
    text-decoration: none;
    margin-right: 15px;
}
#adminlinks a:hover {
    color: rgb(255,255,255,0.4);
    transition: all 0.2s;
}

#socials a {
    position: relative;
    top: 36px;
    text-decoration: none;
    color: white;
    margin-right: 20px;
    transition: all 0.2s;
}

#socials {
    position: relative;
    top: 0px;
}

.fb:hover {
    color: #3b5998;
    transition: all 0.2s;
}
.tw:hover {
    color: #1da1f2;
    transition: all 0.2s;
}
.li:hover {
    color: #007bb5;
    transition: all 0.2s;
}
.ig:hover {
    color: #7232bd;
    transition: all 0.2s;
}

#frdescript {
    position: relative;
    top: 0px;
    color: white;
    font-size: 16px;
    line-height: 1.6;
}


#bottomhr {
    position: relative;
    width: 90%;
    height: 1.5px;
    top: 250px;
    border: none;
    background: radial-gradient(#bbb 5%, transparent 70%, transparent 10%);
    z-index: 100;
}

#bottominfodiv {
    position: relative;
    top: 250px;
    text-align: center;
}
#bottominfo {
    position: relative;
    color: white;
}

#sedesign {
    position: relative;
    color: white;
    text-decoration: none;
    font-weight: 100;
}

#sedesign:hover {
    color: #299ecc;
}








