
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Raleway", sans-serif;
  color: #444444;
}

a {
  color: blue;
}

a:hover {
  color: #1eb4ff;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*------------bu--------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

@media (min-width: 320px) and (max-width: 480px) {

.demo h4{
  margin: 0 0 20px 0;
  font-family: Raleway,sans-serif;
  color: #797979;
  font-size: 19px;
  font-weight: 600;
}
.demo .demoimg{  
  position:relative;
}
.demo .kiosk{
  position: absolute;
      top: 89px;
    left: 45px;
    font-size: 12px;
    color:#332BCC;
    border:1px solid rgba(0,0,0,.1);
    border-radius: 10px;
    padding:5px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
}
.demo .customer{
  position: absolute;
  top: 10px;
    left: 60px;
     font-size: 12px;
    color:#332BCC;
    border:1px solid rgba(0,0,0,.1);
    border-radius: 10px;
    padding:5px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
}

.demo .counter{
  position: absolute;
  top: 59px;
    left: 192px;
     font-size:10px;
    color:#332BCC;
    border:1px solid rgba(0,0,0,.1);
    border-radius: 10px;
    padding:5px;
    font-family: Raleway,sans-serif;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
}

.demo .dashboard{
  position: absolute;
    top: 70px;
    left: 275px;
     font-size: 12px;
    color:#332BCC;
    border:1px solid rgba(0,0,0,.1);
    border-radius: 10px;
    padding:5px;
    font-family: Raleway,sans-serif;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
}
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 0 0;
  background: #f4f4f4; 
 box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);

}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Open Sans", sans-serif;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #576971;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 80px;
  width: 211px;
}

@media (max-width: 768px) {
  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links a {
  color: #7b909a;
  padding: 12px 0 12px 6px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

.header-social-links a:hover {
  color: #009cea;
}

@media (max-width: 768px) {
  .header-social-links {
    padding-right: 48px;
  }
}


/*--------------------------------------------------------------
#  Social distance
--------------------------------------------------------------*/


.social .section-title h2 {
    font-size: 34px;
    line-height: 1.284em;
    font-weight: 700;
    font-family: Raleway,sans-serif;
}

.social .section-title h4 {
       font-size: 18px;
    line-height: 1.508em;
    font-weight: 500;
    font-family: Raleway,sans-serif;
}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 5px;
  float: left;
  list-style: none;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #000000;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
  font-family: "Raleway", sans-serif;
} 

.nav-menu a:hover, .nav-menu .active1 > a, .nav-menu li:hover > a {
  color: white;
  border-radius: 3px;
  background-color: #0101cc;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  list-style: none;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: white;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  background-color: white;
  color: #969696;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #0101cc;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -153%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -153%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 21px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #0101cc;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #364146;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #009cea;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(32, 38, 41, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section margin-top: 70px;
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background-color: #f8f8f8;
  background-image: url("../img/hero-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;  
 
}

#hero h1 {
  margin: 0 0 30px 0;
  font-size: 70px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  letter-spacing: 0px;
  line-height: 83px;
  color:#212121;
}

#hero h2 {
  color: #5f5f5f;
  font-family: 'Raleway';
  margin-bottom: 39px;
  line-height: 35px;
  font-weight: 400;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 32px;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 15px;
  transition: 0.5s;
  color: white;
  background: #0101cc;
}

#hero .btn-get-started:hover {
  background: black;
}

#hero .hero-img {
  text-align: center;
}

#hero .hero-img img {
  width: 100%;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero h1 {
    font-size: 32px;
    line-height: 40px;
  }
  #hero h2 {
    font-size: 20px;
  }
}




/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7f8f9;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
  font-family: "Poppins", sans-serif;
 
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# demo start

--------------------------------------------------------------*/
.demo h4{
  margin: 0 0 20px 0;
  font-family: Raleway,sans-serif;
  color: #797979;
  font-size: 19px;
  font-weight: 600;
}
.demo .demoimg{
  position: relative;
}
.demo .kiosk{
  position: absolute;
      top: 249px;
    left: 265px;
    font-size: 12px;
    color:#332BCC;
    border:1px solid rgba(0,0,0,.1);
    border-radius: 10px;
    padding: 7px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
     font-weight: 500;
}
.demo .customer{
  font-weight: 400;
  position: absolute;
  top: 108px;
    left: 385px;
     font-size: 12px;
    color:#332BCC;
    border:1px solid rgba(0,0,0,.1);
    border-radius: 10px;
    padding: 7px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
}

