@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700');
@keyframes shine {
  100% {
    left: 125%;
  }
}
/*=========================================
=            Theme Default CSS            =
=========================================*/
body {
  font-size: 16px;
  line-height: 26px;
  font-family: 'Roboto', sans-serif;
  color: #444444;
  font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 20px 0;
  color: #111111;
  text-rendering: optimizeLegibility;
}
h1 {
  font-size: 48px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 22px;
}
h4 {
  font-size: 18px;
}
p {
  margin: 0 0 20px 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.ghost-btn {
  position: relative;
  overflow: hidden;
  background: #0d49a7;
  border-radius: 6px;
  color: #ffffff;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 30px;
  text-transform: uppercase;
  letter-spacing: 0px;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.ghost-btn::after {
  font-family: 'FontAwesome';
  content: "\f054";
  opacity: 0;
  margin-left: -10px;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
}
.ghost-btn::before {
  background: #ff6d00;
  position: absolute;
  content: "";
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
}
.ghost-btn:hover {
  color: #ffffff;
}
.ghost-btn:hover::after {
  opacity: 1;
  padding-left: 20px;
}
.ghost-btn:hover::before {
  left: 0;
}
.ghost-btn-border {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 2px solid #ff6d00;
  border-radius: 6px;
  color: #111111;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 30px;
  text-transform: uppercase;
  letter-spacing: 0px;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.ghost-btn-border::before {
  background: #ff6d00;
  position: absolute;
  content: "";
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
}
.ghost-btn-border::after {
  font-family: 'FontAwesome';
  content: "\f054";
  opacity: 0;
  margin-left: -10px;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
}
.ghost-btn-border:hover {
  color: #ffffff;
}
.ghost-btn-border:hover::before {
  left: 0;
}
.ghost-btn-border:hover::after {
  opacity: 1;
  padding-left: 20px;
}
.ghost-btn-arrow {
  background: transparent;
  border: 2px solid #0d49a7;
  border-radius: 6px;
  color: #0d49a7;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 20px;
  text-transform: capitalize;
  letter-spacing: 0px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.ghost-btn-arrow::after {
  font-family: 'FontAwesome';
  content: "\f0da";
  padding-left: 8px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.ghost-btn-arrow:hover {
  background: #0d49a7;
  border: 2px solid transparent;
  color: #ffffff;
}
.ghost-btn-arrow:hover::after {
  padding-left: 12px;
}
.sppb-column-addons a.sppb-btn {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 6px;
  padding: 15px 25px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0px;
  font-weight: 500;
  z-index: 1;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.sppb-column-addons a.sppb-btn i {
  opacity: 0;
  margin-left: -10px;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
}
.sppb-column-addons a.sppb-btn::before {
  background: #ffffff;
  position: absolute;
  content: "";
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
}
.sppb-column-addons a.sppb-btn:hover {
  color: #0d49a7;
}
.sppb-column-addons a.sppb-btn:hover i {
  opacity: 1;
  padding-left: 15px;
}
.sppb-column-addons a.sppb-btn:hover::before {
  left: 0;
}
.title-style-one {
  text-align: center;
  margin-bottom: 60px;
}
.title-style-one .sppb-addon-content {
  font-size: 17px;
  margin: 0 auto;
  text-align: center;
  width: 65%;
}
.title-style-border .sppb-addon-title {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 15px;
  line-height: 1.3;
}
.title-style-border .sppb-addon-title::after {
  background: #ff6d00;
  border-radius: 0px;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50px;
}
.sppb-addon-text-block .sppb-addon-title {
  margin-bottom: 25px;
}
.sppb-addon-text-block .sppb-addon-title span {
  color: #ff6d00;
}
.sppb-addon-text-block ul {
  list-style: none;
  padding-left: 0;
  padding-top: 10px;
}
.sppb-addon-text-block ul li {
  color: #444444;
  font-size: 19px;
  padding-bottom: 13px;
}
.sppb-addon-text-block ul li::before {
  color: #0d49a7;
  content: "\f058";
  font-family: FontAwesome;
  font-size: 20px;
  padding-right: 20px;
}
.sppb-addon-text-block ul li:last-child {
  border-bottom: 0;
}
.sppb-addon-text-block a.ghost-btn {
  margin-top: 20px;
}
#sp-page-builder .sppb-section-title .sppb-title-heading {
  margin-bottom: 15px;
  line-height: 1.2;
  width: 65%;
  margin: 0 auto 15px;
}
#sp-page-builder .sppb-section-title .sppb-title-subheading {
  color: #111111;
  font-size: 18px;
  letter-spacing: 1px;
  max-width: 60% ;
  line-height: 28px;
}
#sp-page-builder .title-color-white .sppb-title-heading {
  color: #ffffff;
}
#sp-page-builder .title-color-white .sppb-title-subheading {
  color: #c3c3c3;
}
.content-align .sppb-row-container > .sppb-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.owl-carousel.owl-theme .owl-nav {
  position: initial;
  margin-top: 0px;
  top: inherit;
  left: 0;
  right: 0;
}
.owl-carousel.owl-theme .owl-nav > div {
  position: absolute;
  background: #0d49a7;
  border-radius: 6px;
  height: 48px;
  width: 40px;
  line-height: 48px;
  margin: 0px;
  padding: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.owl-carousel.owl-theme .owl-nav > div i {
  color: #ffffff;
}
.owl-carousel.owl-theme .owl-nav > div:hover {
  background: #f6f6f6;
}
.owl-carousel.owl-theme .owl-nav > div:hover i {
  color: #ffffff;
}
.owl-carousel.owl-theme .owl-nav .owl-prev {
  left: 0%;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.owl-carousel.owl-theme .owl-nav .owl-next {
  right: 0%;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.owl-carousel.owl-theme .owl-dots {
  margin-top: 30px;
}
.owl-carousel.owl-theme .owl-dots .owl-dot span {
  background: #e4e4e4;
}
.owl-carousel.owl-theme .owl-dots .owl-dot.active span {
  background: #0d49a7;
}
.rt-carousel span.rt-slick-nav {
  background: #ff6d00;
  color: #111111;
  border: 2px solid #ff6d00;
  border-radius: 50%;
  height: 55px;
  width: 55px;
  line-height: 51px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.rt-carousel span.rt-slick-nav:hover {
  border: 2px solid transparent;
  background: #0d49a7;
}
.rt-carousel span.rt-slick-nav.rt-prev {
  left: 0px;
}
.rt-carousel span.rt-slick-nav.rt-next {
  right: 0px;
}
.rt-carousel ul.slick-dots {
  margin: 30px 0 0;
  padding: 0;
  text-align: center;
}
.rt-carousel ul.slick-dots li button {
  background: transparent;
  border: 2px solid #0d49a7;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  cursor: pointer;
}
.rt-carousel ul.slick-dots li.slick-active button {
  background: #0d49a7;
}
/*=====  End of Theme Default CSS  ======*/
/*==================================
=            Topbar css            =
==================================*/
#sp-top-bar > .container > .row > div {
  min-height: 0;
}
#sp-top-bar .sp-module {
  display: inherit !important;
  font-size: 14px;
}
#sp-top-bar .sp-module ul li {
  display: inline-block;
  border: none;
}
#sp-top-bar .sp-module ul li a {
  line-height: 1;
}
#sp-top-bar .sp-module ul li a::before {
  content: "";
  margin-right: 0;
}
.top-address {
  margin: 0 !important;
}
.top-address ul {
  list-style: none;
}
.top-address ul li {
  display: inline-block;
  color: #c3c3c3;
  margin-right: 15px;
}
.top-address ul li i {
  color: #ff6d00;
  font-size: 18px;
  font-weight: 400;
  padding-right: 5px;
}
.top-address ul li:last-child {
  margin-right: 0;
}
.top-social .rt-socials ul {
  list-style: none;
  text-align: right;
}
.top-social .rt-socials ul li {
  display: inline-block;
  border: none;
}
.top-social .rt-socials ul li a {
  color: #c3c3c3;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  padding: 0 8px;
}
.top-social .rt-socials ul li a::before {
  content: "";
  margin-right: 0;
}
.top-social .rt-socials ul li a:hover {
  color: #ff6d00;
}
.free-analysis .sppb-column-addons .sppb-text-center {
  text-align: right;
  line-height: 90px;
}
.free-analysis .sppb-column-addons .sppb-text-center a {
  border: 2px solid #0d49a7;
  border-radius: 3px;
  color: #111111;
  font-weight: 400;
  padding: 10px 15px;
  text-align: center;
  text-transform: capitalize;
}
.free-analysis .sppb-column-addons .sppb-text-center a::before {
  background: #0d49a7;
}
.free-analysis .sppb-column-addons .sppb-text-center a:hover {
  color: #ffffff;
}
#header2-style #sp-top-bar {
  background: transparent;
  padding: 0;
}
#header2-style #sp-header {
  background: transparent;
  border-bottom: 1px solid #175ecd;
}
#header2-style #sp-header.menu-fixed {
  background: rgba(13, 73, 167, 0.9);
  border-bottom: 2px solid #ff6d00;
}
#header2-style .slider-default-style {
  margin-top: -90px;
}
#header2-style #sp-menu ul.sp-megamenu-parent > li > a {
  color: #ffffff;
}
#header2-style #sp-menu ul.sp-megamenu-parent > li > a:hover {
  color: #ff6d00;
}
#header2-style #sp-menu ul.sp-megamenu-parent > li.active > a {
  color: #ff6d00;
}
#header2-style #offcanvas-toggler i {
  color: #ffffff;
}
#header2-style #offcanvas-toggler i:hover {
  color: #ff6d00;
}
#header2-style .free-analysis .sppb-text-center a {
  border: 2px solid #ffffff;
  color: #ffffff;
}
#header2-style .free-analysis .sppb-text-center a::before {
  background: #ffffff;
}
#header2-style .free-analysis .sppb-text-center a:hover {
  color: #ff6d00;
}
/*=====  End of Topbar css  ======*/
/*=====================================
=            Main menu css            =
=====================================*/
#sp-menu .sp-megamenu-parent {
  position: inherit;
}
#sp-menu .sp-megamenu-parent > li > a {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #111111;
  text-transform: capitalize;
  line-height: 89px;
  padding: 0 12px;
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
#sp-menu .sp-megamenu-parent > li.active a {
  color: #ff6d00;
}
#sp-menu .sp-megamenu-parent > li:hover a {
  color: #ff6d00;
}
#sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
  background: #ff6d00;
  padding: 0px;
}
#sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item {
  border-bottom: 1px solid #e85610;
}
#sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item a.sp-group-title {
  font-weight: 600;
}
#sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item > a {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  font-size: 15px;
  padding: 10px 12px;
  font-family: 'Poppins', sans-serif;
  z-index: 1;
}
#sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item > a::before {
  background: rgba(17, 17, 17, 0.2);
  position: absolute;
  content: "";
  left: 0;
  top: -100%;
  height: 100%;
  width: 100%;
  opacity: 1;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
#sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item > a:hover {
  color: #ffffff;
}
#sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item > a:hover::before {
  opacity: 1;
  top: 0;
}
#sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item:last-child {
  border-bottom: none;
}
#sp-menu .sp-megamenu-parent .menu-justify .sp-dropdown .sp-dropdown-inner {
  padding: 15px;
}
#sp-menu #offcanvas-toggler {
  line-height: 90px;
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
#sp-header {
  box-shadow: none !important;
}
#sp-header.menu-fixed {
  border-bottom: 2px solid #ff6d00;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li .offcanvas-menu-toggler {
  font-size: 22px;
}
.offcanvas-menu .offcanvas-inner .sp-module-title {
  color: #ffffff;
}
#sp-menu .sp-megamenu-parent > li.sp-has-child > a::after {
  content: "";
}
.offcanvas .offcanvas-menu .offcanvas-inner .sp-module {
  margin-top: 30px !important;
}
.offcanvas .offcanvas-menu {
  background: #0d49a7;
}
.offcanvas .offcanvas-menu .offcanvas-inner .sp-module {
  margin-bottom: 0;
}
body .offcanvas-menu .offcanvas-inner .search input {
  border: 1px solid #ffffff;
}
/*=====  End of Main menu css  ======*/
/*=======================================
=            Main Slider css            =
=======================================*/
.slider-default-style ul li {
  border: none !important;
}
.slider-default-style .tp-caption.large_text {
  font-size: 48px !important;
  line-height: 48px !important;
  letter-spacing: 1px;
  text-transform: capitalize;
}
.slider-default-style .tp-caption.large_text span {
  color: #0d49a7;
  font-weight: 500;
  font-size: 48px !important;
}
.slider-default-style .tp-caption.medium_text {
  font-size: 22px !important;
  font-weight: 500;
  line-height: 22px !important;
  letter-spacing: 10px;
  text-transform: uppercase;
}
.slider-default-style .tp-caption.small_text {
  font-size: 17px !important;
  line-height: 24px !important;
  letter-spacing: 1px;
  width: 28%;
  margin: 0 auto !important;
}
.slider-default-style .tp-caption.largewhitebg {
  display: block;
  background: transparent;
  letter-spacing: 1px;
}
.slider-default-style .tp-caption.largewhitebg a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  background: #ff6d00;
  border-radius: 6px;
  font-size: 15px !important;
  color: #ffffff;
  font-weight: 500;
  line-height: 24px !important;
  text-transform: uppercase;
  padding: 14px 35px !important;
  z-index: 1;
}
.slider-default-style .tp-caption.largewhitebg a::before {
  background: #ffffff;
  position: absolute;
  content: "";
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
}
.slider-default-style .tp-caption.largewhitebg a::after {
  font-family: 'FontAwesome';
  content: "\f054";
  margin-left: -10px;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
}
.slider-default-style .tp-caption.largewhitebg a:hover {
  color: #111111;
}
.slider-default-style .tp-caption.largewhitebg a:hover::before {
  left: 0;
}
.slider-default-style .tp-caption.largewhitebg a:hover::after {
  opacity: 1;
  padding-left: 18px;
}
.slider-default-style .tp-leftarrow.default {
  background: transparent;
  left: 5% !important;
}
.slider-default-style .tp-leftarrow.default::after {
  background: #0d49a7;
  color: #ffffff;
  content: "\f104";
  font-family: "FontAwesome";
  font-size: 24px;
  line-height: 50px;
  text-align: center;
  padding: 0px;
  height: 50px;
  width: 40px;
  border-radius: 3px;
  display: block;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.slider-default-style .tp-leftarrow.default:hover::after {
  background: #ff6d00;
}
.slider-default-style .tp-rightarrow.default {
  background: transparent;
  right: 5% !important;
}
.slider-default-style .tp-rightarrow.default::after {
  background: #0d49a7;
  color: #ffffff;
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 24px;
  line-height: 50px;
  text-align: center;
  padding: 0px;
  height: 50px;
  width: 40px;
  border-radius: 3px;
  display: block;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.slider-default-style .tp-rightarrow.default:hover::after {
  background: #ff6d00;
}
/*=====  End of Main Slider css  ======*/
/*==========================================
=            Check your website            =
==========================================*/
.rsform .formResponsive .formHorizontal .rsform-block {
  margin-bottom: 10px;
}
.rsform .formResponsive .formHorizontal .rsform-block.rsform-block-submit {
  margin-bottom: 0;
}
.rsform {
  font-family: 'Poppins', sans-serif;
}
.rsform .formResponsive {
  margin-bottom: 0;
}
.rsform .formResponsive .rsform-block .formControlLabel {
  padding-top: 0;
  width: inherit;
}
.rsform .formResponsive .rsform-block .formControls {
  margin-left: 0;
  position: relative;
}
.rsform .formResponsive .rsform-block .formControls input {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  box-shadow: none;
  font-size: 15px;
  color: #444444;
  margin-bottom: 0;
  padding: 8px 15px;
  height: 32px;
  width: 93%;
}
.rsform .formResponsive .rsform-block .formControls input::-moz-placeholder {
  color: #444444;
}
.rsform .formResponsive .rsform-block .formControls input::-webkit-input-placeholder {
  color: #444444;
}
.rsform .formResponsive .rsform-block .formControls select {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  box-shadow: none;
  font-size: 15px;
  color: #444444;
  padding: 8px 15px;
  height: 32px;
  width: 93%;
  -webkit-appearance: none;
}
.rsform .formResponsive .rsform-block .formControls select::-moz-placeholder {
  color: #444444;
}
.rsform .formResponsive .rsform-block .formControls select::-webkit-input-placeholder {
  color: #444444;
}
.rsform .formResponsive .rsform-block .formControls textarea {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  box-shadow: none;
  font-size: 15px;
  color: #444444;
  padding: 12px 15px;
  width: 93%;
}
.rsform .formResponsive .rsform-block .formControls textarea::-moz-placeholder {
  color: #444444;
}
.rsform .formResponsive .rsform-block .formControls textarea::-webkit-input-placeholder {
  color: #444444;
}
.rsform .formResponsive .rsform-block .formControls input.rsform-calendar-button {
  border: none;
  border-left: 1px solid #e4e4e4;
  position: absolute;
  font-size: 15px;
  width: inherit;
  right: 24px;
  top: 1px;
  height: 40px;
}
.rsform .formResponsive .rsform-block .formControls input.rsform-calendar-button::-moz-placeholder {
  color: #444444;
}
.rsform .formResponsive .rsform-block .formControls input.rsform-calendar-button::-webkit-input-placeholder {
  color: #444444;
}
.rsform .formResponsive .rsform-block .formControls button {
  position: relative;
  overflow: hidden;
  background: #0d49a7;
  border: none;
  border-radius: 5px;
  box-shadow: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  margin-top: 20px;
  padding: 18px 40px;
  text-shadow: none;
  text-transform: uppercase;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.rsform .formResponsive .rsform-block .formControls button::before {
  background: #ff6d00;
  position: absolute;
  content: "";
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
}
.rsform .formResponsive .rsform-block .formControls button:hover {
  color: #ffffff;
}
.rsform .formResponsive .rsform-block .formControls button:hover::before {
  left: 0;
}
.seo1-score {
  overflow: hidden;
  padding: 150px 0 300px !important;
  background: #0d49a7;
}
.seo1-score .sppb-title-heading {
  text-transform: uppercase;
  color: #ffffff;
}
.seo1-score .sppb-title-subheading {
  color: #ffffff !important;
}
.seo1-score .rsform {
  text-align: center;
}
.seo1-score .rsform .rsform-block {
  width: 41%;
  display: inline-block;
}
.seo1-score .rsform .rsform-block .formControlLabel {
  display: none;
}
.seo1-score .rsform .rsform-block .formControls input {
  border: none;
  padding: 5px 12px;
  height: 42px;
  width: 94%;
  -webkit-box-shadow: 0px 1px 0px 0px #dedede;
  -moz-box-shadow: 0px 1px 0px 0px #dedede;
  box-shadow: 0px 1px 0px 0px #dedede;
}
.seo1-score .rsform .rsform-block.rsform-block-submit {
  width: initial;
}
.seo1-score .rsform .rsform-block.rsform-block-submit .formControls {
  text-align: center;
}
.seo1-score .rsform .rsform-block.rsform-block-submit .formControls button {
  background: #ff6d00;
  font-size: 18px;
  margin-top: -2px;
  padding: 17px 35px;
}
.seo1-score .rsform .rsform-block.rsform-block-submit .formControls button::before {
  background: #ffffff;
}
.seo1-score .rsform .rsform-block.rsform-block-submit .formControls button:hover {
  color: #ff6d00;
}
.seo1-score .rsform .rsform-block.rsform-block-submit .formControls button:hover::before {
  left: 0;
}
.seo2-score .rsform {
  text-align: center;
}
.seo2-score .rsform .rsform-block {
  width: 41%;
  display: inline-block;
}
.seo2-score .rsform .rsform-block .formControlLabel {
  display: none;
}
.seo2-score .rsform .rsform-block .formControls input {
  border: none;
  padding: 5px 12px;
  height: 42px;
  width: 94%;
  -webkit-box-shadow: 0px 1px 0px 0px #dedede;
  -moz-box-shadow: 0px 1px 0px 0px #dedede;
  box-shadow: 0px 1px 0px 0px #dedede;
}
.seo2-score .rsform .rsform-block.rsform-block-submit {
  width: initial;
}
.seo2-score .rsform .rsform-block.rsform-block-submit .formControls {
  text-align: center;
}
.seo2-score .rsform .rsform-block.rsform-block-submit .formControls button {
  font-size: 18px;
  margin-top: -2px;
  padding: 17px 35px;
}
.free-talk .rsform .formControlLabel {
  display: none;
}
.free-talk .rsform .formResponsive {
  margin-bottom: 0;
}
.free-talk .rsform .formResponsive .rsform-block {
  float: left;
  width: 50%;
  margin-bottom: 10px;
}
.free-talk .rsform .formResponsive .rsform-block .formControlLabel {
  width: inherit;
}
.free-talk .rsform .formResponsive .rsform-block .formControls {
  margin: 0 10px 0 0;
}
.free-talk .rsform .formResponsive .rsform-block .formControls input {
  border: none;
  color: #828181;
  width: 86%;
}
.free-talk .rsform .formResponsive .rsform-block .formControls input::-moz-placeholder {
  color: #828181;
}
.free-talk .rsform .formResponsive .rsform-block .formControls input:-moz-placeholder {
  color: #828181;
}
.free-talk .rsform .formResponsive .rsform-block .formControls input::-webkit-input-placeholder {
  color: #828181;
}
.free-talk .rsform .formResponsive .rsform-block .formControls input:-ms-input-placeholder {
  color: #828181;
}
.free-talk .rsform .formResponsive .rsform-block .formControls .formDescription {
  margin: 0;
}
.free-talk .rsform .formResponsive .rsform-block.rsform-block-message {
  width: 100%;
}
.free-talk .rsform .formResponsive .rsform-block.rsform-block-message .formControls textarea {
  border: none;
  color: #828181;
}
.free-talk .rsform .formResponsive .rsform-block.rsform-block-message .formControls textarea::-moz-placeholder {
  color: #828181;
}
.free-talk .rsform .formResponsive .rsform-block.rsform-block-message .formControls textarea:-moz-placeholder {
  color: #828181;
}
.free-talk .rsform .formResponsive .rsform-block.rsform-block-message .formControls textarea::-webkit-input-placeholder {
  color: #828181;
}
.free-talk .rsform .formResponsive .rsform-block.rsform-block-message .formControls textarea:-ms-input-placeholder {
  color: #828181;
}
.free-talk .rsform .rsform-block.rsform-block-submit {
  width: 100%;
  margin-bottom: 0;
}
.free-talk .rt-socials {
  margin-top: 40px;
}
.free-talk .rt-socials ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.free-talk .rt-socials ul li {
  display: inline-block;
  margin-right: 5px;
}
.free-talk .rt-socials ul li a {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  display: block;
  font-size: 18px;
  height: 44px;
  width: 44px;
  padding: 0;
  line-height: 42px;
  text-align: center;
}
.free-talk .rt-socials ul li a::before {
  content: "";
  margin-right: 0;
}
.free-talk .rt-socials ul li .fa-facebook {
  color: #3e5880;
}
.free-talk .rt-socials ul li .fa-twitter {
  color: #29b6f6;
}
.free-talk .rt-socials ul li .fa-linkedin {
  color: #204fb8;
}
.free-talk .rt-socials ul li .fa-behance {
  color: #000000;
}
.free-talk .rt-socials ul li .fa-dribbble {
  color: #e91e63;
}
.free-talk .rt-socials ul li .fa-pinterest {
  color: #df1212;
}
.contact-form .rsform .formResponsive {
  margin-bottom: 0;
}
.contact-form .rsform .formControlLabel {
  display: none;
}
.contact-form .rsform .rsform-block {
  margin-bottom: 10px;
}
.contact-form .rsform .rsform-block .formControlLabel {
  width: inherit;
}
.contact-form .rsform .rsform-block .formControls {
  margin: 0;
}
.contact-form .rsform .rsform-block .formControls input {
  border: none;
  color: #828181;
}
.contact-form .rsform .rsform-block .formControls input::-moz-placeholder {
  color: #828181;
}
.contact-form .rsform .rsform-block .formControls input:-moz-placeholder {
  color: #828181;
}
.contact-form .rsform .rsform-block .formControls input::-webkit-input-placeholder {
  color: #828181;
}
.contact-form .rsform .rsform-block .formControls input:-ms-input-placeholder {
  color: #828181;
}
.contact-form .rsform .rsform-block .formControls textarea {
  border: none;
  color: #828181;
}
.contact-form .rsform .rsform-block .formControls textarea::-moz-placeholder {
  color: #828181;
}
.contact-form .rsform .rsform-block .formControls textarea:-moz-placeholder {
  color: #828181;
}
.contact-form .rsform .rsform-block .formControls textarea::-webkit-input-placeholder {
  color: #828181;
}
.contact-form .rsform .rsform-block .formControls textarea:-ms-input-placeholder {
  color: #828181;
}
.contact-form .rsform .rsform-block .formControls .formDescription {
  margin: 0;
}
.contact-form .rsform .rsform-block.rsform-block-message {
  width: 100%;
}
.contact-form .rsform .rsform-block.rsform-block-submit {
  width: 100%;
  margin-bottom: 0;
}
.contact-form .information .rt-socials {
  margin-top: 0;
}
.contact-form .information .rt-socials ul {
  margin-top: 30px;
}
.contact-form .information .rt-socials ul li {
  font-size: 18px;
  display: block;
  padding-bottom: 20px;
}
.contact-form .information .rt-socials ul li i {
  color: #ff6d00;
  padding-right: 12px;
}
.contact-form .information .rt-socials ul li:last-child {
  padding-bottom: 0;
}
.contact-form .rt-socials {
  margin-top: 50px;
}
.contact-form .rt-socials ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-form .rt-socials ul li {
  display: inline-block;
  margin-right: 5px;
}
.contact-form .rt-socials ul li a {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  display: block;
  font-size: 18px;
  height: 44px;
  width: 44px;
  line-height: 42px;
  text-align: center;
}
.contact-form .rt-socials ul li .fa-facebook {
  color: #3e5880;
}
.contact-form .rt-socials ul li .fa-twitter {
  color: #29b6f6;
}
.contact-form .rt-socials ul li .fa-linkedin {
  color: #204fb8;
}
.contact-form .rt-socials ul li .fa-behance {
  color: #000000;
}
.contact-form .rt-socials ul li .fa-dribbble {
  color: #e91e63;
}
.contact-form .rt-socials ul li .fa-pinterest {
  color: #df1212;
}
.get-quote .rsform .formResponsive {
  margin-bottom: 0;
}
.get-quote .rsform .formControlLabel {
  display: none;
}
/*=====  End of Check your website  ======*/
/*====================================
=            Services css            =
====================================*/
.service1-style .sppb-addon-feature {
  margin-bottom: 30px;
}
.service1-style .sppb-addon-feature .sppb-img-container {
  margin-bottom: 25px;
}
.service1-style .sppb-addon-feature .sppb-img-container img {
  -webkit-transition: all 0.7s ease-out;
  -moz-transition: all 0.7s ease-out;
  -ms-transition: all 0.7s ease-out;
  -o-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
}
.service1-style .sppb-addon-feature .sppb-addon-title {
  font-size: 20px;
  margin-bottom: 15px;
}
.service1-style .sppb-addon-feature .sppb-addon-title a {
  color: #111111;
  text-transform: capitalize;
}
.service1-style .sppb-addon-feature:hover .sppb-img-container img {
  -webkit-transform: scale(1.09);
  -moz-transform: scale(1.09);
  -ms-transform: scale(1.09);
  -o-transform: scale(1.09);
  transform: scale(1.09);
}
.service1-style .sppb-addon-feature:hover .sppb-addon-title a {
  color: #0d49a7;
}
.service2-style .sppb-addon-feature {
  margin-bottom: 70px;
}
.service2-style .sppb-addon-feature .sppb-img-container {
  margin-bottom: 25px;
  min-height: 80px;
}
.service2-style .sppb-addon-feature .sppb-img-container img {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.service2-style .sppb-addon-feature .sppb-addon-title {
  font-size: 20px;
  margin-bottom: 15px;
}
.service2-style .sppb-addon-feature .sppb-addon-title a {
  color: #111111;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.service2-style .sppb-addon-feature:hover .sppb-img-container img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.service2-style .sppb-addon-feature:hover .sppb-addon-title a {
  color: #0d49a7;
}
.service3-style .sppb-addon-feature {
  margin-bottom: 50px;
}
.service3-style .sppb-addon-feature .pull-left {
  margin-right: 25px;
  width: 100px;
}
.service3-style .sppb-addon-feature .sppb-img-container {
  margin-bottom: 25px;
}
.service3-style .sppb-addon-feature .sppb-img-container img {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.service3-style .sppb-addon-feature .sppb-addon-title {
  font-size: 24px;
  margin-bottom: 15px;
}
.service3-style .sppb-addon-feature .sppb-addon-title a {
  color: #111111;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.service3-style .sppb-addon-feature .ghost-btn-border {
  margin-top: 12px;
  padding: 11px 28px;
}
.service3-style .sppb-addon-feature:hover .sppb-addon-title a {
  color: #0d49a7;
}
.service4-style .sppb-addon-text-block {
  padding-right: 60px;
}
.service4-style .sppb-addon-text-block .service3-image {
  float: right;
  padding-left: 20px;
}
.service4-style .sppb-addon-text-block ul li {
  font-size: 16px;
  padding-bottom: 25px;
}
.service4-style .sppb-addon-text-block ul li:last-child {
  border-bottom: 0;
}
.service4-style .sppb-addon-text-block ul li::before {
  display: none;
}
.service4-style .sppb-addon-text-block ul li span.title {
  color: #111111;
  font-size: 22px;
  font-weight: 500;
  display: block;
  padding-bottom: 10px;
}
.service4-style .sppb-addon-text-block ul li span.title::before {
  color: #0d49a7;
  content: "\f0da";
  font-family: FontAwesome;
  padding-right: 20px;
}
.service4-style .sppb-addon-tab .sppb-tab-pane > div {
  float: left;
  width: 50%;
}
.service4-style .sppb-addon-tab ul.sppb-nav {
  background: #ff6d00;
  border-bottom: none;
}
.service4-style .sppb-addon-tab ul.sppb-nav li {
  border-right: 1px solid #df6001;
  margin-bottom: 0;
  width: 20%;
  text-align: center;
}
.service4-style .sppb-addon-tab ul.sppb-nav li a {
  position: relative;
  background: transparent;
  border: none;
  font-size: 60px;
  font-weight: 400;
  color: #ffffff;
  padding: 18px 5px;
}
.service4-style .sppb-addon-tab ul.sppb-nav li a i {
  margin-right: 0;
}
.service4-style .sppb-addon-tab ul.sppb-nav li a::after {
  position: absolute;
  content: "";
  bottom: -15px;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  margin: 0 auto;
  opacity: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 15px solid #ffffff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.service4-style .sppb-addon-tab ul.sppb-nav li.active a {
  background: rgba(17, 17, 17, 0.2);
}
.service4-style .sppb-addon-tab ul.sppb-nav li.active a::after {
  opacity: 1;
  bottom: 0;
}
.service4-style .sppb-addon-tab ul.sppb-nav li:hover a {
  background: rgba(17, 17, 17, 0.2);
}
.service4-style .sppb-addon-tab ul.sppb-nav li:hover a::after {
  opacity: 1;
  bottom: 0;
}
.service4-style .sppb-addon-tab ul.sppb-nav li:last-child {
  border-right: none;
}
.service4-style .sppb-addon-tab .sppb-tab-content {
  border: none;
  padding: 50px 0 0;
}
.service4-style .sppb-addon-tab .sppb-tab-content h3 {
  position: relative;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 30px;
  padding-bottom: 15px;
}
.service4-style .sppb-addon-tab .sppb-tab-content h3::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: #0d49a7;
  height: 3px;
  width: 50px;
}
.service5-style .sppb-column-addons > div:nth-child(even) {
  background: #f6f6f6;
}
.service5-style .sppb-addon-feature {
  width: 50%;
  margin: 0 auto;
  padding: 70px 0;
}
.service5-style .sppb-addon-feature .pull-left {
  margin-right: 25px;
  width: 100px;
}
.service5-style .sppb-addon-feature .sppb-img-container {
  margin-bottom: 25px;
}
.service5-style .sppb-addon-feature .sppb-img-container img {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.service5-style .sppb-addon-feature .sppb-addon-title {
  font-size: 30px;
  margin-bottom: 20px;
}
.service5-style .sppb-addon-feature .sppb-addon-title a {
  color: #111111;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.service5-style .sppb-addon-feature .ghost-btn-border {
  margin-top: 20px;
  padding: 12px 46px;
}
.service5-style .sppb-addon-feature:hover .sppb-addon-title a {
  color: #0d49a7;
}
/*=====  End of Services css  ======*/
/*=======================================
=            Skill style css            =
=======================================*/
.skill-style .sppb-addon-animated-number .sppb-animated-number {
  color: #ffffff;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}
.skill-style .sppb-addon-animated-number .sppb-animated-number-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.skill-style .sppb-addon-text-block {
  color: #ffffff;
}
/*=====  End of Skill style css  ======*/
/*========================================
=            Progress bar css            =
========================================*/
.progress-bar-style {
  margin-top: 10px;
}
.progress-bar-style .sppb-progress-label {
  color: #111111;
  font-size: 20px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 15px;
}
.progress-bar-style .sppb-progress-label span {
  font-weight: 500;
}
.progress-bar-style .sppb-progress {
  margin-bottom: 30px;
}
/*=====  End of Progress bar css  ======*/
/*========================================
=            Case studies css            =
========================================*/
.home-case1 .tlp-portfolio .layout1 .tlp-portfolio-item .tlp-item .tlp-overlay {
  background: rgba(13, 73, 167, 0.8);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  -moz-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  -ms-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  -o-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
}
.home-case1 .tlp-portfolio .layout1 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 30px 0 0;
}
.home-case1 .tlp-portfolio .layout1 .tlp-portfolio-item .tlp-content .tlp-content-holder h3 {
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1;
}
.home-case1 .tlp-portfolio .layout1 .tlp-portfolio-item .tlp-content .tlp-content-holder h3 a {
  color: #ffffff;
  font-weight: 500;
}
.home-case1 .tlp-portfolio .layout1 .tlp-portfolio-item .tlp-content .tlp-content-holder h3 a:hover {
  color: #ff6d00;
}
.home-case1 .tlp-portfolio .layout1 .tlp-portfolio-item .tlp-content .tlp-content-holder p {
  color: #c3c3c3;
}
.home-case1 .tlp-portfolio .layout1 .tlp-portfolio-item:hover .tlp-overlay {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}
.tlp-portfolio .pre-text {
  margin: 0;
}
.tlp-portfolio .button-group {
  margin-bottom: 50px;
  margin-left: 0;
}
.tlp-portfolio .button-group button {
  background: #f6f6f6;
  border: none;
  border-radius: 6px;
  color: #111111;
  margin-bottom: 5px;
  padding: 10px 30px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.tlp-portfolio .button-group button.selected {
  background: #ff6d00;
  color: #ffffff;
}
.tlp-portfolio .button-group button:hover {
  background: #ff6d00;
  color: #ffffff;
}
.tlp-portfolio .tlp-portfolio-item .tlp-overlay .link-icon {
  margin-top: 0 !important;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.55);
  -moz-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.55);
  -ms-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.55);
  -o-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.55);
  transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.55);
}
.tlp-portfolio .tlp-portfolio-item .tlp-overlay .link-icon a {
  background: #ffffff;
  border: none;
  border-radius: 50%;
  color: #111111;
  font-size: 20px;
  height: 44px;
  line-height: 44px;
  margin-right: 0;
  padding: 0;
  width: 44px;
}
.tlp-portfolio .tlp-portfolio-item .tlp-overlay .link-icon a i.fa:before {
  font-family: 'FontAwesome';
  content: "\f067";
}
.tlp-portfolio .layout1 .tlp-portfolio-item .tlp-item img {
  width: 100%;
}
.tlp-portfolio .layout1 .tlp-portfolio-item .tlp-item .tlp-overlay {
  background: rgba(13, 73, 167, 0.8);
}
.tlp-portfolio .layout1 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 25px 0 0;
}
.tlp-portfolio .layout1 .tlp-portfolio-item .tlp-content .tlp-content-holder h3 {
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1;
}
.tlp-portfolio .layout1 .tlp-portfolio-item .tlp-content .tlp-content-holder h3 a {
  color: #111111;
  font-size: 22px;
  font-weight: 500;
}
.tlp-portfolio .layout1 .tlp-portfolio-item .tlp-content .tlp-content-holder h3 a:hover {
  color: #ff6d00;
}
.tlp-portfolio .layout1 .tlp-portfolio-item .tlp-overlay {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  -moz-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  -ms-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  -o-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
}
.tlp-portfolio .layout1 .tlp-portfolio-item:hover .tlp-overlay {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}
.tlp-portfolio .layout2 .tlp-portfolio-item .tlp-overlay {
  background: rgba(13, 73, 167, 0.8);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  -moz-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  -ms-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  -o-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
}
.tlp-portfolio .layout2 .tlp-portfolio-item .tlp-overlay .link-icon li {
  width: inherit;
  height: inherit;
  line-height: inherit;
  border: none;
}
.tlp-portfolio .layout2 .tlp-portfolio-item .tlp-overlay .link-icon li a {
  color: #111111;
  padding: 0;
}
.tlp-portfolio .layout2 .tlp-portfolio-item .tlp-content {
  padding-right: 0;
}
.tlp-portfolio .layout2 .tlp-portfolio-item .tlp-content h3 {
  margin: 0 0 12px;
}
.tlp-portfolio .layout2 .tlp-portfolio-item .tlp-content h3 a {
  font-size: 22px;
  font-weight: 500;
  color: #111111;
}
.tlp-portfolio .layout2 .tlp-portfolio-item .tlp-content h3 a:hover {
  color: #0d49a7;
}
.tlp-portfolio .layout2 .tlp-portfolio-item:hover .tlp-overlay {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}
.tlp-portfolio .layout3 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 25px 0 0;
}
.tlp-portfolio .layout3 .tlp-portfolio-item .tlp-content h3 {
  margin: 0 0 12px;
}
.tlp-portfolio .layout3 .tlp-portfolio-item .tlp-content h3 a {
  font-size: 22px;
  font-weight: 500;
  color: #111111;
}
.tlp-portfolio .layout3 .tlp-portfolio-item .tlp-content h3 a:hover {
  color: #0d49a7;
}
.tlp-portfolio .layout3 .tlp-portfolio-item .tlp-item .tlp-overlay {
  background: rgba(13, 73, 167, 0.8);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  -moz-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  -ms-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  -o-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
}
.tlp-portfolio .layout3 .tlp-portfolio-item .tlp-item .tlp-overlay .link-icon {
  margin-bottom: 0;
}
.tlp-portfolio .layout3 .tlp-portfolio-item:hover .tlp-item .tlp-overlay {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}
.tlp-portfolio .layout11 .tlp-portfolio-item .tlp-overlay {
  background: transparent;
  opacity: 1;
}
.tlp-portfolio .layout11 .tlp-portfolio-item .tlp-overlay .item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 30px;
  -webkit-transition: all 1s cubic-bezier(0, 0, 0.15, 1.88);
  -moz-transition: all 1s cubic-bezier(0, 0, 0.15, 1.88);
  -ms-transition: all 1s cubic-bezier(0, 0, 0.15, 1.88);
  -o-transition: all 1s cubic-bezier(0, 0, 0.15, 1.88);
  transition: all 1s cubic-bezier(0, 0, 0.15, 1.88);
}
.tlp-portfolio .layout11 .tlp-portfolio-item .tlp-overlay .item-info h3 {
  font-weight: 500;
  padding: 0 0 8px;
}
.tlp-portfolio .layout11 .tlp-portfolio-item .tlp-overlay .item-info h3 a {
  font-size: 22px;
}
.tlp-portfolio .layout11 .tlp-portfolio-item .tlp-overlay .item-info p {
  padding: 2px 0 0;
  text-align: left;
}
.tlp-portfolio .layout11 .tlp-portfolio-item .tlp-overlay .item-info .link-icon {
  display: none;
}
.tlp-portfolio .layout11 .tlp-portfolio-item .tlp-overlay .item-info .line {
  margin: 0;
}
.tlp-portfolio .layout11 .tlp-portfolio-item .tlp-overlay::before {
  opacity: 0.8;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#111111), to(transparent));
  background-image: -webkit-linear-gradient(transparent, #111111);
  background-image: -moz-linear-gradient(transparent, #111111), -moz-linear-gradient(transparent, #111111);
  background-image: -o-linear-gradient(transparent, #111111), -o-linear-gradient(transparent, #111111);
  background-image: linear-gradient(transparent, #111111), linear-gradient(transparent, #111111);
  content: "";
  height: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
  -webkit-transition: all 1s cubic-bezier(0, 0, 0.15, 1.88);
  -moz-transition: all 1s cubic-bezier(0, 0, 0.15, 1.88);
  -ms-transition: all 1s cubic-bezier(0, 0, 0.15, 1.88);
  -o-transition: all 1s cubic-bezier(0, 0, 0.15, 1.88);
  transition: all 1s cubic-bezier(0, 0, 0.15, 1.88);
}
.tlp-portfolio .layout11 .tlp-portfolio-item:hover .tlp-overlay .item-info {
  bottom: 30px;
}
.tlp-portfolio .layout11 .tlp-portfolio-item:hover .tlp-overlay .line {
  margin: 5px 0;
}
.tlp-portfolio .layout11 .tlp-portfolio-item:hover .tlp-overlay::before {
  height: 90%;
  opacity: 0.9;
}
.tlp-portfolio .isotope1 .tlp-portfolio-item .tlp-item .tlp-overlay {
  background: rgba(13, 73, 167, 0.8);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  -moz-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  -ms-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  -o-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
}
.tlp-portfolio .isotope1 .tlp-portfolio-item .tlp-content .tlp-content-holder {
  padding: 25px 0 0;
}
.tlp-portfolio .isotope1 .tlp-portfolio-item .tlp-content .tlp-content-holder h3 {
  margin: 0 0 12px;
}
.tlp-portfolio .isotope1 .tlp-portfolio-item .tlp-content .tlp-content-holder h3 a {
  font-size: 22px;
  font-weight: 500;
  color: #111111;
}
.tlp-portfolio .isotope1 .tlp-portfolio-item .tlp-content .tlp-content-holder h3 a:hover {
  color: #0d49a7;
}
.tlp-portfolio .isotope1 .tlp-portfolio-item:hover .tlp-item .tlp-overlay {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}
.tlp-portfolio .layout10 .tlp-portfolio-item .tlp-overlay,
.tlp-portfolio .isotope8 .tlp-portfolio-item .tlp-overlay {
  background: rgba(13, 73, 167, 0.8);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  -moz-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  -ms-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  -o-transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
  transition: all 0.7s cubic-bezier(0, 0, 0.15, 1);
}
.tlp-portfolio .layout10 .tlp-portfolio-item .tlp-overlay .tlp-title,
.tlp-portfolio .isotope8 .tlp-portfolio-item .tlp-overlay .tlp-title {
  background: transparent;
  height: inherit;
  padding: 5px 20px;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 1s cubic-bezier(0, 0, 0.15, 1.88);
  -moz-transition: all 1s cubic-bezier(0, 0, 0.15, 1.88);
  -ms-transition: all 1s cubic-bezier(0, 0, 0.15, 1.88);
  -o-transition: all 1s cubic-bezier(0, 0, 0.15, 1.88);
  transition: all 1s cubic-bezier(0, 0, 0.15, 1.88);
}
.tlp-portfolio .layout10 .tlp-portfolio-item .tlp-overlay .tlp-title h3,
.tlp-portfolio .isotope8 .tlp-portfolio-item .tlp-overlay .tlp-title h3 {
  padding-top: 7px;
}
.tlp-portfolio .layout10 .tlp-portfolio-item .tlp-overlay .tlp-title h3 a,
.tlp-portfolio .isotope8 .tlp-portfolio-item .tlp-overlay .tlp-title h3 a {
  font-size: 22px;
}
.tlp-portfolio .layout10 .tlp-portfolio-item .tlp-overlay .tlp-title p,
.tlp-portfolio .isotope8 .tlp-portfolio-item .tlp-overlay .tlp-title p {
  margin-bottom: 0;
}
.tlp-portfolio .layout10 .tlp-portfolio-item .tlp-overlay .tlp-content,
.tlp-portfolio .isotope8 .tlp-portfolio-item .tlp-overlay .tlp-content {
  left: inherit;
  top: inherit;
  bottom: 0;
}
.tlp-portfolio .layout10 .tlp-portfolio-item .tlp-overlay .tlp-content .link-icon,
.tlp-portfolio .isotope8 .tlp-portfolio-item .tlp-overlay .tlp-content .link-icon {
  top: inherit;
  left: inherit;
  right: 15px;
  bottom: 0;
  text-align: right;
}
.tlp-portfolio .layout10 .tlp-portfolio-item .tlp-overlay .tlp-content .link-icon a,
.tlp-portfolio .isotope8 .tlp-portfolio-item .tlp-overlay .tlp-content .link-icon a {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  position: absolute;
  right: 0;
  line-height: 40px;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 1s cubic-bezier(0, 0, 0.15, 1.88);
  -moz-transition: all 1s cubic-bezier(0, 0, 0.15, 1.88);
  -ms-transition: all 1s cubic-bezier(0, 0, 0.15, 1.88);
  -o-transition: all 1s cubic-bezier(0, 0, 0.15, 1.88);
  transition: all 1s cubic-bezier(0, 0, 0.15, 1.88);
}
.tlp-portfolio .layout10 .tlp-portfolio-item .tlp-overlay .tlp-content .link-icon a i.fa:before,
.tlp-portfolio .isotope8 .tlp-portfolio-item .tlp-overlay .tlp-content .link-icon a i.fa:before {
  font-family: 'FontAwesome';
  content: "\f105";
}
.tlp-portfolio .layout10 .tlp-portfolio-item .tlp-overlay .tlp-content .link-icon a:hover,
.tlp-portfolio .isotope8 .tlp-portfolio-item .tlp-overlay .tlp-content .link-icon a:hover {
  background: #ffffff;
  color: #0d49a7;
}
.tlp-portfolio .layout10 .tlp-portfolio-item:hover .tlp-overlay .tlp-title,
.tlp-portfolio .isotope8 .tlp-portfolio-item:hover .tlp-overlay .tlp-title {
  -webkit-transform: translateY(90%);
  -moz-transform: translateY(90%);
  -ms-transform: translateY(90%);
  -o-transform: translateY(90%);
  transform: translateY(90%);
}
.tlp-portfolio .layout10 .tlp-portfolio-item:hover .tlp-content .link-icon a,
.tlp-portfolio .isotope8 .tlp-portfolio-item:hover .tlp-content .link-icon a {
  bottom: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.tlp-portfolio-detail .image-area h2 {
  text-transform: capitalize;
  text-align: left;
  line-height: 1;
}
.tlp-portfolio-detail .image-area .portfolio-slider {
  width: 100%;
}
.tlp-portfolio-detail h3 {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 500;
}
.tlp-portfolio-detail h3::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: #ff6d00;
  height: 3px;
  width: 50px;
}
.tlp-portfolio-detail ul {
  margin-bottom: 30px;
}
.tlp-portfolio-detail ul > li label {
  font-weight: 500;
  margin: 5px 0;
  position: relative;
}
.tlp-portfolio-detail ul > li label::before {
  font-family: 'FontAwesome';
  content: "\f058";
  color: #0d49a7;
  padding-right: 12px;
}
.tlp-portfolio-detail .owl-carousel .owl-nav > div {
  background: #ffffff;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border: none;
}
.tlp-portfolio-detail .owl-carousel .owl-nav > div i {
  display: block;
  color: #111111;
}
.tlp-portfolio-detail .owl-carousel .owl-nav > div:hover i {
  color: #ff6d00;
}
body .tlp-popup-wrap .tlp-popup-navigation-wrap {
  background: #0d49a7;
}
body .tlp-popup-wrap .tlp-portfolio-detail {
  padding-bottom: 40px;
}
/*=====  End of Case studies css  ======*/
/*=====================================
=            Accordion css            =
=====================================*/
.sppb-addon-accordion {
  padding-left: 0px;
}
.sppb-addon-accordion .sppb-panel-group .sppb-panel {
  background: transparent;
  border: none;
  margin-bottom: 5px;
}
.sppb-addon-accordion .sppb-panel-group .sppb-panel .sppb-panel-heading {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  padding: 15px 30px 15px 15px;
}
.sppb-addon-accordion .sppb-panel-group .sppb-panel .sppb-panel-heading .sppb-panel-title {
  font-weight: 500;
  font-size: 22px;
  color: #111111;
}
.sppb-addon-accordion .sppb-panel-group .sppb-panel .sppb-panel-heading .sppb-toggle-direction {
  color: #ff6d00;
  font-size: 20px;
}
.sppb-addon-accordion .sppb-panel-group .sppb-panel .sppb-panel-heading .sppb-toggle-direction i.fa::before {
  font-family: 'FontAwesome';
  content: "\f067";
}
.sppb-addon-accordion .sppb-panel-group .sppb-panel .sppb-panel-heading.active.sppb-panel-heading {
  border: 1px solid transparent;
  background: #ff6d00;
}
.sppb-addon-accordion .sppb-panel-group .sppb-panel .sppb-panel-heading.active.sppb-panel-heading .sppb-panel-title {
  color: #ffffff;
}
.sppb-addon-accordion .sppb-panel-group .sppb-panel .sppb-panel-heading.active .sppb-toggle-direction {
  color: #ffffff;
  top: 25%;
  -webkit-transform: translateY(0%) rotate(0deg);
  -moz-transform: translateY(0%) rotate(0deg);
  -ms-transform: translateY(0%) rotate(0deg);
  -o-transform: translateY(0%) rotate(0deg);
  transform: translateY(0%) rotate(0deg);
}
.sppb-addon-accordion .sppb-panel-group .sppb-panel .sppb-panel-heading.active .sppb-toggle-direction i.fa::before {
  font-family: 'FontAwesome';
  content: "\f068";
}
.sppb-addon-accordion .sppb-panel-group .sppb-panel .sppb-panel-body {
  border: none;
  padding: 25px 25px;
  color: #444444;
}
/*=====  End of Accordion css  ======*/
/*================================
=            Team css            =
================================*/
.mod-tlp-team-carousol .layout1 .single-team-area .tlp-content-layout1 {
  margin-bottom: 30px;
}
.tlp-team .tlp-row .single-team-area .overlay-element .detail-link a i {
  color: #ffffff;
  margin-top: 0;
  padding: 8px 10px;
}
.tlp-team .tlp-row .single-team-area .overlay-element .detail-link:hover a i {
  color: #0d49a7;
}
.tlp-team .tlp-row .single-team-area .social-icons a {
  background: #ffffff;
  border: none;
  border-radius: 50px;
  text-align: center;
  line-height: 44px;
  height: 44px;
  width: 44px;
}
.tlp-team .tlp-row .single-team-area .social-icons a i {
  color: #111111;
  display: inline;
  padding: 0;
}
.tlp-team .tlp-row .single-team-area .social-icons a:hover {
  opacity: 1;
}
.tlp-team .tlp-row .single-team-area .social-icons a:hover i {
  background: transparent;
  color: #0d49a7;
}
.tlp-team .layout1 {
  margin: 0;
}
.tlp-team .layout1 .single-team-area {
  position: relative;
  overflow: hidden;
}
.tlp-team .layout1 .single-team-area .overlay-element .detail-link {
  display: none;
}
.tlp-team .layout1 .single-team-area .overlay-element .detail-link a i {
  background: #ffffff;
  color: #111111;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-top: 0;
}
.tlp-team .layout1 .single-team-area .overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  background: rgba(255, 109, 0, 0.8);
}
.tlp-team .layout1 .single-team-area .overlay .overlay-element {
  top: 0;
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.tlp-team .layout1 .single-team-area .overlay .overlay-element {
  width: 100%;
}
.tlp-team .layout1 .single-team-area .overlay .social-icons {
  margin-top: 12px;
  padding: 0;
}
.tlp-team .layout1 .single-team-area .overlay .social-icons a {
  color: #111111;
}
.tlp-team .layout1 .single-team-area .tlp-content-layout1 {
  position: absolute;
  bottom: 0;
  left: -100%;
  right: 0;
  background: transparent;
  padding: 0 20px 30px;
  -webkit-transition: all 1s cubic-bezier(0, 0, 0.15, 1.33);
  -moz-transition: all 1s cubic-bezier(0, 0, 0.15, 1.33);
  -ms-transition: all 1s cubic-bezier(0, 0, 0.15, 1.33);
  -o-transition: all 1s cubic-bezier(0, 0, 0.15, 1.33);
  transition: all 1s cubic-bezier(0, 0, 0.15, 1.33);
}
.tlp-team .layout1 .single-team-area .tlp-content-layout1 h3 {
  padding: 25px 0 5px 0;
  font-weight: 500;
}
.tlp-team .layout1 .single-team-area .tlp-content-layout1 h3 a {
  font-size: 22px;
  color: #ffffff;
}
.tlp-team .layout1 .single-team-area .tlp-content-layout1 .tlp-position {
  color: #ffffff;
  padding: 0 0 10px 0;
  position: relative;
}
.tlp-team .layout1 .single-team-area .tlp-content-layout1 .tlp-position::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: #ffffff;
  height: 3px;
  width: 50px;
}
.tlp-team .layout1 .single-team-area:hover .tlp-content-layout1 {
  left: 0;
}
.tlp-team .layout3 .single-team-area figure {
  overflow: hidden;
}
.tlp-team .layout3 .single-team-area figure img {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.tlp-team .layout3 .single-team-area .tlp-content {
  padding: 15px 0 0;
}
.tlp-team .layout3 .single-team-area .tlp-content h3 {
  font-weight: 500;
  padding-top: 0;
  margin-bottom: 2px;
}
.tlp-team .layout3 .single-team-area .tlp-content h3 a {
  font-size: 22px;
  color: #111111;
}
.tlp-team .layout3 .single-team-area .tlp-content h3 a:hover {
  color: #0d49a7;
}
.tlp-team .layout3 .single-team-area .tlp-content .tlp-position {
  font-size: 16px;
  color: #646464;
  position: relative;
  padding-bottom: 10px;
}
.tlp-team .layout3 .single-team-area .tlp-content .tlp-position::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50px;
  background: #ff6d00;
}
.tlp-team .layout3 .single-team-area .short-bio {
  margin-top: 15px;
}
.tlp-team .layout3 .single-team-area .social-icons {
  padding-top: 5px;
  text-align: left;
}
.tlp-team .layout3 .single-team-area .social-icons a {
  background: transparent;
  width: 28px;
}
.tlp-team .layout3 .single-team-area .social-icons a i {
  color: #444444;
}
.tlp-team .layout3 .single-team-area:hover figure img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.tlp-team .layout6 .tlp-row2 .tlp-info-block {
  background: #0d49a7;
}
.tlp-team .layout6 .tlp-row2 .tlp-info-block .tlp-content {
  overflow: hidden;
  padding-bottom: 15px;
}
.tlp-team .layout6 .tlp-row2 .tlp-info-block .tlp-content h3 {
  margin-bottom: 4px;
}
.tlp-team .layout6 .tlp-row2 .tlp-info-block::after {
  display: none;
  border-color: #0d49a7 transparent transparent;
}
.tlp-team .layout6 .tlp-row2 .tlp-img-block .tlp-img {
  overflow: hidden;
}
.tlp-team .layout6 .tlp-row2 .tlp-img-block .tlp-img img {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.tlp-team .layout6 .tlp-row2 .tlp-img-block:hover .tlp-img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.tlp-team .tlp-team-detail {
  padding-bottom: 0 !important;
}
.tlp-team .tlp-team-detail > .row {
  margin-left: 15px;
  margin-right: 15px;
}
.tlp-team .tlp-team-detail .image-section {
  background: #0d49a7;
  padding: 40px 30px;
}
.tlp-team .tlp-team-detail .image-section img {
  border-radius: 50%;
}
.tlp-team .tlp-team-detail .tlp-content {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 12px;
}
.tlp-team .tlp-team-detail .tlp-content h3 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 5px;
}
.tlp-team .tlp-team-detail .tlp-content::after {
  background: #ff6d00;
  border-radius: 3px;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50px;
}
.tlp-team .tlp-team-detail .social-icons {
  text-align: left;
}
.tlp-team .tlp-team-detail .social-icons a {
  background: transparent;
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 0;
  width: 44px;
  height: 44px;
  line-height: 42px;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.tlp-team .tlp-team-detail .social-icons a i.fa {
  display: inline;
  color: #111111;
  padding: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.tlp-team .tlp-team-detail .social-icons a:hover i.fa {
  color: #0d49a7;
  opacity: 1;
}
.tlp-team .tlp-team-detail .short-bio {
  margin-top: 30px;
}
.tlp-team .tlp-team-detail .contact-info {
  padding-bottom: 20px;
}
.tlp-team .tlp-team-detail .contact-info a {
  color: #111111;
}
.tlp-team .tlp-team-detail .contact-info a:hover {
  color: #0d49a7;
}
.tlp-team .tlp-team-detail .tlp-team-skill {
  padding: 0;
}
.tlp-team .tlp-team-detail .tlp-team-skill .skill_name {
  font-size: 18px;
  margin-bottom: 10px;
}
.tlp-team .tlp-team-detail .tlp-team-skill .skill-prog {
  background: #f6f6f6;
  border: none;
  margin-bottom: 20px;
  height: 10px;
  border-radius: 0;
}
.tlp-team .tlp-team-detail .tlp-team-skill .skill-prog .fill {
  background: #0d49a7;
  border-radius: 0;
}
.tlp-team .tlp-team-detail .tlp-team-skill .skill-prog:last-child {
  margin-bottom: 0;
}
/*=====  End of Team css  ======*/
/*===============================================
=            Interested services css            =
===============================================*/
.interested-service {
  background: #0d49a7;
}
.interested-service .sppb-addon-raw-html {
  color: #ffffff;
  font-size: 18px;
}
.interested-service .sppb-addon-raw-html .sppb-addon-title {
  color: #ffffff;
  margin-bottom: 10px;
}
.interested-service .sppb-column-addons .sppb-text-center {
  text-align: right;
}
/*=====  End of Interested services css  ======*/
/*=======================================
=            Testimonial css            =
=======================================*/
.tss-wrapper .tss-layout3 .tss-single-item {
  margin-bottom: 0;
}
.tss-wrapper .tss-layout3 .single-item-wrapper {
  background: #ffffff;
  color: #111111;
  position: relative;
}
.tss-wrapper .tss-layout3 .single-item-wrapper .tss-meta-info .profile-img-wrapper {
  text-align: center;
}
.tss-wrapper .tss-layout3 .single-item-wrapper::before {
  display: none;
}
.tss-wrapper .tss-layout3 .single-item-wrapper .item-content-wrapper {
  background: transparent;
  padding: 0;
}
.tss-wrapper .tss-layout3 .single-item-wrapper .item-content-wrapper .author-name {
  color: #111111;
  margin-bottom: 5px;
}
.tss-wrapper .tss-layout3 .single-item-wrapper .item-content-wrapper .author-bio {
  color: #111111;
  margin-bottom: 12px;
}
.tss-wrapper .tss-layout3 .single-item-wrapper .item-content-wrapper .item-content {
  font-style: inherit;
  width: 65%;
  margin: 20px auto 0;
}
.tss-wrapper .tss-layout3 .single-item-wrapper .item-content-wrapper .item-content p {
  font-size: 22px;
  font-style: italic;
  margin-bottom: 0;
  margin-top: 20px;
}
.tss-wrapper .tss-layout3 .rt-carousel span.rt-slick-nav {
  background: transparent;
  line-height: 51px;
}
.tss-wrapper .tss-layout3 .rt-carousel span.rt-slick-nav:hover {
  background: #ff6d00;
  color: #ffffff;
}
.tss-wrapper .tss-layout4 .slick-slide {
  padding: 0;
}
.tss-wrapper .tss-layout4 .slick-slide .single-item-wrapper {
  background: transparent;
  display: inherit;
  overflow: hidden;
}
.tss-wrapper .tss-layout4 .slick-slide .single-item-wrapper .item-content-wrapper {
  color: #ffffff;
  padding: 0;
  position: relative;
}
.tss-wrapper .tss-layout4 .slick-slide .single-item-wrapper .item-content-wrapper .item-content {
  font-style: italic;
  padding: 5px 30px 20px 0px;
}
.tss-wrapper .tss-layout4 .slick-slide .single-item-wrapper .item-content-wrapper::before {
  font-family: 'FontAwesome';
  content: "\f10d";
  font-size: 20px;
}
.tss-wrapper .tss-layout4 .slick-slide .single-item-wrapper .tss-meta-info .tss-left {
  padding: 0;
  float: left;
}
.tss-wrapper .tss-layout4 .slick-slide .single-item-wrapper .tss-meta-info .tss-right {
  float: left;
  padding: 15px 0 0 25px;
}
.tss-wrapper .tss-layout4 .slick-slide .single-item-wrapper .tss-meta-info .author-name {
  color: #ffffff;
  margin-bottom: 5px;
}
.tss-wrapper .tss-layout4 .slick-slide .single-item-wrapper .tss-meta-info .author-bio {
  color: #ffffff;
  margin-bottom: 0px;
}
.tss-wrapper .tss-layout4 .slick-dots {
  margin-top: 0;
  text-align: left;
}
.tss-wrapper .tss-layout4 .slick-dots li button {
  border-color: #ffffff;
}
.tss-wrapper .tss-layout4 .slick-dots li.slick-active button {
  background: #ffffff;
}
/*=====  End of Testimonial css  ======*/
/*=======================================
=            Logo Slider css            =
=======================================*/
.logo-slider .rt-logo-showcase .rt-logo-item .single-logo-container img {
  padding: 0;
}
.logo-slider .rt-logo-showcase button {
  background: transparent;
  border: 2px solid #ff6d00;
  border-radius: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  height: 44px;
  width: 44px;
  z-index: 2;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.logo-slider .rt-logo-showcase button::before {
  color: #111111;
  font-size: 14px;
  line-height: 40px;
  opacity: 1;
}
.logo-slider .rt-logo-showcase button:hover {
  border: 2px solid transparent;
  background: #ff6d00;
}
.logo-slider .rt-logo-showcase button:hover::before {
  color: #ffffff;
}
.logo-slider .rt-logo-showcase .slick-prev {
  left: -20%;
}
.logo-slider .rt-logo-showcase .slick-prev::before {
  font-family: 'FontAwesome';
  content: "\f053";
}
.logo-slider .rt-logo-showcase .slick-next {
  right: -20%;
}
.logo-slider .rt-logo-showcase .slick-next::before {
  font-family: 'FontAwesome';
  content: "\f054";
}
.logo-slider .rt-logo-showcase:hover button {
  opacity: 1;
}
.logo-slider .rt-logo-showcase:hover .slick-prev {
  left: -3%;
}
.logo-slider .rt-logo-showcase:hover .slick-next {
  right: -3%;
}
/*=====  End of Logo Slider css  ======*/
/*=======================================
=            Latest blog css            =
=======================================*/
.latestblog ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.latestblog ul li {
  float: left;
  margin-bottom: 30px;
  padding: 0 15px;
  width: 33.33333%;
}
.latestblog .itemimageblock {
  position: relative;
  overflow: hidden;
}
.latestblog .itemimageblock img {
  display: inline-block;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.latestblog .itemimageblock::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.latestblog .itemimageblock:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.latestblog .itemimageblock:hover::before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}
.latestblog .moduleItemDateCreated {
  display: block;
  font-size: 18px;
  color: #707070;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
  padding-top: 20px;
}
.latestblog h3 {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-size: 22px;
}
.latestblog h3 .moduleItemTitle {
  color: #111111;
}
.latestblog h3 .moduleItemTitle:hover {
  color: #0d49a7;
}
.latestblog .moduleItemAuthor {
  display: inline-block;
}
.latestblog .moditemcomment {
  float: right;
}
.latestblog .moditemcomment .moduleItemComments {
  color: #444444;
}
.latestblog .moditemcomment i {
  color: #c5c5c5;
  font-size: 20px;
  padding-right: 5px;
}
/*=====  End of Latest blog css  ======*/
/*==========================================
=            Website faster css            =
==========================================*/
.website-faster {
  position: relative;
  overflow: hidden;
  padding: 0 30%;
}
.website-faster .sppb-addon-raw-html h3 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 0;
}
.website-faster .sppb-addon-raw-html p {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1.4;
}
.website-faster .sppb-addon-raw-html p i {
  padding-right: 8px;
}
.website-faster .sppb-column-addons .sppb-text-center {
  text-align: right;
}
/*=====  End of Website faster css  ======*/
/*==========================================
=            Pricing tables css            =
==========================================*/
.sppb-addon-pricing-table .sppb-pricing-box {
  background: #ffffff;
  color: #444444;
  margin: 0 1px 30px;
  -webkit-box-shadow: 0px 1px 0px 0px rgba(111, 111, 111, 0.3);
  -moz-box-shadow: 0px 1px 0px 0px rgba(111, 111, 111, 0.3);
  box-shadow: 0px 1px 0px 0px rgba(111, 111, 111, 0.3);
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
}
.sppb-addon-pricing-table .sppb-pricing-header {
  text-align: center;
  padding-top: 30px;
}
.sppb-addon-pricing-table .sppb-pricing-header .sppb-pricing-title {
  border-bottom: 1px solid #e4e4e4;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 35px;
  padding-bottom: 25px;
  text-transform: uppercase;
}
.sppb-addon-pricing-table .sppb-pricing-header span.sppb-pricing-price {
  font-size: 80px;
  font-weight: 500;
  margin-right: 5px;
  color: #111111;
}
.sppb-addon-pricing-table .sppb-pricing-header span.sppb-pricing-price span.sppb-pricing-price-symbol {
  font-size: 30px;
  color: #b3b3b3;
  font-weight: 400;
  margin-right: 5px;
}
.sppb-addon-pricing-table .sppb-pricing-features ul li {
  font-size: 15px;
  padding: 15px 20px;
}
.sppb-addon-pricing-table .sppb-pricing-features ul li:nth-child(2n) {
  background: #eaeff0;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
}
.sppb-addon-pricing-table .sppb-pricing-features ul li::before {
  color: #0d49a7;
  font-family: 'FontAwesome';
  content: "\f00c";
  font-size: 14px;
  padding-right: 5px;
}
.sppb-addon-pricing-table .sppb-pricing-footer {
  padding: 0 15px 30px;
}
.sppb-addon-pricing-table .sppb-pricing-footer .sppb-btn {
  display: block;
  background: #ff6d00;
  border: none;
  color: #ffffff;
  font-size: 16px;
  padding: 18px 25px;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-box-shadow: 0px 2px 1px 0px #6f6f6f;
  -moz-box-shadow: 0px 2px 1px 0px #6f6f6f;
  box-shadow: 0px 2px 1px 0px #6f6f6f;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.sppb-addon-pricing-table:hover .sppb-pricing-box {
  background: #0d49a7;
}
.sppb-addon-pricing-table:hover .sppb-pricing-header .sppb-pricing-title {
  color: #ffffff;
}
.sppb-addon-pricing-table:hover .sppb-pricing-header span.sppb-pricing-price {
  color: #ffffff;
}
.sppb-addon-pricing-table:hover .sppb-pricing-header span.sppb-pricing-price span.sppb-pricing-price-symbol {
  color: #ffffff;
}
.sppb-addon-pricing-table:hover .sppb-pricing-header .sppb-pricing-duration {
  color: #ffffff;
}
.sppb-addon-pricing-table:hover .sppb-pricing-features ul li {
  color: #ffffff;
}
.sppb-addon-pricing-table:hover .sppb-pricing-features ul li::before {
  color: #ffffff;
}
.sppb-addon-pricing-table:hover .sppb-pricing-features ul li:nth-child(2n) {
  background: #175ecd;
}
.sppb-addon-pricing-table:hover .sppb-pricing-footer .sppb-btn {
  color: #111111;
}
.sppb-addon-pricing-table:hover .sppb-pricing-footer .sppb-btn::before {
  left: 0;
}
/*=====  End of Pricing tables css  ======*/
/*==================================
=            Bottom css            =
==================================*/
#sp-bottom {
  padding: 100px 0;
}
#sp-bottom .sp-module h3.sp-module-title {
  color: #ffffff;
  position: relative;
  font-size: 24px;
  margin-bottom: 30px;
  text-transform: capitalize;
}
#sp-bottom .sp-module .sp-module-content {
  color: #c3c3c3;
}
#sp-bottom .sp-module .sp-module-content img {
  margin-bottom: 25px;
}
#sp-bottom ul li {
  border-bottom: none;
  list-style: none;
  margin-bottom: 9px;
  padding-bottom: 9px;
}
#sp-bottom ul li a {
  color: #c3c3c3;
  line-height: 24px;
  padding: 0;
}
#sp-bottom ul li a:hover {
  color: #ff6d00;
}
#sp-bottom ul li a:focus {
  background: transparent;
}
#sp-bottom ul li a::before {
  content: "";
  margin-right: 0;
}
#sp-bottom ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#sp-bottom ul li.lastItem {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#sp-bottom .latestnews > div {
  border-bottom: none;
  margin-bottom: 9px;
  padding-bottom: 9px;
}
#sp-bottom .latestnews > div > a {
  color: #c3c3c3;
}
#sp-bottom .latestnews > div > a:hover {
  color: #ff6d00;
}
#sp-bottom .latestnews > div:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#sp-bottom .bottom-address {
  margin-top: 30px;
}
#sp-bottom .bottom-address ul li i {
  padding-right: 8px;
  color: #ff6d00;
}
.footer-quote .rsformfooter-quote .formResponsive {
  margin-bottom: 0;
}
.footer-quote .rsformfooter-quote .formControlLabel {
  display: none;
}
.footer-quote .rsformfooter-quote .rsform-block {
  margin-bottom: 0px !important;
}
.footer-quote .rsformfooter-quote .rsform-block .formControlLabel {
  width: inherit;
}
.footer-quote .rsformfooter-quote .rsform-block .formControls {
  margin: 0;
}
.footer-quote .rsformfooter-quote .rsform-block .formControls input {
  background: #333333;
  border: none;
  border-radius: 3px;
  box-shadow: none;
  color: #828181;
  font-size: 15px;
  margin-bottom: 0;
  padding: 3px 10px;
  width: 92%;
  height: 32px;
}
.footer-quote .rsformfooter-quote .rsform-block .formControls input::-moz-placeholder {
  color: #828181;
}
.footer-quote .rsformfooter-quote .rsform-block .formControls input:-moz-placeholder {
  color: #828181;
}
.footer-quote .rsformfooter-quote .rsform-block .formControls input::-webkit-input-placeholder {
  color: #828181;
}
.footer-quote .rsformfooter-quote .rsform-block .formControls input:-ms-input-placeholder {
  color: #828181;
}
.footer-quote .rsformfooter-quote .rsform-block.rsform-block-message {
  width: 100%;
}
.footer-quote .rsformfooter-quote .rsform-block.rsform-block-message .formControls textarea {
  background: #333333;
  border: none;
  border-radius: 3px;
  box-shadow: none;
  color: #828181;
  font-size: 15px;
  padding: 3px 10px;
  width: 92%;
}
.footer-quote .rsformfooter-quote .rsform-block.rsform-block-message .formControls textarea::-moz-placeholder {
  color: #828181;
}
.footer-quote .rsformfooter-quote .rsform-block.rsform-block-message .formControls textarea:-moz-placeholder {
  color: #828181;
}
.footer-quote .rsformfooter-quote .rsform-block.rsform-block-message .formControls textarea::-webkit-input-placeholder {
  color: #828181;
}
.footer-quote .rsformfooter-quote .rsform-block.rsform-block-message .formControls textarea:-ms-input-placeholder {
  color: #828181;
}
.footer-quote .rsformfooter-quote .rsform-block.rsform-block-submit {
  width: 100%;
  margin-bottom: 0;
}
.footer-quote .rsformfooter-quote .rsform-block.rsform-block-submit button {
  position: relative;
  overflow: hidden;
  background: #0d49a7;
  color: #ffffff;
  border-radius: 3px;
  border: none;
  box-shadow: none;
  font-size: 15px;
  padding: 10px;
  text-align: center;
  text-shadow: none;
  width: 100%;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.footer-quote .rsformfooter-quote .rsform-block.rsform-block-submit button::before {
  background: #ff6d00;
  position: absolute;
  content: "";
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  z-index: -1;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
}
.footer-quote .rsformfooter-quote .rsform-block.rsform-block-submit button:hover::before {
  opacity: 1;
  left: 0;
}
.footer-social .rt-socials ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}
.footer-social .rt-socials ul li {
  border: none;
  display: inline-block;
  margin-right: 5px;
}
.footer-social .rt-socials ul li a {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  display: block;
  font-size: 18px;
  height: 36px;
  width: 36px;
  padding: 0;
  line-height: 34px;
  text-align: center;
}
.footer-social .rt-socials ul li a::before {
  content: "";
  margin-right: 0;
}
.footer-social .rt-socials ul li a:hover {
  background: rgba(255, 255, 255, 0.9);
}
.footer-social .rt-socials ul li .fa-facebook {
  color: #3e5880;
}
.footer-social .rt-socials ul li .fa-twitter {
  color: #29b6f6;
}
.footer-social .rt-socials ul li .fa-linkedin {
  color: #204fb8;
}
.footer-social .rt-socials ul li .fa-behance {
  color: #000000;
}
.footer-social .rt-socials ul li .fa-dribbble {
  color: #e91e63;
}
.footer-social .rt-socials ul li .fa-pinterest {
  color: #df1212;
}
#sp-footer #sp-footer1 {
  text-align: left;
}
#sp-footer .sp-copyright {
  color: #c3c3c3;
  font-size: 15px;
  line-height: 40px;
}
#sp-footer .sp-copyright a {
  color: #ffffff;
}
#sp-footer .sp-copyright a:hover {
  color: #0d49a7;
}
/*=====  End of Bottom css  ======*/
/*========================================
=            Inner banner css            =
========================================*/
#sp-title .sp-page-title {
  padding: 30px 0;
  position: relative;
  background: #0d49a7;
}
#sp-title .sp-page-title h2 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 500;
  position: relative;
  text-transform: capitalize;
  z-index: 1;
}
#sp-title .sp-page-title .breadcrumb {
  position: relative;
  z-index: 1;
}
#sp-title .sp-page-title .breadcrumb li {
  color: #c3c3c3;
}
#sp-title .sp-page-title .breadcrumb li:before {
  color: #c3c3c3;
}
#sp-title .sp-page-title .breadcrumb li a {
  color: #c3c3c3;
}
#sp-title .sp-page-title .breadcrumb li a:hover {
  color: #f6f6f6;
}
#sp-title .sp-page-title .breadcrumb li.active {
  color: #f6f6f6;
}
#sp-title .breadcrumb > li + li::before {
  content: "- ";
}
/*=====  End of Inner banner css  ======*/
/*======================================
=            About page css            =
======================================*/
.about1-section::before {
  position: absolute;
  content: "";
  background: #f6f6f6;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
}
.about1-section .sppb-addon-text-block {
  padding-left: 90px;
}
.about1-section .sppb-addon-single-image {
  padding-right: 90px;
}
.about2-section::after {
  position: absolute;
  content: "";
  background: #f42f3b;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
}
.about2-section .sppb-addon-text-block {
  padding-right: 90px;
}
.about2-section .sppb-addon-single-image {
  padding-left: 90px;
}
.about2-section .progress-bar-style {
  margin-top: 40px;
  padding-right: 90px;
}
.about3-section .sppb-addon-text-block {
  width: 70%;
  margin: 0 auto;
  padding-bottom: 60px;
  text-align: center;
}
.about3-section .sppb-addon-raw-html {
  text-align: center;
}
.about3-section .sppb-addon-raw-html img {
  display: inline-block;
}
/*=====  End of About page css  ======*/
/*===================================
=            Sidebar css            =
===================================*/
.custom-class .sp-module,
.class2 .sp-module {
  margin-top: 30px;
}
.custom-class .sp-module .sp-module-title,
.class2 .sp-module .sp-module-title {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 18px;
  font-size: 24px;
  font-weight: 500;
  text-transform: capitalize;
}
.custom-class .sp-module .sp-module-title::after,
.class2 .sp-module .sp-module-title::after {
  background: #ff6d00;
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 50px;
}
.custom-class .sp-module ul li,
.class2 .sp-module ul li {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 10px;
  padding-bottom: 10px;
  padding-top: 0;
}
.custom-class .sp-module ul li a,
.class2 .sp-module ul li a {
  line-height: inherit;
  padding: 0;
}
.custom-class .sp-module ul li a::before,
.class2 .sp-module ul li a::before {
  color: #ff6d00;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.custom-class .sp-module ul li:last-child,
.class2 .sp-module ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.custom-class .sidebar-menu ul li,
.class2 .sidebar-menu ul li {
  border: none;
  margin-bottom: 4px;
  padding-bottom: 0;
}
.custom-class .sidebar-menu ul li a,
.class2 .sidebar-menu ul li a {
  background: #f6f6f6;
  padding: 15px 15px;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.custom-class .sidebar-menu ul li a::after,
.class2 .sidebar-menu ul li a::after {
  background: rgba(255, 109, 0, 0.8);
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: -1;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.32, -0.28);
  -moz-transition: all 0.3s cubic-bezier(0, 0, 0.32, -0.28);
  -ms-transition: all 0.3s cubic-bezier(0, 0, 0.32, -0.28);
  -o-transition: all 0.3s cubic-bezier(0, 0, 0.32, -0.28);
  transition: all 0.3s cubic-bezier(0, 0, 0.32, -0.28);
}
.custom-class .sidebar-menu ul li a:hover,
.class2 .sidebar-menu ul li a:hover {
  color: #ffffff;
}
.custom-class .sidebar-menu ul li a:hover::before,
.class2 .sidebar-menu ul li a:hover::before {
  color: #ffffff;
}
.custom-class .sidebar-menu ul li a:hover::after,
.class2 .sidebar-menu ul li a:hover::after {
  opacity: 1;
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}
.custom-class .tss-layout4 .slick-slide .single-item-wrapper,
.class2 .tss-layout4 .slick-slide .single-item-wrapper {
  background: transparent;
  padding: 0;
}
.custom-class .tss-layout4 .slick-slide .single-item-wrapper .item-content-wrapper,
.class2 .tss-layout4 .slick-slide .single-item-wrapper .item-content-wrapper {
  color: #444444;
}
.custom-class .tss-layout4 .slick-slide .single-item-wrapper .item-content-wrapper .item-content,
.class2 .tss-layout4 .slick-slide .single-item-wrapper .item-content-wrapper .item-content {
  padding: 0px;
}
.custom-class .tss-layout4 .slick-slide .single-item-wrapper .item-content-wrapper::before,
.class2 .tss-layout4 .slick-slide .single-item-wrapper .item-content-wrapper::before {
  display: none;
}
.custom-class .tss-layout4 .slick-slide .single-item-wrapper .tss-meta-info .profile-img-wrapper,
.class2 .tss-layout4 .slick-slide .single-item-wrapper .tss-meta-info .profile-img-wrapper {
  float: left;
  margin: 0 20px 0 0;
  padding: 0;
}
.custom-class .tss-layout4 .slick-slide .single-item-wrapper .tss-meta-info .tss-right,
.class2 .tss-layout4 .slick-slide .single-item-wrapper .tss-meta-info .tss-right {
  padding: 10px 0 0;
}
.custom-class .tss-layout4 .slick-slide .single-item-wrapper .tss-meta-info .author-name,
.class2 .tss-layout4 .slick-slide .single-item-wrapper .tss-meta-info .author-name {
  color: #111111;
}
.custom-class .tss-layout4 .slick-slide .single-item-wrapper .tss-meta-info .author-bio,
.class2 .tss-layout4 .slick-slide .single-item-wrapper .tss-meta-info .author-bio {
  color: #444444;
}
.custom-class .tss-layout4 .slick-dots,
.class2 .tss-layout4 .slick-dots {
  margin-top: 15px;
  text-align: left;
}
.custom-class .tss-layout4 .slick-dots li,
.class2 .tss-layout4 .slick-dots li {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.custom-class .tss-layout4 .slick-dots li button,
.class2 .tss-layout4 .slick-dots li button {
  border: 2px solid #ff6d00;
}
.custom-class .tss-layout4 .slick-dots li.slick-active button,
.class2 .tss-layout4 .slick-dots li.slick-active button {
  background: #ff6d00;
}
.custom-class .search,
.class2 .search {
  position: relative;
  overflow: hidden;
}
.custom-class .search form input,
.class2 .search form input {
  border: 1px solid #e4e4e4;
  border-radius: 0px;
  box-shadow: none;
  float: left;
  padding: 0 8px;
  height: 46px;
  width: 85%;
}
.custom-class .search form button,
.class2 .search form button {
  background: #ff6d00;
  border: none;
  box-shadow: none;
  border-radius: 0px;
  font-size: 0;
  position: absolute;
  right: 1px;
  padding: 12px 14px;
}
.custom-class .search form button::after,
.class2 .search form button::after {
  content: "\f002";
  font-family: 'FontAwesome';
  font-size: 16px;
  color: #ffffff;
}
.custom-class .recentpost ul li,
.class2 .recentpost ul li {
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
}
.custom-class .recentpost ul li .moduleItemTitle,
.class2 .recentpost ul li .moduleItemTitle {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}
.custom-class .recentpost ul li.lastItem,
.class2 .recentpost ul li.lastItem {
  border-bottom: none;
  margin: 0;
  padding: 0;
}
.custom-class .recentpost ul li a::before,
.class2 .recentpost ul li a::before {
  content: "";
  margin-right: 0;
}
.custom-class .k2TagCloudBlock,
.class2 .k2TagCloudBlock {
  padding: 0;
}
.custom-class .k2TagCloudBlock a,
.class2 .k2TagCloudBlock a {
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  color: #111111;
  font-size: 14px;
  letter-spacing: 0px;
  display: inline-block;
  font-size: 14px !important;
  margin: 2px;
  padding: 8px 0;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 31%;
}
.custom-class .k2TagCloudBlock a:hover,
.class2 .k2TagCloudBlock a:hover {
  background: #0d49a7;
  border: 1px solid transparent;
  color: #ffffff;
  padding: 8px 0;
}
.custom-class .k2ArchivesBlock ul li span,
.class2 .k2ArchivesBlock ul li span {
  float: right;
}
.custom-class .latestnews small,
.class2 .latestnews small {
  color: #0d49a7;
  font-size: 14px;
  font-weight: 500;
}
.download-brochures .sp-module-content {
  background: #0d49a7;
  border-radius: 5px;
  padding: 30px 30px 40px;
}
.download-brochures .sp-module-content h3 {
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 40px;
}
.download-brochures .sp-module-content h3 span {
  font-weight: 600;
}
.download-brochures .sp-module-content p {
  margin-bottom: 0;
}
.download-brochures .sp-module-content a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  background: #ff6d00;
  border-radius: 5px;
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  padding: 12px 5px;
  width: 100%;
  z-index: 1;
}
.download-brochures .sp-module-content a::before {
  background: #f6f6f6;
  position: absolute;
  content: "";
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  z-index: -1;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.download-brochures .sp-module-content a:hover {
  color: #111111;
}
.download-brochures .sp-module-content a:hover::before {
  left: 0;
}
.do-far a {
  position: relative;
  overflow: hidden;
  display: block;
  background: #ff6d00;
  border-radius: 5px;
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  margin-top: 30px;
  padding: 12px 20px;
  z-index: 1;
}
.do-far a::before {
  background: #0d49a7;
  position: absolute;
  content: "";
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  z-index: -1;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.do-far a:hover {
  color: #ffffff;
}
.do-far a:hover::before {
  left: 0;
}
/*=====  End of Sidebar css  ======*/
/*===========================================
=            Content default css            =
===========================================*/
.blog .item .entry-image {
  margin-bottom: 20px;
}
.blog .item .entry-header {
  margin-bottom: 0;
}
.blog .item .entry-header h2 {
  font-size: 22px;
  margin-bottom: 18px;
  margin-top: 0;
}
.blog .item .entry-header h2 a:hover {
  color: #0d49a7;
}
.blog .item .readmore a.btn-default {
  position: relative;
  overflow: hidden;
  border: 2px solid #0d49a7;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  z-index: 1;
}
.blog .item .readmore a.btn-default::before {
  background: #0d49a7;
  position: absolute;
  content: "";
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
}
.blog .item .readmore a.btn-default:hover {
  color: #ffffff;
}
.blog .item .readmore a.btn-default:hover::before {
  left: 0;
}
.blog .item .article-info {
  margin-bottom: 12px;
}
.blog .item .article-info > dd {
  font-size: 14px;
  text-transform: capitalize;
}
.blog-featured h1 {
  font-size: 48px;
}
.blog-featured .entry-header {
  margin-bottom: 0;
}
.blog-featured .entry-header h2 {
  font-size: 22px;
  margin-bottom: 18px;
  margin-top: 0;
}
.blog-featured .entry-header h2 a:hover {
  color: #0d49a7;
}
.blog-featured .article-info {
  margin-bottom: 15px;
}
.blog-featured .article-info > dd {
  text-transform: capitalize;
  font-size: 14px;
}
.blog-featured .readmore a.btn-default {
  position: relative;
  overflow: hidden;
  border: 2px solid #0d49a7;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  z-index: 1;
}
.blog-featured .readmore a.btn-default::before {
  background: #0d49a7;
  position: absolute;
  content: "";
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
}
.blog-featured .readmore a.btn-default:hover {
  color: #ffffff;
}
.blog-featured .readmore a.btn-default:hover::before {
  left: 0;
}
.item-page {
  margin-bottom: 0px !important;
}
.item-page .entry-header {
  margin-bottom: 0;
}
.item-page .entry-header .article-info {
  font-size: 14px;
  margin-bottom: 12px;
}
.item-page .entry-header .article-info > dd {
  text-transform: capitalize;
}
.item-page .entry-header h2 {
  font-size: 26px;
  font-weight: 500;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.item-page .entry-header h2::after {
  position: absolute;
  content: "";
  background: #ff6d00;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50px;
}
.item-page .image-wrap {
  position: relative;
}
.item-page .image-wrap .content {
  position: absolute;
  right: 0;
  top: 30%;
  width: 50%;
}
.item-page .image-wrap .content p {
  font-style: italic;
}
.item-page h3 {
  font-size: 26px;
  font-weight: 500;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 30px;
}
.item-page h3::after {
  position: absolute;
  content: "";
  background: #ff6d00;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50px;
}
.item-page blockquote {
  background: #f6f6f6;
  color: #111111;
  padding: 30px 40px;
  font-style: italic;
  line-height: 28px;
  margin: 40px 0;
}
.item-page ul.benefits {
  margin-bottom: 20px;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
.item-page ul.benefits li {
  width: 50%;
  float: left;
  padding-bottom: 5px;
}
.item-page ul.benefits li::before {
  color: #ff6d00;
  content: "\f058";
  font-family: FontAwesome;
  font-size: 18px;
  padding-right: 10px;
}
.item-page ul.button {
  margin-bottom: 0px;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
.item-page ul.button li {
  margin-right: 10px;
  display: inline-block;
}
.item-page ul.button li a {
  position: relative;
  overflow: hidden;
  display: block;
  border: 2px solid #0d49a7;
  border-radius: 5px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: #111111;
  z-index: 1;
}
.item-page ul.button li a::before {
  background: #0d49a7;
  position: absolute;
  content: "";
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
}
.item-page ul.button li:first-child a {
  border: 2px solid #ff6d00;
}
.item-page ul.button li:first-child a::before {
  background: #ff6d00;
}
.item-page ul.button li:hover a {
  color: #ffffff;
}
.item-page ul.button li:hover a::before {
  left: 0;
}
.item-page .carousel .carousel-left {
  background: #ffffff;
  color: #111111;
  font-size: 18px;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  line-height: 40px;
}
.item-page .carousel .carousel-left:hover {
  background: #ff6d00;
  color: #ffffff;
}
.item-page .carousel .carousel-right {
  background: #ffffff;
  color: #111111;
  font-size: 18px;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  line-height: 40px;
}
.item-page .carousel .carousel-right:hover {
  background: #ff6d00;
  color: #ffffff;
}
.page-header {
  border: none;
  margin: 0;
  padding: 0;
}
#display-form .accordion-inner {
  padding: 0;
}
#display-form .contact-form form {
  background: transparent;
  border: none;
  box-shadow: none;
}
#display-form .contact-form form .control-group input,
#display-form .contact-form form .control-group textarea {
  border-radius: 0;
  box-shadow: none;
}
#display-form .contact-form form .control-group button {
  border-radius: 3px;
}
.login .group-control input {
  border: 1px solid #e4e4e4;
  box-shadow: none;
  border-radius: 3px;
  height: 46px;
}
.login .btn {
  border-radius: 3px;
  padding: 10px 20px;
}
.registration .group-control input {
  border: 1px solid #e4e4e4;
  box-shadow: none;
  border-radius: 3px;
  height: 46px;
}
.registration .btn {
  border-radius: 3px;
  padding: 10px 20px;
}
.search .btn-toolbar input {
  border: 1px solid #e4e4e4;
  border-radius: 0;
  box-shadow: none;
}
.search .btn-toolbar button {
  border-radius: 0;
}
.search select {
  border: 1px solid #e4e4e4;
  border-radius: 0;
  box-shadow: none;
}
.search legend {
  font-size: 24px;
}
.finder .word input {
  border: 1px solid #e4e4e4;
  border-radius: 0;
  box-shadow: none;
}
.finder .word button {
  border-radius: 0;
  opacity: 1;
}
.profile-edit .well {
  background: #f6f6f6;
  border-radius: 6px;
  box-shadow: none;
  border: none;
  margin-bottom: 0;
}
.sp-comingsoon-wrap {
  position: relative;
}
.sp-comingsoon-wrap::after {
  background: rgba(17, 17, 17, 0.4);
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.sp-comingsoon-wrap .sp-comingsoon-countdown > div {
  margin-bottom: 0px;
}
#sp-comingsoon {
  position: relative;
  z-index: 2;
}
#sp-comingsoon .sp-comingsoon-title {
  color: #ffffff;
  font-weight: 300;
  font-size: 80px;
  margin-top: 80px;
}
.error-page .error-page-inner {
  background-size: cover;
  background-position: center;
  position: relative;
}
.error-page .error-page-inner::after {
  background: #ffffff;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.error-page .error-page-inner > div {
  position: relative;
  z-index: 9;
}
.error-page .error-page-inner .error-code {
  font-size: 230px;
  letter-spacing: 15px;
  color: #111111;
}
.error-page .error-page-inner .error-code::first-letter {
  color: #0d49a7;
}
.error-page .error-page-inner .error-message {
  font-size: 30px;
  color: #111111;
}
.error-page .error-page-inner a.btn-primary {
  background: #0d49a7;
  border: none;
  font-size: 18px;
  font-weight: 500;
  padding: 19px 35px;
  letter-spacing: 1px;
}
.error-page .error-page-inner a.btn-primary i::before {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.error-page .error-page-inner a.btn-primary:hover {
  color: #ffffff;
}
.error-page .error-page-inner a.btn-primary:hover i::before {
  padding-right: 7px;
}
body .scrollup {
  background: #0d49a7;
  border: 2px solid #0d49a7;
  border-radius: 3px;
  height: 44px;
  width: 44px;
}
body .scrollup::before {
  color: #ffffff;
  line-height: 38px;
}
body .scrollup:hover {
  background: #0d3a81;
}
body .sp-pre-loader .sp-loader-circle {
  border: 3px solid #0d49a7;
}
body .sp-pre-loader .sp-loader-circle::after {
  background: #0d49a7;
}
/*=====  End of Content default css  ======*/
/*======================================
=            Pagination css            =
======================================*/
.itemListView .k2Pagination {
  margin-bottom: 0;
  padding: 0;
}
.itemListView .k2Pagination .pagination {
  margin: 0;
}
.itemListView .k2Pagination .pagination li a {
  background: #f6f6f6;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 500;
  margin: 0 5px;
  padding: 0;
  height: 44px;
  width: 44px;
  line-height: 44px;
  text-align: center;
}
.itemListView .k2Pagination .pagination li a:hover {
  background: #0d49a7;
  color: #ffffff;
}
.itemListView .k2Pagination .pagination li.active a {
  background: #0d49a7;
}
.pagination-wrapper {
  text-align: left;
}
.pagination-wrapper ul.pagination {
  margin-bottom: 0;
}
.pagination-wrapper ul.pagination li a {
  background: #f6f6f6;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 500;
  margin: 0 5px 5px;
  padding: 0;
  height: 44px;
  width: 44px;
  line-height: 44px;
  text-align: center;
  -webkit-box-shadow: 0px 1px 0px 0px rgba(222, 222, 222, 0.75);
  -moz-box-shadow: 0px 1px 0px 0px rgba(222, 222, 222, 0.75);
  box-shadow: 0px 1px 0px 0px rgba(222, 222, 222, 0.75);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.pagination-wrapper ul.pagination li a:hover {
  background: #0d49a7;
  color: #ffffff;
}
.pagination-wrapper ul.pagination li.active a {
  background: #0d49a7;
}
div.pagination {
  text-align: left;
  margin-bottom: 0;
  display: block;
}
div.pagination ul.pagination {
  margin-bottom: 0;
  display: inline-block;
}
div.pagination ul.pagination li a {
  background: #f6f6f6;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 500;
  margin: 0 5px 5px;
  padding: 0;
  height: 44px;
  width: 44px;
  line-height: 44px;
  text-align: center;
  -webkit-box-shadow: 0px 1px 0px 0px rgba(222, 222, 222, 0.75);
  -moz-box-shadow: 0px 1px 0px 0px rgba(222, 222, 222, 0.75);
  box-shadow: 0px 1px 0px 0px rgba(222, 222, 222, 0.75);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
div.pagination ul.pagination li a:hover {
  background: #0d49a7;
  color: #ffffff;
}
div.pagination ul.pagination li.active a {
  background: #0d49a7;
}
/*=====  End of Pagination css  ======*/
/*=========================================
=            Blog category css            =
=========================================*/
.itemListView {
  padding-bottom: 0 !important;
}
.bloglayout1 .catItemLinks {
  margin: 0;
}
.bloglayout1 .catItemBody {
  margin: 0px;
  padding: 0;
}
.bloglayout1 .catItemBody .catItemImageBlock {
  position: relative;
  margin: 0 0 30px 0;
  padding: 0 30px 0 0;
  float: left;
  width: 45%;
}
.bloglayout1 .catItemBody .catItemImageBlock .catItemImage {
  margin: 0;
  overflow: hidden;
  position: relative;
}
.bloglayout1 .catItemBody .catItemImageBlock .catItemImage::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.bloglayout1 .catItemBody .catItemImageBlock:hover .catItemImage::before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}
.bloglayout1 .catItemBody .catItemIntroText {
  padding: 0;
  width: 55%;
  float: left;
}
.bloglayout1 .catItemBody .catItemTitle {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 18px;
}
.bloglayout1 .catItemBody .catItemTitle a {
  color: #111111;
}
.bloglayout1 .catItemBody .catItemTitle a:hover {
  color: #0d49a7;
}
.bloglayout1 .catItemBody .catItemHeader .catItemDateCreated {
  display: block;
  color: #111111;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}
.bloglayout1 .catItemBody .catItemHeader .catItemCategory {
  display: inline-block;
  margin-right: 10px;
  padding: 0;
}
.bloglayout1 .catItemBody .catItemHeader .catItemCategory a {
  color: #444444;
}
.bloglayout1 .catItemBody .catItemHeader .catItemCategory a:hover {
  color: #ff6d00;
}
.bloglayout1 .catItemBody .catItemHeader .catItemAuthor {
  display: inline-block;
}
.bloglayout1 .catItemBody .catItemHeader .catItemAuthor a {
  color: #ff6d00;
}
.bloglayout1 .catItemBody .catItemReadMore {
  display: block;
  margin-top: 30px;
}
.bloglayout1 .catItemBody .catItemReadMore .k2ReadMore {
  position: relative;
  overflow: hidden;
  border: 2px solid #0d49a7;
  border-radius: 5px;
  color: #111111;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 25px;
  display: inline-block;
  z-index: 1;
}
.bloglayout1 .catItemBody .catItemReadMore .k2ReadMore::before {
  background: #0d49a7;
  position: absolute;
  content: "";
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  z-index: -1;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
}
.bloglayout1 .catItemBody .catItemReadMore .k2ReadMore::after {
  font-family: 'FontAwesome';
  content: "\f054";
  padding-left: 10px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.bloglayout1 .catItemBody .catItemReadMore .k2ReadMore:hover {
  color: #ffffff;
}
.bloglayout1 .catItemBody .catItemReadMore .k2ReadMore:hover::before {
  opacity: 1;
  left: 0;
}
.bloglayout1 .catItemBody .catItemReadMore .k2ReadMore:hover::after {
  padding-left: 15px;
}
.bloglayout2 .catItemLinks {
  margin: 0;
}
.bloglayout2 .catItemBody {
  margin: 0 15px 30px;
  padding: 0;
}
.bloglayout2 .catItemBody .catItemImageBlock {
  position: relative;
  margin: 0;
  padding: 0;
}
.bloglayout2 .catItemBody .catItemImageBlock .catItemImage {
  margin: 0;
  overflow: hidden;
  position: relative;
}
.bloglayout2 .catItemBody .catItemImageBlock .catItemImage::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.bloglayout2 .catItemBody .catItemImageBlock:hover .catItemImage::before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}
.bloglayout2 .catItemBody .catItemIntroText {
  padding: 0;
}
.bloglayout2 .catItemBody .catItemTitle {
  font-size: 20px;
  margin-bottom: 15px;
}
.bloglayout2 .catItemBody .catItemTitle a {
  color: #111111;
}
.bloglayout2 .catItemBody .catItemTitle a:hover {
  color: #0d49a7;
}
.bloglayout2 .catItemBody .catItemHeader {
  margin-top: 20px;
}
.bloglayout2 .catItemBody .catItemHeader .catItemDateCreated {
  display: block;
  color: #111111;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}
.bloglayout2 .catItemBody .catItemHeader .catItemCategory {
  display: inline-block;
  margin-right: 10px;
  padding: 0;
}
.bloglayout2 .catItemBody .catItemHeader .catItemCategory a {
  color: #444444;
}
.bloglayout2 .catItemBody .catItemHeader .catItemCategory a:hover {
  color: #ff6d00;
}
.bloglayout2 .catItemBody .catItemHeader .catItemAuthor {
  display: inline-block;
}
.bloglayout2 .catItemBody .catItemHeader .catItemAuthor a {
  color: #ff6d00;
}
.bloglayout2 .catItemBody .catItemReadMore {
  display: block;
  margin-top: 20px;
}
.bloglayout2 .catItemBody .catItemReadMore .k2ReadMore {
  color: #ff6d00;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  text-transform: uppercase;
}
.bloglayout2 .catItemBody .catItemReadMore .k2ReadMore::after {
  font-family: 'FontAwesome';
  content: "\f054";
  padding-left: 10px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.bloglayout2 .catItemBody .catItemReadMore .k2ReadMore:hover::after {
  padding-left: 15px;
}
.bloglayout3 .catItemLinks {
  margin: 0;
}
.bloglayout3 .catItemBody {
  margin: 0 0px 40px;
  padding: 0;
}
.bloglayout3 .catItemBody .catItemImageBlock {
  background: #f6f6f6;
  position: relative;
  margin: 0;
  padding: 0;
}
.bloglayout3 .catItemBody .catItemImageBlock .catItemImage {
  margin: 0;
  overflow: hidden;
  position: relative;
}
.bloglayout3 .catItemBody .catItemImageBlock .catItemImage::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.bloglayout3 .catItemBody .catItemImageBlock img {
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
}
.bloglayout3 .catItemBody .catItemImageBlock:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.bloglayout3 .catItemBody .catItemImageBlock:hover .catItemImage::before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}
.bloglayout3 .catItemBody .catItemIntroText {
  padding: 0;
}
.bloglayout3 .catItemBody .catItemTitle {
  font-size: 24px;
  margin-bottom: 15px;
}
.bloglayout3 .catItemBody .catItemTitle a {
  color: #111111;
}
.bloglayout3 .catItemBody .catItemTitle a:hover {
  color: #0d49a7;
}
.bloglayout3 .catItemBody .catItemHeader {
  margin-top: 20px;
}
.bloglayout3 .catItemBody .catItemHeader .catItemDateCreated {
  display: block;
  color: #111111;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}
.bloglayout3 .catItemBody .catItemHeader .catItemCategory {
  display: inline-block;
  margin-right: 10px;
  padding: 0;
}
.bloglayout3 .catItemBody .catItemHeader .catItemCategory a {
  color: #444444;
}
.bloglayout3 .catItemBody .catItemHeader .catItemCategory a:hover {
  color: #ff6d00;
}
.bloglayout3 .catItemBody .catItemHeader .catItemAuthor {
  display: inline-block;
}
.bloglayout3 .catItemBody .catItemHeader .catItemAuthor a {
  color: #ff6d00;
}
.bloglayout3 .catItemBody .catItemReadMore {
  display: block;
  margin-top: 20px;
}
.bloglayout3 .catItemBody .catItemReadMore .k2ReadMore {
  position: relative;
  overflow: hidden;
  border: 2px solid #0d49a7;
  border-radius: 5px;
  color: #111111;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 25px;
  display: inline-block;
  z-index: 1;
}
.bloglayout3 .catItemBody .catItemReadMore .k2ReadMore::before {
  background: #0d49a7;
  position: absolute;
  content: "";
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  z-index: -1;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -moz-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -ms-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  -o-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
}
.bloglayout3 .catItemBody .catItemReadMore .k2ReadMore::after {
  font-family: 'FontAwesome';
  content: "\f054";
  padding-left: 10px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.bloglayout3 .catItemBody .catItemReadMore .k2ReadMore:hover {
  color: #ffffff;
}
.bloglayout3 .catItemBody .catItemReadMore .k2ReadMore:hover::before {
  opacity: 1;
  left: 0;
}
.bloglayout3 .catItemBody .catItemReadMore .k2ReadMore:hover::after {
  padding-left: 15px;
}
/*=====  End of Blog category css  ======*/
/*============================================
=            Single Blog item css            =
=============================================*/
.rt-itemView {
  padding: 0 !important;
}
.rt-itemView .itemToolbar {
  background: transparent;
  margin: 0;
  padding: 0;
}
.rt-itemView .itemBody {
  margin: 0;
  padding: 0;
}
.rt-itemView .itemBody .itemImageBlock {
  margin: 0;
  padding: 0;
  position: relative;
}
.rt-itemView .itemBody .itemImageBlock .itemImage {
  margin: 0;
}
.rt-itemView .itemBody .itemHeader {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 30px;
  margin-top: 30px;
  padding-bottom: 20px;
}
.rt-itemView .itemBody .itemHeader .itemTitle {
  margin-bottom: 12px;
  padding: 10px 0 0;
  font-size: 26px;
}
.rt-itemView .itemBody .itemHeader .itemDateCreated {
  font-size: 22px;
  font-weight: 500;
  color: #111111;
  display: block;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}
.rt-itemView .itemBody .itemHeader .itemCategory {
  display: inline-block;
  margin-right: 10px;
}
.rt-itemView .itemBody .itemHeader .itemCategory a {
  color: #444444;
}
.rt-itemView .itemBody .itemHeader .itemAuthor {
  display: inline-block;
}
.rt-itemView .itemBody .itemHeader .itemAuthor a {
  color: #ff6d00;
}
.rt-itemView .itemBody .itemHeader a:hover {
  color: #ff6d00;
}
.rt-itemView .itemBody .itemFullText blockquote {
  border: none;
  display: flex;
  font-size: 22px;
  line-height: 28px;
  font-style: italic;
  margin: 30px 0;
  padding: 30px 40px;
}
.rt-itemView .itemBody .itemFullText blockquote p {
  text-decoration: underline;
  margin: 0;
}
.rt-itemView .itemBody .itemFullText blockquote:before {
  font-family: 'FontAwesome';
  content: "\f10d";
  color: #c7c7c7;
  padding-right: 15px;
}
.rt-itemView .itemLinks {
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  margin-top: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.rt-itemView .itemLinks .itemTagsBlock span {
  color: #111111;
  font-size: 24px;
  font-weight: 500;
}
.rt-itemView .itemLinks .itemTagsBlock ul li {
  display: inline-block;
}
.rt-itemView .itemLinks .itemTagsBlock ul li a {
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  padding: 6px 15px;
  color: #444444;
  font-size: 17px;
  font-weight: 500;
}
.rt-itemView .itemLinks .itemTagsBlock ul li a::before {
  content: "";
}
.rt-itemView .itemLinks .itemTagsBlock ul li a:hover {
  color: #ff6d00;
}
.rt-itemView .itemNavigation {
  background: #f6f6f6;
  margin: 50px 0 30px;
  padding: 25px 15px;
}
.rt-itemView .itemNavigation a {
  color: #444444;
  font-size: 18px;
  font-weight: 500;
}
.rt-itemView .itemNavigation a i {
  padding-right: 10px;
}
.rt-itemView .itemNavigation a:hover {
  color: #0d49a7;
}
.rt-itemView .itemNavigation a.itemPrevious {
  padding-right: 25px;
  padding-left: 0;
  padding-bottom: 12px;
  display: inline-block;
}
.rt-itemView .itemNavigation a.itemNext i {
  padding-left: 10px;
}
.rt-itemView .itemComments {
  background: transparent;
  border: none;
  margin-top: 40px;
  padding: 0;
}
.rt-itemView .itemComments h3 {
  position: relative;
  font-size: 26px;
  margin-bottom: 30px;
  padding-bottom: 12px;
  text-transform: capitalize;
}
.rt-itemView .itemComments h3:after {
  background: #ff6d00;
  border-radius: 0px;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50px;
}
.rt-itemView .itemComments ul.itemCommentsList {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 30px;
}
.rt-itemView .itemComments ul.itemCommentsList li {
  border-bottom: none;
  padding: 0 0 20px 0;
  margin-bottom: 20px;
}
.rt-itemView .itemComments ul.itemCommentsList li .author-image img {
  background: #f6f6f6;
  margin-right: 20px;
  height: 80px;
  width: 80px;
}
.rt-itemView .itemComments ul.itemCommentsList li .commentAuthorName {
  font-weight: 500;
  margin-right: 8px;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
}
.rt-itemView .itemComments ul.itemCommentsList li .commentAuthorName a {
  color: #111111;
}
.rt-itemView .itemComments ul.itemCommentsList li .commentDate {
  display: inline-block;
  border: none;
  margin: 0px;
  font-size: 16px;
  font-weight: 400;
  padding: 0;
}
.rt-itemView .itemComments ul.itemCommentsList li .commentLink a {
  background: #0d49a7;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  border-radius: 6px;
  padding: 6px 12px;
  text-decoration: none;
}
.rt-itemView .itemComments ul.itemCommentsList li .commentLink a:hover {
  font-size: 14px;
  background: #ff6d00;
  color: #ffffff;
  text-decoration: none;
}
.rt-itemView .itemComments ul.itemCommentsList li p {
  margin: 0;
  padding: 12px 0 0;
}
.rt-itemView .itemComments .itemCommentsForm .itemCommentsFormNotes {
  border: none;
}
.rt-itemView .itemComments .itemCommentsForm .form-validate label {
  display: none;
}
.rt-itemView .itemComments .itemCommentsForm .form-validate input {
  border-radius: 0px;
  box-shadow: 0 1px 2px #a1a1a1;
  background: #f6f6f6;
  border: none;
  margin-top: 20px;
  padding: 14px 8px;
  font-size: 14px;
}
.rt-itemView .itemComments .itemCommentsForm .form-validate textarea {
  border-radius: 0px;
  box-shadow: 0 1px 2px #a1a1a1;
  background: #f6f6f6;
  border: none;
  font-size: 14px;
}
.rt-itemView .itemComments .itemCommentsForm .form-validate input#submitCommentButton {
  background: #0d49a7;
  border: none;
  border-radius: 6px;
  box-shadow: none;
  color: #ffffff;
  font-size: 15px;
  margin-top: 30px;
  padding: 15px 25px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.rt-itemView .itemComments .itemCommentsForm .form-validate input#submitCommentButton:hover {
  background: #ff6d00;
  color: #ffffff;
}
/*=====  End of Single Blog item css  ======*/
/*======================================
=            Responsive css            =
======================================*/
@media only screen and (max-width: 1600px) {
  .slider-default-style .tp-caption.large_text {
    left: 140px !important;
  }
  .slider-default-style .tp-caption.small_text {
    left: 140px !important;
    width: 44%;
  }
  .slider-default-style .tp-caption.largewhitebg {
    left: 140px !important;
  }
}
@media only screen and (max-width: 1440px) {
  .seo1-score .rsform .rsform-block,
  .seo2-score .rsform .rsform-block {
    width: 35%;
  }
  .seo1-score .rsform .formResponsive .rsform-block .formControls input,
  .seo2-score .rsform .formResponsive .rsform-block .formControls input {
    width: 90%;
  }
}
@media only screen and (max-width: 1199px) {
  h1,
  .blog-featured h1 {
    font-size: 42px;
  }
  #sp-menu .sp-megamenu-parent > li > a {
    font-size: 16px;
    padding: 0 8px;
  }
  #sp-menu .sp-megamenu-parent .menu-justify .sp-dropdown .sp-dropdown-inner {
    padding: 8px;
  }
  .free-analysis .sppb-column-addons .sppb-text-center a {
    font-size: 15px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .slider-default-style .tp-caption.large_text {
    left: 100px !important;
    font-size: 40px !important;
    line-height: 40px !important;
  }
  .slider-default-style .tp-caption.small_text {
    left: 100px !important;
    width: 43%;
    font-size: 16px !important;
    line-height: 22px !important;
    margin-top: 9px !important;
  }
  .slider-default-style .tp-caption.largewhitebg {
    left: 100px !important;
    margin-top: 50px !important;
  }
  #sp-page-builder .sppb-section-title .sppb-title-heading {
    width: 75%;
  }
  .website-faster .sppb-addon-raw-html h3,
  .website-faster .sppb-addon-raw-html p {
    font-size: 23px;
    text-align: center;
  }
  .tss-wrapper .tss-layout3 .single-item-wrapper .item-content-wrapper .item-content {
    width: 70%;
  }
  #sp-title .sp-page-title {
    padding: 70px 0;
  }
  #sp-title .sp-page-title h2 {
    font-size: 40px;
  }
  .about1-section .sppb-addon-single-image,
  .about2-section .sppb-addon-text-block,
  .about2-section .progress-bar-style {
    padding-right: 30px;
  }
  .about1-section .sppb-addon-text-block,
  .about2-section .sppb-addon-single-image {
    padding-left: 30px;
  }
  .service5-style .sppb-addon-feature {
    width: 70%;
  }
  .bloglayout1 .catItemBody .catItemIntroText {
    margin-bottom: 40px;
  }
  .free-talk .rsform .formResponsive .rsform-block .formControls {
    margin: 0;
  }
  .free-talk .rsform .formResponsive .rsform-block .formControls input {
    width: 84%;
  }
  .rsform .formResponsive .rsform-block .formControls input,
  .rsform .formResponsive .rsform-block .formControls textarea {
    width: 92%;
  }
}
@media (min-width: 922px) and (max-width: 1199px) {
  .footer-quote .rsformfooter-quote .rsform-block .formControls input,
  .footer-quote .rsformfooter-quote .rsform-block.rsform-block-message .formControls textarea {
    width: 90%;
  }
  .footer-quote .rsformfooter-quote .rsform-block.rsform-block-submit button {
    width: 99%;
  }
  .custom-class .k2TagCloudBlock a,
  .class2 .k2TagCloudBlock a {
    width: 48%;
  }
}
@media only screen and (max-width: 991px) {
  h1,
  .blog-featured h1 {
    font-size: 36px;
  }
  h2,
  #sp-page-builder .sppb-section-title .sppb-title-heading {
    font-size: 32px;
  }
  .slider-default-style .tp-caption.large_text {
    left: 15px !important;
    font-size: 36px !important;
    line-height: 36px !important;
  }
  .slider-default-style .tp-caption.small_text {
    left: 15px !important;
    width: 50%;
    margin-top: 12px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
  }
  .slider-default-style .tp-caption.largewhitebg {
    left: 15px !important;
    margin-top: 20px !important;
  }
  .slider-default-style .tp-caption.largewhitebg a {
    padding: 12px 30px !important;
  }
  .tss-wrapper .tss-layout3 .single-item-wrapper .item-content-wrapper .item-content {
    width: 80%;
  }
  #sp-page-builder .sppb-section-title .sppb-title-heading {
    width: 90%;
  }
  .about3-section .sppb-addon-text-block {
    width: 90%;
    padding-bottom: 30px;
  }
  .service2-style .sppb-addon-feature {
    margin-bottom: 50px;
  }
  .service4-style .sppb-addon-tab .sppb-tab-pane > div {
    width: 100%;
  }
  .service4-style .sppb-addon-single-image {
    margin-top: 30px;
  }
  .service4-style .sppb-addon-text-block {
    padding-right: 0;
  }
  .service5-style .sppb-addon-feature {
    width: 80%;
  }
  .service5-style .sppb-addon-feature .sppb-addon-title {
    font-size: 24px;
  }
  .free-talk .rsform {
    margin-top: 50px;
  }
  .item-page .row > div > img {
    margin-bottom: 30px;
  }
  .sp-page-builder .page-content .free-talk {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .download-brochures .sp-module-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .tlp-portfolio .layout3 .tlp-portfolio-item .tlp-content h3 a,
  .tlp-portfolio .layout2 .tlp-portfolio-item .tlp-content h3 a,
  .tlp-portfolio .layout1 .tlp-portfolio-item .tlp-content .tlp-content-holder h3 a,
  .sppb-addon-accordion .sppb-panel-group .sppb-panel .sppb-panel-heading .sppb-panel-title,
  .latestblog h3 {
    font-size: 20px;
  }
  #sp-title .sp-page-title {
    padding: 60px 0;
    text-align: center;
  }
  #sp-title .sp-page-title h2 {
    font-size: 36px;
  }
  .bloglayout1 .catItemBody .catItemHeader .catItemDateCreated,
  .bloglayout3 .catItemBody .catItemHeader .catItemDateCreated {
    font-size: 20px;
  }
  .bloglayout1 .catItemBody .catItemTitle {
    font-size: 24px;
  }
  .rsform .formResponsive .rsform-block .formControls input,
  .rsform .formResponsive .rsform-block .formControls textarea {
    width: 90%;
  }
  .error-page .error-page-inner .error-code {
    font-size: 185px;
  }
  body #sp-main-body,
  body #sp-bottom {
    padding: 80px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .interested-service .sppb-column-addons a.sppb-btn,
  .website-faster .sppb-column-addons a.sppb-btn {
    padding-left: 12px;
    padding-right: 12px;
  }
  .latestblog .moditemcomment {
    float: inherit;
  }
  .custom-class .k2TagCloudBlock a,
  .class2 .k2TagCloudBlock a {
    width: 99%;
  }
  .footer-quote .rsformfooter-quote .rsform-block.rsform-block-submit button {
    width: 98%;
  }
  .seo1-score .rsform .formResponsive .rsform-block .formControls input,
  .seo2-score .rsform .formResponsive .rsform-block .formControls input {
    width: 88%;
  }
  .free-talk .rsform .formResponsive .rsform-block .formControls input {
    width: 86%;
  }
  .free-talk .rsform .formResponsive .rsform-block .formControls textarea {
    width: 93%;
  }
}
@media only screen and (max-width: 768px) {
  #sp-bottom3,
  #sp-bottom4 {
    margin-top: 40px;
  }
  #sp-footer2 {
    padding-left: 0;
  }
  .footer-social .rt-socials ul li {
    margin-right: 0;
  }
  .footer-social .rt-socials ul li a {
    height: 34px;
    width: 34px;
    line-height: 34px;
  }
  #sp-footer .sp-copyright {
    line-height: 34px;
  }
}
@media only screen and (max-width: 767px) {
  h1,
  .blog-featured h1 {
    font-size: 30px;
  }
  h2,
  #sp-page-builder .sppb-section-title .sppb-title-heading,
  .service4-style .sppb-addon-tab .sppb-tab-content h3,
  .tlp-team .tlp-team-detail .tlp-content h3 {
    font-size: 26px;
  }
  #header2-style #offcanvas-toggler i {
    color: #111111;
  }
  #header2-style .slider-default-style {
    margin-top: 0;
  }
  #header2-style #sp-header.menu-fixed {
    background: #ffffff !important;
  }
  body #sp-header {
    height: 70px;
  }
  body #sp-header .logo {
    height: 70px;
  }
  #sp-menu #offcanvas-toggler {
    line-height: 70px;
  }
  .slider-default-style .tp-caption.large_text {
    left: 0px !important;
    font-size: 30px !important;
    line-height: 30px !important;
    width: 100%;
    text-align: center;
  }
  .slider-default-style .tp-caption.small_text {
    display: none;
  }
  .slider-default-style .tp-caption.roundedimage {
    display: none;
  }
  .slider-default-style .tp-caption.largewhitebg {
    left: 0px !important;
    margin-top: 0px !important;
    width: 100%;
    text-align: center;
  }
  .slider-default-style .tp-caption.largewhitebg a {
    padding: 10px 30px !important;
  }
  #sp-title .sp-page-title {
    padding: 50px 0;
  }
  #sp-title .sp-page-title h2 {
    font-size: 30px;
  }
  .seo1-score .rsform .rsform-block,
  .seo2-score .rsform .rsform-block {
    width: 100%;
    text-align: center;
  }
  .seo1-score .rsform .formResponsive .rsform-block .formControls input,
  .seo2-score .rsform .formResponsive .rsform-block .formControls input {
    width: 88% !important;
  }
  .seo1-score .rsform .rsform-block.rsform-block-submit .formControls button,
  .seo2-score .rsform .rsform-block.rsform-block-submit .formControls button {
    margin-top: 20px;
  }
  .interested-service .sppb-column-addons .sppb-text-center,
  .interested-service .sppb-addon-raw-html,
  .website-faster .sppb-column-addons .sppb-text-center,
  #sp-top-bar .sp-module ul {
    text-align: center;
  }
  .website-faster .sppb-addon-raw-html h3,
  .website-faster .sppb-addon-raw-html p {
    margin-bottom: 15px;
  }
  .about3-section .sppb-addon-raw-html .popup-youtube {
    margin-top: 0;
  }
  .sppb-addon-single-image,
  .progress-bar-style {
    margin-top: 30px;
  }
  .seo1-score {
    padding: 70px 0 70px !important;
    background-image: none !important;
  }
  #sp-bottom2 {
    margin-top: 40px;
  }
  .custom-class {
    margin-bottom: 90px;
  }
  .class2 {
    margin-top: 90px;
  }
  .latestblog ul li {
    width: 100%;
  }
  #sp-page-builder .sppb-section-title .sppb-title-heading {
    width: 90%;
  }
  #sp-page-builder .sppb-section-title.sppb-text-center .sppb-title-subheading {
    max-width: 95%;
    letter-spacing: 0;
  }
  .tss-wrapper .tss-layout3 .single-item-wrapper .item-content-wrapper .item-content p {
    font-size: 18px;
  }
  .sp-page-builder .page-content .sppb-section.skill-style {
    background-color: #fd8129 !important;
  }
  .skill-style .sppb-addon-text-block {
    margin-bottom: 30px;
  }
  .logo-slider .rt-logo-showcase .rt-carousel .rt-logo-item {
    margin-bottom: 30px;
  }
  .footer-quote .rsformfooter-quote .rsform-block .formControls input,
  .footer-quote .rsformfooter-quote .rsform-block.rsform-block-message .formControls textarea {
    width: 92% !important;
  }
  .footer-quote .rsformfooter-quote .rsform-block.rsform-block-submit button {
    width: 98%;
  }
  #sp-footer .sp-copyright {
    line-height: inherit;
  }
  #sp-footer #sp-footer1 {
    text-align: center;
  }
  .footer-social .rt-socials ul {
    text-align: center;
    margin-top: 15px;
  }
  .tss-wrapper .tss-layout4 .slick-slide .single-item-wrapper .item-content-wrapper .item-content {
    padding-right: 0;
  }
  .about1-section .sppb-addon-single-image,
  .about2-section .sppb-addon-text-block,
  .about2-section .progress-bar-style {
    padding-right: 0px;
  }
  .about1-section .sppb-addon-text-block,
  .about2-section .sppb-addon-single-image {
    padding-left: 0px;
  }
  .about1-section::before {
    width: 100%;
  }
  .about2-section::after {
    background: transparent;
  }
  .about1-section .sppb-addon-single-image {
    margin-bottom: 30px;
  }
  .service2-style .sppb-addon-feature {
    margin-bottom: 30px;
  }
  .service4-style .sppb-addon-tab ul.sppb-nav li a {
    font-size: 30px;
  }
  .service5-style .sppb-addon-feature {
    width: 90%;
  }
  .service5-style .sppb-addon-feature .sppb-addon-title,
  .service3-style .sppb-addon-feature .sppb-addon-title {
    font-size: 22px;
  }
  .item-page ul.benefits li {
    width: 100%;
  }
  .free-talk .rsform .formResponsive .rsform-block .formControls input,
  .free-talk .rsform .formResponsive .rsform-block .formControls textarea {
    width: 92% !important;
  }
  .free-talk .rsform .formResponsive .rsform-block {
    float: none;
    width: inherit;
  }
  .bloglayout1 .catItemBody .catItemImageBlock {
    padding: 0;
    width: 100%;
  }
  .bloglayout1 .catItemBody .catItemImageBlock img,
  .bloglayout2 .catItemBody .catItemImageBlock img {
    width: 100% !important;
  }
  .bloglayout1 .catItemBody .catItemIntroText {
    width: 100%;
  }
  .bloglayout1 .catItemBody .catItemTitle,
  .bloglayout3 .catItemBody .catItemTitle {
    font-size: 20px;
  }
  .tlp-team .tlp-team-detail .social-icons {
    margin-bottom: 30px;
  }
  .error-page .error-page-inner .error-code {
    font-size: 120px;
  }
  .error-page .error-page-inner .error-message {
    font-size: 24px;
  }
  .sppb-addon-raw-html .popup-youtube {
    display: block;
    margin-top: 30px;
  }
  body #sp-main-body,
  body #sp-bottom {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 480px) {
  .service3-style .sppb-addon-feature .pull-left {
    width: 60px;
  }
  .item-page ul.button li {
    display: block;
    text-align: center;
    margin-top: 20px;
  }
  .free-talk .rsform .formResponsive .rsform-block .formControls input,
  .free-talk .rsform .formResponsive .rsform-block .formControls textarea,
  .rsform .formResponsive .rsform-block .formControls input,
  .rsform .formResponsive .rsform-block .formControls textarea {
    width: 88% !important;
  }
  .tlp-portfolio .layout10 .tlp-portfolio-item .tlp-overlay .tlp-title h3 a,
  .tlp-portfolio .isotope8 .tlp-portfolio-item .tlp-overlay .tlp-title h3 a,
  .tlp-portfolio .layout11 .tlp-portfolio-item .tlp-overlay .item-info h3 a,
  .service5-style .sppb-addon-feature .sppb-addon-title,
  .service3-style .sppb-addon-feature .sppb-addon-title,
  .service4-style .sppb-addon-text-block ul li span.title {
    font-size: 20px;
  }
  .tlp-portfolio .button-group button,
  .tlp-portfolio .layout2 .tlp-portfolio-thum,
  .tlp-portfolio .layout2 .tlp-portfolio-item .tlp-content {
    width: 100%;
  }
  .isotope1 .tlp-portfolio-item,
  .isotope8 .tlp-portfolio-item {
    padding: 0;
  }
  .tlp-portfolio .layout2 .tlp-portfolio-item .tlp-content {
    padding-left: 0;
    padding-top: 20px;
  }
  .tlp-portfolio .layout2 .tlp-portfolio-item .tlp-content p {
    margin-bottom: 0;
  }
  .free-talk .rt-socials ul li {
    margin-right: 2px;
  }
  .rt-itemView .itemLinks .itemTagsBlock ul li a {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 14px;
  }
  .rt-itemView .itemBody .itemFullText blockquote {
    padding-right: 10px;
    padding-left: 10px;
  }
  .progress-bar-style .sppb-progress-label {
    font-size: 16px;
  }
  .finder .word input,
  .search .btn-toolbar input {
    margin-bottom: 15px;
    width: 100%;
  }
  .profile-edit .controls .btn.btn-small {
    display: block;
    margin-top: 15px;
  }
  .category-list .content-category form,
  .blog-featured form {
    overflow-x: scroll;
  }
  .category-list .content-category form table.category tr td,
  .blog-featured form table.category tr td {
    white-space: nowrap;
  }
  .skill-style .sppb-addon-text-block,
  .skill-style .sppb-addon-animated-number,
  .home-case1 .tlp-portfolio .layout1 .tlp-portfolio-item .tlp-content .tlp-content-holder h3,
  .home-case1 .tlp-portfolio .layout1 .tlp-portfolio-item .tlp-content .tlp-content-holder p {
    text-align: center;
  }
}
@media only screen and (max-width: 320px) {
  .slider-default-style .tp-caption.large_text {
    font-size: 24px !important;
    line-height: 24px !important;
    margin-top: -20px !important;
  }
  .slider-default-style .tp-caption.largewhitebg {
    margin-top: -20px !important;
  }
  .latestblog .moditemcomment {
    float: inherit;
  }
  .free-talk .rt-socials ul li {
    margin-right: 1px;
  }
  .free-talk .rt-socials ul li a,
  .contact-form .rt-socials ul li a {
    height: 36px;
    width: 36px;
    line-height: 36px;
  }
  .free-talk .rsform .formResponsive .rsform-block .formControls input,
  .free-talk .rsform .formResponsive .rsform-block .formControls textarea,
  .rsform .formResponsive .rsform-block .formControls input,
  .rsform .formResponsive .rsform-block .formControls textarea {
    width: 86% !important;
  }
  .rt-itemView .itemLinks .itemTagsBlock ul li {
    padding-right: 0;
  }
  .tlp-team .tlp-team-detail .social-icons a {
    margin-right: 5px;
  }
  .profile-edit .well {
    padding: 20px 10px;
  }
  .seo1-score {
    padding: 80px 0 80px !important;
  }
}
/*=====  End of Responsive css  ======*/
