@charset "UTF-8";
/* Media Queries */
html {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}

*::before,
*::after {
  box-sizing: inherit;
}


.dropdown-heading {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #000; /* black text */
  letter-spacing: 1.5px;
  padding: 14px 15px;
  margin: 15px auto;
  border-radius: 14px;
  position: relative;
  background: transparent;
  backdrop-filter: blur(6px); 
  box-shadow: none; 
  display: inline-block;
  overflow: hidden;
}

/* Animated gradient underline */
.dropdown-heading::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #3c5fd2, #2d3ba8, #00b86b);
  background-size: 200% 100%;
  animation: gradient-move 3s linear infinite;
}

@keyframes gradient-move {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}


@keyframes sparkle {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3) rotate(10deg); }
}




ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol {
  margin: 0;
  padding: 0;
}

p {
  padding: 0;
  margin: 0 0 5px 0;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0 0 10px 0;
}

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

@font-face {
  font-family: "webfont_bold";
  src: url("fonts/caecilialtstd-bold-webfont.eot");
  src: url("fonts/caecilialtstd-bold-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/caecilialtstd-bold-webfont.woff") format("woff"), url("fonts/caecilialtstd-bold-webfont.ttf") format("truetype"), url("fonts/caecilialtstd-bold-webfont.svg#webfont_bold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "webfont";
  src: url("fonts/caecilialtstd-roman-webfont.eot");
  src: url("fonts/caecilialtstd-roman-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/caecilialtstd-roman-webfont.woff") format("woff"), url("fonts/caecilialtstd-roman-webfont.ttf") format("truetype"), url("fonts/caecilialtstd-roman-webfont.svg#webfont") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "webfont_light";
  src: url("fonts/caecilialtstd-light-webfont.eot");
  src: url("fonts/caecilialtstd-light-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/caecilialtstd-light-webfont.woff") format("woff"), url("fonts/caecilialtstd-light-webfont.ttf") format("truetype"), url("fonts/caecilialtstd-light-webfont.svg#webfont_light") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "webfont_bold_italic";
  src: url("fonts/caecilialtstd-bolditalic-webfont.eot");
  src: url("fonts/caecilialtstd-bolditalic-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/caecilialtstd-bolditalic-webfont.woff") format("woff"), url("fonts/caecilialtstd-bolditalic-webfont.ttf") format("truetype"), url("fonts/caecilialtstd-bolditalic-webfont.svg#webfont_bold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "webfont_italic";
  src: url("fonts/caecilialtstd-italic-webfont.eot");
  src: url("fonts/caecilialtstd-italic-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/caecilialtstd-italic-webfont.woff") format("woff"), url("fonts/caecilialtstd-italic-webfont.ttf") format("truetype"), url("fonts/caecilialtstd-italic-webfont.svg#webfont_italic") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "webfont_light_italic";
  src: url("fonts/caecilialtstd-lightitalic-webfont.eot");
  src: url("fonts/caecilialtstd-lightitalic-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/caecilialtstd-lightitalic-webfont.woff") format("woff"), url("fonts/caecilialtstd-lightitalic-webfont.ttf") format("truetype"), url("fonts/caecilialtstd-lightitalic-webfont.svg#webfont_light_italic") format("svg");
  font-weight: normal;
  font-style: normal;
}
/**
 * Typography
 * =================================
 * - Base
 * - Paragraphs
 * - Headings
 * - Type sizes
 * - Misc
 * - Utilities
 *
 * Body font size, leadings etc have been set in _variables.scss
 *
 * See http://modularscale.com for
 *
 */
/**
 * Paragraphs
 */
p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  margin-top: 0;
  margin-bottom: calc(24px - 4px);
  line-height: 24px;
}
p.big {
  font-size: 16px;
}

/**
 * anchor
 */
a {
  position: relative;
  color: inherit;
  text-decoration: none;
  line-height: 24px;
  display: inline-flex;
  padding-bottom: 5px;
  overflow: hidden;
}
a::after, a::before {
  content: "";
  position: absolute;
  transition: transform 0.5s ease;
}
a::before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: translateX(-100%);
}
a:hover {
  color: #000000;
}
a:hover::before {
  transform: translateX(0);
}

/**
 * Headings
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  text-rendering: optimizelegibility;
  margin-top: 0;
  margin-bottom: 20px;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  font-weight: normal;
}

h1,
.h1,
.alpha {
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
}

h2,
.h2,
.beta {
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
}

h3,
.h3,
.gamma {
  font-size: 24px;
  line-height: calc(36px - 4px);
  font-weight: 600;
}

h4,
.h4,
.delta {
  font-size: 24px;
  line-height: calc(36px - 4px);
  font-weight: 500;
}

h5,
.h5,
.epsilon,
h6,
.h6,
.zeta {
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
}

* + h1,
* + .h1,
* + .alpha,
* + h2,
* + .h2,
* + .beta,
* + h3,
* + .h3,
* + .gamma,
* + h4,
* + .h4,
* + .delta {
  margin-top: 24px;
}

small {
  font-size: 80%;
}

/**
 * Miscellaneous
 */
strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

abbr[title] {
  border-bottom: 1px dotted #ddd;
  cursor: help;
}

/**
 * Blockquotes
 */
blockquote {
  padding-left: 10px;
  margin: 24px;
  border-left: 4px solid #cccccc;
}
blockquote p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
}
blockquote small {
  display: block;
  color: #b3b3b3;
}
blockquote small::before {
  content: "— ";
}

q::before, q::after,
blockquote::before,
blockquote::after {
  content: "";
}

cite {
  font-style: normal;
}

dfn {
  font-style: italic;
}