.demo .counter{
   font-weight: 400;
  position: absolute;
  top: 225px;
    left: 562px;
     font-size: 12px;
    color:#332BCC;
    border:1px solid rgba(0,0,0,.1);
    border-radius: 10px;
    padding: 7px;
    font-family: Raleway,sans-serif;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
}

.demo .dashboard{
   font-weight: 400;
  position: absolute;
    top: 230px;
    left: 785px;
     font-size: 12px;
    color:#332BCC;
    border:1px solid rgba(0,0,0,.1);
    border-radius: 10px;
    padding: 7px;
    font-family: Raleway,sans-serif;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
}


/*--------------------------------------------------------------
# demo end
---------- ----------------------------------------------------*/

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about{
  background-color: white;
}
.about {
  padding: 0;
  margin-top: 40px;
}

.about .container {
  padding: 60px 50px;
}

@media (max-width: 992px) {
  .about .container {
    padding: 0px;
  }
}

.about .content h2 {
  font-weight: 700;
  margin-bottom: 22px;
  font-size: 34px;
  color: #364146;
  font-family: "Raleway", sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #28a745;
}

.about .content p:last-child {
  margin-bottom: 0;
}

#about .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 15px;
  color: #fff;
  background: #0101cc;
  width: fit-content;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-bottom: 40px;
  background-color: #f8f8f8;
}

.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 16px;
  transition: 0.3s;
  color: #364146;
  transition: 0.3s ease-in-out;
  border-radius: 0;
  border-left: 4px solid #fafbfb;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: black; 
}
.features .nav-link h2 {
  
  margin: 0;

}

.features .nav-link p {
  
  font-family: 'Raleway',sans-serif;
  font-size: 14px;
  margin-bottom: 0;
}

.features .nav-link:hover {
  background: #fafbfb;
}

.features .nav-link:hover h4 {
  color: #364146;
}

.features .nav-link.active {
  border-radius: 0;
  border: 0;
  border-left: 4px solid #0101cc;
  background: #fafbfb;
}

.features .nav-link.active h2 {
  color: #0101cc;

}

.features .tab-pane.active {
  -webkit-animation: slide-down 0.5s ease-out;
  animation: slide-down 0.5s ease-out;
}

.features .tab-content {
  text-align: right;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



/*--------------------------------------------------------------
# sign
--------------------------------------------------------------*/

.kiosk,.token,.customer,.performance,.sign h3{
 
  font-size: 22px;
    line-height: 1.2em;
    font-weight: 700;
    font-family: Raleway,sans-serif;
}

 p.context{
  font-family: 'Raleway',sans-serif;
    font-size: 14px;
    margin-bottom: 0;
    color: #444444;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0;
  color:white;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  text-align: center;
  border-bottom: 3px solid #fff;
}

.services .icon-box:hover {
  transform: translateY(-5px);
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: white;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  color:white;
}

.services .icon-box-pink .icon i {
  color: #ff689b;
}

.services .icon-box-pink:hover {
  border-color: #ff689b;
}

.services .icon-box-cyan .icon i {
  color: #3fcdc7;
}

.services .icon-box-cyan:hover {
  border-color: #3fcdc7;
}

.services .icon-box-green .icon i {
  color: #41cf2e;
}

.services .icon-box-green:hover {
  border-color: #41cf2e;
}

.services .icon-box-blue .icon i {
  color: #2282ff;
}

.services .icon-box-blue:hover {
  border-color: #2282ff;
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.services {
  height: 400px;
  background:url("../img/que2.png");
  background-size: cover;
  padding: 80px 0;
}

 .cta p.description {
  font-family: Raleway,sans-serif;
  color: #797979;
  font-size:14px;
}

.cta h5 {
    font-size: 19px;
    line-height: 1.4em;
    font-weight: 600;
    font-family: Raleway,sans-serif;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #0000cc;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
  margin-top: 10px;
}
.pricing .section-title{
     text-align: center;
}
.pricing .section-title h2{
      font-size: 34px;
    line-height: 1.284em;
    font-weight: 700;
    font-family: Raleway,sans-serif;
}

.pricing .section-title h4 {
    font-size: 18px;
    color: #797979;
    line-height: 1.508em;
    font-weight: 500;
    font-family: Raleway,sans-serif;
}



.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #0000cc;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {

  background: #0000cc;
  display: inline-block;
  padding: 13px 30px;
 border-bottom-right-radius: 15px;
    border-top-left-radius: 15px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: black;
}

.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
}

