@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  background-color: black;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  font-size: 100%;
}
nav{
  background:transparent;
  padding: 10px 40px;
}
nav ul{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: right;
}
nav ul li{
  padding: 10px 0px 10px 0px;
  cursor: pointer;
}
nav ul li.items{
  position: relative;
  width: fit-content;
  text-align: center;
  margin-left: 2.2rem;
  order: 3;
  font-family: montserrat, sans-serif;
  font-weight: 500;
  font-style: normal;
  transition: 0.6;
}
nav ul li a{
  color: white;
  font-size: 1rem;
  text-decoration: none;
  transition: .4s;
}
nav ul li:hover a{
    color:rgb(139, 139, 139);
}
nav ul li i{
  font-size: 25px;
}
nav ul li.btn{
  display: none;
}
nav ul li.btn.hide i:before{
  content: '\f00d';
}
@media all and (max-width: 1025px){
  nav{
    padding: 5px 30px;
  }
  nav ul li.items{
    width: 100%;
    display: none;
    margin-left: 0rem;
  }
  .logo{
    align-items: center;
    display: block;
  }
  nav ul li.items.show{
    display: block;
  }
  nav ul li.btn{
    display: block;
  }
  nav ul li:hover a{
    color:rgb(139, 139, 139);
  }
}

.main-head{
  background-image: url(images/facittr.jpg);
  height:86vh;
  background-size: cover;
  background-position: center;
  background-color: rgba(0,0,0,0.7);
  background-blend-mode: darken;
  cursor:default;
}

.banner-text{
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: relative;
  color: rgb(255, 255, 255);
  line-height: 1.1;
}

.banner-text h1{
  font-size: 4rem;
  font-family: montserrat, sans-serif;
  font-weight: 550;
  font-style: normal;
  letter-spacing: 2px;
}

.banner-text h3{
  font-size: 2.2rem;
  font-family: montserrat, sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 1.2rem;
  margin-left: .75rem;
  margin-right: .75rem;
}

.btn2{
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  position: relative;
  color: white;
  line-height: 1.7;
  list-style: none;
}

.btn2 button{
  width: 13rem;
  height: 3rem;
  border-radius: 25px;
  background: transparent;
  color: white;
  font-size: 1.4rem;
  font-family: montserrat, sans-serif;
  font-weight: 400;
  font-style: normal;
  border: 2px solid rgb(255, 255, 255);
  transition: 0.3s;
  cursor: pointer;
  margin-top: 1rem;
}
.btn2 button:hover{
  background: rgb(0, 0, 0);
  transform: scale(1.1);
  border: 0px;
}
.btn2 button:hover{filter:invert(100%);}

.faxcons {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  font-size: 1rem;
}

.faxcons h2 {
  color: white;
  font-family: montserrat, sans-serif;
  font-weight: 420;
  font-style: normal;
}

.faxcons li {
  padding: 1rem; 
}

.faxcons a{
  text-decoration: none;
  color: white;
}

.faxcons a i{
  cursor: default;
  margin-bottom: 1rem;
  font-size: 1.9rem;
}

.faxcons a:hover i{
  color:rgb(255, 255, 255);
}

@media all and (max-width: 1025px){

  .faxcons a i {
    margin-bottom: 1.1rem;
  }
  .faxcons-2 h2{
    font-size: medium;
    font-weight: 600;
  }
}

@media all and (max-width: 464px){

  .faxcons a i {
    margin-bottom: 1.1rem;
  }

  .faxcons h2{
    font-size: small;
    font-weight: 500;
  }
}

/*------------------------------------------------------*/

footer{
  margin-top: auto;
}

.footer-content {
  background-color: black;
  display: flex;
  min-width: 100%;
  position: sticky;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
  letter-spacing: .3rem;
}


.socials {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.82rem 0 1.75rem 0;
}

.socials li {
  margin: 0 1.3rem;
}

.socials a{
  text-decoration: none;
  color: white;
}

.socials a i{
  font-size: 1.5rem;
  transition: 0.3s;
}

.socials a:hover i{
  color:rgb(139, 139, 139);
}