@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600);

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Poppins';
  font-weight: 300;
  background: #FDFDFD;
}

.container {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

body.menu-active .container {
  transform: scale(0.9);
}

.container .inner {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.nav {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  margin: 0;
  padding: 0 25px;
  box-sizing: border-box;
  z-index: 99;
}

.nav a {
  display: inline-block;
  height: 75px;
  line-height: 75px;
  font-size: 30px;
  padding: 0 25px;
  color: #212121;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  
  transition: all 0.32s ease;
}

body:not(.menu-active) .nav a.menu-activator:hover {
  transform: rotate(90deg);
}

body.menu-active .nav a.menu-activator {
  transform: rotate(90deg);
}

.nav a.white {
  color: #FAFAFA;
}

body.menu-active .nav a.white {
  color: #212121;
  transition: all 0.15s ease;
}

.nav a.link {
  float: right;
  position: relative;
  text-align: center;
}

.nav a.link i {
  position: absolute;
  display: block;
  transform: translateX(-50%);
  
  transition: all 0.32s ease;
}

.nav a.link i.hidden {
  opacity: 0;
  pointer-events: none;
}

.nav a.link:hover i {
  opacity: 0;
  pointer-events: none;
}

.nav a.link:hover i.hidden {
  opacity: 1;
  pointer-events: auto;
}

.nav i.ion-cube {
  display: inline-block;
  position: absolute;
  height: 75px;
  line-height: 75px;
  font-size: 35px;
  left: 50%;
  transform: translateX(-50%);
}

.container .inner .panel {
  position: relative;
  box-sizing: border-box;
  height: 100%;
  width: 60%;
  float: left;
  transform: skew(-20deg);
}

.container .inner .panel.panel-left {
  margin-left: -10%;
}

.panel.panel-left{
    background-image: url('./images/Stripes.png');
    background-size: 180%;
    background-repeat: no-repeat;
    background-position: center left 180px;
}

.panel-left .panel-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 20%;

}

.panel-left .panel-content h1 , .panel-left .panel-content h3 {
    line-height: 0px;
}


.panel-left .panel-content h1{
    font-size: 70px;
    font-weight: 800;
    color: #001F55;
}

.panel-left .panel-content h3{
    font-size: 22px;
    font-weight: 300;
    color: #001F55;
}

.panel-left .panel-content  h1 span {
    font-size: 70px;
    background: linear-gradient(
        to right, 
        #A4E56D 0%, 
        #5CD2AA 50%, 
        #59D1AE 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.container .inner .panel .panel-content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) skew(20deg);
}

/* .container .inner .panel.panel-left .panel-content .image-background {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  opacity: 0.95;
  background-image: url("./images/Stripes.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 50%;
  transform: translateX(-50%) translateY(-50%);
} */

.container .inner .panel.panel-right {
  margin-right: -10%;
  background: #001F55;
}

.container .inner .panel.panel-right .panel-content .form {
  display: block;
  position: absolute;
  margin: 0 auto;
  width: 300px;
  min-height: 400px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-25%);
}

.container .inner .panel.panel-right .panel-content .form h1 {
  display: block;
  margin: 0 0 45px 0;
  color: #B1B1B1;
  font-weight: 200;
  font-size: 18px;
}

.group { 
  position: relative; 
  margin-bottom: 25px; 
}

input {
  font-size: 13px;
  height: 25px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 300px;
  border: none;
  outline: none;
  border-bottom: 1px solid #B1B1B1;
  color: #B1B1B1;
  background: rgba(0,0,0,0);
  opacity: 0.5;
  transition: 0.2s ease;
}

input:focus {
  outline: none;
  opacity: 1;
}

textarea {
    font-size: 13px;
    height: 25px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 300px;
    border: none;
    outline: none;
    border-bottom: 1px solid #B1B1B1;
    color: #B1B1B1;
    background: rgba(0,0,0,0);
    opacity: 0.5;
    transition: 0.2s ease;
  }
  
 textarea:focus {
    outline: none;
    opacity: 1;
  }
  

.row .group input{
    width: 150px;
}

label {
  color: #B1B1B1; 
  font-size: 13px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 15px;
  opacity: 0.5;
  transition: 0.2s ease all; 
  -moz-transition: 0.2s ease all; 
  -webkit-transition: 0.2s ease all;
}


input:focus ~ label, input:valid ~ label 		{
  top: -10px;
  font-size: 12px;
  color: #B1B1B1;
  opacity: 1;
}

textarea:focus ~ label, input:valid ~ label 		{
    top: -10px;
    font-size: 12px;
    color: #B1B1B1;
    opacity: 1;
  }
  

.highlight {
  position: absolute;
  height: 60%; 
  width: 100px; 
  top: 25%; 
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}


input:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}