.pricing .featured .buy-btn {
  background: #0000cc;
}

.pricing .featured .buy-btn:hover {
  background: black;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  padding: 0 40px;
  outline: none;
  color: #616161;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #87c1ea;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 30px;
  position: absolute;
  right: 0;
  left: -10px;
  top: -3px;
  color: #0000cc;
}

.faq .faq-list p {
  margin-bottom: 0;
  color: #797979;
  font-size: 15px;
  padding: 26px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #616161;

}

.faq .faq-list a.collapsed:hover {
  color: #0000cc;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}
.faq .section-title{
     text-align: center;
}
.faq .section-title h2{
  color: #202020;
      font-size: 34px;
    line-height: 1.284em;
    font-weight: 700;
    font-family: Raleway,sans-serif;
}

.faq .section-title h4 {
    font-size: 18px;
    color: #797979;
    line-height: 1.508em;
    font-weight: 500;
    font-family: Raleway,sans-serif;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# QMS
-------------------------------------------------------------flood-color: -*/

 .qms p{
  margin: 0;
    line-height: 24px;
    font-family: Raleway,sans-serif;
    font-size: 15px;
    color: #797979;
 }

i.icofont-envelope {
    margin-right: 6px;
    margin-top: 4px;
    margin-left: 10px;
}
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    width: 100%;
    margin-bottom: 24px;
    padding: 10px 15px;
    border: 1px solid #cfcfcf;
    outline: 0;
    font-family: Raleway,sans-serif;
    font-weight: 500;
    font-size: 14px;
    background-color: #fff;
    color: #797979;
    border-radius: 6px;
} 
input[type="text"]{
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    width: 100%;
    margin-bottom: 24px;
    padding: 10px 15px;
    border: 1px solid #cfcfcf;
    outline: 0;
    font-family: Raleway,sans-serif;
    font-weight: 500;
    font-size: 14px;
    background-color: #fff;
    color: #797979;
    border-radius: 6px;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding-bottom: 30px;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 400px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #0101cc;
  font-family: Raleway,sans-serif;
  font-size: 28px;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #0000cc;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #bababa;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 14px;
  padding-right: 4px;
}

.blog .entry .entry-meta a {
  color: #a1a1a1;
  margin-left: 5px;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
  font-family: Raleway,sans-serif;
  font-size: 16px;

}

.blog .entry .entry-content .read-more {
  
}
.blog .entry .entry-content .read-more a:hover {
    
    color: #0101cc;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #ffffff;
  color: #707070;
  padding: 14px 20px 14px 20px;
  border: 2px solid #e6e6e6;
  transition: 0.3s;
  font-size: 18px;
   border-bottom-right-radius: 15px;
    border-top-left-radius: 15px;
}

.blog .entry .entry-meta a:hover {
  color: #0101cc;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote .quote-left {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 36px;
  color: #e7e7e7;
}

.blog .entry .entry-content blockquote .quote-right {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 36px;
  color: #e7e7e7;
}

.blog .entry .entry-content blockquote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #545454;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #a1a1a1;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #cecece;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #e96b56;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
}

.blog .blog-author h4 {
  margin-left: 140px;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
}

.blog .blog-author .social-links {
  margin: 0 0 5px 140px;
}

.blog .blog-author .social-links a {
  color: #bababa;
}

