@font-face {
  font-family: "circular-book";
  src: url(../fonts/CircularStd-Book.otf);
  font-weight: 400;
}
@font-face {
  font-family: "circular-book";
  src: url(../fonts/CircularStd-Medium.otf);
  font-weight: 500;
}
@font-face {
  font-family: "circular-book";
  src: url(../fonts/CircularStd-Bold.otf);
  font-weight: 700;
}
@font-face {
  font-family: "brandon-bold";
  src: url(../fonts/Brandon_bld.otf);
}
body {
  font-family: "circular-book" !important ;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
header {
  position: fixed;
  z-index: 19782718271827182;
  width: 100%;
  display: flex;
  padding: 35px 100px;
  box-sizing: border-box;
  -moz-transition: all .1s linear;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
  display: flex !important;
  align-items: center;
}
header .login {
  display: none !important;
}
header.scrolled {
  background: linear-gradient(-115deg, #5542C5 0%, #A43FBF 100%);
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}
header .logo {
  float: left;
  width: 150px;
  height: 40px;
  margin-top: -6px;
  overflow: hidden;
}
header .menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  top: 50%;
  white-space: nowrap;
}
header .menu.action-menu {
  position: absolute;
  right: 110px;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
}
header .menu ul {
  padding-left: 0px;
  color: #FFF;
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
}
header .menu ul li {
  display: inline;
  width: auto;
  position: relative;
  cursor: pointer;
}
header .menu ul li span {
  color: #FFF;
  text-transform: uppercase;
  font-size: 12px;
  font-family: "brandon-bold";
  font-weight: 500;
  padding: 20px 20px;
}
header .menu ul li span.has-submenu {
  position: relative;
transition: all 600ms ease-in-out;
}
header .menu ul li span.has-submenu:before {
  content: '';
  right: 10px;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 5px solid #FFF;
  top: 50%;
  margin-top: -2px;
}
header .menu ul li span.has-submenu ul {
  position: absolute;
  top: 40px;
  width: 100%;
  left: 50%;
  background: #FFF;
  z-index: 108181;
  display: none;
  border-radius: 5px;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
  z-index: -1;
  padding: 5px;
  box-sizing: border-box;
  animation: menuappear; animation-duration: .5s; transform: translate(-50%,0px);
}
header .menu ul li span.has-submenu ul.mega-menu{ width:385px; left: 50%; animation: menuappear; animation-duration: .5s; transform: translate(-50%,0px);  }

@keyframes menuappear{
0%{ transform: translate(-50%, -10px); opacity: 0; }
100%{ transform: translate(-50%,0px); opacity: 1; } 
}


header .menu ul li span.has-submenu ul li {
  float: left;
  width: 100%;
  color: #333;
}
header .menu ul li span.has-submenu ul li a {
  float: left;
  width: 100%;
  color: #BFC8D2;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 3px;
  font-weight: 500;
  font-family: "brandon-bold";
}
header .menu ul li span.has-submenu ul.mega-menu li a{ padding:16px 20px; }
header .menu ul li span.has-submenu ul li a .icon-img{ display: inline-block; width:37px; height:37px; margin:0 16px 0 0; padding:0; }
header .menu ul li span.has-submenu ul li a .text-desc{ display:inline-block; width:250px; margin:0; padding:0; vertical-align:top; color: #444451; }
header .menu ul li span.has-submenu ul li a .text-desc span{ display:block; font-family: "circular-book" !important; font-size:13px; line-height:21px; font-weight:400; margin:0; padding:0;  color: rgb(170, 183, 197); text-transform: none; }
header .menu ul li span.has-submenu ul.mega-menu li a:hover .text-desc span{color:#615976;}


header .menu ul li span.has-submenu ul li a:hover {
  color: #444451;
}




header .menu ul li span.call_to_action {
  padding: 10px 20px;
  border-radius: 20px;
  border: solid 1px #FFF;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: color 1000ms;
  transition: color 1000ms;
  font-weight: 700;
}
header .menu ul li span.call_to_action:before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  bottom: -15px;
  border-radius: 30px;
  background: #FFF;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
  z-index: -1;
}
header .menu ul li span.call_to_action:hover a {
  color: #6b3cc3;
}
header .menu ul li span.call_to_action:hover:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
header .menu ul li span a {
  color: #FFF;
  text-decoration: none;
  font-weight: 400;
}
header .menu ul li span:hover ul {
  display: block;
}
header.always_active {
  background: linear-gradient(-115deg, #5542C5 0%, #A43FBF 100%);
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}
.no-menu .menu {
  display: none !important;
}
.no-menu .responsive-elem {
  display: none !important;
}
.no-menu .logo {
  margin-left: 0px !important;
}
.no-menu .login {
  display: block !important;
  float: right;
  margin-left: auto;
}
.no-menu .login ul {
  list-style: none;
  margin-bottom: 0;
}
.no-menu .login ul a {
  color: #FFF;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "brandon-bold";
}
button:active,
input:active,
button:focus,
input:focus {
  outline: none;
}
.hero-content-section,
section.mid-area {
  float: left;
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  padding: 95px 0px;
  background: linear-gradient(180deg, #6b3cc3 0%, #DF16BA 100%);
  background: -moz-gradient(180deg, #6b3cc3 0%, #DF16BA 100%);
  overflow-y: auto;
  display: flex;
  justify-content: center;
}

.hero-content-section .nobackground,
section.mid-area .nobackground {
  background: none !important;
  background: #FFF !important;
}
.hero-content-section h1,
section.mid-area h1 {
  text-align: center;
  font-weight: 500;
  margin: 10px;
  font-size: 32px;
}
.hero-content-section.main-page-hero,
section.mid-area.main-page-hero {
  padding-top: 150px;
}
.hero-content-section .content-area,
section.mid-area .content-area {
  width: 620px;
  color: #FFF;
  text-align: center;
  position: relative;
  z-index: 30121928;
}
.hero-content-section .content-area p,
section.mid-area .content-area p {
  line-height: 26px;
  font-weight: 400;
  font-size: 15px;
  margin: 0px;
  margin-top: 20px;
}
.hero-content-section .content-area .button-h button,
section.mid-area .content-area .button-h button {
  margin: 20px 5px;
  padding: 10px 20px;
  width: 200px;
  border: none;
  text-transform: uppercase;
  background: none;
  border-radius: 20px;
  color: #FFF;
  font-weight: 700;
  font-size: 12px;
  font-family: "brandon-bold";
}
.hero-content-section .content-area .button-h button.call_to_action,
section.mid-area .content-area .button-h button.call_to_action {
  background: #FFF;
  color: #6b3cc3;
  -moz-transition: all .3s linear;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  transform: perspective(1px) translateZ(0);
}
.hero-content-section .content-area .button-h button.call_to_action:hover,
section.mid-area .content-area .button-h button.call_to_action:hover {
  box-shadow: 0px 1px 40px 0px rgba(0, 0, 0, 0.3);
}
.hero-content-section .hero-bottom-white-sec,
section.mid-area .hero-bottom-white-sec {
  position: absolute;
  bottom: 0;
  height: 7.3%;
  background: #FFF;
  left: 0;
  right: 0;
}
.hero-content-section .hero_background_image,
section.mid-area .hero_background_image {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero-content-section .hero_background_image img,
section.mid-area .hero_background_image img {
  vertical-align: bottom;
}
.hero-content-section .hero_background_image svg,
section.mid-area .hero_background_image svg {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.hero-content-section.signup-body,
section.mid-area.signup-body {
  align-items: center;
  min-height: 100vh !important;
  background: linear-gradient(-115deg, #5542C5 0%, #A43FBF 100%);
  flex-flow: column;
}
.hero-content-section.signup-body .abs-footer,
section.mid-area.signup-body .abs-footer {
  float: left;
  align-self: flex-end;
  bottom: -90px;
  position: relative;
  width: 100%;
  left: 0;
  text-align: center;
  font-size: 13px;
  color: #FFF;
  padding-bottom: 20px;
}
.hero-content-section .content-area {
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
  justify-self: center;
}
section.mid-area {
  background: #FFF;
  min-height: auto;
  clear: all;
  height: auto;
  padding-top: 75px;
}
section.mid-area.no-upper-padding {
  padding-top: 0px !important;
}
section.mid-area.no-down-padding {
  padding-bottom: 0px;
}
section.mid-area h1 {
  font-size: 28px;
  color: #4e00ad;
  font-weight: 700;
}
section.mid-area .content-area {
  color: #000;
}
section.mid-area .content-area.large {
  width: 1200px;
}
section.mid-area .content-area.container-flow {
  width: 100%;
}
section.mid-area .content-area p {
  margin-top: 0px;
  color: #615976;
  margin-bottom: 10px;
}
section.mid-area .content-area ul.product-box {
  float: left;
  width: 100%;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 10px;
}
section.mid-area .content-area ul.product-box > li {
  padding: 20px 30px 45px;
  padding-bottom: 30px;
  box-sizing: border-box;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
  margin: 13px;
  width: 380px;
  border-radius: 0;
  background: #FFF;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  position: relative;
  border-bottom:3px solid transparent; 
}
/* section.mid-area .content-area ul.product-box li:after{ content:""; position: absolute; width:100%; height:; } */
 section.mid-area .content-area ul.product-box > li:hover {
  border-bottom:3px solid #4E00AD;
} 
section.mid-area .content-area ul.product-box > li:hover svg .pathanim {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 10s linear alternate infinite;
}
section.mid-area .content-area ul.product-box > li  .product-icon {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 30px;
  margin-bottom: 30px;
}
section.mid-area .content-area ul.product-box > li .product-name {
  color: #6b3cc3;
  margin: 0;
  margin-bottom: 10px;
  text-transform:capitalize;
  font-size:16px;
  white-space: nowrap;  
}
section.mid-area .content-area ul.product-box > li .product-description {
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 00;
  min-height:130px;
  border-bottom: 1px solid rgba(0,0,0,.1);
  margin-bottom: 25px;
}
section.mid-area .content-area ul.product-box > li .feature-name { 
  font-size:12px;
  font-weight:400;
  color: #928DA3;
  margin:0;
  padding:0 0 18px 0;    
  width:100%;
  margin-bottom: 0px;
  float: left;

}
section.mid-area .content-area ul.popular-feature {  
margin:0;
padding:0 10px 0 0;    
list-style:none;
display: inline-block;
}

section.mid-area .content-area ul.popular-feature li{
display:block;;   
font-size:14px; 
line-height:14px; 
color: #615976; 
margin:0 0 10px 0; 
padding:0 0 0 17px; 
text-align:left;   
position: relative;
}
section.mid-area .content-area ul.popular-feature li:after{
content:"";
position:absolute;
width:7px;
height:7px;
background:#4e00ad;
border-radius: 50%;
left:0;
top:0; 
bottom: 0;
margin: auto 0;     
}


section.mid-area .content-area ul.product-box > li .product-link {
  display: inline-block;
  color: #fff;
  margin-top: 20px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-family: "brandon-bold";
  background:#4E00AD;
  border-radius:4px;
  padding:6px 18px; transition:all 600ms ease-in-out;  
}
section.mid-area .content-area ul.product-box > li .product-link:hover{ box-shadow:0 2px 5px 0px rgba(0, 0, 0, .2) }
section.mid-area .content-area .section-half {
  width: 50%;
}
section.mid-area .content-area .section-half.text-section {
  float: left;
  text-align: left;
  box-sizing: border-box;
}
section.mid-area .content-area .section-half.text-section h2 {
  color: #6b3cc3;
}
section.mid-area .content-area .section-half.image-section {
  float: right;
}
section.mid-area .content-area .trilyo-feature-block {
  float: left;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
section.mid-area .content-area .trilyo-feature-block.trilyo-feature-bottom {
  padding-top: 100px;
  padding-bottom: 100px;
  max-height: auto;
  display: flex;
  align-items: center;
  background: linear-gradient(45deg, #6b3cc3 0%, #DF16BA 100%);
  margin-top: 75px;
}
section.mid-area .content-area .trilyo-feature-block.trilyo-feature-bottom h2,
section.mid-area .content-area .trilyo-feature-block.trilyo-feature-bottom p {
  color: #FFF;
}
section.mid-area .content-area .trilyo-feature-block.trilyo-feature-bottom .feature-link {
  background: #FFF;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}
section.mid-area .content-area .trilyo-feature-block.trilyo-feature-bottom .feature-link:hover {
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.3);
}
section.mid-area .content-area .trilyo-feature-block.trilyo-feature-bottom .feature-link:disabled {
  opacity: 0.5;
}
section.mid-area .content-area .trilyo-feature-block.trilyo-feature-bottom .feature-link:hover .link_content {
  color: #6b3cc3;
  background: #FFF;
}
section.mid-area .content-area .trilyo-feature-block.text-right .text-section {
  float: right;
  padding-left: 30px;
  padding-right: 100px;
  box-sizing: border-box;
}
section.mid-area .content-area .trilyo-feature-block.text-right .image-section {
  float: left;
  padding-left: 100px;
}
section.mid-area .content-area .trilyo-feature-block.text-right .image-section img {
  float: right;
  padding-right: 50px;
  box-sizing: border-box;
  display: flex;
}
section.mid-area .content-area .trilyo-feature-block.text-left {
  flex-direction: row-reverse;
}
section.mid-area .content-area .trilyo-feature-block.text-left .text-section {
  float: left;
  padding-right: 0px;
  padding-left: 100px;
}
section.mid-area .content-area .trilyo-feature-block.text-left .image-section {
  float: right;
padding-right: 100px;
}
section.mid-area .content-area .trilyo-feature-block.text-left .image-section img {
  float: left;
  padding-left: 50px;
  box-sizing: border-box;
  display: flex;
}
section.mid-area .content-area .trilyo-feature-block h2 {
  padding: 10px 0px;
  margin: 0px;
}
section.mid-area .content-area .trilyo-feature-block p.sub-text {
  color: #7937c2;
  font-weight: 700;
}
.trilyo-feature-block .feature-link{
  margin-top: 0px;
}
.feature-link {
  height: 40px;
  margin-top: 5px;
  text-transform: uppercase;
  float: left;
  border-radius: 30px;
  border: none;
  font-size: 12px;
  font-family: "brandon-bold";
  font-weight: 700;
  text-decoration: none;
  color: #6b3cc3;
  width: 150px;
  text-align: center;
  margin-top: 20px;
  background: linear-gradient(-45deg, #6b3cc3 0%, #DF16BA 100%);
  position: relative;
  color: #FFF;
}
.feature-link .link_content {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  background-color: #FFF;
  border-radius: 30px;
  padding: 10px 20px;
  color: #6b3cc3;
}
.feature-link:hover .link_content {
  background: linear-gradient(-45deg, #6b3cc3 0%, #df16ba 100%);
  color: #FFF;
}
.mid-area .content-area h1.trilyo-happy-customer-heading {
  font-size: 28px;
}
.trilyo-customer-feedback {
  float: left;
  width: 100%;
  padding-bottom: 50px;
  margin-top: 20px;
}
.trilyo-customer-feedback .owl-item {
  padding-top: 10px;
  padding-bottom: 10px;
}
.trilyo-customer-feedback .item {
  height: auto;
  background: #FFF;
  color: #000;
  display: flex;
  padding: 30px 60px;
  box-sizing: border-box;
  align-items: center;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  transform: scale(0.9);
}
.trilyo-customer-feedback .item {
  float: left;
  width: 100%;
  opacity: 0.5;
}
.trilyo-customer-feedback .item p {
  font-weight: 400;
}
.trilyo-customer-feedback .item h4.review-author {
  text-transform: uppercase;
  font-family: "brandon-bold";
  margin: 0;
  color: #4e00ad;
  margin-top: 20px;
  font-size: 16px;
}
.trilyo-customer-feedback .item h4.review-company {
  margin: 0;
  margin-top: 10px;
  font-size: 14px;
}
.trilyo-customer-feedback .center .item {
  background: linear-gradient(180deg, #7837c3 0%, #5343c5 100%);
  color: #FFF;
  transform: scale(1);
}
.trilyo-customer-feedback .center .item {
  opacity: 1;
}
.trilyo-customer-feedback .center .item p {
  color: #FFF;
}
.trilyo-customer-feedback .center .item h4.review-author {
  color: #FFF;
}
.footer-area {
  padding-left: 16px !important;
  padding-right: 16px !important;
  padding-top: 95px !important;
  padding-bottom: 95px !important;
}
.footer-area .content-area {
  width: 70% !important;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.footer-cta {
  background: #6b3cc3;
  color: #6b3cc3;
  border-radius: 30px;
  padding: 10px 20px;
  width: 200px;
  margin-top: 0px;
  border: none;
  height: 40px;
  font-family: "brandon";
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(-45deg, #6b3cc3 0%, #DF16BA 100%);
  position: relative;
  margin-top: 20px;
  font-weight: 400;
}
.footer-cta .link_content {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  background-color: none;
  border-radius: 30px;
  padding: 10px 20px;
  color: #FFF;
  font-weight: 400;
}
.footer-cta:hover {
  background: linear-gradient(-45deg, #542ba1 0%, #be0f9e 100%);
}
.footer-cta:hover .link_content {
  background-color: transparent;
  color: #FFF;
  -webkit-transition: background-color 200ms ease-in-out;
  -ms-transition: background-color 200ms ease-in-out;
  transition: background-color 200ms ease-in-out;
}
.footer-cta:active {
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.7) inset;
}
.fb-image-holder {
  width: auto !important;
}
.trilyo-feature-bottom {
  display: flex;
  justify-content: center;
}
.trilyo-feature-bottom .text-section {
  width: 600px !important;
  padding-right: 0px !important;
}
footer {
  background: #141740;
  color: #fff;
  float: left;
  width: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
  position: relative;
}
footer .centered {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
footer .centered .footer-logo {
  width: 20%;
}
footer .centered .footer-logo img.logo {
  padding: 30px 20px 10px 20px;
  max-width: 100%;
}
footer .centered .footer-contact {
  width: 25%;
}
footer .centered .footer-contact h3,
footer .centered .footer-contact p {
  float: left;
            width:100%;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 12px;
  font-family: "brandon-bold";
}
footer .centered .footer-contact h3 {
  padding-bottom: 0px !important;
  margin-bottom: 0px !Important;
}
footer .centered .footer-contact form {
  float: left;
  width: 100%;
  height: auto;
  position: relative;
}
footer .centered .footer-contact form input[type="email"] {
  padding: 10px 20px;
  box-sizing: border-box;
  background: #ffffff;
  color: #333;
  font-family: "circular-book";
  float: left;
  width: 100%;
  border: none;
  border-radius: 30px;
  line-height: initial;
  font-size: 13px;
}
footer .centered .footer-contact form input[type="email"]::placeholder {
  color: #333;
  opacity: 0.5;
  font-weight: 400;
}
footer .centered .footer-contact form input[type="email"]:-moz-placeholder {
  color: #333;
  opacity: 0.5;
  font-weight: 400;
}
footer .centered .footer-contact form input[type="email"]:-ms-placeholder {
  color: #333;
  opacity: 0.5;
  font-weight: 400;
}
footer .centered .footer-contact form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 37px;
  width: auto;
  padding: 0px 20px;
  background: linear-gradient(-45deg, #6b3cc3 0%, #DF16BA 100%);
  color: #FFF;
  font-family: "brandon-bold";
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 30px;
  font-size: 12px;
  border: none;
}
footer .centered .footer-contact form button:hover {
  background: linear-gradient(45deg, #542ba1 0%, #be0f9e 100%);
}
footer .centered .footer-contact form button:active {
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.7) inset;
}
footer .centered .footer-navigation {
  width: 70%;
}
footer .centered .footer-navigation .footer-links-holder {
  width: 16%;
  position: relative;
  float: left;
  margin: 0;
}
footer .centered .footer-navigation .footer-links-holder.trilyo-social {
  width: 34%;
}
footer .centered .footer-navigation .footer-links-holder .footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
}
footer .bottom-bar {
  position: relative;
  text-align: center;
  padding: 25px 0;
  margin-top: 60px;
  border-top: solid 1px rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.social-links {
  float: left;
  width: 100%;
  display: inline;
  padding-left: 0px;
  margin: 0;
  margin-left: -15px;
}
.social-links li {
  display: inline-block;
  box-sizing: border-box;
  opacity: 0.9;
  border-radius: 2px;
  margin-left: 10px;
}
.social-links li a {
  float: left;
  width: 30px;
  height: 30px;
  padding: 5px;
  box-sizing: border-box;
}
.social-links li a:hover svg {
  font-size: 14px;
  color: #ffffff;
  fill: #ffffff;
}
.social-links li svg {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  fill: rgba(255, 255, 255, 0.8);
}
@media only screen and (max-width: 749px) {
  footer .centered {
    flex-wrap: wrap;
  }
  footer .centered .footer-logo {
    max-width: 250px;
    width: 50%;
  }
  footer .centered .footer-contact {
    width: 50%;
    padding: 0 20px;
  }
  footer .centered .footer-navigation {
    width: 100%;
  }
  footer .centered .footer-navigation .footer-links-holder {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 500px) {
  section.mid-area{ padding-top: 45px; }
  section.mid-area h2{ padding:0 15px; }
  section.mid-area .content-area .trilyo-feature-block{ padding-top:0; padding-bottom:15px; }
  section.mid-area .content-area .trilyo-feature-block.text-right .image-section{ padding: 0 50px; }
  section.mid-area .content-area .trilyo-feature-block.text-left .image-section{ padding: 0 50px; }
  .highlighted-features li{ float:none !important; display:inline-block !important; }
  .image-section img{ height:auto; }

  footer .centered .footer-logo {
    width: 100%;
    margin: 0 auto;
  }
  footer .centered .footer-contact {
    width: 100%;
  }
  footer .centered .footer-navigation .footer-links-holder {
    width: 100%;
    padding: 0;
  }
  footer .centered .footer-navigation .footer-links-holder li {
    padding-left: 16px;
  }
  footer .centered .footer-navigation .footer-links-holder.trilyo-social {
    width: 90%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  footer .centered .footer-navigation .footer-links-holder.trilyo-social .social-links {
    margin-left: 0px;
    text-align: center;
  }
  footer .centered .footer-navigation .footer-links-holder h3 {
    margin: 0;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
  }
  footer .centered .footer-navigation .footer-links-holder h3::after {
    float: right;
    margin-right: 10px;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-top: 0px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    top: 50%;
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: transform .5s;
    transition: transform .5s;
  }
  footer .centered .footer-navigation .footer-links-holder .footer-links {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
  }
  footer .centered .footer-navigation .footer-links-holder.active h3::after {
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: 7px;
  }
  footer .centered .footer-navigation .footer-links-holder.active .footer-links {
    max-height: 10000px;
  }
}
footer {
  font-family: "circular-book";
}
footer h3 {
  font-weight: lighter;
  margin-bottom: 0;
  font-size: 12px;
  text-transform: uppercase;
  padding-bottom: 15px;
}
footer p,
footer li {
  font-weight: 400;
  margin: 10px 0;
  font-size: 14px;
  color: #d0d1d9;
}
footer a {
  color: #d0d1d9;
  text-decoration: none;
  -webkit-transition: color .5s background .5s;
  transition: color .5s background .5s;
}
footer a:hover {
  color: #65c2ed;
}

.footer-area .footer-cta{ padding: 10px 82px; }

.clearfix:before,
.clearfix:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
  clear: both;
}
body {
  margin: 0;
}
.trilyo-integration-image-holder {
  float: left;
  margin-top: -170px;
}

.product_icon {
  float: left;
  width: auto;
  margin-left: 0px;
  margin-right: 15px;
}
.product_name {
  float: left;
  width: auto;
  font-size: 32px;
  line-height: 32px;
}
.content-full {
  float: left;
  width: 100%;
  box-sizing: border-box;
}
.content-full h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0px;
}
.content-full p {
  font-size: 15px;
  line-height: 1.5;
}
.content-half {
  color: #FFF;
}
.content-half .success {
  display: none;
}
.content-half .logo-holder {
  display: flex;
  align-items: center;
}
.content-half form,
.content-half .success {
  float: left;
  background: #FFF;
  padding: 40px;
  box-sizing: border-box;
  color: #000;
  max-width: 400px;
  border-radius: 10px;
}
.content-half form input[type="text"],
.content-half .success input[type="text"],
.content-half form input[type="password"],
.content-half .success input[type="password"],
.content-half form input[type="email"],
.content-half .success input[type="email"] {
  float: left;
  width: 100%;
  padding: 5px 0px;
  box-sizing: border-box;
  border: none;
  font-family: "circular-book";
  border-bottom: solid 2px #aaa3bd;
  color: #000;
  padding-bottom: 0px;
  background: none;
}
.content-half form input[type="text"]::-webkit-input-placeholder,
.content-half .success input[type="text"]::-webkit-input-placeholder,
.content-half form input[type="password"]::-webkit-input-placeholder,
.content-half .success input[type="password"]::-webkit-input-placeholder,
.content-half form input[type="email"]::-webkit-input-placeholder,
.content-half .success input[type="email"]::-webkit-input-placeholder {
  opacity: 0.5;
  font-size: 14px;
}
.content-half form input[type="text"]::-moz-placeholder,
.content-half .success input[type="text"]::-moz-placeholder,
.content-half form input[type="password"]::-moz-placeholder,
.content-half .success input[type="password"]::-moz-placeholder,
.content-half form input[type="email"]::-moz-placeholder,
.content-half .success input[type="email"]::-moz-placeholder {
  opacity: 0.5;
  font-size: 14px;
}
.content-half form input[type="text"]:-ms-input-placeholder,
.content-half .success input[type="text"]:-ms-input-placeholder,
.content-half form input[type="password"]:-ms-input-placeholder,
.content-half .success input[type="password"]:-ms-input-placeholder,
.content-half form input[type="email"]:-ms-input-placeholder,
.content-half .success input[type="email"]:-ms-input-placeholder {
  opacity: 0.5;
  font-size: 14px;
}
.content-half form input[type="text"]:focus,
.content-half .success input[type="text"]:focus,
.content-half form input[type="password"]:focus,
.content-half .success input[type="password"]:focus,
.content-half form input[type="email"]:focus,
.content-half .success input[type="email"]:focus,
.content-half form input[type="text"]:active,
.content-half .success input[type="text"]:active,
.content-half form input[type="password"]:active,
.content-half .success input[type="password"]:active,
.content-half form input[type="email"]:active,
.content-half .success input[type="email"]:active {
  border-bottom: solid 2px #6b3cc3;
}
.content-half form input[type="text"]#phone,
.content-half .success input[type="text"]#phone,
.content-half form input[type="password"]#phone,
.content-half .success input[type="password"]#phone,
.content-half form input[type="email"]#phone,
.content-half .success input[type="email"]#phone {
  padding-left: 60px;
}
.content-half form .form-row,
.content-half .success .form-row {
  float: left;
  margin-top: 20px;
  width: 100%;
  position: relative;
}
.content-half form label,
.content-half .success label {
  font-size: 14px;
  margin-bottom: 0px !important;
  color: #615976;
  font-weight: 400;
  position: absolute;
  cursor: text;
  top: 6px;
  -moz-transition: all .1s linear;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}
.content-half form label.active,
.content-half .success label.active {
  top: -5px;
  font-size: 9px;
  opacity: 0.5;
}
.form-row input[type="checkbox"]:before{
  content:"";
  position: absolute;
  width:20px;
  height:20px;
  background:#FFF;
  border:solid 2px #999;
}
.form-row input[type="checkbox"]:checked::before{
  text-align: center;
  line-height: 17px;
  background:#6b3cc3 url(../images/check.svg);
  background-size:cover;
  border-color: #6b3cc3;
  color:#FFF;
  font-size: 10px;
}
.form-row input[type="checkbox"]+label.active{
  top: -16px !important;
  font-size: 14px !important;
  opacity: 1 !important;
  position: relative !important;
  left: 30px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select:none;
  -moz-user-select:none;
}

.form-row input[type="checkbox"].error::before{
  border-color: red;
}
.form-row input[type="checkbox"].error+label{
  color: red;
  
}



button{
  cursor: pointer !important;
}


button[type="submit"].feature-link {
  position: relative;
  width: 250px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0px;
  font-size: 0.9em;
  padding: 20px 0px;
  line-height: 0vh;
  -moz-transition: all .1s linear;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}
button[type="submit"].feature-link .link_content {
  line-height: 15px;
}
button[type="submit"].feature-link:hover {
  background: linear-gradient(-45deg, #542ba1 0%, #be0f9e 100%);
  background: -moz-gradient(-45deg, #542ba1 0%, #be0f9e 100%);
}
button[type="submit"].feature-link:active {
  background: linear-gradient(-45deg, #542ba1 0%, #be0f9e 100%);
  background: -moz-gradient(-45deg, #542ba1 0%, #be0f9e 100%);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2) inset;
}
button[type="submit"].feature-link:disabled {
  opacity: 0.5;
}
.form-text {
  float: left;
  width: 100%;
  text-align: left;
  font-size: 11px;
  margin-top: 20px !important;
  color: #999;
}
.form-text a {
  text-decoration: none;
  color: #DF16BA;
}
.iti-flag {
  background-image: url("../images/flags.png") !important;
}
.intl-tel-input {
  width: 100%;
  margin-top: 0px;
  margin-bottom: -3px;
}
.intl-tel-uinput {
  color: #000;
}
.intl-tel-input .country-list.dropup {
  width: 273px;
}
.intl-tel-input .country-list.dropup li {
  max-width: 273px;
}
p.error {
  float: left !important;
  width: 100%;
  text-align: left !important;
  display: none;
  margin: 0;
  padding: 10px 0px;
  padding-bottom: 0px;
  color: red;
  font-size: 11px;
}
.responsive-elem {
  display: none;
}
.no-down-padding {
  padding-bottom: 0px;
}
.flex-body {
  display: flex;
}
.justify-center {
  justify-content: center;
}
.owl-carousel .owl-stage {
  display: flex !important;
  align-items: center !important;
}
.owl-carousel .owl-stage .item {
  min-height: 400px !important;
}
.client-h {
  position: relative;
  margin-left: 0px;
  padding-left: 0px;
  text-align: center;
}
.client-h li {
  list-style: none;
  margin: 20px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  width: auto;
}
.article-image {
  position: absolute;
  width: 550px;
  height: 300px;
  background: #333;
}
.article-text {
  float: left;
  width: 100%;
  padding-left: 570px;
}
.header-padding,
.footer-padding {
  padding: 95px 0px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .iti-flag {
    background-image: url("../images/flags-2x.png");
  }
}
@media (max-width: 1200px) {
  .bottom-section .container {
    width: 100%;
  }
  ul.product-box {
    display: inline !important;
    text-align: center;
  }
  ul.product-box li {
    display: inline-block;
  }
  section.mid-area .content-area ul.product-box li .product-description{ min-height:75px; padding-bottom: 25px; }
}
@media (max-width: 950px) {
  .logo-holder {
    justify-content: center;
  }
  .list-box {
    padding: 0px 10px;
  }
  header .menu.action-menu {
    right: 10px;
  }
  header .menu ul li span.has-submenu ul.mega-menu{ width:100%; padding:0; }
  header .menu ul li span.has-submenu ul.mega-menu li a{ padding:15px 0; }
  header .menu ul li span.has-submenu ul li a .text-desc{ color:#fff; }
  header .menu ul li span.has-submenu ul li a .text-desc span{ font-size:12px; }
  .fb-image-holder {
    width: 50% !Important;
  }
  .content-half {
    width: 100% !important;
    padding: 20px 0px !Important;
    flex-flow: column;
  }
  .content-half img {
    float: left;
    width: 100%;
  }
  .content-half form {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .content-full h2,
  .content-full p {
    text-align: center;
  }
  header {
    padding: 35px 20px;
  }
  header .logo {
    margin-left: 15px;
  }
  .responsive-elem {
    display: block;
  }
  .responsive-elem.ham-menu {
    position: absolute;
    right: 16px;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .responsive-elem.call_to_action {
    padding: 10px 20px;
    border-radius: 20px;
    border: solid 1px #FFF;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: color 1000ms;
    transition: color 1000ms;
    color: #FFF;
    text-transform: uppercase;
    position: absolute;
    right: 60px;
    display: none;
    line-height: initial;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .responsive-elem.call_to_action a {
    color: #FFF;
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
  }
  header .logo {
    margin-left: 0px;
  }
  header.scrolled {
    padding-left: 10px;
  }
  header.scrolled .logo {
    width: 48px;
  }
  header.scrolled .call_to_action.responsive-elem {
    display: block;
  }
  .responsove-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -450px;
    width: 350px;
    background: #141740;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.2);
    padding-top: 40px;
    -moz-transition: all .2s linear;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    font-family: "brandon-bold";
  }
  .responsove-menu .res-logo {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .responsove-menu .menu {
    float: left;
    position: relative;
    left: 0;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    top:10%;
  }
  .responsove-menu .menu ul {
    float: left;
    width: 100%;
    text-align: left;
  }
  .responsove-menu .menu ul li {
    float: left;
    width: 100%;
    box-sizing: border-box;
  }
  .responsove-menu .menu ul li span {
    float: left;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }
  .responsove-menu .menu ul li span.has-submenu ul {
    float: left;
    position: relative;
    top: 0px;
    background: none;
    box-shadow: none;
    z-index: 2328309283;
    display: none !important;
  }
  .responsove-menu .menu ul li span.has-submenu:before {
    top: 25px;
  }
  .responsove-menu .menu ul li span.call_to_action {
    display: none;
  }
  .responsove-menu .menu ul li.active span:before {
    transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
  }
  .responsove-menu .menu ul li.active span.has-submenu ul {
    display: block !important;
  }
  .responsove-menu .menu.action-menu {
    float: left;
    position: relative;
    left: 0;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    color: #333;
  }
  .responsove-menu .menu.action-menu .call_to_action {
    margin-left: 20px;
  }
  .responsove-menu .responsive-elem {
    display: block;
  }
  .responsove-menu .responsive-elem.responsive-cross {
    position: absolute;
    bottom: 20px;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: solid 1px rgba(255, 255, 255, 0.5);
    line-height: 54px;
    text-align: center;
    cursor: pointer;
  }
  .responsove-menu .responsive-elem.responsive-cross svg {
    opacity: 0.5;
  }
  body.menu-active {
    overflow-y: hidden;
  }
  body.menu-active .responsove-menu {
    right: 0px;
  }
  .trilyo-page-background {
    display: none;
  }

  .left-content {
    position: relative !important;
  }
}
.right-sidebar {
  position: absolute;
  right: 0;
  top: 0;
  width: 250px;
  background: #fff;
}
.right-sidebar .selectbox {
  float: left;
  width: 100%;
  padding: 0px 10px;
  box-sizing: border-box;
  display: none;
  border: solid 1px #CCC;
  height: 35px;
  cursor: pointer;
}
.right-sidebar .selectbox p {
  line-height: 35px;
}
.right-sidebar.fixed {
  position: fixed;
  top: 50px;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.right-sidebar ul {
  padding-left: 40px;
  padding: 20px;
  box-sizing: border-box;
  margin-left: 15px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
}
.right-sidebar ul li {
  text-transform: capitalize;
  list-style: none;
  padding: 5px 10px;
  box-sizing: border-box;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #DF16BA;
  font-size: 14px;
  cursor: pointer;
}
.right-sidebar ul li.active {
  color: #07108e;
  padding: 15px;
  padding-right: 40px;
  background: #FFF;
  margin-left: -30px;
  width: 100%;
  box-sizing: content-box;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  font-size: 16px;
}
.right-sidebar ul li:hover {
  color: #07108e;
  padding: 15px;
  padding-right: 40px;
  background: #FFF;
  margin-left: -30px;
  width: 100%;
  box-sizing: content-box;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  font-size: 16px;
}
.right-sidebar::-webkit-scrollbar {
  width: 6px;
}
.right-sidebar::-webkit-scrollbar-track {
  background: none;
}
.right-sidebar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #333;
}
.terms_cond {
  padding-right: 250px;
  position: relative;
}
.terms_cond section {
  padding-left: 250px;
  padding-right: 50px;
}
.terms_cond section h3 {
  color: #06108f;
  font-weight: 700;
}
.heading-block {
  text-align: center;
}
.heading-block h2 {
  color: #06108f;
  font-weight: 700;
}
.terms_content {
  padding: 10% 0;
  color: #615976;
  padding-top: 80px;
}
.terms_content .heading-block {
  margin-bottom: 50px;
}
.terms_content .heading-block:after {
  content: '';
  display: block;
  width: 80%;
  border-top: 2px solid #444;
  opacity: 0.06;
  margin: 30px auto 0;
}
.terms_content p {
  margin-bottom: 30px;
}
.terms_content h3 {
  line-height: 1.5;
  margin: 0 0 30px;
}

@media (max-width: 815px) { 

  section.mid-area .content-area ul.product-box li .product-description{ min-height:inherit; }

}

@media (max-width: 1000px) {
  .terms_cond section {
    padding-left: 50px;
  }
}
@media (max-width: 749px) {
  .col-row .col {
    width: 100%;
  }
  .form-section .content-area {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  section.mid-area .content-area .trilyo-feature-block.text-right .text-section {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  .fb-image-holder {
    width: 100% !important;
    display: flex;
    justify-content: center;
  }
  .image-section img {
    width: 100% !important;
  }
  section.mid-area .content-area .trilyo-feature-block.text-left .text-section {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
  .content-area {
    width: 100% !Important;
  }
  section.mid-area .content-area ul.product-box {
    padding: 16px;
    box-sizing: border-box;
  }
  section.mid-area .content-area ul.product-box li {
    width: 100%;
    margin: 0;
    margin-top: 20px;
  }
  header .menu.action-menu {
    top: 0%;
  }
  .responsove-menu .menu {
    top: 0%;
  }
  .signup-body {
    display: block;
  }
  .terms_cond {
    padding-right: 0px;
  }
  .terms_cond .right-sidebar {
    position: relative;
    float: left;
    width: 100%;
    margin-bottom: 30px;
    padding: 0px 20px;
    overflow: initial;
  }
  .terms_cond .right-sidebar .selectbox {
    display: block;
    position: relative;
  }
  .terms_cond .right-sidebar .selectbox p {
    margin-bottom: 0px;
    text-transform: capitalize;
    max-width: 100%;
    padding-right: 20px;
    box-sizing: border-box;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
  .terms_cond .right-sidebar .selectbox :after {
    content: '';
    position: absolute;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #333;
    top: 13px;
  }
  .terms_cond .right-sidebar ul {
    margin-left: 0px;
    position: absolute;
    background: #FFF;
    top: 34px;
    left: 20px;
    right: 20px;
    display: none;
    height: 400px;
    overflow-y: auto;
    overflow-x: initial;
    border: solid 1px #CCC;
    box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.1);
  }
  .terms_cond .right-sidebar ul li.active {
    width: 100%;
    padding: inherit;
    box-shadow: none;
    margin-left: 0px;
  }
  .terms_cond .right-sidebar ul li:hover {
    width: 100%;
    padding: inherit;
    box-shadow: none;
    margin-left: 0px;
  }
  .terms_cond .right-sidebar.fixed {
    position: fixed;
    top: 70px;
  }
  .terms_cond .right-sidebar.active .selectbox p:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -moz-transform: rotate(180deg);
  }
  .terms_cond .right-sidebar.active ul {
    display: block;
  }
}
@media (max-width: 500px) {
  .responsove-menu {
    width: 100%;
    right: -110%;
  }
  .list-box ul {
    padding-left: 0px;
  }
  section.left-section .content-area p {
    padding: 30px;
  }
  .section-half {
    width: 100% !important;
  }
  .hero-content-section .content-area .button-h button,
  section.mid-area .content-area .button-h button {
    margin: 5px;
  }
  .trilyo-feature-block {
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 15px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .fb-image-holder {
    width: 100% !important;
    margin-left: 0px;
    display: flex;
    justify-content: center;
  }
  .trilyo-feature-block {
    padding: 0px;
    box-sizing: border-box;
    display: flex;
    flex-flow: column !important;
  }
  .trilyo-integration-image-holder {
    margin-left: 0px;
  }
  .content-full {
    padding-left: 0px !important;
  }
  section.mid-area .content-area .trilyo-feature-block.text-left .text-section {
    text-align: center;
  }
  section.mid-area .content-area .trilyo-feature-block.text-right .text-section {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }
  .image-section img {
    max-width: 100%;
    height: auto;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .feature-link {
    left: 50%;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .trilyo-feature-bottom {
    display: flex;
    justify-content: center;
    flex-flow: column;
  }
  .trilyo-feature-bottom .text-section {
    width: 100% !important;
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
  .terms_cond section {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 350px) {
  section.left-section .content-area p {
    padding: 30px 5px;
  }
}
.trilyo-half-background {
  position: absolute;
  top: 120vh;
  width: 50%;
  opacity: 0.5;
  height: 900px;
  left: 0px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
.trilyo-half-background:before {
  content: '';
  float: left;
  width: 100%;
  height: 100%;
  background: url(../images/trilyo_logo_greyback.svg);
  background-position: right;
  background-repeat: no-repeat;
}
.trilyo-half-background2 {
  position: absolute;
  top: 250vh;
  width: 50%;
  opacity: 0.8;
  height: 900px;
  right: 0px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
.trilyo-half-background2:before {
  content: '';
  float: left;
  width: 100%;
  height: 100%;
  background: url(../images/trilyo_logo_greyback.svg);
  background-position: left;
  background-repeat: no-repeat;
}
.hotel-signboard-off {
  animation: appear 1s linear infinite;
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  76% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media (max-height: 768px) {
  .signup-body {
    padding-top: 80px;
  }
}
@media (max-height: 650px) {
  .hero-content-section {
    flex-flow: column;
    height: auto !important;
  }
  .hero-content-section .content-area {
    left: 50%;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .hero_background_image {
    position: static !important;
  }
}
.horizontal_divider {
  float: left;
  margin-top: 0;
  margin-bottom: 0px;
  position: relative;
  width: 100%;
  height: 2px;
}
.horizontal_divider:before {
  content: '';
  position: absolute;
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
  left: 16px;
  right: 16px;
  opacity: 0.2;
}
.horizontal_divider.full_width:before {
  left: 0;
  right: 0;
}
.book-desc h1 {
  text-align: left !important;
}
.bookblock {
  padding-top: 0px !important;
}
.bookblock h2 {
  text-align: center;
  margin-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
  color: #4e00ad;
}
.bookblock h2:before {
  content: '';
  position: absolute;
  width: 100px;
  height: 1px;
  background: #4e00ad;
  bottom: 0;
  left: 50%;
  margin-left: -50px;
}
.book-download-bottom-cta {
  width: auto;
  margin-top: 30px;
  background: none;
  border: solid 1px #4e00ad;
  border-radius: 40px;
  padding: 10px 20px;
  color: #4e00ad;
}
.book-download-bottom-cta:hover {
  background: #4e00ad;
  color: #FFF;
}

.owl-carousel.trilyo-customers .owl-item img{
  width: 140px !important;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.owl-carousel.trilyo-customers .owl-stage .item{
  min-height: auto !important;
  display: flex;
  align-items: center;
  padding: 20px;
}



.cookie-information{
    position: fixed;
    bottom: -300px;
    left: 0;
    right: 0;
    background: #FFF4E6;
    box-shadow: 0px -3px 10px 0px rgba(0, 0, 0, 0.2);
    z-index: 23289378293728;
    padding: 10px;
    -moz-transition: all .5s linear;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
  }
  .cookie-information.active{
      bottom: 0px;
  }
  .cookie-information p{
     font-size: 13px;
      margin-bottom: 0px;
      flex: 1;
  }
  .footer-cta{
    background: linear-gradient(-45deg, #542ba1 0%, #be0f9e 100%);
      border: none;
      border-radius: 20px;
      color: #FFF;
      text-align: center;
      text-transform: uppercase;
      padding: 10px 40px;
      font-size: 12px;
      box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
      font-weight: 600;
      -moz-transition: all .2s linear;
      -webkit-transition: all .2s linear;
      transition: all .2s linear;
      font-family: "brandon-bold";
      cursor: pointer;
      margin-right: 10px;

  }


/* custom.css merge */
.hero-section {
  float: left;
  width: 100%;
  height: 100vh;
  position: relative;
  padding-top: 80px;
}
.hero-section .product-logo {
  margin-bottom: 40px;
}
.hero-section .product-logo img {
  width: 130px;
  margin-left: 0px;
  height: auto;
  margin-right: 10px;
}
.hero-section .product-logo h1 {
  font-size: 60px;
  color: #07108e;
  font-weight: 800;
}
.hero-section .text-block {
  flex-basis: 50%;
  flex-grow: 0;
  flex-shrink: 0;
  box-sizing: border-box;
  padding-left: 100px;
  max-width: 450px;
}
.hero-section .text-block h1 {
  color: #5d41c5;
  font-size: 40px;
  font-weight: 900;
}
.hero-section .text-block p.description{
  color: #7937c2;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
}
.hero-section .text-block p {
  max-width: 450px;
}
.hero-section .text-block button {
  width: 180px;
}
.hero-section .text-block .ghost_btn {
  background: #07108e;
  border-radius: 20px;
  color: #07108e;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 20px;
  font-size: 12px;
  position: relative;
  font-weight: 600;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  border: none;
}
.hero-section .text-block .ghost_btn:hover {
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.6);
}
.hero-section .text-block .ghost_btn:active {
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.6) inset;
}
.hero-section .text-block .ghost_btn:before {
  position: absolute;
  background: #FFF;
  border-radius: 20px;
  content: '';
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  z-index: 232;
}
.hero-section .text-block .ghost_btn span {
  position: relative;
  z-index: 3232;
  color: #07108e;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}
.hero-section .image-block {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 70%;
}
.hero-section.video-b {
  overflow: hidden;
}
.hero-section.video-b video {
  position: absolute;
  width: 100%;
  top: 50%;
  bottom: 0;
  left: 50%;
  object-fit: cover;
  transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  height: 100%;
}
.hero-section.video-b .about-headline {
  position: absolute;
  bottom: 60px;
  color: #FFF;
  width: 100%;
  padding: 0px 16px;
  max-width: 1000px;
  left: 50%;
  transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 6em;
  font-weight: 800;
}
.hero-section .black-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
}
.text-primary-color {
  color: #5d41c5;
}
.grey_col {
  color: #999;
}
.gradient-grey-background {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fcfcfe+0,ffffff+100 */
  background: #fcfcfe;
  /* Old browsers */
  background: -moz-linear-gradient(top, #fcfcfe 0%, rgba(255, 255, 255, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #fcfcfe 0%, rgba(255, 255, 255, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #fcfcfe 0%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfe', endColorstr='#ffffff', GradientType=0);
  /* IE6-9 */
}
.immediate-hero {
  padding-top: 50px;
  position: relative;
}
.immediate-hero h1 {
  font-size: 30px;
  font-weight: 700;
  color: #4e00ad;
}
.features-box-holder {
  margin-top: 30px;
}
.features-box-holder .feature-box {
  width: 200px;
  height: 250px;
  margin: 10px;
  padding: 20px;
  padding-top: 0px;
  box-sizing: border-box;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
  background: #FFF;
  border-radius: 5px;
}
.features-box-holder .feature-box .feature-text {
  color: #4e00ad;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 0px;
  text-transform: uppercase;
}
.oth-feature-block {
  padding: 50px 0px;
}
.oth-feature-block img {
  height: 440px;
  width: auto;
}
.oth-feature-block .text-block h3 {
  color: #6b3cc3;
}
.oth-feature-block .feature-box {
  padding: 8px 0px;
  box-shadow: none;
  height: auto;
  margin-top: 0px;
}
.about-content {
  padding: 100px 30px;
  box-sizing: border-box;
  float: left;
}
.about-content h1 {
  color: #07108e;
}
.about-content .about-text {
  padding: 30px 80px;
  max-width: 80%;
}
.about-content .about-text span {
  color: #6b3cc3;
  font-size: 28px;
  font-weight: 700;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.about-image-h {
  float: left;
  width: 100%;
  height: 700px;
  position: relative;
  margin-top: 50px;
}
.about-image-h .about-image-inside-text {
  float: right;
  width: 50%;
  background: #6b3cc3;
  color: #FFF;
  position: relative;
  top: -50%;
  transform: translateY(210px);
  padding: 50px;
  box-sizing: border-box;
  font-size: 22px;
  border-radius: 10px;
}
.about-image-h .team-image {
  border-radius: 10px;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.2);
}
.about-image-h .team-image.image-2 {
  position: absolute;
  top: -30px;
  left: 670px;
}
.about-image-h .team-image.image-3 {
  position: absolute;
  top: 451px;
  right: calc(52%);
}
.article-holder .row {
  margin-bottom: 20px;
}
.article-image {
  position: absolute;
  width: 550px;
  height: auto;
  overflow: hidden;
  border-radius: 5px;
  left: 15px;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.2);
}
.article-text {
  float: left;
  width: 100%;
  padding-left: 45px !important;
  padding-top: 16px;
  padding-bottom: 16px;
}
.article-text h1 {
  color: #07108e;
  font-size: 1.7em;
  font-weight: 700;
  padding-right: 20px;
  box-sizing: border-box;
}
.article-text .article-type {
  text-transform: uppercase;
  font-size: 12px;
  font-family: "brandon-bold";
}
.article-text p {
  font-size: 14px;
  color: #141740;
}
.article-text .article-action a {
  color: #DF16BA;
  text-transform: uppercase;
  font-family: "brandon-bold";
  font-weight: 600;
}
.article-blocks .article-block {
  border-radius: 5px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
  margin: 0px;
  margin-top: 30px;
  box-sizing: border-box;
  overflow: hidden;
}
.article-blocks .article-block .text-block {
  padding: 20px;
  box-sizing: border-box;
  float: left;
}
.article-blocks .article-block .text-block h2 {
  font-size: 19px;
  line-height: 30px;
  color: #07108e;
}
.article-blocks .article-block .text-block p {
  font-size: 14px;
}
.article-blocks .article-block .text-block .read-more {
  font-family: "brandon-bold";
  color: #DF16BA;
  text-transform: uppercase;
  font-size: 12px;
}
.header-padding,
.footer-padding {
  padding: 95px 0px;
}
.pricing-hero-section {
  float: left;
  width: 100%;
  height: auto;
  padding-top: 130x;
  position: relative;
  background: linear-gradient(-115deg, #5542C5 0%, #A43FBF 100%);
  height:400px;
}
.pricing-hero-section .text-block {
  padding-bottom: 185px;
  color: #FFF;
  width: 100%;
  max-width: 700px;
  margin-top: -30px;
}
.pricing-hero-section .text-block h1 {
  font-size: 30px;
  margin-bottom: 15px;
}
.pricing-hero-section .text-block p {
  opacity: 0.9;
}
.pricing-hero-section .grass {
  position: absolute;
  bottom: 0;
  left: -40px;
  right: 0;
  height: 100px;
  background: url(../images/grass.svg);
}
.pricing-block {
  float: left;
  width: 100%;
  margin-top: -155px;
  margin-bottom: 50px;
}
.pricing-block .tab-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  max-width: 100%;
  overflow-y: hidden;
  overflow-x: auto;
  height: 80px;
  top: -35px;
}
.pricing-block .container {
  max-width: 1100px;
  
}

.pricing-block .container .divider {
  position: absolute;
  left: 50%;
  width: 2px;
  background: #F3F3f3;
  bottom: 20px;
  top: 55px;
  margin-left: -1px;
}
.pricing-block .container .feature-list {
  columns: 2;
  -webkit-columns: 2;
  -moz-column-count: 2;
  padding-left: 0px;
  margin-left: 0px;
  padding-top: 35px;
}
.pricing-block .container .feature-list li {
  list-style: none;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.pricing-block .container .feature-list li h4 {
  color: #7937c2;
  font-size: 18px;
}
.pricing-block .container .feature-list li p {
  color: #999;
  font-size: 14px;
}
.pricing-block .tab-holder {
  position: absolute;
  top: 0px;
  height: 70px;
  background: #FFF;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: 35px;
}
.pricing-block .tab-holder .tab-indicator {
  position: absolute;
  left: 0;
  width: 130px;
  top: 0;
  bottom: 0;
  background: linear-gradient(-90deg, #ff7f47 0%, #fdb615 100%);
  z-index: 1;
  border-radius: 35px;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}
.pricing-block .tab-holder ul {
  float: left;
  width: 100%;
  display: inline;
  overflow-x: auto;
  white-space: nowrap;
  margin-left: 0px;
  padding-left: 0px;
  position: relative;
  z-index: 22;
}
.pricing-block .tab-holder ul li {
  display: inline-block;
  line-height: 40px;
  padding: 15px 30px;
  box-sizing: border-box;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: #4e00ad;
  font-family: "brandon-bold";
  cursor: pointer;
}
.pricing-block .tab-holder ul li.active {
  color: #FFF;
}
.pricing-block .logo {
  font-size: 24px;
  color: #542ba1;
  font-weight: 800;
}
.pricing-block h4.room_type {
  padding-top: 20px;
  color: #7937c2;
  font-size: 30px;
}
.pricing-block h4.room_type.flash {
  animation-name: flash;
  animation-duration: 1s;
}
.pricing-block .price_type.flash {
  animation-name: flash;
  animation-duration: 1s;
}
.pricing-block .price-block {
  
}
.pricing-block .price-block span.flash {
  animation-name: flash;
  animation-duration: 1s;
}
@keyframes flash {
  from {
    background-color: #fff0c1;
  }
  to {
    background-color: transparent;
  }
}
.button-holder .call_to_action {
  background: linear-gradient(-45deg, #542ba1 0%, #be0f9e 100%);
  border: none;
  border-radius: 20px;
  color: #FFF;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 20px;
  font-size: 12px;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  font-family: "brandon-bold";
}

.button-holder .call_to_action:hover {
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.6);
}
.button-holder .call_to_action:active {
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.6) inset;
}
.other-products {
  position: relative;
}
.other-products .row {
  background: #FFF;
  border-radius: 5px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
  padding-top: 50px;
  padding-bottom: 30px;
}
.other-products .logo {
  font-size: 24px;
  color: #542ba1;
  font-weight: 800;
}
.other-products .product-descr {
  width: 400px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.other-products .product-image {
  margin-top: 30px;
}
.other-products .divider {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  top: 20px;
  bottom: 20px;
  background: #F3F3f3;
}
.other-products .hdivider {
  position: absolute;
  top: 50%;
  height: 2px;
  background: #F3F3f3;
  left: 10px;
  right: 10px;
}
@media (max-width: 1000px) {
  .image-2,
  .image-3 {
    display: none;
  }
  .team-image {
    float: left;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 859px) {
  .about-image-h {
    height: auto;
  }
  .about-image-h .team-image {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .about-image-h .about-image-inside-text {
    width: 100%;
    top: 0;
    transform: translateY(0);
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.2);
  }
  .about-content .about-text {
    padding: 30px 0px;
    width: 100%;
    max-width: 100%;
  }
  .about-headline {
    font-size: 2em !important;
    top: 50%;
    bottom: auto;
  }
}
@media (max-width: 570px) {
  .feature-box {
    width: 100% !important;
    margin: 0 !Important;
    margin-top: 10px !Important;
  }
  .hero-section {
    padding-top: 60px;
  }
  .hero-section .text-block {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
  }
  .hero-section .product-logo img {
    width: 80px;
  }
  .hero-section .product-logo h1 {
    font-size: 40px;
  }
}
@media (max-width: 950px) {
  .tab-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    max-width: 100%;
    overflow-x: auto;
    height: 70px;
  }
  .tab-holder {
    position: absolute;
    left: 0 !important;
    border-radius: 0px;
    transform: none !important;
    border-radius: 0px !important;
  }
  .tab-holder .tab-indicator {
    border-radius: 0px !important;
  }
  .other-products .col-md-6 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media (max-height: 500px) {
  .hero-section {
    padding-top: 95px;
    height: auto;
    padding-bottom: 95px;
    display: block !important;
  }
}
button:active {
  outline: none !important;
}
button:focus {
  outline: none !important;
}
.book-block {
  padding: 30px !important;
}
.book-block h2 {
  font-size: 20px;
  padding: 20px 0px;
  text-align: center;
}
.book-block button {
  border: solid 1px #6b3cc3;
  color: #6b3cc3;
  background: none;
  padding: 10px 20px;
  border-radius: 40px;
  width: auto;
  font-weight: 700;
}
.book-block button:hover {
  background: #6b3cc3;
  color: #FFF;
}
.book-image {
  box-sizing: border-box;
  padding-right: 0px;
  margin: 20px;
}
.book-image img {
  max-width: 500px;
  box-shadow: 0px 30px 100px 0px rgba(0, 0, 0, 0.05);
}
.book-desc {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 30px;
  padding-left: 30px;
}
.book-desc p {
  margin: 10px;
}
.book-desc h2 {
  margin: 10px;
  font-size: 14px;
}
.book-desc ul {
  padding-left: 26px;
}
.single-book-h form {
  box-shadow: 0px 3px 20px 0px #CCC;
}




.features-holder ul li {
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
  padding: 20px;
}

.features-holder ul {
  display: flex;
  justify-content: left;
  margin-left: -20px;
  padding-left: 0px;
}
.features-holder ul li h5 {
  font-size: 3em;
}
.features-holder ul li p {
  margin-top:0px !important;
  text-align: center;
}

.points {
  padding-left: 15px;
}

@media (max-width: 500px) {
  .feature-list {
    columns: 1 !important;
    -webkit-columns: 1 !important;
    -moz-columns: 1 !important;
    width: 100% !important;
  }
  .other-products .product-descr {
    width: 95%;
  }
  .features-holder ul{
    flex-flow: column;
  }
}

.price-block-header {
  padding: 20px;
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-top: 20px;
  float: left;
  background: #FFF;
  height: 300px;
  position: relative;
  border:solid 1px rgba(0, 0, 0, 0.05);
  width:100%;
}
.price-block-header.extra-shadow{
  box-shadow: 0px 3px 40px 0px rgba(0, 0, 0, 0.1);
}
.price-block-header .badge{
   position: absolute;
   left: -1px;
   right: -1px;
   background: #58ce69;
   color: #FFF;
   text-transform: uppercase;
   top:-25px;
   border-radius: 0px;
   padding: 8px 0px;
   border-top-left-radius: 5px;
   border-top-right-radius: 5px;
}
.price-block-header h2{
  color: #4e00ad;
  height:40px;
}
.price-block-header p{
  color: #999;
  font-weight: 300;
  font-size: 14px;
  width: 300px;
  max-width: 100%;
  margin:0 auto;
  margin-bottom:10px;
}
.price-block-header h4{
  left: auto;
}
.price-block-header .bottom-h{
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}
.price-block-header .bottom-h p{
  height: 40px;
}
.price-block-header .bottom-h h4{
  font-size: 30px;
}
.price-block-header .bottom-h button{
  width: 100%;
  background: linear-gradient(-45deg, #542ba1 0%, #be0f9e 100%);
  border: none;
  border-radius: 20px;
  color: #FFF;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 40px;
  font-size: 12px;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  font-family: "brandon-bold";
  cursor: pointer;
  max-width: 300px;
}

.price-block-header .bottom-h button.highlighted-cta{
  background: linear-gradient(-45deg, #00A82C 0%, #58CE69 100%);
}

.price-body ul li{
  list-style: none;
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}
.price-body ul{
  padding-left: 0px;
  padding: 20px 0px;
  float: left;
  width: 100%;
  margin-bottom: 0px;
}
.price-body ul.main-features{
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
.price-body ul.main-features li{
  font-weight: 700;
}
.price-struc{
  font-size: 13px;
  color: #999;
  margin-bottom: 5px;
}

ul.two-columns{
  column-count: 2;
}

ul.two-columns li{
  text-align: center;
}

ul.two-columns li:nth-child(1){
  margin-top: 0px;
}

.room-form{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  margin-bottom: 20px;
}
.room-form input{
  border:none;
  border-bottom: solid 1px #CCC;
  height: 60px;
  text-align: center;
  font-size: 30px;
  max-width: 100%;
  width: 200px;
}
.room-form input:focus{
  border-bottom: solid 2px #6b3cc3;
}
.room-form label{
  font-size: 12px;
  padding-top: 5px;
  position: absolute;
  -moz-transition: all .1s linear;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
  top:20px;
  cursor: pointer;
}

.room-form input:focus+label,.room-form input+label.hasValue{
  top: -10px;
  opacity: 0.3;
}

.highlighted-features{
  padding-left: 0px;
  margin-left: -5px;
  float: left;
  width: 100%;
}

.highlighted-features li{
  float: left;
  width: auto;
  list-style: none;
  display: inline-block;
  position: relative;
  display: flex;
  align-items: center;
  margin:5px 5px;
  font-size: 14px;
}
.highlighted-features li:before{
  content: '';
  float: left;
  width: 15px;
  height: 15px;
  background: #4e00ad;
  border-radius: 50%;
  margin-right: 10px;
}

.highlighted_feature{
  color: #999;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}
.highlighted_feature:after{
  content: '';
  float: right;
  width: 100%;
  height: 1px;
  background: #EEEEEE;
  display: flex;
  flex: 1;
  margin-top: 10px;
}

.product-descr{
  margin: 0 auto;
  width:800px;
  margin-top: 10px; 
}

@media(max-width:768px){
  .footer-cta{
      width: 100%;
      margin-top: 5px;
  }

  ul.two-columns{
    column-count: 1;
  }
  .product-descr{
    width: 100%;
  }
}

p.offer{
  padding: 20px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 15px;
  border-left: solid 2px #FFF;
  border-radius: 3px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

h4{
  font-size: 20px;
  /* text-transform: uppercase; */
  /* font-size: 12px; */
  left: -15px;
  position: relative;
  font-weight: 400;
}


.no-login .login{
  display: none !important;
}
.striked-off{
  text-decoration:line-through;
}

.mw-700{
  max-width: 700px;
  margin: 0 auto;
}

@media(max-width:320px){
  header .menu ul li span.has-submenu ul li a .icon-img{ width:30px; margin: 0 5px 0 0; }

}