mark {
  padding: 2px 4px;
  border-radius: 3px;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/**
 * Utilities
 */
.text-centre,
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

hr {
  margin: 24px 0;
  border: 0;
  height: 1px;
  background-color: #cccccc;
}

.hyphenate {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.btn {
  font-size: 14px;
  font-weight: 600;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  color: #FFFFFF;
  transition: all 0.3s ease;
  outline: none;
  cursor: pointer;
  z-index: 1;
  border: 0;
  padding: 6px 20px;
}
.btn::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.btn:hover {
  color: #FFFFFF;
}
.btn:hover::after {
  width: 100%;
}
.btn.btn-congi-green {
  background: #3B9A3D;
  border: 2px solid #3B9A3D;
}
.btn.btn-congi-green:hover {
  background: #3B9A3D;
}
.btn.btn-congi-green:active {
  background: #3B9A3D;
}
.btn.btn-congi-green::after {
  background-color: rgba(39, 126, 41, 0.4);
}
.btn.btn-congi-orange {
  background: #FDAB00;
  border: 2px solid #FDAB00;
}
.btn.btn-congi-orange:hover {
  background: #FDAB00;
}
.btn.btn-congi-orange:active {
  background: #FDAB00;
}
.btn.btn-congi-orange::after {
  background-color: rgba(232, 161, 13, 0.4);
}
.btn.btn-congi-blue {
  background: #1976D2;
  border: 2px solid #1976D2;
}
.btn.btn-congi-blue:hover {
  background: #1976D2;
}
.btn.btn-congi-blue:active {
  background: #1976D2;
}
.btn.btn-congi-blue::after {
  background-color: rgba(25, 118, 210, 0.4);
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.container {
  max-width: 1144px;
}

.container-fluid {
  padding: 0;
}

.col_1, .col_2, .col_3, .col_4, .col_5, .col_6, .col_7, .col_8, .col_9, .col_10, .col_11, .col_12 {
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.col_1 {
  width: 7.4166666667%;
}

.col_2 {
  width: 15.8333333333%;
}

.col_3 {
  width: 24.25%;
}

.col_4 {
  width: 32.6666666667%;
}

.col_5 {
  width: 41.0833333333%;
}

.col_6 {
  width: 49.5%;
}

.col_7 {
  width: 57.9166666667%;
}

.col_8 {
  width: 66.3333333333%;
}

.col_9 {
  width: 74.75%;
}

.col_10 {
  width: 83.1666666667%;
}

.col_11 {
  width: 91.5833333333%;
}

.col_12 {
  width: 100%;
  margin-left: 0;
}

@media only screen and (max-width: 939px) {
  .col_12 {
    width: 100% !important;
  }

  .col_6 {
    width: 50%;
    margin-left: 0;
  }
}
/*@media only screen  and (max-width : 899px) {
  .col_4{
    width:100%;
    margin-left:0;
  }
}
@media only screen  and (max-width : 839px) {
  .col_3{
    width:100%;
    margin-left:0;
  }
}*/
.hidden-xs {
  display: block;
}

.visible-xs {
  display: none !important;
}

.visible-sm {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }

  .visible-xs {
    display: block !important;
  }
}
@media screen and (max-width: 1023px) {
  .hidden-xs {
    display: inline-block !important;
  }

  .visible-sm {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .mobile-hide {
    display: none !important;
  }

  .mobile-show {
    display: block !important;
  }
}
@media screen and (min-width: 767px) {
  .mobile-hide {
    display: block !important;
  }

  .mobile-show {
    display: none !important;
  }
}
header .top-header {
  padding: 15px 0;
}
header .top-header .contact-info ul {
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  header .top-header .contact-info ul {
    text-align: center;
  }
}
header .top-header .contact-info ul li {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: #FFFFFF;
  display: inline-block;
  padding: 0px 10px;
}
@media screen and (max-width: 1023px) {
  header .top-header .contact-info ul li {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  header .top-header .contact-info ul li {
    font-size: 11px;
    padding: 0px 10px;
  }
}
header .top-header .contact-info ul li:first-child {
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  header .top-header .contact-info ul li:first-child {
    padding-left: 10px;
  }
}
header .top-header .contact-info ul li:last-child {
  padding-right: 0;
  border-right: 0;
}
header .top-header .contact-info ul li a {
  color: #FFFFFF;
  text-decoration: none;
}
header .top-header .contact-info ul li a:hover::before {
  background: #FFFFFF;
}
header .top-header .social-info {
  text-align: right;
}
header .top-header .social-info .social-icon {
  float: right;
}
header .top-header .social-info .social-icon li {
  display: inline-block;
  padding-left: 10px;
}
header .top-header .social-info .social-icon li a:hover {
  opacity: 0.7;
}
header .top-header .social-info #language-selector {
  background: transparent;
  border: 0;
  color: #FFFFFF;
  outline: 0;
  cursor: pointer;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  header .top-header .social-info {
    display: block !important;
    margin-top: 20px;
  }
  header .top-header .social-info #language-selector {
    float: left;
  }
}
header .nav-section {
  background: #FFFFFF;
  width: 100%;
  display: inline-block;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 12px 20px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: position 10s;
  -ms-transition: position 10s;
  -o-transition: position 10s;
  transition: all 0.5s ease;
}
header .nav-section.fixed-header {
  position: fixed;
  left: 0;
  top: 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -moz-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media screen and (min-width: 1024px) {
  header .nav-section {
    display: flex;
    align-items: center;
  }
}
header .nav-section .logo {
  width: 28%;
  padding: 4px 0px 0px;
}
@media screen and (max-width: 1023px) {
  header .nav-section .logo {
    width: 50%;
    float: left;
    text-align: left;
  }
}
header .nav-section .nav-bar-section {
  width: 58%;
}
@media screen and (max-width: 1023px) {
  header .nav-section .nav-bar-section {
    width: 50%;
    float: right;
    text-align: right;
  }
}
@media screen and (max-width: 1023px) {
  header .nav-section .nav-bar-section .navbar {
    float: right;
  }
}
@media screen and (max-width: 1023px) {
  header .nav-section .nav-bar-section .navbar {
    position: inherit;
  }
  header .nav-section .nav-bar-section .navbar .navbar-collapse {
    position: fixed;
    top: 0px;
    left: 0;
    padding: 25px 0px;
    width: 100%;
    height: 100vh;
    background: #FFFFFF;
    z-index: 9999;
  }
  header .nav-section .nav-bar-section .navbar .navbar-collapse .navbar-nav {
    text-align: left;
    padding: 0px 25px;
  }
  header .nav-section .nav-bar-section .navbar .navbar-collapse .navbar-nav li {
    padding: 0px 0px 15px;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1023px) {
  header .nav-section .nav-bar-section .navbar .navbar-collapse .nav-header {
    width: 100%;
    display: inline-block;
    padding: 0px 25px 15px;
    border-bottom: 1px #CCCCCC solid;
    margin-bottom: 30px;
    float: left;
  }
  header .nav-section .nav-bar-section .navbar .navbar-collapse .nav-header .nav-logo {
    float: left;
  }
  header .nav-section .nav-bar-section .navbar .navbar-collapse .nav-header .navbar-toggler {
    float: right;
    width: 20px;
    height: 20px;
    margin-top: 8px;
  }
  header .nav-section .nav-bar-section .navbar .navbar-collapse .nav-header .navbar-toggler img {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  header .nav-section .nav-bar-section .navbar .navbar-collapse.collapsing {
    left: -75%;
    transition: height 0s ease;
  }
}
@media screen and (max-width: 1023px) {
  header .nav-section .nav-bar-section .navbar .navbar-collapse.show {
    left: 0;
    transition: left 300ms ease-in-out;
  }
}
@media screen and (max-width: 1023px) {
  header .nav-section .nav-bar-section .navbar .navbar-toggler.collapsed ~ .navbar-collapse {
    transition: left 500ms ease-in-out;
  }
}
header .nav-section .nav-bar-section .navbar .navbar-toggler {
  border: 0;
  padding: 0;
  outline: 0;
  box-shadow: none;
}
header .nav-section .nav-bar-section ul li.nav-item {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  padding: 0px 20px;
  line-height: 18px;
}
@media screen and (min-width: 1024px) {
  header .nav-section .nav-bar-section ul li.nav-item {
    position: inherit;
  }
}
header .nav-section .nav-bar-section ul li.nav-item:first-child {
  padding-left: 0;
}
@media screen and (min-width: 1024px) {
  header .nav-section .nav-bar-section ul li.nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
}
header .nav-section .nav-bar-section ul li.nav-item.dropdown .dropdown-menu {
  padding: 0;
}
@media screen and (min-width: 1024px) {
  header .nav-section .nav-bar-section ul li.nav-item.dropdown .dropdown-menu {
    width: 751px;
    left: 0;
    /* padding: 30px 20px; */
    padding: 20px;
    -moz-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
    border: 0;
  }
  header .nav-section .nav-bar-section ul li.nav-item.dropdown .dropdown-menu .border-right {
    border-right: 1px #CCCCCC solid;
  }
}
@media screen and (max-width: 1023px) {
  header .nav-section .nav-bar-section ul li.nav-item.dropdown .dropdown-menu {
    border: 0;
    border-bottom: 1px #ccc solid;
    margin-top: 20px;
    padding-left: 0px;
    border-radius: 0;
  }
}
header .nav-section .nav-bar-section ul li.nav-item.dropdown .dropdown-menu .dropdown-item {
  padding: 10px 32px 10px 10px;
}
header .nav-section .nav-bar-section ul li.nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #F3F8FF;
  border-radius: 10px;
}
header .nav-section .nav-bar-section ul li.nav-item.dropdown .dropdown-menu .dropdown-item:hover::after {
  content: " ";
  background: url("../assets/images/menu-arrow.png") 0 0 no-repeat;
  width: 13px;
  height: 18px;
  position: absolute;
  right: 20px;
  top: 45%;
  transition: transform 0.5s ease;
}
@media screen and (max-width: 1023px) {
  header .nav-section .nav-bar-section ul li.nav-item.dropdown .dropdown-menu .dropdown-item {
    padding: 0px 0px 0px 0px;
    line-height: 18px;
  }
}
header .nav-section .nav-bar-section ul li.nav-item.dropdown .dropdown-menu .dropdown-item .menu-row {
  display: flex;
  padding: 5px;
  padding: 0;
  white-space: normal;
}
header .nav-section .nav-bar-section ul li.nav-item.dropdown .dropdown-menu .dropdown-item .menu-row .menu-icon {
  margin-right: 8px;
  width: 85px;
  height: 85px;
}
header .nav-section .nav-bar-section ul li.nav-item.dropdown .dropdown-menu .dropdown-item .menu-row .menu-icon img {
  max-width: 100%;
}
header .nav-section .nav-bar-section ul li.nav-item.dropdown .dropdown-menu .dropdown-item .menu-row .menu-bk h2 {
  font-size: 15px;
  font-weight: 700;
  margin: 0px 0px 10px;
  line-height: 18px;
  color: #000000;
}
header .nav-section .nav-bar-section ul li.nav-item.dropdown .dropdown-menu .dropdown-item .menu-row .menu-bk h2 span {
  font-weight: 500;
  color: #000000;
}
header .nav-section .nav-bar-section ul li.nav-item.dropdown .dropdown-menu .dropdown-item .menu-row .menu-bk p {
  font-size: 11px;
  line-height: 18px;
  padding: 0;
  margin: 0;
  color: #000000;
}
header .nav-section .nav-bar-section ul li.nav-item a.nav-link {
  color: #51493B;
  display: block;
  padding: 0;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  header .nav-section .nav-bar-section ul li.nav-item a.nav-link {
    text-transform: uppercase;
  }
  header .nav-section .nav-bar-section ul li.nav-item a.nav-link::after {
    content: "";
    width: 21px;
    height: 14px;
    background: url("../assets/images/service-arrow.png") 0 0 no-repeat;
    position: absolute;
    right: 0px;
  }
  header .nav-section .nav-bar-section ul li.nav-item a.nav-link.dropdown-toggle::after {
    border-top: 0 solid;
    border-right: 0 solid transparent;
    border-bottom: 0;
    border-left: 0 solid transparent;
  }
}
@media screen and (min-width: 767px) {
  header .nav-section .nav-bar-section ul li.nav-item a.nav-link::before {
    background: #51493B;
  }
}
header .nav-section .request-btn {
  width: 16%;
}

footer {
  width: 100%;
  display: inline-block;
  background: #222222;
  position: relative;
}
footer .top-footer {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  footer .top-footer {
    padding-bottom: 20px;
  }
}
footer .top-footer .logo-bg-shape {
  width: 321px;
  height: 107px;
  background: url("../assets/images/logo-bg.svg") 0 0 no-repeat;
  position: absolute;
  top: 0px;
  left: -100px;
  z-index: 1;
}
footer .top-footer .footer-info {
  width: 326px;
  float: left;
  z-index: 999;
  margin-right: 30px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  footer .top-footer .footer-info {
    width: 100%;
    margin: 0px 0px 30px 0px;
  }
}
footer .top-footer .footer-info .logo {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
footer .top-footer .footer-info p {
  color: #ADADAD;
}
footer .top-footer .footer-info .social {
  float: left;
  width: 100%;
}
footer .top-footer .footer-info .social li {
  display: inline-block;
  margin-right: 20px;
  opacity: 0.5;
}
footer .top-footer .footer-info .social li:hover {
  opacity: 1;
}
footer .top-footer .footer-info .nasscom-logo {
  display: inline-block;
  margin-top: 20px;
}
footer .top-footer .footer-nav {
  width: 180px;
  float: left;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  footer .top-footer .footer-nav {
    width: 160px;
    margin-right: 25px;
  }
  footer .top-footer .footer-nav.last {
    margin-right: 0;
  }
}
footer .top-footer .footer-nav h5 {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #656565;
  color: #FFFFFF;
}
footer .top-footer .footer-nav ul li {
  font-size: 14px;
  display: block;
  padding: 0px 0px 15px 0px;
  padding-left: 30px;
  position: relative;
}
footer .top-footer .footer-nav ul li::after {
  content: " ";
  background: url("../assets/images/nav-arrow.png") 0 0 no-repeat;
  width: 13px;
  height: 13px;
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 0.5s ease;
}
footer .top-footer .footer-nav ul li:hover::after {
  -webkit-transform: rotate(44deg);
  -moz-transform: rotate(44deg);
  -ms-transform: rotate(44deg);
  -o-transform: rotate(44deg);
  transform: rotate(44deg);
}
footer .top-footer .footer-nav ul li a {
  color: #ADADAD;
  line-height: 16px;
}
footer .top-footer .footer-nav ul li a:hover {
  color: #FFFFFF;
}
footer .top-footer .footer-nav ul li a:hover::before {
  background: #ADADAD;
}
footer .top-footer .footer-address {
  width: 330px;
  float: right;
}
@media screen and (max-width: 767px) {
  footer .top-footer .footer-address {
    width: 100%;
    margin-top: 30px;
  }
}
footer .top-footer .footer-address h5 {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #656565;
  color: #FFFFFF;
  max-width: 200px;
}
@media screen and (max-width: 767px) {
  footer .top-footer .footer-address h5 {
    max-width: 100%;
  }
}
footer .top-footer .footer-address h6 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ADADAD;
}
footer .top-footer .footer-address p {
  color: #ADADAD;
}
footer .bottom-footer {
  width: 100%;
  display: inline-block;
  padding: 35px 0px;
  border-top: 1px #656565 solid;
}
footer .bottom-footer .footer-row {
  display: flex;
  align-items: center;
  color: #FFF;
  width: 100%;
}
@media screen and (max-width: 767px) {
  footer .bottom-footer .footer-row {
    display: inline-block;
  }
}
footer .bottom-footer .footer-row .subscribe-blk {
  width: 60%;
  display: flex;
  align-items: center;
  display: none;
}
@media screen and (max-width: 767px) {
  footer .bottom-footer .footer-row .subscribe-blk {
    width: 100%;
    display: inline-block;
  }
}
footer .bottom-footer .footer-row .subscribe-blk label {
  margin-right: 20px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  footer .bottom-footer .footer-row .subscribe-blk label {
    display: block;
    margin: 0px 0px 15px 0px;
  }
}
footer .bottom-footer .footer-row .subscribe-blk .formgroup {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 430px;
}
footer .bottom-footer .footer-row .subscribe-blk .formgroup .form-control {
  max-width: 330px;
  float: left;
  height: 37px;
}
footer .bottom-footer .footer-row .subscribe-blk .formgroup .btn {
  position: absolute;
  right: 0;
  border-radius: 0px 10px 10px 0px;
  background-color: #F05813;
  border-color: #F05813;
  font-size: 16px;
  padding: 5px 20px 4px;
}
footer .bottom-footer .footer-row .copyrights {
  width: 100%;
  text-align: right;
  color: #ADADAD;
}
@media screen and (max-width: 767px) {
  footer .bottom-footer .footer-row .copyrights {
    width: 100%;
    text-align: left;
    margin-top: 30px;
  }
}

#testimonials {
  width: 100%;
  float: left;
  position: relative;
  padding: 50px 0px 0px;
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: top center;
}
#testimonials img {
  max-width: 100%;
}
#testimonials h2 {
  text-align: center;
}
#testimonials .title-blk {
  text-align: left;
}
#testimonials .testimonials-blk {
  width: 100%;
  max-width: 1250px;
  display: inline-block;
  padding: 50px 0px 50px 10px;
  overflow: hidden;
}
#testimonials .testimonials-blk .owl-stage-outer {
  overflow: visible;
}
#testimonials .testimonials-blk .owl-nav {
  display: none;
}
#testimonials .testimonials-blk .owl-dots {
  text-align: center;
  margin-top: 30px;
}
#testimonials .testimonials-blk .owl-dots .owl-dot {
  width: 9px;
  height: 9px;
  background: #96958E;
  border-radius: 50%;
  opacity: 1;
  margin: 0px 3px;
}
#testimonials .testimonials-blk .owl-dots .owl-dot.active {
  background: #1976D2;
  opacity: 1;
}
#testimonials .testimonials-blk .testimonials-item {
  width: 97%;
  padding: 40px;
  margin-right: 30px;
  display: inline-block;
  background-color: #FFFFFF;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -moz-box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.1);
  z-index: 99;
  position: relative;
}
@media screen and (min-width: 767px) {
  #testimonials .testimonials-blk .testimonials-item {
    padding: 40px;
    margin: 0 auto;
    display: block;
  }
}
#testimonials .testimonials-blk .testimonials-item .quotation {
  position: absolute;
  top: -20px;
  right: 10px;
}
#testimonials .testimonials-blk .testimonials-item .content {
  width: 100%;
  display: inline-block;
  margin-bottom: 20px;
}
#testimonials .testimonials-blk .testimonials-item .content p {
  font-size: 16px;
  font-weight: 500;
}
#testimonials .testimonials-blk .testimonials-item .testimonial-profile {
  width: 100%;
  height: 6rem;
  display: flex;
  align-items: center;
  border-top: 1px solid #cccccc;
  padding-top: 10px;
}
#testimonials .testimonials-blk .testimonials-item .testimonial-profile .profile-img {
  width: 70px;
  margin-right: 20px;
}
#testimonials .testimonials-blk .testimonials-item .testimonial-profile .profile-info {
  width: 40%;
}
#testimonials .testimonials-blk .testimonials-item .testimonial-profile .profile-info h6 {
  margin-bottom: 0;
  color: #666666;
  font-weight: 500;
}
#testimonials .testimonials-blk .testimonials-item .testimonial-profile .profile-info p {
  font-size: 16px;
  color: #999999;
  margin-bottom: 0;
}
#testimonials .testimonials-blk .testimonials-item .testimonial-profile .client-logo {
  width: 40%;
  text-align: right;
}
#testimonials .testimonials-blk .testimonials-item .testimonial-profile .client-logo img {
  width: auto;
  float: right;
}

