/* font-family */
@font-face {
    font-family: 'Avenir Next';
    src: url('../fonts/AvenirNext-Regular.woff2') format('woff2'),
        url('../fonts/AvenirNext-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next';
    src: url('../fonts/AvenirNext-Bold.woff2') format('woff2'),
        url('../fonts/AvenirNext-Bold.woff') format('woff'),
        url('../fonts/AvenirNext-Bold.ttf') format('truetype'),
        url('../fonts/AvenirNext-Bold.svg#AvenirNext-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next Demi';
    src: url('../fonts/AvenirNext-DemiBold.woff2') format('woff2'),
        url('../fonts/AvenirNext-DemiBold.woff') format('woff'),
        url('../fonts/AvenirNext-DemiBold.ttf') format('truetype'),
        url('../fonts/AvenirNext-DemiBold.svg#AvenirNext-DemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next';
    src: url('../fonts/AvenirNext-Heavy.woff2') format('woff2'),
        url('../fonts/AvenirNext-Heavy.woff') format('woff'),
        url('../fonts/AvenirNext-Heavy.ttf') format('truetype'),
        url('../fonts/AvenirNext-Heavy.svg#AvenirNext-Heavy') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avenir Next';
    src: url('../fonts/AvenirNext-Medium.woff2') format('woff2'),
        url('../fonts/AvenirNext-Medium.woff') format('woff'),
        url('../fonts/AvenirNext-Medium.ttf') format('truetype'),
        url('../fonts/AvenirNext-Medium.svg#AvenirNext-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
/* General styling */
body{
    font-family: 'Avenir Next';
    margin: 0;
    padding: 0;
    color: #0f1114;
    font-size: 16px;
    font-weight: normal;
    overflow-x: hidden;
}
.ff-an{
    font-family: 'Avenir Next';
}
img{
    max-width: 100%;
}
p {
    font-size: 16px;
    color: #0f1114;
}
ul, ol{ 
    padding-left: 0; margin-left: 0;
}
ul li, ol li{ 
    list-style: none;
}
a{
    color: #0f1114; 
    outline: none; 
}
a:hover, a:focus{
    color: #787759; 
    text-decoration: none;
    box-shadow: none;
}
.text-green{
    color: #787759 !important;
    -webkit-text-fill-color: #787759 !important;
    background: none !important;
}
.text-white{
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: none !important;
}
/**transitions for all hover elements**/
a,button,.btn, .transition{
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
}
/* .common-styling */
.btn.btn-white{
    background: #fff;
    padding: 14px 29px;
    border-radius: 50px;
    border: 1px solid transparent;
    outline: none;
    box-shadow: 2px 2px 16px 0px rgba(213, 241, 255, 0.4);
    font-size: 15px;
    font-family: 'Avenir Next Demi';
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
    transition: all .3s;
}
.btn.btn-white span {
    position: relative;
    /* z-index: 9; */
}
.btn.btn-white:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    /* z-index: 1; */
    opacity: 0;
    background-color: #787759;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.btn.btn-white:hover {
    color: #fff !important;
}
.btn.btn-white:hover:before {
    opacity: 1;
    width: 100%;
}
 /* header styling */
 .site-header{
    background: rgb(245,245,245);
    background: linear-gradient(93deg, rgba(245,245,245,1) 0%, rgba(245,245,245,1) 35%, rgba(245,245,245,1) 100%);
}
.site-header .main-menu {
    padding-top: 0;
}
.site-header .masthead-des{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}
.site-header .masthead-des .navbar-light .navbar-toggler-icon{
    background: url(../images/icons.svg) no-repeat;
}
.site-header .masthead-des .navbar-light .navbar-toggler{
    color:rgba(0, 0, 0, 0.5);
    border-color:rgba(0, 0, 0, 0.5);
}
.site-header .masthead-des .navbar-light .navbar-toggler:focus{
    box-shadow: none !important;
    outline: none !important;
}
.site-header .masthead-des ul li{
    padding: 0 10px;
}
.site-header .masthead-des .navbar-expand-lg .navbar-nav{
    -webkit-box-align: center;-ms-flex-align: center;align-items: center;
}
.site-header .masthead-des ul li:last-child{
    margin-left: 0;
}
.site-header .masthead-des ul li.nav-item.button{
    width: 207px;
    height: 52px;
    border-radius: 50px;
    border: 2px solid #787759;
    outline: none;
    background: #fff;
    box-shadow: 2px 2px 16px 0px rgba(213, 241, 255, 0.4);
    position: relative;
    padding: 0px;
}
.site-header .masthead-des ul li.nav-item .button-wrap{
    position: absolute;
    top: 6px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.site-header .masthead-des ul li.nav-item.button img{
    margin-left: -2px;
}
.site-header .navbar-expand-lg .navbar-collapse{
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.site-header .navbar {
    width: 100%;
    padding: 15px 0px;
}
.site-header .navbar .navbar-brand{
    display: inline-block;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    line-height: inherit;
    white-space: nowrap;
    width: 170px;
}
.site-header .navbar .navbar-brand .logo-icon{
  width: 40px;
}
.site-header .navbar li.nav-item a {
    font-size: 14px;
    line-height: 20px;
    font-family: 'Avenir Next';
    font-weight: 500;
    display: inline-block;
    text-transform: capitalize;
    background: -webkit-gradient(linear, left top, right top, from(#787759), color-stop(50%, #787759), color-stop(50%, #000));
    background: linear-gradient(to right, #787759, #787759 50%, #000 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    -webkit-transition: background-position 275ms ease;
    transition: background-position 275ms ease;
    text-decoration: none;
}
.site-header .navbar li.nav-item a.btn-des-user{
    padding-right: 0;
}
.site-header .masthead-des ul li.nav-item.button a{
    text-transform: uppercase;
    font-family: 'Avenir Next Demi';
    font-weight: 600;
    font-size: 15px;
}
.site-header .masthead-des ul li.nav-item.button a.text-white:hover{
    color: #fff !important;
}
.site-header .navbar li.nav-item a:hover,
.site-header .navbar li.nav-item a.active {
    background-position: 0 100%;
}
.navbar-light .navbar-nav .nav-link.active{
   color: #787759;
}
/* Banner styling */
.site-banner{
    background: url(../images/footer-bg.svg) no-repeat;
    background-size: cover;
    /* height: 635px; */
    padding: 60px 0;
}
.site-banner .banner-content{
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.site-banner .banner-content h1{
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    margin: 0;
    width: 90%;
    margin-bottom: 30px;
}
.site-banner .banner-content p{
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.3px;
    color: #fff;
    margin: 0;
}
.site-banner .banner-content .banner-btn-wrap{
    margin: 50px 0 0 0;
}
.site-banner .banner-content .banner-btn-wrap a{
    display: inline-block;
}
.site-banner .banner-content .btn-white.btn-started{
    color: #787759;
    margin-right: 15px;
}
.site-banner .banner-content .btn-white.btn-quote{
    color: #020202;
}
/* platform section styling */
.platform{
    padding: 100px 0 350px;
    position: relative;
}
.platform:before{
    content: '';
    position: absolute;
    background: url(../images/boxes.svg) no-repeat;
    width: 462px;
    height: 366px;
    background-size: 90% 100%;
    bottom: -150px;
    left: 0;
}
.platform:after{
    content: '';
    position: absolute;
    background: url(../images/boxes2.svg) no-repeat;
    width: 290px;
    height: 366px;
    background-size: 100% 100%;
    bottom: 20px;
    right: 0;
}
.platform .platform-content h1{
    color: #787759;
    font-size: 50px;
    font-family: 'Avenir Next Demi';
    font-weight: 600;
    margin: 0;
}
.platform .platform-content p{
    color: #3d3e3f;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    margin-bottom: 30px;
}
.platform .platform-content .sub-content p{
    color: #3d3e3f;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin: 0;
    margin-left: 20px;
}
.platform .platform-content .sub-content{
    position: relative;
}
.platform .platform-content .sub-content:before {
    content: '';
    position: absolute;
    left: 0;
    border-left: 5px solid #3d3e3f;
    width: 100%;
    height: 100%;
}
/* Features section styling */
.features{
    position: relative;
}
.features:before{
    content: '';
    position: absolute;
    background: url(../images/arrow-shape-img.svg) no-repeat;
    width: 193px;
    height: 281px;
    top: -219px;
    right: 0;
    left: 40px;
    margin: 0 auto;
    z-index: -1;
}
.features h1{
    font-size: 50px;
    color: #3d3e3f;
    font-family: 'Avenir Next Demi';
    font-weight: 600;
    margin: 0;
    text-align: center;
    z-index: 1;
}
.features p{
    font-size: 22px;
    color: #3d3e3f;
    font-weight: 400;
    margin: 0;
    text-align: center;
    margin-bottom: 108px;
}
.features .feature-content{
    text-align: center;
    margin-bottom: 55px;
}
.features .feature-content .img-wrap{
    /* width: 65px; */
    /* height: 70px; */
    margin: 0 auto;
    margin-bottom: 20px;
}
.features .feature-content .content-wrap h2{
    font-size: 22px;
    color: #3d3e3f;
    font-family: 'Avenir Next Demi';
    font-weight: 600;
    margin: 0;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.features .feature-content .content-wrap p{
    font-size: 16px;
    color: #3d3e3f;
    font-weight: 400;
    margin: 0;
    line-height: 24px;
}
/* Goals section styling */
.goals{
    background: url(../images/goals-bg.svg) no-repeat;
    background-size: cover; 
    background-position: 70% 100%;
    height: 1280px;
    padding: 300px 0 0 0;
}
.goals .goals-content h1 {
    font-size: 48px;
    color: #000;
    font-family: 'Avenir Next Demi';
    font-weight: 600;
    margin: 0;
    margin-bottom: 30px;
}
.goals .goals-content h1 .text-clr{
    color: #787759;
}
.goals .goals-content h1 .text-reg{
   font-weight: 400;
   font-family: 'Avenir Next';
}
.goals .goals-content p{
    font-size: 16px;
    color: #000;
    font-weight: 400;
    margin: 0;
    line-height: 24px;
    margin-bottom: 20px;
}
.goals .goals-content ul li{
    font-size: 16px;
    color: #000;
    font-family: 'Avenir Next Demi';
    font-weight: 600;
    margin: 0;
    margin-bottom: 10px;
    padding-left: 30px;
    background-image: url(../images/list-icon.svg);
    background-size: 12px;
    background-position: center left;
    background-repeat: no-repeat;
}
.goals .goals-content ul li:last-child{
    margin-bottom: 0;
}
.goals .goals-content ul{
    margin-bottom: 45px;
}
.goals .goals-content .btn-green{
    background: #787759;
    color: #fff;
    border: 1px solid #787759;
}
.goals .goals-content .btn.btn-white.btn-green:before {
    background-color: #fff;
}
.goals .goals-content .btn.btn-white:hover {
    color: #787759 !important;
}
/* companies ection styling */
.company-content{
    text-align: center;
    padding: 150px 0 0 0;
}
.company-content h1 {
    font-size: 48px;
    color: #000;
    font-family: 'Avenir Next Demi';
    font-weight: 600;
    margin: 0;
}
.company-content p{
    font-size: 26px;
    color: #000;
    font-family: 'Avenir Next Demi';
    font-weight: 600;
    margin: 0;
}
.company-content p span.text-clr{
    color: #16487f;
}
.company-content p span.text-reg{
    font-family: 'Avenir Next';
    font-weight:400;
}
.company-content .img-wrap{
    padding: 50px 0 0 0;
}
/* footer styling */
.footer{
    background: url(../images/footer-bg.svg) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 50px 0 0px 0;
    position: relative;
}
.footer .top-border{
    border-top: 3px solid #fff;
}
.footer .footer-col-1 .footer-logo{
    width:200px;
}
.footer .footer-col-1 .footer-logo a{
    display: inline-block;
}
.footer .footer-col-1 p{
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin: 40px 30px 40px 0;
}
.footer .footer-col-1 .icon-circle{
    background: #fff;
    /* border: 1px solid #fff; */
    height:40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50px;
    text-align: center;
}
.footer .footer-col-1 .icon-circle img{
    padding-bottom: 5px;
}
.footer .footer-col-1 ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}
.footer .footer-col-1 ul li{
    margin-right: 10px;
}
.footer .footer-col-2 ul li,
.footer .footer-col-3 ul li,
.footer .footer-col-4 ul li{
    line-height: 40px;
}
.footer .footer-col-2 ul li a,
.footer .footer-col-3 ul li a{
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
}
.footer .footer-col-2 ul li a:hover,
.footer .footer-col-3 ul li a:hover,
.footer .footer-col-4 ul li a:hover{
    color:#787759;
    transition: all 0.3s ease-in-out 0s;
}
.footer .footer-col-1 ul li.icon-circle img:hover{
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    cursor: pointer;
}
.footer .footer-col-4 ul li p,
.footer .footer-col-4 ul li a{
    color: #fff;
    font-weight: 400;
    font-size: 16px;
}
.footer .footer-col-2 h1,
.footer .footer-col-4 h1,
footer .footer-col-3 h1{
    font-size: 20px;
    color: #fff;
    font-family: 'Avenir Next Demi';
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
    margin: 0;
    white-space: nowrap;
}
.footer .footer-col-2 h1:before,
footer .footer-col-3 h1:before,
footer .footer-col-4 h1:before{
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 25px;
    height: 3px;
    background: #fff;
}
.footer .footer-col-4{
    padding-left: 0;
}
.footer .footer-col-2,
footer .footer-col-3,
footer .footer-col-4{
    padding-top: 50px;
}
.footer .footer-col-2 ul,
footer .footer-col-3 ul,
footer .footer-col-4 ul{
    margin: 0;
    padding: 45px 0 0 0;
}
.footer .footer-col-4 ul li:nth-child(1){
    padding-left: 44px;
    background-image: url(../images/phone-icon.svg);
    background-position: center left;
    background-repeat: no-repeat;
}
.footer .footer-col-4 ul li:nth-child(2){
    padding-left: 44px;
    background-image: url(../images/message-icon.svg);
    background-position: center left;
    background-repeat: no-repeat;
}
.footer .footer-col-4 ul li:nth-child(3){
    padding-left: 44px;
    background-image: url(../images/location-icon.svg);
    background-repeat: no-repeat;
}
.footer .footer-col-4 ul li{
    margin-bottom: 30px;
    line-height: 24px;
}
.footer .footer-col-4 ul li:last-child{
    margin-bottom: 0;
}
.footer .footer-col-4 ul li p{
    line-height: 24px;
    margin: 0;
}
.copyright{
    background: #fff;
    padding: 12px 15px 12px 15px;
    margin-top: 80px;
}
.copyright p{
    font-size: 14px;
    color: #000;
    margin: 0;
    font-weight: 400;
}
.footer .right-img{
    position: absolute;
    right: 0;
    bottom: 0;
}
.main-content {
    min-height: calc(100vh - 92px - 228px);
}
.entry-modal-dialogue {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100vh - 40px);
    height: calc(100vh - 100%);
    min-height: calc(100vh - 100px);
    padding: 50px 0;
}
.login-form {
    display: block;
    width: 100%;
    height: auto;
    max-width: 600px;
    margin: auto;
    background: #fff;
    border: 1px solid #dfe0eb;
    border-radius: 8px;
    padding: 0 0;
    box-shadow: 0px 2px 20px 0 rgba(0, 0, 0, 0.1);
}
.header-heading {
    background: #787759;
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    padding: 12px 20px;
    margin: 0;
    border-radius: 8px 8px 0px 0px;
}
.login-form .form-fields {
    padding: 20px 40px;
}
.login-form .form-fields label {
    font-size: 14px;
    color: #000000;
    font-weight: 400;
    line-height: 14px;
    margin-bottom: 10px;
}
.form-control {
    display: block;
    width: 100%;
    height: 40px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #4b506d;
    background: #f3f3f369;
    background-image: none;
    border: 1px solid #cccccc54;
    border-radius: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    letter-spacing: 0.3px;
    outline: none;
}
.forget-link {
    font-size: 14px;
    color: #333333;
    font-weight: 400;
    display: block;
    margin-top: 8px;
}
.btn-white.btn-green {
    background: #787759;
    color: #fff;
    border: 1px solid #787759;
}
.btn.btn-white.btn-green:before {
    background-color: #fff;
}
.login-form .btn.btn-white:hover {
    color: #787759 !important;
}
.form-control:focus{
    border-color:#787759;
    box-shadow: 0 0 0 1px rgba(169, 197, 64, 0.5);
}
.login-form .btn.btn-white {
    padding: 12px 45px;
}
.get-started .btn.btn-white:hover {
    color: #787759 !important;
}
.cms-page-des{
    padding: 50px 0 0 0;
}
.get-started{
    padding: 0 0 50px 0;
    text-align: center;
}
.features-sec-des .features{
    padding: 50px 0 50px 0;
}
.features-sec-des .features:before{
    display: none;
}
.features-sec-des .features p {
    margin-bottom: 70px;
}
.pricing-wrapper {
    padding: 50px 0;
}
/* solutions & why emil immunity styling */
.email-immu-des{
    padding: 50px 0;
}
.email-immu-des h1{
    font-size: 50px;
    color: #3d3e3f;
    font-family: 'Avenir Next Demi';
    font-weight: 600;
    margin: 0;
    text-align: center;
}
.email-immu-des p{
    font-size: 22px;
    color: #3d3e3f;
    font-weight: 400;
    margin: 0;
    text-align: center;
    margin-bottom: 50px;
}
/* pricing styling */
.pricing-des h1{
    font-size: 50px;
    color: #3d3e3f;
    font-family: 'Avenir Next Demi';
    font-weight: 600;
    margin: 0;
    text-align: center;
}
.pricing-toggle {
    margin: 20px auto;
    text-align: center;
}
.custom-radio.price-toggle {
    display: inline-block;
    position: relative;
    padding: 0;
    margin: 0 6px;
    cursor: pointer;
    text-transform: uppercase;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 38px;
    width: 130px;
    padding: 8px 10px;
    background-color: #F2F2F2;
    z-index: 3;
}
.custom-radio.price-toggle input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.custom-radio.price-toggle input:checked ~ p {
    color: #FFFFFF;
}
.custom-radio.price-toggle>p {
    font-size: 18px;
    font-weight: 400;
    color: #4F4F4F;
}
.pricing-toggle .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background-color: transparent;
    padding: 8px 10px;
    font-size: 18px;
    font-weight: 400;
    color: #4F4F4F;
}
.custom-radio.price-toggle input:checked ~ .checkmark {
    background-color: #787759;
    color: #FFFFFF;
}
.pricing-toggle .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.custom-radio.price-toggle .checkmark:after {
    top: 0px;
    left: 0px;
    background: #787759;
    color: #FFF;
    height: 100%;
    width: 100%;
}
.custom-radio.price-toggle input:checked ~ .checkmark:after {
    display: block;
}
.pricing-packages .generic_content {
    overflow: hidden;
    position: relative;
    text-align: center;
    background-color: #fff;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
}
.pricing-packages .generic_content .generic_head_price {
    margin: 0 0 20px 0;
}
.pricing-packages .generic_content .generic_head_price {
    background-color: #F2F2F2;
}
.pricing-packages .generic_content .generic_head_price .generic_head_content {
    margin: 0 0 50px 0;
}
.pricing-packages .generic_content .generic_head_price .generic_head_content .head_bg {
    border-color: #e4e4e4 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #e4e4e4;
}
.pricing-packages .generic_content .generic_head_price .generic_head_content .head_bg {
    border-style: solid;
    border-width: 90px 1411px 23px 399px;
    position: absolute;
}
.pricing-packages .generic_content .generic_head_price .generic_head_content .head {
    padding-top: 28px;
    position: relative;
    z-index: 1;
}
.pricing-packages .generic_content .generic_head_price .generic_head_content .head span {
    color: #4F4F4F;
}
.pricing-packages .generic_content .generic_head_price .generic_head_content .head span {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}
.pricing-packages .generic_content .generic_head_price .generic_price_tag {
    padding: 0 0 20px;
    min-height: 114px;
}
.pricing-packages .generic_content .generic_head_price .generic_price_tag .price .sign {
    color: #4F4F4F;
}
.pricing-packages .generic_content .generic_head_price .generic_price_tag .price .sign {
    display: inline-block;
    font-size: 28px;
    font-weight: 400;
    vertical-align: middle;
}
.pricing-packages .generic_content .generic_head_price .generic_price_tag .price .currency {
    color: #4F4F4F;
}
.pricing-packages .generic_content .generic_head_price .generic_price_tag .price .currency {
    font-size: 30px;
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 60px;
    padding: 0;
    vertical-align: middle;
}
.pricing-packages .generic_content .generic_head_price .generic_price_tag .month {
    font-size: 16px !important;
    font-family: Roboto, sans-serif !important;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pricing-packages .generic_content .generic_head_price .generic_price_tag .month {
    color: #4F4F4F;
    font-weight: 600;
}
.pricing-packages .generic_content .generic_head_price .generic_price_tag .tooltip {
    position: relative;
    opacity: 1;
    text-align: center;
    overflow: visible;
    width: 70%;
    padding: 0 5px;
    margin: 0 auto;
}
.pricing-packages .generic_content .generic_head_price .generic_price_tag .tooltip .tooltiptext {
    visibility: hidden;
    width: 100%;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 8px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.3s;
}
.pricing-packages .generic_content .generic_head_price .generic_price_tag .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}
.pricing-packages .generic_content .generic_head_price .generic_price_tag .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
.pricing-packages .generic_feature_list {
    margin-bottom: 90px;
    max-height: 345px;
    overflow-y: auto;
    height: 345px;
}
.pricing-packages .generic_content .generic_feature_list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pricing-packages .generic_content .generic_feature_list ul li {
    font-size: 14px;
    padding: 8px 10px 8px 10px;
    transition: all 0.3s ease-in-out 0s;
}
.pricing-packages .generic_content .generic_feature_list ul li {
    color: #828282;
}
.pricing-packages .generic_content .generic_price_btn {
    margin: 20px 0 32px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.pricing-packages .generic_content .generic_feature_list ul li:hover {
    background-color: #f3f2f2;
    border-left: 5px solid #787759;
}
.pricing-packages .generic_content .generic_feature_list ul li:hover {
    transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
}
.pricing-packages .generic_content.active .generic_head_price .generic_head_content .head_bg, .pricing-packages .generic_content:hover .generic_head_price .generic_head_content .head_bg {
    border-color: #787759 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #787759;
    color: #f2f2f2;
}
.pricing-packages .generic_content:hover .generic_head_price .generic_head_content .head span, .pricing-packages .generic_content.active .generic_head_price .generic_head_content .head span {
    color: #fff;
}
.pricing-des .btn.btn-white:hover {
    color: #787759 !important;
}
.pricing-des .btn.btn-white {
    padding: 12px 35px;
    width: 205px;
}
/* dropdown */
.site-header .user-profile-logged {
    border-left: 1px solid #c3c1c1;
    padding-left: 10px;
}
.site-header .user-profile-logged > .user-name {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}
.site-header .user-profile-logged > .user-picture {
    background: #cccccc;
    border: 1px solid #ffffff;
    width: 40px;
    height: 40px;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
}
.site-header .user-profile-logged > .user-picture.img-circle{
    border-radius: 50%;
}
.site-header .user-profile-logged > .user-picture > img {
    /* object-fit: cover;
    width: 100%;
    height: 100%; */
    margin: auto;
}
.site-header .dropdown-menu {
    background: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 5px 0;
    box-shadow: 0px 1px 6px 1px rgba(0, 0, 0, 0.1);
}
.site-header .main-head .navbar li.nav-item .dropdown-menu a {
    width: 100%;
}
.site-header .main-head .navbar li.nav-item a {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #373F41;
    display: inline-block;
    padding: 5px 18px;
    letter-spacing: 0.2px;
}
.site-header .dropdown-toggle::after{
    display: none;
}
/* profile setting css */
.profile-setting-wrapper {
    padding: 60px 0;
}
.profile-box {
    display: block;
    width: 100%;
    height: auto;
    max-width: 750px;
    margin: auto;
    background: #fff;
    border: 1px solid #dfe0eb;
    border-radius: 8px;
    padding: 0 0;
    box-shadow: 0px 2px 20px 0 rgba(0, 0, 0, 0.1);
}
.profile-setting-form > h3 {
    background: #787759;
    font-size: 22px;
    color: #f2f2f2;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    padding: 10px 15px;
    border-radius: 8px 8px 0 0;
    margin-bottom: 20px;
}
.profile-setting-form > .form-fields {
    padding: 0px 15px;
}
.password-toggle-icon {
    position: relative;
    float: right;
    /* z-index: 2; */
    top: 42px;
    right: 25px;
    cursor: pointer;
}
.secret-key-icon {
    position: relative;
    float: right;
    z-index: 2;
    top: 42px;
    right: 20px;
    cursor: pointer;
}
form .form-group label {
    font-size: 14px;
    font-weight: 500;
}
.profile-setting-form .profile-img {
    width: 120px;
    margin: 10px 0;
    display: block;
}
.profile-button-des input[type=file] {
    display: block;
    background: none;
    border: none;
}
.profile-setting-form input[type=checkbox]{
    margin-right: 10px;
}
.profile-setting-form .btn.btn-white:hover {
    color: #787759 !important;
}
.form-action-btn {
    margin: 30px auto;
}
.profile-setting-form .btn.btn-white {
    padding: 12px 35px;
}
/* contact us css */
.contact-form-info {
    padding: 50px 0 90px;
}
.contact-title-des {
    margin-bottom: 30px;
}
.contact-title-des h2 {
    font-size: 28px;
    color: #333333;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.cont-box-wrap {
    position: relative;
    padding: 50px 0;
}
.contact-box {
    background: #fff;
    border: 1px solid #f0f1f7;
    padding: 20px 20px 0 20px;
    border-radius: 5px;
}
.cont-box-wrap .contact-box form {
    margin: 0;
    padding: 0;
}
.pl-0 {
    padding-left: 0;
}
.contact-info {
    background: #787759;
    max-width: 440px;
    color: #fff;
    margin-top: 90px;
    border: 1px solid #dfe0eb;
    border-radius: 8px;
    padding: 20px;
}
.contact-info ul {
    margin: 0;
}
.contact-info li {
    font-size: 16px;
    position: relative;
    margin-bottom: 0;
}
.contact-info li span.fa {
    float: left;
    margin-right: 6px;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 30px;
}
.contact-info .info-holder {
    vertical-align: top;
    padding-bottom: 10px;
    margin-left: 40px;
}
.contact-info .info-holder h3 {
    font-size: 18px;
}
.contact-info .info-holder p {
    font-size: 14px;
    color: #fff;
}
.contact-info .info-holder {
    vertical-align: top;
    padding-bottom: 10px;
    margin-left: 40px;
}
.contact-info .info-holder h3 {
    font-size: 18px;
}
.contact-info .info-holder p {
    font-size: 14px;
    color: #fff;
}
.cont-box-wrap:after {
    content: '';
    background:#787759;
    width: 6px;
    height: 85%;
    left: 0;
    top: 45px;
    position: absolute;
}
.cont-box-wrap:before {
    content: '';
    background: #f3f3f369;
    width: 70%;
    top: 0;
    bottom: 0;
    left: 0;
    position: absolute;
}
.cont-box-wrap .cont-inner-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute!important;
    justify-content: space-around!important;
}
.form-action-btn {
    margin: 30px auto;
}
.contact-form-info .btn.btn-white {
    padding: 12px 35px;
}
.contact-form-info .btn.btn-white:hover {
    color: #787759 !important;
}

/* Noman Changes */
/* For madal showing */
.fade.in{opacity:1}


.green-box{
    border: 1px solid #787759;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
}
.green-box h1 {
    color: #787759;
    font-weight: bold;
    margin-bottom: 0;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 36px;
    text-transform: capitalize;
}
.green-box p {
    color: #787759;
    margin:0;
    text-transform: capitalize;
}
.green-box span {
    font-size: 18px;
    margin-left: 5px;
}
.green-box:hover {
    background: #787759;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}
.green-box:hover h1, .green-box:hover p {
    color: #fff;
}
.cloud-section {
    padding: 50px 0 50px;
}
.billing-box-wrap h2 {
    border-bottom: 2px solid #dadada;
    padding-bottom: 20px;
    position: relative;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
}
.billing-box-wrap h2:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 90px;
    height: 2px;
    background: #787759;
}
.pricing-packages .generic_content {
    overflow: hidden;
    position: relative;
    text-align: center;
    background-color: #fff;
    /* box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05); */
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
    height: 100%;
}
.billing-plan-box .generic_content {
    max-height: 550px;
    min-height: 550px;
}
.pricing-packages .generic_content .generic_head_price {
    background-color: #F2F2F2;
    margin: 0 0 20px 0;
}
.search-input-holder .btn.btn-success {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    height: 40px;
    background: #787759;
    border: none;
}
.search-input-holder .btn.btn-success:active{
    background: #787759;
}
#payments-datatable .btn.btn-success{
    background: #787759;
    border-color: #787759 ;
}
.search-input-holder .btn.btn-success:hover, #payments-datatable .btn.btn-success:hover,
.search-input-holder .btn.btn-success:focus,#payments-datatable .btn.btn-success:focus,
.search-input-holder .btn.btn-success:active, #payments-datatable .btn.btn-success:active{
    background: #787759 !important;
    opacity: 0.7;
    box-shadow:none !important;
}
.search-input-holder .input-search-des {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.search-input-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
.search-input-holder.payment-search {
    margin-bottom: 15px;
}
.report table th {
    background: #787759;
    color: #f2f2f2;
}
.dataTables_scrollHeadInner, .dataTables_scrollHeadInner table {
    width: 100% !important;
}
#payments-datatable_wrapper table.dataTable { 
    border-collapse: collapse !important;
}
.invalid-feedback {
    width: 100%;
    margin-top: .25rem;
    font-size: 13px;
    color: #dc3545;
    line-height: 16px;
    font-weight: 300;
}
.form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + .75rem);
    background-repeat: no-repeat;
    background-position: right calc(.05em + .1875rem) center;
    background-size: calc(.55em + .375rem) calc(.75em + .375rem);
}
.about-banner {
    /* background: rgb(38, 123, 217, 0.06); */
    padding: 80px 0;
}
.content-align-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.about-banner .banner-content h2 {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #787759;
    margin-bottom: 12px;
}
.about-banner .banner-content h1 {
    font-style: normal;
    font-weight: bold;
    font-size: 44px;
    line-height: 56px;
    letter-spacing: 0.2px;
    color:#3d3e3f;
    margin-bottom: 20px;
}
.about-banner .banner-content p {
    margin-bottom: 35px;
    line-height: 22px;
    letter-spacing: 0.3px;
}
.about-banner .btn.btn.btn-theme-blue {
    padding: 10px 19px;
    border: 1px solid #787759;
    font-size: 14px;
    line-height: 18px;
}
.about-banner .btn.btn-theme-blue.btn-s-action {
    background: transparent !important;
    padding: 13px 33px;
    color: #787759;
    border: 1px solid #787759;
}
.about-banner .btn-white.btn-started {
    margin-right: 15px;
}
.about-banner .btn.btn-white:hover {
    color: #fff !important;
}
.about-banner  .btn.btn-white:hover {
    color: #787759 !important;
}
.thermal-imaging {
    padding: 69px 0 46px 0;
}
.thermal-imaging h1 {
    font-weight: bold;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.1px;
    color:#3d3e3f;
    margin-bottom: 88px;
}
.integrate-heading {
    margin-bottom: 20px !important;
}
.thermal-imaging p {
    line-height: 22px;
    letter-spacing: 0.3px;
    margin-bottom: 48px;
    padding-right: 10px;
    margin-top: 30px;
    color: #3d3e3f;
}
.bold-content {
    display: block;
}
.togather {
    text-align: center;
    padding: 46px 0 0 0;
}
.togather h2 {
    margin-bottom: 24px;
    font-weight: bold;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.1px;
    color: #3d3e3f;
}
.togather p {
    line-height: 22px;
    letter-spacing: 0.3px;
    margin-bottom: 48px;
}
.everything {
    padding: 118px 0;
}
.everything-content {
    margin-top: 30px;
}
.everything .everything-content h2 {
    margin-bottom: 24px;
    font-weight: bold;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.1px;
    color: #3d3e3f;
}
.everything .everything-content p {
    margin-bottom: 20px;
    line-height: 22px;
    letter-spacing: 0.3px;
}
.everything .img-wrap {
    margin-right: 20px;
}
.everything .img-wrap img{
    max-width: 100%;
}
.everything .everything-form {
    margin-top: 20px;
}
.everything .everything-form label {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #373F41;
    margin-bottom: 8px;
    display: block;
}
.everything .everything-form label {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #373F41;
    margin-bottom: 8px;
    display: block;
}
.everything .everything-form input, .everything .everything-form textarea, .everything .everything-form select {
    background: #F4F5F4;
    border-radius: 0;
    border: none;
    margin-bottom: 20px;
}
.everything .everything-form input:focus, .everything .everything-form textarea:focus, .everything .everything-form select:focus {
    border-color: #787759;
    box-shadow: 0 0 0 0.2rem rgba(169, 197, 64, 0.5);
}
.everything .btn.btn-white{
    width: 100%;
}
.everything .btn.btn-white:hover {
    color: #787759 !important;
}
.signup-agreed > p > a {
    color: #787759;
    font-weight: 500;
}
.new-signup > p > a {
    color: #787759;
    font-size: 15px;
    font-weight: 500;
    padding-left: 5px;
    transition: all 0.2s ease-in-out;
}
.signup-agreed > p > a:hover,
.new-signup > p > a:hovers{
    opacity: 0.7;
}
.overflow-scroll .col-md-6 {
    flex: none;
    margin-bottom: 30px;
}
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}
.swal-button {
    background-color: #787759;
}
.swal-button--cancel{
    background: #efefef !important;
    color: #555 !important;
    border: 1px solid #efefef !important;
}
.swal-button--danger:focus,
.swal-button--cancel:focus{
    box-shadow: none !important;
}
.swal-button:not([disabled]):hover {
    background-color: #787759;
    opacity: 0.7;
}
.swal-icon--success__line {
    background-color: #787759;
}
.billing-form-des .btn.btn-white {
    padding: 12px 12px;
    text-transform: capitalize;
    font-size: 16px;
}
.btn-cancel{
    display: inline-block;
}
.pagination li.disabled a {
    color: #78775980 !important;
    cursor: not-allowed;
    /* pointer-events: none; */
}
.pagination>li>a:focus, .pagination>li>a:hover, .pagination>li>span:focus, .pagination>li>span:hover {
    z-index: 2;
    /* color: #23527c; */
    background-color: #eee;
    border-color: #ddd;
    text-decoration: none;
}
.pagination>.disabled>a, .pagination>.disabled>a:focus, .pagination>.disabled>a:hover, .pagination>.disabled>span, .pagination>.disabled>span:focus, .pagination>.disabled>span:hover, button.disabled, a.disabled {
    /* color: #777; */
    /* cursor: not-allowed; */
    pointer-events: none;
    background-color: #fff;
    border-color: #ddd;
}
a.disabled button {
    background-color: #ccc;
}
.pagination>li>a {
    color: #787759 !important;
    background-color: #fff;
    border: 1px solid #ddd;
    font-weight: 500;
}
.pagination-lg>li:first-child>a, .pagination-lg>li:first-child>span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.pagination-lg>li:last-child>a, .pagination-lg>li:last-child>span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.pagination-lg>li>a, .pagination-lg>li>span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}
.cloud-section .desktop-view {
    display: block;
}
.cloud-section .mobile-view {
    display: none;
}
.pagination{
    justify-content: flex-end;
}
.payment-checkout-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.payment-checkout-wrapper h2,
.payment-method-heading {
    font-weight: bold;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.1px;
    color: #3d3e3f;
}
.payment-checkout-btn .btn.btn-primary{
    color: #f2f2f2;
    background-color: #787759;
    border-color: #787759;
}
.payment-checkout-btn .btn.btn-primary:hover,
.payment-checkout-btn .btn.btn-primary:active,
.payment-checkout-btn .btn.btn-primary:focus{
    background-color: #787759;
    border-color: #787759;
    opacity: 0.7;
    box-shadow: none !important;
}
.checkout-des {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #ddd;
    padding: 30px 40px;
    width: 60%;
    border-radius: 5px;
    margin: 0 auto;
    margin-bottom: 40px;
    margin-top: 20px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
}
.checkout-des .inner-des {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 5px 0;
}
.checkout-des .inner-des span {
    font-weight: 500;
    font-size: 16px;
}
.checkout-des .inner-des p {
    font-size: 16px;
     margin: 0;
}
.checkout-des .inner-des.inner-des-wrap {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}
.checkout-des .inner-des:last-child {
    margin: 0;
}
.checkout-des .inner-des.total-text-des span strong, .checkout-des .inner-des.total-text-des p {
    font-size: 21px;
    font-weight: 700;
    color: #3d3e3f;
}
.add-cloud-icon > ul {
    margin: 20px auto;
    padding: 0;
    list-style: none;
    text-align: center;
}
.panel.panel-primary {
    border-color: #787759;
}
.panel {
    margin-top: 27px !important;
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
}
.panel-body {
    padding-top: 20px !important;
    padding: 15px;
}
.text-on-pannel {
    background: #787759 none repeat scroll 0 0;
    height: auto;
    margin-left: 20px;
    padding: 10px 34px;
    position: absolute;
    margin-top: -56px;
    border: 1px solid #787759;
    border-radius: 8px;
    color: #fff;
    font-size: 20px;
}

.nav-lang-drop{
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
}
#google_translate_element{
    display: none;
}
.dropdown.lang-drop > button{
    background: #f2f2f2;
    border: none;
    width: 38px;
    height: 38px;
    overflow: hidden;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 1px 5px 0 rgba(32, 33, 36, .28);
    padding: 0;
}
.dropdown.lang-drop > button > img{
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}
.dropdown.lang-drop > .dropdown-menu {
    right: 0;
    left: auto;
    margin: 8px 0 0;
    border: none;
    border-radius: 0;
    width: 100%;
    min-width: 210px;
    background-color: #fff;
    border-radius: 5px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 287px;
    overflow-y: scroll;
    z-index: 99999;
}
.dropdown.lang-drop > .dropdown-menu .dropdown-item.flag_link{
    padding: 0 10px;
    border-top: 1px solid #eee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.dropdown.lang-drop > .dropdown-menu .dropdown-item.flag_link:active {
    background-color: #f8f9fa;
    color: #16181b;
}
.dropdown.lang-drop > .dropdown-menu .dropdown-item.flag_link .lang-name{
    display: block;
    line-height: 40px;
    font-size: 14px;
    text-align: left;
    margin-right: 8px;
    width: 80%
}
.dropdown.lang-drop > .dropdown-menu .dropdown-item.flag_link > img{
    display: block;
    width: 26px;
    height: 26px;
    overflow: hidden;
    border-radius: 50%;
    margin: auto;
    box-shadow: 0 1px 5px 0 rgba(32, 33, 36, .28);
}

.card-images-holder ul {
    padding: 40px 0 0;
    text-align: center;
}
.card-images-holder li {
    display: inline-block;
    vertical-align: top;
}
.card-images-holder svg {
    -o-transform: scale(1.9);
    -ms-transform: scale(1.9);
    -moz-transform: scale(1.9);
    -webkit-transform: scale(1.9);
    transform: scale(1.9);
    margin-bottom: 10px;
}
.card-images-holder li p {
    width: 130px;
    margin-top: 10px;
    font-size: 14px;
}
.app-icon{
    text-align: left; 
    margin-bottom: 60px;
}
.app-icon img{
    width:200px;
}
a.text-on-pannel:hover,
a.text-on-pannel:active,
a.text-on-pannel:focus{
    color: #fff;
}
.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .5;
}
.modal.fade .modal-dialog {
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    -webkit-transform: translate(0,-50px);
    transform: translate(0,0px);
}
.modal-dialog {
    width: 600px;
    max-width: 600px;
    margin: 30px auto;
}
.data-ready .modal-header {
    padding: 0;
    position: relative;
}
.data-ready .modal-header .close {
    color: #f2f2f2;
    position: absolute;
    opacity: 1;
    top: 13px;
    right: 15px;
}
.data-ready .modal-header .header-heading {
    border-radius: 0;
    font-size: 20px;
    width: 100%;
}
.modal-footer .btn-primary {
    color: #f2f2f2;
    background-color: #787759;
    border-color: #787759;
}
.modal-footer .btn-primary:hover,
.modal-footer .btn-primary:focus,
.modal-footer .btn-primary:active{
    box-shadow: none !important;
    opacity: 0.7;
}
.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}
.btn-default:hover,
.btn-default:active,
.btn-default:focus {
    color: #333;
    background-color: #d4d4d4;
    border-color: #8c8c8c;
}

