@font-face {
    font-family: monument;
    src: url(Monument.ttf);
 }

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #1d3752;
    color: rgb(255, 255, 255);
}

.h2 {
font-family: "monument", sans-serif;
}

.w3-row-padding img {margin-bottom: 12px}

.bgimg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('cover.jpg');
    min-height: 100%;
}

.w3-jumbo{
  width: 350px;
  height: 100px;
  background-position: center;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: right;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    font-family: "monument", sans-serif;
    text-transform: uppercase;
    transition: transform 0.1s linear;
  }
  
  Change the color of links on hover 
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Add an active class to highlight the current page 
  .topnav a.active {
    background-color: #04AA6D;
    color: white;
  }*/
  
  /* Hide the link that should open and close the topnav on small screens */
  .topnav .icon {
    display: none;
  }

  /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
      float: right;
      display: block;
    }
  }
  
  /* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
  @media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
}

/**/
.menu__item {
	position: relative;
  font-family: "monument", sans-serif;
}

.menu__item-link {
	display: inline-block;
	cursor: pointer;
	position: relative;
	color: whitesmoke;
	transition: opacity 0.4s;
  /*text-transform: uppercase;*/
  
}

.menu__item-link::before {
	all: initial;
	font-family: "monument", sans-serif;
	counter-increment: menu;
	position: absolute;
	bottom: 60%;
	left: 0;
	pointer-events: none;
  
}

.menu__item-link:hover {
	transition-duration: 0.1s;
	opacity: 0;
}

.menu__item-img {
	pointer-events: none;
	position: absolute;
	height: 50vh;
	max-height: 400px;
	opacity: 0;
	left: 100%;
	top: 50%;
	transform: translate3d(calc(-100% - 6vw),-30%,0) translate3d(0,20px,0);
}

.menu__item-link:hover + .menu__item-img {
	opacity: 1;
	transform: translate3d(calc(-100% - 6vw),-30%,0) rotate3d(0,0,1,4deg);
	transition: all 0.4s;

}

.menu {
	padding: 10vh 0 25vh;
	--offset: 20vw;
	--move-initial: calc(-25% + var(--offset));
	--move-final: calc(-50% + var(--offset));
	font-size: 7v1;
}

.marquee {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	color: #7da7d9;
	pointer-events: none;
	mix-blend-mode: difference;
  /*text-transform: uppercase;*/
}

.marquee__inner {
	width: fit-content;
	display: flex;
	position: relative;
	animation: marquee 5s linear infinite;
	animation-play-state: paused;
	opacity: 0;
	transition: opacity 0.1s;
    
}

.menu__item-link:hover ~ .marquee .marquee__inner {
	animation-play-state: running;
	opacity: 1;
	transition-duration: 0.4s;
}


.menu__item-link,
.marquee span {
	white-space: nowrap;
	
	padding: 50px 1vw;
	font-weight: 900;
	line-height: 1.15;
  font-size: 4.2vw;
}

.marquee span {
	font-style: italic;
  font-size: 6vw;
}

@keyframes marquee {
	0% {
		transform: translate3d(var(--move-initial), 0, 0);
	}

	100% {
		transform: translate3d(var(--move-final), 0, 0);
	}
}

.about{
  margin: 0 15px 0 0;
  display: inline-block;
}

.infoaboutwide h2{
  font-family:"monument", sans-serif;
  text-transform: uppercase;
  padding-top: 10px;
}

.infoaboutwide p{
  font-family: 'Montserrat', sans-serif;
  display: inline;
  text-align: justify;
}

.infoaboutsmall{
  float:left;
}

.infoaboutsmall h2{
  font-family:"monument", sans-serif;
  text-transform: uppercase;
  padding-top: 10px;
  text-align: center;
}

.infoaboutsmall p{
  font-family: 'Montserrat', sans-serif;
  display: inline;
  text-align: center;
}

.info-about-image {
  margin: 0 10px 0 0;
  float: left;
  overflow: hidden;
  flex-basis: 40%
}

.info-about-image img{
  max-width: 100%;
  height: 320px;
  display: block;
}

.info-about-image2 img{
  display: block;  
margin-left: auto;  
margin-right: auto;
}



#myBtn {
  display: none; /* 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: #5260e6; /* 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 */
  font-family: "monument", sans-serif;
}

#myBtn:hover {
  background-color: #7da7d9; /* Add a dark-grey background on hover */
}

.portfolio-title{
  text-align: center; 
  font-family:"monument", sans-serif;
  text-transform: uppercase;
}

.contact h2{
  text-align: center; 
  font-family:"monument", sans-serif;
  text-transform: uppercase;
}

/* Style buttons */
.btn {
  background-color: transparent;
  border: 2px solid ;
  border-color: #f2f2f2;
  color: white;
  padding: 8px 25px;
  cursor: pointer;
  font-size: 13px;
  text-align: center; 
  font-family:"monument", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  display: inline;
}


.btn a{
  text-decoration: none;
}

/* Darker background on mouse-over */
.btn:hover {
  background-color: #2980b9;
}

footer a{
  text-decoration: none;
}

.contact-section{
  margin-top: 10px;
  padding: 10px 0;
  
  }
  .contact-section h2{
    text-align: center; 
    font-family:"monument", sans-serif;
    text-transform: uppercase;
    padding-top: 0px;
  }
 
  .contact-form{
    max-width: 600px;
    margin: auto;
    padding: 0 10px;
    overflow: hidden;
  background: none;
  }
  
  .contact-form-text{
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 16px 0;
    border:none;
    border: 1px solid #ccc;
    background: none;
    padding: 20px 40px;
    outline: none;
    transition: 0.5s;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
  }
  
  .contact-form-text:focus{
    background: #fff;
    color: #262626;
    font-size: 14px;
  }
  textarea.contact-form-text{
    resize: none;
    height: 120px;
  }
  .contact-form-btn{
    float: right;
    border: 0;
    background: #7da7d9;
    color: #fff;
    padding: 12px 50px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.5s;
    font-family:"monument", sans-serif;
    text-transform: uppercase;
  }
  .contact-form-btn:hover{
    background: #2980b9;
  }

  ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #0000003f;
    border-radius: 10px;
}