#breadcrumbs {
  padding-top: 20px;
  padding-bottom: 20px;
}
#breadcrumbs ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#breadcrumbs ul li {
  display: inline-block;
  margin: 0px 5px;
}
#breadcrumbs ul li a {
  color: #4874AA;
  text-decoration: underline;
}
#breadcrumbs ul li:first-child {
  margin-left: 0;
}

#expandTab .nav-tabs {
  border-bottom: 1px solid #E2E2E2;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #expandTab .nav-tabs {
    flex-wrap: nowrap;
  }
}
#expandTab .nav-tabs .nav-item {
  padding: 0px 25px;
}
@media screen and (max-width: 1023px) {
  #expandTab .nav-tabs .nav-item {
    padding: 0px 8px;
  }
}
@media screen and (max-width: 767px) {
  #expandTab .nav-tabs .nav-item {
    padding: 0;
  }
}
#expandTab .nav-tabs .nav-item .nav-link {
  border: 0;
  border-bottom: 4px solid transparent;
  border-radius: 0;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}
@media screen and (max-width: 767px) {
  #expandTab .nav-tabs .nav-item .nav-link {
    font-size: 14px;
    padding: 0px 8px 8px;
  }
}
#expandTab .nav-tabs .nav-item .nav-link.active {
  border: 0;
  border-bottom: 4px solid #4874AA;
}
#expandTab .tab-container {
  width: 100%;
  display: inline-block;
  margin-top: 60px;
}
#expandTab .tab-container .cont-col .icon-blk {
  width: 100%;
  display: inline-block;
  text-align: center;
  margin-bottom: 20px;
}
#expandTab .tab-container .cont-col .cnt-blk {
  width: 100%;
  display: inline-block;
  text-align: center;
}
#expandTab .tab-container .cont-col .cnt-blk h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 0px 0px 20px;
  line-height: 22px;
}
#expandTab .tab-container .cont-col .cnt-blk p {
  font-weight: 500;
}

/*
 *  Owl Carousel - Core
 */
.owl-carousel,
.testimonials-carousel,
.client-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage,
.testimonials-carousel .owl-stage,
.client-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after,
.testimonials-carousel .owl-stage:after,
.client-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer,
.testimonials-carousel .owl-stage-outer,
.client-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item,
.testimonials-carousel .owl-wrapper,
.testimonials-carousel .owl-item,
.client-carousel .owl-wrapper,
.client-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item,
.testimonials-carousel .owl-item,
.client-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img,
.testimonials-carousel .owl-item img,
.client-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled,
.testimonials-carousel .owl-nav.disabled,
.testimonials-carousel .owl-dots.disabled,
.client-carousel .owl-nav.disabled,
.client-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot,
.testimonials-carousel .owl-nav .owl-prev,
.testimonials-carousel .owl-nav .owl-next,
.testimonials-carousel .owl-dot,
.client-carousel .owl-nav .owl-prev,
.client-carousel .owl-nav .owl-next,
.client-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot,
.testimonials-carousel .owl-nav button.owl-prev,
.testimonials-carousel .owl-nav button.owl-next,
.testimonials-carousel button.owl-dot,
.client-carousel .owl-nav button.owl-prev,
.client-carousel .owl-nav button.owl-next,
.client-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded,
.testimonials-carousel.owl-loaded,
.client-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading,
.testimonials-carousel.owl-loading,
.client-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden,
.testimonials-carousel.owl-hidden,
.client-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item,
.testimonials-carousel.owl-refresh .owl-item,
.client-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item,
.testimonials-carousel.owl-drag .owl-item,
.client-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab,
.testimonials-carousel.owl-grab,
.client-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl,
.testimonials-carousel.owl-rtl,
.client-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item,
.testimonials-carousel.owl-rtl .owl-item,
.client-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

#cogniwide-home .top-container {
  background-color: #2a76bf;
  background-image: url("../assets/images/banner-bg.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: top center;
}
#cogniwide-home .title-top-img {
  width: 100%;
  float: left;
  text-align: center;
  margin-bottom: 30px;
}
#cogniwide-home .digital-container .title-top-img,
#cogniwide-home .why-container .title-top-img {
  text-align: left;
}
@media screen and (max-width: 1023px) {
  #cogniwide-home .shape1, #cogniwide-home .shape2, #cogniwide-home .shape3, #cogniwide-home .shape4, #cogniwide-home .shape5, #cogniwide-home .shape6, #cogniwide-home .shape7 {
    display: none;
  }
}
#cogniwide-home .banner {
  width: 100%;
  display: inline-block;
  margin: 20px 0px;
}
#cogniwide-home .banner .banner-cnt {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #cogniwide-home .banner .banner-cnt {
    display: inline-block;
  }
}
#cogniwide-home .banner .banner-cnt .left-cnt {
  width: 60%;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  #cogniwide-home .banner .banner-cnt .left-cnt {
    width: 100%;
    padding: 0;
    text-align: center;
  }
}
#cogniwide-home .banner .banner-cnt .left-cnt h1,
#cogniwide-home .banner .banner-cnt .left-cnt h4,
#cogniwide-home .banner .banner-cnt .left-cnt p {
  color: #FFFFFF;
  margin-bottom: 15px;
}
#cogniwide-home .banner .banner-cnt .left-cnt .btn {
  padding: 11px 39px;
  font-size: 16px;
}
#cogniwide-home .banner .owl-carousel .owl-nav {
  position: absolute;
  top: 35%;
  width: 100%;
}
#cogniwide-home .banner .owl-carousel .owl-nav .owl-prev {
  left: -60px;
  position: absolute;
}
#cogniwide-home .banner .owl-carousel .owl-nav .owl-prev span {
  width: 46px;
  height: 46px;
  text-indent: -1000px;
  background: url("../assets/images/perv-arrow.png") 0 0 no-repeat;
  float: left;
  opacity: 0.5;
}
#cogniwide-home .banner .owl-carousel .owl-nav .owl-prev span:hover {
  opacity: 1;
}
#cogniwide-home .banner .owl-carousel .owl-nav .owl-next {
  float: right;
  position: absolute;
  right: -50px;
}
#cogniwide-home .banner .owl-carousel .owl-nav .owl-next span {
  width: 46px;
  height: 46px;
  text-indent: -1000px;
  background: url("../assets/images/next-arrow.png") 0 0 no-repeat;
  float: left;
  opacity: 0.5;
}
#cogniwide-home .banner .owl-carousel .owl-nav .owl-next span:hover {
  opacity: 1;
}
@media screen and (max-width: 1023px) {
  #cogniwide-home .banner .owl-carousel .owl-nav {
    display: none;
  }
}
#cogniwide-home .banner .owl-carousel .owl-dots {
  text-align: center;
}
#cogniwide-home .banner .owl-carousel .owl-dots .owl-dot {
  width: 9px;
  height: 9px;
  background: #FFF;
  border-radius: 50%;
  opacity: 0.5;
  margin: 0px 3px;
}
#cogniwide-home .banner .owl-carousel .owl-dots .owl-dot.active {
  opacity: 1;
}
#cogniwide-home .home-product {
  width: 100%;
  float: left;
  position: relative;
  margin: 50px 0px;
}
#cogniwide-home .home-product .shape1 {
  width: 184px;
  height: 184px;
  background: url("../assets/images/shape1.svg") 0 0 no-repeat;
  position: absolute;
  top: 50px;
  left: -90px;
}
#cogniwide-home .home-product .shape2 {
  width: 111px;
  height: 111px;
  background: url("../assets/images/shape3.svg") 0 0 no-repeat;
  position: absolute;
  top: 20px;
  right: -50px;
}
#cogniwide-home .home-product .shape4 {
  width: 94px;
  height: 188px;
  background: url("../assets/images/shape4.svg") 0 0 no-repeat;
  position: absolute;
  top: 20%;
  right: 0px;
}
#cogniwide-home .home-product .shape5 {
  width: 186px;
  height: 186px;
  background: url("../assets/images/shape1.svg") 0 0 no-repeat;
  position: absolute;
  bottom: 40px;
  right: 20px;
}
#cogniwide-home .home-product .product-container {
  position: relative;
}
#cogniwide-home .home-product .title-blk {
  text-align: center;
}
#cogniwide-home .home-product img {
  max-width: 100%;
}
#cogniwide-home .home-product .product-blk {
  width: 100%;
  margin-bottom: 20px;
  display: inline-block;
  background-color: #FFFFFF;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -moz-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
  z-index: 99;
}
#cogniwide-home .home-product .product-blk .img-blk img {
  width: 100%;
}
#cogniwide-home .home-product .product-blk .content {
  width: 100%;
  display: inline-block;
  padding: 20px 30px 25px;
}
#cogniwide-home .home-product .product-blk .content h3 {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
#cogniwide-home .home-product .product-blk .content p {
  padding: 0;
  margin: 0;
}
#cogniwide-home .home-service {
  width: 100%;
  float: left;
  position: relative;
  padding: 50px 0px;
  background-color: #8FECDD;
  background-image: url("../assets/images/service-bg.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: top center;
  overflow: hidden;
}
#cogniwide-home .home-service .shape7 {
  width: 176px;
  height: 303px;
  background: url("../assets/images/shape7.svg") 0 0 no-repeat;
  position: absolute;
  top: 50px;
  left: -90px;
}
#cogniwide-home .home-service .title-blk {
  text-align: center;
}
#cogniwide-home .home-service img {
  max-width: 100%;
}
#cogniwide-home .home-service .service-blk {
  width: 100%;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
}
#cogniwide-home .home-service .service-blk .img-blk {
  width: 100%;
  display: inline-block;
  margin-bottom: 30px;
}
#cogniwide-home .home-service .service-blk .content {
  width: 80%;
  display: inline-block;
  background: #FFFFFF;
  position: absolute;
  left: 10%;
  bottom: 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -moz-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
  padding: 20px 25px;
}
#cogniwide-home .home-service .service-blk .content:hover a:hover::after {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px);
}
#cogniwide-home .home-service .service-blk .content h3,
#cogniwide-home .home-service .service-blk .content h4 {
  margin: 0;
}
#cogniwide-home .home-service .service-blk .content h3 a,
#cogniwide-home .home-service .service-blk .content h4 a {
  color: #000000;
}
#cogniwide-home .home-service .service-blk .content h4 a {
  position: relative;
  display: block;
  -webkit-transition: transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out;
  -ms-transition: transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
