@font-face {
  font-family: 'Proxima Nova Rg';
  src: url('../fonts/ProximaNova-Bold.eot');
  src: url('../fonts/ProximaNova-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/ProximaNova-Bold.woff2') format('woff2'), url('../fonts/ProximaNova-Bold.woff') format('woff'), url('../fonts/ProximaNova-Bold.ttf') format('truetype'), url('../fonts/ProximaNova-Bold.svg#ProximaNova-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova Rg';
  src: url('../fonts/ProximaNova-Regular.eot');
  src: url('../fonts/ProximaNova-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/ProximaNova-Regular.woff2') format('woff2'), url('../fonts/ProximaNova-Regular.woff') format('woff'), url('../fonts/ProximaNova-Regular.ttf') format('truetype'), url('../fonts/ProximaNova-Regular.svg#ProximaNova-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Proxima Nova Rg' !important;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
  color: #000;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Proxima Nova Rg' !important;
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  padding-left: 0;
  list-style: none;
}

a:hover {
  text-decoration: none;
}

/* animation css */

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes slideInleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes slideInleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes zoomReverseIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes zoomReverseIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes flipInY {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes flipInY {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

[data-animation] {
  opacity: 0;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.animations-disabled, .animations-disabled [data-animation] {
  -webkit-animation: none !important;
  animation: none !important;
  opacity: 1 !important;
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

.slideInLeft {
  -webkit-animation-name: slideInleft;
  animation-name: slideInleft;
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.fadeOut {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  animation-direction: reverse;
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.zoomOut {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  animation-direction: reverse;
}

.zoomReverseIn {
  -webkit-animation-name: zoomReverseIn;
  animation-name: zoomReverseIn;
}

.zoomReverseOut {
  -webkit-animation-name: zoomReverseIn;
  animation-name: zoomReverseIn;
  animation-direction: reverse;
}

.flipInY {
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

.flipOutY {
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  animation-direction: reverse;
}

/*header css*/

/*************************
       Header
*************************/

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}

.placeholder {
  color: gray
}

.header {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-shadow: 0 1px 14px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 14px rgba(0, 0, 0, 0.05);
}

.header .container-fluid {
  padding: 0 60px;
}

.header-transparent {
  position: absolute;
  background: transparent;
  width: 100%;
  z-index: 9;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.header-transparent .navbar .navbar-brand {
  padding: 30px 0px;
}

.header-transparent .navbar .navbar-nav .nav-link {
  color: #ffffff;
}

.header-transparent .search .search-btn {
  color: #ffffff;
}

.header.header-transparent.sticky-top {
  background: #022d62;
}

/* topbar */

.header .topbar {
  padding: 15px 0;
  border-bottom: 1px solid rgba(2, 45, 98, 0.1);
}

.header .topbar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  color: #ffffff;
}

.header .topbar ul li {
  padding: 0 12px;
}

.header .topbar ul li:last-child {
  padding-right: 0;
}

.header .topbar a {
  color: #022d62;
  font-size: 13px;
  font-weight: 600;
}

.header .topbar a:hover {
  color: #FF8933;
}

/* navbar */

.navbar {
  padding: 0;
}

.navbar .navbar-nav .nav-link {
  font-weight: 600;
  font-size: 16px;
  padding: 10px 16px 10px;
  margin-right: 15px;
  color: #022d62;
  text-transform: capitalize;
}

.navbar .navbar-nav .nav-link:hover {
  color: #FF8933;
}

.navbar .navbar-nav .nav-item.active a.nav-link {
  color: #FF8933;
}

.navbar .navbar-nav .nav-item:last-child .nav-link {
  margin-right: 0;
}

.dropdown-menu {
  z-index: 9999;
}

.navbar-collapse {
  position: relative;
}

.navbar-light {
  color: #ffffff;
  background-color: #f6f6f6;
  border-color: #eeeeee;
}

.navbar-light .navbar-nav>li>a {
  color: #ffffff;
}

.navbar-light .navbar-nav>.dropdown>a .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}

.navbar-brand {
  padding: 20px 0px;
  margin-right: 0;
}

.navbar-brand img {
  height: 40px;
}

.navbar .navbar-brand {
  color: #ffffff;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 200px;
  flex: 0 0 200px;
}

.header .navbar-nav>li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .navbar-nav li>a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3px 0px;
  color: #022d62;
  text-transform: capitalize;
  font-size: 14px;
}

.header .navbar-nav li>a:hover {
  color: #FF8933;
}

.header .navbar-nav li>a i {
  color: #FF8933;
  margin-left: 10px;
  font-size: 12px;
}

.header li>.dropdown-item:focus, .header li>.dropdown-item:hover {
  color: #FF8933;
  background: none;
}

.header .dropdown-item.active, .header .dropdown-item:active, .header .dropdown-item:focus, .header .dropdown-item:hover {
  background: none;
}

.header .dropdown-toggle::after {
  content: none;
}

.header .navbar-collapse {
  -webkit-box-align: inherit;
  -ms-flex-align: inherit;
  align-items: inherit;
}

.header .megamenu .dropdown-item {
  padding: 0px;
}

.header .navbar .dropdown-menu a.dropdown-item {
  min-width: 200px;
}

.header .navbar .dropdown-menu {
  padding: 15px;
}

.header .navbar .dropdown-menu li a i {
  margin-left: 0;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #FF8933;
}

.navbar .dropdown>.dropdown-menu li>a:hover i {
  opacity: 1;
  margin-left: 10px;
}

.navbar .dropdown>.dropdown-menu li.active>a i {
  opacity: 1;
  margin-left: 10px;
}

.navbar .dropdown>.dropdown-menu li>a {
  font-size: 14px;
  padding: 10px 20px 10px 0;
  border-radius: 3px;
  position: relative;
  margin-bottom: 3px;
}

.navbar .dropdown>.dropdown-menu li>a:hover {
  background: rgba(239, 49, 57, 0.1);
  color: #FF8933;
  padding-left: 15px;
}

.navbar .dropdown>.dropdown-menu li.active>a {
  background: rgba(239, 49, 57, 0.1);
  color: #FF8933;
  padding-left: 15px;
}

.search {
  vertical-align: middle;
  display: table;
  height: 100%;
  float: left;
}

.search .search-btn {
  display: block;
  height: 22px;
  line-height: 22px;
  position: relative;
  text-indent: -9999px;
  width: 14px;
  color: #022d62;
  -webkit-transition: color 300ms ease 0s;
  transition: color 300ms ease 0s;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.search .search-btn:before {
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-weight: 900;
  left: 0;
  position: absolute;
  text-indent: 0;
  top: 0;
}

select option[disabled][selected] {
  color: #ccc;
}

option[disabled][selected] {
  color: #ccc;
}

.search.search-open .search-btn:before {
  content: "\f00d";
}

.search-box {
  display: block;
  margin: 0;
  opacity: 0 !important;
  position: absolute;
  right: 0;
  top: 30px;
  -webkit-transition: visibility 300ms ease 0s, opacity 300ms ease 0s;
  transition: visibility 300ms ease 0s, opacity 300ms ease 0s;
  visibility: hidden;
  width: 327px;
  z-index: 888;
  border-radius: 3px;
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

.search-box.open {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.search.search-open .search-box {
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-box-shadow: 5px 5px 24px 0px rgba(2, 45, 98, 0.1);
  box-shadow: 5px 5px 24px 0px rgba(2, 45, 98, 0.1);
}

.search .search-box button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.search .search-box .form-control {
  height: 58px;
}

.header.sticky-top {
  position: fixed;
  width: 100%;
  background: #ffffff;
  -webkit-box-shadow: 2px 2px 4px 0px rgba(2, 45, 98, 0.1);
  box-shadow: 2px 2px 4px 0px rgba(2, 45, 98, 0.1);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  z-index: 999;
  -webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.header.sticky-top .topbar {
  display: none;
}

.header.sticky-top .navbar-brand {
  padding: 15px 0px;
}

/* Header Style 02 */

.header-style-02 {
  background: #022d62;
}

.header-style-02 .topbar {
  padding: 0;
  border-color: rgba(255, 255, 255, 0.1);
}

.header-style-02.sticky-top .topbar {
  display: block;
}

.header-style-02 .topbar .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-style-02 .topbar .contact-info ul {
  padding: 0;
  margin: 0;
}

.header-style-02 .topbar .contact-info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 40px;
}

.header-style-02 .topbar .contact-info li:last-child {
  border-right: 0;
  font-size: 12px;
}

.header-style-02 .topbar .contact-info li i {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 20px;
}

.header-style-02 .topbar .contact-info li label {
  margin-bottom: 0;
}

.header-style-02 .navbar .navbar-nav .nav-item .nav-link {
  color: #ffffff;
}

.header-style-02 .navbar .navbar-nav .nav-item:first-child .nav-link {
  padding-left: 0;
}

.header-style-02 .search .search-btn {
  color: #ffffff;
}

.header-style-02 .search-box {
  opacity: 1 !important;
  position: inherit;
  visibility: visible;
  -webkit-transform: inherit;
  transform: inherit;
  width: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
}

.header-style-02 .search-box .form-control {
  background: transparent;
  border: transparent;
  color: #ffffff;
  border-radius: 0;
  height: 60px;
  padding: 10px 18px;
}

.header-style-02 .search-box .search-button {
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: transparent;
  border: transparent;
  color: #ffffff;
}

.header-style-02.sticky-top {
  background: #022d62;
}

.header-style-02.sticky-top .topbar .contact-info {
  display: none !important;
}

.header-style-02.sticky-top .navbar {
  position: absolute;
  right: 10px;
  top: -65px;
}

.header-style-02 .search-box .form-control::-webkit-input-placeholder {
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5);
}

.header-style-02 .search-box .form-control::-moz-placeholder {
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5);
}

.header-style-02 .search-box .form-control:-ms-input-placeholder {
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5);
}

.header-style-02 .search-box .form-control::-ms-input-placeholder {
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5);
}

.header-style-02 .search-box .form-control::placeholder {
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5);
}

/* Header Style 03 */

.header-style-03 {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9;
  background: transparent;
}

.header-style-03.sticky-top {
  background: #022d62;
}

.header-style-03 .topbar {
  background: #ffffff;
}

.header-style-03 .navbar .navbar-nav .nav-link {
  color: #ffffff;
}

.header-style-03 .search {
  position: relative;
}

.header-style-03 .search-box {
  right: 0;
  margin-top: 10px;
}

.header-style-03 .search .search-btn {
  color: #ffffff;
}

.header-style-03+.banner {
  margin-top: 60px;
}

/* Header Transparent */

.header-transparent .search {
  position: relative;
}

.header-transparent .search-box {
  right: 0;
  margin-top: 10px;
}

.header-transparent .search .search-btn {
  color: #ffffff;
}

.megamenu {
  padding: 20px 20px;
  width: 100%;
}

.megamenu>div>li>ul {
  padding: 0;
  margin: 0;
}

.megamenu>div>li>ul>li {
  list-style: none;
}

.megamenu .card {
  outline: none;
}

.megamenu .card:hover, .megamenu .card:focus {
  outline: 1px solid #000000;
}

.megamenu>div>li>ul>li>a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.428571429;
  color: #022d62;
  white-space: normal;
}

.megamenu>div>li>ul>li>a:hover, .megamenu>div>li>ul>li>a:focus {
  text-decoration: none;
  color: #022d62;
  background-color: #f6f6f6;
}

.megamenu.disabled>a, .megamenu.disabled>a:hover, .megamenu.disabled>a:focus {
  color: #f6f6f6;
}

.megamenu.disabled>a:hover, .megamenu.disabled>a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  cursor: not-allowed;
}

.megamenu.dropdown-header {
  color: #FF8933;
  font-size: 18px;
}

@media (min-width: 992px) {
  .search .search-btn:before {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.header .form-control {
  background: #ffffff;
  border: 1px solid #ffffff;
}

.form-check {
  padding-left: 15px;
}

.form-check-input {
  margin-left: 0;
}

.form-check-label {
  padding-left: 25px;
}

/* Contact Number */

.contact-number a {
  font-size: 16px;
}

.contact-number i {
  font-size: 20px;
  vertical-align: middle;
}

/* New Arrow */

.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
}

.navbar .navbar-nav .dropdown.nav-item .nav-link:before, .navbar .navbar-nav .dropdown.nav-item .nav-link:after {
  content: "";
  top: 20px;
  position: absolute;
  width: 8px;
  height: 2px;
  background-color: #FF8933;
  display: inline-block;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 3px;
}

.navbar .navbar-nav .dropdown.nav-item .nav-link:after {
  right: -5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navbar .navbar-nav .dropdown.nav-item .nav-link:before {
  right: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar .navbar-nav .dropdown.nav-item:hover .nav-link:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar .navbar-nav .dropdown.nav-item:hover .nav-link:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* inner page */

.content-col {
  margin-top: 120px !important;
}

.white-bg {
  padding: 50px 0 25px;
}

/* Header search */

.center-position {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 8px;
}

.header-search-inner {
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
}

.header-search-inner::before {
  content: "";
  position: absolute;
  top: 7px;
  right: -2px;
  width: 0;
  height: 3px;
  margin-top: -2px;
  background-color: #022d62;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  border-radius: 5px;
}

.header-search-inner::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 2px;
  width: 9px;
  height: 3px;
  margin-top: -2px;
  background-color: #022d62;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  border-radius: 5px;
}

.header-search-icon {
  position: absolute;
  display: block;
  top: 0px;
  left: 0px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border-width: 3px;
  border-style: solid;
  border-color: #022d62;
}

.header-search-inner:hover::before, .header-search-inner:hover::after {
  width: 15px;
}

.header-search-inner:hover::before {
  top: 7px;
  right: 2px;
}

.header-search-inner:hover .header-search-icon {
  width: 0;
  height: 0;
  border-color: transparent;
}

.header-search-inner::before, .header-search-inner::after, .header-search-inner .header-search-icon {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-inner {
  z-index: 99;
}

.header-inner .header-inner-nav.page-menu-top {
  position: fixed;
  width: 100%;
  background: #022d62;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  top: 70px;
  -webkit-animation: stickySlideDown 0.85s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: stickySlideDown 0.85s cubic-bezier(0.23, 1, 0.32, 1) both;
  padding: 5px 0;
}

.header-inner .header-inner-nav.page-menu-top .nav li a {
  color: #ffffff;
  padding: 10px 40px;
}

/*************************
       Header
*************************/

.header {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-shadow: 0 1px 14px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 14px rgba(0, 0, 0, 0.05);
}

.header .container-fluid {
  padding: 0 60px;
}

.header-transparent {
  position: absolute;
  background: transparent;
  width: 100%;
  z-index: 9;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.header-transparent .navbar .navbar-brand {
  padding: 30px 0px;
}

.header-transparent .navbar .navbar-nav .nav-link {
  color: #ffffff;
}

.header-transparent .search .search-btn {
  color: #ffffff;
}

.header.header-transparent.sticky-top {
  background: #022d62;
}

/* topbar */

.header .topbar {
  padding: 15px 0;
  border-bottom: 1px solid rgba(2, 45, 98, 0.1);
}

.header .topbar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  color: #ffffff;
}

.header .topbar ul li {
  padding: 0 12px;
}

.header .topbar ul li:last-child {
  padding-right: 0;
}

.header .topbar a {
  color: #022d62;
  font-size: 13px;
  font-weight: 600;
}

.header .topbar a:hover {
  color: #FF8933;
}

/* navbar */

.navbar {
  padding: 20px 0;
}

.navbar .navbar-nav .nav-link {
  font-weight: bold;
  font-size: 18px;
  padding: 10px 8px 10px;
  margin-right: 5px;
  color: #fff;
  text-transform: capitalize;
}

.navbar .navbar-nav .nav-link:hover {
  color: #FF8933;
}

.navbar .navbar-nav .nav-item.active a.nav-link {
  color: #FF8933;
}

.navbar .navbar-nav .nav-item:last-child .nav-link {
  margin-right: 0;
}

.dropdown-menu {
  z-index: 9999;
}

.navbar-collapse {
  position: relative;
}

.navbar-light {
  color: #ffffff;
  background-color: #f6f6f6;
  border-color: #eeeeee;
}

.navbar-light .navbar-nav>li>a {
  color: #ffffff;
}

.navbar-light .navbar-nav>.dropdown>a .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}

.navbar-brand {
  padding: 20px 0px;
  margin-right: 0;
}

.navbar-brand img {
  height: 28px;
  margin-bottom: 6px;
}

.navbar .navbar-brand {
  color: #ffffff;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 185px;
  flex: 0 0 185px;
}

.header .navbar-nav>li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .navbar-nav li>a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3px 0px;
  color: #022d62;
  text-transform: capitalize;
  font-size: 14px;
  transition: all 0.6s;
}

.header .navbar-nav li>a:hover {
  color: #FF8933;
}

.header .navbar-nav li>a i {
  color: #FF8933;
  margin-left: 10px;
  font-size: 12px;
}

.header li>.dropdown-item:focus, .header li>.dropdown-item:hover {
  color: #FF8933;
  background: none;
}

.header .dropdown-item.active, .header .dropdown-item:active, .header .dropdown-item:focus, .header .dropdown-item:hover {
  background: none;
}

.header .dropdown-toggle::after {
  content: none;
}

.header .navbar-collapse {
  -webkit-box-align: inherit;
  -ms-flex-align: inherit;
  align-items: inherit;
}

.header .megamenu .dropdown-item {
  padding: 0px;
}

.header .navbar .dropdown-menu a.dropdown-item {
  min-width: 200px;
}

.header .navbar .dropdown-menu {
  padding: 15px;
}

.header .navbar .dropdown-menu li a i {
  margin-left: 0;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #FF8933;
}

.navbar .dropdown>.dropdown-menu li>a:hover i {
  opacity: 1;
  margin-left: 10px;
}

.navbar .dropdown>.dropdown-menu li.active>a i {
  opacity: 1;
  margin-left: 10px;
}

.navbar .dropdown>.dropdown-menu li>a {
  font-size: 14px;
  padding: 10px 20px 10px 0;
  border-radius: 3px;
  position: relative;
  margin-bottom: 3px;
}

.navbar .dropdown>.dropdown-menu li>a:hover {
  background: rgba(239, 49, 57, 0.1);
  color: #FF8933;
  padding-left: 15px;
}

.navbar .dropdown>.dropdown-menu li.active>a {
  background: rgba(239, 49, 57, 0.1);
  color: #FF8933;
  padding-left: 15px;
}

.search {
  vertical-align: middle;
  display: table;
  height: 100%;
  float: left;
}

.search .search-btn {
  display: block;
  height: 22px;
  line-height: 22px;
  position: relative;
  text-indent: -9999px;
  width: 14px;
  color: #022d62;
  -webkit-transition: color 300ms ease 0s;
  transition: color 300ms ease 0s;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.search .search-btn:before {
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-weight: 900;
  left: 0;
  position: absolute;
  text-indent: 0;
  top: 0;
}

.search.search-open .search-btn:before {
  content: "\f00d";
}

.search-box {
  display: block;
  margin: 0;
  opacity: 0 !important;
  position: absolute;
  right: 0;
  top: 30px;
  -webkit-transition: visibility 300ms ease 0s, opacity 300ms ease 0s;
  transition: visibility 300ms ease 0s, opacity 300ms ease 0s;
  visibility: hidden;
  width: 327px;
  z-index: 888;
  border-radius: 3px;
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

.search-box.open {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.search.search-open .search-box {
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-box-shadow: 5px 5px 24px 0px rgba(2, 45, 98, 0.1);
  box-shadow: 5px 5px 24px 0px rgba(2, 45, 98, 0.1);
}

.search .search-box button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.search .search-box .form-control {
  height: 58px;
}

.header.sticky-top {
  position: fixed;
  width: 100%;
  background: #ffffff;
  -webkit-box-shadow: 2px 2px 4px 0px rgba(2, 45, 98, 0.1);
  box-shadow: 2px 2px 4px 0px rgba(2, 45, 98, 0.1);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  z-index: 999;
  -webkit-animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.header.sticky-top .topbar {
  display: none;
}

.header.sticky-top .navbar-brand {
  padding: 15px 0px;
}

/* Header Style 02 */

.header-style-02 {
  background: #022d62;
}

.header-style-02 .topbar {
  padding: 0;
  border-color: rgba(255, 255, 255, 0.1);
}

.header-style-02.sticky-top .topbar {
  display: block;
}

.header-style-02 .topbar .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-style-02 .topbar .contact-info ul {
  padding: 0;
  margin: 0;
}

.header-style-02 .topbar .contact-info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 40px;
}

.header-style-02 .topbar .contact-info li:last-child {
  border-right: 0;
  font-size: 12px;
}

.header-style-02 .topbar .contact-info li i {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 20px;
}

.header-style-02 .topbar .contact-info li label {
  margin-bottom: 0;
}

.header-style-02 .navbar .navbar-nav .nav-item .nav-link {
  color: #ffffff;
}

.header-style-02 .navbar .navbar-nav .nav-item:first-child .nav-link {
  padding-left: 0;
}

.header-style-02 .search .search-btn {
  color: #ffffff;
}

.header-style-02 .search-box {
  opacity: 1 !important;
  position: inherit;
  visibility: visible;
  -webkit-transform: inherit;
  transform: inherit;
  width: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
}

.header-style-02 .search-box .form-control {
  background: transparent;
  border: transparent;
  color: #ffffff;
  border-radius: 0;
  height: 60px;
  padding: 10px 18px;
}

.header-style-02 .search-box .search-button {
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: transparent;
  border: transparent;
  color: #ffffff;
}

.header-style-02.sticky-top {
  background: #022d62;
}

.header-style-02.sticky-top .topbar .contact-info {
  display: none !important;
}

.header-style-02.sticky-top .navbar {
  position: absolute;
  right: 10px;
  top: -65px;
}

.header-style-02 .search-box .form-control::-webkit-input-placeholder {
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5);
}

.header-style-02 .search-box .form-control::-moz-placeholder {
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5);
}

.header-style-02 .search-box .form-control:-ms-input-placeholder {
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5);
}

.header-style-02 .search-box .form-control::-ms-input-placeholder {
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5);
}

.header-style-02 .search-box .form-control::placeholder {
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5);
}

/* Header Style 03 */

.header-style-03 {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9;
  background: transparent;
}

.header-style-03.sticky-top {
  background: #022d62;
}

.header-style-03 .topbar {
  background: #ffffff;
}

.header-style-03 .navbar .navbar-nav .nav-link {
  color: #ffffff;
}

.header-style-03 .search {
  position: relative;
}

.header-style-03 .search-box {
  right: 0;
  margin-top: 10px;
}

.header-style-03 .search .search-btn {
  color: #ffffff;
}

.header-style-03+.banner {
  margin-top: 60px;
}

/* Header Transparent */

.header-transparent .search {
  position: relative;
}

.header-transparent .search-box {
  right: 0;
  margin-top: 10px;
}

.header-transparent .search .search-btn {
  color: #ffffff;
}

.megamenu {
  padding: 20px 20px;
  width: 100%;
}

.megamenu>div>li>ul {
  padding: 0;
  margin: 0;
}

.megamenu>div>li>ul>li {
  list-style: none;
}

.megamenu .card {
  outline: none;
}

.megamenu .card:hover, .megamenu .card:focus {
  outline: 1px solid #000000;
}

.megamenu>div>li>ul>li>a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.428571429;
  color: #022d62;
  white-space: normal;
}