.blog .blog-author p {
  margin-left: 140px;
  font-style: italic;
  color: #b7b7b7;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  width: 50px;
}

.blog .blog-comments .comment h5 {
  margin-left: 65px;
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #e96b56;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #545454;
}

.blog .blog-comments .comment time {
  margin-left: 65px;
  display: block;
  font-size: 14px;
  color: #bababa;
  margin-bottom: 5px;
}

.blog .blog-comments .comment p {
  margin-left: 65px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 50px;
  padding: 20px 10px 20px 20px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #f5bab0;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 5px;
  padding: 10px 12px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #f5bab0;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 50px;
  padding: 10px 30px;
  border: 0;
  background-color: #545454;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #e96b56;
}

.blog .blog-pagination {
  color: #878787;
}

.blog .blog-pagination ul {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.blog .blog-pagination li {
  border: 1px solid white;
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li.active {
  background: white;
}

.blog .blog-pagination li a {
  color: #aaaaaa;
  padding: 7px 16px;
  display: inline-block;
}

.blog .blog-pagination li.active, .blog .blog-pagination li:hover {
  background: #e96b56;
  border: 1px solid #e96b56;
}

.blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .blog-pagination li.disabled {
  background: #fff;
  border: 1px solid white;
}

.blog .blog-pagination li.disabled i {
  color: #f1f1f1;
  padding: 10px 16px;
  display: inline-block;
}


.tnc h1.text-center {
    color: #202020;
    margin: 0;
    font-size: 48px;
    line-height: 1.097em;
    font-weight: 500;
    font-family: Raleway,sans-serif;
   
}

.tnc h2.textpolicy{
    margin: 0;
    font-size: 34px;
    line-height: 1.097em;
    font-weight: 700; 
    color: #202020;
    font-family: Raleway,sans-serif;
   
}

.tnc h3{
  margin: 0;
    font-size: 22px;
    line-height: 1.2em;
    font-weight: 700;
    font-family: Raleway,sans-serif;
}

.tnc p {
  margin: 0;
    line-height: 24px;
    font-family: Raleway,sans-serif;
    font-size: 15px;
    color: #797979;
}
.tnc ul li{
    font-size: 14px;
   
    color: #797979;
    line-height: 23px;
    font-family: Raleway,sans-serif;
}

.policy h1.text-center {

    font-size: 48px;
    line-height: 1.097em;
    font-weight: 700;
    font-family: Raleway,sans-serif;
   
}
.policy h2.textpolicy{
   margin-top: 10px;
    font-size: 34px;
    line-height: 1.097em;
    font-weight: 700;
    color: #202020;
    font-family: Raleway,sans-serif;
   
}

.policy p {
  margin: 0;
    line-height: 24px;
    font-family: Raleway,sans-serif;
    font-size: 16px;
    color: #797979;
}

.policy ul li{
    font-size: 15px;
   
    color: #797979;
    line-height: 23px;
    font-family: Raleway,sans-serif;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #303030;
  padding: 0 0 30px 0;
  color: white;
  font-size: 14px;
}

#footer .footer-top {
  background: #303030;
  padding: 60px 0 30px 0;
  border-top: 2px solid #e9ecee;
  border-bottom: 2px solid #e9ecee;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  margin-top: 15px;
  font-family: "Raleway", sans-serif;
  color: white;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #0101cc;
  color: white;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: black;
  color: white;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 22px;
  font-weight: 700;
  color: white;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer.footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: white;
  font-size: 18px;
  line-height: 1;
  margin-left: -5px;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color:white;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: blue;
}
#footer .footer-top .footer-links  .btn-get-started:hover {
  color:black;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  border: 1px solid #e3e7e9;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #0101cc;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #0101cc;
}


#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 8px;
  text-align: center;
  font-size: 13px;
  color: #364146;
}


.hero-text {
    max-width: 680px;
    width: 100%;
    float: right;
    padding-left: 110px;
}

#hero-text h1 {
    margin: 0 0 30px 0;
    font-size: 70px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 83px;
    color: #212121;
}

.hero-images {
    position: relative;
}
.section-space--mt_80 {
    margin-top: 80px;
}