body {
color: #ffffff;
    background-color: #000;
    font-family: 'final-frontier-old', sans-serif;
    animation: transitionin 1s;
   
  }

  @font-face {
    font-family: 'final-frontier-old';
    src: url('../font/final-frontier-old.woff2') format('woff2'),
         url('../font/final-frontier-old.woff') format('woff'),
         url('../font/final-frontier-old.ttf')  format('truetype');
  }
  
@keyframes transitionin{

  from{
    opacity: 0;
    transform: rotateX('-10dge');
  }
  to{
    opacity: 1;
    transform: rotate(0);
  }
}








header {align-items: center;display: flex;}

header h1 {
  font-size: 65px;
}
header span{color: #7064D7;}
header h3 {font-size: 34px;}
.sub-txt{  display: flex; justify-content: start;}
.landing-page-img {
  width: 60%;
  padding-top: 40px;
}
/* .second-col {  align-items: center; display: flex; justify-content: center;} */

header button{color: #fff;background-color: #7064D7;border-color: #7064D7;}

.btn {
  color: #fff;
  background-color: #7064D7;
  border-color: #7064D7;
  border-radius: 300px;
  font-family: revert-layer;
  
  font-size: 20px;
  line-height: 33px;
  padding: 5px 50px;
}
.col-a {
 
  border-right: 1px solid;
  border-image: linear-gradient(#000,#2e059f,#000) 0 100%;
  height: 100vh;
display: flex;
align-items: center;
/* justify-content: center; */
}

.inner-color{
  width: 100%;
  height: 100vh;; 
display: flex;
align-items: center;
justify-content: center;
/* border-radius: 50%;
position: relative;
overflow: hidden; */
background-image: url(../images/bg-colour.png); 
background-repeat: no-repeat;
background-position: center;
background-size: 100%;
}



/*ChatBot*/
/* .chat_icon{
	position: fixed;
	bottom: 0;
	right: 30px;
	z-index: 1000;
	padding: 0;
	font-size: 80px;
	color: #fff;
	cursor: pointer;
} */
.chat_box{
	/* width: 400px;
	 height: 80vh;
	position: fixed; 
	bottom: 100px;
	right: 30px; */
	background:#000000;
	z-index: 1000;
	/* transition: all 1s ease-out; */
	/* transform: scaleY(0); */
  border-radius: 30px;
  box-shadow: rgba(107, 24, 176, 0.31) 0px 10px 36px 0px, rgba(23, 81, 87, 0.25) 0px 0px 0px 1px;
  border: solid 1px #636363;
  font-family: 'Roboto', sans-serif;
  transform: translatey(100%);
  opacity: 0;
}
.chat_box.active {
  /* transform: scaleY(1); */
  transition: all 0.5s ease-in !important;
  transform: translatey(0%) !important;
  opacity: 1 !important;
}
#messages{
	padding: 20px;
}
.my-conv-form-wrapper textarea{
	height: 30px;
	overflow: hidden;
	resize: none;
}
.hidden{
	display: none !important;
}
.showDiv-hidden{
  display: none;
}










@media only screen and (max-width: 1300px) {
  header h1 {
    font-size: 66px;
  }
  header h3 {
    font-size: 35px;
  }
}


@media only screen and (max-width: 1200px) {
  header h1 {
    font-size: 75px;
  }
}
@media only screen and (max-width: 992px) {
  header h1 {
    font-size: 60px;
  }
  header h3 {
    font-size: 35px;
  }
  .chat{width: 100%;}
}

@media only screen and (max-width: 767px) {
  header h1 {
    font-size: 45px;
  }
  header h3 {
    font-size: 30px;
  }
  .wrapper-messages {
   height: 260px !important;}
   .col-a {
    border-right: 0px solid;
    text-align: center;
    height: 80vh;
    justify-content: center;
    padding-top: 20px;
    
  }
  .sub-txt {
    display: flex;
    justify-content: center;
  }
  .inner-color {
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    height: 25vh;
  }
  .chat { padding-bottom: 30px;
  }
  .btn {
    font-size: 15px;
    padding: 1px 35px;
  }
  
}

@media only screen and (max-width: 600px) {
  .sub-txt {
   justify-content: center;
  }


  .col-a {
    border-right: 0px solid;
    text-align: center;
  }

}

@media only screen and (max-width: 400px){
.col-a {

  height: 70vh;
}
header h3 {
  font-size: 25px;
}
}
 
@media only screen and (max-width: 320px){
header h1 {
  font-size: 40px;
}
.col-a {
  height: 60vh;
}

}