
/*Animation keyframes for Navigation bar - for IE*/
@-webkit-keyframes fadeIn {
    from { background-color:none; }
      to { background-color:rgba(0,0,0,0.8); }
}
@-moz-keyframes fadeIn {
    from { background-color:none; }
      to { background-color:rgba(0,0,0,0.8); }
}

@-ms-keyframes fadeIn{
    from { background-color:none; }
    to { background-color:rgba(0,0,0,0.8); }

}
@-o-keyframes fadeIn{
    from { background-color:none; }
    to { background-color:rgba(0,0,0,0.8); }

}
@keyframes fadeIn {
    from { background-color:none; }
    to { background-color:rgba(0,0,0,0.8); }
}

/*common style*/
body.modal-open {
    overflow-y: scroll!important;
    padding-right: 0!important;
}
*:focus {
    outline: 0!important;
}
.clearfix{
    clear:both;
    content:'';
    display:table;
}
.img-responsive{
    display:block;
    max-width:100%;
    height:auto;
}

.alignvertical{
       display: -ms-flexbox;
       display: flex;
       align-items: center;
       justify-content: center;
       
       flex-direction: column;
       -ms-flex-direction: column;
}
.alignvertical img{
    margin: auto;
}
.alignvertical h4{
    margin-bottom: 0;
}

.onestyle{
    padding-top: 50px;
    padding-bottom:50px;
}

.onestyle h4{
    color:#212121;
    font-size: 28px;
    font-weight: 100;
}
.onestyle p{
    color:#7a7a7a;
}
.onestyle h3{
    color:#681c9a;
    font-size: 32px;
    font-weight: 500;
}

.onestyle hr{
    width: 10%;
    border-color: #e7b11d;
    margin-left:0;
    text-align:left;
}
@media(max-width:767px){
.form-row div:first-child{
    margin-bottom: 1rem;
}
}
/*common features*/

.features{
    text-align: center;
    margin-top:50px;
}

.features p{
    color:#7a7a7a;
}

.features img{
    width:60px;
    height: 60px;
}

.features-text{
    margin-top:20px;
}

.features-text h5{
    font-size: 20px;
}

.features-text p{
    font-size: 16px;
}

a:hover{
    text-decoration: none;
}

/*Navigation Bar*/

header .navbar{
    padding-top:0;
    padding-bottom: 0;
}
.navbar .nav-item .nav-link{
    color:black!important;
    font-size: 16px;
    font-weight: 500;
}
.navbar .nav-item .nav-link:hover{
    color: black;
}
.dropdown-menu{
    min-width: 5rem;
}
ul{
    margin-right:0;
}
.navbar-brand{
    padding:15px 0;
}
header nav{
    background: white;
}
.nav-link:hover, .nav-link:active, .nav-link:visited {
    color: black;
}
.dropdown-item:hover{
    background-color:rgba(0,0,0,0.7);
    color:white;
}

@media(max-width:991px){

.dropdown-toggle::after{
    transition: 0.5s ease;
    margin-bottom: -2px;
}
.dropdown.show >.dropdown-toggle::after, .dropdown-submenu.show > .dropdown-toggle::after{
    border-bottom: .3em solid;
    border-right: .3em solid transparent;
    border-top: 0;
    border-left: .3em solid transparent;
    transition: 0.5s ease;
}
.dropdown-submenu.show>.dropdown-menu {
    display: block;
}
.dropdown-submenu >.dropdown-menu{
    background-color: lightgrey;
    margin: 5px 10px 0;
}
.nav-icon {
    margin: 0em;
    width: 30px;
}
.nav-icon:after, 
.nav-icon:before, 
.nav-icon div {
    background-color: black;
    border-radius: 5px;
    content: '';
    display: block;
    height: 3px;
    margin: 6px 0;
    transition: all .2s ease-in-out;
}
.nav-icon.active:before {
    transform: translateY(9px) rotate(45deg);
    -webkit-transform: translateY(9px) rotate(45deg);
}
.nav-icon.active:after {
    transform: translateY(-9px) rotate(-45deg);
    -webkit-transform: translateY(-9px) rotate(-45deg);
}
.nav-icon.active div {
    transform: scale(0);
    -webkit-transform: scale(0);
}
.navbar{
    box-shadow: 0px 1px 5px rgba(105,105,105,0.7);
    -webkit-box-shadow: 0px 1px 5px rgba(105,105,105,0.7);
    transition: .4s ease-in;
    -webkit-transition: .4s ease-in;
}
.navbar .dropdown-menu{
    background-color:#d3d3d3;
}
}

@media (min-width:992px){

.navbar-brand{
margin-right:0;
}

.bgcolor{
    background:white;
}

header nav li{
    text-align:left;
}
.dropdown-menu{
    display:block;
    background: rgba(255,255,255,0.96);
    border:none;
    margin:0;
    border-radius:5px;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
    opacity: 0;
    transition: transform .3s ease-in, opacity .3s ease-in;
    left: -10000px;
    transform: translateX(-50%) translateY(10px);
    -webkit-transform:translateX(-50%) translateY(10px);
}
.dropdown-menu:before{
    content: " ";
    position: absolute;
    bottom: 100%;  /* At the top of the tooltip */
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent rgba(255,255,255,0.96) transparent;
}
.dropdown:hover .dropdown-menu{
    z-index: 300;
    left: 50%;
    opacity: 1;
    -ms-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
    transition: transform .3s ease-in, opacity .3s ease-in;
}
.dropdown-item:hover{
    background-color:rgba(0,0,0,0.7);
    color:white;
}
.dropdown-menu a{
    color:black;
    padding:3px 10px;
    font-size: 14px;
}
.dropdown-toggle::after{
    display: none;
}
.changenavbg{
    -webkit-animation: fadeIn 1s forwards;
    -moz-animation: fadeIn 1s forwards;
    -o-animation: fadeIn 1s forwards;
    -ms-animation:fadeIn 1s forwards;
    animation: fadeIn 1s forwards;
}
header .nav-item{
    padding: 7px 10px 5px;
}

.dropdown-toggle::after {
    content: ' ';
    border: 2px solid white;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    margin-bottom: -1px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transition: transform 0.5s ease-out;
    -webkit-transition: transform 0.3s ease-out;
  }
 
  .dropdown:hover .dropdown-toggle::after{
    margin-bottom: -4px;
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    transition: transform 0.5s ease-out;
    -webkit-transition: transform 0.3s ease-out;
  }
/*Dropdown submenu*/
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu:hover>.dropdown-menu {
        display: block;
}
.dropdown-submenu>.dropdown-menu:before{
    content: "";
    position: absolute;
    border: none;
}
.dropdown-submenu>.dropdown-menu {
    top: 100%!important;
    left: 100%!important;
    transform: translateY(-50%)!important;
    -webkit-transform: translateY(-50%)!important;
    margin-left: 1px;
    display: none;
}
.dropdown-submenu>.dropdown-toggle::after{
    transform: rotate(315deg)!important;
    -webkit-transform: rotate(315deg)!important;
    padding: 2px;
    margin-bottom: -2px!important;
}
.dropdown-submenu>.dropdown-toggle:not(:hover)::after{
    border-color: #212529;
}
}
.navborder{
    box-shadow: 0px 1px 5px rgba(105,105,105,0.7);
    -webkit-box-shadow: 0px 1px 5px rgba(105,105,105,0.7);
    transition: .3s ease-in;
    -webkit-transition: .3s ease-in;
}
@media screen and (max-width: 350px) {   
    .mainLogo{
        max-width: 200px;
    } 
}
@media screen and (max-width: 300px) {   
    .mainLogo{
        content: url(../img/sikka-logo-black.png) !important;
        width: 132px;
    }
}

/*Carousel top*/

.carousel-img1{
    background: url(../img/marketplace-banner.jpg);
}

.carousel-img2{
    background: url(../img/banner-sikka-marketplace-2.jpg);
}

.carousel-img3{
    background: url(../img/oneapi-banner-2.jpg);
}

.carousel-img4{
    background: url(../img/sikka-payments-banner.jpg);
}

@media(min-width:768px){
    .carouselbanner{
    width:100%;
}
}
@media(max-width:767px){
    .carousel-img3{
        background: url(../img/oneapi-banner-mobile.jpg);
    }
}

#carouseltop .carousel-item{
    height: 100vh;
    min-height: 350px;
    
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-color: black;
}

#carouseltop .carousel-item video{
    position: absolute;
    min-height: 100vh;
    min-width: 100%;
        
}

#carouseltop .carousel-caption{
    position:relative;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform:translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    text-align:left;
    right: 0;
    left:0;
    padding-right: 20%;   
}

#carouseltop .carousel-caption hr{
    border-color:#e7b11d;
    width:10%;
    margin-left: 0;
    text-align:left;
}
#carouseltop .carousel-caption h3{
    font-size:40px;
}

#carouseltop .carousel-caption p{
    font-size:25px;
    
}

#carouseltop .carousel-caption button {
padding:5px 25px;
color:white;
border:1px solid white;
background: rgba(0,0,0,0);
border-radius:5px;
}

.carousel-indicators li{
    width:10px;
    height: 10px;
    border-radius: 50%;
    margin-right:5px;
}
.carousel-indicators li:active{
    background-color: #d8d8d8;
}

#carouseltop .carousel-control-next, #carouseltop .carousel-control-prev{
    width:5%;
}

#carouseltop .caption-right{
    text-align: right;
    padding-right: 0;
    padding-left: 20%;
}

#carouseltop .caption-right hr{
margin-left:auto ;
margin-right: 0;
text-align: right;
}

/*Carousel top button*/
#carouseltop p.carousellink{
    color:white;
    background: #f1b61b;
    border-radius:25px;
    border:none;
    padding:3px 20px 5px;
    text-align: center;
    display: inline-block;
    margin-bottom: 0;
    font-size: 20px!important;
    box-shadow: 0px 1px 5px rgb(105,105,105);
    -webkit-box-shadow: 0px 1px 5px rgb(105,105,105);
}

#carouseltop .carousellink a{
    color:black;
}

#carouseltop .carousellink span{
    position: relative;
    display: inline-block;
    transition: 0.4s;
    -webkit-transition: 0.4s;
}