#cogniwide-home .home-service .service-blk .content h4 a::after {
  content: "";
  width: 21px;
  height: 14px;
  background: url("../assets/images/service-arrow.png") 0 0 no-repeat;
  position: absolute;
  right: 12px;
}
#cogniwide-home .home-digital {
  width: 100%;
  float: left;
  position: relative;
  margin: 50px 0px;
}
#cogniwide-home .home-digital .shape1 {
  width: 94px;
  height: 188px;
  background: url("../assets/images/shape5.svg") 0 0 no-repeat;
  position: absolute;
  top: 0px;
  left: 0px;
}
#cogniwide-home .home-digital .shape2 {
  width: 184px;
  height: 184px;
  background: url("../assets/images/shape1.svg") 0 0 no-repeat;
  position: absolute;
  bottom: 20%;
  left: 20px;
}
#cogniwide-home .home-digital .shape3 {
  width: 111px;
  height: 111px;
  background: url("../assets/images/shape3.svg") 0 0 no-repeat;
  position: absolute;
  bottom: -20px;
  left: 40px;
}
#cogniwide-home .home-digital .shape4 {
  width: 94px;
  height: 188px;
  background: url("../assets/images/shape4.svg") 0 0 no-repeat;
  position: absolute;
  top: 30%;
  right: 0;
}
#cogniwide-home .home-digital .shape5 {
  width: 186px;
  height: 186px;
  background: url("../assets/images/shape1.svg") 0 0 no-repeat;
  position: absolute;
  bottom: 50px;
  right: 20px;
}
#cogniwide-home .home-digital h2 {
  line-height: 43px;
}
#cogniwide-home .home-digital .title-blk {
  text-align: left;
  margin-bottom: 26px;
}
#cogniwide-home .home-digital img {
  max-width: 100%;
}
#cogniwide-home .home-digital .digital-block {
  width: 100%;
  display: inline-block;
  margin-bottom: 35px;
  position: relative;
  border-radius: 10px;
}
@media screen and (min-width: 767px) and (max-device-width: 1023px) {
  #cogniwide-home .home-digital .digital-block {
    width: 46%;
    margin-right: 25px;
    height: inherit !important;
    float: left;
    padding-bottom: 25px;
  }
}
#cogniwide-home .home-digital .digital-block .content {
  width: 100%;
  top: 0;
  left: 0;
  padding: 40px 30px 20px 40px;
}
@media screen and (max-width: 767px) {
  #cogniwide-home .home-digital .digital-block .content {
    padding-bottom: 50px;
  }
}
#cogniwide-home .home-digital .digital-block .content .img {
  width: 100%;
  display: inline-block;
  margin-bottom: 15px;
}
#cogniwide-home .home-digital .digital-block .content h3 {
  color: #333333;
  font-weight: 700;
  line-height: 22px;
  font-size: 18px;
  margin-top: 10px;
}
#cogniwide-home .home-digital .digital-block .content h3 a {
  color: #000000;
  text-decoration: none;
}
#cogniwide-home .home-digital .digital-block .content p {
  color: #666666;
}
#cogniwide-home .home-digital .digital-block .arrow-block {
  position: absolute;
  bottom: 20px;
  left: 40px;
  -webkit-transition: transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out;
  -ms-transition: transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
#cogniwide-home .home-digital .digital-block:hover .arrow-block {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px);
}
#cogniwide-home .home-digital .digital-block.bg-1 {
  background-color: #FFE1E0;
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-digital .digital-block.bg-1 {
    height: 270px;
  }
}
#cogniwide-home .home-digital .digital-block.bg-2 {
  background-color: #D2F1A2;
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-digital .digital-block.bg-2 {
    height: 270px;
  }
}
#cogniwide-home .home-digital .digital-block.bg-3 {
  background-color: #FDF6B5;
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-digital .digital-block.bg-3 {
    height: 290px;
  }
}
#cogniwide-home .home-digital .digital-block.bg-4 {
  background-color: #D0EDE9;
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-digital .digital-block.bg-4 {
    height: 412px;
  }
}
#cogniwide-home .home-digital .digital-block.bg-5 {
  background-color: #D2FBD4;
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-digital .digital-block.bg-5 {
    height: 414px;
  }
}
#cogniwide-home .home-digital .digital-block.bg-6 {
  background-color: #E4F0E0;
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-digital .digital-block.bg-6 {
    height: 288px;
  }
}
#cogniwide-home .home-why {
  width: 100%;
  float: left;
  position: relative;
  padding: 50px 0px;
  background-color: #F3F3F3;
  background-image: url("../assets/images/why-bg.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: top center;
  margin-bottom: 30px;
}
#cogniwide-home .home-why img {
  max-width: 100%;
}
#cogniwide-home .home-why .row {
  align-items: center;
}
#cogniwide-home .home-why .why-container {
  position: relative;
}
#cogniwide-home .home-why .why-container .shape1 {
  width: 184px;
  height: 184px;
  background: url("../assets/images/shape1.svg") 0 0 no-repeat;
  position: absolute;
  bottom: 30px;
  left: 90px;
}
#cogniwide-home .home-why .why-container h4 {
  font-size: 18px;
}
#cogniwide-home .home-why .why-container ul {
  margin-bottom: 20px;
}
#cogniwide-home .home-why .why-container ul li {
  font-size: 16px;
  color: #666666;
  padding-left: 30px;
  background: url("../assets/images/why-arrow.png") 5px 5px no-repeat;
  line-height: 20px;
  margin-bottom: 8px;
}
#cogniwide-home .home-value {
  width: 100%;
  float: left;
  position: relative;
  padding: 100px 0px 50px;
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: top center;
}
#cogniwide-home .home-value .shape1 {
  width: 94px;
  height: 188px;
  background: url("../assets/images/shape5.svg") 0 0 no-repeat;
  position: absolute;
  top: 0px;
  left: 0px;
}
#cogniwide-home .home-value .shape2 {
  width: 184px;
  height: 184px;
  background: url("../assets/images/shape1.svg") 0 0 no-repeat;
  position: absolute;
  bottom: 30%;
  left: 20px;
}
#cogniwide-home .home-value .shape3 {
  width: 111px;
  height: 111px;
  background: url("../assets/images/shape3.svg") 0 0 no-repeat;
  position: absolute;
  top: 50px;
  left: 15%;
}
#cogniwide-home .home-value .shape5 {
  width: 186px;
  height: 186px;
  background: url("../assets/images/shape1.svg") 0 0 no-repeat;
  position: absolute;
  bottom: 50px;
  right: 20px;
}
@media screen and (max-width: 767px) {
  #cogniwide-home .home-value {
    padding-top: 30px;
  }
}
#cogniwide-home .home-value img {
  max-width: 100%;
}
#cogniwide-home .home-value .value-circle {
  width: 100%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  border: 2px dashed #cccccc;
  margin: 0 auto;
  display: inline-block;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #FFFFFF;
  background: url("../assets/images/robo.svg") center no-repeat;
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-value .value-circle {
    width: 435px;
    height: 435px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  #cogniwide-home .home-value .value-circle {
    padding: 0px;
    border: 0;
  }
}
#cogniwide-home .home-value .value-circle .content {
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-value .value-circle .content {
    width: 370px;
  }
}
#cogniwide-home .home-value .value-circle .content h2 {
  line-height: 38px;
  margin-bottom: 15px;
}
#cogniwide-home .home-value .value-circle h6 {
  margin-bottom: 5px;
}
#cogniwide-home .home-value .value-circle .ico-blk {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-value .value-circle .value-position {
    position: absolute;
  }
}
@media screen and (max-width: 767px) {
  #cogniwide-home .home-value .value-circle .value-position {
    width: 100%;
    text-align: center;
    display: inline-block;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  #cogniwide-home .home-value .value-circle .value-position h6 {
    padding: 20px 0px 20px 0px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #cogniwide-home .home-value .value-circle .value-position .hidden-xs {
    display: none !important;
  }
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-value .value-circle .value-ico1 {
    top: -71px;
  }
}
#cogniwide-home .home-value .value-circle .value-ico1 .ico-blk {
  background: #FDAB00;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-value .value-circle .value-ico2 {
    top: 88px;
    right: -160px;
  }
}
#cogniwide-home .home-value .value-circle .value-ico2 h6 {
  display: inline-block;
  padding-top: 20px;
  padding-left: 10px;
}
#cogniwide-home .home-value .value-circle .value-ico2 .ico-blk {
  background: #4874AA;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-value .value-circle .value-ico2 .ico-blk {
    float: left;
  }
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-value .value-circle .value-ico3 {
    bottom: 40px;
    right: -160px;
  }
}
#cogniwide-home .home-value .value-circle .value-ico3 h6 {
  display: inline-block;
  padding-top: 20px;
  padding-left: 10px;
}
#cogniwide-home .home-value .value-circle .value-ico3 .ico-blk {
  background: #3B9A3D;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-value .value-circle .value-ico3 .ico-blk {
    float: left;
  }
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-value .value-circle .value-ico4 {
    bottom: 40px;
    left: -186px;
    text-align: right;
  }
}
@media screen and (min-width: 767px) and (max-device-width: 1023px) {
  #cogniwide-home .home-value .value-circle .value-ico4 {
    bottom: 18px;
    left: -151px;
  }
}
#cogniwide-home .home-value .value-circle .value-ico4 h6 {
  display: inline-block;
  padding-top: 30px;
  padding-right: 10px;
}
#cogniwide-home .home-value .value-circle .value-ico4 .ico-blk {
  background: #D81F74;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-value .value-circle .value-ico4 .ico-blk {
    float: right;
  }
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-value .value-circle .value-ico5 {
    top: 88px;
    left: -175px;
  }
}
@media screen and (min-width: 767px) and (max-device-width: 1023px) {
  #cogniwide-home .home-value .value-circle .value-ico5 {
    left: -152px;
  }
}
#cogniwide-home .home-value .value-circle .value-ico5 h6 {
  display: inline-block;
  padding-top: 20px;
  padding-right: 10px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  #cogniwide-home .home-value .value-circle .value-ico5 h6 {
    padding: 20px 0px 0px 0px;
    text-align: center;
  }
}
#cogniwide-home .home-value .value-circle .value-ico5 .ico-blk {
  background: #F05813;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-value .value-circle .value-ico5 .ico-blk {
    float: right;
  }
}
#cogniwide-home .home-value .project-count {
  width: 100%;
  display: inline-block;
  margin: 30px 0px 50px;
  background: #FCFBFC;
  text-align: center;
  padding: 10px 0px 30px 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-value .project-count {
    margin: 108px 0px 50px;
  }
}
#cogniwide-home .home-value .project-count .count {
  font-size: 64px;
  font-weight: 600;
}
#cogniwide-home .home-value .project-count .count.orange {
  color: #FDAB00;
}
#cogniwide-home .home-value .project-count .count.green {
  color: #3B9A3D;
}
#cogniwide-home .home-value .project-count .count.blue {
  color: #4874AA;
}
#cogniwide-home .home-value .project-count .count.pink {
  color: #D81F74;
}
#cogniwide-home .home-value .project-count h6 {
  margin: 0;
}
#cogniwide-home .home-partners {
  width: 100%;
  float: left;
  position: relative;
  background-color: #FFFFFF;
  background-image: url("../assets/images/patner-bg.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding: 55px 0px 50px;
  background-blend-mode: darken;
}
#cogniwide-home .home-partners img {
  max-width: 100%;
}
#cogniwide-home .home-partners h1 {
  font-weight: bold;
  line-height: 52px;
  text-align: center;
  color: #FFFFFF;
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-partners h1 {
    color: #FFFFFF;
  }
}
#cogniwide-home .home-partners .title-blk {
  text-align: left;
}
#cogniwide-home .home-partners #cogni-tab .nav-tabs {
  border: 0;
  justify-content: center;
}
#cogniwide-home .home-partners #cogni-tab .nav-tabs .nav-link {
  color: #cccccc;
  font-size: 22px;
  font-weight: 500;
  border-radius: 0;
  margin: 0;
  border: 0;
  position: relative;
}
#cogniwide-home .home-partners #cogni-tab .nav-tabs .nav-link.active {
  border-radius: 0;
  background: transparent;
  color: #333333;
  border: 0;
  color: #FFFFFF;
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-partners #cogni-tab .nav-tabs .nav-link.active {
    color: #FFFFFF;
  }
}
#cogniwide-home .home-partners #cogni-tab .nav-tabs .nav-link.active::after {
  content: "";
  height: 5px;
  background: #1976D2;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
