@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700,200");
body {
  background: #000;
}

#page-container {
  transition: all 0.3s linear;
  opacity: 0;
}

#page-container.show {
  opacity: 1;
}

.collapsing {
  transition: all 0.8s ease;
}

.navbar {
  background-color: #243a51;
  color: #fff;
}

.btn-circle {
  width: 47px;
  height: 47px;
  position: relative;
  z-index: 1;
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  margin: 10px;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.btn-circle i {
  margin-top: -5px;
  font-size: 1.625rem;
  line-height: 61.1px;
  display: inline-block;
  width: inherit;
  text-align: center;
  color: #fff;
}

.well {
  min-height: 20px;
  padding: 24px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
}

.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-list li {
  display: inline-block;
  font-size: 24px;
  margin: 5px 5px 5px 0;
}

.social-list li a {
  color: #2e2e2e;
}

.social-list li a:hover {
  color: #666;
}

.icon-footer-color {
  background-color: #3b3b3b !important;
}

.pageload-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
  z-index: 999;
}

.pageload-overlay.show {
  visibility: visible;
}

.pageload-overlay svg {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 20;
}

.pageload-overlay svg path {
  fill: #fff;
}

/* .pageload-overlay::after,
.pageload-overlay::before {
	content: '';
	position: fixed;
	width: 20px;
	height: 20px;
	top: 50%;
	left: 50%;
	margin: -10px 0 0 -10px;
	border-radius: 50%;
	visibility: hidden;
	opacity: 0;
	z-index: 1000;
	-webkit-transition: opacity 0.15s, visibility 0s 0.15s;
	transition: opacity 0.15s, visibility 0s 0.15s;
}

.pageload-overlay::after {
	background: #6cc88a;
	-webkit-transform: translateX(-20px);
	transform: translateX(-20px);
	-webkit-animation: moveRight 0.6s linear infinite alternate;
	animation: moveRight 0.6s linear infinite alternate;
}

.pageload-overlay::before {
	background: #4fc3f7;
	-webkit-transform: translateX(20px);
	transform: translateX(20px);
	-webkit-animation: moveLeft 0.6s linear infinite alternate;
	animation: moveLeft 0.6s linear infinite alternate;
} */
/* @-webkit-keyframes moveRight {
	to { -webkit-transform: translateX(20px); }
}

@keyframes moveRight {
	to { transform: translateX(20px); }
}

@-webkit-keyframes moveLeft {
	to { -webkit-transform: translateX(-20px); }
}

@keyframes moveLeft {
	to { transform: translateX(-20px); }
} */
.pageload-loading.pageload-overlay::after,
.pageload-loading.pageload-overlay::before {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.loader.show {
  opacity: 1;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.loader {
  opacity: 0;
  position: absolute;
  z-index: 30;
  left: 50%;
  top: 50%;
  margin-top: -30px;
  margin-left: -30px;
  font-size: 10px;
  text-indent: -9999em;
  border-top: 0.4em solid rgba(203, 203, 203, 0.2);
  border-right: 0.4em solid rgba(203, 203, 203, 0.2);
  border-bottom: 0.4em solid rgba(203, 203, 203, 0.2);
  border-left: 0.4em solid #cbcbcb;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 0.6s infinite linear;
  animation: load8 0.6s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Icon 1 */
.animated-icon1,
.animated-icon2,
.animated-icon3,
.animated-icon4 {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.animated-icon1 span,
.animated-icon3 span,
.animated-icon4 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.animated-icon1 span {
  background: #bfbfbf;
}

.animated-icon3 span {
  background: #e3f2fd;
}

.animated-icon4 span {
  background: #f3e5f5;
}

.animated-icon1 span:nth-child(1) {
  top: 0px;
}

.animated-icon1 span:nth-child(2) {
  top: 10px;
}

.animated-icon1 span:nth-child(3) {
  top: 20px;
}

.animated-icon1.open span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.animated-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.animated-icon1.open span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* Icon 3*/
.animated-icon3 span:nth-child(1) {
  top: 0px;
}

.animated-icon3 span:nth-child(2),
.animated-icon3 span:nth-child(3) {
  top: 10px;
}

.animated-icon3 span:nth-child(4) {
  top: 20px;
}

.animated-icon3.open span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.animated-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.animated-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.animated-icon3.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}

/* Icon 4 */
.animated-icon4 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.animated-icon4 span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.animated-icon4 span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.animated-icon4.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  left: 8px;
}

.animated-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.animated-icon4.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 21px;
  left: 8px;
}

.navbar {
  background-color: #2e2e2e;
}

.navbar .navbar-brand img {
  height: 30px;
}

.navbar .navbar-nav {
  padding-top: 20px;
}

@media (min-width: 992px) {
  .navbar .navbar-nav {
    padding-top: 0;
  }
}

.navbar .nav-link {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #bfbfbf !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.top-nav-collapse {
  background-color: #2e2e2e !important;
  color: #bfbfbf;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.navbar:not(.top-nav-collapse) {
  background: transparent !important;
  color: #fff;
  box-shadow: none;
}

@media (max-width: 768px) {
  .navbar:not(.top-nav-collapse) {
    background: #2e2e2e !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
      0 2px 10px 0 rgba(0, 0, 0, 0.12);
  }
}

.h-banner {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.h-banner h1 {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 100;
  text-transform: uppercase;
  margin: 0 0 40px;
  letter-spacing: 0.2em;
  font-size: 32px;
}

@media (min-width: 768px) {
  .h-banner h1 {
    font-size: 38px;
  }
}

.h-banner h5 {
  letter-spacing: 0.1em;
}

#header-banner {
  background-image: url("/img/home.jpg");
}

#aiva-banner {
  background-image: url("/img/aivabanner.jpg");
  background-position: left;
}

