@charset "UTF-8";

/*
Theme Name: SmartAI
Author: Radix team
Author URI: https://radixweb.com/
Requires at least: 5.3
Tested up to: 5.7
Requires PHP: 5.6
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: smartai
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready
*/

/* Font-CSS */
@font-face {
  font-family: "montserrat-bold";
  src: url("assets/fonts/montserrat-bold-webfont.eot");
  src: url("assets/fonts/montserrat-bold-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("assets/fonts/montserrat-bold-webfont.woff2") format("woff2"),
    url("assets/fonts/montserrat-bold-webfont.woff") format("woff"),
    url("assets/fonts/montserrat-bold-webfont.ttf") format("truetype"),
    url("assets/fonts/montserrat-bold-webfont.svg#montserratbold") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "montserrat-extrabold";
  src: url("assets/fonts/montserrat-extrabold-webfont.eot");
  src: url("assets/fonts/montserrat-extrabold-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("assets/fonts/montserrat-extrabold-webfont.woff2") format("woff2"),
    url("assets/fonts/montserrat-extrabold-webfont.woff") format("woff"),
    url("assets/fonts/montserrat-extrabold-webfont.ttf") format("truetype"),
    url("assets/fonts/montserrat-extrabold-webfont.svg#montserratextrabold")
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "montserrat-medium";
  src: url("assets/fonts/montserrat-medium-webfont.eot");
  src: url("assets/fonts/montserrat-medium-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("assets/fonts/montserrat-medium-webfont.woff2") format("woff2"),
    url("assets/fonts/montserrat-medium-webfont.woff") format("woff"),
    url("assets/fonts/montserrat-medium-webfont.ttf") format("truetype"),
    url("assets/fonts/montserrat-medium-webfont.svg#montserratmedium")
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "montserrat-regular";
  src: url("assets/fonts/montserrat-regular-webfont.eot");
  src: url("assets/fonts/montserrat-regular-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("assets/fonts/montserrat-regular-webfont.woff2") format("woff2"),
    url("assets/fonts/montserrat-regular-webfont.woff") format("woff"),
    url("assets/fonts/montserrat-regular-webfont.ttf") format("truetype"),
    url("assets/fonts/montserrat-regular-webfont.svg#montserratregular")
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "montserrat-semibold";
  src: url("assets/fonts/montserrat-semibold-webfont.eot");
  src: url("assets/fonts/montserrat-semibold-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("assets/fonts/montserrat-semibold-webfont.woff2") format("woff2"),
    url("assets/fonts/montserrat-semibold-webfont.woff") format("woff"),
    url("assets/fonts/montserrat-semibold-webfont.ttf") format("truetype"),
    url("assets/fonts/montserrat-semibold-webfont.svg#montserratsemibold")
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Font-CSS End */
/*::::::::::::::::::::::::::::::::::::::::
Globle CSS
::::::::::::::::::::::::::::::::::::::::*/
html,
body {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 0;
}

body {
  font-size: 15px;
  line-height: 25px;
  color: #666666;
  font-family: "montserrat-regular", sans-serif;
  width: 100%;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "montserrat-bold", sans-serif;
  font-weight: 700;
}

a {
  color: #3f60a4;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  outline: none;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #3f60a4;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
}

::-webkit-input-placeholder {
  color: #6e6e6e;
}

:-moz-placeholder {
  color: #6e6e6e;
}

::-moz-placeholder {
  color: #6e6e6e;
}

:-ms-input-placeholder {
  color: #6e6e6e;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="search"],
select,
textarea {
  color: #6e6e6e;
  width: 100%;
  height: 42px;
  position: relative;
  display: inline-block;
  border: 1px solid #dfdfdf;
  outline: none;
  border-radius: 0px;
  padding: 6px 10px 8px 10px;
  font-size: 16px;
  background-color: #fff;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus {
  -webkit-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.font-weight-bold,
strong,
b {
  font-family: "montserrat-bold", sans-serif;
}

textarea {
  max-width: 100%;
  height: 80px !important;
  resize: none;
}

.form-control:focus {
  color: #6e6e6e;
  background-color: transparent;
  border-color: #dfdfdf;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.bg-blue-light {
  background: #36a0e0;
}
.btn-white-border,
.btn-white-border:focus {
  font-family: "montserrat-bold", sans-serif;
  font-size: 18px;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 10px;
  line-height: 1;
  padding: 13px 25px 12px;
}

.btn-white-border:hover {
  background-color: #ffffff;
  color: #666666;
}

.btn-theme {
  font-family: "montserrat-bold", sans-serif;
  border: 1px solid #666;
  border-radius: 10px;
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.2);
  font-size: 18px;
  line-height: 1;
  padding: 16px 55px 14px;
}

/* Button */
.btn-darkblue {
  background-color: #51c7b3;
  color: #ffffff;
  border-color: #51c7b3;
}

.btn-darkblue:hover {
  background-color: #ffffff;
  color: #51c7b3;
}

.btn-purple {
  background-color: #9146fa;
  color: #ffffff;
  border-color: #9146fa;
}

.btn-purple:hover {
  background-color: #ffffff;
  color: #9146fa;
}

.btn-lightblue {
  background-color: #36a0e0;
  color: #ffffff;
  border-color: #36a0e0;
}

.btn-lightblue:hover {
  background-color: #ffffff;
  color: #36a0e0;
}

.btn-white {
  background-color: #eeeeee;
  color: #0064db;
  border-color: #eeeeee;
}

.btn-white:hover {
  background-color: transparent;
  border-color: #eeeeee;
  color: #eeeeee;
}

/* bg color css  */
.bg-gray {
  background-color: #eeeeee;
}

.bg-darkblue {
  background-color: #51c7b3;
}

.bg-purple {
  background-color: #9146fa;
}

.bg-blue {
  background-color: #0064db;
}

.text-blue {
  color: #0064db;
}

/* Section small title */
.section-small-title {
  font-family: "montserrat-extrabold", sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 30px;
  position: relative;
  margin-bottom: 75px;
}

.section-small-title:after {
  content: "";
  width: 60px;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  top: auto;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

/* Block Side image (mobile-3) small height */
.side-img {
  max-height: 650px;
}

/* Header */
header {
  background: #0064db;
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.2s ease 0s;
}

header .navbar {
  max-width: 1842px;
  margin: 0 auto;
  padding: 26px 15px;
}

header .navbar .navbar-nav .nav-item {
  margin-right: 48px;
}
header .navbar .navbar-nav .nav-item.active {
  padding-bottom: 0;
}

header .navbar .navbar-nav .nav-item a {
  position: relative;
  font-family: "montserrat-semibold";
  font-size: 16px;
  color: #ffffff;
}

header .header-auth a:not(:last-child) {
  margin-right: 18px;
}

/*Fixed Header*/
header.header-scrolled {
  background: #ffffff;
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.2s ease 0s;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.3);
  -o-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.3);
}

header.header-scrolled .navbar {
  padding: 18px 15px;
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.2s ease 0s;
}

header.header-scrolled .navbar .navbar-nav .nav-item a {
  color: #0064db;
}

header.header-scrolled .header-auth .btn-white-border {
  color: #0064db;
  border-color: #0064db;
  font-size: 16px;
}

header .header-auth .btn-white-border {
  font-size: 16px;
}

header.header-scrolled .header-auth .btn-white-border:hover {
  background-color: #0064db;
  color: #ffffff;
}

header .navbar .navbar-brand .scroll-logo {
  display: none;
}

header.header-scrolled .navbar .navbar-brand .main-logo {
  display: none;
}
header.header-scrolled .navbar .navbar-nav .nav-item a:hover {
  color: #1a1a1a;
}
header.header-scrolled .navbar .navbar-brand .scroll-logo {
  display: block;
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.2s ease 0s;
}
.navbar-toggler .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggler .icon-bar {
  position: relative;
  transition: all 500ms ease-in-out;
}
.navbar-toggler .icon-bar + .icon-bar {
  margin-top: 4px;
}
.navbar-toggler .icon-bar {
  background-color: #fff;
}
.header-scrolled .navbar-toggler .icon-bar {
  background-color: #0064db;
}
.header-scrolled .navbar-dark .navbar-toggler {
  border-color: #cecdcd;
}
.avbar-toggler .icon-bar:nth-of-type(2) {
  top: 1px;
}
.avbar-toggler .icon-bar:nth-of-type(3) {
  top: 2px;
}
.navbar-toggler.active .icon-bar:nth-of-type(1) {
  top: 6px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navbar-toggler.active .icon-bar:nth-of-type(2) {
  background-color: transparent;
}
.navbar-toggler.active .icon-bar:nth-of-type(3) {
  top: -6px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.navbar-toggler {
  padding: 9px 10px;
  outline: none;
  background-color: rgba(255, 255, 255, 0.1);
}
.navbar-toggler:focus,
.navbar-toggler:hover {
  outline: none;
}
/* Top Banner */
.top-banner {
  background: #0064db;
  padding-top: 110px;
}
.top-banner .top-banner-content h1 {
  white-space: pre-line;
  font-size: 45px;
  line-height: 52px;
  color: #ffffff;
}

.top-banner .top-banner-content p {
  white-space: pre-line;
  font-size: 18px;
  line-height: 30px;
  color: #ffffff;
}

.top-banner .top-banner-content .btn-darkblue {
  margin-top: 25px;
}

.top-banner img {
  padding-left: 78px;
}
.top-banner .top-banner-content {
  padding: 50px 0px;
}
.home .top-banner img {
  display: block;
}
/* Our Partner */
.our-partner {
  padding: 65px 15px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.our-partner .slider.single-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 16px;
}

.our-partner .slider.single-item div {
  text-align: center;
  float: none;
  vertical-align: middle;
  display: inline-block;
}

.our-partner .slider.single-item .bullhorn-logo {
  position: relative;
}
.our-partner .slider.single-item .bullhorn-logo img {
  margin-top: -16px;
}

.our-partner.top-brand {
  padding: 22px;
  max-width: 100%;
  margin: 0 auto;
  min-height: 89px;
}

.our-partner .slider.single-item img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 55%;
  margin: 0 auto;
}

.our-partner .slider.single-item img:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.our-partner.bottom-partner-section .rdb-logo img {
  width: 82px !important;
}

.our-partner.bottom-partner-section .salesforce-logo img {
width: 150px !important;
}

.single-max-box {
  max-width: 800px;
  margin: 0 auto;
}

.section-gray-shadow {
  box-shadow: 0px 8px 8px rgba(51, 51, 51, 0.11);
}

.bottom-partner-section .slider.single-item .our-partner-item {
  text-align: center;
  margin: 0 20px;
}

.bottom-partner-section .slider.single-item img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  -webkit-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
}

.single-max-box strong {
  font-size: 18px;
  line-height: 30px;
  color: #666666;
}

/* Comman box content of home page */
.comman-box-content {
  max-width: 690px;
}

.comman-box-content h2 {
  font-size: 35px;
  line-height: 42px;
  color: #666666;
  white-space: pre-line;
  margin-bottom: 15px;
}

.comman-box-content p {
  font-size: 16px;
  line-height: 25px;
  color: #666666;
  margin-bottom: 20px;
}

.comman-box-content ul {
  padding-left: 0px;
}

.comman-box-content ul li {
  position: relative;
  list-style: none;
  padding-left: 20px;
  font-size: 16px;
  line-height: 25px;
}

.comman-box-content ul li:before {
  position: absolute;
  left: 0;
  content: "";
  background-color: #36a0e0;
  height: 5px;
  width: 5px;
  top: 10px;
  border-radius: 50%;
}

.comman-box-content ul li::marker {
  color: #36a0e0;
}

/* Gray Box */
.gray-box {
  padding: 100px 0 100px;
}

.gray-box .comman-box-content h2 span {
  color: #51c7b3;
}
/* White Box */
.white-box {
  padding: 100px 0 100px;
}
.everybody-wins {
  padding: 120px 0;
}
.white-box.small-white-box,
.gray-box.small-white-box {
  padding: 50px 0;
}
.white-box .comman-box-content h2 span {
  color: #9146fa;
}
.reconnect-3-pad {
  padding: 175px 0;
}
.admin-2-pad {
  padding: 220px 0;
}
.admin-3-pad {
  padding: 150px 0;
}
.reduced-gray {
  padding: 245px 0;
}
.automated-workflows {
  padding: 100px 0 100px;
}

.automated-workflows .comman-box-content h2 span {
  color: #36a0e0;
}

/* Our Partner */
.our-partner h2 {
  font-family: "montserrat-extrabold", sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 30px;
  color: #0064db;
  position: relative;
  margin-bottom: 20px;
}

.our-partner h2:after {
  content: "";
  width: 60px;
  height: 2px;
  background-color: #eeeeee;
  position: absolute;
  top: auto;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

/* Statistics */
.statistics-block {
  padding: 72px 0 100px;
}

.statistics-block h2.section-small-title {
  color: #ffffff;
}

.statistics-block .statistics-box {
  width: 20%;
}

.statistics-block .statistics-box .box {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  background-color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
  margin-bottom: 16px;
}

.statistics-block .statistics-box h4 {
  font-size: 55px;
  line-height: 42px;
  color: #ffffff;
  margin-bottom: 5px;
}

.statistics-block .statistics-box p {
  font-size: 16px;
  line-height: 25px;
  color: #ffffff;
  white-space: pre-line;
  margin-bottom: 0;
}

/* Case Staduies */
.case-staduies {
  padding: 65px 0 60px;
}

.case-staduies h2.section-small-title {
  color: #0064db;
  margin-bottom: 30px;
}

.case-staduies .container-fluid {
  max-width: 1590px;
}

.case-staduies .slick-slider .slick-track,
.case-staduies .slick-slider .slick-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 30px 0;
}

.case-staduies .statistics-responsive .slick-list .slick-slide {
  border-radius: 20px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  padding: 20px 25px;
  margin: 0px 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.case-staduies .statistics-responsive .slick-list .slick-slide p {
  font-size: 16px;
  line-height: 25px;
  color: #666666;
  margin-bottom: 0;
}

.case-staduies .media .media-body h5 {
  font-family: "montserrat-semibold", sans-serif;
  font-size: 16px;
  line-height: 25px;
  color: #e4286b;
}

.case-staduies .media .media-body h5 span {
  font-family: "montserrat-regular", sans-serif;
  display: block;
  font-size: 12px;
  line-height: 1;
  color: #666666;
}

.case-staduies .media .media-body p {
  font-family: "montserrat-bold", sans-serif;
  font-size: 12px;
  line-height: 25px;
  color: #666666;
}

.case-staduies .case-staduies-block {
  margin-bottom: 35px;
}

.case-staduies .case-staduies-block > img {
  margin-bottom: 25px;
}

/* testimonial */
.testimonial-block {
  padding: 60px 0 60px;
}

.testimonial-block h2.section-small-title {
  color: #0064db;
  margin-bottom: 30px;
}

.testimonial-inner-block {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0px 30px;
  padding-top: 50px;
}

.testimonial-block .testimonial-item {
}

.testimonial-block .testimonial-item .media {
  margin-bottom: 55px;
}

.testimonial-block .testimonial-item .media .align-self-start {
  margin-right: 40px;
}

.testimonial-block .testimonial-item .media .media-body h5 {
  font-size: 25px;
  line-height: 30px;
  color: #666666;
}
.testimonial-block .testimonial-item .media-body {
  padding-top: 30px;
  padding-right: 20px;
  user-select: text;
}
.testimonial-block .testimonial-item .media .media-body p {
  font-size: 18px;
  line-height: 30px;
  color: #666666;
}
.testimonial-inner-block .slick-prev:before,
.testimonial-inner-block .slick-next:before {
  color: #36a0e0;
}
.testimonial-item button.slick-arrow {
  border: transparent;
  font-size: 24px;
  color: #f1f8fd;
  width: 30px;
  height: 30px;
  background: #36a0e0;
  line-height: 30px;
  border-radius: 30px;
  position: absolute;
  top: 50%;
  display: block;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  outline: none;
  padding-left: 0;
  padding-right: 0;
}
.testimonial-item button.slick-arrow:hover {
  background: #eeeeee;
  color: #36a0e0;
}

.testimonial-item button.slick-arrow.next-arrow {
  right: -50px;
  left: auto;
}
.testimonial-item button.slick-arrow.prev-arrow {
  right: auto;
  left: -50px;
}
.testimonial-block .slick-dots li.slick-active button:before {
  opacity: 1;
  background: #9146fa;
  border: 2px solid #9146fa;
}

.testimonial-block .slick-dots li button:before {
  font-family: unset;
  font-size: unset;
  line-height: 1;
  opacity: 1;
  background: #eeeeee;
  border: 2px solid #eeeeee;
  border-radius: 50%;
  height: 9px;
  width: 9px;
}

.testimonial-block .slick-dots li button {
  height: 0;
  height: 0;
}
.testimonial-logo-info {
  display: inline-flex;
  padding: 10px 0px;
  position: relative;
  margin-top: 15px;
}
/*.testimonial-logo-info:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0px;
  border-left: 20px solid #ffffff;
  display: inline-block;
  border-bottom: 20px solid #ffffff;
  border-top: 10px solid transparent;
}*/
.testimonial-info h6 {
  font-family: "montserrat-bold", sans-serif;
  font-size: 18px;
  color: #666666;
  margin-bottom: 0;
}
.testimonial-logo-info .testimonial-info {
  padding-left: 0px;
}
.testimonial-info span {
  color: #666666;
  font-size: 12px;
}
.testi-more a {
  text-decoration: underline;
  color: #9146fa;
}
.testi-more a:hover {
  color: #36a0e0;
}
.testimonial-block .section-small-title:after {
  background-color: #eeeeee;
}
/* Footer */

.site-footer .footer-block .footer-logo {
  margin-bottom: 15px;
}

.footer-block {
  max-width: 480px;
  margin-left: auto;
}
.footer-block a {
  color: #666666;
}
.footer-block a:hover {
  color: #369fdf;
}
.sales-main-left {
  position: relative;
}
.sales-main-left:after {
  position: absolute;
  width: 1px;
  content: "";
  height: 100%;
  background: #eae2e2;
  right: 15px;
  top: 0;
}
.site-footer .footer-block p {
  line-height: 28px;
  color: #369fdf;
  margin-bottom: 4px;
}

.footer-block-add .fa {
  color: #51c6b3;
}
.footer-social i {
  font-size: 20px;
  line-height: 42px;
}
.social-fb-icon i {
  color: #4867aa;
}
.social-twitter-icon i {
  color: #2caae1;
}
.social-Linkedin-icon i {
  color: #0077b5;
}
.location-detail span {
  color: #666666;
}
.site-footer .footer-block p.location-detail {
  margin-bottom: 15px;
}
.site-footer .footer-menu ul li:not(:last-child) {
  margin-right: 20px;
}

.social-menu p {
  font-size: 13px;
  line-height: 35px;
  color: #666666;
}
.social-menu a {
  color: #666666;
}
.social-menu a:hover {
  color: #36a0e0;
}
.social-menu ul li a {
  width: 42px;
  height: 42px;
  border-radius: 21px;
  background-color: #ffffff;
  line-height: 35px;
  display: block;
  text-align: center;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.social-menu ul li.social-fb-icon a:hover {
  background-color: #4867aa;
}
.social-menu ul li.social-twitter-icon a:hover {
  background-color: #2caae1;
}
.social-menu ul li.social-Linkedin-icon a:hover {
  background-color: #0077b5;
}
.social-menu ul li a:hover i {
  color: #ffffff;
}

.social-menu ul li a:hover {
  webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-menu ul li a:hover img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

/* Admin */
.section_title {
  max-width: 1080px;
  padding: 100px 20px 20px 20px;
  margin: 0 auto;
}

.section_title h2 {
  font-size: 35px;
  line-height: 42px;
  color: #666666;
  font-weight: 700;
  text-align: center;
}

.section_title p {
  font-size: 16px;
  line-height: 25px;
  color: #666666;
  font-weight: 400;
}

/* header dropdown */
header .navbar .navbar-nav .nav-item a.has-drop-down-link:after {
  content: "\25bc";
  position: absolute;
  display: block;
  color: #9cbded;
  opacity: 0.5;
  top: 8px;
  right: 0;
  font-size: 13px;
  -webkit-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  line-height: 12px;
}

header .navbar .navbar-nav .nav-item a.has-drop-down-link {
  padding: 0px 16px 0px 0px;
}

header .navbar .navbar-nav li.has-drop-down .dropdown-wrapper {
  position: absolute;
  padding-top: 16px;
}

header .navbar .navbar-nav li.has-drop-down .dropdown-wrapper ul {
  padding: 0;
  min-width: 220px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

header .navbar .navbar-nav li.has-drop-down .dropdown-wrapper ul li {
  list-style: none;
}

header .navbar .navbar-nav li.has-drop-down .dropdown-wrapper ul li a {
  padding: 14px 20px;
  display: block;
  color: #1a1a1a;
}

header
  .navbar
  .navbar-nav
  li.has-drop-down
  .dropdown-wrapper
  ul
  li:not(:last-child)
  a {
  border-bottom: 1px solid #f4f4f4;
}

.dropdown-wrapper {
  display: none;
}

header .navbar .navbar-nav li.has-drop-down .dropdown-wrapper ul li a:hover {
  color: #0064db !important;
}

.has-drop-down:hover .dropdown-wrapper {
  display: block;
}

.service-provide p {
  font-size: 16px;
  color: #666666;
}

.border-bottom-dashed {
  border-bottom: 1px dashed #0064db;
}

.box-list {
  border-radius: 20px;
}

.box-list ul {
  padding: 0;
}

.box-list li {
  position: relative;
  list-style: none;
  padding-left: 20px;
  font-size: 16px;
  line-height: 25px;
}

.box-list h3 {
  color: #0064db;
  font-size: 25px;
}
.statistics-block-connect .box-list h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.service-provide-reconnect {
  padding-left: 10%;
  padding-right: 10%;
}

.page-template-tpl-compliance .service-provide-reconnect {
padding-left: 0;
padding-right: 0;

}
.box-list li:before {
  position: absolute;
  left: 0;
  content: "";
  background-color: rgb(54 160 224);
  height: 5px;
  width: 5px;
  top: 10px;
  border-radius: 50%;
}

.p {
  font-size: 18px;
  line-height: 30px;
  color: #ffffff;
  font-family: "montserrat-regular", sans-serif;
  font-weight: 400;
}

.service-provide .d-block {
  min-height: 97px;
}

/* case-studies */
.casestudies-main .container,
.blogdetail-main .container {
  max-width: calc(1050px - 40px);
}

.casestudies-block-item {
  padding: 20px;
  box-shadow: 0px 12px 12px rgba(0, 1, 1, 0.15);
  max-width: 450px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
  transition: -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
  -o-transition: transform 1s cubic-bezier(0, 0, 0.2, 1);
  transition: transform 1s cubic-bezier(0, 0, 0.2, 1);
  transition: transform 1s cubic-bezier(0, 0, 0.2, 1),
    -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
}
.casestudies-block-item:hover {
  box-shadow: 2px 16px 12px rgba(0, 1, 1, 0.15);
}
.casestudies-block-item .casestudies-titles {
  margin-bottom: auto;
}
.casestudies-block-col {
  margin-bottom: 60px;
}

.casestudies-block-col:nth-child(even) .casestudies-block-item {
  margin-left: auto;
}
.casestudies-titles .casestudies-title {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 36px;
  padding-right: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.casestudies-block-col > a {
  color: #666666;
  cursor: pointer;
}
.casestudies-block-col > a:hover {
  color: #3f60a4;
}
.casestudies-block-item .casestudies-company {
  color: #0064db;
  text-transform: uppercase;
  font-family: "montserrat-extrabold";
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.casestudies-block-item .casestudies-company:after {
  content: "";
  width: 64px;
  height: 2px;
  background: #eeeeee;
  position: absolute;
  bottom: 0;
  left: 0;
}
.casestudies-download {
  padding-top: 20px;
}
.casestudies-download {
  padding-top: 20px;
  font-family: "montserrat-semibold";
  text-transform: uppercase;
  font-size: 14px;
  color: #999999;
  letter-spacing: 1px;
}
.casestudies-download img {
  margin-left: 10px;
}
.casestudies-main--blog .casestudies-download img {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
  transition: -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
  -o-transition: transform 1s cubic-bezier(0, 0, 0.2, 1);
  transition: transform 1s cubic-bezier(0, 0, 0.2, 1);
  transition: transform 1s cubic-bezier(0, 0, 0.2, 1),
    -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
}
.casestudies-main--blog .casestudies-download:hover img {
  -webkit-transform: translateX(5px) scale(0.9);
  -ms-transform: translateX(5px) scale(0.9);
  transform: translateX(5px) scale(0.9);
}
.casestudies-block-item .casestudies-img img {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
  transition: -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
  -o-transition: transform 1s cubic-bezier(0, 0, 0.2, 1);
  transition: transform 1s cubic-bezier(0, 0, 0.2, 1);
  transition: transform 1s cubic-bezier(0, 0, 0.2, 1),
    -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
  height: 200px;
  object-fit: cover;
}
.casestudies-block-item:hover .casestudies-img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.casestudies-img {
  overflow: hidden;
  border: 1px solid #f7f7f7;
}
.casestudies-detail {
  margin-top: 20px;
}
.casestudies-detail p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* case-studies end */
/* Blog CSS */
.blogdetail-main p {
  font-size: 16px;
  line-height: 28px;
}
.blogdetail-main {
  padding: 150px 0px 50px;
}
.blogdetail-topimg {
  margin-bottom: 30px;
}
.blogdetail-topimg img {
  width: 100%;
}
.blogdetail-main .entry-content h2 {
  color: #36a0e0;
  font-family: "montserrat-semibold";
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 34px;
  line-height: 42px;
}
.blogdetail-main .entry-content h3 {
  font-size: 26px;
  line-height: 36px;
  font-family: "montserrat-semibold";
  margin-bottom: 20px;
  margin-top: 20px;
}
.blogdetail-main h1 {
  font-size: 42px;
  line-height: 52px;
  margin-bottom: 30px;
}
.blogdetail-main ul li:before {
  position: absolute;
  left: 0;
  content: "";
  background-color: #36a0e0;
  height: 5px;
  width: 5px;
  top: 10px;
  border-radius: 50%;
}
.blogdetail-main ul {
  padding-left: 0;
}
.blogdetail-main ul li {
  position: relative;
  list-style: none;
  padding-left: 20px;
  font-size: 16px;
  line-height: 26px;
}
.blogdetail-main a:hover {
  color: #36a0e0;
}
/* Blog CSS end */

/* let's chat */
.chat-section {
  font-size: 16px;
  line-height: 30px;
  color: #ffffff;
  padding-left: 15px;
  padding-right: 15px;
}

.chat-section .btn-white {
  color: #36a0e0;
}
.chat-section .btn-white:hover {
  color: #ffffff;
}

/* Footer */
.footer-links a,
.footer-links span {
  font-size: 16px;
  line-height: 35px;
  color: #666666;
}
.footer-links a:hover {
  color: #0064db;
}
.footer-links a:hover {
  padding-left: 4px;
}
/* Footer End */
.fly {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 3;
  padding: 0;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  margin: 0;
  background-color: #36a0e0;
  color: #fff;
  border: 2px solid #fff;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  outline: none;
  font-size: 26px;
}
.fly:focus {
  outline: none;
}
.scale {
  -webkit-transform: scale(0, 0) translateZ(0);
  -moz-transform: scale(0, 0) translateZ(0);
  -ms-transform: scale(0, 0) translateZ(0);
  -o-transform: scale(0, 0) translateZ(0);
  transform: scale(0, 0) translateZ(0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0, 0, 0, 1) 0.1s,
    opacity 1s 0.2s;
  -moz-transition: -moz-transform 0.5s cubic-bezier(0, 0, 0, 1) 0.1s,
    opacity 1s 0.2s;
  transition: transform 0.5s cubic-bezier(0, 0, 0, 1) 0.1s, opacity 1s 0.2s;
}
.scale.in {
  -webkit-transform: scale(1, 1) translateZ(0);
  -moz-transform: scale(1, 1) translateZ(0);
  -ms-transform: scale(1, 1) translateZ(0);
  -o-transform: scale(1, 1) translateZ(0);
  transform: scale(1, 1) translateZ(0);
}
.abs-img,
.abs-img-center {
  position: absolute;
  bottom: 0;
  right: 0;
}
.abs-img-center {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
}
.rel-img-left {
  position: relative;
  left: -60px;
}
.fade-in {
  -webkit-animation: fade-in 1s ease;
  -moz-animation: fade-in ease-in-out 1s both;
  -ms-animation: fade-in ease-in-out 1s both;
  -o-animation: fade-in ease-in-out 1s both;
  animation: fade-in 1s ease;
  visibility: visible;
  -webkit-backface-visibility: hidden;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.Privacy-Policy-main ul li {
  margin-bottom: 15px;
}
p.font-small {
  font-size: 15px;
}
.blogdetail-topimg-auto {
  text-align: center;
}
.blogdetail-topimg-auto img {
  width: auto;
}
.blogdetail-main ol {
  font-size: 16px;
  line-height: 26px;
}
.blogdetail-main ul.lower-latin {
  list-style-type: lower-latin;
  padding-left: 40px;
  padding-top: 10px;
}
.blogdetail-main ul.lower-latin li {
  list-style: inherit;
  padding-left: 0px;
}
.blogdetail-main ul.lower-latin li:before {
  opacity: 0;
}
.signup-model-left {
  background: #0064db;
}
.signup-model-right-form h2 {
  text-align: center;
  margin-bottom: 40px;
}
.modal-signup button.close {
  position: absolute;
  right: -17px;
  color: #ffffff;
  opacity: 1;
  cursor: pointer;
  z-index: 2;
  background: #0064db;
  border-radius: 100%;
  top: -10px;
  outline: none;
  font-size: 0px;
}

.modal-signup button.close span {
  display: block;
  font-size: 30px;
  font-weight: normal;
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.modal-signup button.close:hover {
  opacity: 1 !important;
  background: #36a0e0;
}
.signup-model-right-form {
  padding: 5% 20px;
}
select.form-control {
  border-radius: 0px;
}
.form-group label {
  font-size: 10px;
  background: #666666;
  margin-bottom: 0;
  padding: 6px 10px;
  color: #f5f5f5;
  letter-spacing: 1px;
  line-height: normal;
  border-radius: 0px 10px 1px 0px;
}
.signup-model-right-form h2 span {
  color: #36a0e0;
}
.signup-model-right-form input[type="text"],
.signup-model-right-form input[type="email"],
.signup-model-right-form input[type="tel"],
.signup-model-right-form input[type="url"],
.signup-model-right-form input[type="password"],
.signup-model-right-form input[type="number"],
.signup-model-right-form input[type="search"],
.signup-model-right-form select,
.signup-model-right-form textarea {
  border-width: 0px 0px 1px 0px;
}
.signup-model-right-form .form-group {
  margin-bottom: 1.3rem;
}
.btn-col-submit span.ajax-loader {
  position: absolute;
  left: 10px;
  top: 10px;
}
.modal-dialog.modal-dialog-signup {
  max-width: 96% !important;
  width: 1500px !important;
}
.btn-row {
  margin-top: 10%;
}
.wpcf7-not-valid-tip {
  padding: 0px 10px;
  font-size: 12px;
}
.modal-dialog.modal-dialog-thankyou {
  max-width: 630px;
}
.ThankyouModal-col h2 {
  color: #36a0e0;
  margin-bottom: 20px;
}


.modal-dialog-signup textarea.hs-fieldtype-textarea::-webkit-input-placeholder {position: absolute; bottom: 5px; padding-bottom: 2px;}
.modal-dialog-signup textarea.hs-fieldtype-textarea::-moz-placeholder:-moz-placeholder { /* Firefox 18- */ position: absolute; bottom: 5px;padding-bottom: 2px;}
.modal-dialog-signup textarea.hs-fieldtype-textarea::-ms-input-placeholder ::-moz-placeholder {  /* Firefox 19+ */ position: absolute; bottom: 5px;padding-bottom: 2px;}
.modal-dialog-signup textarea.hs-fieldtype-textarea:-ms-input-placeholder { position: absolute; bottom: 2px;padding-bottom: 5px;}
/* Case study detail page start */

.case_studies_details_sec {
  margin-top: 102px;
  padding: 80px 0;
  background-color: #112b50;
  color: #ffffff;
}
.case_studies_details_sec h1 {
  line-height: 40px;
  font-size: 45px;
}
.case_studies_count {
  padding: 100px 0;
}
.icon_sec {
  padding: 27px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  text-align: center;
  z-index: 1;
  position: relative;
  max-height: 93px;
  min-height: 93px;
}
.count_text {
  text-align: center;
  padding: 20px 0;
  box-shadow: 0px 0px 30px 5px rgb(0 0 0 / 25%);
  margin-left: 15px;
  margin-right: 15px;
}
.count_text p {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  display: flex;
  margin-bottom: 0;
}
.pink {
  background-color: #e4286b;
}

.overview_desc p {
  font-size: 16px;
  line-height: 26px;
}
.overview_img img {
  width: 300px;
  padding: 15px;
  border: 2px solid rgb(36 36 36/25%);
}
.case_details_overview {
  padding: 70px 0;
  color: #262626;
}
.case_details_overview h3:not(:first-child) {
  margin-top: 60px;
}
/* .overview_img {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
} */
.overview_img .case_overview_img {
  display: flex;
  align-items: center;
  justify-content: start;
}
.case_details_overview h2 {
  margin-bottom: 20px;
}
.case_challenge_img {
  background-color: #36a0e0;
  position: absolute;
  padding: 15px;
  border-radius: 50px;
}
.case_challenge_img img {
  width: 45px;
  height: 45px;
}
.case_challenge_text {
  margin-left: 100px;
}
.solution_studies_sec {
  background-image: url(/wp-content/uploads/2021/09/case_studies_gradient_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0;
  color: #ffffff;
}
.testimonial_case_studies {
  padding: 70px 0;
}
.testimonial_case_studies .testimonial_border_box {
  border: 4px solid #51c7b3;
  padding: 30px;
  border-top-right-radius: 50px;
}
.testimonial_case_studies .testimonial_border_box p {
  margin-bottom: 0;
  color: #111541;
  font-size: 16px;
}
.testimonial_case_studies .testimonial_border_box:after {
  content: "\f10e";
  position: absolute;
  font-size: 35px;
  font-family: FontAwesome;
  color: #51c7b3;
  right: 0;
  background-color: #ffffff;
  padding: 10px 0;
  bottom: 15px;
}
.labour_power_logo {
  margin-bottom: 20px;
}
.wp_case_study-template header.header-scrolled {
  box-shadow: none;
}
.case_gray_bg_sec {
  padding: 70px 0;
}
.black {
  color: #000000;
}
.case_details_overview .container .case_challenge_sec:nth-child(n + 3) {
  margin-top: 30px;
  display: inline-block;
}
.case_studies_count .row {
  flex-wrap: wrap;
}
.case_details_overview
  .container
  .row:nth-child(n + 3)
  .overview_img
  .case_overview_img
  img {
  border: none;
  padding: 0;
  width: 350px;
}
.case_details_overview .container .row:nth-child(n + 3) {
  align-items: center;
}
.case_studies_count .row.cs-box:last-child .col {
  max-width: 25%;
}
.casestudy-text h4 {
  color: #262626;
}
/* Case study detail page end */

/* Start:: new updated sign-up form 01052023 */
.modal-signup .signup-model-right-form .hs-form {
  margin: 0 -15px;
}
.modal-signup .signup-model-right-form .hs-form fieldset {
  max-width: 100%; 
}
.modal-signup .signup-model-right-form .hs-form .hs-form-field {
  padding: 0 15px;
  margin-bottom: 1.3rem;
}
.modal-signup .signup-model-right-form .hs-form fieldset .hs-form-field label {
  display: none;
}
.modal-signup .signup-model-right-form .hs-form fieldset .hs-form-field .hs-error-msgs {
  list-style: none;padding: 0;
}
.modal-signup .signup-model-right-form .hs-form fieldset .hs-form-field .hs-error-msgs label {
  display: block;
  color: #f00;
  font-size: 80%;
}
.modal-signup .signup-model-right-form .hs-form fieldset .hs-input {
  width: 100% !important;
}
.modal-signup .signup-model-right-form .hs-form fieldset .input {
  margin-right: 0;
}
.modal-signup .signup-model-right-form .hs-form .hs-submit {
  padding: 0 15px;
  text-align: center;
}
.modal-signup .signup-model-right-form .hs-form .hs-submit .hs-button {
  font-family: "montserrat-bold",sans-serif;
  border-radius: 10px;
  box-shadow: 0px 2px 1px rgba(0,0,0,.2);
  -moz-box-shadow: 0px 2px 1px rgba(0,0,0,.2);
  -webkit-box-shadow: 0px 2px 1px rgba(0,0,0,.2);
  -o-box-shadow: 0px 2px 1px rgba(0,0,0,.2);
  font-size: 18px;
  line-height: 1;
  padding: 16px 55px 14px;
  background-color: #36a0e0;
  color: #fff;
  border: 1px solid #36a0e0;
  margin-top: 5%;
}
.modal-signup .signup-model-right-form .hs-form .hs-submit .hs-button:hover {
  background-color: #fff;
  color: #36a0e0;
}
/* End:: new updated sign-up form 01052023 */

.nbar-top-ttl {
  font-size: 26px;
  font-weight: bold;
  padding-bottom: 10px;
  display: inline-block;
}
.nbar-content {
  font-size: 22px;
  text-align: center;
}
.hthb-row{
  padding: 10px 10px 10px 10px !important;
}
header#header-sec-main {
  top: 1px;
}
#notification-499 .hthb-notification-content, #notification-499 .hthb-notification-content p {
  font-size: 22px;
}

@media only screen and (max-width: 575px) {
  #notification-499 .hthb-notification-content, #notification-499 .hthb-notification-content p {
    font-size:18px;
  }
}



/*--------- Marketo Form ----------*/
.mktoForm_CU form.mktoForm {
  width: 100% !important;
}
.mktoForm_CU form.mktoForm .mktoFormRow .mktoFieldWrap label {
  font-family: "montserrat-bold", sans-serif;
  font-size: 18px;
  line-height: 20px;
  color: #666666 !important;
  margin-bottom: 10px;
  font-weight: 600;
  width: auto !important;
}
.mktoForm_CU .mktoForm input[type=text], 
.mktoForm_CU .mktoForm input[type=url], 
.mktoForm_CU .mktoForm input[type=email], 
.mktoForm_CU .mktoForm input[type=tel], 
.mktoForm_CU .mktoForm input[type=number], 
.mktoForm_CU .mktoForm input[type=date], 
.mktoForm_CU .mktoForm textarea.mktoField, 
.mktoForm_CU .mktoForm select.mktoField {
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 5px 15px;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.02em;
  font-family: "Raleway", Sans-serif;
  color: #666666;
  width: 100% !important;
}
.mktoForm_CU .mktoForm select.mktoField {
  padding: 10px 15px;
}
.mktoForm_CU .mktoForm .mktoFormCol {
  width: 100%;
}
.mktoForm_CU .mktoForm .mktoFieldWrap,
.mktoForm_CU .mktoForm .mktoFieldWrap .mktoCheckboxList{
  width: 100% !important;
}
.mktoForm_CU .mktoForm .mktoRadioList > input, 
.mktoForm_CU .mktoForm .mktoCheckboxList > input {
  margin-top: 5px !important;
}
.mktoForm_CU .mktoForm .mktoFormRow {
  width: 50%;
  display: inline-flex;
  padding: 0 20px 0 0;
}
/* .mktoForm_CU .mktoForm .mktoFormRow:nth-child(8),
.mktoForm_CU .mktoForm .mktoFormRow:nth-child(9), */
.mktoForm_CU .mktoForm .mktoFormRow + .mktoFormRow + .mktoFormRow + .mktoFormRow + .mktoFormRow + .mktoFormRow + .mktoFormRow,
.mktoForm_CU .mktoForm .mktoFormRow + .mktoFormRow + .mktoFormRow + .mktoFormRow + .mktoFormRow + .mktoFormRow + .mktoFormRow + .mktoFormRow {
  width: 100%;
}
.mktoForm_CU .mktoForm .mktoAsterix {
  float: right !important;
}

.mktoForm .mktoFormCol[type="hidden"] {
  float: left;
  position: relative;
  min-height: 2em;
  margin: 0 !important;
}
.mktoForm_CU .mktoFormRow:has(input[type="hidden"]){
  display:none !important;   
}
.mktoForm_CU .mktoFormRow:has(input[type="hidden"]) + .mktoFormRow{
  width: 100%;
}
#LblgDPRConsentForm, #LblgDPRConsentForm + .mktoGutter {
  display: none;
}
.mktoForm_CU .mktoForm .mktoButtonRow {
  width: 100%;
  text-align: right;
}
.mktoForm_CU .mktoForm .mktoButtonWrap.mktoSimple .mktoButton,
.mktoForm_CU .mktoForm .mktoButtonWrap.mktoMinimal .mktoButton{
  font-family: "Raleway", Sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  text-shadow: 0px 0px 0px rgb(0 0 0 / 30%);
  color: #fff;
  background-color: #36a0e0;
  border: 2px solid #36a0e0;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 50%);
  padding: 8px 55px 8px 30px;
  background-image: url(assets/images/white_arrow.png);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
}
.mktoForm_CU .mktoForm .mktoButtonWrap.mktoSimple .mktoButton:hover,
.mktoForm_CU .mktoForm .mktoButtonWrap.mktoMinimal .mktoButton:hover {
  background-color: transparent;
  color: #36a0e0;
  background-image: url(assets/images/blue-arrow.png);
  background-repeat: no-repeat;
  border: 2px solid #36a0e0;
  background-position: right 20px center;
  background-size: 16px;
}
.mktoForm_CU .mktoForm .mktoError{
  right: auto !important;
}
.mktoForm_CU .mktoForm .mktoButtonRow .mktoButtonWrap.mktoSimple{
  margin-left: 0 !important;
}
.mktoForm_CU .mktoForm .mktoFormRow .mktoOffset {
  height: auto;
}
@media only screen and (max-width: 991px) {
  .mktoForm_CU .mktoForm input[type=text], 
  .mktoForm_CU .mktoForm input[type=url], 
  .mktoForm_CU .mktoForm input[type=email], 
  .mktoForm_CU .mktoForm input[type=tel], 
  .mktoForm_CU .mktoForm input[type=number], 
  .mktoForm_CU .mktoForm input[type=date], 
  .mktoForm_CU .mktoForm textarea.mktoField, 
  .mktoForm_CU .mktoForm select.mktoField {
      padding: 8px 15px;
      font-size: 15px;
      line-height: 28px;
      height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .mktoForm_CU form.mktoForm {
   padding: 0px;
  }
  .mktoForm_CU .mktoForm .mktoFormRow {
    width: 100%;
  }
  .mktoForm_CU .mktoForm .mktoButtonRow {
    width: 100%;
    text-align: center;
  }
  .mktoForm_CU .mktoForm .mktoFormRow {
    padding: 0;
  }
}

/* Thank you Page */
.entry-content .min-vh-70{
  min-height: 70vh;
}
.entry-content .thankyou h1{
  font-size: 87px;
  font-weight: 700;
  font-style: normal;
  line-height: 95px;
  -webkit-text-stroke-color: #000;
  stroke: #000;
  color: #0064db;
}
@media (max-width: 767px) {
  .entry-content .thankyou h1{
      font-size: 50px;
  }
}

/*--- OneTrust Third-Party CSS ---*/
#onetrust-pc-btn-handler {
  color: #21344F !important;
}
button#onetrust-pc-btn-handler:focus,
#onetrust-pc-sdk #close-pc-btn-handler.ot-close-icon:focus,
#ot-sdk-btn:focus {
  outline: none !important;
}
#onetrust-accept-btn-handler {
  background-color: #0064db !important;
  border-color: #0064db !important;
  padding: 10px 15px !important;
}
#onetrust-consent-sdk #onetrust-pc-sdk .ot-active-menu {
  border-color: #0064db !important;
}
#onetrust-consent-sdk #onetrust-pc-sdk button:not(#clear-filters-handler):not(.ot-close-icon):not(#filter-btn-handler):not(.ot-remove-objection-handler):not(.ot-obj-leg-btn-handler):not([aria-expanded]):not(.ot-link-btn), #onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-active-leg-btn {
  background-color: #0064db !important;
  border-color: #0064db !important;
  color: #FFFFFF;
}
#ot-sdk-btn {
  background-color: #ffffff !important;
  border-radius: 9999px;
  color: #0064db !important;
  border-color: #0064db !important;
}
#ot-sdk-btn:hover {
  background-color: #0064db !important;
  color:  #ffffff !important;
}
#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group {
  color: #36a0e0 !important;
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  font-size: 28px !important;
  line-height: 38px !important;
  font-weight: 600 !important;
}
.cookie-st {
  margin-bottom: 0 !important;
}
.cookies-p p {
  font-size: 16px !important;
  line-height: 28px !important;
}