.megamenu>div>li>ul>li>a:hover, .megamenu>div>li>ul>li>a:focus {
  text-decoration: none;
  color: #022d62;
  background-color: #f6f6f6;
}

.megamenu.disabled>a, .megamenu.disabled>a:hover, .megamenu.disabled>a:focus {
  color: #f6f6f6;
}

.megamenu.disabled>a:hover, .megamenu.disabled>a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  cursor: not-allowed;
}

.megamenu.dropdown-header {
  color: #FF8933;
  font-size: 18px;
}

@media (min-width: 992px) {
  .search .search-btn:before {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.header .form-control {
  background: #ffffff;
  border: 1px solid #ffffff;
}

.form-check {
  padding-left: 15px;
}

.form-check-input {
  margin-left: 0;
}

.form-check-label {
  padding-left: 25px;
}

/* Contact Number */

.contact-number a {
  font-size: 16px;
}

.contact-number i {
  font-size: 20px;
  vertical-align: middle;
}

/* New Arrow */

.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
}

.navbar .navbar-nav .dropdown.nav-item .nav-link:before, .navbar .navbar-nav .dropdown.nav-item .nav-link:after {
  content: "";
  top: 20px;
  position: absolute;
  width: 8px;
  height: 2px;
  background-color: #FF8933;
  display: inline-block;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 3px;
  display: none;
}

.navbar .navbar-nav .dropdown.nav-item .nav-link:after {
  right: -5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navbar .navbar-nav .dropdown.nav-item .nav-link:before {
  right: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar .navbar-nav .dropdown.nav-item:hover .nav-link:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar .navbar-nav .dropdown.nav-item:hover .nav-link:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Header search */

.center-position {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 8px;
}

.header-search-inner {
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
}

.header-search-inner::before {
  content: "";
  position: absolute;
  top: 7px;
  right: -2px;
  width: 0;
  height: 3px;
  margin-top: -2px;
  background-color: #022d62;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  border-radius: 5px;
}

.header-search-inner::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 2px;
  width: 9px;
  height: 3px;
  margin-top: -2px;
  background-color: #022d62;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  border-radius: 5px;
}

.header-search-icon {
  position: absolute;
  display: block;
  top: 0px;
  left: 0px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border-width: 3px;
  border-style: solid;
  border-color: #022d62;
}

.header-search-inner:hover::before, .header-search-inner:hover::after {
  width: 15px;
}

.header-search-inner:hover::before {
  top: 7px;
  right: 2px;
}

.header-search-inner:hover .header-search-icon {
  width: 0;
  height: 0;
  border-color: transparent;
}

.header-search-inner::before, .header-search-inner::after, .header-search-inner .header-search-icon {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-inner {
  z-index: 99;
}

.header-inner .header-inner-nav.page-menu-top {
  position: fixed;
  width: 100%;
  background: #022d62;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  top: 70px;
  -webkit-animation: stickySlideDown 0.85s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: stickySlideDown 0.85s cubic-bezier(0.23, 1, 0.32, 1) both;
  padding: 5px 0;
}

.header-inner .header-inner-nav.page-menu-top .nav li a {
  color: #ffffff;
  padding: 10px 40px;
}

/* service css */

ul.service-list {
  list-style: none;
  margin: 70px 0 70px;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
}

ul.service-list li {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
}

ul.service-list li .text-col {
  width: 79%;
}

ul.service-list li h4 {
  font-size: 26px;
  letter-spacing: -0.02em;
  color: #111037;
}

ul.service-list li p {
  font-size: 20px;
  color: #5C5C5C;
  letter-spacing: -0.02em;
}

.service-con {
  width: 86px;
  margin-right: 20px;
  margin-top: 6px;
}

.service-con img {
  width: 100%;
}

ul.service-list li:nth-child(odd) {
  border-right: 1px #E3E3E3 solid;
  padding: 0 25px 40px 0;
}

ul.service-list li:nth-child(even) {
  padding: 0 0 40px 25px;
}

.data-transform ol {
  display: block;
  list-style-type: decimal !important;
  margin-top: 1em;
  margin-bottom: 30px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 20px;
}

.data-transform ol li {
  font-size: 24px;
  color: #000000;
  line-height: 40px;
  margin-bottom: 20px;
}

.data-transform p {
  font-size: 20px;
  color: #000000;
  letter-spacing: -0.02em;
  line-height: 32px;
  margin-bottom: 30px;
}

.data-transform h3 {
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #FF8933;
  margin-bottom: 30px;
}

.data-transform h2 {
  font-weight: bold;
  font-size: 55px;
  text-align: center;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
  color: #111037;
}

.framework-list {
  width: 100%;
  border-bottom: 1px #E3E3E3 solid;
  border-top: 1px #E3E3E3 solid;
}

ul.framework-logo {
  list-style: none;
  width: 100%;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

ul.framework-logo li {
  width: 16.66%;
  padding: 15px;
  display: flex;
  justify-content: center;
  height: 200px;
  border-right: 1px #E3E3E3 solid;
  border-bottom: 1px #E3E3E3 solid;
}

ul.framework-logo li:nth-child(6), ul.framework-logo li:nth-child(12) {
  border-right: 0px;
}

ul.framework-logo li:nth-child(7), ul.framework-logo li:nth-child(8), ul.framework-logo li:nth-child(9), ul.framework-logo li:nth-child(10), ul.framework-logo li:nth-child(11), ul.framework-logo li:nth-child(12) {
  border-bottom: 0px;
}

/*************************
       Responsive
*************************/

@media (min-width: 992px) {
  .header .navbar .dropdown-menu {
    margin: 0px;
    font-size: 14px;
    border-radius: 0px;
    border: none;
    left: 100%;
    -webkit-transform: translate3d(-50%, 10px, 0);
    transform: translate3d(-50%, 10px, 0);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-property: opacity, visibility, -webkit-transform;
    transition-property: opacity, visibility, -webkit-transform;
    transition-property: opacity, visibility, transform;
    transition-property: opacity, visibility, transform, -webkit-transform;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    display: block !important;
    border-radius: 3px;
  }
  .header .navbar .dropdown-menu.megamenu {
    left: 50%;
  }
  .navbar-nav .dropdown-menu.dropdown-menu-lg {
    min-width: 540px;
  }
  .navbar-nav .mega-menu {
    position: static;
  }
  .header .navbar .dropdown:hover>.dropdown-menu {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    visibility: visible;
    opacity: 1;
  }
  .header .navbar .dropdown-menu .dropdown-submenu .dropdown-menu {
    left: 100%;
    right: auto;
    -webkit-transform: translate3d(15px, 10px, 0);
    transform: translate3d(15px, 10px, 0);
  }
  .header .navbar .dropdown-menu .dropdown-submenu .dropdown-menu.left-side {
    right: 100%;
    left: auto;
    -webkit-transform: translate3d(-15px, 10px, 0);
    transform: translate3d(-15px, 10px, 0);
  }
  .navbar-nav li:hover>ul.dropdown-menu {
    visibility: visible;
    opacity: 1;
  }
  .header-transparent .navbar-collapse, .header-style-03 .navbar-collapse {
    position: static;
  }
  .header.default .container, .header.default .container-fluid {
    position: relative;
  }
  .header.default .navbar-collapse {
    position: static;
  }
  .header.default .container-fluid .navbar-collapse {
    position: relative;
  }
  .header-style-02 .navbar .dropdown:hover>.dropdown-menu.megamenu {
    -webkit-transform: translate3d(-50%, -7px, 0);
    transform: translate3d(-50%, -7px, 0);
  }
  .header-style-03 .navbar .dropdown:hover>.dropdown-menu.megamenu {
    -webkit-transform: translate3d(-50%, -7px, 0);
    transform: translate3d(-50%, -7px, 0);
  }
  .header-transparent .navbar .dropdown:hover>.dropdown-menu.megamenu {
    -webkit-transform: translate3d(-50%, -26px, 0);
    transform: translate3d(-50%, -26px, 0);
  }
  .header.default .navbar .container .dropdown:hover>.dropdown-menu.megamenu {
    -webkit-transform: translate3d(-50%, -16px, 0);
    transform: translate3d(-50%, -16px, 0);
  }
  .header.default .container .dropdown:hover>.dropdown-menu.megamenu {
    -webkit-transform: translate3d(-50%, -16px, 0);
    transform: translate3d(-50%, -16px, 0);
  }
}

@media (max-width: 1366px) {
  .navbar .navbar-nav .nav-link {
    padding: 10px 15px;
  }
  ul.service-list li p {
    font-size: 16px;
  }
  ul.service-list li h4 {
    font-size: 22px;
  }
  .service-con {
    width: 70px;
  }
  ul.service-list li .text-col {
    width: 81%;
  }
  .data-transform h2 {
    font-size: 40px;
  }
  .data-transform p {
    font-size: 18px;
    line-height: 30px;
  }
  .data-transform h3 {
    font-size: 28px;
  }
  .data-transform ol li {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 15px;
  }
  ul.service-list li:nth-child(even) {
    padding: 0 0 25px 25px;
  }
  ul.service-list li:nth-child(odd) {
    padding: 0 25px 25px 0;
  }
}

@media (max-width: 1199px) {
  .header .container-fluid {
    padding: 0 15px;
  }
  .navbar .navbar-brand {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 150px;
    flex: 0 0 150px;
  }
  .navbar .navbar-nav .nav-link {
    font-size: 16px;
    padding: 10px 14px;
  }
  .search-box {
    right: 15px;
  }
  .contact-number a {
    font-size: 14px;
  }
  ul.service-list li .text-col {
    width: 79%;
  }
}

@media (max-width: 991px) {
  .header .navbar .dropdown-menu {
    width: 100%;
  }
  ul.service-list li .text-col {
    width: 78%;
  }
  .service-con {
    width: 50px;
  }
  .header.default .container {
    max-width: 100%;
  }
  .navbar-toggler {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #022d62;
    border-color: #022d62;
  }
  .header-style-02.sticky-top .navbar {
    position: relative;
    right: 0;
    top: 0px;
  }
  .header-style-03 .navbar-toggler {
    right: 0;
  }
  .header-style-03.sticky-top .navbar-toggler {
    color: #ffffff;
    border-color: #ffffff;
  }
  .header-style-03.sticky-top .navbar-toggler i {
    color: #ffffff;
  }
  .navbar-collapse {
    position: absolute;
    z-index: 999;
    background: #ffffff;
    width: 100%;
    left: 0;
    top: 80px;
    padding: 10px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  }
  .header .navbar-nav>li {
    display: block;
  }
  .navbar .navbar-nav .nav-item:last-child .nav-link {
    margin-right: 16px;
  }
  /*.navbar .navbar-nav .nav-item .nav-link {
    display: block;
    width: 100%; }*/
  .header-style-02 .navbar-toggler {
    position: absolute;
    right: 0;
    top: -40px;
    border-color: #ffffff;
    color: #ffffff;
  }
  .header-style-02.sticky-top .navbar-toggler {
    top: -35px;
  }
  .header-style-02 .navbar-collapse {
    top: 0;
  }
  .header-style-02 .navbar .navbar-nav .nav-item .nav-link {
    color: #022d62;
  }
  .header-style-02 .navbar .navbar-nav .nav-item:first-child .nav-link {
    padding-left: 10px;
  }
  .header .navbar .dropdown-menu {
    max-height: 200px;
    overflow: scroll;
    margin-bottom: 15px;
  }
  .header-style-03 {
    position: relative;
    background: #022d62;
  }
  .header-style-03 .navbar-toggler {
    border-color: #ffffff;
    color: #ffffff;
  }
  .header-style-03 .search .search-btn {
    color: #ffffff;
  }
  .header-style-03 .navbar-brand {
    padding: 10px 0px;
  }
  .header-style-03 .navbar .navbar-nav .nav-link {
    color: #022d62;
  }
  .header-style-03+.banner {
    margin-top: 0;
  }
  .header-inner .header-inner-nav.page-menu-top .nav li a {
    padding: 10px 20px;
  }
  .header-style-03 .navbar-collapse {
    position: absolute;
    top: 60px;
    z-index: 999;
    background: #ffffff;
    width: 100%;
    max-height: 400px;
    overflow: auto;
    left: 0;
    margin-left: 0px;
    -webkit-box-shadow: 2px 2px 4px 0px rgba(2, 45, 98, 0.1);
    box-shadow: 2px 2px 4px 0px rgba(2, 45, 98, 0.1);
  }
  .sticky-top .navbar-collapse {
    top: 70px;
  }
  .header-style-02.sticky-top .navbar-collapse {
    top: 0;
  }
  .header-transparent {
    position: relative;
    background: #022d62;
  }
  .header-transparent .navbar-toggler {
    border-color: #ffffff;
    color: #ffffff;
  }
  .header-transparent .search .search-btn {
    color: #ffffff;
  }
  .header-transparent .navbar .navbar-brand {
    padding: 14px 0px;
  }
  .navbar-expand-lg>.container, .navbar-expand-lg>.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  .header-transparent .navbar .navbar-nav .nav-link {
    color: #022d62;
  }
  .navbar .navbar-nav .dropdown.nav-item .nav-link:after {
    right: 20px;
  }
  .navbar .navbar-nav .dropdown.nav-item .nav-link:before {
    right: 15px;
  }
  .navbar .navbar-nav .dropdown.nav-item .nav-link:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .navbar .navbar-nav .dropdown.nav-item .nav-link:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .navbar .navbar-nav .dropdown.nav-item:hover .nav-link:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .navbar .navbar-nav .dropdown.nav-item:hover .nav-link:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  header .nav-title {
    margin-bottom: 2px !important;
    margin-top: 10px;
  }
  .navbar .dropdown>.dropdown-menu li>a {
    padding: 6px 20px 6px 0;
  }
  .dropdown-menu.megamenu ul {
    margin-bottom: 11px;
  }
}

a {
  transition: all 0.5s;
}

.free-proposal {
  border: 1px solid #C4C4C4;
  box-sizing: border-box;
  border-radius: 3px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  width: 180px;
  float: right;
  text-align: center;
  height: 43px;
  line-height: 43px;
}

.free-proposal:hover {
  color: #fff;
  background: #FF8933;
  border-color: #FF8933;
}

.fixed.main-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #111037;
  box-shadow: 0px 0 7px 0px #1d1a1a30;
  -webkit-box-shadow: 0px 0 7px 0px #00000030;
  -moz-box-shadow: 0px 0 7px 0px #00000030;
  -ms-box-shadow: 0px 0 7px 0px #00000030;
  -o-box-shadow: 0px 0 7px 0px #00000030;
  animation: smoothScroll 0.7s forwards;
}

.fixed.main-header .navbar {
  padding: 0 0;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}

/*===================
  banner css
======================*/

.banner {
  background: url(../images/banner.jpg) no-repeat;
  background-size: cover;
  padding: 180px 0 110px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
}

.banner-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.text-color {
  color: #FF8933;
}

.banner-head {
  font-size: 45px;
  line-height: 60px;
  color: #fff;
  font-weight: bold;
}

.line {
  position: absolute;
  opacity: 0;
}

@media all and (min-width: 768px) {
  .banner-head {
    padding: 0 5%;
  }
}

.banner-para {
  font-size: 18px;
  font-weight: normal;
  line-height: 30px;
  color: #fff;
  padding: 0 177px;
  margin-bottom: 30px;
  margin-top: 150px;
}

.btn-yellow {
  background: #FF8933;
  color: #111037;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  height: 50px;
  line-height: 50px;
  border-radius: 3px;
  border: 1px solid #FF8933;
}

.btn-yellow:hover {
  background: #111037;
  color: #fff;
  border: 1px solid #fff;
}

.banner-btn {
  display: flex;
  margin: 0 auto;
  justify-content: center;
}

.banner-btn a {
  width: 210px;
  margin-right: 15px;
  float: left;
}

.border-btn {
  border: 1px solid #fff;
  border-radius: 3px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  height: 50px;
  line-height: 50px;
}

.border-btn:hover {
  background: #FF8933;
  border-color: #FF8933;
  color: #fff;
}

/*=================
  brand logo
==================*/

.brand-logo {
  padding: 40px 0;
  margin: 0 0 100px;
  border-bottom: 1px solid #EFEEEE;
}

/*=============
  features css
===============*/

.features {
  margin: 0 0 0;
  padding-bottom: 80px;
  border-bottom: 1px solid #EFEEEE;
}

.image-text {
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.02em;
}

.features img {
  height: 60px;
}

.border-feature {
  border-right: 1px solid #E3E3E3;
}

.feature-text {
  padding: 0 70px;
  margin-top: 70px;
}

.item-head {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #111037;
}

.feature-text h3 {
  margin-bottom: 25px;
}

.item-para {
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #000000;
}

.feature-text p {
  margin-bottom: 25px;
}

.live-btn {
  display: flex;
  margin: 0 auto;
  width: 240px;
  justify-content: center;
}

.live-col {
  margin-top: 80px;
}

.content-col h3 {
  font-size: 48px;
  line-height: 48px;
  padding: 0 17%;
  color: #111037;
  margin-bottom: 35px;
}

.content-col .sub-title {
  color: #A5A5A5 !important;
  margin-bottom: 70px !important;
  font-size: 26px;
}

.product-content {
  margin-bottom: 90px;
}

/* carousel */

.show-neighbors {
  overflow: hidden;
  border-radius: 10px;
}

.show-neighbors .carousel-indicators {
  margin-right: 10%;
  margin-left: 10%;
}

.show-neighbors .carousel-control-prev, .carousel-control-next {
  width: 10%;
  z-index: 11;
}

.show-neighbors .carousel-inner {
  width: 240%;
  left: -70%;
}

.show-neighbors .carousel-item-next:not(.carousel-item-left), .show-neighbors .carousel-item-right.active {
  -webkit-transform: translate3d(33%, 0, 0);
  transform: translate3d(33%, 0, 0);
}

.show-neighbors .carousel-item-prev:not(.carousel-item-right), .show-neighbors .carousel-item-left.active {
  -webkit-transform: translate3d(-33%, 0, 0);
  transform: translate3d(-33%, 0, 0);
}

.show-neighbors .item__third {
  float: left;
  position: relative;
  /* captions can now be added */
  width: 33.33333333%;
  padding: 0 10px;
}

.show-neighbors .item__third img {
  border-radius: 10px;
}

.bd-example .carousel-control-prev-icon {
  background-image: url(../images/right-3.svg);
}

.bd-example .carousel-control-next-icon {
  background-image: url(../images/right-2.svg);
}

.bd-example .carousel-control-next-icon, .bd-example .carousel-control-prev-icon {
  width: 30px;
  height: 30px;
}

.bd-example {
  position: relative;
}

.bd-example .carousel-control-prev {
  left: -150px;
}

.bd-example .carousel-control-next {
  right: -110px;
}

/*======================
  our products css
=======================*/

.our-products {
  margin: 80px 0 100px;
  border-bottom: 1px solid #EFEEEE;
}

.our-products p.item-para, .our-services p.item-para {
  padding: 0 215px;
  margin-bottom: 40px;
}

.products-image {
  position: relative;
}

.lounch-text {
  position: absolute;
  top: 15px;
  right: 0;
  height: 30px;
  line-height: 30px;
  color: #fff;
  font-size: 15px;
  font-weight: normal;
  text-align: center;
  width: 110px;
}

.products-image {
  padding: 20px 0 0;
}

.col-gap {
  margin-bottom: 60px;
}

.products-details {
  margin-top: 25px;
  padding: 0 10px;
}

.item-sub-head {
  font-weight: 700;
  font-size: 24px;
  line-height: 10px;
  letter-spacing: -0.02em;
  color: #000000;
}

.item-sub-para {
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: #5C5C5C;
}

.products-details h4 {
  margin-bottom: 20px;
}

.products-details p {
  margin-bottom: 0;
}

.view-btn {
  background: #111037;
  border-radius: 3px;
  width: 250px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.view-btn:hover {
  background: #FF8933;
  color: #fff;
}

.sub-head {
  font-size: 35px;
}

.product-list h3 {
  margin-bottom: 25px;
}

.number-para {
  padding-left: 20px;
  margin-bottom: 40px;
}

.number-para li {
  list-style: decimal;
  margin-bottom: 20px;
  padding-left: 15px;
}

.number-para li p {
  color: #000;
  line-height: 32px;
  font-size: 20px;
}

.product-para-list {
  margin-top: 80px;
  margin-bottom: 80px;
}

.product-para-list p {
  line-height: 32px;
  font-size: 20px;
  position: relative;
  padding-left: 25px;
}

.product-para-list p:before {
  position: absolute;
  left: 0;
  top: -1px;
  font-family: "Font Awesome 5 Pro";
  content: "\f111";
  font-size: 16px;
  color: #8D8D8D;
}

.mb-margin {
  margin-bottom: 20px;
}

/*=================
  services css
===================*/

.our-services h3.item-head, .our-products h3.item-head {
  color: #000;
}

.our-services {
  padding: 80px 0;
  background: #EEEEEE;
}

.services-box {
  background: #E0E0E0;
  border-radius: 5px;
  padding: 22px 15px;
  transition: all 0.6s;
  cursor: pointer;
}

.services-box:hover {
  background: #FF8933;
  color: #fff;
}

.services-box:hover h6 {
  color: #fff;
}

.services-box:hover svg path {
  fill: #fff;
}

.services-box svg {
  margin-right: 15px;
  height: 50px;
  width: 50px;
}

.services-box h6 {
  font-weight: bold;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  color: #000;
}

.services-box svg path {
  fill: #000;
}

.our-services .col-gap {
  margin-bottom: 16px;
}

.btn-yellow.view-btn {
  background: #FF8933;
}

.btn-yellow.view-btn:hover {
  background: #111037;
}

.service-btn-col {
  margin-top: 45px;
}

/*==================
  collaborated css
=====================*/

.contact-sec {
  padding: 80px 0;
  border-top: 1px solid #EFEEEE;
}

.text-black {
  color: #000 !important;
}

.contact-sec p {
  padding-right: 60px;
}

.albert {
  padding-left: 45px;
}

.line-text {
  position: absolute;
  left: 0;
  top: -7px;
  color: #C4C4C4;
}

/*===================
  footer css
=====================*/

.site-footer {
  background: #111037;
  padding: 80px 0;
}

.footer-head {
  font-weight: bold;
  font-size: 24px;
  line-height: 50px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
}

.site-footer ul li a, .site-footer ul li span {
  font-weight: normal;
  font-size: 18px;
  line-height: 40px;
  letter-spacing: -0.01em;
  color: #9F9EB9;
  vertical-align: middle;
  align-items: center;
}

.site-footer ul li a:hover {
  color: #FF8933;
}

.site-footer ul.last-sec li {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-footer ul.last-sec li a, .site-footer ul.last-sec li span {
  display: flex;
  align-items: center;
}

.site-footer ul li a svg, .site-footer ul li span svg {
  margin-right: 10px;
}

.site-footer ul li a:hover svg path {
  fill: #FF8933;
  stroke: #FF8933;
}

.subscribe-col {
  margin-top: 35px;
  position: relative;
}

.subscribe-col input {
  background: #111037;
  border: 2px solid #363569;
  box-sizing: border-box;
  border-radius: 3px;
  height: 50px;
  line-height: 50px;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #454465;
}

.subscribe-col input:focus {
  outline: none;
  background: #111037 !important;
  box-shadow: none;
}

.subs-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #454465;
  font-size: 18px;
  background: transparent;
  border: none;
  padding: 0;
}

.copy-bg p {
  font-weight: normal;
  font-size: 15px;
  line-height: 50px;
  letter-spacing: -0.01em;
}

.copy-bg {
  background: #111037;
  padding: 30px 0;
  border-top: 1px solid #222143;
}

.copy-bg p img {
  padding: 0 4px;
  margin-bottom: 6px;
}

.social a {
  color: #fff;
  margin-right: 20px;
}

.social a svg {
  width: 25px;
  height: 25px;
  transition: all 0.6s;
}

.social a:hover svg path {
  fill: #FF8933;
  stroke: #FF8933;
}

.social a svg path {
  fill: #fff;
  stroke: #fff;
}

.our-contact, .about-col {
  margin: 50px 0 50px;
}

#s2id_leadadd_mode_of_enq .select2-default {
  color: #f00 !important;
}

.input {
  width: 100%;
  border: 2px solid #DBDBDB;
  border-radius: 3px;
  height: 60px;
  padding: 0px 15px;
  font-size: 18px;
}

.input:focus, .select:focus, .textarea:focus {
  border-color: #FF8933;
}

.textarea {
  width: 100%;
  border: 2px solid #DBDBDB;
  border-radius: 3px;
  height: 200px;
  padding: 10px 15px;
  font-size: 18px;
}

.select {
  width: 100%;
  border: 2px solid #DBDBDB;
  border-radius: 3px;
  height: 60px;
  padding: 0px 15px;
  font-size: 18px;
  appearance: none;
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
  background: url(../images/drop-arrow.png) #fff;
  /* For Chrome and Safari */
  background: url(../images/drop-arrow.png) #fff;
  /* For old Fx (3.6 to 15) */
  background: url(../images/drop-arrow.png) #fff;
  /* For pre-releases of IE 10*/
  background: url(../images/drop-arrow.png) #fff;
  /* For old Opera (11.1 to 12.0) */
  background: url(../images/drop-arrow.png) #fff;
  /* Standard syntax; must be last */
  background-position: right 15px;
  background-repeat: no-repeat;
  overflow: hidden;
}

.form-group .checkbox {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.form-group label {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 20px;
}

.form-group label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #DBDBDB;
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 15px;
  width: 40px;
  height: 40px;
}

.form-group input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 12px;
  left: 17px;
  width: 6px;
  height: 14px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-info-col {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 30px;
}

.h-line {
  width: 100%;
  height: 1px;
  background: #EFEEEE;
  margin: 20px 0;
}

.contact-info {
  width: 100%;
}

.contact-info p span {
  font-weight: bold;
}

.contact-info p {
  font-size: 20px;
}

.send-btn {
  width: 230px;
  height: 60px;
  border-radius: 3px;
  background: #FF8933;
  border: none;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  font-weight: bold;
  color: #111037;
  justify-content: center;
  margin-top: 60px;
  cursor: pointer;
}

.send-btn:hover {
  background: #111037;
  color: #fff;
}

/* team */

/*****************************
	Team
*****************************/

.team {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

.team .team-img img {
  border-radius: 5px;
}

/*.team:hover .team-img {
  z-index: 9;
  position: relative;
}

.team:hover .team-info {
  z-index: 9;
  position: relative;
}

.team:hover .team-info ul {
  opacity: 1;
  bottom: -35px;
}

.team:hover .team-bg {
  opacity: 1;
  z-index: 5;
}*/

.team .team-info {
  padding: 20px 0px 0px;
}

.team .team-info .team-name {
  color: #022d62;
  font-size: 20px;
  font-weight: 600;
}

.team .team-info .team-name:hover {
  color: #FF8933;
}

.team .team-info p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #6A6868;
}

.team .team-info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0;
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team .team-info ul li {
  margin: 0 12px;
}

.team .team-info ul li a {
  color: #022d62;
}

.team .team-info ul li a:hover {
  color: #FF8933;
}

.team .team-bg {
  background: #ffffff;
  position: absolute;
  left: -10%;
  top: -10%;
  width: 120%;
  height: 134%;
  z-index: 4;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  -webkit-box-shadow: 5px 5px 24px 0px rgba(2, 45, 98, 0.1);
  box-shadow: 5px 5px 24px 0px rgba(2, 45, 98, 0.1);
}

.about-col h4 {
  text-align: center;
  color: #FF8933;
  font-size: 36px;
  font-weight: bold;
  margin: 0 0 60px;
}

.terms-privacy-disclaimer h4 {
  color: #111037;
  font-size: 24px;
  font-weight: 600;
  margin: 40px 0 20px;
}

/*insights page css*/

.designer-list {
  padding-top: 100px;
  padding-bottom: 100px;
}

.job-list .job {
  width: 100%;
  background: #f8f8f8;
  padding: 20px;
  margin-bottom: 20px;
}

.job-list .job h2 {
  font-size: 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
}

.job-list .job span {
  font-size: 18px;
  font-weight: normal;
  display: flex;
  justify-content: center;
  align-items: center;
}

.job-list .job h2 a {
  color: #000;
}

.designation li {
  display: inline;
  margin: 0 0.5rem 0 0;
  float: none;
  padding-left: 0px !important;
  font-size: 16px;
  opacity: 0.6;
}

.job p {
  font-size: 20px;
  color: #444;
  line-height: 32px;
  max-width: 80%;
}

.apply-btn {
  padding: 8px 20px;
  background: #111037;
  color: #fff;
  margin: 20px 0 10px;
  float: left;
  border-radius: 3px;
}

.apply-btn:hover {
  color: #FF8933;
}

/*details*/

.clasification {
  padding: 20px 0;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
  margin-bottom: 40px;
}

.clasification ul li {
  display: inline;
  padding: 0 20px 0 20px;
  font-size: 16px;
  opacity: 0.6;
}

.description {
  padding: 0 60px;
}

.description p {
  font-size: 17px;
  line-height: 28px;
}

.description ul {
  padding-left: 45px;
  padding-right: 45px;
}

.description ul li {
  list-style: disc;
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 28px;
}

.get-touch {
  padding-top: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #dbdbdb;
}

/*custom fil uplaod css*/

.custom-file-upload-hidden {
  display: none;
  visibility: hidden;
  position: absolute;
  left: -9999px;
  float: left;
  width: 100%;
}

.custom-file-upload {
  display: block;
  width: 100%;
  font-size: 16px;
  margin-top: 0;
}

.custom-file-upload label {
  display: block;
  margin-bottom: 5px;
}

.file-upload-wrapper {
  position: relative;
  margin-bottom: 5px;
}

.file-upload-input {
  width: 500px;
  color: #000;
  font-size: 16px;
  padding: 11px 17px;
  border: none;
  background-color: #ece7e3;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  float: left;
  /* IE 9 Fix */
}

.file-upload-input:hover, .file-upload-input:focus {
  background-color: #ece7e3;
  outline: none;
}

.file-upload-button {
  cursor: pointer;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  padding: 11px 20px;
  border: none;
  margin-left: -1px;
  background-color: #111037;
  float: left;
  /* IE 9 Fix */
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.file-upload-button:hover {
  background-color: #FF8933;
}

.carreer-form input {
  /*height: 45px;
  line-height: 45px;
  border: 2px solid #DBDBDB;
  border-radius: 3px;
  padding: 0px 15px;
  font-size: 18px;
  color: #000;*/
}

textarea {
  resize: none;
}

.carreer-form input:focus {
  outline: none;
  box-shadow: none;
}

.carreer-form p {
  margin-bottom: 10px;
}

.career-custom-input {
  float: left;
  width: 100%;
  margin-top: 25px;
}

/*=================
  responsive css
===================*/

/*mobile side menu css*/

.mobile-header p {
  color: #89868d;
}

.toggle-side {
  position: absolute;
  top: 22px;
  z-index: 9999;
}

.side-menu {
  width: 100%;
  top: 0;
  background-color: #fff;
  height: 100vh;
  position: fixed;
  left: -1000px;
  transition: all .5s;
  padding: 20px;
  z-index: 99999;
}

.side-menu.show {
  left: 0;
}

.side-menu.show .mobile-header img {
  transform: rotate(0deg) skewX(0deg);
}

.mobile-header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding: 15px 0;
  margin-bottom: 10px;
}

.side-menu .mobile-header img {
  justify-content: flex-end;
  cursor: pointer;
  transition: all .5s;
  transform: rotate(180deg) skewX(0deg);
}

.side-menu .mobile-header i:hover {
  color: #E59500;
}

@media all and (min-width: 1200px) and (max-width: 1366px) {
  .navbar .navbar-nav .nav-link {
    padding: 10px 10px;
  }
}

@media all and (max-width: 1366px) {
  .input {
    height: 50px;
    line-height: 50px;
  }
  .textarea {
    height: 100px;
  }
  .select {
    height: 50px;
  }
}

@media all and (min-width: 992px) and (max-width: 1199px) {
  .bd-example .carousel-control-next {
    right: -6px;
  }
  .bd-example .carousel-control-prev {
    left: -19px;
  }
  .navbar .navbar-nav .nav-link {
    font-size: 15px;
    padding: 10px 6px;
  }
  .banner-head {
    font-size: 40px;
    line-height: 51px;
    /*margin-bottom: 25px;*/
    padding: 0 80px;
  }
  .banner-para {
    color: #fff;
    padding: 0 90px;
    margin-top: 180px;
  }
  .banner {
    padding: 139px 0 110px;
  }
  .feature-text {
    padding: 0 50px;
  }
  .services-box {
    padding: 15px 12px;
  }
  .our-products p.item-para, .our-services p.item-para {
    padding: 0 144px;
  }
  .services-box h6 {
    font-size: 16px;
  }
  .contact-sec .view-btn {
    width: 200px;
  }
  .site-footer ul li a svg, .site-footer ul li span svg {
    width: 22px;
    height: 22px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .content-col h3 {
    font-size: 40px;
  }
  .form-group label::before {
    width: 40px;
    height: 35px;
  }
  .form-group input:checked+label::after {
    top: 20px;
    left: 14px;
  }
  .contact-info-col {
    padding: 0;
  }
  .file-upload-input {
    width: 232px;
  }
  .designer-list {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .description {
    padding: 0 30px;
  }
  .clasification ul li {
    padding: 0 5px 0 5px;
  }
  .bd-example .carousel-control-next {
    right: -6px;
  }
  .bd-example .carousel-control-prev {
    left: -19px;
  }
  .mobile-whatsapp {
    position: absolute;
    right: 15px;
    top: 30px;
  }
  .navbar {
    padding: 15px 0;
    display: flex;
    align-items: center;
  }
  .navbar .navbar-nav .nav-link {
    color: #000;
  }
  .navbar-brand img {
    height: 25px;
  }
  .toggle-side {
    top: 38px;
  }
  .main-header.fixed .toggle-side {
    top: 22px;
  }
  .main-header.fixed .mobile-whatsapp {
    top: 10px;
  }
  .navbar .navbar-brand {
    flex: 0 0 100%;
    text-align: center;
    padding: 15px 0;
  }
  .navbar-brand {
    padding: 0 0px;
  }
  .nav-link {
    display: block;
    padding: .7rem 0 !important;
    color: #111037 !important;
  }
  .banner-head {
    font-size: 30px;
    line-height: 46px;
    /*margin-bottom: 25px;*/
    padding: 0 80px;
  }
  .navbar {
    padding: 15px 0;
  }
  .free-proposal {
    font-size: 16px;
    height: 40px;
    line-height: 43px;
  }
  .navbar-brand img {
    margin-bottom: 0;
  }
  .banner {
    padding: 156px 0 100px;
  }
  .banner-para {
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    padding: 0 48px;
    margin-top: 150px;
    margin-bottom: 30px;
  }
  .btn-yellow {
    height: 45px;
    line-height: 45px;
    font-size: 16px;
  }
  .border-btn a {
    height: 45px;
    line-height: 45px;
    font-size: 16px;
  }
  .brand-logo {
    margin: 0 0 50px;
  }
  .image-text {
    font-size: 18px;
    line-height: 26px;
  }
  .feature-text {
    padding: 0 70px;
    margin-top: 50px;
  }
  .item-head {
    font-size: 28px;
  }
  .feature-text h3 {
    margin-bottom: 20px;
  }
  .item-para {
    font-size: 16px;
    line-height: 30px;
  }
  .feature-text p {
    margin-bottom: 15px;
  }
  .live-col {
    margin-top: 50px;
  }
  .our-products {
    margin: 50px 0 50px;
  }
  .our-products p.item-para, .our-services p.item-para {
    padding: 0 49px;
    margin-bottom: 25px;
  }
  .products-details h4 {
    margin-bottom: 7px;
  }
  .item-sub-head {
    font-size: 18px;
    line-height: 28px;
  }
  .products-details {
    margin-top: 20px;
    padding: 0 3px;
  }
  .view-btn {
    height: 45px;
    line-height: 45px;
    font-size: 16px;
  }
  .services-box {
    padding: 15px 10px;
  }
  .services-box h6 {
    font-size: 16px;
    line-height: 23px;
  }
  .service-btn-col {
    margin-top: 35px;
  }
  .contact-sec .view-btn {
    width: 148px;
  }
  .contact-sec p {
    padding-right: 70px;
  }
  .contact-sec {
    padding: 25px 0;
  }
  .footer-head {
    font-size: 16px;
  }
  .site-footer ul li a, .site-footer ul li span {
    font-size: 13px;
    line-height: 34px;
  }
  .site-footer ul li a svg, .site-footer ul li span svg {
    width: 20px;
    height: 20px;
  }
  .subscribe-col input {
    height: 45px;
    line-height: 45px;
    padding-right: 50px;
  }
  .copy-bg p {
    font-size: 13px;
    line-height: 29px;
  }
  .social a svg {
    width: 20px;
    height: 20px;
  }
}

@media all and (min-width: 320px) and (max-width: 767px) {
  .data-transform ol li {
    font-size: 16px;
  }
  ul.framework-logo li {
    padding: 7px;
    height: 45px;
  }
  .about-col h4 {
    font-size: 24px;
    margin: 0 0 30px;
  }
  .team .team-bg {
    height: 123%;
  }
  .albert {
    margin-bottom: 0;
  }
  .content-col h3 {
    margin-bottom: 15px;
  }
  .our-contact.contact-content {
    margin-bottom: 15px;
  }
  .contact-product.product-content {
    margin-bottom: 0;
  }
  .form-group label:before {
    width: 26px;
    height: 18px;
  }
  .form-group label {
    font-size: 16px;
  }
  .form-group input:checked+label:after {
    top: 3px;
    left: 10px;
    width: 6px;
    height: 14px;
  }
  .content-col .sub-title {
    margin-bottom: 50px !important;
  }
  .select {
    height: 45px;
    font-size: 16px;
    background-position: right 5px;
    background-position-y: 5px;
    background-repeat: no-repeat;
    overflow: hidden;
  }
  .input {
    font-size: 16px;
  }
  .carreer-form p {
    font-size: 16px;
  }
  .send-btn {
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    margin-top: 20px;
    width: 100%;
  }
  .contact-info p {
    font-size: 16px;
  }
  .contact-info-col {
    padding: 0;
  }
  .file-upload-input {
    width: 100%;
  }
  .file-upload-button {
    font-size: 14px;
    padding: 11px 7px;
    width: 100%;
    margin-top: 15px;
  }
  .input {
    height: 45px;
    line-height: 45px;
  }
  .clasification {
    padding: 10px 0;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .clasification ul li {
    padding: 0 5px 0 5px;
    font-size: 14px;
  }
  .description p {
    font-size: 15px;
    line-height: 25px;
  }
  .description ul {
    padding-left: 15px;
    padding-right: 15px;
  }
  .description ul li {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 15px;
  }
  .get-touch {
    padding-top: 20px;
    padding-bottom: 25px;
  }
  .description {
    padding: 0 0px;
  }
  .designer-list {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .job-list .job {
    padding: 12px;
  }
  .job-list .job h2 {
    font-size: 18px;
  }
  .job p {
    font-size: 14px;
    line-height: 25px;
  }
  .job-list .job h2 span {
    font-size: 15px;
  }
  .designation li {
    font-size: 15px;
  }
  .designation li:last-child {
    margin-right: 0;
  }
  .data-transform p {
    margin-bottom: 15px;
  }
  .white-bg {
    padding: 50px 0 0;
  }
  .sub-head {
    font-size: 22px;
    line-height: 35px;
  }
  .our-contact, .about-col {
    margin: 50px 0 30px;
  }
  .number-para li {
    list-style: decimal;
    margin-bottom: 15px;
    padding-left: 5px;
  }
  .number-para li p {
    font-size: 16px;
    line-height: 25px;
  }
  .product-para-list {
    margin-top: 40px;
    margin-bottom: 0;
  }
  .product-list h3 {
    margin-bottom: 15px;
  }
  .number-para {
    margin-bottom: 30px;
  }
  .product-para-list p {
    line-height: 25px;
    font-size: 15px;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
  }
  .product-para-list p:before {
    font-size: 13px;
    top: 0;
  }
  .mb-margin {
    margin-bottom: 10px;
  }
  .data-transform p {
    font-size: 16px;
    line-height: 28px;
  }
  .bd-example .carousel-control-next-icon, .bd-example .carousel-control-prev-icon {
    width: 20px;
    height: 20px;
  }
  .bd-example .carousel-control-prev {
    left: -8px;
  }
  .product-content {
    margin-bottom: 20px;
  }
  .bd-example .carousel-control-next {
    right: 0;
  }
  .show-neighbors .item__third {
    padding: 0 2px;
  }
  .show-neighbors .item__third img {
    border-radius: 5px;
  }
  .show-neighbors {
    border-radius: 5px;
  }
  .mobile-whatsapp {
    position: absolute;
    right: 15px;
    top: 14px;
  }
  ul.service-list li .text-col {
    width: 79%;
  }
  ul.service-list li {
    width: 100%;
  }
  ul.service-list li:nth-child(even) {
    padding: 0 0 25px 0;
    border-right: 0px;
  }
  ul.service-list li:nth-child(odd) {
    border-right: 0px;
  }
  .data-transform h2 {
    font-size: 30px;
  }
  .content-col {
    margin-top: 50px !important;
  }
  .content-col .sub-title {
    font-size: 18px !important;
  }
  .content-col h3 {
    font-size: 30px;
    line-height: 30px;
    padding: 0px;
  }
  .mobile-whatsapp img {
    height: 25px;
  }
  .navbar {
    padding: 15px 0;
    display: flex;
    align-items: center;
  }
  .navbar .navbar-nav .nav-link {
    color: #000;
  }
  .navbar-brand img {
    height: 22px;
  }
  .navbar .navbar-brand {
    flex: 0 0 100%;
    text-align: center;
  }
  .navbar-brand {
    padding: 0 0px;
  }
  .nav-link {
    display: block;
    padding: .7rem 0 !important;
    color: #111037 !important;
  }
  .banner {
    padding: 0;
    height: 80vh;
    display: flex;
    align-items: center;
  }
  .brand-logo {
    padding: 15px 0;
    height: 5vh;
    margin-bottom: 0;
    border-bottom: none;
  }
  .banner-head {
    font-size: 26px;
    line-height: 38px;
    /*margin-bottom: 25px;*/
  }
  .banner-para {
    font-size: 16px;
    padding: 0;
    line-height: 25px;
    margin-top: 135px;
    margin-bottom: 23px;
  }
  .banner-btn {
    flex-direction: column;
  }
  .banner-btn a {
    width: 100%;
    margin-right: 0;
    float: left;
    margin-bottom: 15px;
  }
  .banner-btn a:last-child {
    margin-bottom: 0;
  }
  .btn-yellow, .border-btn {
    font-size: 16px;
    height: 45px;
    line-height: 45px;
  }
  .our-products p.item-para, .our-services p.item-para {
    padding: 0;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 20px;
  }
  .mobile-banner {
    height: 100vh;
  }
  .space-pb.our-clients {
    display: flex;
    /*align-items: center;*/
    height: 100%;
  }
  .banner-text {
    text-align: center;
  }
  .fixed.main-header .navbar {
    padding: 10px 0;
  }
  .fixed.main-header .toggle-side {
    top: 18px;
  }
  .fixed.main-header .mobile-whatsapp {
    top: 9px;
  }
  .features {
    margin-top: 0px;
    padding-bottom: 40px;
  }
  .image-text {
    font-size: 15px;
    line-height: 21px;
  }
  .features img {
    height: 45px;
  }
  .feature-text {
    padding: 0 0px;
    margin-top: 35px;
  }
  .feature-text h3 {
    margin-bottom: 15px;
  }
  .item-head {
    font-size: 18px;
    line-height: 30px;
  }
  .feature-text p {
    margin-bottom: 10px;
  }
  .item-para {
    font-size: 15px;
    line-height: 25px;
  }
  .live-btn {
    width: 100%;
  }
  .live-col {
    margin-top: 35px;
  }
  .our-products {
    margin: 35px 0 35px;
  }
  /*.col-gap {
    padding-left: 15px;
    padding-right: 15px;
  }*/
  .item-sub-head {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .products-details h4 {
    margin-bottom: 15px;
  }
  .products-details {
    margin-bottom: 25px;
  }
  .our-products .col-md-4:last-child .products-details {
    margin-bottom: 0;
  }
  .view-btn {
    width: 100%;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
  }
  .our-services {
    padding: 35px 0;
  }
  .services-box {
    padding: 15px 15px;
  }
  .services-box h6 {
    font-size: 18px;
    line-height: 22px;
  }
  .services-box svg {
    width: 40px;
    height: 40px;
  }
  .our-services .col-gap:last-child {
    margin-bottom: 0;
  }
  .service-btn-col {
    margin-top: 35px;
  }
  .contact-sec p {
    padding-right: 0px;
  }
  .contact-sec {
    padding: 35px 0;
  }
  .contact-sec .view-btn {
    width: 190px;
  }
  img.dialler-img {
    width: 100% !important;
    height: auto !important;
}
  .site-footer {
    padding: 35px 0;
  }
  .footer-head {
    font-size: 16px;
    line-height: 35px;
  }
  .site-footer ul li a, .site-footer ul li span {
    line-height: 35px;
  }
  .site-footer ul li a svg, .site-footer ul li span svg {
    margin-right: 10px;
    width: 20px;
    height: 20px;
  }
  .subscribe-col {
    margin-top: 25px;
  }
  .subscribe-col input {
    height: 40px;
    line-height: 40px;
    padding-right: 50px;
  }
  .copy-bg {
    padding: 15px 0;
  }
  .copy-bg p {
    font-size: 14px;
    line-height: 25px;
    text-align: center;
  }
  .copy-bg p img {
    height: 13px;
    width: auto;
  }
  .social {
    margin-top: 15px;
  }
  .social a svg {
    width: 18px;
    height: 18px
  }
  .social a:last-child {
    margin-right: 0;
  }
  .data-transform h3 {
    font-size: 24px;
  }
  ul.service-list {
    margin: 35px 0 10px;
  }
}

@media (min-width: 320px) and (max-width: 575px) {
  .career-custom-input .col-sm-6 {
    margin-bottom: 15px;
  }
  .career-custom-input .col-sm-6:last-child {
    margin-bottom: 0;
  }
  .col-gap {
    padding-left: 15px;
    padding-right: 15px;
  }
  ul.service-list li .text-col {
    width: 76%;
  }
}

@media all and (min-width: 320px) and (max-width: 374px) {
  .banner-para {
    margin-top: 125px;
  }
  .banner-head {
    font-size: 22px;
    line-height: 35px
  }
}

@media (min-width: 320px) and (max-width:480px) {
  .service-con {
    margin: 0px auto 20px;
  }
  ul.service-list li .text-col {
    width: 100%;
    text-align: center;
  }
  .content-col h3 {
    font-size: 24px;
  }
  .content-col .sub-title {
    margin-bottom: 40px !important;
  }
  .data-transform h2 {
    font-size: 24px;
  }
  
}

.btn-circle {
  width: 30px;
  height: 30px;
  text-align: center;
  padding: 6px 0;
  font-size: 12px;
  line-height: 1.428571429;
  border-radius: 15px;
}

.btn-circle.btn-lg {
  width: 50px;
  height: 50px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 25px;
}

.btn-circle.btn-xl {
  width: 70px;
  height: 70px;
  padding: 10px 16px;
  font-size: 24px;
  line-height: 1.33;
  border-radius: 35px;
}

.btn-float {
  position: fixed;
  right: 15px;
  bottom: 50px;
}

.btn-lateral {
  background-color: #008ECF;
  color: white;
  margin: 10px;
}

.btn-filter {
  background-color: #283896;
  color: #FFF;
}