#cogniwide-home .home-partners #cogni-tab .nav-tabs .nav-link:hover {
  border: 0;
}
#cogniwide-home .home-partners #cogni-tab .tab-content {
  margin-top: 50px;
}
#cogniwide-home .home-partners #cogni-tab .tab-content .tab-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
#cogniwide-home .home-partners #cogni-tab .tab-content .tab-container .logo-row {
  width: 100%;
  display: inline-block;
  margin-bottom: 20px;
  align-items: center;
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-partners #cogni-tab .tab-content .tab-container .logo-row {
    display: flex;
  }
}
#cogniwide-home .home-partners #cogni-tab .tab-content .tab-container .logo-row .title {
  width: 100%;
  float: left;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  padding: 10px 10px;
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-partners #cogni-tab .tab-content .tab-container .logo-row .title {
    width: 106px;
    -moz-border-radius: 0 0 10px 10px;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 10px 0 0 10px;
    margin: 0;
  }
}
#cogniwide-home .home-partners #cogni-tab .tab-content .tab-container .logo-row .logo-col {
  width: 48%;
  height: 90px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  border: 1px solid #cccccc;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  margin: 0px 6px 20px 0px;
}
@media screen and (min-width: 767px) {
  #cogniwide-home .home-partners #cogni-tab .tab-content .tab-container .logo-row .logo-col {
    width: 192px;
    margin: 0;
    border: 1px solid #FFFFFF;
    display: flex;
  }
}
#cogniwide-home .home-partners #cogni-tab .tab-content .tab-container .logo-row .separator {
  width: 20px;
  height: 4px;
}
#cogniwide-home .home-partners #cogni-tab .tab-content .tab-container .logo-row.blue-row .title {
  background: #2C97DF;
}
#cogniwide-home .home-partners #cogni-tab .tab-content .tab-container .logo-row.blue-row .separator {
  background: #2C97DF;
}
#cogniwide-home .home-partners #cogni-tab .tab-content .tab-container .logo-row.green-row .title {
  background: #18BC9C;
}
#cogniwide-home .home-partners #cogni-tab .tab-content .tab-container .logo-row.green-row .separator {
  background: #18BC9C;
}
#cogniwide-home .home-partners #cogni-tab .tab-content .tab-container .logo-row.red-row .title {
  background: #E94B3D;
}
#cogniwide-home .home-partners #cogni-tab .tab-content .tab-container .logo-row.red-row .separator {
  background: #E94B3D;
}
#cogniwide-home .home-partners #cogni-tab .tab-content .tab-container .logo-row.yellow-row .title {
  background: #FDAB00;
}
#cogniwide-home .home-partners #cogni-tab .tab-content .tab-container .logo-row.yellow-row .separator {
  background: #FDAB00;
}
#cogniwide-home .home-partners #cogni-tab .tab-content .tab-container .logo-row.purple-row .title {
  background: #800080;
}
#cogniwide-home .home-partners #cogni-tab .tab-content .tab-container .logo-row.purple-row .separator {
  background: #800080;
}
#cogniwide-home .home-client {
  width: 100%;
  float: left;
  position: relative;
  padding: 50px 0px 20px;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  background-color: #FFFFFF;
}
#cogniwide-home .home-client .title-blk {
  text-align: center;
}
#cogniwide-home .home-client .client-blk {
  width: 100%;
  max-width: 1250px;
  display: inline-block;
  padding: 0px 0px 0px 10px;
  overflow: hidden;
}
#cogniwide-home .home-client .client-blk .owl-item {
  text-align: left;
}
#cogniwide-home .home-client .client-blk .client-item {
  display: inline-block;
  padding: 0px 9px;
}
#cogniwide-home .home-client .client-blk .owl-dots {
  display: none;
}
#cogniwide-home .home-client .client-blk .owl-stage-outer {
  padding: 0px 0px;
  width: 90%;
  margin: 0 auto;
}
#cogniwide-home .home-client .client-blk .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
}
#cogniwide-home .home-client .client-blk .owl-nav .owl-prev span {
  width: 28px;
  height: 30px;
  text-indent: -1000px;
  background: url("../assets/images/client-left.png") 0 0 no-repeat;
  float: left;
  opacity: 0.5;
}
#cogniwide-home .home-client .client-blk .owl-nav .owl-prev span:hover {
  opacity: 1;
}
#cogniwide-home .home-client .client-blk .owl-nav .owl-next {
  float: right;
  margin-right: 10px;
}
#cogniwide-home .home-client .client-blk .owl-nav .owl-next span {
  width: 28px;
  height: 30px;
  text-indent: -1000px;
  background: url("../assets/images/client-right.png") 0 0 no-repeat;
  float: left;
  opacity: 0.5;
}
#cogniwide-home .home-client .client-blk .owl-nav .owl-next span:hover {
  opacity: 1;
}