.question-answer {
    padding: 60px 0 100px;
}
.bg-grey {
    background: #f2f2f2;
}
.cloud-accordion .panel.panel-default {
    margin: 0;
}
.question-answer .panel {
    background-color: transparent;
}
.cloud-accordion .panel-default {
    border: none;
    box-shadow: none;
}
.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}
.cloud-accordion .panel-default > .panel-heading {
    color: #333;
    border-bottom: 1px solid #ccc;
    padding: 15px 0px;
}
.question-answer .panel-body {
    padding: 15px;
    background-color: transparent;
    border-top: none!important;
    font-size: 16px;
    color: #828282;
    border-bottom: 1px solid #dfe0eb;
    margin-bottom: 10px;
}
.panel-heading .accordion-toggle[aria-expanded="false"]::before {
    font-family: fontawesome;
    content: "\f067 ";
    color: #333333;
}
.faq-panel-wrap .panel-title a {
    color: #787759 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-direction: row-reverse;
}
.faq-panel-wrap .panel-heading .accordion-toggle[aria-expanded="true"]::before {
    font-family: fontawesome;
    content: "\f068 ";
    color: #333333;
}
.cloud-accordion .panel-default:last-child .panel-body{
    margin-bottom: 0;
    border-bottom: none;
}
.question-answer h3{
    font-size: 28px;
    font-weight: 600;
    margin-top: 0;
    color: #787759;
}
.table td, .table th {
    padding: 8px;
}
.cloud-section h3{
    font-weight: bold;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.1px;
    color: #373F41;
    text-align: center;
    margin-bottom: 30px;
}
.badge {
    font-size: 14px;
    font-weight: 400;
}
.generic_feature_list h4{
    position: relative;
    font-size: 22px;
}
.generic_feature_list h4:before{
    width: 60px;
    height: 2px;
    content: "";
    position: absolute;
    left: 0px;
    bottom: -10px;
    background: #787759;
    right: 0;
    margin: 0 auto;
}
.css-2613qy-menu{
    z-index: 999999  !important;
}
.about-banner .img-wrap{
    width: 460px;
}
.footer .footer-col-1 .footer-logo{
    display: inline-flex;
}
.footer .footer-col-1 .footer-logo .logo-img{
    width: 30px;
}
.cloud-accordion .panel-title a{
    color: #787759 !important;
}
.cloud-accordion .panel-title a:hover{
    color: #787759 !important;
    text-decoration:  none !important;
}
.login-page-des .padd-r {
    padding-right: 0;
}
.login-page-des .padd-l {
    padding-left: 0;
}
.login-page-des .login-img-wrap {
    background: url(../images/login-bg3.png) no-repeat;
    background-position: center;
    background-size: cover;
    height: 448px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.login-page-des.signup-page-des .login-img-wrap {
    background: url(../images/signup-bg-img.png) no-repeat;
    background-position: center;
    background-size: cover;
    /* height: 448px; */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.login-page-des .image-text h2{
    font-size: 45px;
    font-family: 'Avenir Next';
    color: #0f1114;
    font-weight: 500;
    text-align: center;
    position: relative;
    text-transform: uppercase;
}
.login-page-des .image-text h2:before{
    content: '';
    position: absolute;
    width: 70px;
    border-bottom: 4px solid #0f1114;
    bottom: -2px;
    border-radius: 4px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.login-page-des .image-text h3{
    font-size: 22px;
    font-family: 'Avenir Next';
    color:#0f1114;
    font-weight: 400;
    margin-bottom: 10px;
    text-align: center;
}
.login-page-des .login-form {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: auto;
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 30px 90px;
    box-shadow: 0px 2px 20px 0 rgba(120, 119, 89, 0.1);
}
.login-page-des .forget-link:hover{
    color: #787759;
    text-decoration: none;
}
.login-page-des .login-form .form-fields {
    padding: 0;
}
.new-signup > p > a:hover {
    color:#0f1114;
    text-decoration: none;
}
.login-page-des .form-control:focus {
    border-color: #787759;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.signup-page-des p {
    font-size: 13px;
}
.signup-page-des .login-img-wrap {
    height: 703px;
}
.badge {
    font-weight: 400 !important;
    line-height: 13px !important;
    padding: 5px 4px !important;
}
.pricing-packages.product-page-pricing  .generic_feature_list {
    max-height: 215px;
    height: 215px;
}
.product-profile h3{ 
    color: #3d3e3f;
    font-family: 'Avenir Next Demi';
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 40px;
    text-align: center;
}
.product-profile .profile-box {
    display: block;
    width: 100%;
    height: auto;
    margin: auto;
    background: #fff;
    border: none;
    padding: 30px 30px;
    max-width: 960px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 2;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);
}
.profile-box:before {
    position: absolute;
    width: 600px;
    height: 600px;
    background-color: #cccb96;
    content: "";
    border-radius: 50%;
    z-index: -1;
    top: -300px;
    left: -300px;
}
.product-profile .column-user-pic{
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    padding: 2rem;
    display: flex;
    flex-flow: wrap column;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    background-color: white;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    width: 37%;
    margin-right: 30px;
    overflow: hidden;
}
.product-profile .profile-form{
    width: 45%;
    padding-top: 0;
    margin-top: -8px;
}
.product-profile form{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
}
.product-profile form .form-group label.picture-label {
    font-size: 16px;
    font-weight: 700;
}
.product-profile .profile-setting-form .profile-img {
    width: 200px;
    max-width: 200px;
    /* height: 200px; */
    margin: 0 auto;
    display: block;
    /* border-radius: 50%; */
    vertical-align: middle;
}
.profile-main-content{
    position: relative;
    overflow: hidden;
}
.profile-main-content:before{
    position: absolute;
    width: 900px;
    height: 900px;
    background-color: #cccb96;
    content: "";
    border-radius: 50%;
    z-index: -1;
    bottom: -300px;
    right: -300px;
}
.profile-main-content:after{
    position: absolute;
    width: 900px;
    height: 900px;
    background-color: #cccb96;
    content: "";
    border-radius: 50%;
    z-index: -1;
    top: -300px;
    left: -300px;
}
/* .product-profile .profile-button-des input[type=file] {
    width: calc(449px - 328px);
} */
.product-profile .profile-setting-form .btn.btn-white:focus{
    box-shadow: none !important;
}
.product-profile .profile-setting-form .btn.btn-white{
    width: 50%;
}
/* .login-page-des .form-control{
        padding: 0.375rem 45px 0.375rem 12px;
} */

.login-form .btn-primary{
    background: #787759;
}
.btn:focus, .btn.focus{
    box-shadow: none !important;
}
.form-control:focus{
    border-color: #787759 !important;
    outline: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
select{
    background: rgba(0,0,0,0.3);
    color:#fff;
}
.btn-primary:focus, .btn-primary.focus,
.btn-primary:hover{
    box-shadow: none !important;
    background: #787759 !important;
    border-color: #787759 !important;
}
.btn-default{
    background: #efefef !important;
}
.profile-button-des{ 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.upload-img-des{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid #f2f2f2;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
}
div.table-responsive>div.dataTables_wrapper>div.row:nth-child(1){
    display: none;
}
.voucher-heading{
    text-align: left !important;
}
#orders-datatable .child .dtr-details,
#payments-datatable .child .dtr-details{
    width: 100%;
}
#orders-datatable  .child span.dtr-title,
#payments-datatable  .child span.dtr-title,
#orders-datatable  .child span.dtr-data,
#payments-datatable  .child span.dtr-data{
    display: inline-block;
    min-width: 200px;
}
#orders-datatable.nowrap td,
#payments-datatable.nowrap td{
    white-space: normal;
    vertical-align: middle;
    font-size: 14px;
}
#orders-datatable .btn-sm, 
 #payments-datatable .btn-sm,
 #payments-datatable .btn-info,
 #payments-datatable .btn-xs.btn-success{
    padding: 2px 5px;
    font-size: 12px;
}
#payments-datatable .btn-info{
    margin-left: 3px;
}
.product-profile .profile-button-des input[type=file]{
    max-width: 240px;
    margin: 0 auto;
}
.swal-button:focus{
    box-shadow: none !important;
}

