/* Custom CSS by Muf Tayebaly
-------------------------------------------------- */

:root {
  --blue: #344463;
  --green: #0cad98;
  --cashmere: #cbc5c1;
  --grey-blue: #b8c3d6;
  --off-white: #f5f2f0;
  --charcoal: #3e3d3b;
}
@font-face {
  font-family: 'OpenSans';
  src: url('../fonts/OpenSans/OpenSans-Regular.ttf') format('truetype');
  font-weight: normal;
}
@font-face {
  font-family: 'OpenSans';
  src: url('../fonts/OpenSans/OpenSans-Light.ttf') format('truetype');
  font-weight: 300;
}
@font-face {
  font-family: 'OpenSans';
  src: url('../fonts/OpenSans/OpenSans-Bold.ttf') format('truetype');
  font-weight: bold;
}
@font-face {
  font-family: 'OpenSans';
  src: url('../fonts/OpenSans/OpenSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
}
@font-face {
  font-family: 'OpenSans';
  src: url('../fonts/OpenSans/OpenSans-ExtraBold.ttf') format('truetype');
  font-weight: 700;
}
@font-face {
  font-family: 'RobotoC';
  src: url('../fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf') format('truetype');
  font-weight: normal;
}
@font-face {
  font-family: 'RobotoC';
  src: url('../fonts/Roboto_Condensed/RobotoCondensed-Light.ttf') format('truetype');
  font-weight: 300;
}
@font-face {
  font-family: 'RobotoC';
  src: url('../fonts/Roboto_Condensed/RobotoCondensed-Bold.ttf') format('truetype');
  font-weight: bold;
}
html{
  font-size:16px;
}
body{
  background: radial-gradient(ellipse at top left, var(--off-white), transparent);
}

hr {
 margin-top: 1rem;
 margin-bottom: 1rem;
 border: 0;
 border-top: 1px solid rgba(0, 0, 0, 0.1);
}

h1{
  font-family: 'RobotoC',Arial,sans-serif;
  font-size: 5rem;
  font-weight: 800;
  background: -webkit-linear-gradient(45deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  line-height:4.77rem;
}
h2 {
  font-family: 'RobotoC',Arial,sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color:var(--charcoal);
  line-height:3.2rem;
  text-transform: uppercase;
  opacity:0.5;
}

main > .container {
  padding: 60px 15px 0;
}

p{
  color: var(--charcoal);
  font-size:1.2rem;
  opacity:0.75;
}

.vert-align{
  position: absolute;
  top: 46%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*---main page ---*/
.pageSlide{
  position:absolute;
  height:100vh;
  background-color:var(--blue);
  width:100%;
  z-index:9999;
}

.pageSlideCurt{
  position:absolute;
  height:100vh;
  background-color:var(--grey-blue);
  width:100%;
  z-index:9998;
  opacity:0.4;
}
.img{
  position:absolute;
  width:300px;
  bottom:0;
  right:50px;
}
.img img{
  width:100%;
  height:auto;
}

.btn-res{
  position:relative;
  background: transparent;
  float: left;
  border:0px;
  color: var(--blue);
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition: all 0.3s ease;
  padding:8px 0px;
}
.btn-res:before{
  content: '';
  position:absolute;
  left:0px;
  bottom:0px;
  background-color: var(--grey-blue);
  height:2px;
  width:40px;
  transition: all 0.3s ease;
}
.btn-res:hover{
  color: var(--blue);
}
.btn-res:hover:before{
  width: calc(100% + 2px);
  background-color: var(--green);
}
.text-muted{
  font-size:13px;
  color: var(--cashmere) !important;
}


@media (max-width: 1199px) {

}
@media (max-width: 991px) {
  html{
    font-size:15px;
  }
}
@media (max-width: 767px) {
  html{
    font-size:14px;
  }
  .vert-align{
    position:relative;
    margin-top:20px;
  }
  .img{
    position:absolute;
    width:170px;
    bottom:0;
    right:10px;
  }
  p{
    width:50%;
  }
}
@media (max-width: 621px) {

}