#cogniwide-inner .top-container {
  background-color: #1976D2;
  background-image: url("../assets/images/banner-bg.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}
@media screen and (max-width: 1023px) {
  #cogniwide-inner .shape1, #cogniwide-inner .shape2, #cogniwide-inner .shape3, #cogniwide-inner .shape4, #cogniwide-inner .shape5, #cogniwide-inner .shape6, #cogniwide-inner .shape7 {
    display: none;
  }
}
#cogniwide-inner .inner-title-banner {
  width: 100%;
  display: inline-block;
  margin-top: 56px;
  margin-bottom: 30px;
}
#cogniwide-inner .inner-title-banner h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin: 0px 0px 12px;
}
#cogniwide-inner .inner-title-banner p {
  color: #FFFFFF;
  margin: 0;
}
#cogniwide-inner .title-top-img {
  width: 100%;
  float: left;
  text-align: center;
  margin-bottom: 30px;
}
#cogniwide-inner .title-blk {
  text-align: center;
  margin-bottom: 50px;
}
#cogniwide-inner #products-page img,
#cogniwide-inner #service-page img {
  max-width: 100%;
}
#cogniwide-inner #products-page .banner-section,
#cogniwide-inner #service-page .banner-section {
  width: 100%;
  float: left;
  position: relative;
}
#cogniwide-inner #products-page .banner-section .shape1,
#cogniwide-inner #service-page .banner-section .shape1 {
  width: 184px;
  height: 184px;
  background: url("../assets/images/shape1.svg") 0 0 no-repeat;
  position: absolute;
  bottom: 50px;
  left: -90px;
}
#cogniwide-inner #products-page .banner-section .shape2,
#cogniwide-inner #service-page .banner-section .shape2 {
  width: 111px;
  height: 111px;
  background: url("../assets/images/shape3.svg") 0 0 no-repeat;
  position: absolute;
  bottom: 50px;
  right: -100px;
}
#cogniwide-inner #products-page .banner-section .product-banner,
#cogniwide-inner #service-page .banner-section .product-banner {
  width: 100%;
  display: inline-block;
  margin-bottom: 80px;
  position: relative;
}
@media screen and (min-width: 767px) {
  #cogniwide-inner #products-page .banner-section .product-banner,
#cogniwide-inner #service-page .banner-section .product-banner {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 767px) {
  #cogniwide-inner #products-page .banner-section .product-banner .banner-left,
#cogniwide-inner #service-page .banner-section .product-banner .banner-left {
    padding-right: 0;
    max-width: 591px;
  }
}
@media screen and (max-width: 767px) {
  #cogniwide-inner #products-page .banner-section .product-banner .banner-left,
#cogniwide-inner #service-page .banner-section .product-banner .banner-left {
    width: 100%;
    display: inline-block;
    margin-bottom: 40px;
  }
}
#cogniwide-inner #products-page .banner-section .product-banner .banner-left h1,
#cogniwide-inner #service-page .banner-section .product-banner .banner-left h1 {
  font-size: 40px;
  margin-top: 0;
}
#cogniwide-inner #products-page .banner-section .product-banner .banner-left h1 img,
#cogniwide-inner #service-page .banner-section .product-banner .banner-left h1 img {
  margin-right: 10px;
}
#cogniwide-inner #products-page .banner-section .product-banner .banner-left h1 span,
#cogniwide-inner #service-page .banner-section .product-banner .banner-left h1 span {
  font-weight: 500;
}
#cogniwide-inner #products-page .banner-section .product-banner .banner-left h3,
#cogniwide-inner #service-page .banner-section .product-banner .banner-left h3 {
  font-weight: 400;
  margin-bottom: 10px;
  color: #353848;
}
#cogniwide-inner #products-page .banner-section .product-banner .banner-left h3 span,
#cogniwide-inner #service-page .banner-section .product-banner .banner-left h3 span {
  font-weight: 600;
}
#cogniwide-inner #products-page .banner-section .product-banner .banner-right,
#cogniwide-inner #service-page .banner-section .product-banner .banner-right {
  z-index: 999;
}
#cogniwide-inner #products-page .banner-section .industries-banner,
#cogniwide-inner #service-page .banner-section .industries-banner {
  width: 100%;
  display: inline-block;
  margin-bottom: 50px;
  position: relative;
}
#cogniwide-inner #products-page .banner-section .industries-banner .title-top-img,
#cogniwide-inner #products-page .banner-section .industries-banner .title-blk,
#cogniwide-inner #service-page .banner-section .industries-banner .title-top-img,
#cogniwide-inner #service-page .banner-section .industries-banner .title-blk {
  text-align: left;
}
#cogniwide-inner #products-page .banner-section .industries-banner .title-blk,
#cogniwide-inner #service-page .banner-section .industries-banner .title-blk {
  margin-bottom: 30px;
  text-transform: uppercase;
}
#cogniwide-inner #products-page .banner-section .industries-banner p,
#cogniwide-inner #service-page .banner-section .industries-banner p {
  font-size: 16px;
}
#cogniwide-inner .inner-client {
  width: 100%;
  float: left;
  position: relative;
  padding: 50px 0px 20px;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  background-color: #FFFFFF;
}
#cogniwide-inner .inner-client .title-blk {
  text-align: center;
}
#cogniwide-inner .inner-client .client-blk {
  width: 100%;
  max-width: 1250px;
  display: inline-block;
  padding: 0px 0px 0px 10px;
  overflow: hidden;
}
#cogniwide-inner .inner-client .client-blk .owl-item {
  text-align: left;
}
#cogniwide-inner .inner-client .client-blk .client-item {
  display: inline-block;
}
#cogniwide-inner .inner-client .client-blk .owl-dots {
  display: none;
}
#cogniwide-inner .inner-client .client-blk .owl-stage-outer {
  padding: 0px 0px;
  width: 90%;
  margin: 0 auto;
}
#cogniwide-inner .inner-client .client-blk .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #cogniwide-inner .inner-client .client-blk .owl-nav {
    display: none;
  }
}
#cogniwide-inner .inner-client .client-blk .owl-nav .owl-prev span {
  width: 28px;
  height: 30px;
  text-indent: -1000px;
  background: url("../assets/images/client-left.png") 0 0 no-repeat;
  float: left;
  opacity: 0.5;
}
#cogniwide-inner .inner-client .client-blk .owl-nav .owl-prev span:hover {
  opacity: 1;
}
#cogniwide-inner .inner-client .client-blk .owl-nav .owl-next {
  float: right;
  margin-right: 10px;
}
#cogniwide-inner .inner-client .client-blk .owl-nav .owl-next span {
  width: 28px;
  height: 30px;
  text-indent: -1000px;
  background: url("../assets/images/client-right.png") 0 0 no-repeat;
  float: left;
  opacity: 0.5;
}
#cogniwide-inner .inner-client .client-blk .owl-nav .owl-next span:hover {
  opacity: 1;
}
#cogniwide-inner .features-section {
  width: 100%;
  float: left;
  position: relative;
  padding: 50px 0px;
  background-color: #F3F3F3;
  margin-bottom: 30px;
}
#cogniwide-inner .features-section.bg {
  background-color: #D2F5F0;
}
#cogniwide-inner .features-section .shape1 {
  width: 111px;
  height: 111px;
  background: url("../assets/images/shape3.svg") 0 0 no-repeat;
  position: absolute;
  top: 350px;
  right: 10px;
}
@media screen and (max-width: 1023px) {
  #cogniwide-inner .features-section .feaure-col {
    margin-bottom: 30px;
  }
}
#cogniwide-inner .features-section .feaure-col .feaure-blk {
  background: #FFFFFF;
  border-radius: 10px;
  width: 100%;
  display: inline-block;
}
#cogniwide-inner .features-section .feaure-col .feaure-blk img {
  max-width: 100%;
  border-radius: 10px 10px 0px 0px;
}
@media screen and (max-width: 1023px) {
  #cogniwide-inner .features-section .feaure-col .feaure-blk img {
    width: 100%;
  }
}
#cogniwide-inner .features-section .feaure-col .feaure-blk .cnt-blk {
  width: 100%;
  display: inline-block;
  padding: 22px 35px;
  min-height: 300px;
  overflow: hidden;
}
#cogniwide-inner .features-section .feaure-col .feaure-blk .cnt-blk h5 {
  font-size: 18px;
  font-weight: 400;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 15px;
  margin-bottom: 15px;
  line-height: 26px;
}
#cogniwide-inner .features-section .feaure-col .feaure-blk .cnt-blk h5 span {
  font-weight: 600;
}
#cogniwide-inner .features-section .feaure-col .feaure-blk .cnt-blk p {
  color: #666666;
  margin-bottom: 0;
}
#cogniwide-inner .features-section.industries-page .feaure-blk {
  height: 100%;
  border-radius: 0;
}
#cogniwide-inner .features-section.industries-page .feaure-blk .img-blk {
  padding-top: 40px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  #cogniwide-inner .features-section.industries-page .feaure-blk .img-blk img {
    width: inherit;
  }
}
#cogniwide-inner .features-section.industries-page .feaure-blk h5 {
  border: 0 !important;
  margin-bottom: 0 !important;
  text-align: center;
}
#cogniwide-inner .features-section.industries-page .feaure-blk p {
  text-align: center;
}
#cogniwide-inner .intro-section {
  width: 100%;
  float: left;
  position: relative;
  padding: 50px 0px;
  background-color: #FFFFFF;
  margin-bottom: 30px;
}
#cogniwide-inner .intro-section .shape1 {
  width: 94px;
  height: 188px;
  background: url("../assets/images/shape5.svg") 0 0 no-repeat;
  position: absolute;
  bottom: 50px;
  left: 0px;
}
#cogniwide-inner .intro-section .shape2 {
  width: 184px;
  height: 184px;
  background: url("../assets/images/shape1.svg") 0 0 no-repeat;
  position: absolute;
  top: 10%;
  left: 20px;
}
#cogniwide-inner .intro-section .shape3 {
  width: 111px;
  height: 111px;
  background: url("../assets/images/shape3.svg") 0 0 no-repeat;
  position: absolute;
  bottom: -20px;
  left: 40px;
}
#cogniwide-inner .intro-section .shape4 {
  width: 94px;
  height: 188px;
  background: url("../assets/images/shape4.svg") 0 0 no-repeat;
  position: absolute;
  top: 10%;
  right: 0;
}
#cogniwide-inner .intro-section .shape5 {
  width: 111px;
  height: 111px;
  background: url("../assets/images/shape3.svg") 0 0 no-repeat;
  position: absolute;
  bottom: 50px;
  right: 20px;
}
#cogniwide-inner .intro-section .intro-container .intro-left {
  width: 500px;
  float: left;
}
@media screen and (max-width: 767px) {
  #cogniwide-inner .intro-section .intro-container .intro-left {
    width: 100%;
    margin-bottom: 30px;
  }
}
#cogniwide-inner .intro-section .intro-container .intro-left .title-top-img,
#cogniwide-inner .intro-section .intro-container .intro-left .title-blk {
  text-align: left;
}
#cogniwide-inner .intro-section .intro-container .intro-left h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 52px;
}
#cogniwide-inner .intro-section .intro-container .intro-left h3 span {
  font-size: 42px;
  font-weight: 600;
}
#cogniwide-inner .intro-section .intro-container .intro-left p {
  color: #333333;
}
#cogniwide-inner .intro-section .intro-container .intro-left p.semi {
  font-weight: 600;
}
#cogniwide-inner .intro-section .intro-container .intro-right {
  width: 578px;
  float: right;
  position: relative;
}
@media screen and (max-width: 1023px) {
  #cogniwide-inner .intro-section .intro-container .intro-right {
    width: 100%;
  }
}
#cogniwide-inner .solutions-section {
  width: 100%;
  float: left;
  position: relative;
  padding: 50px 0px;
  background-color: #D2F5F0;
}
#cogniwide-inner .solutions-section .shape1 {
  width: 184px;
  height: 184px;
  background: url("../assets/images/shape1.svg") 0 0 no-repeat;
  position: absolute;
  bottom: 50px;
  left: -90px;
}
#cogniwide-inner .solutions-section .shape2 {
  width: 111px;
  height: 111px;
  background: url("../assets/images/shape3.svg") 0 0 no-repeat;
  position: absolute;
  bottom: 50px;
  right: 10px;
}
#cogniwide-inner .solutions-section .shape3 {
  width: 184px;
  height: 184px;
  background: url("../assets/images/shape1.svg") 0 0 no-repeat;
  position: absolute;
  top: -40px;
  right: 50px;
}
#cogniwide-inner .solutions-section .features-container {
  position: relative;
}
#cogniwide-inner .solutions-section .solution-blk {
  width: 100%;
  display: inline-block;
  margin-bottom: 40px;
  position: relative;
}
#cogniwide-inner .solutions-section .solution-blk h4 {
  color: #0D574D;
  text-align: center;
}
#cogniwide-inner .solutions-section .solution-blk .icon-row {
  display: flex;
  width: 100%;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  #cogniwide-inner .solutions-section .solution-blk .icon-row {
    display: inline-block;
  }
}
#cogniwide-inner .solutions-section .solution-blk .icon-row .icon-blk {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #cogniwide-inner .solutions-section .solution-blk .icon-row .icon-blk {
    width: 50%;
    margin-bottom: 30px;
    float: left;
  }
}
#cogniwide-inner .solutions-section .solution-blk .icon-row .icon-blk h6 {
  font-size: 18px;
  margin-bottom: 0;
}
#cogniwide-inner .virtual-section {
  width: 100%;
  float: left;
  position: relative;
  padding: 50px 0px;
  background-color: #F5FDFC;
}
#cogniwide-inner .virtual-section .title-blk h3 {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
#cogniwide-inner .virtual-section .virtual-row {
  display: flex;
  width: 100%;
  justify-content: space-around;
}
@media screen and (max-width: 1023px) {
  #cogniwide-inner .virtual-section .virtual-row {
    display: inline-block;
  }
}
@media screen and (max-width: 1023px) {
  #cogniwide-inner .virtual-section .virtual-row .virtual-col {
    width: 28%;
    float: left;
    margin: 0px 15px;
  }
}
@media screen and (max-width: 767px) {
  #cogniwide-inner .virtual-section .virtual-row .virtual-col {
    width: 50%;
    float: left;
    min-height: 150px;
    margin: 0;
  }
}
#cogniwide-inner .virtual-section .virtual-row .virtual-col .icon {
  float: left;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  #cogniwide-inner .virtual-section .virtual-row .virtual-col .icon {
    margin-right: 2px;
  }
}
#cogniwide-inner .virtual-section .virtual-row .virtual-col .cnt {
  float: left;
  width: 70%;
}
#cogniwide-inner .virtual-section .virtual-row .virtual-col .cnt h4 {
  font-size: 42px;
  font-weight: 700;
  margin: 0px 0px 15px;
}
#cogniwide-inner .virtual-section .virtual-row .virtual-col .cnt p {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #cogniwide-inner .virtual-section .virtual-row .virtual-col .cnt p {
    font-size: 12px;
    line-height: 18px;
  }
}
#cogniwide-inner .expand-section {
  width: 100%;
  float: left;
  position: relative;
  padding: 50px 0px;
  background-color: #FFFFFF;
}
#cogniwide-inner .expand-section.ind-digital-section {
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 1023px) {
  #cogniwide-inner .expand-section .action-block .row {
    margin-bottom: 30px;
  }
}
#cogniwide-inner .expand-section .action-block .action-col {
  width: 100%;
  margin-bottom: 30px;
  display: inline-block;
  background: #FFFFFF;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -moz-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1023px) {
  #cogniwide-inner .expand-section .action-block .action-col {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  #cogniwide-inner .expand-section .action-block .action-col {
    height: auto;
  }
}
#cogniwide-inner .expand-section .action-block .action-col .img-block {
  position: relative;
}
#cogniwide-inner .expand-section .action-block .action-col .img-block img {
  width: 100%;
}
#cogniwide-inner .expand-section .action-block .action-col .img-block .head-txt {
  width: 100%;
  display: inline-block;
  background: #000000;
  opacity: 0.8;
  position: absolute;
  bottom: 0;
  padding: 10px 30px 10px 20px;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  left: 0;
}
#cogniwide-inner .expand-section .action-block .action-col .cnt-blk {
  width: 100%;
  display: inline-block;
  padding: 30px;
}
#cogniwide-inner .expand-section .action-block .action-col .cnt-blk ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}
#cogniwide-inner .expand-section .action-block .action-col .cnt-blk ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  background: url("../assets/images/arrow-icon.png") 0 0 no-repeat;
  width: 12px;
  height: 12px;
}
#cogniwide-inner .digital-section {
  width: 100%;
  float: left;
  position: relative;
  padding: 50px 0px;
  background-color: #D2FBD4;
}
#cogniwide-inner .bottom-signup-section {
  width: 100%;
  float: left;
  position: relative;
  padding: 50px 0px;
  background-color: #FFFFFF;
  background-image: url("../assets/images/try-us.png");
  background-repeat: no-repeat;
  background-position: bottom center;
}
#cogniwide-inner .bottom-signup-section .signup-blk {
  width: 100%;
  display: inline-block;
  text-align: center;
}
#cogniwide-inner .bottom-signup-section .signup-blk .btn {
  width: 300px;
  font-size: 18px;
  text-transform: uppercase;
  padding: 11px 20px;
}