@-webkit-keyframes inputHighlighter {
  from { background:#B1B1B1; }
  to 	{ width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
  from { background:#B1B1B1; }
  to 	{ width:0; background:transparent; }
}
@keyframes inputHighlighter {
  from { background:#B1B1B1; }
  to 	{ width:0; background:transparent; }
}

.send-btn {
  float: right;
  color: #B1B1B1;
  transition: 0.2s ease;
  background-color: transparent;
  font-size: 16px;
  border: none;
  font-family: "Poppins";
  margin-right: -50px; 
}

.send-btn:hover {
  color: #FAFAFA;
  cursor: pointer;
}

.menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  
  transition: all 0.33s ease;
}

body.menu-active .menu::before {
  background: rgba(240,240,240,0.9);

}

.menu::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.45s ease;
}

body.menu-active .menu {
  left: 0;
}





.logo{
    width: 120px;
    display: inline-block;
    position: absolute;
    padding-top: 15px;
    /* left: 50%;
    transform: translateX(100%); */
}


.row {
    display: flex;
    gap: 20px; 
}

.row .group {
    display: flex;
    flex-direction: column;
    flex: 1;

}

.message textarea{
    width: 335px !important;
}




.menu h4{
  padding-top:150px;
  transform: translateZ(1px);
}

.menu h4 , p{
    padding-left: 70px;
    color: #001F55 !important;
    transform: translateZ(1px);
}

.menu a {
  text-decoration: none;
  background: linear-gradient(
        to right, 
        #A4E56D 0%, 
        #5CD2AA 50%, 
        #59D1AE 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer{
  display: flex;
  background-color: #F7F7F7;
  margin-top: -56px;
}

footer a{
  display: flex;
  align-items: center;
  font-family: 'Poppins';
  font-size: 14px;
  gap: 5px;
  text-decoration: none;
  color: #001F55;
}

footer box-icon{
  width: 16px;
}

footer a:hover{
  transition: 0.3s ease-in !important;
  background: linear-gradient(
    to right, 
    #A4E56D 0%, 
    #5CD2AA 50%, 
    #59D1AE 100%
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

}

@media only screen and (max-width: 600px) {
  footer{
    justify-content: center;
    padding: 0;
    gap: 0;
    transform: translateZ(1px);
  }

  footer box-icon{
    width: 25px;
  }

 .envelope{
  padding-right: 70px;
 }

  footer span{
    display: none;
  }

  .container .inner {
    display: flex;
    flex-direction: column; 
  }
  
  .container .inner .panel {
    margin-bottom: 20px; 
  }
  
  .container .inner .panel .panel-content {
    position: relative;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0; 
    transform: translate(0, 0) skew(0deg); 
  }
  .panel-left span {
    position: relative;
    top: 70px; /* Moves it down */
}

.panel-left h1 {
  text-align: center;
}

.panel-left h3{
  text-align: center;
} 


.container .inner .panel.panel-right .panel-content .form {
  width: 90%; 
  min-height: auto; 
  margin-top: -100px;
  padding-left: 20px;
  margin-left: -10px;
  
}

.container .inner .panel.panel-left {
  margin-left: 0;
  
}

/* textarea {
  border-bottom: 1px solid #001F55;
  color: #001F55;
}

label {
  color: #001F55; 
}


input:focus ~ label, input:valid ~ label 		{
  color: #001F55;
}

textarea:focus ~ label, input:valid ~ label 		{
    color: #001F55;
  }

  input {
    border-bottom: 1px solid #001F55;
    color: #001F55;
  }

  .container .inner .panel.panel-right .panel-content .form h1{
    color: #001F55;
  } */

  .nav a.white {
    color: #001F55;
  }
  
  .container .inner .panel{
    position: relative;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    float: left;
    transform: skew(0deg);
  }

  .container .inner .panel.panel-right{
    padding-top: 50px;
  
  }

  .container .inner .panel.panel-left{
    padding-top: 50px;
    padding-bottom: 50px;
  
  }

  .panel-left .panel-content{
    margin-left: 0%;
  }

  .container .inner .panel.panel-right .panel-content .form h1 {
    margin-bottom: 20px; 
  }
  
  .send-btn {
    float: right;
    color: #B1B1B1;
    transition: 0.2s ease;
    background-color: transparent;
    font-size: 16px;
    border: none;
    font-family: "Poppins";
    margin-right: 0px; 
  }

  .panel.panel-left{
    background-image: url('./images/Stripes.png');
    background-size: 180%;
    background-repeat: no-repeat;
    background-position: center left;
}

}