#about-banner {
  background-image: url("/img/about.jpg");
}

#resources-banner {
  background-image: url("/img/resources.jpg");
}

#contact-banner {
  background-image: url("/img/contact.jpg");
}

#privacy-banner {
  background-image: url("/img/privacy.jpg");
}

#portfolio {
  background-color: #fff;
}

#portfolio input[type="radio"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

#portfolio .btn-secondary {
  background-color: #388e3c !important;
}

#portfolio .btn-outline-secondary {
  background-color: #e0e0e0 !important;
  border: 1px solid gray !important;
  color: gray !important;
}

#portfolio .btn-outline-secondary:hover {
  background-color: #388e3c !important;
  border: 1px solid #388e3c !important;
  color: #fff !important;
  font-weight: bold;
}

#portfolio label.active {
  background-color: #388e3c !important;
  border: 1px solid #388e3c !important;
  color: #fff !important;
  font-weight: bold;
}

#portfolio #portfolioDetail {
  position: relative;
  color: #bfbfbf;
  letter-spacing: 0.02em;
  transition: all 0.5s ease-in-out;
}

#portfolioDetail .overlay-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
  background-color: rgba(46, 46, 46, 0.7);
}

#portfolioDetail .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
  background-size: cover;
  background-attachment: fixed;
  transition: all 1s linear;
}

#portfolioDetail .hide {
  opacity: 0;
}

#portfolio #portfolioDetail #ploader.hide {
  opacity: 0;
  height: 0;
}

#details .btn-primary {
  background-color: #388e3c !important;
  margin-bottom: 10px;
}

#portfolio #portfolioDetail #ploader {
  opacity: 1;
  width: 160px;
  height: 20px;
  transition: all 0.3s ease-in;
  display: block;
  z-index: 30;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -80px;
  margin-top: -10px;
}

#portfolio #portfolioDetail #details.show {
  opacity: 1;
}

#portfolioDetail .container {
  position: relative;
  z-index: 5;
}

#portfolio #portfolioDetail #details {
  opacity: 0;
  transition: all 0.5s ease-in;
}

#portfolio #portfolioDetail #details .carousel-indicators {
  bottom: -45px;
}

#portfolio #portfolioDetail h3 {
  color: #fff;
  margin-top: 10px;
  text-transform: uppercase;
}

#portfolio #portfolioDetail ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

#portfolio #portfolioDetail ul li {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  border-bottom: 1px dotted #fff;
}

#portfolio #portfolioDetail a {
  font-weight: bold;
  color: #388e3c;
}

