/*----------------------------------------------------------------*/
/*---------------------------- GENERAL ---------------------------*/
/*----------------------------------------------------------------*/

html{
    color: rgb(255, 255, 255);
    font-family: 'Raleway', sans-serif;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #252525; 
}
::-webkit-scrollbar-thumb {
    background: #444; 
}
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

body{
    background-color: #1b1b1b;
    color: white;
    margin: 0
}

h1{
    font-size: 400%;
    text-align: center;
}
h2{
    font-size: 200%;
    text-align: center;
}
h3{
    font-size: 150%;
    text-align: center;
}
/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/



/*----------------------------------------------------------------*/
/*---------------------------- INTRO -----------------------------*/
/*----------------------------------------------------------------*/

header{
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.intro{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
}

.greetings{ /*Hi, I am*/
    color: #FF9E45;
}

.txt-rotate{ /*Typing text*/
    color: #EF7300;
}

.txtintro{
    margin: 0;
    margin-top: 10px;
}



.secondbg{
    background-color: #2e2116;
    width: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.scroll{
    font-size: 150%;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.671);
    z-index: 3;

}

.scrollanim{

    -webkit-animation: ca3_fade_move_down 2s ease-in-out infinite;
    -moz-animation:    ca3_fade_move_down 2s ease-in-out infinite;
    animation:         ca3_fade_move_down 2s ease-in-out infinite;
}
/*animated scroll arrow animation*/
@-webkit-keyframes ca3_fade_move_down {
    0%   { -webkit-transform:translate(0,-10px); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { -webkit-transform:translate(0,10px); opacity: 0; }
}
@-moz-keyframes ca3_fade_move_down {
    0%   { -moz-transform:translate(0,-10px); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { -moz-transform:translate(0,10px); opacity: 0; }
}
@keyframes ca3_fade_move_down {
    0%   { transform:translate(0,-10px); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { transform:translate(0,10px); opacity: 0; }
}


.centerbottom{
    font-size: 150%;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.scrollbox{
    width: 50px;
    height: 50px;
    z-index: 1;
    background-color: rgb(34, 34, 34);
    transform: rotate(45deg);
}












.caroussel{
    background-image: url("http://www.bianoti.com/wp-content/uploads/2015/12/fonds-ecran-crepuscule-6.jpg");
    backdrop-filter: blur(20px);
    height: 100vh;
    background-size: cover;
    background-position: center;
    
    filter: blur(5px);
}

.carbg{
    filter: blur(8px);
    -webkit-filter: blur(8px);
    backdrop-filter: blur(20px);
}

.cartop{
    
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
} 

.mySlides2 {
    display: none;
    
}
.firstpic{
    display: block;
}

img {
    vertical-align: middle;
    border-radius: 10px;
}


/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a grey background color */
.prev:hover, .next:hover {
  backdrop-filter: blur(10px);
  background-color: #00000054;
  color: rgb(255, 255, 255);
}





















































/*----------------------------------------------------------------*/
/*---------------------------- NAVBAR ----------------------------*/

.navbar{
  text-align: right;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.068);
  backdrop-filter: blur(20px);
  z-index: 9999;
  
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.logo{
  position: absolute;
  left: 5%;
  margin-top: 3px;
  height: 45px;
  width: auto;
  float: left;
}

.navbar a{
  display: block;
  list-style: none;
  border-bottom: 3px solid rgba(0, 0, 0, 0);
}



.navbar li a:link,
.navbar li a:visited{
  color: #cccccc;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 90%;
  transition: border-bottom 0.2s;
  padding-bottom: 5px;
}

.navbar li {
  display: inline-block;
  margin-top: 20px;
  padding-bottom: 5px;
  margin-right: 40px;
}

.navbar li:last-child{
  padding-right: 5%;
}

.navbar li a:hover,
.navbar li a:active{
  border-bottom: 3px solid #cf6d17;
}

