/* Levy Pilotte Team 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 1.5s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 1.5s; /* Firefox < 16 */
        -ms-animation: fadein 1.5s; /* Internet Explorer */
         -o-animation: fadein 1.5s; /* Opera < 12.1 */
            animation: fadein 1.5s; 
}

@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/teambg.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;
    z-index: 100;
}

#bgbar h2 {
    position: absolute;
    font-size: 40px;
    color: white;
    top: 16px;
    margin: 0px;
    margin-left: 10px;
    font-weight: 200;
}


/* 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;
}



/* Section 1 */

#section1 {
    position: relative;
    width: 100%;
    height: 600px;
}
#s1grid {
    position: relative;
    width: 1200px;
    height: 100%;
    margin: auto;
}

#partnerdiv {
    position: relative;
    margin-top: 40px;
    width: 100%;
    height: 596px;
    border-top: 2px solid #165269;
    border-bottom: 2px solid #165269;
}

#imgdiv {
    position: relative;
    width: 50%;
    height: 100%;
}

#imgdiv img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 50;
}

#infodiv {
    position: absolute;
    top: 0px;
    left: 50%;
    width: 50%;
    height: 100%;
}
#infodiv h2 {
    position: absolute;
    top: 30px;
    left: 80px;
    font-size: 43px;
    color: #165269;
    font-weight: 200;
}
#infodiv h4 {
    position: absolute;
    top: 80px;
    left: 80px;
    font-size: 30px;
    color: #1ad81a;
    font-weight: 100;
}
#infodiv span {
    font-size: 20px;
}

#prev {
    position: absolute;
    top: 215px;
    font-size: 13px;
    left: 80px;
    color: #165269;
    font-weight: 100;
    text-decoration: none;
}


#next {
    position: absolute;
    top: 215px;
    font-size: 13px;
    right: 0px;
    color: #165269;
    font-weight: 100;
}

#hr1 {
    position: absolute;
    border: none;
    height: 1.4px;
    width: 520px;
    top: 235px;
    left: 80px;
    background-color: rgb(109,132,147,0.3);
}

#innerinfo {
    position: absolute;
    top: 260px;
    left: 80px;
    width: 520px;
    height: 330px;
    overflow-y: scroll;
}


#innerinfo h6 {
    position: absolute;
    top: 20px;
    left: 0px;
    font-size: 22px;
    color: #1ad81a;
    margin: 0;
    
}

#innerinfo p {
    position: absolute;
    top: 100px;
    line-height: 1.5;
    margin: 0;
    color: #6d8493;
}

#innerinfo i {
    position: absolute;
    top: 217px;
    margin: 0;
}


#innerinfo a {
    position: relative;
    color: #6d8493;
    left: 30px;
    text-decoration: none;
    line-height: 1.9;
}

#longinfo {
    position: absolute;
    top: 400px;
    width: 100%;
    height: 500px;
}
#longinfo h4 {
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 22px;
    font-weight: 600;
}
#longinfo p {
    position: relative;
    top: 70px;
    width: 90%;
    line-height: 1.5;
    margin: 0;
    color: #6d8493;
}
#longinfo a {
    color: #6d8493;
    text-decoration: underline;
    line-height: 1.9; 
    left: 0px;
}

#profile {
    position: relative;
    top: 120px !important;
}
#profileinfo {
    position: relative;
    top: 140px !important;
    width: 90%;
}



/* width */

#innerinfo::-webkit-scrollbar {
    width: 5px;
}

/* Track */
#innerinfo::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
 
/* Handle */
#innerinfo::-webkit-scrollbar-thumb {
    background: #888; 
    border-radius: 115px;
}

/* Handle on hover */
#innerinfo::-webkit-scrollbar-thumb:hover {
    background: #555; 
}



#s2hr hr {
    position: relative;
    top: 340px;
    width: 80%;
    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);
}


/* Next Page Div */

#nextprevdiv {
    position: relative;
    top: 400px;
    left: 0px;
    width: 100%;
    height: 60px;
}

#prevdiv {
    position: absolute;
    left: 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: 24%;
    margin: 0;
    text-align: left;
}






/* 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;
}