#portfolio #portfolioDetail a:hover {
  color: #fff;
}

#proj-cont-txt {
  position: relative;
  top: 40px;
}

@media screen and (min-width: 768px) {
  #proj-cont-txt {
    top: 0;
  }
}

#portfolio #portfolioDetail .close-preview {
  position: absolute;
  top: 5px;
  right: 0;
  font-size: 24px;
  line-height: 34px;
  color: #fff;
  cursor: pointer;
  padding: 0 10px;
  transform: scale(1);
  transition: transform 0.2s ease-out;
}

#portfolio #portfolioDetail .close-preview :hover {
  transform: scale(1.1);
}

#portfolio #portfolio-body {
  background-color: #ddd;
}

#portfolio .dark-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 2;
}

#about {
  background-image: url("/img/index-about.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#about #white-panel {
  background: rgba(255, 255, 255, 0.8);
  padding: 140px 60px;
  letter-spacing: 0.02em;
}

#about #white-panel h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 40px;
  letter-spacing: 0.15em;
  font-size: 30px;
  color: #000;
}

#myself,
#what-bot {
  background-color: #fff;
  padding: 120px 60px;
}

#myself h2,
#what-bot h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 40px;
  letter-spacing: 0.15em;
  font-size: 30px;
  color: #000;
}

#myself .font-inc,
#what-bot .font-inc {
  font-weight: 300;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

#myself .progress {
  height: 4px;
  margin-bottom: 25px;
}

#myself .progress .progress-bar {
  background: #878787;
}

#myself .progress .progress-bar span {
  position: absolute;
  display: block;
  right: -0px;
  top: 6px;
  line-height: 12px;
  font-size: 12px;
  color: #666;
  padding: 4px 0px;
}

#certificates {
  background-image: url("/img/about-cofi.jpg");
  background-attachment: fixed;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

#certificates h2 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 40px;
  letter-spacing: 0.15em;
  font-size: 30px;
}

#certificates img {
  padding-top: 20px;
}

#services {
  background-color: #fff;
  padding: 70px;
  text-align: center;
}

#services .content-box {
  padding: 10px;
}

#services .content-box .content-box-icon {
  margin-top: 10px;
}

#benefits-bot {
  text-align: center;
  background-color: #eee;
  padding: 120px 60px;
  background-image: url("/img/aiva_benefits.jpg");
  background-attachment: fixed;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

#benefits-bot h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 40px;
  letter-spacing: 0.15em;
  font-size: 30px;
}

#resources {
  background-color: #fff;
}

#resources li {
  margin-top: 5px;
  margin-bottom: 5px;
}

#resources a {
  color: #2e2e2e;
}

#resources a:hover {
  color: #388e3c;
}

#resources h4 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
}

#contact-form {
  background-color: #fff;
  padding: 140px 30px;
}

#contact-form h2 {
  color: #2e2e2e;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 30px;
}

#contact-form a {
  color: #2e2e2e;
  font-weight: bold;
}

#contact-form a:hover {
  color: #388e3c;
}

#contact-form input[type="text"]:focus,
#contact-form input[type="email"]:focus,
#contact-form input[type="tel"]:focus,
#contact-form textarea:focus {
  border-bottom: 1px solid #388e3c;
  box-shadow: 0 1px 0 0 #388e3c;
}

#privacy {
  background-color: #fff;
  padding: 20px;
}

#privacy h2 {
  color: #2e2e2e;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 30px;
  margin-bottom: 30px;
}

#privacy h3 {
  color: #2e2e2e;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 23px;
  margin-bottom: 20px;
}

#privacy a {
  color: #2e2e2e;
  font-weight: bold;
}

#privacy a:hover {
  color: #388e3c;
}

#main-footer #footer-contact {
  margin-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 0.7rem;
  text-transform: lowercase !important;
}

#main-footer #branding {
  height: 60px;
  width: auto;
  margin-top: 0;
  padding-bottom: 5px;
  opacity: 0.7;
}

@media (min-width: 768px) {
  #main-footer #branding {
    height: 40px;
  }
}

@media (min-width: 992px) {
  #main-footer #branding {
    height: 70px;
  }
}

