*{
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
}
body{
  background-color: #191919;
}
header{
  background-color: #191919;s
  background-size: cover;
  background-position: center;
}
::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: none;
}
ul{
  list-style-type: none;
  display: grid;
  grid-template-columns: 120px 120px 120px 120px 130px;
  margin-right: 25px;
  grid-gap: 5px;
  justify-content: end;
  margin-top: 30px;
  animation: transitionIn 2.5s;
}
ul button{
  padding: 0px 10px;
  color: transparent;
  background-color: transparent;
  border-color: transparent;
}
ul button a{
  text-decoration: none;
  font-weight: bold;
  color: #FFF;
  padding: 5px 7px;
  transition: 0.2s ease;
  cursor: pointer;
}
ul button a:hover{
  color: #57FFB3;
  position: relative;
  border-bottom: 4px solid #57FFB3;
}
ul button.active a{
  color: #57FFB3;
  position: relative;
  border-bottom: 4px solid #57FFB3;
}
.container{
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.grid{
  width: 100%;
  display: grid;
  margin-top: 50px;
  margin-bottom: 90px;
  padding-left: 10%;
  padding-right: 10%;
  grid-gap: 50px;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  color: #191919;
  animation: transitionIn 2.5s;
}
.hello{
  background: black;
  border: none;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5%;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  width:100%;
  height: 90%;
  transition: 0.3s ease;
}


.box{
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: 1s ease;
  width: 85%;
  transform: translateY(-95%);
}

.doc{
  background: white;
  border: none;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, .4);
  border-radius: 10px;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: grid;
  grid-template-columns: 25% 75%;
  justify-content: center;
  align-items: center;
}
.hello:hover .box{
  transform: translateY(-195%);
}

.doc img{
  width: 50%;
  border-radius: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.text{
text-align: center;
width: 100%;
padding-right: 15%;
}
.text h3{
  font-size: 25px;
}
.text p{
  font-weight: 600;
}
.smallbox{
  margin-top: 7%;
  justify-content: center;
  display: grid;
  grid-gap: 10px;
  width: 100%;
  transition: 0.3s ease;
}
.smallbox a{
  text-decoration: none;
  transition: 0.3s ease;
  color: black;
}

.row{
  background: white;
  border-radius: 10px;
  width: 100%;
  padding: 5px 20px;
  transition: 0.3s ease;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.row:hover{
  background: #57FFB3;
  text-align: center;
}
.row:hover a{
  color: black;
  text-align: center;
}

.text1{
  text-align: center;
  font-size: 15px;
  width: 100%;
}
.text1 .p1{
  font-weight: 700;
}
.contactForm{
  transform: translateY(-18%);
}

.contactForm .inputBox textarea{
  width: 85%;
  height: 250px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 5px;
  padding-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 15px;
  font-weight: 700;
  background: #c4c4c4;
  border-radius: 10px;
  border: none;
  resize: none;
  outline: none;
}
.contactForm .inputBox1 input[type="submit"]{
  width:85%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background:white;
  color: #191919;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 5%;
  margin-bottom: 5%;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, .4);

}
.contactForm .inputBox1 input[type="submit"]:hover{
  background:#57FFB3;
  transition: 0.4s ease;
}

@keyframes transitionIn {
  from{
    opacity: 0;
    transform: rotateX(-10deg);
    transform: translateY(-5%);
  }
  to{
    opacity: 1;
    transform: rotateX(0);
    transform: translateY(0%);
  }
}

@keyframes transitionOut {
  from{
    opacity: 0;

    transform: translateY(1%);
  }
  to{
    opacity: 1;

    transform: translateY(0%);
  }
}

@media only screen and (max-device-width: 1560px)and (orientation: portrait){

  ul{
    justify-content: center;
    margin-right: 0px;
  }
  .subtitle>p{
    font-size: 23px;
  }
  .hello{
    padding-top: 3%;
  }
  .grid{
    width: 100%;
    grid-gap: 50px;
    margin-top: 100px;
    grid-template-columns: repeat(1, 1fr);
  }
  .smallbox{
    grid-gap: 15px;
  }
  .contactForm .inputBox textarea{
    height: 400px;
  }
  .row{
    padding: 10px 100px;
  }
  .contactForm .inputBox1 input[type="submit"]{
    margin-top: 3%;
    padding: 20px;
  }
}


@media only screen and (max-device-width: 1200px)and (orientation: landscape){

  .text h3{
    font-size: 20px;
  }
  .text1{
    font-size: 12px;
  }
}