#carouseltop .carousellink span:after {
    content: ' \21FE';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    color:black;
  }
  #carouseltop .carousellink:hover span {
    padding-right: 25px;
  }
  #carouseltop .carousellink:hover span:after {
    opacity: 1;
    right: 0;
  }


  #carouseltop p.carousellink1{
    padding:3px 20px 5px;
    color:white;
    border:1px solid white;
    background: rgba(0,0,0,0);
    border-radius:25px;
    text-align: center;
    display: inline-block;
    font-size: 20px;
}

#carouseltop .carousellink1 a{
    color:white;
    
}

#carouseltop .carousellink1 a:hover{
    color:white;
}

#carouseltop .carousellink1 span{
    position: relative;
    display: inline-block;
    transition: 0.4s;
    -webkit-transition: 0.4s;
}

#carouseltop .carousellink1 span:after {
    content: ' \21FE';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
  }
  #carouseltop .carousellink1:hover span {
    padding-right: 25px;
  }
  #carouseltop .carousellink1:hover span:after {
    opacity: 1;
    right: 0;
  }
/*Carousel top button end*/

/*Covid css*/
.covid-topbar{
    background-color: #02597f;
    text-align: center;
    padding:10px 0 7px;
}
.covid-topbar p{
   margin-bottom: 0;
   font-weight: 500;
   color: white;
   line-height: 1;
   margin-top: 2px;
}
.covid-topbar a{
    color: white;
    text-decoration: none;
}
@media(max-width:767px){
    .covid-topbar img{
        width: 18px!important;
    }
    .covid-topbar p{
        font-size: 14px;
    }
}
@media(max-width:360px){
    .covid-topbar img{
        display: none!important;
    }
}
/*Covid carousel banner*/
#carouseltop .covid-img{
    background: url(../img/covid_rebound/group.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    
}
#carouseltop .covid h3{
    font-size:40px;color: black!important;
}
#carouseltop .covid p{
    font-size:22px;color: black!important;  
}
#carouseltop .covid .carousellink1{
    background-color: #02597f;
    border: none;
}

/*Webinar css*/
#carouseltop .webinar h3{
    font-size:30px;
}
#carouseltop .webinar h3 span.span1{
    color: #42a3b2;
}
#carouseltop .webinar h3 span{
    color: #f9b600;
}
#carouseltop .webinar p{
    font-size:20px;
}
#carouseltop .webinar p span{
    color: #f9b600;
}
#carouseltop .webinar{
    text-align: right;
    padding-right: 0;
}
#carouseltop .webinar hr{
    text-align: right;
    margin-right: 0;
    margin-left: auto;
    margin-top: 12px;
    margin-bottom: 12px;
}

#carouseltop .webinar-img{
    background: url(../img/webinar-banner-sikka-pay.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
#carouseltop .carousellink1{
    font-size: 20px!important;
}
#carouseltop .carousellink1 span{
    color: white!important;
}
#carouseltop .webinar-img1{
    background: url(../img/webinar-noprofiles-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
/*End Webinar css*/

@media(max-width:991px){
    #carouseltop .carousel-caption{
       padding-right: 15px;
    }
    #carouseltop .caption-right{
       padding-left: 15px;
    }
    #carouseltop .webinar h3{
        font-size:32px;
    }
    #carouseltop .webinar p{
        font-size:18px;
    }
          
}
@media(max-width:767px){

#carouseltop .webinar h3{
    font-size:30px;
}
#carouseltop .webinar p{
    font-size:17px;
}
#carouseltop .webinar-img{
    background: url(../img/background-together.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
#carouseltop .covid-img{
    background: url(../img/covid_rebound/group.svg);
}
}

@media(max-width:575px), (max-width:991px) and (max-height: 450px) {
    #carouseltop .carousel-caption{
        position: relative;
        /*top:15%;*/
        padding-right: 15px;
    }
    #carouseltop .carousel-control-next, #carouseltop .carousel-control-prev{
        display: none;
    }
    #carouseltop .carousel-caption h3{
        font-size:27px;
    }
    #carouseltop .carousel-caption p{
        font-size:17px!important;
    }
    #carouseltop .webinar p .br1{
        display: none;
    }
   
}


@media(max-width:575px) and (max-height:600px){
    #carouseltop .carousel-item{
        height:120vh;
    }
}

@media(max-width:991px) and (max-height: 450px) {
    #carouseltop .carousel-item{
        height: 120vh;
        padding-top: 50px;
    }
}

@media (max-height:350px){
    #carouseltop .carousel-caption{
        position: relative;
        /*top:15%;*/
    }

    #carouseltop .carousel-caption h3{
        font-size:20px;
    }
    
    #carouseltop .carousel-caption p{
        font-size:15px;
        
    }
    #carouseltop .carousel-item{
        height: 130vh;
    }
    
}

/*Healthcare*/

.healthcare{
    padding-top:60px;
    padding-bottom:50px;
    background-image: url(../img/background-graphic.jpg);
    background-repeat:no-repeat;
    background-size: cover;
    
}

.healthcare h1{
    text-align: center;
    font-size: 32px;
}

.healthcare .healthdata{
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
}

.healthdata img{
    display: block;
    margin: 10px auto;
    
}

.healthdata h6{
    display: inline-block;
    color: #4a4a4a;
    background: white;
    border-radius: 30px;
    padding: 10px 30px;
    margin: 30px auto;
    font-weight: 500;
    box-shadow: 0px 1px 5px rgb(105,105,105);
    -webkit-box-shadow: 0px 1px 5px rgb(105,105,105);
    border: 1px solid lightgrey;
}

.healthdata p{
    text-align: center;
    padding-right:14%;
    padding-left: 15%;
}

.healthdata a{
    display: block;
    text-align: center;
}


@media(max-width:767px){
.healthcare .healthdata > div{
    margin-top: 20px;
}
.healthcare .healthdata{
    margin-top: 10px;
    margin-bottom: 10px;
}
}


.info{
    height: 100%;
    position: relative;
}

.healthdata-links{
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

/*Why choose Sikka*/

.choosesikka{
    padding-top:50px;
    padding-bottom: 50px;
    text-align: center;
}

.choosesikka h2{
    font-size:30px;
    color:black;
    text-align: center;
    font-size: 30px;
  font-weight: 500;
    
}
.choosesikka h2 span{
    color:#681c9a;
}

.choosesikka hr{
   width: 10%;
    border-color: #e7b11d;
    margin-left:auto;
    margin-right: auto;
}

/*Marketplace*/

.marketplace{
    background-image: url(../img/background-graphic.jpg);
    background-repeat:no-repeat;
    background-size: cover;
}

.marketplace .row > div{
    padding:20px;
}

.marketplace p{
    color:#7a7a7a;
}

.marketplace .market-button{
    color:white;
    background: #f1b61b;
    border-radius:20px;
    border:1px solid #f1b61b;
    padding:5px 20px;
    text-align: center;
    margin:25px auto 10px;
    display: table;
    box-shadow: 1px 1px 5px rgb(105,105,105);
    -webkit-box-shadow: 1px 1px 5px rgb(105,105,105);
    
}
.marketplace .market-button:hover{
    color:white;
}

.marketplace span{
    position: relative;
    display: inline-block;
    transition: 0.4s;
    -webkit-transition: 0.4s;
}

.marketplace .market-button span:after {
    content: ' \21FE';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
  }
  .marketplace .market-button:hover span {
    padding-right: 25px;
  }
  .marketplace .market-button:hover span:after {
    opacity: 1;
    right: 0;
  }


.marketplace-img{
    padding:15px 5px;
}

.marketplace .card{
    margin:0 auto;
    max-width:320px;
    height:100%;
    overflow:hidden;
    box-shadow: 1px 1px 6px rgba(150,150,150,0.4);
    -webkit-box-shadow:1px 1px 6px rgba(150,150,150,0.4);
}

.marketplace .card:hover{
    box-shadow: 1px 2px 12px rgba(130,130,130,0.8);
    -webkit-box-shadow:1px 2px 12px rgba(130,130,130,0.8);
}

.marketplace .card img{
    transition:transform 1s;
    -webkit-transition: transform 1s;
}

.marketplace .card img:hover{
    transform:scale(1.1,1.1) ;
    -webkit-transform:scale(1.1,1.1) ;
    -moz-transform:scale(1.1,1.1) ;
    -o-transform: scale(1.1,1.1) ;
}

.paytag{
    font-size: 13px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    position: absolute;
    padding: 3px 0;
    transform: rotate(40deg);
    -webkit-transform: rotate(40deg);
    top: 13px;
    width: 120px;
    background-color: red;
    right: -33px;

}
.track-pay .card-body{
    padding-right: 50px;
}

/*Sikka News*/

.sikkanews{
    padding-top: 40px;
    padding-bottom:40px;
}

.sikkanews .row > div{
    padding: 20px;
}

.sikkanews .card{
    margin:0px auto;
    max-width: 320px;
    height: 100%;
   border-color: rgba(0,0,0,0.2);
}

.sikkanews .card:hover{
    box-shadow: 1px 2px 12px rgba(130,130,130,0.8);
    -webkit-box-shadow:1px 2px 12px rgba(130,130,130,0.8);
}

.newsdate{
    font-size: 14px;
}

.newstext{
    font-size: 17px;
    font-weight: 600;
    margin:0 auto 5px;
    color: #4b4b4b!important;
}

.newsimg{
    position: absolute;
    bottom: 10px;
    right:15px;
}

/*Carousel news slider*/

#Carousel-news .carousel-control-next-icon{
    background-image:url(../../image/arrow_right_grey.png);
}
#Carousel-news .carousel-control-prev-icon{
    background-image:url(../../image/arrow_left_grey.png);
}
#Carousel-news .carousel-control-next-icon, #Carousel-news .carousel-control-prev-icon{
    width: 25px;
    height: 25px;
}
#Carousel-news .carousel-control-next {
    right: -10px;
}
#Carousel-news .carousel-control-prev{
    left: -10px;
}
@media (min-width: 768px) {
    #Carousel-news .carousel-inner .carousel-item-right.active,
    #Carousel-news .carousel-inner .carousel-item-next {
        transform: translateX(50%);
    }

    #Carousel-news .carousel-inner .carousel-item-left.active,
    #Carousel-news .carousel-inner .carousel-item-prev {
        transform: translateX(-50%);
    }
}