#main-footer #branding-text {
  padding-top: 3px;
  display: block;
  font-size: 9px;
  opacity: 0.7;
}

#main-footer hr {
  border-top: 1px solid #363636;
}

#main-footer a {
  color: #bbb;
  line-height: 1.7px;
}

.scrollTop {
  position: fixed;
  border-radius: 5px;
  left: 20px;
  bottom: 20px;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 8px;
  opacity: 0;
  cursor: pointer;
  transition: all 0.4s ease-in-out 0s;
  z-index: 99;
}

.scrollTop a {
  font-size: 15px;
  color: #2e2e2e;
}

.scrollTop a i {
  color: #2e2e2e;
}

.btn-floating {
  position: fixed;
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: 99;
  border-radius: 50%;
  right: 20px;
  bottom: 20px;
  transition: all 0.3s ease-out;
  opacity: 0;
  cursor: pointer;
}

.btn-floating i {
  color: #fff;
  font-size: 25px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -15px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  transition: 0.3s all ease-out;
}

.btn-floating i.fa-comments {
  opacity: 1;
  transform: scale(1) rotate(360deg);
}

.btn-floating i.fa-times {
  opacity: 0;
  transform: scale(0.2);
}

.btn-floating.open i.fa-comments {
  opacity: 0;
  transform: scale(0.2);
}

.btn-floating.open i.fa-times {
  opacity: 1;
  transform: scale(1) rotate(360deg);
}

.btn-floating.btn-lg {
  width: 50px;
  height: 50px;
  background-color: #388e3c !important;
  border-color: transparent;
}

.btn-floating.rotate {
  transform: scale(0.5) rotate(180deg);
}

.ai-messenger {
  display: flex;
  height: calc(100% - 120px);
  min-height: 250px !important;
  max-height: 500px !important;
  width: 280px;
  right: 20px;
  bottom: 40px;
  position: fixed;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 5px 40px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s all ease-out;
  justify-content: flex-start;
  flex-direction: column;
  z-index: 999;
}

.ai-messenger.open {
  bottom: 90px;
  opacity: 1;
  pointer-events: all;
}

.ai-messenger .msg-loader {
  width: 80px;
  height: 80px;
  position: absolute;
  left: 50%;
  top: 53%;
  transform: translate(-50%, -50%);
}

.ai-messenger .msg-loader.hide {
  display: none;
}

.ai-messenger .msg-loader img {
  width: 100%;
}

.ai-messenger .messenger-head {
  height: 90px;
  padding: 15px;
  background-color: #388e3c;
  color: #fff;
  border-radius: 8px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 4px solid #43aa47;
}

.ai-messenger .avatar-prof {
  float: left;
  width: 60px;
}

.ai-messenger .title-prof {
  float: left;
  width: calc(100% - 70px);
  padding-left: 10px;
}

.ai-messenger .messenger-head .title-prof h4 {
  /* padding-top: 7px; */
}

.ai-messenger .messenger-head .title-prof p {
  font-size: 10px;
}

.ai-messenger .avatar-prof .avatar-img {
  display: inline-block;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  border-bottom: 2px solid #43aa47;
}

.ai-messenger .composer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  border-top: 1px solid #e6e6e6;
}

.ai-messenger .composer textarea {
  padding: 18px 100px 18px 29px;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.33;
  background-color: #fff;
  white-space: pre-wrap;
  word-wrap: break-word;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #000;
  resize: none;
  border: 0;
  transition: background-color ease 200ms, box-shadow ease 200ms,
    -webkit-box-shadow ease 200ms;
}

.ai-messenger .messenger-body {
  max-height: calc(100% - 56px);
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 56px;
  clear: both;
}

.ai-messenger .conversation {
  padding: 20px 20px 0;
}

.ai-messenger .conversation .message-anchor {
  float: left;
  clear: both;
}

.ai-messenger .message-container {
  position: relative;
  padding-bottom: 20px;
}

.ai-messenger .conversation div:nth-last-child(4) {
  padding-bottom: 2px;
}

.ai-messenger .conversation .show {
  opacity: 1 !important;
}