.load-more a:before {
    content: '\f103';
    position: absolute;
    font-family: FontAwesome;
    font-size: 20px;
    color:#787759;
    top: 25px;
    right: 0;
    left: 0;
    margin: 0 auto;
}
.load-more{
    position: relative;
}
.load-more a {
    color: #3d3e3f;
    font-size: 16px !important;
    font-weight: 600;
    margin: 0;
    position: relative;
    margin-bottom: 0 !important;
    text-align: center;
    text-decoration: none;
    display: block;
    margin-top: 40px;
}
.load-more a:hover{
    text-decoration: none;
    color:#787759;
}
/* .faq-panel{
    height: 425px;
    overflow: hidden;
} */
.faq-panel-wrap .panel{
    margin-bottom: 0;
    margin-top: 0 !important;
    padding: 0px 22px;
    height: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.faq-panel-wrap .panel:nth-child(-n + 5) {
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    height: auto;
    opacity: 1;
    visibility: visible;
    margin-top: 27px !important;
}
.faq-panel-wrap .faq-panel .panel{
    height: auto;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    margin-top: 27px !important;
}
.faq-panel-wrap .load-less a:before{
    content: '\f102';
    position: absolute;
    font-family: FontAwesome;
    font-size: 20px;
    color: #787759;
    top: -30px;
    right: 0;
    left: 0;
    margin: 0 auto;
}
.voucher-btn-wrap .btn.btn-white:hover {
    color: #787759 !important;
}
#orders-datatable ul li,
#payments-datatable ul li{
    display: inline-block;
    width: 50%;
}
#payments-datatable_wrapper .row,
#orders-datatable_wrapper .row{
    width:100%;
}
/* #orders-datatable{
    min-width: 1110px;
} */
#orders-datatable_wrapper .dataTables_scrollBody,
#payments-datatable_wrapper .dataTables_scrollBody{
    overflow: hidden !important;
}
.dropdown-toggle:focus {
    outline: 0;
}
.daterangepicker .applyBtn{
    background: #787759 !important;
    border-color: #787759 !important;
}
.daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: #787759 !important;
}
.site-header .masthead-des ul li.dropdown{
    padding-right: 0;
}
/* Responsive Querries */
@media (min-width: 1200px){
    .container {
        max-width: 1170px;
    }
}
@media (max-width: 1366px) and (min-width: 1200px){
    .pricing-des h1, .email-immu-des h1,.features h1,.platform .platform-content h1 {
        font-size: 40px;
    }
    .features:before {
        top: -230px;
    }
}
@media (min-width: 1920px) and (max-width: 2560px)  {
    .site-banner {
        background-position: bottom;
    }
    .goals {
        background-position: initial;
        height: auto;
        padding: 300px 0 140px 0;
    }
}
@media (max-width: 1199px){
    .green-box h4{
        font-size: 18px;
    }
    .signup-page-des .login-img-wrap {
        height: 722px;
    }
    .card-images-holder li p {
        width: 120px !important;
        font-size: 13px;
    }
    .payment-checkout-wrapper h2, .payment-method-heading{
        font-size: 25px;
        line-height: 30px;
    }
    .btn-cancel{
        margin-top: 10px;
        display: inline-block;
    }
    .everything {
        padding: 70px 0;
    }
    .site-header .user-profile-logged > .user-name {
        font-size: 14px;
    }
    .site-header .masthead-des ul li:last-child {
        margin-left: 0px;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .1rem;
        padding-left: .1rem;
    }
    .site-header .navbar li.nav-item a, .site-header .masthead-des ul li.nav-item.button a{
        font-size: 14px;
    }
    .site-header .masthead-des ul li.nav-item.button {
        width: 170px;
        height: 44px;
    }
    .site-header .masthead-des ul li.nav-item.button img {
        margin-left: -2px;
        width: 100px;
    }
    .site-header .masthead-des ul li.nav-item .button-wrap {
        top: 3px;
    }
    .site-header .navbar .navbar-brand img{
        width:150px;
    }
    .site-header .navbar {
        padding: 10px 0px;
    }
    .site-banner .banner-content h1 {
        font-size: 50px;
    }
    .site-banner .banner-content p, .platform .platform-content p, .features p {
        font-size: 18px;
    }
    .site-banner {
        height: auto;
    }
    .platform .platform-content h1, .features h1, .goals .goals-content h1, .company-content h1 {
        font-size: 30px;
    }
    .platform:before {
        bottom: -120px;
        background-size: 70% 100%;
    }
    .platform:after {
        bottom: 60px;
    }
    .features:before {
        top: -235px;
    }
    .features p {
        margin-bottom: 70px;
    }
    .features .feature-content .content-wrap h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .goals .goals-content p ,.goals .goals-content ul li,.footer .footer-col-2 ul li a, .footer .footer-col-3 ul li a, .footer .footer-col-1 p, .footer .footer-col-4 ul li p, .footer .footer-col-4 ul li a {
        font-size: 14px;
    }
    .company-content p {
        font-size: 24px;
    }
    .footer .footer-col-2 h1, .footer .footer-col-4 h1, footer .footer-col-3 h1 {
        font-size: 18px;
    }
    .goals {
        height: 1200px;
    }
}
@media(max-width:991px){
    .site-header .masthead-des .navbar-light .navbar-toggler{
        position: absolute;
        right: 45px;
        top: 10px;
    }
    .product-profile .profile-form{
        margin-top: 30px;
    }
    .site-header .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        border: 0;
        box-shadow: none;
        border-radius: 0;
    }
    .site-header .user-profile-logged > .user-name{
        color: #fff;
        -webkit-text-fill-color: #fff;
    }
    .site-header .navbar li.nav-item.dropdown a {
        padding: 10px 10px 10px 10px;
        color: #000;
        -webkit-text-fill-color: #000;
    }
    .site-header .masthead-des ul li.dropdown {
        border-left: 1px solid #373F41;
        border-right: 1px solid #373F41;
    }
    .collapse.show {
        display: block !important;
    }
    .about-banner .img-wrap {
        width: 100%;
    }
    .product-thermal-imaging{
        padding: 0;
    }
    .everything.product-everything {
        padding: 0px 0 70px;
    }
    .thermal-imaging.product-thermal-imaging .img-holder {
        text-align: center;
        margin-top: 0;
        width: 400px;
        margin: 0 auto;
        padding-top: 30px;
    }
    .site-header .masthead-des .navbar-expand-lg .navbar-nav {
        margin: 0 0 15px 0;
    }
    .collapse, .site-header .navbar-collapse {
        display: none !important;
    }
    .navbar-collapse.collapse.show {
        display: block !important;
        overflow: visible !important;
    }
    .site-header .navbar-expand-lg .navbar-collapse.show{
        overflow: hidden !important;
        margin-top: 0;
        position: absolute;
        top: 55px;
        width: 100%;
        z-index: 9999;
    }
    .site-header .navbar-collapse {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-align: center;
        align-items: center;
        background: #373F41;
    }
    .site-header .masthead-des ul li {
        margin-right: 0;
        text-align: left;
        width: 100%;
        display: block;
        border-bottom: 1px solid #373F41;
    }
    .site-header .navbar li.nav-item a {
        padding: 10px 10px 10px 10px;
        color: #fff;
    }
    .site-header .navbar li.nav-item a{
    -webkit-text-fill-color: #fff;
    }
    .site-header .masthead-des ul li.nav-item.button{
        box-shadow: none;
    }
    .nav-lang-drop {
        position: absolute;
        right: 0;
        top: 10px;
    }
    .login-page-des.signup-page-des .row{
        flex-direction: column;
    }
    .login-page-des.signup-page-des .login-img-wrap {
        background-position: inherit;
        height: 460px;
    }
    .product-profile .profile-form{
        width: 100%;
    }
    .product-profile .column-user-pic {
       padding: 15px;
    }
    .product-profile .column-user-pic {
        width: 100%;
    }
    /* .product-profile .profile-setting-form .profile-img {
        width: 150px;
    } */
    .product-profile .column-user-pic {
        width: 65%;
        margin: 0 auto;
        flex-basis: inherit;
        flex-grow: inherit;
        flex-shrink: inherit;
}
    .login-page-des .padd-r {
        padding-right: 15px;
    }
    .login-page-des .padd-l {
        padding-left: 15px;
    }
    .login-page-des .row{
        flex-direction: column-reverse;
    }
    .login-page-des .login-img-wrap {
        background-position: inherit;
        height: 420px;
    }
    .checkout-des {
        width: 100%;
    }
    .card-images-holder ul {
        padding: 0px 0 0 !important;
    }
    .card-images-holder li {
        margin-top: 30px;
    }
    .about-banner .btn-white.btn-started {
        margin-right: 0;
    }
    .about-banner .banner-content h1 {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 10px;
    }
    .about-banner .banner-content h2 {
        margin-bottom: 0;
    }
    .about-banner .banner-content p {
        margin-bottom: 30px;
    }
    .about-banner .btn-white{
        width: 70%;
        padding: 13px 5px;
        font-size: 13px;
    }
    .about-banner .btn-pricing {
        margin-left: 0;
        margin-top: 10px;
    }
    .thermal-imaging h1 {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 30px;
    }
    .thermal-imaging p {
        margin-bottom: 0px;
    }
    .thermal-imaging .img-holder {
        text-align: center;
        margin-top: 20px;
    }
    .togather h2 {
        font-size: 25px;
    }
    .pricing-packages .generic_content .generic_head_price .generic_price_tag .price .currency {
        font-size: 35px;
    }
    .green-box h1 {
        font-size: 25px;
    }
    .site-header .masthead-des .navbar-light .navbar-toggler-icon {
        width: 30px;
        height: 27px;
    }
    .navbar-toggler {
        padding: 5px 10px !important;
    }
    .site-header .navbar {
        padding: 8px 0px;
    }
    .site-header .masthead-des ul li {
        width: 100%;
        padding: 0;
    }
    .site-header .masthead-des .navbar-expand-lg .navbar-nav{
        -webkit-box-align: start;-ms-flex-align: start;align-items: flex-start;
    }
    .site-header .masthead-des ul li:last-child {
        margin-left: 0;
        margin-top:0;
    }
    .site-banner .banner-content h1 {
        font-size: 40px;
        width: 100%;
    }
    
    .site-banner .banner-content p, .platform .platform-content p, .features p {
        font-size: 15px;
    }
    .btn.btn-white {
        font-size: 14px;
    }
    .site-banner .banner-content .btn-white.btn-started {
        margin-right: 5px;
    }
    .site-banner {
        height: auto;
    }
    .platform:before {
        bottom: -70px;
        background-size: 60% 100%;
    }
    .platform:after {
        bottom: 35px;
    }
    .features:before {
        top: -235px;
        left:0;
    }
    .goals {
        height: auto;
        background-position: 25% 100%;
    }
    .goals .img-wrap{
        text-align: center;
    }
    .goals .img-wrap img{
        width:400px;
    }
    .company-content {
        padding: 50px 0 100px 0;
    }
    .company-content .img-wrap img{
        width: 100%;
    }
    .footer .footer-col-4 {
        padding-left: 0;
    }
}
@media (max-width: 767px){
    .btn-voucher-back{
        margin-bottom: 10px;
    }
    .cloud-section h3{
        width: 100%;
    }
   
    .product-everything .img-wrap{
        width: 450px;
        margin: 0 auto;
    }
    .thermal-about-banner .img-wrap {
        width: 80%;
        margin: 0 auto;
    }
    .product-thermal-imaging h1{
        margin-top: 30px;
    }
    .login-page-des .login-img-wrap {
        background-position: center;
        height: 410px;
    }
    /* .product-profile .profile-button-des input[type=file] {
        width: calc(436px - 200px);
    } */
    .product-profile .profile-box {
        display: block;
        width: 90%;
        padding: 30px 10px;
    }
    .profile-main-content:after {
        width: 700px;
        height: 700px;
    }
    .profile-main-content:before {
        width: 700px;
        height: 700px;
    }
    .product-profile .column-user-pic {
        width: 100%;
    }
    .product-profile h3 {
        font-size: 30px;
    }
    .cloud-section .mobile-view .pagination>li>a {
        border: none;
    }
    .payment-container{
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
        max-width: 100%;
    }
    .pagination {
        justify-content: center;
        margin-top:20px;
    }
    .cloud-section .desktop-view {
        display: none;
    }
    .cloud-section .mobile-view {
        display: block;
    }
    ijdf nuidfsfjh hhfdhsdf  
    .btn-cancel {
        margin-top: 10px;
        display: block;
    }
    .everything .everything-form {
        margin-top: 30px;
    }
    .everything .everything-form label {
        font-size: 14px;
    }
    .everything {
        padding: 0px 0 70px;
    }
    .togather h2 {
        font-size: 25px;
        line-height: 35px;
    }
    .about-banner {
        padding: 50px 0 0;
    }
    .thermal-imaging h1 {
        font-size: 19px;
        margin-bottom: 10px !important;
    }
    .about-banner #img-holder {
        order: 2;
    }
    .about-banner #img-holder .img-wrap, .thermal-imaging h1, .thermal-imaging p, .about-banner .banner-content {
        text-align: center;
    }
    .about-banner .banner-content{
        margin-bottom: 30px;
    }
    .entry-modal-dialogue {
        padding: 40px 20px;
    }
    .billing-date-box {
        margin: 40px 20px 0 20px;
    }
    .billing-plan-box .generic_content {
        max-height: max-content;
        min-height: max-content;
    }
    .profile-box {
        display: block;
        width: 90%;
    }
    .contact-title-des p{
        margin-bottom: 0;
    }
    .contact-info {
        margin-top: 40px;
    }
    .cont-box-wrap:before {
        width: 100%;
    }
    .pricing-des h1 {
        font-size: 30px;
    }
    .custom-radio.price-toggle{
        width: 90%;
    }
    .custom-radio.price-toggle:nth-child(2) {
        margin-top: 8px !important;
    }
    .pricing-wrapper .single-package {
        margin-bottom: 40px;
    }
    .site-banner {
        height: auto;
        padding: 60px 0 40px
    }
    .site-banner .img-wrapper{
        text-align: center;
        margin-top: 20px;
    }
    .site-banner .img-wrapper img{
        width: 500px;
    }
    .platform .platform-content h1, .features h1, .goals .goals-content h1, .company-content h1 {
        font-size: 33px;
    }
    .platform:after {
        bottom: 190px;
        z-index: -1;
    }
    .platform .platform-content{
        z-index: 1;
    }
    .platform:before {
        bottom: 0px;
    }
    .goals {
        padding: 260px 0 0 0;
    }
    .company-content p {
        font-size: 20px;
    }
    .company-content .img-wrap {
        padding: 30px 0 0 0;
    }
    .footer .footer-col-2 ul, footer .footer-col-3 ul{
        padding: 30px 0 0 0;
    }
    .footer .footer-col-4 ul {
        padding: 60px 0 0 0;
    }
}
@media(max-width:575px){
    .product-everything .img-wrap {
        width: 100%;
    }
    .thermal-imaging.product-thermal-imaging .img-holder {
        width: 100%;
    }
    .login-page-des.signup-page-des .login-img-wrap {
        background-position: center;
        height: 350px;
    }
    /* .product-profile .profile-button-des input[type=file] {
        width: calc(436px - 200px);
    } */
    .login-page-des .login-form {
        padding: 25px;
    }
    .login-page-des .image-text h2 {
        font-size: 35px;
    }
    .login-page-des .image-text h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .payment-checkout-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .payment-heading-des {
        display: block;
        width: 100%;
        text-align: center;
    }
    .payment-checkout-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        margin-top: 10px;
    }
    .payment-checkout-btn a {
        width: 50%;
        text-align: center;
        margin-bottom: 10px;
    }
    .everything .everything-content h2 {
        margin-bottom: 15px;
        font-size: 25px;
    }
    .everything .everything-content {
        text-align: center;
    }
    .site-banner .banner-content .banner-btn-wrap {
        margin: 30px 0 0 0;
    }
    .platform:before{
        display: none;
    }
    .platform:after {
        bottom: 200px;
        z-index: -1;
    }
    .platform {
        padding-bottom: 260px;
        padding-top: 60px;
    }
    .features p {
        margin-bottom: 40px;
    }
    .features .feature-content .img-wrap {
        margin-bottom: 15px;
    }
    .goals {
        padding: 170px 0 0 0;
        background-position: 0% 100%;
    }
    .platform .platform-content h1, .features h1, .goals .goals-content h1, .company-content h1 {
        font-size: 25px;
    }
    .company-content p {
        font-size: 18px;
    }
}
@media (max-width: 480px){
    .profile-box:before {
        width: 500px;
        height: 500px;
        top: -260px;
        left: -260px;
    }
    .profile-main-content:after {
        width: 650px;
        height: 650px;
        top: -320px;
        left: -320px;
    }
    .profile-main-content:before {
        width: 650px;
        height: 650px;
        bottom: -320px;
        right: -320px;
    }
    .login-form .form-fields {
        padding: 20px 20px;
    }
    .site-banner .banner-content h1 {
        font-size: 35px;
        margin-bottom: 15px;
    }
    .site-banner .img-wrapper img {
        width: 400px;
    }
    .site-banner {
        padding: 60px 0 40px;
    }
    .platform:after {
        bottom: 270px;
    }
    .features:before {
        top: -250px;
    }
    .copyright p {
        font-size: 13px;
        text-align: center;
    }
    .captcha-des div{
        margin: 0 auto;
    }
    .captcha-des iframe{
        width: 100%;
    }
    .login-page-des .login-form {
        padding: 25px 10px;
    }
    .entry-modal-dialogue.login-page-des {
        padding: 40px 10px;
    }
    .rc-anchor-light.rc-anchor-normal {
        border: none !important;
    }
}
@media(max-width:375px){
    .cloud-accordion .panel-default > .panel-heading {
        padding: 15px 15px 15px 0px;
    }
    .panel-title {
        font-size: 14px
    }
    /* .captcha-des div{
        width: 100% !important;
    }
    .captcha-des iframe{
        width: 100%;
    }
    .captcha-des .rc-anchor-light.rc-anchor-normal{
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        border: none;
    }
    .captcha-des .rc-anchor-normal .rc-anchor-content {
        height: 74px;
        width: 150px;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .rc-anchor-checkbox {
        margin: 0 5px 2px 5px !important;
    }
    .captcha-des  .rc-anchor-normal .rc-anchor-checkbox-label {
        width: 152px;
    }
    .captcha-des  .rc-anchor-normal-footer {
        display: flex;
        height: 74px;
        vertical-align: top;
        width: 70px;
        flex-direction: row;
        align-items: center;
    }
    .captcha-des  .rc-anchor-logo-portrait {
        margin: 0px 0 0 10px;
        width: 70px;
    }
    .captcha-des  .rc-anchor-logo-img-portrait {
        background-size: 32px;
        height: 32px;
        margin: 0 13px 0 13px;
        width: 32px;
    }
    .captcha-des .rc-anchor-normal .rc-anchor-pt {
        margin: 2px 30px 0 0;
        padding-right: 2px;
        position: absolute;
        right: 0;
        text-align: right;
        width: 100%;
        top: 60px;
    }
    #rc-anchor-container{
        border: none !important;
    } */
    .profile-main-content:after {
        width: 600px;
        height: 600px;
        top: -230px;
    }
    .profile-main-content:before {
        width: 600px;
        height: 600px;
        bottom: -230px;
    }
    .rc-anchor-normal {
        height: 74px;
        width: 100%;
    }
    .login-page-des .login-img-wrap {
        background-position: top;
        height: 260px;
    }
    .payment-checkout-wrapper h2, .payment-method-heading {
        font-size: 20px;
        line-height: 30px;
    }
    .header-heading {
        font-size: 20px;
    }
    .site-banner .banner-content .banner-btn-wrap a {
        width: 100%;
    }
    .site-banner .banner-content .btn-white.btn-quote{
        margin-top: 10px;
    }
}
@media(max-width: 370px){
    #orders-datatable ul li, #payments-datatable ul li {
        display: inline-block;
        width: 100%;
    }
    .cloud-section h3 {
        font-size: 30px;
    }
    .question-answer .panel-body {
        font-size: 14px;
    }
    .site-banner .banner-content h1 {
        font-size: 30px;
        margin-bottom: 15px;
    }
    .features h1{
        font-size: 25px;
    }
    .login-page-des .image-text h2 {
        font-size: 26px;
    }
}
@media(max-width: 320px){
    .everything .everything-content h2 {
        margin-bottom: 10px;
        font-size: 22px;
    }
}