#products-page.cogni-nass .intro-section .intro-right .title-blk,
#products-page.cogni-nass .intro-section .intro-right .title-top-img {
  text-align: left;
}
#products-page.cogni-nass .intro-section .intro-right h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 52px;
}
#products-page.cogni-nass .intro-section .intro-right h3 span {
  font-size: 42px;
  font-weight: 600;
}
#products-page.cogni-nass .features-container .nass-feature-col {
  background: #FFFFFF;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  text-align: center;
  padding: 30px 45px;
}
@media screen and (max-width: 1023px) {
  #products-page.cogni-nass .features-container .nass-feature-col {
    padding: 25px;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  #products-page.cogni-nass .features-container .nass-feature-col {
    margin-bottom: 30px;
    height: auto;
  }
}
#products-page.cogni-nass .features-container .nass-feature-col h5 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 20px;
  line-height: 26px;
}
#products-page.cogni-nass .features-container .nass-feature-col p {
  font-size: 16px;
  color: #666666;
  line-height: 30px;
}
#products-page.cogni-nass .digital-container .account-section .account-row {
  margin-bottom: 120px;
}
#products-page.cogni-nass .digital-container .account-section .account-row.last {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #products-page.cogni-nass .digital-container .account-section .account-row.last .cont-col {
    margin-top: 30px;
  }
}
#products-page.cogni-nass .digital-container .account-section .account-row .cont-col h5 {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}
#products-page.cogni-nass .digital-container .account-section .account-row .cont-col p {
  font-size: 16px;
  color: #666666;
  line-height: 30px;
}
#products-page.cogni-nass .digital-container .account-section .account-row .txt-right {
  text-align: right;
}
#products-page.cogni-nass #benefitsTab .nav-tabs {
  border: 0px solid #E2E2E2;
  display: inline-block;
}
@media screen and (max-width: 1023px) {
  #products-page.cogni-nass #benefitsTab .nav-tabs {
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  #products-page.cogni-nass #benefitsTab .nav-tabs {
    flex-wrap: nowrap;
    padding-left: 10px;
  }
}
#products-page.cogni-nass #benefitsTab .nav-tabs .nav-item {
  padding: 0px;
  border: 1px #CCCCCC solid;
  margin-bottom: 10px;
}
#products-page.cogni-nass #benefitsTab .nav-tabs .nav-item .nav-link {
  border: 0;
  border-bottom: 0px solid transparent;
  border-radius: 0;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  display: inline-block;
  text-align: center;
  background: transparent;
  padding: 18px 25px;
  width: 100%;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #products-page.cogni-nass #benefitsTab .nav-tabs .nav-item .nav-link {
    font-size: 14px;
    padding: 12px 15px;
  }
}
#products-page.cogni-nass #benefitsTab .nav-tabs .nav-item .nav-link.active {
  border: 0;
  background: #E7E7E7;
}

#inner-page.contact-us .conatct-blk {
  margin-top: 40px;
}
#inner-page.contact-us .conatct-blk .title-top-img {
  text-align: left;
}
#inner-page.contact-us .conatct-blk .title-blk {
  text-align: left;
}
#inner-page.contact-us .conatct-blk .title-blk h5 {
  font-size: 18px;
}
#inner-page.contact-us .conatct-blk h5 {
  font-size: 18px;
}
#inner-page.contact-us .conatct-blk .address-section .mar-bottom {
  margin-bottom: 40px;
}
#inner-page.contact-us .conatct-blk .form-section .formgroup {
  margin-bottom: 40px;
}
#inner-page.contact-us .conatct-blk .form-section .formgroup label {
  font-weight: 500;
  margin: 0;
}
#inner-page.contact-us .conatct-blk .form-section .formgroup label span {
  color: #ff0000;
}
#inner-page.contact-us .conatct-blk .form-section .formgroup .form-control {
  border-width: 0px 0px 1px 0px;
  border-color: #999999;
  border-radius: 0;
  padding: 0;
  outline: 0;
}
#inner-page.contact-us .conatct-blk .form-section .formgroup .form-control:focus {
  outline: 0;
  box-shadow: 0 0 0 0 #FFF;
}
#inner-page.contact-us .conatct-blk .form-section .formgroup .btn-congi-blue {
  padding: 13px 32px 12px;
}
#inner-page.contact-us .contact-map {
  width: 100%;
  margin: 40px 0px;
  display: inline-block;
}

#inner-page.about-us .about-banner {
  margin: 40px 0px;
}
#inner-page.about-us .about-banner .title-top-img {
  text-align: left;
}
#inner-page.about-us .about-banner .title-blk {
  text-align: left;
}
#inner-page.about-us .about-banner .title-blk h5 {
  font-size: 18px;
}
#inner-page.about-us .about-banner img {
  max-width: 100%;
}
#inner-page.about-us .company-values {
  margin-bottom: 50px;
}
#inner-page.about-us .company-values .values-blk {
  width: 100%;
  display: inline-block;
  padding: 56px 30px 36px;
  background: #FAFAFA;
  border: 1px dashed #B9B9B9;
  border-radius: 10px;
  text-align: center;
  height: 100%;
}
@media screen and (max-width: 767px) {
  #inner-page.about-us .company-values .values-blk {
    height: inherit;
    margin-bottom: 30px;
  }
}
#inner-page.about-us #company-team {
  width: 100%;
  float: left;
  position: relative;
  padding: 50px 0px;
  background-color: #D2FBD4;
  background-repeat: no-repeat;
  background-position: top center;
}
#inner-page.about-us #company-team .team-row .team-cnt {
  width: 100%;
  display: inline-block;
  background: #FFFFFF;
  text-align: center;
  padding: 40px 0px;
  margin-bottom: 20px;
}
#inner-page.about-us #company-team .team-row .team-cnt .profile-img {
  padding: 0px 20px;
  margin-bottom: 25px;
  width: 100%;
  display: inline-block;
}
#inner-page.about-us #company-team .team-row .team-cnt .profile-img img {
  background-color: #FFFFFF;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
  border: 6px #FFFFFF solid;
}
#inner-page.about-us #company-team .team-row .team-cnt .profile-cnt {
  padding: 0px 20px;
  margin-bottom: 25px;
  width: 100%;
  display: inline-block;
}
#inner-page.about-us #company-team .team-row .team-cnt .profile-cnt h5 {
  font-size: 18px;
}
#inner-page.about-us #company-team .team-row .team-cnt .profile-cnt h6 {
  font-size: 14px;
  font-weight: 700;
  color: #4874AA;
}
#inner-page.about-us #company-team .team-row .team-cnt .profile-cnt p {
  font-weight: 500;
}
#inner-page.about-us #company-team .team-row .team-cnt .profile-btn {
  width: 100%;
  float: left;
  padding-top: 40px;
}
#inner-page.about-us #company-team .team-row .team-cnt .profile-divider {
  width: 100%;
  float: left;
  background: #D2FBD4;
}
#inner-page.about-us #company-team .team-row .team-cnt .profile-divider .left-img {
  width: 5%;
  float: left;
}
@media screen and (max-width: 767px) {
  #inner-page.about-us #company-team .team-row .team-cnt .profile-divider .left-img {
    width: 3%;
  }
}
#inner-page.about-us #company-team .team-row .team-cnt .profile-divider .right-img {
  width: 5%;
  float: right;
}
@media screen and (max-width: 767px) {
  #inner-page.about-us #company-team .team-row .team-cnt .profile-divider .right-img {
    width: 3%;
  }
}
#inner-page.about-us #company-team .team-row .team-cnt .profile-divider .divider-bg {
  width: 90%;
  background: url("../assets/images/profile-circle-bg.png") 0 0 repeat-x;
  height: 22px;
  float: left;
}
@media screen and (max-width: 767px) {
  #inner-page.about-us #company-team .team-row .team-cnt .profile-divider .divider-bg {
    width: 94%;
  }
}