@media (min-width: 992px) {
    #Carousel-news .carousel-inner .carousel-item-right.active,
    #Carousel-news .carousel-inner .carousel-item-next {
        transform: translateX(33%);
    }

    #Carousel-news .carousel-inner .carousel-item-left.active,
    #Carousel-news .carousel-inner .carousel-item-prev {
        transform: translateX(-33%);
    }
}

@media (max-width: 767px) {
    #Carousel-news .carousel-inner .carousel-item>div {
        display: none;
    }

    #Carousel-news .carousel-inner .carousel-item>div:first-child {
        display: block;
    }
}

#Carousel-news .carousel-inner .carousel-item.active,
#Carousel-news .carousel-inner .carousel-item-next,
#Carousel-news .carousel-inner .carousel-item-prev {
    display: flex;
}

#Carousel-news .carousel-inner .carousel-item-right,
#Carousel-news .carousel-inner .carousel-item-left {
    transform: translateX(0);
}
#Carousel-news .carousel-item-next, #Carousel-news .carousel-item-prev{
    z-index: 1;
}

/*National trends

.nationaltrends{
    background:#f5f5f5;
    text-align: center;
}

.nationaltrends h3{
    font-size:30px;
    color:black;
    
}
.nationaltrends h3 span{
    color:#681c9a;
}

.nationaltrends .card{
    text-align: left;
    position: relative;
    overflow: hidden;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    box-shadow:  1px 1px 6px rgba(180,180,180,0.5);
    max-width: 330px;
    margin: 0px auto 20px;
}

.nationaltrends .card-header p{
    margin-bottom: 0px;
    color: black;
}

.nationaltrends .card-header{
    background-color: #dcdcdc;
}


.nationaltrends-nav{
    padding:0;
    text-align:center;
    margin:30px auto 40px;
}

.nationaltrends .nav-link{
    color:#4a4a4a;
    background: white;
    border-radius: 30px;
    padding:5px 0;
    margin:5px 10px;
    font-weight: 500;
    width:150px;
    background-image: -webkit-linear-gradient( 45deg, #fff 50%, transparent 30%);
    background-image: linear-gradient(45deg, #fff 50%, transparent 30%);
    background-size: 500px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 800ms ease-in-out;
    transition: background 800ms ease-in-out;
    display: block;
    box-shadow: 1px 1px 5px rgb(105,105,105);
    -webkit-box-shadow: 1px 1px 5px rgb(105,105,105);
    border: 1px solid lightgrey;
  }

  .nationaltrends .nav-link:hover:not(.active){
    background-position: 100%;
    background-color: #f1b61b;
    color: #000;
  }

  .nationaltrends .nav-link.active{
    background-color:#f1b61b!important;
    border:1px solid #f1b61b;
    background-image:none;
}


.nationaltrends-img div img{
    padding: 0;
    margin:20px auto;
    border-radius: 10px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
}

.nationaltrends .fade {
    transition: opacity 0.5s linear;
    -webkit-transition: opacity 0.5s linear;
    -moz-transition: opacity 0.5s linear;
    -o-transition: opacity 0.5s linear;
}

@media(max-width:991px){
    .nationaltrends{
        display: none;
    }
}*/

/*partners*/

.partners{
    padding-top:70px;
    padding-bottom: 70px;
}

#carouseltop2 .carousel-inner{
    min-height:75px;
    display:flex;
    align-items: center;
}

#carouseltop2 .carousel-control-next, #carouseltop2 .carousel-control-prev{
    width:1%;
}

.partnerimg img{
    display: inline-block;
    margin-right:3%;
}

#carouseltop2{
    text-align:center;
    margin-top:30px;
    
}

#carouseltop2 .carousel-control-prev span i, #carouseltop2 .carousel-control-next span i{
    color:#9797a6;
    opacity:0.5;
    font-size: 25px;
}


#carouseltop2 .carousel-indicators{
    display:none;
}

@media(max-width:991px){
    .partnerimg img{
        margin-bottom: 10px;
    }
}

@media(max-width:575px){

    .partnerimg img{
        display: block;
        margin: 15px auto;
    }    
}

/*Footer*/

footer{
    background: #1f1f1f;
    padding-top: 20px;
}
footer *{
    color:#aaa;
}

footer ul{
    padding:0;
    list-style-type: none;
}

footer ul li{
    text-decoration: none;
    margin-bottom:5px;
}

footer a:hover, footer i:hover{
    text-decoration: none;
    color:#1884c8;
}

footer .form-control{
    -webkit-appearance: none;
    padding:0 10px;
    background-color:rgba(216,216,216,0.35);
    color:white;
    margin-bottom:15px;
    height:30px;
    border:none;
    
}

footer select option{
    /*-webkit-appearance: none;*/
    background: #aaa;
    color:white;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0 10px;
    background: #efefef;
    border: none;
    background-color:rgba(216,216,216,0.35);
    color:white;
    margin-bottom:15px;
    height:30px;
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-clip: padding-box;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    
}
.select-container {position:relative; display: block;padding-top:0!important;}
.select-container:before {content:""; width:0; height:0; position:absolute; pointer-events: none;}
.select-container:before {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    top: 27px;
    right: 10px;
    border-top: 8px solid black;
    opacity: 0.5;
}
select::-ms-expand {
    display: none;
}


footer .form-control:focus{
    background-color:rgba(216,216,216,0.35);
    color:white;
}

footer .form-control:focus .form-control::placeholder{
    background-color:rgba(216,216,216,0.35)!important;
    color:#aaa!important;
}

footer input::placeholder{
    color:white!important;
}

/*::-webkit-input-placeholder{
    color:white!important;
}
::-ms-input-placeholder
{
    color:white!important;
}
:-ms-input-placeholder
{
    color:white!important;
}
::-moz-input-placeholder{
    color:white!important;
}*/

footer .form-submit{
    background-color:#1884c8;
    width:50%;
    float:right;
    border:1px solid #1884c8;
    color: white;
    border-radius: 5px;
}

.footeritems div{
    padding-top:20px;
}

.footeritems h6{
    font-size: 22px;
    margin-bottom:18px;
}

.footeritems li a{
    font-size: 15px;
}

.footeradd p, .footercopy{
    font-size: 13px;
}

.footeradd i{
    margin-right:10px;
    
}

.footeradd span{
    display:inline-flex;
}

.footeradd img{
    width: 13px;
    margin-right: 6px;
    margin-left: -3px;
}

.footeradd .footernum{
    text-decoration: none;
    color: #aaa;
}

.socialicons i{
    margin-right:15px;
}

.footercontact{
    text-align: center;
    
}

.footerterms span{
    padding-left: 5px;
    border-left:1px solid #aaa;
}

.footerchat button{
    position: fixed;
    bottom:0;
    right:5%;
    background-color:#683691;
    padding: 5px 20px;
    border:1px solid #683691;
    border-radius: 5px 5px 0 0;
    margin-right:20px;
}

@media(max-width:575px){
    .footerchat button{
        right:0;
    }
    .dropdown-menu{
        background-color:#aaa;
    }
}

.footerchat span{
    display:inline-block;
    margin-left:30px;
}
.footeritems2{
    padding-top:20px;
    padding-bottom:30px;
}

@media(min-width:991px){
    .footerdoct{
        margin-right: 20px;
        margin-left: -20px;
    }
    .footerdoct1{
        margin-right: -20px;
        margin-left: 20px;
    }
}


/*Insurance page css*/

.insurtech{
    background: url("../img/insur-tech-banner.jpg");
    /*height: 80vh;
    min-height: 350px;
    background: no-repeat center center scroll;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

}
.insurtech .insurtechtext{
    padding-top: 10%;
    padding-bottom: 4%;
    text-align:left;
    color:white;
}

@media (max-width: 992px){
    .insurtech .insurtechtext {
        padding-top: 15%;
    }
    }

@media (max-width: 575px){
    .insurtech .insurtechtext{
        padding-top:25%;
    }
}
.insurtech .insurtechtext hr{
    width: 10%;
    border-color: #e7b11d;
    margin-left:0px!important;
    text-align:left;
}
.insurtech .insurtechtext h4{
    font-size:28px;
    font-weight:lighter;
}

.insurtech .insurtechtext h3{
    font-size: 40px;
}
.insurtech .insurtechtext p{
    font-size:21px;
}
.insurquotes{
    padding-top: 80px;
    padding-bottom: 70px;
}
.insurquotes .quotestext{
    display: flex;
    display:-ms-flexbox;
    align-items: flex-start;
}
.insurquotes .quotestext p{
    font-size: 22px;
    margin-bottom: 0;
}
.insurquotes .quotestext img{
    margin-top: -20px;
    margin-right: 10px;
}
.insurquotes .quoteslogo{
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.insurquotes img{
    margin-bottom: 15px;
}
.insurquotes p b{
    color: #02597f;
}
.insurquotes .quoteslogo h6{
    font-size: 20px;
    line-height: 1.4;
}
.insurquotes .quoteslogo h6 span{
    font-weight: 400;
}
@media(max-width:767px){
    .insurquotes .quoteslogo{
        margin-top: 30px;
    }
}
.datascience{
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
    background-color:ghostwhite;
}
.datascience hr{
    margin-right: auto;
    margin-left:auto;
}
.datascience p{
    font-size: 18px;
}
.carousel-insur1{
    background: url(../img/insur-tech-oral-health.jpg);
}

.carousel-insur2{
    background: url(../img/insur-tech-mouth-body-connection.jpg);
}

.carousel-insur3{
    background: url(../img/insur-tech-tobacco-scoring.jpg);
}
#carouselinsur .carousel-item {
    height: 500px;
    min-height: 500px;
    /*background: no-repeat center center scroll;*/
    background-position:center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.munichlogo{
    float:right;
    width:150px;
    height: 30px;
}
#carouselinsur a, #carouselinsur a:hover{
    color: white;
}
#carouselinsur .carousel-caption{
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    text-align: left;
    right: 0;
    left: 0;
    bottom: auto;
}
#carouselinsur .carousel-caption hr{
    width: 10%;
    border-color: #e7b11d;
    margin-left:0;
    text-align:left;
}
#carouselinsur .carousel-caption .carousellink{
    color:#1e6bb9;
}
#carouselinsure p{
    font-size: 18px;
}

