@font-face {
  font-family: 'abel-pro';
  src: url('../font/abel-pro/AbelPro-Regular.eot');
  src: url('../font/abel-pro/AbelPro-Regular.eot?#iefix') format('embedded-opentype'),
       url('../font/abel-pro/AbelPro-Regular.svg#AbelPro-Regular') format('svg'),
       url('../font/abel-pro/AbelPro-Regular.ttf') format('truetype'),
       url('../font/abel-pro/AbelPro-Regular.woff') format('woff'),
       url('../font/abel-pro/AbelPro-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'abel-pro-bold';
  src: url('../font/abel-pro-bold/AbelPro-Bold.eot');
  src: url('../font/abel-pro-bold/AbelPro-Bold.eot?#iefix') format('embedded-opentype'),
       url('../font/abel-pro-bold/AbelPro-Bold.svg#AbelPro-Bold') format('svg'),
       url('../font/abel-pro-bold/AbelPro-Bold.ttf') format('truetype'),
       url('../font/abel-pro-bold/AbelPro-Bold.woff') format('woff'),
       url('../font/abel-pro-bold/AbelPro-Bold.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
 	text-decoration: none;
	outline: none;
	list-style: none;
	scroll-behavior: smooth;
	color: #E0DEDE;
	overflow: hidden;
}
body{
	background-image: url("../img/bg.png");
}

:root{
	--size-width: 1512px;
	--size-img1: 1000px;
	--size-img2: 740px;
}

section {
	position: absolute;
  }

  #cf img {
    animation-name: cf3FadeInOut;
    animation-timing-function: ease-in-out;
/* if you only want to cycle a finite amount of times, 
   simply change 'infinite' with # of iterations you need */
    animation-iteration-count: infinite; 
    animation-duration: 12s;
    animation-direction: alternate; /* not strictly necessary */
    position: absolute;
}

#cf img:nth-of-type(1) {
    animation-delay: 12s;
}

#cf img:nth-of-type(2) {
    animation-delay: 8s;
}

#cf img:nth-of-type(3) {
    /* add some delay for the first picture as well */
    animation-delay: 4s;
}

@keyframes cf3FadeInOut {
    /* distributing times evenly */
    0% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* menu start */

.navMenu {
	position: fixed;
  width: 100%;
	top: 0;
	left: 0;
  padding-top:20px;
  padding-left: 60px;
  padding-right: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  }
  .navMenu div{
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-right: 60px;
  }
  .navMenu a {
	color: #0e0d0d;
	text-decoration: none;
	font-family: abel-pro-bold;
	font-size: 1.25em;
	text-transform: uppercase;
	font-weight: 500;
	display: inline-block;
	margin-left: 10px;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
  align-self: center;
  padding-right: 20px;

  }
  
  .navMenu a:hover {
	color: #3a9ffd;
  }
  
  .navMenu a:nth-child(1):hover ~ .dot {
	-webkit-transform: translateX(30px);
	transform: translateX(30px);
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	opacity: 1;
  }
  
  .navMenu a:nth-child(2):hover ~ .dot {
	-webkit-transform: translateX(110px);
	transform: translateX(110px);
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	opacity: 1;
  }
  
  .navMenu a:nth-child(3):hover ~ .dot {
	-webkit-transform: translateX(200px);
	transform: translateX(200px);
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	opacity: 1;
  }
  
  .navMenu a:nth-child(4):hover ~ .dot {
	-webkit-transform: translateX(285px);
	transform: translateX(285px);
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	opacity: 1;
  }
  #navMenuButton{
    display: none;
  }
  #navbarContainer{
    display: none;
  }
/* menu end */

@media only screen and (max-width: 1512px) {

:root{
	--size-width: 96%;
}

}

@media only screen and (max-width: 1000px) {

img{
	width: 100%;
  height: 100vh;
  object-fit: cover;
}

}
@media only screen and (max-width: 760px) {

:root{
	--size-img2: 100%;
}
#navItems{
  display: none;
}
#navMenuButton{
  display: flex;
  align-self: center;
  cursor: pointer;
}
#navbarContainer{
    position: absolute;
    top: 0;
    right: 0;
    flex-direction: column;
    width: 70%;
    height: 100vh;
    background-color: rgb(0,0,0,.3);
    z-index: 9
}
#navItemsSidebar{
  display: flex;
  flex-direction: column;
  text-align: center;
}

}