#blog-page .heading .title-top-img,
#blog-page .heading .title-blk {
  text-align: left;
}
#blog-page .heading .title-top-img h6,
#blog-page .heading .title-blk h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
#blog-page .blog-blk {
  width: 100%;
  display: inline-block;
  margin-bottom: 20px;
}
#blog-page .blog-tag {
  background: #4874AA;
  font-size: 14px;
  color: #FFFFFF;
  padding: 8px 20px;
  font-weight: 600;
  border-radius: 10px 0px 10px 0px;
  float: left;
}
#blog-page .save-btn {
  float: right;
  width: 35px;
  text-align: right;
}
#blog-page .blog-info {
  width: 100%;
  display: inline-block;
}
#blog-page .blog-date {
  float: left;
  font-size: 12px;
  color: #666666;
  font-weight: 500;
  position: relative;
  padding-left: 32px;
  padding-top: 4px;
}
#blog-page .blog-date::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url("../assets/images/calendar-icon.png") 0 0 no-repeat;
  width: 24px;
  height: 24px;
}
#blog-page .blog-comments {
  float: right;
  font-size: 12px;
  color: #666666;
  font-weight: 500;
  position: relative;
  padding-left: 32px;
  padding-top: 0px;
}
#blog-page .blog-comments::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url("../assets/images/comments-ico.png") 0 0 no-repeat;
  width: 24px;
  height: 24px;
}
#blog-page .blog-cnt h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 10px 0px 15px;
  line-height: 32px;
  height: 80px;
}
#blog-page .blog-cnt h2 a {
  color: #000000;
  line-height: 32px;
}
#blog-page .blog-cnt h2 a:hover {
  opacity: 0.8;
}
#blog-page .blog-cnt p {
  color: #666666;
}
#blog-page .blog-cnt .blog-cnt-p {
  height: 80px;
}
#blog-page .user-profile {
  width: 100%;
  display: inline-block;
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #cccccc;
}
#blog-page .user-profile .profile-img {
  width: 16%;
  float: left;
}
#blog-page .user-profile .profile-img img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 767px) {
  #blog-page .user-profile .profile-img {
    width: 22%;
  }
}
#blog-page .user-profile .profile-details {
  float: left;
  width: 84%;
  
}
@media screen and (max-width: 767px) {
  #blog-page .user-profile .profile-details {
    width: 78%;
  }
}
#blog-page .user-profile .profile-details h6 {
  font-size: 14px;
  margin-bottom: 5px;
}
#blog-page .user-profile .profile-details p {
  font-size: 12px;
  color: #666666;
  margin: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
#blog-page .top-blog {
  width: 100%;
  margin-bottom: 30px;
  display: inline-block;
  background: #FFFFFF;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -moz-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
}
#blog-page .top-blog .top-blog-left {
  width: 682px;
  height: 400px;
  float: left;
}
#blog-page .top-blog .top-blog-left img {
  width: 100%;
  height: 100%;
  border-radius: 10px 0px 0px 10px;
}
@media screen and (max-width: 1023px) {
  #blog-page .top-blog .top-blog-left {
    width: 100%;
  }
  #blog-page .top-blog .top-blog-left img {
    border-radius: 10px 10px 0px 0px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #blog-page .top-blog .top-blog-left {
    width: 100%;
  }
  #blog-page .top-blog .top-blog-left img {
    border-radius: 10px 10px 0px 0px;
  }
}
#blog-page .top-blog .top-blog-right {
  width: 436px;
  float: left;
  padding: 20px;
}
@media screen and (max-width: 1023px) {
  #blog-page .top-blog .top-blog-right {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #blog-page .top-blog .top-blog-right {
    width: 100%;
  }
  #blog-page .top-blog .top-blog-right img {
    border-radius: 0;
  }
}
#blog-page .blog-list {
  margin-left: -10px;
  margin-right: -10px;
  width: 100%;
  display: inline-block;
}
@media screen and (max-width: 1023px) {
  #blog-page .blog-list {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  #blog-page .blog-list {
    margin: 0;
  }
}
#blog-page .blog-list li {
  width: 33.33333333%;
  padding: 0px 10px;
  margin-bottom: 35px;
  float: left;
  /* display: none; */
}
@media screen and (max-width: 1023px) {
  #blog-page .blog-list li {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  #blog-page .blog-list li {
    width: 100%;
    padding: 0;
  }
}
#blog-page .blog-list li .blog-container {
  width: 100%;
  display: inline-block;
  background: #FFFFFF;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -moz-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.1);
}
#blog-page .blog-list li .blog-img {
  max-height: 160px;
  overflow: hidden;
}
#blog-page .blog-list li .blog-img img {
  width: 100%;
  border-radius: 10px 10px 0px 0px;
}
#blog-page .blog-list li .blog-cnt {
  padding: 20px;
}
#blog-page .blog-list li .blog-cnt h2 {
  font-size: 18px;
  line-height: 26px;
}
#blog-page .blog-list li .blog-cnt h2 a {
  line-height: 26px;
}
#blog-page .blog-list li .blog-cnt .user-profile .profile-img {
  width: 22%;
}
#blog-page .blog-list li .blog-cnt .user-profile .profile-details {
  width: 78%;
}
#blog-page .blog-btn {
  width: 100%;
  float: left;
  margin-top: 50px;
  text-align: center;
}
#blog-page .blog-btn .js-blog-view {
  padding: 11px 30px;
  font-size: 18px;
  font-weight: 600;
}
#blog-page #testimonials {
  margin-top: 50px;
  border-top: 1px solid #cccccc;
}
#blog-page .blog-banner {
  width: 100%;
  display: inline-block;
  margin-bottom: 40px;
  position: relative;
}
#blog-page .blog-banner img {
  max-width: 100%;
}
#blog-page .blog-banner .title {
  position: absolute;
  bottom: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 30px;
  font-weight: 600;
  padding: 20px 30px;
}
@media screen and (max-width: 767px) {
  #blog-page .blog-banner .title {
    position: relative;
    background: #FFFFFF;
    bottom: inherit;
    padding: 0;
    margin-top: 20px;
  }
}
#blog-page .blog-details .title-blk {
  margin-bottom: 30px;
}
#blog-page .blog-details .blog-info-blk {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #blog-page .blog-details .blog-info-blk {
    display: inline-block;
  }
}
#blog-page .blog-details .user-profile {
  width: auto;
  border-bottom: 0;
  max-width: 360px;
  float: left;
  margin-right: 20px;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  #blog-page .blog-details .user-profile {
    max-width: 350px;
    margin-right: 0px;
    margin-bottom: 20px;
  }
}
#blog-page .blog-details .blog-info {
  width: auto;
  float: left;
}
#blog-page .blog-details .blog-content {
  width: 100%;
  margin-top: 50px;
}
#blog-page .blog-details .blog-content img {
  max-width: 100%;
}
#blog-page .blog-details .blog-content h4 {
  font-size: 24px;
  font-weight: 600;
}
#blog-page .blog-details .blog-content .text-center {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}
#blog-page .blog-details .blog-content a {
  color: #000000;
}
#blog-page .latest-section {
  width: 100%;
  float: left;
  position: relative;
  padding: 50px 0px;
  background-color: #FFFFFF;
  border-bottom: 1px solid #cccccc;
  border-top: 1px solid #cccccc;
  margin: 50px 0px;
}

#service-page.cogni-service .service-top .title-top-img,
#service-page.cogni-service .service-top .title-blk {
  text-align: left;
}
#service-page.cogni-service .features-container .nass-feature-col {
  background: #FFFFFF;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  text-align: center;
  padding: 30px 45px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1023px) {
  #service-page.cogni-service .features-container .nass-feature-col {
    padding: 25px;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  #service-page.cogni-service .features-container .nass-feature-col {
    margin-bottom: 30px;
    height: auto;
  }
}
#service-page.cogni-service .features-container .nass-feature-col h5 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 20px;
  line-height: 26px;
}
#service-page.cogni-service .features-container .nass-feature-col p {
  font-size: 16px;
  color: #666666;
  line-height: 30px;
}
#service-page.cogni-service .digital-container .account-section .account-row {
  margin-bottom: 120px;
}
#service-page.cogni-service .digital-container .account-section .account-row.last {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #service-page.cogni-service .digital-container .account-section .account-row.last .cont-col {
    margin-top: 30px;
  }
}
#service-page.cogni-service .digital-container .account-section .account-row .cont-col h5 {
  font-size: 24px;
  font-weight: 600;
}
#service-page.cogni-service .digital-container .account-section .account-row .cont-col p {
  font-size: 16px;
  color: #666666;
  line-height: 30px;
}
#service-page.cogni-service .digital-container .account-section .account-row .txt-right {
  text-align: right;
}
#service-page.cogni-service #benefitsTab .nav-tabs {
  border: 0px solid #e2e2e2;
  display: inline-block;
}
@media screen and (max-width: 1023px) {
  #service-page.cogni-service #benefitsTab .nav-tabs {
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  #service-page.cogni-service #benefitsTab .nav-tabs {
    flex-wrap: nowrap;
    padding-left: 10px;
  }
}
#service-page.cogni-service #benefitsTab .nav-tabs .nav-item {
  padding: 0px;
  border: 1px #cccccc solid;
  margin-bottom: 10px;
}
#service-page.cogni-service #benefitsTab .nav-tabs .nav-item .nav-link {
  border: 0;
  border-bottom: 0px solid transparent;
  border-radius: 0;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  display: inline-block;
  text-align: center;
  background: transparent;
  padding: 18px 25px;
  width: 100%;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #service-page.cogni-service #benefitsTab .nav-tabs .nav-item .nav-link {
    font-size: 14px;
    padding: 12px 15px;
  }
}
#service-page.cogni-service #benefitsTab .nav-tabs .nav-item .nav-link.active {
  border: 0;
  background: #e7e7e7;
}
#service-page.cogni-service #benefitsTab ul.list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}
#service-page.cogni-service #benefitsTab ul.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  background: url("../assets/images/arrow-icon.png") 0 0 no-repeat;
  width: 12px;
  height: 12px;
}

/*# sourceMappingURL=style.css.map */
.blog-banner .blog-banner-image{
  width: 70%;
}

.carousel {
  position: relative;
  width: 80%;;
  margin: 50px auto;
  overflow: hidden;
  border-radius: 10px;
}

.carousel-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
  /* width: 400%; */
}

.carousel-images img {
  width: 100%;
  flex-shrink: 0;
}

.buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.buttons button {
  background-color: rgba(0,0,0,0.5);
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
}

.buttons button:hover {
  background-color: rgba(0,0,0,0.8);
}