#carouselinsur .carousel-control-next, #carouselinsur .carousel-control-prev {
    width:5%;
}
@media(max-width:575px), (max-width:991px) and (max-height: 450px) {
    #carouselinsur .carousel-control-next, #carouselinsur .carousel-control-prev{
        display: none;
    }
    .insurtech .insurtechtext h4{
        font-size:22px;
    }
    
    .insurtech .insurtechtext h3{
        font-size: 30px;
    }
    .insurtech .insurtechtext p{
        font-size: 16px;
    }
}

/*Loan compliance*/

.loancomp{
    background: url("../img/loan-compliance-banner.jpg");
    /*height: 60vh;
    min-height: 350px;
    background: no-repeat center center scroll;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

}

.loancomp .loancomptext{
    /*position: relative;
    top:20%;*/
    padding-top: 15%;
    padding-bottom: 5%;
    text-align:left;
    color:white;
}

@media (min-width: 992px){
    .loancomp .loancomptext {
        padding-top: 10%;
    }
    }
      
@media (max-width: 575px){
    .loancomp .loancomptext{
            padding-top:20%;
        }
    }

.loancomp .loancomptext hr{
    width: 10%;
    border-color: #e7b11d;
    margin-left:0;
    text-align:left;
}

.loancomp .loancomptext h4{
    font-size:30px;
    font-weight:lighter;
}

.loancomp .loancomptext h3{
    font-size: 45px;
}

.loancomp .loancomptext p{
    font-size: 22px;
}

@media(max-width:575px), (max-width:991px) and (max-height: 450px) {
    .loancomp .loancomptext h4{
        font-size:22px;
    }
    
    .loancomp .loancomptext h3{
        font-size: 32px;
    }
    .loancomp .loancomptext p{
        font-size: 16px;
    }
}


.wellsfargomockup{
    display: block;
    margin:20px auto;
}

.wellsfargo button a{
    color:#fff;
}

.wellsfargo button{
    color: #fff;
    border: 1px solid #681d9a;
    background-image: -webkit-linear-gradient(30deg, #681d9a 50%, transparent 30%);
    background-image: linear-gradient(30deg, #681d9a 50%, transparent 30%);
    background-size: 500px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
    border-radius:5px;
    padding:5px 30px;
    margin:10px auto;
    display: block;
  }
  .wellsfargo button:hover{
    background-position: 100%;
    color: #681d9a;
  }

  .wellsfargo button:hover a{
    color:#681d9a;
  }


/*About us page*/

.aboutus{
    background: url("../img/about-us-banner.jpg");
    /*height: 80vh;
    min-height: 350px;
    background: no-repeat center center scroll;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /*background-attachment:fixed;*/

}

.aboutus .aboutustext{
    padding-top:20%;
    padding-bottom: 5%;
    text-align:left;
    color:white;
}

@media(min-width:992px){
    .aboutus .aboutustext{
        padding-top:10%;
}
}

.aboutus .aboutustext hr{
    width: 10%;
    border-color: #e7b11d;
    margin-left:0;
    text-align:left;
}

.aboutus .aboutustext h4{
    font-size:30px;
    font-weight:lighter;
}

.aboutus .aboutustext h3{
    font-size: 47px;
}

/*mission*/

.mission{
    padding-top:40px;
    padding-bottom:40px;
    text-align:center;
   
}

.mission p{
    font-size:14px;
    color:#4a4a4a;
}

.mission h4{
    font-size:30px;
    font-weight: lighter;
}

.mission hr{
    width: 10%;
    border-color: #e7b11d;
    
}

/*executive*/

.executive, .boarddirectors{
    padding-top:40px;
    padding-bottom:50px;
}

.executive h4, .boarddirectors h4{
    color:  #681d9a;
    border-left:2px solid #e7b11d;
    padding-left:20px;
    margin-bottom:20px;
}

.executivetext h6{
    color:#4a4a4a;
    font-weight:normal;
    font-style:italic;
}

.executivetext p{
    color:#4a4a4a;
    font-size:14px;
}

.executivetext h5{
    font-size:20px;
}

.executivetext hr{
    width: 10%;
    border:1px solid #e7b11d;
    margin-left:0;
    text-align:left;
}

.executive img, .boarddirectors img{
    width:260px;
    height:auto;
    margin:0 auto;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}


@media(max-width:575px){
    .executivetext{
        text-align: center;
    }
    .executivetext hr{
        margin-right:auto;
        margin-left:auto;
    }
    .executive img, .boarddirectors img{
        margin-bottom: 15px;
    }
}


/*Careers page*/


.careers{
    background: url("../img/company-careers.jpg");
    /*height: 80vh;
    min-height: 350px;
    background: no-repeat center center scroll;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    
}

.careers .careerstext{
    /*position: relative;
    top:25%;*/
    padding-top:20%;
    padding-bottom:5%;
    text-align:left;
    color:white;
}

@media (min-width: 992px){
.careers .careerstext {
    padding-top: 10%;
    padding-bottom: 15%;
}
}
.careers .careerstext hr{
    width: 10%;
    border-color: #e7b11d;
    margin-left:0;
    text-align:left;
}

.careers .careerstext h4{
    font-size:30px;
    font-weight:lighter;
}

.careers .careerstext h3{
    font-size:47px;
}

/*open positions*/

.openpositions{
    padding-top: 40px;
    padding-bottom:40px;
}

.openpositions h1{
    color:  #681d9a;
    border-left:2px solid #e7b11d;
    padding-left:20px;
    margin-bottom:20px;
    font-size: 1.75rem;
}

.openpositions span{
    color:#4a4a4a;
    font-weight:lighter;
}

/*openpositions table*/

.openpositions table{
    margin-top:20px;
    margin-bottom:20px;
}

.openpositions .table td, .openpositions .table th{
    border:none;
}
.openpositions .table tbody tr:hover{
    cursor: pointer;
    background-color: #681c9a;
    color: white!important;
}
/*Mission values*/

.careersmission{
    padding-top:40px;
    padding-bottom:40px;
    text-align:center;
   
}

.careersmission p{
    font-size:14px;
    color:#4a4a4a;
}

.careersmission h4{
    font-size:30px;
    font-weight: 400;
    color:#681c9a;
}

.careersmission hr{
    width: 10%;
    border-color: #e7b11d;
    
}

/*Who we are*/

.whostat{
    padding-top:40px;
    padding-bottom:40px;
    background-color:#f5f5f5;
}

.whostat h4{
    font-size: 1.75rem;
    color:#681c9a;
    text-align: left;
    
}

.whostat hr{
    width: 10%;
    border-color: #e7b11d;
    margin-left: 0;
    text-align: left;
}

/*Why sikka*/

.whysikka{
    padding-top:50px;
    padding-bottom:50px;
}

.whysikka h4{
    font-size: 1.75rem;
    color:  #681d9a;
}

.whysikka hr{
    width: 10%;
    border-color: #e7b11d;
    margin-left:0;
    text-align:left;
}

.whysikka span{
    color:#4a4a4a;
    font-weight:lighter;
}


.whysikka p{
    font-size:14px;
    color:#4a4a4a;
}

.whysikka div{
    text-align: center;
}

.whysikka img{
    margin: 15px auto 30px;
}
.sikkarow{
    margin-top: 25px;
    margin-bottom:30px;
}

.sikkarow2{
    margin-bottom:15px;
}

.gallery{
    padding-bottom:60px;
    text-align: center;
}

.gallery img{
    padding: 10px 5px 5px;
    max-width: 100%;
}
/*Careers Thanks*/

.careersthanks{
    padding-top:60px;
    padding-bottom:60px;
    background-color:#681d9a;
    text-align:center;
    color:white;
}
/*Careers carousel*/
.careers-testimonials{
    text-align: center;
    padding: 0;
}
.careers-testimonials p{
    color: #4a4a4a;
    line-height: 1.5;
    font-size: 20px;
    text-align: left;
}
.careers-testimonials p b{
    color: #331b42;
}
.careers-testimonials h5{
    color: #4a4a4a;
    font-size: 22px;
}
.careers-testimonials h5 span{
    font-weight: 400;
}

#Carousel-careers .carousel-control-prev span i, #Carousel-careers .carousel-control-next span i{
    color:#9797a6;
    opacity:0.5;
    font-size: 25px;
}
/*#Carousel-careers .carousel-control-prev, #Carousel-careers .carousel-control-next{
    width: 1%;
}*/

#Carousel-careers .carousel-item {
    height: 350px;
    min-height: 350px;
    background-color:#f5f5f5;
}

#Carousel-careers .carousel-caption{
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    right: 0;
    left: 0;
    bottom: auto;
    
}

#Carousel-careers .carousel-control-next, #Carousel-careers .carousel-control-prev {
    width:5%;
}

@media(max-width:575px), (max-width:991px) and (max-height: 450px) {
    #Carousel-careers .carousel-control-next, #Carousel-careers .carousel-control-prev{
        display: none;
    }
    
    .careers-testimonials h5{
        font-size: 19px;
    }
    .careers-testimonials p{
        font-size: 16px;
    }
}


/*Contact page*/

.contact{
    /*background: url("../img/bg-contact-map3.png");*/
    background-color: #1f1f1f;
    height: 30vh;
    min-height: 350px;
    /*background: no-repeat center center scroll;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /*background-attachment:fixed;*/
}

.contact .contacttext{
    position: relative;
    top:40%;
    text-align:left;
    color:white;
}

.contact .contacttext hr{
    width: 10%;
    border-color: #e7b11d;
    margin-left:0;
    text-align:left;
}

.contact .contacttext h4{
    font-size:30px;
    font-weight:lighter;
}

.contact .contacttext h3{
    font-size:47px;
}


/*message*/

.message{
    overflow:hidden;
}
.messagecol1{
    background-color:#f5f5f5;
    font-size:18px;
}

.messagecol1, .messagecol2{
    padding-top:80px;
    padding-bottom:80px;
    position: relative;
}

.messagecol1::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: inherit;
    right: 100%;
    z-index: -1;
}

@media(min-width:576px) and (max-width:767px){
.messagecol1::after{
    content: '';
    display: block;
    position: absolute;
    top:0;
    bottom:0;
    width:100%;
    background: inherit;
    left: 100%;
}
}

@media(min-width:768px){
    .messagecol2{
        padding-left:10%;
    }
}

.messagecol2 div{
color:#7a7a7a;
}

.messagecol2 h5 {
font-size: 25px;
margin-bottom:25px;
color:#7a7a7a;
}

/*.messageform input, .messageform textarea, .messageform select{
    max-width:500px;
}*/