.ai-messenger .conversation .last-msg-date {
  padding-bottom: 15px;
  text-align: right;
  font-size: 10px;
  margin-right: 25px;
}

.ai-messenger .message-container .message-avatar {
  display: inline-block;
}

.ai-messenger .message-container .message-avatar .avatar-container {
  width: 32px;
  height: 32px;
}

.ai-messenger .message-container .message-avatar .avatar-container img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.ai-messenger .message-container .message-box {
  display: inline-block;
  width: calc(100% - 70px);
  margin-left: 15px;
}

.ai-messenger .message-container .message-box .msg {
  position: relative;
  color: #000;
  background-color: #f5f5f5;
  padding: 17px 20px;
  border-radius: 5px;
}

.ai-messenger .message-container.user .message-box {
  width: calc(100% - 55px);
  margin-left: 47px;
}

.ai-messenger .message-container.user .message-box .msg {
  color: #fff;
  background-color: #388e3c;
}

.ai-messenger .composer textarea:focus {
  outline: none;
  box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.1);
}

.ai-messenger .message-status {
  text-align: right;
  font-size: 10px;
  margin-right: 10px;
  padding-bottom: 10px;
  color: #aaa;
  opacity: 0;
}

/*ZoomIn Hover Effect*/
.hover-zoomin a {
  display: block;
  position: relative;
  overflow: hidden;
}

.hover-zoomin img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.hover-zoomin:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

/*Fade Hover Effect*/
.hover-fade a {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #333;
}

.hover-fade img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.hover-fade:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0.5)";
  filter: alpha(opacity=0.5);
  opacity: 0.5;
}

/*ZoomIn Hover-Mask Effect*/
.hover-mask a {
  display: block;
  position: relative;
  overflow: hidden;
}

.hover-mask img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.hover-mask:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.hover-mask a h2 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 0px;
  margin-bottom: 0px;
  height: 100%;
  width: 100%;
  padding: 45% 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
}

.hover-mask:hover a h2 {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}

.hover-mask .glyphicon {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  color: #fff;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
}

.hover-mask:hover .glyphicon {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=1)";
  filter: alpha(opacity=1);
  opacity: 1;
}

/* Hover Blur Effect */
.text-white {
  color: #fff;
}

.hover-blur a {
  display: block;
  position: relative;
  overflow: hidden;
}

.hover-blur img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.hover-blur:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-filter: grayscale(0.6) blur(1px);
  filter: grayscale(0.6) blur(1px);
}

.hover-blur a h2 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 0px;
  margin-bottom: 0px;
  height: 100%;
  width: 100%;
  padding: 45% 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  /*background dotted*/
  background-image: -webkit-repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.8) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -moz-repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.8) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -ms-repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.8) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.8) 1px,
    transparent 1px,
    transparent 100%
  );
  -webkit-background-size: 3px 3px;
  -moz-background-size: 3px 3px;
  background-size: 3px 3px;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
}

.hover-blur:hover a h2 {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}

.hover-blur .text-white {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
}

.hover-blur:hover .text-white {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=1)";
  filter: alpha(opacity=1);
  opacity: 1;
}

/* Hover Zoomout */
.hover-zoomout a {
  display: block;
  position: relative;
  overflow: hidden;
}

.hover-zoomout img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.hover-zoomout:hover img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/*Hover Blurout Effect*/
.hover-blurout a {
  display: block;
  position: relative;
  overflow: hidden;
}

.hover-blurout img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.hover-blurout:hover img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  /*Blur Filtr*/
  -webkit-filter: grayscale(0.6) blur(1px);
  -moz-filter: grayscale(0.6) blur(1px);
  -o-filter: grayscale(0.6) blur(1px);
  -ms-filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2);
  filter: progid:DXImageTransform.Microsoft.blur(pixelradius=2);
  filter: grayscale(0.6) blur(2px);
}

.hover-blurout a h2 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 0px;
  margin-bottom: 0px;
  height: 100%;
  width: 100%;
  padding: 45% 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  /*background dotted*/
  background-image: -webkit-repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.8) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -moz-repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.8) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: -ms-repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.8) 1px,
    transparent 1px,
    transparent 100%
  );
  background-image: repeating-radial-gradient(
    center center,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.8) 1px,
    transparent 1px,
    transparent 100%
  );
  -webkit-background-size: 3px 3px;
  -moz-background-size: 3px 3px;
  background-size: 3px 3px;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
}