.messageicons i{
    margin-right:10px;
    margin-top :5px;
}

.messageicons span{
    display:inline-flex;
}

.messageicons p:nth-child(2){
    display: flex;
}

.messageicons img{
    margin-right: 7px;
    width: 16px;
    margin-left: -2px;
}
.messagesocial{
    margin-top:35px;
}

.messagesocial i{
    margin-right: 15px;
    font-size:22px;
    color:white;
    padding:8px 13px;
    border-radius: 50%;
    width:44px;
    
}
.messagesocial .fa-facebook-f{
    background-color:#1558d6;
    padding:8px 16px;
}

.messagesocial .fa-twitter{
    background-color:#1DA1F2;
    padding:8px 11px;
}

.messagesocial .fa-linkedin-in{
    background-color:#4875B4;
}

.messageform .btn{
    background-color:#681d9a;
    color:white;
}

.messagesocial i:hover{
    transform:translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -o-transform: translateY(-3px);
}


#email_validation, #name_validation, #messag_validation{
    display: none;
}

span.error{
    color:red;
}

.success-msg, .success-msg-footer, .success-msg-footerpages{
    display: none;
    margin-top:1em;
    color:#e7b11d;
}



/*Request a demo page*/

.requestdemo{
    background: url("../img/company-request-demo.jpg");
    height: 60vh;
    min-height: 350px;
    /*background: no-repeat center center scroll;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /*background-attachment:fixed;*/
}

.requestdemo .requestdemotext{
    position: relative;
    top:25%;
    text-align:left;
    color:white;
}

.requestdemo .requestdemotext hr{
    width: 10%;
    border-color: #e7b11d;
    margin-left:0;
    text-align:left;
}

.requestdemo .requestdemotext h3{
    font-size:47px;
}

/*Product demo*/
.productdemo, .contactinfo{
    padding-top: 40px;
    
}

.productdemo, .contactinfo, .preferences {
    color:#7a7a7a;
}

.productdemo h3{
    margin-bottom: 25px;
}

label span{
    color:red;
}

.preferences button{
    background-color:#681d9a;
    color:white;
}

.preferences{
    padding-top:40px;
    padding-bottom:40px;
}

/*Fee survey page*/

.feesurvey{
    background: url("../img/insur-tech-banner.jpg");
    height: 80vh;
    min-height: 350px;
    /*background: no-repeat center center scroll;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

}

.feesurvey .feesurveytext{
    position: relative;
    top:20%;
    text-align:left;
    color:white;
}

.feesurvey .feesurveytext hr{
    width: 10%;
    border-color: #e7b11d;
    margin-left:0;
    text-align:left;
}

.feesurvey .feesurveytext h4{
    font-size:30px;
    font-weight:lighter;
}

.feesurvey .feesurveytext h3{
    font-size: 47px;
}

.feeschedule{
    padding-top:60px;
}

.feesurveyfeatures .row{
    margin-bottom:40px;
}

.mobilizerimg{
    width:250px;
}

.feesurveystart{
    padding-top:40px;
    padding-bottom: 40px;
    background: #681d9a;
    color:white;
}

.feesurveystart p{
    margin:30px 0;
}

.feesurveystart button{
    border:1px solid white;
    color:white;
    background-color: #681d9a;
    padding:10px 25px;
    margin-right:10px;
}

.alignvertical-bottom{
    display:flex;
    align-items: flex-end;
}

.feesurveycard .card p{
    margin-bottom:5px;
}

.feesurveycard button{
    width:100%;
    background: #e7b11d;
    color:white;
    padding:10px;
}

.feesurveycard .card-body{
    padding:30px;
}

.feesurveycard .card{
    box-shadow: 0px 0px 10px #d8d8d8;
    margin:20px;
    border:none;

}

.feesurveycard{
    padding-top:20px;
    padding-bottom:60px;
}

/*Sikka Payment page*/

.payment{
    background: url("../img/sikka-payments-banner-2.jpg");
    height: 80vh;
    min-height: 350px;
    /*background: no-repeat center center scroll;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

}

.payment .paymenttext{
    position: relative;
    top:20%;
    text-align:left;
    color:white;
}

.payment .paymenttext hr{
    width: 10%;
    border-color: #e7b11d;
    margin-left:0;
    text-align:left;
}

.payment .paymenttext h4{
    font-size:30px;
    font-weight:lighter;
}

.payment .paymenttext h3{
    font-size: 47px;
}

.payment .paymenttext button{
    padding:5px 25px;
    color:white;
    border:1px solid white;
    background: rgba(0,0,0,0);
    border-radius:5px;
}

.paymentmock img{
    max-width:400px;
    margin:0 auto;
}

.paymentmock{
    padding-top:60px;
}

.paymentpricing{
    text-align: center;
}
.paymentpricing button{
    color:#681d9a;
    background:white;
    border:1px solid #681d9a;
    padding: 5px 25px;
    margin: 25px;
    border-radius: 5px;
}

.paymentfeatures{
    background:#f5f5f5 ;
    padding-top:50px;
    padding-bottom:50px;
}

.paymentfeatures h4{
    margin-bottom: 40px;
    text-align:center;
}


/*Patient pay page*/
.patientpay{
    background: url("../img/patient-pay-banner.jpg");
    height: 60vh;
    min-height: 350px;
    /*background: no-repeat center center scroll;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

}

.patientpay .patientpaytext{
    position: relative;
    top:25%;
    text-align:right;
    color:white;
}

.patientpay .patientpaytext hr{
    width: 10%;
    border-color: #e7b11d;
    margin-right:0;
    text-align:right;
}

.patientpay .patientpaytext h4{
    font-size:30px;
    font-weight:lighter;
}

.patientpay .patientpaytext h3{
    font-size: 47px;
}
.patientpay .patientpaytext p{
    font-size: 18px;
}

.patientpayfeatures{
    background: #f5f5f5;
    padding-top: 60px;
    padding-bottom: 50px;
}

.patientpayfeatures h4{
    text-align: center;
    padding-bottom: 30px;
}

.patientpayfeatures .row{
    margin-top:30px;
}

@media (max-width:767px){

    .autopay{
        padding-top:0;
    }
    .patientpayfeatures .row{
        margin-top:0px;
    }
    .patientpayfeatures .row div{
        margin-top:10px;
    }
    .autopay .patpayimg{
        margin-bottom: 30px;
        }
}

.patientpaysection{
    text-align: center;

}
.patientpaysection hr{
    margin-left: auto;
}

/*One api page*/

.apimain{
    background: url("../img/banner-ecosystem.jpg");
    /*height: 80vh;
    min-height: 350px;
    background: no-repeat center center scroll;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment:fixed;

}

.apimain .apimaintext{
    padding-top:20%;
    padding-bottom: 5%;
    text-align:left;
    color:white;
}   

@media(min-width:992px){
    .apimain .apimaintext{
        padding-top:10%;
        padding-left: 30%;
    }
}
.apimain .apimaintext hr{
    width: 10%;
    border-color: #e7b11d;
    margin-left:0;
    text-align:left;
}

.apimain .apimaintext h4{
    font-size:30px;
    font-weight:lighter;
}

.apimain .apimaintext h3{
    font-size: 47px;
}

.apiinfo .row [class*="col"]{
    padding-top:20px;
    padding-bottom:20px;
}

.vertical{
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    flex-direction: column;
    -ms-flex-direction: column;
    
}
.apiplans{
    padding-top: 50px;
}
.apiplans h3{
    color:#681d9a;
    font-size: 36px;
    text-align: center;
}

.apiplans hr{
    width: 10%;
    border-color: #e7b11d;
}

.apiplans table{
    margin-top:25px;
    border-collapse: collapse;
}
    
.apiplans table .title{
    background-color: #165ead;
    text-align: center;
    color: white;
    padding-top: 15px;
    font-size: 22px;
}
.apiplans table .label{
    width: 225px;
    color: #fff;
    font-weight: 400;
    background-color: #681c9a !important;
    padding: 10px;
}
.apiplans table .copy{
    color: #3b3b3b;
    font-size: 11px;
    padding: 10px 12px;
}
.apiplans table .center{
    text-align:center;
}
.apiplans table .icon, .apiplans table .copy{
    height: 45px;
}

.checkmark i{
    width: 20px;
    height: 20px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    background-color: #5DCB61;
    border-radius: 50%;
    padding: 4px 4px 4px 3px;
    margin-right: 0;
}
.apiplans table .btn-action {
    color: #fff;
    background-color: #EFB111;
    border:2px solid #EFB111;
    padding: 5px 15px;
    transition: all 0.5s ease 0s;
}

.apiplans table .btn-request{
    color: #fff;
    background-color: #681d9a;
    border:2px solid #681d9a;
    padding: 4px 19px;
    font-size: 13px;
    transition: all 0.5s ease 0s;
}
.apiplans table.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.apiplans .btn-action:hover{
    border-radius: 25px;
    color: black;
    background-color: white;
}
.apiplans .btn-request:hover{
    background-color: rgba(104, 29, 154,0.3);
    color: black;
}

table .blank{
    background-color: white!important;
}
table.chart2 td.label, table.chart2 td.blank, table.chart3 td.label, table.chart3 td.blank, table.chart4 td.label, 
table.chart4 td.blank, table.chart5 td.label, table.chart5 td.blank 
    {
    display: table-cell;
}
.apiplans table td {
    border-top: 1px solid #ddd ;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.apiplans table tr:last-child td:last-child{
    border-left:1px solid #ddd;
}

@media(min-width: 768px){
    table.chart2 td.label, table.chart2 td.blank, table.chart3 td.label, table.chart3 td.blank, table.chart5 td.label, table.chart5 td.blank {
    display: none;
}
table.chart2 tr:last-child td:last-child, table.chart3 tr:last-child td:last-child, table.chart5 tr:last-child td:last-child{
    border-left: none;
}
}

@media(min-width: 1200px){
table.chart2 td.label, table.chart2 td.blank, table.chart3 td.label, table.chart3 td.blank, table.chart4 td.label, 
table.chart4 td.blank, table.chart5 td.label, table.chart5 td.blank 
    {
    display: none;
}
table.chart2 tr:last-child td:last-child, table.chart3 tr:last-child td:last-child, table.chart4 tr:last-child td:last-child, table.chart5 tr:last-child td:last-child{
    border-left: none;
}
}

.apiplans [class*="col-"]{
    padding:0;
}

.apiplans [class*="chart"] tr:nth-child(even) td{
    background-color:#f5f5f5;
}

.chart1 tr:first-child td:first-child, .chart1 tr:last-child td:first-child, 
.chart2 tr:first-child td:first-child, .chart2 tr:last-child td:first-child,
.chart3 tr:first-child td:first-child, .chart3 tr:last-child td:first-child,
.chart4 tr:first-child td:first-child, .chart4 tr:last-child td:first-child,
.chart5 tr:first-child td:first-child, .chart5 tr:last-child td:first-child
{
    border: none;
}
.apiplans table tr td.label i {
    color: #9736d7;
    margin-left: 2px;
}
.apiplans table td.description{
    vertical-align: top;
    height: 200px;
}

.apiplans table .monthly{
    height: 78px;
    color: #683691 !important;
    font-size: 19px;
    font-weight: bold;
}

.apinotes{
    color: #777;
    font-size: 12px;
    margin-bottom: 50px;
    margin-top: 20px;
}
.apinotes p{
    margin: 0 0 10px 0;
    margin-left: 15%;
    
}

@media(max-width: 1199px){
    .apinotes p{
    margin: 0 0 10px 0;
    margin-left: 0;
}
.apiplans .chart1 td.description, .apiplans .chart3 td.description{
    height: 120px!important;
}
.apiplans .chart4 td.description, .apiplans .chart5 td.description{
    height: 165px!important;
}
}
@media(min-width: 768px) and (max-width:991px){
    .apiplans .chart1 td.description, .apiplans .chart3 td.description{
    height: 150px!important;
} 
    .apiplans .chart4 td.description, .apiplans .chart5 td.description{
    height: 190px!important;
}
}

@media(max-width:767px){
    .apiplans .row{
    padding: 0 15px;
}
.apiplans table td.description{
    height: auto!important;
}
}
/*One api page carousel*/

.api-quotes{
    text-align: center;
    padding: 0;
}
.api-quotes p{
    color: #4a4a4a;
    line-height: 1.5;
    font-size: 20px;
    text-align: left;
}
.api-quotes p b{
    color: #681d9a;
}
.api-quotes h5{
    color: #4a4a4a;
    font-size: 23px;
}
.api-quotes h5 span{
    font-weight: 400;
    font-size: 18px;
}
.api-quotes img{
    margin-top: 10px;
}
#Carousel-oneapi .carousel-control-prev span i, #Carousel-oneapi .carousel-control-next span i{
    color:#9797a6;
    opacity:0.5;
    font-size: 25px;
}
/*#Carousel-oneapi .carousel-control-prev, #Carousel-oneapi .carousel-control-next{
    width: 1%;
}*/

#Carousel-oneapi .carousel-item {
    height: 350px;
    min-height: 350px;
    background-color:#f5f5f5;
}

#Carousel-oneapi .carousel-caption{
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    right: 0;
    left: 0;
    bottom: auto;
    
}

#Carousel-oneapi .carousel-control-next, #Carousel-oneapi .carousel-control-prev {
    width:5%;
}

@media(max-width:767px), (max-width:991px) and (max-height: 450px) {
    #Carousel-oneapi .carousel-control-next, #Carousel-oneapi .carousel-control-prev{
        display: none;
    }
    .api-quotes h5{
        font-size: 19px;
    }
    .api-quotes h5 span{
        font-size: 15px;
    }
    .api-quotes p{
        font-size: 17px;
    }
}

/*Request quote page*/

select#sel1{     
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#requestquote .select-container:before{
    top:18px;
}

/*Jobs - director api marketplace*/
.jobs{
    background-image: url(../img/banners/about-us-banner-full.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    /*background-color: #1f1f1f;
    height: 30vh;
    min-height: 350px;*/
}

.jobs .jobstext{
    padding-top: 5%;
    text-align:left;
    color:white;
}

.jobs .jobstext hr{
    width: 10%;
    border-color: #e7b11d;
    margin-left:0;
    text-align:left;
}

.jobs .jobstext h4{
    font-size:30px;
    font-weight:lighter;
}

.jobs .jobstext h3{
    font-size:47px;
}

.jobdesc{
    padding-top: 60px;
    padding-bottom: 60px;
}

.jobdesc h3{
    color: #3c92ca;
    text-transform: uppercase;
   font-size: 32px;
}

.jobdesc p, ul{
    font-size: 15px;
    color: #4a4a4a;
}

.jobsinfo{
margin-bottom: 40px;
}

.jobdesc .share i{
    font-size: 35px;
}
.jobdesc .share p:first-child i{
    color: #777;
}
.jobdesc .share p:last-child i{
    color:#4875B4;
}
.jobdesc .share p{
    margin-bottom: 5px;
    margin-left: 20px;
    float: right;
}

.jobdesc .share p:hover{
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

/*Sikka Insights page*/
.insights-title{
    background: url("../img/insights/sikka-insights-background.jpg");
    /*height: 60vh;
    min-height: 350px;
    background: no-repeat center center scroll;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

}

.insights-title .insights-titletext{
    /*position: relative;
    top:20%;*/
    padding-top: 15%;
    padding-bottom: 5%;
    text-align:left;
    color:white;
}

@media (min-width: 992px){
    .insights-title .insights-titletext {
        padding-top: 10%;
    }
    }
      
@media (max-width: 575px){
    .insights-title .insights-titletext{
            padding-top:20%;
        }
    }

.insights-title .insights-titletext hr{
    width: 10%;
    border-color: #e7b11d;
    margin-left:0;
    text-align:left;
}

.insights-title .insights-titletext h4{
    font-size:28px;
    font-weight:lighter;
}

.insights-title .insights-titletext h3{
    font-size: 42px;
}

.insights-title .insights-titletext p{
    font-size: 22px;
}

@media(max-width:575px), (max-width:991px) and (max-height: 450px) {
    .insights-title .insights-titletext h4{
        font-size:22px;
    }
    
    .insights-title .insights-titletext h3{
        font-size: 32px;
    }
    .insights-title .insights-titletext p{
        font-size: 16px;
    }
}

.insights-style{
    padding-top: 50px;
    padding-bottom:50px;
}

.insights-style h4{
    color:#3c92ca;
    font-size: 24px;
    font-weight: 400;
}
.insights-style p{
    color:#4a4a4a;
}
.insights-style h3{
    color:#212121;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -1px;
}

.insights-style hr{
    width: 10%;
    border-color: #e7b11d;
    margin-left:0;
    text-align:left;
}

.insights-sec2 img{
    margin: 0 auto 15px;
    display: block;
    max-width: 100%;
}
.insights-sec2 .row{
    text-align: center;
    margin-top: 30px;
}
.insights-sec3{
    overflow: hidden;
    padding-bottom: 0;
    padding-top: 0;
}
.insights-sec3 .div-img img{
    width: 100%;
    display: block;
}

.insights-sec3 .div-text{
    background-color: #e6effa;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    padding-left: 5%;
}
.insights-sec3 .row:nth-child(2) .div-text{
    background-color: #f5f5f5;
}

.insights-sec3 .div-img{
    padding: 0;
}


@media(max-width:767px){
    .insights-sec3 .div-img img{
        margin: 0 auto;
    }
    .insights-sec3 .div-text{
        padding: 5%;
    }
    .insights-sec3 .row{
        margin-bottom: 30px;
    }
}
.insights-button{
    padding: 5px 25px;
    border-radius: 25px;
    background-color: #1884c8;
    color: white!important;
    display: inline-block;
}

.insights-sec4 img{
    width: 60px;
    display: block;
    margin: 0 auto;
    max-width: 100%;
}
.insights-sec4 .row{
    margin-top: 30px;
}
.insights-sec4 .col-img{
    display: flex;
    display: -ms-flexbox;
    align-items: center;
}

@media(max-width:767px){
    .insights-sec4 img{
        margin-bottom: 20px;
    }
    .insights-sec4 .row{
        text-align: center;
    }
}

.insights-sec5 {
    background-color: #e6effa;
}
.insights-sec5 img{
    display: block;
    margin: 30px auto 0;
    max-width: 100%;
}
.insights-sec5 a{
    text-decoration: underline;
}
.insights-sec5 p{
    font-size: 18px;
}
.insights-sec6{
    text-align: center;
    padding: 0;
}
.insights-sec6 p{
    color: #4a4a4a;
    line-height: 1.5;
    font-size: 22px;
    text-align: left;
}
.insights-sec6 p b{
    color: #02597f;
}
.insights-sec6 h5{
    color: #4a4a4a;
    font-size: 23px;
}
.insights-sec6 h5 span{
    font-weight: 400;
    font-size: 19px;
}
.insights-sec6 img{
    margin-top: 10px;
}
#Carousel-insights .carousel-control-prev span i, #Carousel-insights .carousel-control-next span i{
    color:#9797a6;
    opacity:0.5;
    font-size: 25px;
}
/*#Carousel-insights .carousel-control-prev, #Carousel-insights .carousel-control-next{
    width: 1%;
}*/

#Carousel-insights .carousel-item {
    height: 400px;
    min-height: 405px;
    background-color:#f5f5f5;
}

#Carousel-insights .carousel-caption{
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    right: 0;
    left: 0;
    bottom: auto;
    
}

#Carousel-insights .carousel-control-next, #Carousel-insights .carousel-control-prev {
    width:5%;
}

@media(max-width:767px), (max-width:991px) and (max-height: 450px) {
    #Carousel-insights .carousel-control-next, #Carousel-insights .carousel-control-prev{
        display: none;
    }
    .insights-sec6 h5{
        font-size: 19px;
    }
    .insights-sec6 h5 span{
        font-size: 15px;
    }
    .insights-sec6 p{
        font-size: 17px;
    }
}


.insights-sec7{
    overflow: hidden;
    padding-bottom: 0;
    padding-top: 0;
}
.insights-sec7 .div-img img{
    width: 100%;
    display: block;
}

.insights-sec7 .div-text{
    background-color: #f7fafd;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    padding-left: 5%;
}

.insights-sec7 .div-img{
    padding: 0;
}


@media(max-width:767px){
    .insights-sec7 .div-img img{
        margin: 0 auto;
    }
    .insights-sec7 .div-text{
        padding: 5%;
    }
    .insights-sec7 .row{
        margin-bottom: 30px;
    }
}

/*contact demo form*/