.hover-blurout:hover a h2 {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}

.hover-blurout .glyphicon {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  color: #fff;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
}

.hover-blurout:hover .glyphicon {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=1)";
  filter: alpha(opacity=1);
  opacity: 1;
}

/* ---------Hover Overlay text Effect--------- */
.overlay-item {
  display: block;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.overlay-item .mask {
  display: block;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  height: 100%;
}

.overlay-item img {
  display: block;
  width: 100%;
  height: auto;
  x-margin-right: auto;
  x-margin-left: auto;
}

.overlay-item h3 {
  text-transform: uppercase;
  text-align: center;
  position: relative;
  padding: 10px;
  margin: 0px 0px 20px 0px;
  display: block;
  background-color: #333;
  color: #fff;
}

.overlay-item p {
  text-align: left;
}

.overlay-item a.btn {
  margin: 10px 0;
}

.overlay-effect img {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -o-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  -ms-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

.overlay-effect .mask {
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
}

.overlay-effect h3 {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
}

.overlay-effect p {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.overlay-effect a.btn {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.overlay-effect:hover img {
  -webkit-transform: scale(10);
  -moz-transform: scale(10);
  -o-transform: scale(10);
  -ms-transform: scale(10);
  transform: scale(10);
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
}

.overlay-effect:hover .mask {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}

.overlay-effect:hover h3,
.overlay-effect:hover p,
.overlay-effect:hover a.btn {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}

/*Hover Fall Effect*/
.fall-item {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.fall-item .mask,
.fall-item .content {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
}

.fall-item img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}

.fall-item h4 {
  text-transform: uppercase;
  color: #000;
  text-align: center;
  position: relative;
  padding: 10px;
  background: rgba(255, 255, 255, 0.7);
}

.fall-item p {
  position: absolute;
  width: 100%;
  color: #fff;
  padding: 10px 20px 20px;
  text-align: center;
  font-size: 15px;
}

.fall-effect .mask {
  background-color: rgba(0, 0, 0, 0.85);
  top: -200px;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  transition: all 0.5s ease-out 0.8s;
}

.fall-effect h4 {
  transform: translateY(-200px);
  transition: all 0.3s ease-in-out 0.4s;
}

.fall-effect p {
  color: #fff;
  transform: translateY(-200px);
  transition: all 0.5s ease-in-out 0.5s;
}

.fall-effect a.btn {
  position: absolute;
  width: 95%;
  bottom: 10px;
  padding: 10px;
  margin-left: 2.5%;
  transform: translateY(100px);
  transition: all 0.5s ease-in-out 0.5s;
}

.fall-effect:hover .mask {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  top: 0px;
  transition-delay: 0s;
}

.fall-effect:hover h4 {
  transform: translateY(0px);
  transition-delay: 0.4s;
}

.fall-effect:hover p {
  transform: translateY(0px);
  transition-delay: 0.2s;
}

.fall-effect:hover a.btn {
  transform: translateY(0px);
  transition-delay: 0s;
}

.btn3D {
  width: 100%;
  height: 60px;
  cursor: pointer;
  perspective: 500px;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
}

.btn3D div {
  height: 100%;
  transform-style: preserve-3d;
  transition: 0.25s;
}

.btn3D:hover div {
  transform: rotateX(-90deg);
}

.btn3D div span {
  width: 100%;
  height: 100%;
  left: 0;
  position: absolute;
  box-sizing: border-box;
  border: 3px solid #388e3c;
  border-radius: 3px;
  line-height: 50px;
  font-size: 17pt;
  text-align: center;
  text-transform: uppercase;
}

.btn3D div span:nth-child(1) {
  color: #388e3c;
  transform: translate3d(0, 0, 30px);
}

.btn3D div span:nth-child(2) {
  color: #fff;
  background: #388e3c;
  transform: rotateX(90deg) translate3d(0, 0, 30px);
}