.insights-sec8 h3{
    color:#02597f;
    font-weight: 400;
}
.insights-sec8 .contactform{
    max-width: 600px;
    text-align: left;
    
}

.insights-sec8 #email_val, .insights-sec8 #name_val, .insights-sec8 #practicename_val, .insights-sec8 #phone_val, .insights-sec8 #message_val, .insights-sec8 .error{
    display: none;
    color: red;
}

.insights-sec8 span.error, .insights-sec8 span{
    color:red;
}

.insights-sec8 .success-msg{
    display: none;
    margin-top:1em;
    color:#e7b11d;
}
.insights-sec8 .contactform .btn{
    background-color:#681d9a;
    color:white;
    margin: 5px auto 5px;
    box-shadow: 0px 1px 5px rgb(105,105,105);
}

.insights-sec8 .contactform .formgroup input{
    display: inline-block;
}

/*Insights download*/
.insights-pdf p{
    font-size: 18px;
}

.download-btn{
    padding: 5px 25px;
    border-radius: 25px;
    background-color: #1884c8;
    color: white!important;
    display: inline-block;
    border: none;
}

/*Modal1*/
#modal1{
    text-align: left;
}

#modal1 .close{
    text-align: right;
    padding: 5px 10px 0px;
} 

#modal1 .modalsubmit{
    text-align: center;
    margin: 0 auto;
}

#modal1 .modal-body{
    padding-bottom:2rem;
    padding-top: .5rem;
}

/*Request demo form*/
.downloadform{
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.downloadform #email_val, .downloadform #name_val, .downloadform .error{
    display: none;
    color: red;
}

.downloadform span.error,.downloadform span{
    color:red;
}

.downloadform .success-msg{
    display: none;
    margin-top:1em;
    color:#e7b11d;
}
.downloadform .btn{
    background-color:#681d9a;
    color:white;
    margin: 5px auto 5px;
    box-shadow: 0px 1px 5px rgb(105,105,105);
}

.downloadform .formgroup input{
    display: inline-block;
}

/*Online Consult*/
/*Section 1*/
.consult-section1{
    background-image:url(../img/onlineconsult/consult-2-2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top:15%;
    padding-bottom: 15%;
    text-align: right;
}

.consult-section1 h1{
    color: white;
    font-size: 45px;
    margin-bottom: 20px;
}

.consult-section1 p{
    color: white;
    font-size: 25px;
    margin-bottom: 25px;
}
.consult-section1 hr{
    width: 10%;
    text-align: right;
    margin-right:0 ;
    margin-left: auto;
}
.consult-section1 img{
    width:150px;max-width: 100%;display: inline-block;margin-right: 15px;margin-bottom: 10px;
}
@media(max-width:767px){
    .consult-section1{
        padding-top:20% ;
    }
}

/*Section 2*/
.consult-section2{
    padding-top: 50px;
    padding-bottom: 50px;
    
}
.consult-section2 h5{
    line-height: 1.65;
    padding-top: 5%;
    padding-bottom: 25px;
}
.consult-section2 img{
    margin: auto;
}

/*Section Dark*/
.consult-section-dark{
    padding-top:40px ;
    padding-bottom: 40px;
    background-color:#003466;
    color: white;
    text-align: center;
}
.consult-section-dark span{
    color: #f7b500;
}

/*Section 3*/
.consult-section3{
    background-color: #f5f5f5;
    text-align: left;
}
.consult-section3 span{
    color: #681d9a;
}
.consult-section3 li{
    font-size: 1.25rem;
    font-weight: 500;
}
.consult-section3 .section3-div{
    padding: 0;
}
.consult-section3 .section3-div1{
    padding-top: 10%;
}
.consult-section3 h4{
    text-align: center;
    line-height: 1.3;
}
@media(max-width:991px){
    .consult-section3 .section3-div1{
        padding-top: 5%;
    }
    .consult-section3 .section3 h4{
        font-size: 1.3rem;
    }
}
@media(max-width:767px){
    .consult-section3 h4{
    text-align: left;
    margin-bottom: 40px;
    }
}
/*Section 4*/
.consult-section4{
    padding-top:50px ;
    padding-bottom: 50px;
    text-align: center;
}
.consult-section4 h4{
    color: #681d9a;
}
.consult-section4 p{
    font-size: 18px;
}
.consult-section4 img{
    width: 150px;
    margin-bottom: 20px;
}
.consult-section4 hr{
    margin-bottom: 2rem;
    width: 90%;
}
.consult-section4 .new-features{
    margin-top:20px;
}
@media(max-width:767px){
    .consult-section4 hr{
        display: none;
    }
}
/*Section 5*/
.consult-section5{
    padding-top:50px ;
    padding-bottom: 50px;
}
.consult-section5 h2 span{
    color: #681d9a;
    padding-left: 15%;
}
.consult-section5 li{
    font-size: 19px;
    font-weight: 500;
}
.consult-section5 .row1{
    margin-bottom: 35px;
}
.consult-section5 ul{
    margin-bottom: 0;
}
.consult-section5 hr{
    width: 90%;
    margin-bottom: 2rem;
    margin-top: 2rem;
}
.consult-section5 .title1{
    color: #0058c4;
    margin-left: 15px;
    display: inline-block;
    margin-bottom: 25px;
}
.consult-section5 .title2{
    color: #a8315c;
    margin-left: 15px;
    display: inline-block;
    margin-bottom: 25px;
}
.consult-section5 p{
    font-size: 18px;
    font-weight: 500;
}
/*Section 6*/
.consult-section6{
    padding-top:50px ;
    padding-bottom: 50px;
    text-align: center;
}
.consult-section6 p{
    font-size: 18px;
    line-height: 1.5;
}

.consult-section6 .row1 img{
    width: 150px;
    max-width: 100%;
    margin-right: 15px;
    
}

.consult-section6 .row2{
    margin-top: 45px;
}
.consult-section6 p b{
    font-size: 20px;
}
.consult-section6 .market-button a{
    background-color: #681d9a;
    display: inline-block;
    border-radius: 25px;
    color: white;
    padding:5px 15px;
    border: 1px solid #681d9a;
    box-shadow:0px 1px 5px rgba(130,130,130,0.8);
    -webkit-box-shadow:0px 1px 5px rgba(130,130,130,0.8);
}
.market-button a:hover{
    background-color: white;
    color: #681d9a;
}
.consult-section6 ol{
    list-style-type: none;
}
.consult-section6 li{
    font-size: 18px;
    font-weight: 500;
}
.consult-section6 h5{
    font-size: 24px;
    color: white;
    padding:15px;
   background-color: #4a4a4a;
}

.consult-section6 .section6-col1 img{
    display: inline-block;
    margin-bottom: 20px;
}

.consult-section6 .section6-col1 ol{
    padding-left: 0;
}
.consult-section6 .section6-col1{
    padding: 0;
    position: relative;
    border: 2px solid #4a4a4a;
}
.consult-section6 .section6-col2{
    padding: 0;
    position: relative;
    border: 2px solid #4a4a4a;
}
.consult-section6 .section6-col1:after {
    position: absolute;
    z-index: 1;
    content: "";
    right: -1em;
    bottom: -3px;
    width: 3em;
    background-color: white;
    transform: skewX(-10deg);
    -webkit-transform: skewX(-10deg);
    top: -3px;
    border-left: 2px solid #4a4a4a;
}
.consult-section6 .section6-col2::before{
    position: absolute;
    z-index: 1;
    content: "";
    left: -2em;
    bottom: -3px;
    width: 4em;
    background-color: white;
    transform: skewX(-10deg);
    -webkit-transform: skewX(-10deg);
    top: -3px;
    border-right: 2px solid #4a4a4a;
    
}
@media(max-width:767px){
    .consult-section6 .section6-col2{
        margin-top: 30px;
    }
    .consult-section6 .section6-col1:after, .consult-section6 .section6-col2::before{
    position: relative;
    content: "";
    border:none;
    }
    .consult-section6 h4{
        margin-bottom: 25px;
    }
}
/*Section 7*/
.consult-section7{
    padding-top:50px ;
    padding-bottom: 50px;
    text-align: center;
}

/*contact demo form*/
.consult-section7 .contactform{
    max-width: 600px;
    text-align: left;
    margin: 25px auto;
}

#email_val, #name_val, #practicename_val, #phone_val, #message_val, .error{
    display: none;
    color: red;
}

.consult-section7 span.error{
    color:red;
}

.consult-section7 .success-msg{
    display: none;
    margin-top:1em;
    color:#e7b11d;
}
.consult-section7 .contactform .btn{
    background-color:#681d9a;
    color:white;
    margin: 5px auto 5px;
    box-shadow: 0px 1px 5px rgb(105,105,105);
}

.consult-section7 .contactform .formgroup input{
    display: inline-block;
}

/*Animal health*/
.animalhealth-title{
    padding-top: 100px;
    padding-bottom: 50px;
    text-align: center;
}
.animalhealth-title img{
    margin: auto;
}
.animalhealth-title h1{
    color: #3c92ca;
}
.animalhealth-title p{
    color: #4a4a4a;
}
.animalhealth-title h5{
    color: #4a4a4a;
    font-style: italic;
    max-width: 600px;
    margin: 30px auto 0px;
    line-height: 1.5;
}
.animalhealth-title hr{
    width: 5%;
    border-color: #e7b11d;
    margin-top: 25px;
    margin-bottom: 35px;
}
.animalhealth-title h4{
    background-color: #1884c8;
    font-size: 22px;
    color: white;
    padding: 10px 25px;
    display: inline-block;
}
.animalhealth-title a, .animalhealth-content a{
    text-decoration: underline;
}
.animalhealth-content{
    padding-top: 30px;
    padding-bottom: 50px;
}
.animalhealth-content h2{
    color: #3c92ca;
}
.animalhealth-content hr{
    width: 5%;
    border-color: #e7b11d;
    margin-left: 0;
    margin-top: 20px;
    margin-bottom: 30px;
}
.animalhealth-content img{
    float: left;
    margin-right: 30px;
    margin-bottom: 15px;
}
.animalhealth-contact{
    text-align: right;
    margin-bottom: 60px;
}
.animalhealth-contact1{
    display: inline-block;
    background-color: #e6effa;
    padding: 20px 20px 10px;
    border-radius: 20px 0 0 20px;
    text-align: left;
}

/*Hackathon*/
.hackathon-title hr{
    width: 5%;
    border-color: #e7b11d;
    margin-top: 35px;
    margin-bottom: 30px;
    border-width: 2px;
}

.hackathon-title{
    padding-top: 120px;
    padding-bottom: 50px;
    text-align: center;
}
.hackathon-title .hackathon-logo{
    margin: 35px auto 35px;
    max-width: 100%;
}
.hackathon-title h1{
    color: black;
    font-size: 35px;
    margin-bottom: 15px;
}
.hackathon-title h4{
    color: #3c92ca;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}
.hackathon-title h5{
    color: #4a4a4a;
    margin: 20px auto;
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.2;
}
.hackathon-title h6{
    color: #1884c8;
    font-size: 18px;
}
.hackathon-title p{
    color: #4a4a4a;
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.5;
    font-weight: 400;
    font-size: 16px;
}
.hackathon-titlediv{
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
}
/*Countdown*/
.hackathon-countdown{
    background-color:#3c92ca;
    padding-top: 22px;
    padding-bottom: 22px;
    color: white;
    position: fixed;
    bottom: 0px;
    width: 100%;
    z-index: 111111;
}
.hack-timer{
    text-align: left;
}
#timer-text{
    display: flex;
    align-items: center;
}
#timer-text p{
    font-size: 22px;
    text-align: center;
    margin: 0px auto 5px;
}
#timer div{
    display: inline-block;
    line-height: 1;
    font-size: 40px;
    text-align: center;
    margin-right: 20px;
}

#timer span {
    display: block;
    font-size: 18px;
    color: white;
}
#timer #days {
    font-size: 50px;
    color: #e7b11d;
  }
#timer  #hours {
    font-size: 50px;
    color: #e7b11d;
  }
#timer #minutes {
    font-size: 50px;
    color: #e7b11d;
  }
#timer #seconds {
    font-size: 30px;
    color: #e7b11d;
  }  
.hackathon-countdown h5{
      margin-top: 5px;
  }
/*Hackathon register*/
.hack-register{
    display: flex;
    align-items: center;  
}
.register-btn{
    padding: 6px 22px;
    border-radius: 25px;
    background-color:white;
    color: #165ead;
    display: inline-block;
    border: 1px solid white;
    box-shadow: 0px 1px 2px rgb(105,105,105);
    -webkit-box-shadow: 0px 1px 2px rgb(105,105,105);
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    font-size: 16px;
    text-align: center;
   cursor: pointer;
}
.register-btn:hover{
    border-radius: 5px;
}
@media(max-width:767px){
    .register-btn{
        margin-top: 20px;
    }
    .hack-timer{
        text-align: center;
    }
    #timer-text p{
        font-size: 18px;
    }
    .register-btn{
        font-size: 18px;
        padding: 5px 20px;
    }
    .hackathon-countdown h5{
      text-align: center;
    }
}

/*Request form hackathon*/
.hackathonForm{
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    color: black;
}

#email_val, #lastname_val, #companyname_val, #firstname_val, .error{
    display: none;
    color: red;
}

.hackathonForm span.error,.hackathonForm span{
    color:red;
}

.hackathonForm .success-msg{
    display: none;
    margin-top:1em;
    color:green;
}
.hackathonForm .btn{
    background-color:#1884c8;
    color:white;
    margin: 5px auto 5px;
    box-shadow: 0px 1px 5px rgb(105,105,105);
}

.hackathonForm .formgroup input{
    display: inline-block;
}
/*Dates*/
.hackathon-dates{
    padding-top: 25px;
    padding-bottom: 25px;
    background-color:  #e6effa;
}
.hack-dates{
    text-align: center;
    background-color: white;
    padding:20px 40px 5px;
    max-width: 700px;
    margin: auto;
    border-radius: 100px;
}
.hackathon-dates p{
    margin-bottom: 10px;
}
.hackathon-dates h4{
    color: #3c92ca;
}
@media(max-width:575px){
    .hack-dates{
        border-radius: 10px;
    }
}
.hackathonForm1{
    margin-top: 25px;
}
/*Details*/
.hackathon-details{
    padding-top: 50px;
    padding-bottom: 25px;
    background-color:#e6effa;
}
.hackathon-details h4{
    color: #3c92ca;
    text-align: left;
}
/*.hackathon-details hr{
    text-align: center;
    margin: 20px auto!important;
}*/
.hackathon-details li{
    font-size: 16px;
}
.hackathon-details a{
    text-decoration: underline;
}

/*Register*/
.hackathon-register hr, .hackathon-prize hr, .hackathon-app hr, .hackathon-rules hr, .hackathon-policy hr, .hackathon-judges hr, .hackathon-contact hr, .hackathon-dates hr, .hackathon-details hr{
    width: 5%;
    border-color: #e7b11d;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left:0 ;
    border-width: 2px;
}
@media(max-width:767px){
    .hackathon-register hr, .hackathon-prize hr, .hackathon-app hr, .hackathon-rules hr, .hackathon-policy hr, .hackathon-title hr, .hackathon-judges hr, .hackathon-contact hr, .hackathon-dates hr, .hackathon-details hr{
        width: 10%;
    }
}
.hackathon-register{
    padding-top: 25px;
    padding-bottom: 25px;
}
.hackathon-register h4{
    color: #3c92ca;
}
.hackathon-register li{
    font-size: 16px;
}
.hackathon-register a{
    text-decoration: underline;
}
/*Prize*/
.hackathon-prize{
    padding-top: 50px;
    padding-bottom: 25px;
}
.hackathon-prize h4, .hackathon-prize .row h5{
    color:  #3c92ca;
}
.hackathon-prize img{
    margin: auto;
    margin-right: 0;
    
}
.hackprize-img{
    display: flex;
    display: -ms-flexbox;
    align-items: center;
}
.hackathon-prize .row{
    margin-bottom: 30px;
}
.hackathon-prize p{
    max-width: 700px;
}
.hackprize{
    font-size: 20px;
    margin-bottom: 50px;
}
.hackprize-center span{
    color: #3c92ca;
}
@media(max-width:767px){
    .hackathon-prize img{
        margin: 0 auto 20px;
        
    }
    .hackathon-prize .row{
        text-align: center;
    }
}

/*Judges*/
.hackathon-judges{
    padding-top: 25px;
    padding-bottom: 50px;
}
.hackathon-judges h4{
    color:  #3c92ca;
}

.hackathon-judges .row{
    text-align: center;
}
.hackathon-judges .row h6{
    color: #a4a4a4;
    line-height: 1.1;
    margin-bottom: 15px;
}
.hackathon-judges img{
    margin: 20px auto 10px;
}
.expand-text1, .expand-text2, .expand-text3, .expand-text4, .expand-text5, .expand-text6{
    display: none;
    margin-top: 20px;
}
.active-text{
    display: block;
}

/*App*/
.hackathon-app{
    padding-top: 25px;
    padding-bottom: 50px;
}
.hackathon-app h4{
    color:  #3c92ca;
}
.hackathon-app a{
    text-decoration: underline;
}

/*Rules*/
.hackathon-rules{
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #3c92ca;
    width: 90%;
    margin: auto;
    border-radius: 10px;
    color: white;
}
.hackathon-rules h5{
    color: #f7b500;
    text-align: center;
}
.hackathon-rules h4{
    color: white;
    text-align: center;
}
.hackathon-rules ol{
    color: white;
}
.hackathon-rules hr{
    margin: 25px auto;
}
.hackathon-rules p{
   text-align: center;
   font-size: 18px;
}
.hackathon-rules p span{
    color: #f7b500;
}
/*Policy*/
.hackathon-policy{
    padding-top: 50px;
    padding-bottom: 50px;
}
.hackathon-policy h4{
    color:  #3c92ca;
}

/*Contact*/
.hackathon-contact{
    padding-top: 25px;
    padding-bottom: 50px;
}
.hackathon-contact h4{
    color:  #3c92ca;
}
.hackathon-contact a{
    text-decoration: underline;
}
.hackathon-contact h6{
    margin-bottom: 5px;
    font-size: 20px;
}
.hackcontact-p{
    color: #a4a4a4;
    margin-bottom: 2px;
}

/*SDP*/
.sdp{
    background-image: url("../img/sdp/header-banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    min-height: 280px;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
}
.sdp .sdpText{
    padding-top:5%;
    text-align:left;
    color:black;
}
.sdpText .col-md-4{
    display: flex;
    display: -ms-flexbox;
    align-items: center;
}
.sdpSolution{
    padding-top: 4rem;
    padding-bottom: 2rem;
}
.sdpSolution hr, .whySdp hr{
    width: 10%;
    border-color: #681c9a;
    border-width: 2px;
    margin-left: 0;
    text-align: left;
}
.sdpSolution p, .sdpInvite p, .sdpInfo p{
    line-height: 1.8;
    font-size: 18px;
}
.sdpSolution img, .sdpForm img{
    margin: 10px auto;
}
.sdpSignUp{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.sdpSignUp h6{
    font-size:20px;
    line-height: 1.5;
}
.sdpSignUp .btn{
    color: white;
    font-size: 18px;
    border-radius: 10px;
    background-image: linear-gradient(to right, #681c9a, #c797ff);
    background-color: #681c9a;
    padding: 10px 30px;
    transition: all 0.5s ease 0s;
    margin-top: 15px;
    border: #681d9a;
}
.sdpSignUp .btn:hover{
    background-color: white;
    color: black;
}
.sdpSignUp img{
    margin: 15px auto;
}
.sdpFormCol{
    max-width:600px;
    margin:auto;
    margin-top:4rem;
}
@media(max-width:767px){
    .sdpSolution{
        padding-bottom: 1rem;
        padding-top: 1rem;
    }
    .sdpSignUp img{
        padding-top: 20px;
    }
    .sdpSignUp{
        padding-top: 2.5rem;
    }
    .sdp .sdpText{
        padding-top:15%;
    }
    .sdp{
        min-height: 350px;
    }
    .sdpText .col-md-4{
        justify-content: center;
    }
    .sdpText .col-md-4:first-child{
        margin-bottom: 30px;
    }
}
.sdpHero{
    padding-top:2.5rem;
    text-align: center;
}
.sdpHero img{
    max-width: 100%;
    margin: auto;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 25px;
  bottom: 75px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #1884c8;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #209dd8;
  color: #fff;
}