/* Table of Content
=================================================
1. Typography
2. Top Bar
3. Header
4. Global Style (body, link color, gap, ul, section-title, overlay etc)
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ============================== */
/* Typography
================================================== */
body {
  background: #fff;
  color: #222;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-size: 15px;
  line-height: 24px;
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #0c3587;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

/* Global styles
================================================== */
a,
a:active,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
  outline: 0 solid;
}

a:hover {
  color: #000;
}

button:focus,
.btn:focus {
  outline: 0 solid;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* btn */
.btn {
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 30px;
  height: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid #fff;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 7px;
}

.btn:hover {
  background: transparent;
  border: 1px solid transparent;
}

.btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* background-image: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"\a  viewBox="0 0 180 50" preserveAspectRatio="none"><g><polygon fill-rule="evenodd" clip-rule="evenodd" fill="%241,25,26" points="0,0 0,50 166,50 180,37 180,0"/></g></svg>'); */
  z-index: -1;
  background-repeat: no-repeat;
}

.btn.btn-bordered {
  height: 50px;
  padding: 0 45px;
  background: none;
}

.btn.btn-bordered:after {
  background-image: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"\a  viewBox="0 0 187.1 52" enable-background="new 0 0 187.1 52" preserveAspectRatio="none"><g> <polygon fill="none" stroke="#FFFFFF" stroke-miterlimit="10" points="1.7,1 1.7,51 167.7,51 181.7,38 181.7,1"/></g></svg>');
}

.btn-primary {
  background: transparent;
  color: #fff;
  border: 1px solid transparent;
  position: relative;
}

/* Button */
button {
  background: none;
  border: none;
  display: inline-block;
}

button:hover {
  cursor: pointer;
}

.download-btn {
  margin-bottom: 0;
}

.download-btn a {
  display: block;
  color: #fff;
  font-size: 24px;
}

.download-btn a span {
  font-weight: 400;
}

.download-btn a i {
  float: right;
  color: #347604;
  font-size: 30px;
}

/* Section */
section,
.section {
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

/* Section title */
.section-title {
  position: relative;
  margin-bottom: 19px;
  line-height: 26px;
  padding-bottom: 8px;
  font-weight: 400;
  font-size: 26px;
}

.section-title span {
  font-weight: 500;
}

.section-title:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #f00001;
}

.column-title,
.column-title-sm {
  position: relative;
  margin-bottom: 55px;
}

.column-title span,
.column-title-sm span {
  font-weight: 400;
}

.column-title:before,
.column-title-sm:before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #347604;
}

.column-title small,
.column-title-sm small {
  display: block;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 17px;
}

.column-title.text-white:before,
.column-title-sm.text-white:before {
  background: #fff;
}

.column-title.no-border,
.column-title-sm.no-border {
  margin-bottom: 32px;
}

.column-title.no-border:before,
.column-title-sm.no-border:before {
  display: none;
}

.column-title-sm {
  font-size: 24px;
}

/* Show */
.show {
  opacity: 1;
  visibility: visible;
}

/* Overflow Hidden */
.overflow-hidden {
  overflow: hidden;
}

/* Background */
.highlight {
  background-color: #f00001 !important;
}

/* BG Overlay */
.bg-overlay {
  position: relative;
  z-index: 1;
}

.solid-bg {
  background: #f7f7f7;
}

.bg-blue {
  background-color: #f73202;
}

.bg-red {
  background-color: #347604;
}

/* List ul ol */
.unstyled {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* List Round */
.list-round li {
  margin-bottom: 15px;
}

.list-round li:before {
  content: "\f10c";
  font-family: fontAwesome;
  padding-right: 10px;
}

/* List Round Solid */
.list-round-solid {
  margin: 0;
  padding: 0;
  padding-left: 15px;
}

.list-round-solid li {
  margin-bottom: 15px;
}

.list-round-solid li:last-child {
  margin-bottom: 0;
}

/* Check List */
.check-list li {
  margin-bottom: 12px;
}

.check-list li:before {
  content: "\f00c";
  font-family: fontAwesome;
  color: #347604;
  margin-right: 13px;
}

.check-list li:last-child {
  margin-bottom: 0;
}

/* Ratings */
.ts-rating li {
  display: inline-block;
}

.ts-rating li i {
  color: #ffd324;
}

/* Video Button */
.video-btn a {
  position: absolute;
  font-size: 60px;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  color: #fff;
  z-index: 2;
}

.video-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.post-video {
  position: relative;
}

/* Pagination */
.pagination li a {
  width: 40px;
  height: 40px;
  text-align: center;
  margin-right: 5px;
  line-height: 42px;
  display: block;
  border-radius: 2px;
  border: 1px solid #f1f1f1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #101010;
}

.pagination li a:hover {
  background: #e7272d;
  color: #fff;
}

.wapPanel {
  overflow: hidden;
}

/* No Padding */
.no-padding {
  padding: 0 !important;
}

/* No Border */
.no-border {
  border: none !important;
}

/* Padding */
.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.padding-0 {
  padding: 0;
}

.pb-120 {
  padding-bottom: 120px !important;
}

/* Gap */
.gap-30 {
  height: 30px;
  clear: both;
}

.gap-35 {
  height: 35px;
  clear: both;
}

.gap-60 {
  height: 60px;
  clear: both;
}

.gap-75 {
  height: 75px;
  clear: both;
}

.gap-80 {
  height: 80px;
  clear: both;
}

/* Padding */
.pd-top0 {
  padding-top: 0;
}

/* Box Skew */
.box-skew-sm-left {
  display: table-cell;
  vertical-align: middle;
  padding-left: 165px;
  -webkit-transform: skewX(16deg);
  transform: skewX(16deg);
}

@media (min-width: 1500px) {
  .box-skew-sm-left {
    padding-left: 435px;
  }
}

.box-skew-sm-right {
  position: relative;
  z-index: 2;
  -webkit-transform: skewX(16deg);
  transform: skewX(16deg);
  padding-left: 150px;
  display: table-cell;
  vertical-align: middle;
}

.box-skew-sm-right>img {
  position: absolute;
  top: 0;
  left: -60px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.box-skew-sm-right:before {
  content: "";
  position: absolute;
  top: 0;
  right: 102%;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
  z-index: 1;
}

@media (max-width: 767px) {
  .box-skew-sm-right:before {
    display: none;
  }
}

.box-skew-sm-right:after {
  content: "";
  position: absolute;
  top: 0;
  left: -115px;
  width: 105%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.box-skew-area-left {
  height: 255px;
  display: table;
  width: 100%;
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
  margin-left: -22px;
  position: relative;
  z-index: 2;
}

.box-skew-area-right {
  position: relative;
  height: 305px;
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
  margin-left: -55px;
  z-index: 1;
  display: table;
  width: 118%;
}

/* Breadcumb */
.banner-area {
  min-height: 285px;
}

.banner-area.bg-overlay:after {
  background: rgba(0, 0, 0, 0.6);
}

.banner-heading .banner-title {
  font-size: 60px;
  color: #fff;
  padding: 100px 0px;
  font-weight: 400;
}

.banner-heading .banner-title span {
  font-weight: 700;
  color: #EE3233;
}

.breadcrumb {
  background: none;
  position: absolute;
  right: 0;
  bottom: 0;
  margin-bottom: 0px;
}

.breadcrumb li {
  color: #fff;
  font-size: 20px;
}

.breadcrumb li a {
  color: #347604;
}

.breadcrumb li:not(:last-child):after {
  content: "/";
  margin: 0px 5px;
}

/* Blockquote */
blockquote {
  background: #f8f8f8;
  position: relative;
  padding: 28px 15px 25px 30px;
}

blockquote p {
  font-size: 18px;
  line-height: 29px;
  margin-bottom: 0;
  font-style: italic;
}

blockquote p cite {
  text-align: right;
  display: block;
  margin-top: 22px;
  font-style: normal;
  margin-right: 13px;
}

/* Social Icons */
.social-icons li {
  display: inline-block;
  margin-right: 2px;
}

.social-icons li a i {
  display: block;
  width: 40px;
  height: 40px;
  background: #101010;
  text-align: center;
  line-height: 40px;
  color: #fff;
  border-radius: 50%;
}

.social-icons li a i.fa-facebook {
  background: #3b5998;
}

.social-icons li a i.fa-twitter {
  background: #55acee;
}

.social-icons li a i.fa-google-plus {
  background: #dd4b39;
}

.social-icons li a i.fa-linkedin {
  background: #0976b4;
}

.social-icons li a i.fa-instagram {
  background: #b7242a;
}

.social-icons li a i.fa-youtube {
  background: #eb252d;
}

.social-icons li:last-child {
  margin-right: 0;
}

/* Navbar */
.navbar {
  padding: 1px 0;
}

.navbar .nav-item {
  margin-right: 3px;
}

@media (min-width: 992px) {
  .navbar-nav .nav-item > .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}

.navbar .nav-item:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  display: block;
}

.navbar .nav-item .nav-link {
  padding: 12px 30px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  color: #fff;
}

.navbar .nav-item .nav-link:hover {
  color: #fff;
}

.navbar .nav-item .nav-link:after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  background: #fff;
  width: 100%;
  height: 4px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
}

.navbar .nav-item .nav-link.active {
  color: #fff;
}

.navbar .nav-item .nav-link.active:after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.navbar .nav-item .nav-link:hover:after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.navbar-nav .nav-item > .dropdown-menu {
  top: 49px;
  padding-top: 5px;
  border-radius: 0;
  background: #fff;
  border-color: transparent;
  padding: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 0;
  min-width: 300px;
  border: none;
}

nav.navbar .dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
}


.navbar-nav .nav-item > .dropdown-menu li {
  padding-bottom: 0px;
}

.navbar-nav .nav-item > .dropdown-menu li a {
  color: #101010;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  padding: 8px 12px;
  -webkit-transition: all ease 500ms;
  transition: all ease 500ms;
  border-bottom: 1px solid #ccc;
}

.navbar-nav .nav-item > .dropdown-menu li:last-child a {
  border: none;
}

.navbar-nav .nav-item  > .dropdown-menu li a:hover,
.navbar-nav .nav-item > .dropdown-menu li a.active {
  color: #fff;
  background: #0c3587;
}



.navbar-nav .show>.nav-link {
  color: #fff;
}

.navbar-nav:focus {
  color: #fff;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (min-width: 992px) {
.megaMenuArea{ width:660px !important; }

}
.megaMenuArea ul{ width:100%; margin: 0; padding: 0; list-style:none; border-right:1px solid #cccccc; padding-right:7px; }
.megaMenuArea ul li{  }
/* owl carousel home slider */
.owl-stage-outer .owl-item.active .slider-items .slider-content h1 {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

.owl-stage-outer .owl-item.active .slider-items .slider-content p {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.owl-stage-outer .owl-item.active .slider-items .slider-content .btn {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* Owl Carousel Common */
.owl-carousel.owl-loaded .owl-nav button {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #347604;
  font-size: 20px;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-left: 10px;
}

.owl-carousel.owl-loaded .owl-nav button:hover {
  background: #101010;
  color: #fff;
}

.owl-carousel .owl-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.owl-carousel .owl-dots button {
  width: 9px;
  height: 9px;
  display: inline-block;
  background: #b2b2b2;
  border-radius: 50%;
  margin-right: 8px;
  margin-top: 40px;
}

.owl-carousel .owl-dots button.active {
  width: 14px;
  height: 14px;
  background: #347604;
}

.owl-carousel.owl-loaded .owl-nav .owl-next.disabled,
.owl-carousel.owl-loaded .owl-nav .owl-prev.disabled {
  background: #101010;
  color: #fff;
}

.btn-primary:not([disabled]):not(.disabled):active {
  color: #fff;
  background-color: #347604;
  border: 1px solid transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
  color: #fff;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #fff;
}

/* Input */
/* Contact Me */
.intro-form .btn-primary {
  border: 1px solid;
}

.contactMe {
  border-color: #e7e7e7;
  border-radius: 0;
}

.contactMe .btn {
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid #347604;
  position: relative;
  z-index: 2;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contactMe .btn.btn-bordered {
  height: 50px;
  padding: 0 45px;
  background: none;
  margin: 0 auto;
}

.contactMe>section {
  border-radius: 0;
  padding: 40px;
}

.contactMe input {
  height: 50px;
}

.contactMe .select2-container .select2-selection {
  height: 50px;
}

.contactMe .select2-container .select2-selection .select2-selection__rendered {
  height: 50px;
  line-height: 50px;
}

.contactMe .select2-container .select2-selection .select2-selection__arrow {
  height: 50px;
}

.contactMe .field {
  margin-bottom: 20px;
}

.contactMe .btn {
  background: transparent;
  line-height: 0;
  border: 1px solid transparent;
}

/* Owl Carousel */
.owl-carousel .owl-item img {
  width: auto;
}

/* Form COntrol */
.input-group .form-control:active,
.input-group .form-control:focus,
.input-group .form-control:hover {
  z-index: 1;
}

.form-control:focus {
  color: transparent;
  background-color: transparent;
  border-color: #eee;
  outline: 0 solid;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* About  
===========================================*/
/* Fun Facts */
.ts-fun-facts {
  padding: 0px;
  overflow: hidden;
}

.ts-fun-facts .box-skew-sm-left .ts-main-fact {
  padding-right: 50px;
}

.ts-fun-facts .box-skew-area-left {
  height: 430px;
  width: 112%;
  margin-left: -65px;
}

.ts-fun-facts .box-skew-area-right {
  height: 500px;
  width: 130%;
}

.ts-fun-facts .box-skew-area-right .box-skew-sm-right:before {
  right: 99%;
}

.ts-fun-facts .fun-fact-info {
  color: #fff;
  padding-right: 40px;
}

.ts-fun-facts .ts-facts {
  margin-left: -60px;
}

.ts-fun-facts .ts-facts h3 {
  font-size: 32px;
  padding: 10px 0;
  color: #fff;
  font-weight: 500;
}

.ts-fun-facts .ts-facts p {
  color: #fff;
}

.ts-fun-facts .ts-facts .ts-facts-num p {
  color: #fff;
}

.ts-fun-facts .ts-facts i {
  font-size: 40px;
  color: #fff;
}

/* Testimonial */
.testimonial-slide .testimonial-item {
  position: relative;
}

.testimonial-slide .testimonial-item p {
  color: #fff;
  margin-bottom: 35px;
}

.testimonial-slide .testimonial-item span.icon {
  font-size: 40px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  position: absolute;
  top: -70px;
  color: #fff;
}

@media (min-width: 1400px) {
  .testimonial-slide .testimonial-item {
    margin-left: 50px;
  }
}

.testimonial-slide .quote-item-info h3,
.testimonial-slide .quote-item-info span {
  color: #fff;
}

.testimonial-slide .quote-item-footer h3 {
  color: #fff;
}

.testimonial-slide .quote-item-footer img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  float: left;
  margin-right: 25px;
}

.testimonial-slide .quote-author {
  color: #fff;
}

.testimonial-slide .quote-text {
  color: #fff;
}

.overflow-hidden .box-skew-right {
  width: 190%;
  padding-left: 100px;
  padding-right: 0;
  height: 315px;
}

.overflow-hidden .box-skew-left {
  height: 375px;
}

.overflow-hidden .box-skew-left img {
  z-index: 1;
}

.overflow-hidden .box-skew-left:after {
  z-index: 0;
}

.ts-facts-newsletter .box-skew-area-left {
  background: #cb2c05;
}

.ts-facts-newsletter .box-skew-area-right {
  height: 305px;
}

.ts-facts-newsletter .box-skew-sm-right {
  padding-right: 150px;
}

.ts-facts-newsletter .box-skew-sm-right .column-title,
.ts-facts-newsletter .box-skew-sm-right .column-title-sm {
  z-index: 1;
}

.ts-pertner.border-bottom {
  padding: 35px;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(239, 239, 239, 0.7);
  box-shadow: 0px 2px 5px 0px rgba(239, 239, 239, 0.7);
}

.ts-pertner.border-bottom .owl-nav {
  display: none;
}

.ts-feature-standard {
  padding-bottom: 30px;
}

.ts-feature-standard .ts-feature-wrapper {
  margin-bottom: 50px;
}

.ts-feature-standard .feature-single .feature-content {
  margin-top: 20px;
  margin-left: 0px;
}

.ts-feature-standard .feature-single .feature-content h3 a {
  margin-bottom: 20px;
  color: #000;
}

.ts-feature-standard .feature-single .feature-icon {
  float: none;
}

.ts-feature-standard .feature-single:hover .feature-content h3 a {
  color: #347604;
}

.ts-feature .widget-contact {
  margin-top: -100px;
}

.ts-feature .widget-contact .contactMe>section {
  border-radius: 0;
  padding: 40px 22px 40px 34px;
}

.ts-feature .widget-contact .contactMe>section .btn {
  background: #347604;
  text-align: center;
  display: block;
}

.ts-feature .widget-contact .contactMe>section .btn:after {
  background: transparent;
}

.ts-feature .contact-form-title {
  margin-left: 15px;
  height: 55px;
  margin-right: 15px;
  background: #347604;
  text-align: center;
}

.ts-feature .contact-form-title h2.column-title {
  font-size: 24px;
  color: #fff;
  padding: 10px 0;
}

.ts-feature button.btn.btn-primary {
  width: 95%;
}

.ts-feature .contactMe .field {
  margin-bottom: 0px;
}

.ts-feature .contactMe .form-row {
  margin-bottom: 20px;
}

.ts-feature.ts-feature-2 .ts-feature-wrapper {
  margin-bottom: 50px;
}

.box-content-wrapper .list-round i {
  font-size: 18px;
  margin-right: 10px;
  /*float: left;
  width: 50px;
  line-height: 50px;
  border-radius: 3px;
  padding-left: 9px;
  background: #347604;
  margin-right: 20px;*/
}

.box-skew-right .column-title {
  margin-bottom: 35px;
}

/* Header 2
==================================*/
.ts-top-bar-2 {
  padding: 8px 0;
}

.ts-top-bar-2.classic {
  background-color: #06163a;
}

.ts-top-bar-2.classic .top-bar-social-icon li a {
  padding: 0px 10px;
}

.ts-top-bar-2.classic .top-bar-social-icon li a:last-of-type {
  padding-right: 0;
}

.ts-header-classic .ts-logo-area {
  padding: 25px 0;
  background-color: #091b46;
  padding-bottom: 58px;
}

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

.ts-logo-area {
  padding: 10px 36px;
}

.ts-header-classic .ts-logo-area .info-wrapper .info-subtitle {
  color: #fff;
}

.ts-header-classic .ts-logo-area .info-wrapper .info-title {
  color: #fff;
}

.ts-header-classic .header-angle {
  position: absolute;
  width: 100%;
  margin-top: -30px;
}

.ts-header-classic .header-angle:after {
  background: transparent;
}

.ts-header-classic .header-angle .ts-navbar {
  border-right: 1px solid #f15050;
}

.ts-header-classic .header-angle .navbar-nav {
  padding-left: 28px;
}

.ts-header-classic .header-angle:before {
  background: transparent;
}

.ts-header-classic .header-angle:after {
  width: 87%;
}

.ts-header-classic .header-angle .navbar-light {
  background: #347604;
  margin-left: 55px;
  padding-right: 35px;
}

.ts-header-classic .header-angle .navbar-light:before {
  position: absolute;
  top: 0;
  left: -56px;
  right: auto;
  content: "";
  border-right: 56px solid #347604;
  border-top: 60px solid transparent;
}

.ts-header-classic .cart-link form {
  padding: 0px;
}

/* Header 3
==================================*/
.ts-top-bar-2.standard {
  background-color: #347604;
}

.ts-header-standard .ts-logo-area {
  padding: 15px 0;
}

.ts-header-standard .ts-logo-area .ts-navbar {
  margin-right: 0;
}

.ts-header-standard .ts-logo-area .navbar-light .navbar-nav .active>.nav-link,
.ts-header-standard .ts-logo-area .navbar-light .navbar-nav .nav-link.active,
.ts-header-standard .ts-logo-area .navbar-light .navbar-nav .nav-link.show,
.ts-header-standard .ts-logo-area .navbar-light .navbar-nav .show>.nav-link {
  color: #347604;
}

.ts-header-standard .ts-logo-area .navbar-light .navbar-nav .nav-link:focus,
.ts-header-standard .ts-logo-area .navbar-light .navbar-nav .nav-link:hover {
  color: #347604;
}

.ts-header-standard .ts-logo-area .navbar .nav-item {
  margin-right: 20px;
}

.ts-header-standard .ts-logo-area .navbar .nav-item .dropdown-menu {
  top: 76px;
}

.ts-header-standard .ts-logo-area .navbar .nav-item .nav-link {
  color: #101010;
}

.ts-header-standard .ts-logo-area .navbar .nav-item .nav-link.active:after {
  background-color: #347604;
  bottom: -20px;
}

.ts-header-standard .ts-logo-area .navbar .cart-link form {
  padding: 0 5px;
}

.ts-header-standard .ts-logo-area .navbar .cart-link form button {
  color: #101010;
}

.ts-header-standard .ts-logo-area .navbar .cart-link a {
  color: #101010;
}

.ts-header-standard .ts-logo-area .navbar .cart-link a sup {
  background: #101010;
  color: #fff;
}

.ts-header-standard .header-cart {
  position: relative;
  z-index: 2;
  padding-left: 15px;
}

.ts-header-standard .header-cart::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  content: '';
  background: #ddd;
}

/* Header 4
==================================*/
.ts-top-bar-standard {
  background: #347604;
}

.ts-header-transparent {
  position: relative;
}

.ts-header-transparent .ts-logo-area {
  position: absolute;
  z-index: 2;
  width: 100%;
  border-bottom: 1PX solid rgba(149, 153, 155, 0.25);
}

.ts-header-transparent .navbar .nav-item {
  margin-right: 20px;
}

.ts-header-transparent .navbar .nav-item .nav-link {
  padding: 32px 10px;
}

.ts-header-transparent .navbar .nav-item .nav-link:after {
  bottom: -8px;
  background-color: #347604;
}

.ts-header-transparent .navbar .nav-item .nav-link.active:after {
  bottom: -8px;
  background-color: #347604;
}

.ts-header-transparent .ts-navbar {
  margin-right: 0px;
}

.ts-header-transparent .navbar-nav .nav-item .dropdown-menu {
  top: 106%;
}

.ts-header-transparent .navbar-light .navbar-nav .active>.nav-link,
.ts-header-transparent .navbar-light .navbar-nav .nav-link.active,
.ts-header-transparent .navbar-light .navbar-nav .nav-link.show,
.ts-header-transparent .navbar-light .navbar-nav .show>.nav-link {
  color: #347604;
}

.ts-header-transparent .navbar-light .navbar-nav .nav-link:focus,
.ts-header-transparent .navbar-light .navbar-nav .nav-link:hover {
  color: #347604;
}

.main-header {padding-top: 0;
  border-top: 4px solid #0b457f!important;
  background-position:left bottom;
  background-repeat: repeat-x;
  /* background: url(../images/banner/bg_pattern.jpeg); */

  background-image: linear-gradient(rgb(255 255 255 / 84%), rgb(255 255 255 / 69%)), url(../images/banner/bg_pattern.jpeg);
    background-size: cover;
}

.ts-top-bar {
  position: relative;
  z-index: 9;
  /* background: rgb(255 250 236); */
  background: linear-gradient(45deg, rgba(255, 250, 236, 0) 49%, #0b457f 49%);
}

/*  */
/* Top Bar
============================*/
/* .ts-top-bar {
   position: relative;
    z-index: 9;
    background: linear-gradient(
45deg
, rgb(230 231 238) 49%, #0b457f 49%);
} */

/* .ts-top-bar:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: #0c3587;
} */

.top-bar-angle {
  position: relative;
  z-index: 2;
  padding: 0px 0 0px;
}

/* .top-bar-angle:after {
  z-index: -1;
  content: "";
  position: absolute;
  background:#0c3587;
  display: block;
  width: 71%;
  height: 100%;
  right: 0;
  top:0;
} */
/* .top-bar-angle:before {
  content: '';
  position: absolute;
  right: 71%;
  z-index: 0;
  border-right: 39px solid #0c3587;
  border-left: 0 solid #f73202;
  border-bottom: 25px solid transparent;
  bottom: 0;
  top: 0;
} */

.top-bar-social-icon ul {
  list-style: none;
  margin: 0;
  padding: 0;
  float: left;
}

.top-bar-social-icon li {
  display: inline-block;
}

.top-bar-social-icon li a {
  display: block;
  padding: 2px 8px;
  text-transform: uppercase;
}

.top-bar-social-icon li::last-child a {
  padding-right: 0;
}

.top-bar-social-icon i {
  font-size: 14px;
  color: #fff;
}

ul.mainsocialicon {
  margin-left: 143px;
}

.top-bar-event {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-bar-event i,
.top-bar-event span {
  color: #fff;
}

.top-bar-event i {
  font-size: 16px;
  margin-right: 10px;
  position: relative;
  top: 2px;
}

.top-bar-event span {
  font-size: 14px;
}

.top-bar-event.ts-top {
  display: block;
  width: 100%;
  text-align: right;
}

/* Logo Area
=================================*/
/* .ts-logo-area {
  padding: 10px 0;
} */

.ts-logo {
  position: absolute;
  top: -1px;
}

.top-bar-social-icon.ml-auto.text-right {
  float: right;
}

.top-contact-info {
  margin: 0;
  padding: 0;
  list-style: none;
  float: right;
}

.top-contact-info li {
  display: inline-block;
  position: relative;
}

.top-contact-info li span {
  display: inline-block;
  position: relative;
  top: -7px;
  font-size: 24px;
  margin-right: 10px;
  color: #d20023;
}

.top-contact-info a {
  padding: 8px 14px;
  color: #000;
}

.top-contact-info a:hover {
  color: #000;
}

.top-contact-info a.btn-primary {
  background: #ed2024;
  padding: 8px 14px;
  border: 0;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  font-size: 14px;
}

.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #041155;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border-radius: 50%;
}

.top-contact-info .btn {
  height: 40px;
  padding: 8px 32px;
  line-height: 24px;
}

.info-wrapper {
  display: inline-block;
  margin-right: 50px;
}

.info-wrapper p {
  margin-bottom: 0;
}

.info-wrapper .info-title {
  font-size: 15px;
  font-weight: 700;
  color: #101010;
  line-height: 18px;
}

.info-wrapper .info-subtitle {
  color: #666666;
  font-size: 14px;
}

/* Tw Header
===========================*/
.ts-header {
  position: relative;
  z-index: 2;

}

.ts-header:after {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: #f00001;
}

.header-angle {
  position: relative;
  z-index: 2;
/*  margin-bottom: -15px;*/
  background: #cc0000!important;
}

.header-angle:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 81%;
  height: 100%;
  content: "";
  background: #cc0000!important;
  z-index: -1;
}

.header-angle:before {
  position: absolute;
  top: 0;
  right: 81%;
  content: "";
  border-right: 33px solid #cc0000;
  border-top: 50px solid transparent;
}

@media (min-width: 1400px) {
  .top-bar-angle:before {
    right: 54%;
  }

  .top-bar-angle:after {
    width: 54%;
  }

  .header-angle:before {
    right: 67%;
  }

  .header-angle:after {
    width: 67%;
  }
}

/* Navbar
===============================*/
.cart-link a {
  display: inline-block;
  color: #fff;
  font-size: 20px;
}

.cart-link a sup {
  font-size: 8px;
  top: -15px;
  background: #fff;
  color: #347604;
  width: 10px;
  height: 10px;
  display: inline-block;
  line-height: 10px;
  text-align: center;
  border-radius: 50%;
  right: 5px;
  font-weight: 700;
}

.cart-link form {
  display: inline-block;
  padding: 0 0px;
  padding-right: 0;
  position: relative;
  z-index: 9;
}

.cart-link form button {
  color: #fff;
}

.cart-link form button .icon-cross {
  position: absolute;
  top: 2px;
  font-size: 25px;
  left: 3px;
  opacity: 0;
  visibility: hidden;
}

.cart-link form button .icon-cross.show {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.cart-link form button .icon-search {
  visibility: hidden;
  opacity: 0;
}

.cart-link form button .icon-search.show {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  top: 3px;
  position: relative;
  left: 1px;
}

.cart-link form .search-box {
  position: absolute;
  bottom: -100px;
  left: auto;
  right: 0;
  background: #fff;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 7px;
}

.cart-link form .search-box input[type=search] {
  border: 1px solid rgba(238, 49, 49, 0.12);
  background: transparent;
  padding: 5px 7px;
  border-radius: 6px;
  width: 382px;
  max-width: 100%;
}

.cart-link form .search-box input::-webkit-input-placeholder {
  font-size: 14px;
  color: #101010;
  padding-left: 10px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.5px;
}

.cart-link form .search-box input::-moz-placeholder {
  font-size: 14px;
  color: #101010;
  padding-left: 10px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.5px;
}

.cart-link form .search-box input:-ms-input-placeholder {
  font-size: 14px;
  color: #101010;
  padding-left: 10px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.5px;
}

.cart-link form .search-box input::-ms-input-placeholder {
  font-size: 14px;
  color: #101010;
  padding-left: 10px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.5px;
}

.cart-link form .search-box input::placeholder {
  font-size: 14px;
  color: #101010;
  padding-left: 10px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.5px;
}

.cart-link form .search-box input:focus {
  outline: 0 solid;
}

.cart-link form .search-box.show {
  bottom: -41px;
  opacity: 1;
  visibility: visible;
}

.ts-navbar {
  margin-right: 0px;
}

/* Slider Area
=================================== */
.slider-items {
  background-size: 100% !important;

}

.slider-items img {
  width: 100% !important;
}

.slider-items .row,
.slider-items .container {
  height: 100%;
}

.slider-overlay {
  position: relative;
  z-index: 2;
}

.slider-overlay:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.slider-content h1 {
  font-size: 60px;
  color: #fff;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.slider-content h1 small {
  font-size: 20px;
  color: #fff;
  display: block;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.slider-content h1 span {
  color: #347604;
}

.slider-content .slider-desc {
  font-size: 20px;
  color: #fff;
  margin-bottom: 30px;
  line-height: 30px;
}

.ts-slider-area {}

/*banner*/
.ts-slider-area {
  position: relative;
}

.ts-slider-area:after {
  position: absolute;
  width: 100%;
  height: 7px;
  background: rgba(225, 225, 225, .2);
  content: '';
  bottom: 0px;
  left: 0;
  z-index: 99999;
}

/*.ts-slider-area:after{
            content: '';
            display: block;
            height: 30%; 
            background: url(../images/svg/wave-double.svg) bottom no-repeat;
            background-size: cover;
            position: absolute;
            bottom: -35px;
            left: 0;
            right: 0;
            z-index: 99999;
        }*/



.ts-slider-area.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin-top: -30px;
}

.ts-slider-area.owl-carousel .owl-nav button {
  position: absolute;
  top: 0;
  left: 30px;
  width: 40px;
  height: 40px;
  line-height: 48px !important;
  background: rgba(0, 0, 0, 0.5) !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: -15px;
  margin-left: 0px;
  Border-radius: 50%;
}

.ts-slider-area.owl-carousel .owl-nav button i {
  color: #fff;
  font-size: 25px;
}

.ts-slider-area.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: 30px;
}

.ts-slider-area.owl-carousel .owl-nav button:hover {
  background: #f00001 !important;
}

/* Intro Area
====================== */
.ts-intro {
  margin-top: -80px;
}

.ts-intro-wrapper {
  background: #0c3587;
  padding: 35px 35px 13px 40px;
  min-height: 230px;
  text-align: left;
  border-radius: 2px 42px 2px 42px;
  position: relative;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23000000' fill-opacity='0.03' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.ts-intro-wrapper>i {
  font-size: 150px;
  position: absolute;
  left: 0px;
  bottom: -20px;
  z-index: -1;
  opacity: 0.1;
  color: #fff;
}

.ts-intro-wrapper.highlight {
  position: relative;
  z-index: 9;
  padding-bottom: 13px;
  padding-left: 30px;
  padding-right: 30px;
}

.ts-intro-wrapper .imgBoxSect {
  text-align: center;
  display: block;
  margin-bottom: 10px;
}

.ts-intro-wrapper .imgBoxSect img.imgBox {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: auto;
  margin-top: -90px;
  border: 2px solid #28276f;
}

.ts-intro-wrapper.highlight .imgBoxSect img.imgBox {
  border: 2px solid #347604;
}

.messageBox p {
  color: #fff;
}

.ts-intro-wrapper.highlight .intro-content h2 {
  margin-bottom: 40px;
}

.ts-intro-wrapper .intro-content h2.m-b-12 {
  margin-bottom: 12px;
}

.ts-intro-wrapper.intro-carousel {
  padding-bottom: 40px;
}

.ts-intro-wrapper .select2-container .select2-selection .select2-selection__arrow:before {
  top: 24px;
  color: #fff;
}

.intro-content h2 {
  font-size: 20px;
  color: #fff;
  text-align: center;
  margin-bottom: 35px;
  font-weight: 400;
}

.intro-content h2 span {
  font-weight: 400;
}

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

.intro-content li {
  content: "";
  display: block;
  clear: both;
}

.intro-content li p {
  float: right;
  width: 165px;
  text-align: left;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.intro-content li span {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.intro-form .btn {
  margin-top: 20px;
  font-weight: 400;
  font-size: 14px;
  padding: 7px 12px;
  border-radius: 7px;
  height: auto;
  text-transform: math-auto;
}

.intro-form .btn-primary {
  border: 1px solid;
}

.intro-form .contactMe {
  background: transparent;
  border: none;
}

.intro-form .contactMe .field,
.intro-form .contactMe .select2-selection {
  padding: 23px 25px;
  line-height: 0;
  background: #be2727;
  border-radius: 3px;
  border: none;
}

.intro-form .contactMe .field::-webkit-input-placeholder,
.intro-form .contactMe .select2-selection::-webkit-input-placeholder {
  color: #fff;
}

.intro-form .contactMe .field::-moz-placeholder,
.intro-form .contactMe .select2-selection::-moz-placeholder {
  color: #fff;
}

.intro-form .contactMe .field:-ms-input-placeholder,
.intro-form .contactMe .select2-selection:-ms-input-placeholder {
  color: #fff;
}

.intro-form .contactMe .field::-ms-input-placeholder,
.intro-form .contactMe .select2-selection::-ms-input-placeholder {
  color: #fff;
}

.intro-form .contactMe .field::placeholder,
.intro-form .contactMe .select2-selection::placeholder {
  color: #fff;
}

.intro-form .contactMe .select2-container .select2-selection .select2-selection__rendered {
  overflow: visible;
  color: #fff;
  padding-left: 0;
  padding-right: 0;
}

.intro-form .contactMe .select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin-top: 0;
  border-color: #fff transparent transparent transparent;
}

.intro-form .contactMe .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #fff;
}

.intro-form .contactMe .select2-container--default .select2-selection--single .select2-selection__clear {
  display: none;
}

.intro-form .contactMe .btn {
  float: none;
}

.intro-form .contactMe .form-row {
  margin: 0;
}

.intro-form .contactMe .form-row [class*=col-] {
  padding-right: 10px;
  padding-left: 10px;
}

.intro-form .contactMe .form-row-second {
  margin-bottom: 20px;
}

.intro-content-carousel.owl-carousel p {
  color: #fff;
  padding: 0 2px;
}

.intro-content-carousel.owl-carousel .owl-nav {
  margin-top: 20px;
  text-align: right;
}

/* Feature
============================ */
.ts-feature .feature-img {
  position: absolute;
  right: 0;
  top: 64%;
  width: 36%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (min-width: 1500px) {
  .ts-feature .feature-img {
    width: auto;
  }
}

.feature-single .feature-icon {
  float: left;
  font-size: 50px;
  color: #f73202;
}

.feature-single .feature-content {
  margin-left: 80px;
  padding-right: 10px;
}

.feature-single .feature-content h3 {
  margin-bottom: 13px;
}

.feature-single .feature-content h3 span {
  font-weight: 400;
}

/* About
====================== */
.ts-about {
  overflow: hidden;
  padding-top: 0;
}


.box-content-wrapper * {
  color: #fff;
}

.box-content-wrapper p {
  margin-bottom: 35px;
}

@media (min-width: 992px) {
  .box-skew-hidden-left {
    position: relative;
  }

  .box-skew-hidden-left:after {
    content: "";
    position: absolute;
    top: 0;
    right: -86%;
    width: 100%;
    height: 100%;
    background: #fff;
    -webkit-transform: skewX(-16deg);
    transform: skewX(-16deg);
  }
}

.box-skew-left {
  display: table;
  height: 500px;
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
  position: relative;
  width: 95%;
}

.box-skew-left .box-skew-img:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: rgba(0, 0, 0, 0.5);
}

.box-skew-left .column-title {
  font-size: 38px;
}

.box-skew-left img {
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 100%;
  -webkit-transform: skewX(16deg);
  transform: skewX(16deg);
  background-size: cover;
  background-position: center;
}

.box-skew-left .box-content-wrapper {
  display: table-cell;
  vertical-align: middle;
  -webkit-transform: skewX(16deg);
  transform: skewX(16deg);
  padding: 0 120px 0 135px;
  position: relative;
  z-index: 2;
}

.box-skew-left .box-content-wrapper p {
  padding-right: 120px;
}

.box-skew-left:after {
  content: "";
  position: absolute;
  top: 0;
  left: -85px;
  width: 102%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

@media (min-width: 1600px) {
  .box-skew-left .box-content-wrapper {
    padding: 0 120px 0 424px;
  }
}

@media (min-width: 992px) {
  .box-skew-left:before {
    -webkit-transform: skewX(16deg);
    transform: skewX(16deg);
  }
}

.box-skew-right {
  display: table;
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
  left: 635px;
  width: 100%;
  position: absolute;
  top: 50px;
  padding-left: 90px;
  padding-right: 235px;
  padding-top: 10px;
  padding-bottom: 10px;
  height: 100%;
  background: #f7f7f7;
  margin-left: -35px;
}

.box-skew-right img {
  position: absolute;
  top: -70px;
  right: 40px;
  -webkit-transform: skewX(16deg);
  transform: skewX(16deg);
  height: 506px;
}

.box-skew-right .column-title {
  margin-bottom: 12px;
  color: #101010;
}

.box-skew-right .column-title span {
  color: #101010;
}

.box-skew-right .column-title:before {
  background: #101010;
}

.box-skew-right .box-content-wrapper {
  display: block;
  vertical-align: middle;
  -webkit-transform: skewX(16deg);
  transform: skewX(16deg);
  width: 385px;
  padding-top: 25px;
}

.box-skew-right .box-content-wrapper ul li,
.box-skew-right .box-content-wrapper p {
  margin-bottom: 15px;
  color: #666666;
}

.box-skew-right .list-round {
  margin-top: 28px;
}

.box-skew-right.bg-red {
  background-color: #041155;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23000000' fill-opacity='0.03' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ts-about .owl-carousel.owl-loaded .owl-nav button {
  background: #000;
}

.ts-about .owl-carousel.owl-loaded .owl-nav button:hover {
  background: #fff;
}

.ts-about .owl-carousel.owl-loaded .owl-nav button:hover i {
  color: #000;
}

.box-skew-right .box-content-wrapper .owl-nav {
  position: absolute;
}

.box-skew-right.bg-red .column-title {
  color: #fff;
}

.box-skew-right.bg-red .column-title span {
  color: #fff;
}

.box-skew-right.bg-red .column-title:before {
  background: #fff;
}

.box-skew-right.bg-red .box-content-wrapper ul li,
.box-skew-right.bg-red .box-content-wrapper p {
  color: #fff;
  text-transform: capitalize;
}

@media (min-width: 1200px) {
  .box-skew-right {
    padding-left: 75px;
  }
}

/* Working Process */
.ts-working-process {
  margin-top: 0px;
  padding-top: 0;
}

.ts-working-process .owl-nav {
  text-align: center;
  margin-top: 15px;
}

.working-box-wrapper {
  counter-reset: working-number;
}

.working-box-wrapper .working-single-box {
  background: #347604;
  position: relative;
  min-height: 250px;
  display: block;
  cursor: pointer;
}

.working-box-wrapper .working-single-box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-style: solid;
  border-width: 125px 0 125px 70px;
  border-color: #347604 #347604 #347604 #fff;
}

.working-box-wrapper .working-single-box:after {
  content: "";
  position: absolute;
  right: -43px;
  top: 0;
  border-style: solid;
  border-width: 125px 0 125px 60px;
  border-color: transparent #347604 transparent #347604;
  z-index: 1;
}

.working-box-wrapper .working-single-box.bg-red {
  background: #28276f;
}

.working-box-wrapper .working-single-box.bg-red:before {
  border-color: #28276f #28276f #28276f transparent;
}

.working-box-wrapper .working-single-box.bg-red:after {
  border-color: transparent #28276f transparent #28276f;
}

.working-box-wrapper .working-single-box.bg-red-light {
  background: #347604;
}

.working-box-wrapper .working-single-box.bg-red-light:before {
  border-color: #347604 #347604 transparent;
}

.working-box-wrapper .working-single-box.bg-red-light:after {
  border-color: transparent #347604 transparent #347604;
  right: -51px;
  border-width: 125px 0 125px 51px;
}

.working-box-wrapper .working-content-wrapper {
  padding-left: 105px;
  padding-top: 10px;
  vertical-align: middle;
  display: table-cell;
  height: 250px;
  padding-right: 20px;
}

.working-box-wrapper .working-content-wrapper .workig-icon {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: normal;
  position: relative;
  display: block;
  margin-bottom: 5px;
}

/*.working-box-wrapper .working-content-wrapper .workig-icon:after {
  counter-increment: working-number;
  content: counter(working-number);
  position: absolute;
  right: 40px;
  top: 25px;
  font-size: 80px;
  font-family: dosis;
  font-weight: 600;
  color: #444444;
}*/
.working-box-wrapper .working-content-wrapper .working-content p {
  color: #fff;
}

.working-box-wrapper .working-content-wrapper .working-content h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px
}

.working-box-wrapper .working-content-wrapper .working-content h3 span {
  font-weight: 400;
}

.working-box-wrapper [class*=col] {
  padding: 0;
  margin-left: -15px;
}

.working-box-wrapper [class*=col]:first-child {
  padding-left: 15px;
}

.working-box-wrapper [class*=col]:last-child {
  padding-right: 0px;
}

.working-box-wrapper [class*=col]:last-child .workig-icon:after {
  color: #f04646;
}

.working-box-wrapper [class*=col]:nth-child(2) .workig-icon:after {
  color: #d71a39;
}

/* Service */
.ts-service-bg {
  padding: 40px 0;
  background: #fff;
  color: #fff;
}

.ts-service-bg p {
  font-weight: 400;
  color: #000;
}

.number_matter .section-title:before,
.ts-service-bg .section-title:before {
  margin: auto;
  right: 0;
}

.ts-service {
  margin-top: -270px;
}

.ts-service.ts-service-2 {
  padding-bottom: 70px;
}

.ts-service.ts-service-2 .ts-service-wrapper {
  margin-bottom: 30px;
}

.service-content {
  position: relative;
  background: #f7f7f7;
  padding: 0 30px 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service-content h3,
.service-content h3>a {
  padding-top: 7px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #101010;
  font-weight: 500;
  font-size: 24px;
}

.service-content .service-icon {
  position: absolute;
  right: 30px;
  top: -30px;
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  background: #347604;
  border-radius: 3px;
  font-size: 28px;
  color: #fff;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
}

.service-content .service-img img {
  width: 100%;
}

.readmore {
  font-size: 14px;
  color: #666666;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.readmore i {
  width: 18px;
  height: 18px;
  text-align: center;
  border: 1px solid #696969;
  border-radius: 50%;
  line-height: 16px;
  margin-left: 6px;
  font-size: 12px;
}

.ts-service-wrapper {
  background: #f7f7f7;
}

.ts-service-wrapper .service-img img {
  width: 100%;
  height: 300px;
}

.ts-service-wrapper:hover .service-content {
  background: #fff;
  -webkit-box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.06);
}

.ts-service-wrapper:hover .service-content h3,
.ts-service-wrapper:hover .service-content h3>a {
  color: #347604;
}

.ts-service-wrapper:hover .readmore {
  color: #347604;
}

.ts-service-wrapper:hover .readmore i {
  border-color: #347604;
}

.service-carousel .owl-stage-outer {
  padding-bottom: 25px;
}

.service-carousel .owl-nav {
  position: absolute;
  top: -100px;
  right: 15px;
}

/* Contact us */
.ts-main-form>section {
  padding-left: 30px;
  padding-right: 30px;
}

.ts-main-form>section .form-row>.col,
.ts-main-form>section .form-row>[class*=col-] {
  padding-right: 5px;
  padding-left: 20px;
}

.ts-main-form .add_service_link {
  font-weight: 700;
  margin-left: 16px;
  color: #666666;
  float: left;
  margin-top: 16px;
}

.contactMe>section:after {
  content: "";
  display: block;
  clear: both;
}

.contactMe .btn {
  float: right;
  margin-top: 0px;
}

.contactMe input {
  font-family: "Roboto", sans-serif;
  color: #999999;
  font-size: 16px;
  padding: 0 20px;
}

.contactMe input::-webkit-input-placeholder {
  color: #999999;
  font-size: 16px;
}

.contactMe input::-moz-placeholder {
  color: #999999;
  font-size: 16px;
}

.contactMe input:-ms-input-placeholder {
  color: #999999;
  font-size: 16px;
}

.contactMe input::-ms-input-placeholder {
  color: #999999;
  font-size: 16px;
}

.contactMe input::placeholder {
  color: #999999;
  font-size: 16px;
}

.contactMe .select2-container--default .select2-selection--single {
  padding: 0 12px;
}

.contactMe .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999999;
  font-size: 16px;
}

.contactMe .select2-container .select2-selection .select2-selection__rendered {
  color: #999999;
  font-size: 16px;
}

/* Testimonial Carousel */
.testimonial-carousel {
  margin-left: auto;
  max-width: 340px;
}

.ts-appointment .testimonial-carousel {
  margin-left: 0;
  margin-right: 0;
}

.testimonial-body {
  background: #f7f7f7;
  padding: 38px 40px 12px;
  position: relative;
}

.testimonial-body .testimonial-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 12px;
}

.testimonial-body .quote-icon {
  font-size: 36px;
  display: block;
  text-align: right;
  margin-top: -30px;
  color: #cb2c05;
}

.testimonial-body:after {
  content: "";
  position: absolute;
  left: 65px;
  bottom: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #f7f7f7 transparent transparent transparent;
  border-width: 20px 18px 0px 0px;
}

.testimonial-container .testimonial-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 30px;
  margin-top: 40px;
}

.testimonial-container .testimonial-footer .client-info {
  margin-left: 22px;
}

.testimonial-container .testimonial-footer .client-info .client-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-container .testimonial-footer img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  float: left;
}

/* Newsletter */
.ts-newsletter {
  padding-bottom: 0;
  overflow: hidden;
}

.ts-newsletter [class*=col] {
  padding: 0;
}

.ts-newsletter .box-skew-sm-right:after {
  z-index: -1;
}

.newsletter-form.contactMe {
  border: none;
  padding-right: 105px;
  background: none;
  margin-bottom: 11px;
}

.newsletter-form.contactMe .form-row {
  margin-bottom: 0;
}

.newsletter-form.contactMe .field {
  background: none;
  margin-bottom: 0;
  padding-right: 53px;
}

.newsletter-form.contactMe input {
  color: #fff;
}

.newsletter-form.contactMe input::-webkit-input-placeholder {
  color: #fff;
}

.newsletter-form.contactMe input::-moz-placeholder {
  color: #fff;
}

.newsletter-form.contactMe input:-ms-input-placeholder {
  color: #fff;
}

.newsletter-form.contactMe input::-ms-input-placeholder {
  color: #fff;
}

.newsletter-form.contactMe input::placeholder {
  color: #fff;
}

.newsletter-form.contactMe .newsletter-box {
  position: relative;
}

.newsletter-form.contactMe .newsletter-box .btn {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  padding: 0 30px;
}

.newsletter-form.contactMe .newsletter-box .btn i {
  font-size: 20px;
  color: #fff;
}

.newsletter-form.contactMe .newsletter-box .btn.btn-bordered:after {
  background-image: none;
}

.newsletter-form>section {
  background: none;
  padding: 0;
}

/* Latest news */
@media (min-width: 1400px) {
  .ts-facts-newsletter .newsletter-form.contactMe .newsletter-box {
    max-width: 470px;
  }
}

.ts-latest-post:hover .post-body {
  background: #fff;
  -webkit-box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.06);
}

.ts-latest-post:hover .post-body .post-title a {
  color: #cb2c05;
}

.ts-latest-post:hover .post-body .readmore {
  color: #347604;
}

.ts-latest-post:hover .post-body .readmore i {
  border-color: #347604;
}

.ts-latest-post:hover .post-body .post-date:before {
  border-color: #347604 #fff;
}

.ts-latest-post .post-media.post-image img {
  min-height: 230px;
}

.ts-latest-post .post-body {
  position: relative;
  padding: 0 30px 27px;
  background: #f7f7f7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.ts-latest-post .post-body .post-title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 500;
}

.ts-latest-post .post-body .post-title a {
  color: #101010;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.ts-latest-post .post-body .readmore {
  display: block;
  text-align: right;
}

.ts-latest-post .post-body .post-text p {
  margin-bottom: 10px;
}

.ts-latest-post .post-body .post-date {
  position: absolute;
  right: 30px;
  width: 45px;
  height: 75px;
  background: #347604;
  text-align: center;
  color: #fff;
  padding-top: 2px;
  top: -38px;
}

.ts-latest-post .post-body .post-date .day {
  border-bottom: 1px solid #f15a5a;
  padding-bottom: 3px;
  font-size: 20px;
}

.ts-latest-post .post-body .post-date .month {
  font-size: 12px;
  display: block;
}

.ts-latest-post .post-body .post-date:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-color: #347604 #f7f7f7;
  border-width: 28px 0px 0px 45px;
  border-style: solid;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.ts-latest-post .post-body .post-meta {
  margin-bottom: 15px;
  padding-top: 20px;
}

.ts-latest-post .post-body .post-meta img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.ts-latest-post .post-body .post-meta .post-author {
  font-size: 14px;
  margin-left: 5px;
}

.ts-latest-post .post-body .post-meta .post-author a {
  color: #666666;
}

.news-carousel {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.news-carousel.owl-carousel .owl-item img {
  display: inline-block;
}

.news-carousel.owl-carousel .owl-stage-outer {
  padding-bottom: 20px;
}

.news-carousel.owl-carousel .owl-nav {
  position: absolute;
  top: -110px;
  right: 15px;
}

.news-carousel.owl-carousel.owl-loaded .owl-nav button:hover {
  background: #101010;
  color: #fff;
}

/* Partners */
.ts-pertner {
  padding: 44px 0;

}

.partner-carousel.owl-carousel .owl-nav {
  position: absolute;
  top: 38px;
  width: 100%;
}

.partner-carousel.owl-carousel .owl-nav button {
  position: absolute;
  left: -10px;
}

.partner-carousel.owl-carousel .owl-nav button.owl-next {
  right: -10px;
  left: auto;
}

.partner-item a {
  display: flex;
  height: 110px;
  border-radius: 15px;
}

.partner-item img {
  width: 130px !important;
  margin: auto;
  display: table !important;
  /* filter: grayscale(100%);
    -webkit-filter: grayscale(100%); */
}

.partner-item img:hover {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

/* Footer */
.footer {
  background: url(../images/f-bg.jpg) bottom;
  position: relative;
}

.footer-top {
  position: absolute;
  width: 100%;
  z-index: 2;
}

.footer-top .row {
  margin-top: -50px;
  position: relative;
  z-index: 1;
}

.footer-top [class*=col] {
  background: #28276f;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 22px 0;
  position: relative;
}

.footer-top [class*=col] i,
.footer-top [class*=col] h3,
.footer-top [class*=col] p {
  color: #fff;
}

.footer-top [class*=col] p {
  margin-bottom: 0;
}

.footer-top [class*=col]:nth-child(1):after {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  border-style: solid;
  border-color: transparent transparent transparent #28276f;
  border-width: 50px 0px 50px 50px;
  z-index: 1;
}

.footer-top [class*=col]:nth-child(2) {
  background: #e41a1e;
}

.footer-top [class*=col]:nth-child(2):after {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  border-style: solid;
  border-color: transparent transparent transparent #e41a1e;
  border-width: 50px 0px 50px 50px;
  z-index: 1;
}

.footer-top [class*=col]:nth-child(3) {
  background: #28276f;
}

.footer-top .footer-box i {
  font-size: 36px;
  position: relative;
  top: 3px;
}

.footer-top .footer-box-content {
  padding-left: 25px;
}

.footer-top .footer-box-content h3 {
  font-weight: 600;
}

.footer-main {
  position: relative;
  margin: 0 0 13px;
  padding: 45px 0;
}

.footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: url(../images/footer_img.png);*/
  background-size: cover;
  background-position: bottom left;
  /*The Fallback*/
  background-color: rgb(4, 17, 85, 0.90)
}

.footer-main .footer-about {
  color: #fff;
  font-size: 14px;
}

.footer-main .footer-about p {
  margin-bottom: 18px;
}

.footer-main .footer-logo {
  margin-bottom: 25px;
}

.footer-main .footer-logo p {
  margin-bottom: 10px;
}

.footer-main .footer-social ul li {
  display: inline-block;
  margin-right: 5px;
}

.service-card__icon i {
  color: #8b8b8b;
  font-size: 30px;
}

.footer-main .footer-social ul li a {
  padding: 11px 11px;
  display: block;
  text-align: center;
  line-height: 11px;
  border: 1px solid #ffffff87;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
}

.footer-main .footer-social ul li a:hover {
  background: #cb2c05;
  color: #fff;
  border-color: #cb2c05;
}

.footer-widget .widget-title {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 300;
  padding-left:0px
}

.footer-widget .widget-title span {
  font-weight: 400;
}

.footer-widget .unstyled li {
  margin-bottom: 5px;
}

.footer-widget .unstyled li.news-text>span {
  font-size: 14px;
  display: block;
  color: #999;
}

.footer-widget .unstyled li a {
  font-size: 13px;
  color: #ffffff;

}

.widget-service p strong {
  font-weight: 400;
  font-size: 13px;
  color: #fff;
}

.widget-service p {
  font-weight: 400;
  font-size: 12px;
  color: #7e91f7 !important;
}

.widget-title {
  position: relative;
  margin-bottom: 19px;
  line-height: 26px;
  padding-bottom: 8px;
  font-weight: 500;
}

.widget-title:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #f00001;
}

.footer-widget .unstyled li a:hover {
  text-decoration: underline;
}

.footer-widget.widget-service {
  padding-left: 10px;
}

.unstyled.service-time li {
  border-bottom: 1px dashed #2a3856;
  padding-bottom: 5px;
  margin-bottom: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 14px;
  color: #fff;
}

.unstyled.service-time li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.copyright {
  position: relative;
  background: #041155;
  padding: 3px 0;
}

.copyright .copyright-info {
  color: #fff;
  font-size: 12px;
}

.copyright .back-btn {
  width: 35px;
  height: 35px;
  background: #f00001;
  text-align: center;
  line-height: 35px;
  position: fixed;
  right: 22px;
  bottom: 30px;
  color: #fff;
  z-index: 99;
  Border-radius: 50%;
}

.footer-menu .nav {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footer-menu .nav li {
  margin-left: 40px;
  font-size: 12px;
}

.footer-menu .nav li a {
  color: #fff;
  font-size: 12px;
}

/* Subpages
==================================== */
/* About us
==================================== */
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  border: none;
  background: none;
}

.ts-tab.nav-tabs {
  border: none;
}

.ts-tab.nav-tabs .nav-link {
  color: #101010;
  border: none;
  background: #f7f7f7;
  text-align: center;
  padding: 15px 0 5px;
  margin-bottom: 10px;
  width: 140px;
  height: 100px;
  position: relative;
  z-index: 1;
  padding-left: 35px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.ts-tab.nav-tabs .nav-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 50px 0 50px 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.ts-tab.nav-tabs .nav-link:after {
  content: "";
  position: absolute;
  top: 0;
  right: -76px;
  border-style: solid;
  border-color: transparent transparent transparent #f7f7f7;
  border-width: 50px 46px 50px 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.ts-tab.nav-tabs .nav-link i {
  font-size: 36px;
  display: block;
  margin-bottom: 5px;
}

.ts-tab.nav-tabs .nav-link.active {
  color: #fff;
  background: #347604;
}

.ts-tab.nav-tabs .nav-link.active:after {
  border-color: transparent transparent transparent #347604;
}

/* Team 
===============================================*/
.progress-bar {
  -webkit-transition-duration: 2s;
  transition-duration: 2s;
  width: 0;
}

.ts-team-info {
  position: relative;
}

.ts-team-info .team-img {
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .ts-team-info .team-img img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .ts-team-info .team-img img {
    width: 100%;
  }
}

.ts-team-info .team-img .team-social {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}

.ts-team-info .team-img .team-social li {
  display: inline-block;
  margin-right: 25px;
}

.ts-team-info .team-img .team-social li a {
  font-size: 18px;
  display: block;
  color: #fff;
}

.ts-team-info .team-img .team-social li:last-child {
  margin-right: 0;
}

.ts-team-info .team-img:after {
  position: absolute;
  content: "";
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 105%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(47, 57, 103, 0)), color-stop(54%, rgba(0, 0, 0, 0.54)), to(#f73202));
  background: linear-gradient(to bottom, rgba(47, 57, 103, 0) 0%, rgba(0, 0, 0, 0.54) 54%, #f73202 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00f73202', endColorstr='#f73202', GradientType=0);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.ts-team-info .team-content {
  position: relative;
  padding: 5px 30px 15px;
  background: #f7f7f7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: none;
  border: 1px solid #eeeeee;
  border-top: none;
}

.ts-team-info .team-content .team-details {
  position: relative;
}

.ts-team-info .team-content .team-details .team-rating {
  position: absolute;
  top: 25px;
  right: 0;
  font-size: 41px;
  color: #cb2c05;
}

.ts-team-info .team-content .team-details .team-rating span {
  position: absolute;
  font-size: 16px;
  top: calc(50% - 8px);
  left: calc(50% - 4px);
  z-index: 1;
  color: #fff;
}

.ts-team-info .team-content .team-details p {
  color: #666;
  font-size: 14px;
  margin-top: 6px;
  font-family: "Roboto", sans-serif;
}

.ts-team-info .team-content .team-text p {
  margin-bottom: 0;
}

.ts-team-info .team-content .team-text p span {
  float: right;
}

.ts-team-info .team-content .team-name {
  font-size: 24px;
  font-weight: 500;
  padding-top: 20px;
  margin-bottom: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.ts-team-info .team-content .team-name span {
  font-size: 14px;
  color: #666666;
  display: block;
  margin: 8px 0px;
  margin-left: 15px;
  padding-left: 3px;
  position: relative;
}

.ts-team-info .team-content .team-name span:after {
  position: absolute;
  content: "";
  width: 12px;
  height: 2px;
  background: #cb2c05;
  left: -15px;
  top: calc(50% - 1px);
}

.ts-team-info .team-content p {
  font-size: 16px;
  font-weight: normal;
}

.ts-team-info:hover .team-img:after {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}

.ts-team-info:hover .team-content {
  background: #fff;
  -webkit-box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.ts-team-info:hover .team-content .team-name {
  color: #cb2c05;
}

@media (max-width: 991px) {
  .ts-team-info {
    margin-bottom: 40px;
  }
}

@media (max-width: 991px) {
  .ts-team-info {
    margin-bottom: 40px;
  }
}

@media (max-width: 991px) {
  .ts-team-info>img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .ts-team-info>img {
    width: 100%;
  }
}

.ts-team {
  padding-bottom: 80px;
}

/* Team Classic */
.ts-team-classic {
  padding: 80px 0;
}

.ts-team-classic .ts-team-info .team-content {
  padding: 20px 20px 0;
  position: relative;
  border: none;
}

.ts-team-classic .ts-team-info .team-content .team-name {
  padding-top: 4px;
}

.ts-team-classic .ts-team-info .team-content p {
  margin-bottom: 0;
}

.ts-team-classic .ts-team-info:hover .team-content {
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.ts-team-classic .ts-team-info .team-img .team-social {
  top: auto;
  bottom: -22px;
}

.ts-team-classic .ts-team-info:hover .team-social {
  bottom: 22px;
  opacity: 1;
  visibility: visible;
}

/* Team  Standard */
.ts-team-standard {
  padding: 80px 0px;
}

.ts-team-standard .ts-team-info .team-content {
  position: absolute;
  bottom: 30px;
  border: none;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.ts-team-standard .ts-team-info .team-content span {
  display: block;
  font-size: 14px;
  color: #666666;
  position: relative;
}

.ts-team-standard .ts-team-info .team-content span:before {
  position: absolute;
  content: "";
  left: 0;
  top: 6px;
  width: 10px;
  height: 3px;
  background: #cb2c05;
}

.ts-team-standard .ts-team-info .team-content:hover {
  background: transparent;
}

.ts-team-standard .ts-team-info .team-content .team-name {
  background: #cb2c05;
  padding: 5px 0 10px;
  display: inline-block;
  position: relative;
  color: #fff;
  margin: 0;
  font-size: 20px;
  width: 150px;
  text-align: center;
}

.ts-team-standard .ts-team-info .team-content .team-name:before {
  position: absolute;
  right: -20px;
  top: 0px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 20px 0 0;
  border-color: #cb2c05 transparent transparent transparent;
  content: '';
}

.ts-team-standard .ts-team-info:hover .team-content {
  background: none;
}

.ts-team-standard .ts-team-info:hover .team-social {
  bottom: auto;
  opacity: 1;
  visibility: visible;
}

/* team Carousel */
.team-carousel .owl-nav {
  position: absolute;
  top: -104px;
  right: 0;
}

/*  Skill Area */
.ts-skill-area {
  padding: 100px 0px;
}

.ts-skill-area .progress-wrapper {
  padding-right: 60px;
}

.ts-skill-area .progress-wrapper .intro-desc {
  margin-bottom: 33px;
}

.ts-skill-area .progress-wrapper .ts-progress-bar {
  margin-bottom: 20px;
}

.ts-skill-area .progress-wrapper .ts-progress-bar h3 {
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  margin: 0 0 10px 0;
}

.ts-skill-area .progress-wrapper .ts-progress-bar .progress {
  height: 5px;
  position: relative;
  overflow: visible;
}

.ts-skill-area .progress-wrapper .ts-progress-bar .progress .progress-value {
  display: block;
  font-size: 16px;
  color: #000;
  position: absolute;
  top: -25px;
  right: 0;
}

.ts-skill-area .progress-wrapper .btn {
  margin-top: 17px;
}

.ts-skill-area .video-popup {
  position: relative;
}

.ts-skill-area .video-popup .video-popup-btn {
  position: absolute;
  top: calc(50% - 37px);
  left: calc(50% - 37px);
}

.ts-skill-area .video-popup .video-popup-btn a {
  width: 75px;
  height: 75px;
  text-align: center;
  background: #f73202;
  display: block;
  line-height: 75px;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  padding-left: 5px;
}

@media (max-width: 991px) {
  .ts-skill-area .video-popup img {
    width: 100%;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .ts-skill-area .video-popup img {
    width: 100%;
    margin-top: 40px;
  }
}

/* Gallery 
==============================================*/
.ts-gallery {
  background-image: url(../images/govt-policy.jpg);
  background-attachment: fixed;
  z-index: 1;
  background-size: cover;
  padding: 40px 0;
  position: relative;
  text-align: center;
}

.ts-gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 15, 99, 0.76);
  z-index: -1;
  border-radius: inherit;
}

/* .ts-gallery:after{ background:rgba(0,0,0,.7); width:100%; height:100%;  top:0; left:0; content:''; z-index:1;} */
.ts-gallery .img-gallery {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.ts-gallery .img-gallery img {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

@media (max-width: 991px) {
  .ts-gallery .img-gallery img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .ts-gallery .img-gallery img {
    width: 100%;
  }
}

.ts-gallery .img-gallery a {
  display: block;
}

.ts-gallery .img-gallery a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.5);
  top: 50%;
  left: 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.ts-gallery .img-gallery .gallery-popup .gallery-content {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 0;
  width: 100%;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}

.ts-gallery .img-gallery .gallery-popup .gallery-content h3 {
  color: #fff;
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 2px;
}

.ts-gallery .img-gallery .gallery-popup .gallery-content p {
  font-style: italic;
  color: #999;
  margin-bottom: 0;
}

.ts-gallery .img-gallery:hover a:after {
  visibility: visible;
  opacity: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.ts-gallery .img-gallery:hover .gallery-popup .gallery-content {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1) translateY(-25px);
  transform: scale(1) translateY(-25px);
}

.ts-gallery .img-gallery:hover img {
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
}

@media (max-width: 991px) {
  .ts-gallery .img-gallery {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .ts-gallery .img-gallery {
    margin-bottom: 40px;
  }
}

/* Pricing 
==============================================*/
.ts-pricing-intro .box-skew-left:after {
  background: none;
}

/* Service 
==============================================*/
.ts-service-wrapper .service-content {
  background: none;
  border-top: none;
}

.ts-service-wrapper:hover .service-content {
  border-color: transparent;
}

.contactMe .btn {
  margin-right: 10px;
}

/* News Details
=================================== */
.post-content.post-single {
  margin-bottom: 40px;
  position: relative;
}

.post-content.post-single .post-date {
  content: "";
  position: absolute;
  top: 40px;
  right: 40px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='58px' height='96px'%3E%3Cpath fill-rule='evenodd' fill='rgb(210, 0, 34)' d='M58.000,-0.000 L58.000,96.000 L-0.000,70.400 L-0.000,-0.000 L58.000,-0.000 Z'/%3E%3C/svg%3E");
  height: 96px;
  width: 60px;
  background-repeat: no-repeat;
  text-align: center;
  padding-top: 15px;
}

.post-content.post-single .post-date span {
  color: #fff;
  display: inline-block;
}

.post-content.post-single .post-date span.day {
  font-size: 32px;
  border-bottom: 1px solid #db334e;
  padding-bottom: 9px;
  margin-bottom: 2px;
}

.post-content.post-single .post-date span.month {
  display: block;
}

.post-content.post-single .post-body {
  border: 1px solid #eeeeee;
  padding: 17px 40px 30px;
}

.post-content.post-single .post-body .entry-title {
  font-size: 30px;
  margin-bottom: 25px;
}

.post-content.post-single .post-body .entry-title a {
  color: #010101;
  -webkit-transition: all ease 500ms;
  transition: all ease 500ms;
}

.post-content.post-single .post-body .post-meta {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.post-content.post-single .post-body .post-meta .post-author a {
  color: #666666;
  font-size: 14px;
  margin-right: 5px;
  margin-left: 10px;
}

.post-content.post-single .post-body .post-meta .post-author img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.post-content.post-single .post-body .post-meta span {
  margin-right: 25px;
}

.post-content.post-single .post-body .post-meta .post-comment {
  color: #666666;
  font-size: 14px;
}

.post-content.post-single .post-body .post-meta .post-comment a {
  margin-left: 5px;
}

.post-content.post-single .post-body .post-meta a {
  color: #666666;
  font-size: 14px;
  margin-right: 5px;
  margin-left: 10px;
}

.post-content.post-single .post-body .entry-content blockquote {
  margin-top: 37px;
  margin-bottom: 35px;
}

.post-content.post-single .post-body .entry-content blockquote i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  display: inline-block;
  font-size: 36px;
  color: #cb2c05;
  margin-bottom: 22px;
}

.post-content.post-single .post-body .entry-content blockquote p cite {
  color: #cb2c05;
}

.post-content.post-single .post-body .entry-content>h3 {
  color: #101010;
  font-size: 24px;
  margin-bottom: 25px;
}

.post-content.post-single .post-body .entry-content .list-round-solid {
  margin-top: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 35px;
  margin-bottom: 35px;
}

.post-content.post-single .post-body .post-footer {
  margin-top: 26px;
}

.post-content.post-single .post-body .post-footer .post-tags strong {
  color: #101010;
  margin-right: 15px;
}

.post-content.post-single .post-body .post-footer .post-tags a {
  border: 1px solid #eee;
  padding: 5px 20px;
  margin-right: 10px;
  color: #666666;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.post-content.post-single .post-body .post-footer .post-tags a:hover {
  background: #e7272d;
  color: #fff;
}

.post-content.post-single .post-body .post-footer .post-tags a:last-child {
  margin-right: 0;
}

.post-social-icons li {
  display: inline-block;
  margin-left: 12px;
}

.post-social-icons li a {
  color: #252a37;
  font-size: 14px;
}

.author-box {
  padding: 40px 40px 20px;
}

.author-box .author-img img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.author-box .author-info {
  margin-left: 90px;
}

.author-box .author-info>h3 {
  margin-bottom: 4px;
}

.author-box .author-url {
  margin-bottom: 12px;
}

.author-box .author-url a {
  color: #666666;
  font-size: 14px;
}

.post-navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 40px;
  position: relative;
}

.post-navigation.borderd {
  border: 1px solid #f1f1f1;
}

.post-navigation .post-previous a span i {
  padding-right: 10px;
}

.post-navigation .post-next a span i {
  padding-left: 5px;
}

.post-navigation div {
  padding: 30px 40px;
}

.post-navigation div a h3 {
  line-height: 30px;
}

.post-navigation div a span {
  color: #666;
  font-size: 14px;
}

.post-navigation div:hover a span i {
  color: #cb2c05;
}

.post-navigation .post-next {
  text-align: right;
}

.post-navigation:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 70px;
  background: #f1f1f1;
  top: calc(50% - 35px);
  left: calc(50% - 1px);
}

.comments-area .comments-heading {
  font-size: 24px;
  margin-bottom: 32px;
}

.comments-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 45px;
}

.comments-list .comment {
  margin-bottom: 40px;
}

.comments-list .comment .comment-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.comments-list .comment .comment-body {
  margin-left: 90px;
}

.comments-list .comment .comment-body .comment-author {
  font-size: 20px;
  color: #101010;
}

.comments-list .comment .comment-body .comment-date {
  display: block;
  font-size: 14px;
  margin-top: -2px;
  margin-bottom: 10px;
}

.comments-list .comment .comment-body .meta-data span a {
  color: #666666;
  font-size: 14px;
}

.comments-list .comment .comment-body .meta-data span a i {
  font-size: 16px;
  color: #252a37;
  margin-right: 5px;
}

.comments-list .comments-reply {
  list-style: none;
  margin: 0;
}

.comments-list .comments-reply .comment {
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.comments-list .comments-reply .comment .comment-body {
  background: #f7f9fd;
  padding: 25px 30px 10px;
}

.comments-form .form-control:focus {
  color: #666;
}

.comments-form .title-normal {
  margin-bottom: 35px;
  font-size: 24px;
}

.comments-form form input {
  padding: 12px 18px;
  border-radius: 00;
  border-color: #eeeeee;
}

.comments-form form textarea {
  border-radius: 0;
  border-color: #eeeeee;
  resize: none;
}

/* Sidebar */
/* Widget */
.sidebar.sidebar-right {
  margin-left: 10px;
}

.sidebar.sidebar-right.mt-minus-105 {
  margin-top: -105px;
}

.sidebar.sidebar-left {
  margin-right: 10px;
}

@media (max-width: 991px) {
  .sidebar {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .sidebar {
    margin-top: 40px;
  }
}

.sidebar .widget {
  padding: 35px 40px;
  border: 1px solid #eeeeee;
  margin-bottom: 40px;
}

.sidebar .widget .widget-title span {
  font-weight: 400;
}

.sidebar .widget.widget-social {
  padding-right: 0;
  background: #f1f1f1;
}

.sidebar .widget .service-time li {
  border-bottom: none;
  font-size: 16px;
  color: #666666;
}

.sidebar .widget.widget-download {
  padding: 27px 35px;
  background: #f73202;
}

.sidebar .widget.widget-search {
  padding: 0;
  border: none;
  position: relative;
}

.sidebar .widget.widget-search input {
  padding: 15px 25px;
  border-radius: 0;
  font-style: italic;
  border-color: #eee;
  color: #101010;
}

.sidebar .widget.widget-search input::-webkit-input-placeholder {
  color: #101010;
}

.sidebar .widget.widget-search input::-moz-placeholder {
  color: #101010;
}

.sidebar .widget.widget-search input:-ms-input-placeholder {
  color: #101010;
}

.sidebar .widget.widget-search input::-ms-input-placeholder {
  color: #101010;
}

.sidebar .widget.widget-search input::placeholder {
  color: #101010;
}

.sidebar .widget.widget-search .input-group-btn i {
  font-size: 18px;
  color: #fff;
  width: 55px;
  height: 55px;
  line-height: 55px;
  background: #e7272d;
  text-align: center;
  position: absolute;
  right: 0;
  z-index: 2;
}

.sidebar .widget .widget-title {
  margin-bottom: 35px;
}

.sidebar .widget .media {
  margin-bottom: 40px;
}

.sidebar .widget .media img {
  width: 80px;
  height: 70px;
}

.sidebar .widget .media:last-child {
  margin-bottom: 0;
}

.sidebar .widget .media-body {
  margin-left: 20px;
}

.sidebar .widget .media-body .post-date a {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
  display: inline-block;
}

.sidebar .widget .media-body .entry-title a {
  color: #101010;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sidebar .widget .media-body .entry-title a:hover {
  color: #cb2c05;
}

.sidebar .widget .widget-nav-tabs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar .widget .widget-nav-tabs li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 17px;
}

.sidebar .widget .widget-nav-tabs li a {
  color: #666;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sidebar .widget .widget-nav-tabs li:last-child {
  margin-bottom: 0;
}

.sidebar .widget .widget-nav-tabs li:hover a,
.sidebar .widget .widget-nav-tabs li:hover span {
  color: #cb2c05;
}

.sidebar .widget.widget-tags ul li {
  display: inline-block;
  margin-bottom: 8px;
  margin-right: 4px;
}

.sidebar .widget.widget-tags ul li a {
  display: block;
  padding: 5px 20px;
  border: 1px solid #eee;
  color: #666;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sidebar .widget.widget-tags ul li a:hover {
  background: #e7272d;
  color: #fff;
}

.sidebar .widget.widget-tags ul li:last-child {
  margin-bottom: 0;
}

/* News left and Right
=================================== */
.post {
  margin-bottom: 40px;
  position: relative;
}

.post .post-date {
  content: "";
  position: absolute;
  top: 40px;
  right: 40px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='58px' height='96px'%3E%3Cpath fill-rule='evenodd' fill='rgb(210, 0, 34)' d='M58.000,-0.000 L58.000,96.000 L-0.000,70.400 L-0.000,-0.000 L58.000,-0.000 Z'/%3E%3C/svg%3E");
  height: 96px;
  width: 60px;
  background-repeat: no-repeat;
  text-align: center;
  padding-top: 15px;
}

.post .post-date span {
  color: #fff;
  display: inline-block;
}

.post .post-date span.day {
  font-size: 32px;
  border-bottom: 1px solid #db334e;
  padding-bottom: 9px;
  margin-bottom: 2px;
}

.post .post-date span.month {
  display: block;
}

.post .post-body {
  border: 1px solid #eeeeee;
  padding: 17px 40px 30px;
}

.post .post-body .entry-title {
  font-size: 30px;
  margin-bottom: 25px;
}

.post .post-body .entry-title a {
  color: #010101;
  -webkit-transition: all ease 500ms;
  transition: all ease 500ms;
}

.post .post-body .entry-title a:hover {
  color: #cb2c05;
}

.post .post-body .post-meta .post-footer {
  display: block;
  float: right;
  margin-top: 5px;
  margin-right: 0;
}

.post .post-body .post-meta .post-footer a {
  margin-right: 0;
  color: #cb2c05;
}

.post .post-body .post-meta .post-footer a i {
  border-radius: 0;
  border: none;
  font-size: 16px;
  margin-left: 0px;
}

.post .post-quote-wrapper {
  border: 1px solid #eee;
}

.post .post-quote-content {
  padding: 35px 40px 10px;
}

.post .post-quote-content .entry-header i {
  display: inline-block;
  font-size: 46px;
  color: #cb2c05;
  margin-bottom: 22px;
}

.post .post-quote-content .entry-header .entry-title {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 29px;
  font-style: italic;
}

.post .post-quote-content .entry-header .entry-title a {
  color: #666666;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.post .post-quote-content .post-meta {
  padding-top: 10px;
  text-align: left;
}

.post .post-quote-content .post-meta .post-footer {
  display: block;
  float: right;
  margin-top: 5px;
  margin-right: 0;
}

.post .post-quote-content .post-meta .post-footer a {
  margin-right: 0;
  color: #cb2c05;
}

.post .post-quote-content .post-meta .post-footer a i {
  border-radius: 0;
  border: none;
  font-size: 16px;
  margin-left: 0px;
}

.post .post-meta {
  border-top: 1px solid #eeeeee;
  padding-top: 20px;
  margin-top: 30px;
}

.post .post-meta .post-author a {
  color: #666666;
  font-size: 14px;
  margin-right: 5px;
  margin-left: 10px;
}

.post .post-meta .post-author img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.post .post-meta span {
  margin-right: 25px;
}

.post .post-meta .post-comment {
  color: #666666;
  font-size: 14px;
}

.post .post-meta .post-comment a {
  margin-left: 5px;
}

.post .post-meta a {
  color: #666666;
  font-size: 14px;
  margin-right: 5px;
  margin-left: 10px;
}

/* Contact us */
.mapouter .gmap_canvas {
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

.mapouter .gmap_canvas #gmap_canvas {
  width: 100%;
  border: none;
}

.contact-details {
  background: #f73202;
  padding: 52px 40px 38px;
}

.contact-details h2.column-title {
  margin-bottom: 27px;
}

.contact-details .column-title {
  margin-bottom: 12px;
}

.contact-details .contact-info-item {
  margin-bottom: 23px;
}

.contact-details .contact-info-item:last-of-type {
  margin-bottom: 0;
}

.contact-details p {
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  margin-top: 15px;
  color: #fff;
}

@media (max-width: 991px) {
  .contact-details {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .contact-details {
    margin-top: 40px;
  }
}

.contact-us .contactMe {
  border: none;
}

.contact-us .contactMe>section {
  padding: 0;
}

.contact-us .contactMe textarea {
  height: 150px;
}

/* Testimonial
=================================== */
/* Testimonial common */
.quote-ratings {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.quote-ratings .service-name {
  font-family: "Roboto", sans-serif;
}

.testimonial-item-single {
  padding: 30px 30px 20px;
  border: 1px solid #eee;
}

.testimonial-item-single .quote-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.testimonial-item-single .quote-item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.testimonial-item-single .quote-item-info .quote-author {
  margin-bottom: 4px;
}

.testimonial-item-single .quote-text {
  margin-bottom: 15px;
}

.testimonial-item-single.with-bg {
  background: #fff;
  border: none;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(48, 48, 48, 0.1);
  box-shadow: 0px 2px 5px 0px rgba(48, 48, 48, 0.1);
}

.testimonial-item-single.with-bg .quote-item {
  position: relative;
}

.testimonial-item-single.with-bg .quote-item:before {
  content: "\e937";
  font-family: iconfont;
  position: absolute;
  right: 0;
  font-size: 46px;
  color: #cb2c05;
}

@media (max-width: 320px) {
  .testimonial-item-single.with-bg .quote-item:before {
    top: 40px;
  }
}

/* Testimonial Standard */
.ts-testimonial-standard.mt-minus95 {
  margin-top: -95px;
}

.testimonial-standard.owl-carousel .owl-stage-outer {
  padding: 0 0 5px 5px;
}

.testimonial-standard.owl-carousel .owl-nav {
  position: absolute;
  top: -100px;
  width: 100%;
  text-align: right;
}

/* Testimonial Classic */
.testimonial-item-wrapper .quote-item {
  position: relative;
}

.testimonial-item-wrapper .quote-item img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: inline-block;
}

.testimonial-item-wrapper .quote-item i {
  position: absolute;
  right: 0;
  font-size: 63px;
  color: #cb2c05;
}

.testimonial-item-wrapper .quote-item-info {
  margin-top: 25px;
  margin-bottom: 28px;
}

.testimonial-item-wrapper .quote-item-info .quote-author {
  margin-bottom: 0;
}

.testimonial-item-wrapper .quote-item-info .quote-subtext {
  font-size: 14px;
}

/* Testimonial Slide */
.testimonial-slide {
  max-width: 440px;
}

.testimonial-slide .owl-stage-outer {
  padding-top: 75px;
}

.testimonial-slide .owl-nav {
  text-align: right;
  margin-top: -55px;
  position: relative;
  z-index: 1;
}

/* Service
============================= */
.ts-testimonial-bg {
  padding-bottom: 0;
  background: url(../images/service/service_bg2.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  height: 275px;
}


/* Service Details
============================== */
.service-menu li {
  background: #f8f8f8;
  margin-bottom: 10px;
}

.service-menu li a {
  display: block;
  padding: 17px 35px;
  color: #666;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.service-menu li a:hover {
  background: #347604;
  color: #fff;
}

.ts-service-detials .sidebar .widget {
  padding: 35px 20px 35px 30px;
}

.ts-service-detials .sidebar .widget.widget-download {
  padding-bottom: 0;
}

.ts-service-detials .sidebar .widget.widget-download p {
  color: #fff;
  margin-top: 19px;
}

.ts-service-content .section-title {
  margin-bottom: 50px;
}

.ts-service-content .column-title {
  margin-bottom: 25px;
}

.ts-service-content .service-img {
  margin: 40px 0 35px;
  display: block;
}

.ts-service-content .service-list {
  margin-top: 30px;
}

/* Pricing table
===================================== */
.ts-pricing-intro .box-skew-left:before {
  background: url(../images/pricing-bg1.jpg);
  width: 128%;
  z-index: 1;
  background-size: cover;
  background-position: center;
}

@media (min-width: 992px) {
  .ts-pricing-intro .box-skew-left:before {
    background-position: 75% 90%;
    background-size: auto;
  }
}

.plan {
  padding: 35px 40px 40px;
  border-radius: 5px;
}

.plan .plan-name {
  font-weight: 600;
  margin-bottom: 20px;
}

.plan .plan-price strong {
  font-size: 45px;
  font-weight: 600;
}

.plan .plan-price sup {
  font-size: 20px;
  top: -20px;
}

.plan ul {
  margin-top: 35px;
}

.plan ul li {
  margin-bottom: 12px;
}

.plan ul li:last-child {
  margin-bottom: 45px;
}

.plan.plan-highlight {
  background: #f73202;
  color: #fff;
}

.plan.plan-highlight .plan-name {
  color: #fff;
}

.plan.plan-highlight .plan-price sup,
.plan.plan-highlight .plan-price strong {
  color: #fff;
}

.plan .plan-tag {
  position: absolute;
  top: 16px;
  left: 38px;
  width: 65px;
  height: 32px;
  background: red;
  line-height: 32px;
  display: block;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  padding-left: 10px;
}

.plan .plan-tag:after {
  content: "";
  position: absolute;
  left: -1px;
  top: 0px;
  border-style: solid;
  border-color: transparent transparent transparent #f73202;
  border-width: 16px 0 16px 12px;
}

.ts-pricing-table-standard .plan {
  background: #fff;
}

.ts-pricing-table-standard .plan .plan-price {
  margin: 0 -40px;
  background: #f8f8f8;
  position: relative;
  height: 80px;
  padding-top: 18px;
}

.ts-pricing-table-standard .plan .plan-price span {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
  display: block;
  position: relative;
  z-index: 1;
  padding-top: 4px;
}

.ts-pricing-table-standard .plan .plan-price:after {
  content: "";
  position: absolute;
  top: 80px;
  left: 0;
  border-style: solid;
  border-color: #f8f8f8 transparent transparent;
  border-width: 40px 175px 0 175px;
}

.ts-pricing-table-standard .plan ul {
  margin-top: 85px;
}

.ts-pricing-table-standard .plan.plan-highlight .plan-name {
  color: #101010;
}

.ts-pricing-table-standard .plan.plan-highlight .plan-price {
  background: #347604;
  color: #fff;
}

.ts-pricing-table-standard .plan.plan-highlight .plan-price:after {
  border-color: #347604 transparent transparent;
}

.ts-pricing-table-standard .plan.plan-highlight .plan-price span {
  color: #fff;
}

.ts-pricing-table-standard .plan.plan-highlight ul li {
  color: #666;
}

/* Faq
======================================= */
.card {
  border-radius: 0;
  margin-bottom: 20px;
  border-color: #e5e5e5;
}

.card .card-header {
  background: none;
  border-bottom: none;
  padding: 28px 25px 30px;
}

.card .card-body {
  padding-top: 0;
  margin-top: -5px;
  padding-left: 45px;
}

.card .card-button a {
  font-weight: 700;
  color: #101010;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  position: relative;
  z-index: 1;
  padding-right: 20px;
}

.card .card-button a[aria-expanded="true"] {
  color: #cb2c05;
}

.card .card-button a[aria-expanded="true"]:before {
  content: "\e93d";
}

.card .card-button a[aria-expanded="false"]:after {
  content: "\e93e";
}

.card .card-button a:before,
.card .card-button a:after {
  float: right;
  font-size: 12px;
  color: #101010;
  font-family: iconfont;
  position: absolute;
  top: 0;
  right: 0;
}

#preloader {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 9999999999;
  background-color: #347604;
  -webkit-transition: all 1s ease-in;
  transition: all 1s ease-in;
}

#preloader .preloader-cancel-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 40px;
  -webkit-transition: all 1s ease-in;
  transition: all 1s ease-in;
}

#preloader.loaded {
  top: -150%;
}

#preloader.loaded .preloader-cancel-btn {
  bottom: 150%;
}

.prelaoder-btn.btn.btn-bordered {
  color: #fff;
}

.preloader-wrapper {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.loader {
  color: #fff;
  font-size: 80px;
}

.social-icons-header {
  list-style-type: none;
  margin-bottom: 0px;
      padding-left: 10px;
    padding-right: 10px;
}

.social-icons-header li {
  vertical-align: super;
  padding: 0px 5px 0px 5px;
  display: inline;
}

.skip-content {
  padding-right: 10px;
  border-right: 1px solid lightslategray;
  font-size: 12px!important;
  margin-bottom: 3px;
  color: white;
}

.bi-facebook {
  color: #b5dcff;
}

.bi-twitter-x {
  color: #fff;
}

.bi-play-circle-fill {
  color: #fff;
}

.topRightHeader .dropdown>a {
  margin-bottom: 4px;
  font-weight: 600;
  padding: 20px 40px;
  background-color: #ffcc00;
  margin-left: 4px;
  font-size: 12px;
  display: block;
  padding: 1px 9px;
  float: left;
  text-transform: uppercase;
  line-height: 25px;
  transition: all ease-in-out .2s;
  -moz-transition: all ease-in-out .2s;
  -ms-transition: all ease-in-out .2s;
  -o-transition: all ease-in-out .2s;
  -webkit-transition: all ease-in-out .2s;
  color: #0b457f;
}
/* .topRightHeader .dropdown>a:hover {
  background: #3b3aa3;
} */

.topRightHeader .dropdown {
  float: left;
}

.topRightHeader .dropdown>img {
  cursor: pointer;
}

.topRightHeader .dropdown-menu {
  left: auto;
  right: 0;
  border: 0;
  box-shadow: none;
}

.topRightHeader .menuPanelDown {
  left: 0px;
  right: auto;
  top: 28px;
  padding: 0 !important;
  margin-bottom: 0;
  min-width: 92px;
  border-radius: 0;
  text-align: center;
  z-index: 999999999;
}

.topRightHeader .menuPanelDown li {
  padding: 0 !important;
  display: inline-block;
}

.topRightHeader .menuPanelDown li a {
  text-align: center;
  margin-bottom: 4px;
  padding: 0px 13px;
  font-size: 14px;
  border-right: 1px solid lightslategrey;
  display: block;
  color: #fff;
}

.topRightHeader .menuPanelDown li a:hover {
  color: #0b457f;
  background: #ffcc00;
}
.topRightHeader .dropdown:hover .menuPanelDown {
  display: block;
}

.topRightHeader .menuPanelDown li a.blackBtn{ background:#000; color:#fff; }
.topRightHeader .menuPanelDown li a.whiteBtn{ background:#fff; color:#000; }


.topRightHeader .dropdown .languageMenu {}

.topRightHeader .dropdown .languageMenu li a {
  padding: 3px 23px;
  color: #0b457f;
  border-right: none;
}

.topRightHeader .dropdown .menuPanelDown li.blackBtnBox a {
  background: #000;
}

.topRightHeader .dropdown .menuPanelDown li.whiteBtnBox a {
  background: #fff;
  color: #000;
}

.pd {
  padding: 0;
}

.nh:before {
  display: none;
}

.viewAllPanel {
  position: relative;
  z-index: 99;
}

.viewAllBte {
  border: 2px solid #FFF;
  padding: 5px 13px;
  border-radius: 6px;
  color: #fff;
  overflow: hidden;
  letter-spacing: 2px;
  background: #f00001;
}

.viewAllPanel .hvr-shutter-in-vertical:before {
  background: #2a2a84;
}

.viewAllPanel-2 {
  position: relative;
}

.viewAllBte-2 {
  border: 2px solid #041155;
  padding: 7px 15px;
  border-radius: 0px;
  color: #041155;
  overflow: hidden;
  letter-spacing: 2px;
  background: #041155;
  margin-right: 10px;
}

.viewAllPanel-2 .hvr-shutter-in-vertical:before {
  background: #fff;
}

.viewAllPanel-3 {
  position: relative;
}

.viewAllBte-3 {
  border: 2px solid #fff;
  padding: 7px 25px;
  border-radius: 0px;
  color: #fff;
  overflow: hidden;
  letter-spacing: 2px;
  background: #f67a00;
}

.viewAllPanel-3 .hvr-shutter-in-vertical:before {
  background: #cb2c05;
}

.ts-intro-wrapper {
  position: relative;
}

.ts-intro-wrapper:hover .readBtn {
  bottom: 30px;
  opacity: 100;
}

.readBtn {
  position: absolute !important;
  bottom: -10px;
  right: 10px;
  transition: all ease-in-out .4s;
  -moz-transition: all ease-in-out .4s;
  -ms-transition: all ease-in-out .4s;
  -o-transition: all ease-in-out .4s;
  -webkit-transition: all ease-in-out .4s;
  opacity: 0;
}

.readBtn {
  position: absolute;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 40px;
  display: inline-block;
  background: #f73202;
  box-shadow: 0 10px 30px rgba(0, 116, 230, .3);
  border: 2px solid #e8bc0d;
  overflow: hidden;
  color: #fff !important;
  transition: all ease-in-out .2s;
  -moz-transition: all ease-in-out .2s;
  -ms-transition: all ease-in-out .2s;
  -o-transition: all ease-in-out .2s;
  -webkit-transition: all ease-in-out .2s;
}

a.hvr-bounce-to-right:before {
  background: #e8bc0d;
  color: #fff !important;
}


.section-2 {
  width: 100%;
  background: url(../images/bg1.jpg) no-repeat fixed top;
  text-align: center;
  padding: 70px 0;
  position: relative;
  margin-top: 20px;
}

.section-2:after {
  content: '';
  display: block;
  height: 100%;
  background: url(../images/svg/m-style.svg) bottom no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  z-index: 9999;
}

.section-2:before {
  position: absolute;
  top: 0;
  content: '';

  height: 100%;
  left: 0;
  width: 100%;
  background: rgba(237, 32, 36, .9)
    /* background:  linear-gradient(-29deg,rgba(193, 15, 65, 0.9) 0,rgba(35, 59, 136, .4) 100%);
          background: -moz-linear-gradient(-29deg,rgba(193, 15, 65, 0.9) 0,rgba(35, 59, 136, .4) 100%);
          background: -ms-linear-gradient(-29deg,rgba(193, 15, 65, 0.9) 0,rgba(35, 59, 136, .4) 100%);
          background: -o-linear-gradient(-29deg,rgba(193, 15, 65, 0.9) 0,rgba(35, 59, 136, .4) 100%);
          background: linear-gradient(-29deg,rgba(193, 15, 65, 0.9) 0,rgba(35, 59, 136, .4) 100%);*/
}

.section-2 h2 {
  font-size: 28px;
  color: #fff;
  padding: 0;
  margin: 0;
  z-index: 9;
  position: relative;
  text-shadow: 0 0 3px #000;
}

.section-2 p {
  font-size: 18px;
  color: #fff;
  margin: 15px 0;
  line-height: 30px;
  text-shadow: 0 0 3px #000;
  z-index: 9;
  position: relative;
}

.section-2 a {
  z-index: 99999;
  position: relative;
}

.canvas-background {
  position: absolute;
  width: 100%;
  z-index: 999;
  height: 100%;
  top: 0;
  left: 0
}

section#ts-feature h3,
section#ts-feature p {
  margin-bottom: 9px;
  text-align: justify;
}

section#ts-feature {
  padding: 10px 0;
}

.whatwedo_sec h3 {
  color: #fff;
}

.whatwedo_sec img {
  width: 60px;
  filter: brightness(0) invert(1);
  margin-bottom: 10px;
}

.whatwedo_sec .col-md-4 {
  border-right: 1px dashed;
  border-bottom: 1px dashed;
  padding: 25px;
}

.whatwedo_sec .col-md-4:nth-child(6),
.whatwedo_sec .col-md-4:nth-child(5),
.whatwedo_sec .col-md-4:nth-child(4) {
  border-bottom: none
}

.whatwedo_sec .col-md-4:nth-child(3),
.whatwedo_sec .col-md-4:nth-child(6) {
  border-right: none
}

.footer-box .footer-box-content p {
  font-size: 14px;
  font-weight: 500;
}

.ts-slider-area {
  height: 403px;
  overflow: hidden;
}

.ts-slider-area img {
  height: 403px;
}

ul.top_links li {
  display: inline-block
}

ul.top_links li img {
  width: 15px;
}

ul.top_links li a {
  color: #fff;
  font-size: 13px;
}

ul.top_links li a:hover {
  /* background: #347604; */
}

/* Number Thats Matter */
.number_matter {
  background: #ececec;
  padding: 40px 0;
}

.number_matter .box {
  padding: 25px 0;
  margin: 10px 0;
  border: 1px solid;
  border-radius: 6px;
  text-align: center;
}

.number_matter .box h2 {
  font-size: 32px;
  margin-bottom: 5px;
}

.number_matter .box p {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0
}

.number_matter2 {
  padding: 40px 0;
}

.number_matter2 .box {
  position: relative;
  padding: 32px;
  background-color: #152654;
}

.number_matter2 .box h2 {
  color: #fff;
  font-size: 20px;
}

.number_matter2 .box a {
  color: #fff;
  display: inline-block;
  margin-top: 20px;
  background: #091330;
  padding: 10px 15px;
  font-size: 10px;
}

.number_matter2 .box a:hover {
  background: #347604;
}

.number_matter2 .box img {
  width: 60px;
  filter: brightness(0) invert(1);
  margin-bottom: 10px;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service-card {
  margin-bottom: 55px;
}

.service-card__image {
  position: relative;
  overflow: hidden;
}

.service-card__image>img {
  width: 100%;
  transform: scale(1);
  transition: transform 500ms ease;
}

.service-card .hoverImg {
  position: absolute;
  left: -100px;
  top: -100px;
  width: auto;
  transition: all .4s ease;
}

.service-card:hover .hoverImg {
  position: absolute;
  left: 10px;
  top: 10px;
  width: auto;
  transition: all .4s ease;
}

.service-card .hoverImg img {
  width: auto;
}

.service-card__image>a {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--thm-black-rgb), 0.4);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 500ms ease, transform 500ms ease;
}

.service-card__image>a::before,
.service-card__image>a::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-card__image>a::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-card:hover .service-card__image>a {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover .service-card__image>img {
  transform: scale(1.05);
}

.service-card__icon {
  width: 92px;
  height: 92px;
  background-color: #fff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  font-size: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--thm-base);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  top: -46px;
  margin-bottom: -46px;
  position: relative;
  z-index: 10;
  transition: all 500ms ease;
}

.service-card .service-card__icon img {
  width: auto;
  padding: 10px;
}

.service-card:hover .service-card__icon img {
  width: auto;
  padding: 10px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.service-card:hover .service-card__icon {
  background-color: #347604;
  color: #fff;
}

.service-card:hover .service-card__icon i {
  color: #fff;
}

.service-card__content {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  margin-top: -20px;
}

.service-card__content__inner {
  background-color: #fff;
  border-bottom: 2px solid #f2ede9;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  position: relative;
  transition: all 500ms ease;
}

.service-card__content__inner::after {
  content: '';
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: -3px;
  left: 0;
  transform-origin: left center;
  transform: scale(0, 1);
  background-color: #347604;
  transition: transform 500ms ease;
}

.service-card:hover .service-card__content__inner {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
}

.service-card:hover .service-card__content__inner::after {
  transform: scale(1, 1);
  transform-origin: right center;
}

.service-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #0e2b5c;
  display: inline-block;
  margin-top: 25px;
  margin-bottom: 16px;
}

.service-card__title a {
  color: #272c38;
  transition: all 500ms ease;
}

.service-card__title a:hover {
  color: #272c38;
}

.service-card__link {
  width: 40px;
  height: 40px;
  background-color: #f2ede9;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #68686f;
  transition: all 500ms ease;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  bottom: -21px;
  margin-top: -21px;
  z-index: 11;
}

.service-card__link i {
  font-weight: 700;
  font-size: 23px;
}

.service-card__link:hover {
  color: #fff;
  background-color: #347604;
}

.service-card:hover .service-card__link {
  color: #fff;
  background-color: #347604;
}

.ts-logo img {
  margin-top: 6%;
  width: 73%;
  max-width: 100%;
}

.header-cart {
  background: #f00001;
  z-index: 9999;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}

.topRightHeader {
  padding-left: 48px;
  display: flex;
  align-items: center;
  justify-content: end;
}

.about-bg {
  border: 2px solid #cdccd7;
  margin-top: -63px;
  border-radius: 6px 49px 6px 52px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.aboutimgbro {
  width: 100%;

  padding: 5px;
  margin-top: 0px;
  height: 300px;
  border-radius: 6px 49px 6px 52px;
}

#ts-maintenders #nav-tab {
  font-weight: 500;
  font-size: 19px;
  color: #fff;
  border-bottom: 2px solid #cacaca;
  padding: 0px 0px;
  border-radius: 5px 5px 0 0px;
}

.events-news h2 {
  font-weight: 500;
  font-size: 19px;
  color: #27266d;
  background: #fff;
  padding: 6px 6px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  border-radius: 5px 5px 0 0px;
}

#ts-maintenders .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #02a9e3 !important;
  background-color: none;
  border-bottom: 2px solid #02a9e3 !important;
  border-color: var(--bs-nav-tabs-link-active-border-color);

}

#ts-maintenders .nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  /* isolation: isolate; */
  /* border-color: var(--bs-nav-tabs-link-hover-border-color); */
  border-bottom: 2px solid #02a9e3 !important;
  color: #02a9e3 !important;
  border: none;
}

#ts-maintenders .nav-link:focus-visible {
  outline: 0;
  box-shadow: none !important;
  border: none !important;
}

#ts-maintenders .nav-link {
  color: #0c3587;
  padding: 5px 22px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease 0s;
  margin: 0 11px -2px 0;
}

#ts-maintenders .nav-link:focus,
.nav-link:hover {
  color: #2a2a84;
}

#ts-maintenders .nav-link.active{ color:#fff !important;} 

#ts-maintenders #nav-tabContent {
  border-radius: 0 0 10px 10px;
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}

#ts-maintenders .card {
  border-radius: 5px 5px 5px 5px;
}

.events-news-box {
  padding: 0 10px;
}

.events-news ul {
  margin: 0;
  padding: 0;
}

.events-news ul li {
  margin: 0;
  overflow: hidden;
  text-align: left;
  list-style-type: none;

}

.events-news ul li a {
  color: #222;
  display: block;
  padding: 8px 10px;
  font-weight: 400;
  background: #f2f4f9;
  margin-bottom: 12px;
  border-radius: 3px;

}

.events-news i.fa.fa-angle-right {
  float: left;
  color: red;
  margin: 4px 8px 0 0;
}

.events-news ul li:nth-of-type(odd) a {
  background: #fff;
}

.events-news ul li a:hover {
  Background: #fff;
  color: #0c3587;
}

.events-news ul li a dt {
  margin-right: 10px;
  font-weight: 400;
  float: left;
  font-weight: 600;
  color: black;
  font-size: 15px;
}

.events-news ul li a strong {
  font-size: 13px;
  float: right;
  background: #f00001;
  color: #fff;
  padding: 0 7px;
  font-weight: 500;
  border-radius: 10px 0px 6px;
  margin-bottom: 9px;
}

.events-news p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  text-align: left;

}

.tenders {
  padding: 0 10px;
}

.tenders h2 {
  font-weight: 500;
  font-size: 19px;
  color: #27266d;
  background: #fff;
  padding: 6px 6px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  border-radius: 5px 5px 0 0px;
}

.tenders ul {
  margin: 0;
  padding: 0;
}

.tenders ul li {
  margin: 0;
  display: block;
  text-align: left;
  list-style-type: none;

}

.tenders ul li a {
  color: #222;
  display: block;
  padding: 8px 10px;
  font-weight: 400;
  background: #f2f4f9;
  margin-bottom: 8px;

}

.tenders i.fa.fa-angle-right {
  float: left;
  margin: 5px 8px 0 9px;
}

.tenders ul li:nth-of-type(odd) a {
  background: #fff;
}

.tenders ul li a:hover {
  Background: #fff;
  color: #0c3587;
}

.center_top_hadding {
  width: 100%;
  float: left;
  background-color: #d3def5;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-image: url(images/center_body_headin_bg.png);
  background-repeat: repeat-x;
  line-height: 30px;
  border-bottom: 2px solid #cacaca;
}

.cardd {
  border: 1px solid #e5e5e5;
  Border-radius: 6px 6px 6px 6px;
}

.new_center_textheading {
  font-family: verdana;
  font-size: 16px !important;
  line-height: 35px;
  color: #0c3587;
  font-weight: bold;
  /* border: 2px solid #0c3587; */
  width: 200px;
  float: left;
  margin: 0px 0px 0px 13px;
}

.BRO-head {
  float: right;
  margin-top: 4px;
  margin-right: 12px;
  height: 22px;
}

.twitter-timeline.twitter-timeline-rendered {
  padding: 11px 11px;
  border-radius: 0 !important;
}

.card-bodyy {
  border-left: 1px solid #dee2e6;
  /* margin-top: 103px; */
  clear: both;
  overflow: hidden;
  padding: 0;
  border-radius: 0 0 10px 10px;
  border-right: 1px solid #dee2e6;
  margin: 0 0 0 0;
  border-bottom: 1px solid #dee2e6;
}

.partner-carousel figure {
    margin: 6px 12px 10px 12px;
    background: #fff;
    /* box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.partner-carousel.owl-carousel .owl-nav button i {
  font-size: 31px;
}

.ts-pertner .owl-carousel.owl-loaded .owl-nav button:hover {
  background: #101010;
  color: #fff;
  border-radius: 50%;
}

.ts-gallery .swiper-button-next,
.swiper-button-prev {
  top: 43%;
  color: #fff !important;
}

.main-accordion .accordion-button {
  font-weight: 400;
  padding: 10px 13px;
  font-size: 15px;
}

.main-accordion .accordion-body p {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}

.ts-gallery .swiper-pagination-bullet {
  background: #fff !important;
}

.ts-gallery .swiper-pagination-bullet-active {
  background: #28276f !important;
}

#ts-pertner .owl-carousel.owl-loaded .owl-nav button {
  width: 30px;
  height: 30px;
}

section.main-accordion.bsb-accordion-6 {
  position: relative;
  z-index: 9;
  padding: 0;
}

section.main-accordion.bsb-accordion-6 .section-title {
  text-align: left;
  color: #fff;
}

.viewAllPanel.text-center.viewallbtn {
  float: right;
}

.navbar .navbar-collapse {
  /*   flex-basis: auto;
    flex-grow: 0 !important; */
  align-items: center;
  justify-content: center !important;
}

img.indiagovefooet {
  border-radius: 5px;
}

/* gallery start */
.module-gallery {
  position: relative;
  z-index: 9;
}

/* Gallery Container */
.module-gallery {
  width: 100%;
  margin: 0 auto;
  padding: 0px;
  box-sizing: border-box;
}

/* Slider Preview */
.slider-wrapper {
  position: relative;
  margin: 11px 0;
}

.slider-preview {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
}

.slider-preview .type-image {
  position: relative;
  margin-right: 0px;
}

.slider-preview .type-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  transition: transform 0.3s;
  height: 410px;
}

.slider-preview .type-image img:hover {
  transform: scale(1.05);
}

/* Slider Thumbnails */
.slider-thumb {
  list-style: none;
  padding: 0;
  margin: 43px 7px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 315px;
  /* Adjust height as needed */
  overflow: hidden;
  position: relative;
}

.slider-thumb .type-image {
  margin-bottom: 10px;
  cursor: pointer;
}

.slider-thumb .type-image img {
  width: 93px;
  height: 93px;
  display: block;
  border-radius: 5px;
  transition: border 0.3s;
}

.slider-thumb .type-image img:hover {
  border: 2px solid #007bff;
}

/* Slick Slider Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 30px;
  height: 30px;
  background-color: #cfe2ff;
  color: black;
  border-radius: 50%;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-prev:hover,
.slick-next:hover {
  background-color: black;
  color: white;
}

.slick-prev::before,
.slick-next::before {
  font-size: 20px;
  line-height: 30px;
  opacity: 1;
}

.slick-prev {
  right: -74px;
  top: -17px;
}

.slick-next {
  right: -81px;
  top: 96%;
}

.slick-dots {
  bottom: -30px;
}

.slick-dots li button::before {
  font-size: 12px;
  color: #007bff;
}

.slick-dots li.slick-active button::before {
  color: #0056b3;
}


/* EDG start*/
.letgen h2 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}

.letgen h3 {
padding: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}

.letgen p {
  font-size: 12px;
  color: #333;
}

.main-exdg {

  padding: 40px 0 40px 0;
}

#main-exdgs {
  Background: #f1f1f1;
  margin-top: 26px;
}

.letgen {
  text-align: center;
  margin-top: 9px;
  background: #f7f7fb;
  padding-top: 3px;
}

.exdgs-carousel.owl-carousel .owl-nav {
  position: absolute;
  top: 104px;
  width: 100%;
}

.exdgs-carousel.owl-carousel .owl-loaded .owl-nav button {
  width: 30px;
  height: 30px;
}

.exdgs .owl-carousel.owl-loaded .owl-nav button:hover {
  background: #101010;
  color: #fff;
  border-radius: 50%;
}

.exdgs-carousel.owl-carousel .owl-nav button {
  position: absolute;
  left: -10px;
}

.exdgs-carousel.owl-carousel .owl-nav button i {
  font-size: 31px;
}

.exdgs-carousel.owl-carousel .owl-nav button.owl-next {
  right: -10px;
  left: auto;
}

.exdgs-carousel figure {
  margin: 0 12px 0 12px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  padding: 11px 0 0px 0;
}

.exdgs-item a {
  display: flex;
  border-radius: 15px;
}

.exdgs-item img {
  width: 130px !important;
  margin: auto;
  display: table !important;
  background: #f1f3fd;
  padding: 3px 3px;
  border-radius: 8px;
  height: 160px;
}

#main-exdgs .viewAllPanel {
  text-align: right;
  margin-bottom: 10px;
}

#main-exdgs .section-title {
  line-height: 24px;
  padding-bottom: 0px;
  margin-bottom: 0;
}

#main-exdgs .viewAllBte {
  padding: 3px 6px;
  font-size: 12px;
}

/* EDG end*/

.main-tender-head h2 {
  text-align: center;
  line-height: 21px;
}

.main-tender-head h2 a {
  text-align: center;
  font-size: 18px;

  color: #f00001;
}

.main-tender-head h2 a span {
  color: #000;
  font-size: 22px;
}

.main-tender-head.mainbro-icon {
  display: flex;
  justify-content: end;
  align-items: center;
}


.sideleft {
  Background: #f2f2f2;
  padding: 0px 7px 4px 7px;
}

section#mainbanner {
  padding: 37px 0 22px 0;
}

.ts-br-icon img {
  width: 80px;
  max-width: 100%;
}

.boxsideleft {
    background: #041132;
    border-radius: 7px;
    padding: 4px 4px;
}

.boxsideleft ul {
  margin: 0px;
  Padding: 0px;
}

.boxsideleft ul li {
  list-style-type: none;
}

.boxsideleft ul li a {
    line-height: 20.4px;
    padding: 22px 8px;
    font-size: 15px;
    Background: #5b9bd5;
    display: block;
    color: #fff;
    /* line-height: 16px; */
    margin-bottom: 4px;
    Border-radius: 3px;
}

.boxsideleft ul li a:hover {
  Background: #3971a5;
}

.boxsideleft.bromarvelss {
  padding: 3px 3px;
  margin-top: 5px;
  position: relative;
}

.bromarvelsss a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: rgba(000, 000, 000, 0.2);
  border-radius: 4px;
}

.bromarvelsss a:hover:before {
  background: rgba(000, 000, 000, 0.60);
}

.bromarvelsss a h2 {
    padding-top: 8px;
    padding-right: 10px;
    padding-left: 16px;
    font-size: 16px;
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: left;
    align-items: center;
    left: 0;
    right: 0;
    color: #fff;
    z-index: 99;
    font-weight: 500;
}
.bromarvelsss a {
  font-size: 18px;
  color: #fff !important;
}

.bromarvelsss span img {
  height: 48px;
  width: 100%;
}

.siderght {
    Background: #fff;
/*    padding: 0px 14px 14px 12px;*/
 padding: 0px 0px 14px 0px;
}



.bromarvelsss.india-govv a:before {
  background: rgba(000, 000, 000, 0);

}

.bromarvelsss.india-govv a:hover:before {
  background: rgba(000, 000, 000, 0);
}

.bromarvelsss.india-govv span img {
  height: 30px;
  width: 100%;
}

.raghu-shriniwash span img {
    /* height: 160px; */
    width: 183px;
    border-radius: 10px;
    /* border: 2px solid #0c3587; */
    /* padding: 10px; */
    /* margin-bottom: 15px; */
    border: 5px solid #041132;
    margin-top: -10px;
    /* box-shadow: 0 0 5px #000; */
}


.raghu-shriniwash h2 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.raghu-shriniwash h3 {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 0;
  color: #000;
}

.raghu-shriniwash h4 {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 0;
}

.raghu-shriniwash p {

    font-weight: 400;
    line-height: 18px;
    background: #041132;
    min-height: 179px;
    color: #fff;
    padding: 15px;
    font-size: 13px !important;
}
.raghu-shriniwash .signature {background: #c97b07;
    col: #fff;
    color: #fff;}

.raghu-shriniwash {
  text-align: center;
}

.raghu-shriniwashname {
    background: #b3dbff;
    /* margin: 0 3px; */
    padding: 3px 0;
    border-radius: 10px;
}

/* logo start*/
#main-exdgs .main-exdgs-bg {
  background: #f1f1f1;
  padding: 9px 9px;
  border-radius: 6px;
}

.projectexdgs-item img {
  width: 72px !important;
  margin: auto;
  display: table !important;
  /* background: #f1f3fd; */
  /* padding: 3px 3px; */
  border-radius: 8px;
  height: 75px;
}

.projectclient-carousel figure {
  margin: 5px 12px 23px 12px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 19px -10px;
  padding: 11px 0 0px 0;
  Border-radius: 6px;
}

.projectclient-carousel.owl-carousel .owl-nav {
  position: absolute;
  top: 53px;
  width: 100%;
}

.projectclient-carousel.owl-carousel .owl-nav button {
  position: absolute;
  left: -26px;
}

.projectclient-carousel.owl-carousel .owl-nav button i {
  font-size: 31px;
}

.projectclient-carousel.owl-carousel .owl-nav button.owl-next {
  right: 4px;
  left: auto;
}

.projectclient-carousel.owl-carousel.owl-loaded .owl-nav button {
  width: 30px;
  height: 30px;
}

.projectclient-carousel .letgen {
  text-align: center;
  margin-top: 9px;
  background: #f7f7fb;
  padding-top: 6px;
  padding-bottom: 6px;
}

.letgen h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}

/* logo end*/

/* about start */
.about-carousel.owl-carousel.owl-loaded .owl-nav button {
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 40px;
  background: #0c3587;
  font-size: 20px;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-left: 10px;
  border-radius: 50%;
  top: 125px;
}

.about-carousel.owl-carousel .owl-nav button {
  position: absolute;
  left: 0px;
  top: 132px;
}

.about-carousel.owl-carousel .owl-nav button.owl-next {
  right: 0px;
  left: 0;
}

.about-carousel.owl-carousel .owl-nav button i {
  font-size: 31px;
}

.about-carousel.owl-carousel.owl-loaded .owl-nav button:hover {
  background: #101010;
  color: #fff;
  border-radius: 50%;
}

.about-carousel.owl-carousel .owl-nav button.owl-next {
  right: 11px;
  left: auto;
}

.about-carousel figure {
  margin: 0px;
}

/* about end */

/* gallery start */
h2.photogalleryhead {
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  background: #0c3587;
  padding: 8px 17px;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  border-radius: 8px 8px 0 0px;
  text-align: right;
  width: max-content;
  margin-bottom: 0;
}

.visiternofooter p {
  font-weight: 400;
  font-size: 12px;
  color: #7e91f7 !important;
}

.visiternofooter p strong {
  font-weight: 400;
  font-size: 13px;
  color: #fff;
}

.photogallerytab div#nav-tab {
  /* background: #0c3587; */
  border-radius: 8px 8px 0 0;
  padding: 0px 0 1px 0px;
  border: none;
}

.photogallerytab div#nav-tab .nav-link {
  color: #0f38a5;
  background: #fff;
  font-weight: 500;
  margin-right: 4px;
  padding: 4px 10px;
  Border-radius: 6px 6px 0 0;
  transition: all 0.3s ease 0s;
}

.photogallerytab.card.shadow {
  border-radius: 0 0 12px 12px;
  border: none !important;
  background: none;
  box-shadow: none !important;
}

iframe.responsive-video.embed-responsive-item.small-video {
  width: 100%;
  height: 86px;
  Border-radius: 7px;
  Background: #ccc;
  Padding: 3px;
}

.ytp-large-play-button {
  position: absolute;
  left: 70% !important;
  top: 50%;
  width: 40px !important;
  height: 40px !important;
  margin-left: -34px;
  margin-top: -24px;
  -webkit-transition: opacity .25s cubic-bezier(0, 0, .2, 1);
  transition: opacity .25s cubic-bezier(0, 0, .2, 1);
  z-index: 63;
}




iframe.responsive-video.embed-responsive-item {
  width: 610px;
  height: 386px;
  Background: #ccc;
  Padding: 6px 5px;
  Border-radius: 8px;
}

#nav-videogallery .slick-next {
  right: -93px;
}

#nav-videogallery .slick-prev {
  right: -83px;
  top: 10px;
}

i.fa.fa-picture-o.photo-icon {
  padding-right: 4px;
  font-size: 16px;
}

i.fa.fa-youtube-square.photo-icon {
  padding-right: 4px;
  font-size: 16px;
}

.ts-gallery div#nav-tabContent {
  background: #fff;
  /* border-radius: 0 24px 0 27px; */
  border: none !important;
}

#nav-photogallery .slick-prev {
  right: -86px;
  top: 14px;
}

#nav-photogallery .slick-next {
  right: -90px;
  top: 96%;
}

#nav-photogallery .slider-preview {
  margin: 0px 0 0 11px;

}

#nav-photogallery .slider-thumb {
  margin: 54px 0 0 0;
}

h2.section-titlefaq {
  background: linear-gradient(90deg, rgb(2 159 220) 0%, rgb(1 182 235 / 50%) 35%, rgb(0 212 255 / 17%) 100%);
  color: #fff;
  font-weight: 400;
  font-size: 23px;
  padding: 6px 16px;
  border-radius: 0px 45px 0px 0;
  margin: 0;
  text-align: left;
  width: auto;
  display: table;
}

section.main-accordion.bsb-accordion-6 .accordion-item {
  border-radius: 0;
}

section.main-accordion.bsb-accordion-6 .accordion-item:first-of-type .accordion-button {
  border-radius: 0;
}

div#accordionExample {
  /* border-radius: 0 24px 0 27px; */
  background: #fff;
  /* padding-bottom: 7px; */
  padding: 12px 10px 11px 11px;
}

/* gallery end */

.our-project-client {
  margin-bottom: 50px;
}

.our-project-client .section-title:before {
  left: inherit !important;
  margin-bottom: -8px;
}



/* home tab start */
/* .tab .nav-tabs li a:after {
    content: "";
    width: 0;
    height: 4px;
    background: #727cb6;
    border: 1px solid #727cb6;
    border-radius: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    transition: all 1s ease 0s;
} */

/* .tab .nav-tabs li a:before {
    content: "";
    width: 100%;
    height: 4px;
    background: #f6f6f6;
    border: 1px solid #e9e9e9;
    border-radius: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
} */


/* home tab end */


.about-bg {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.about-carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.about-item {
  flex: 0 0 100%;
}

.aboutimgbro {
  width: 100%;
  height: auto;
  display: block;
}

.sideleft .boxsideleft {
    background: #fff !important;
    border-radius: 7px;
    padding: 5px 5px;
    margin-bottom: 11px;
}
.projects-img{
  padding-top: 22px;
  width: 30%!important;
  justify-self: center!important;
}
.project-main-img{
  height: 110px;
}

.exdgs .owl-carousel.owl-loaded .owl-nav button{
  margin-top: 22px!important;
  background: #101010;
  color: #fff;
  border-radius: 50%;
}

.h1.table-title.paramseva{
	font-size: 18px;
    BACKGROUND-COLOR: #0b457f; margin-bottom: 0;
    color: white;
    padding: 10px 10px;
   
    font-weight: 400; border-radius:8px 8px 0 0;
}
.nav-link.active {
  color: #ffffff !important;
  background-color: #0b457f !important;
  /* border-radius: 5px; */
}

.dropdown-toggle::after {
  display: none;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.msg-read{
  border-radius: 4px;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    background-color: #ff98007a;
}

/* for mobile responsive */

@media screen and (max-width: 768px) {
  /* Adjust the styles for mobile devices */
  
  .ts-top-bar {
    background: linear-gradient(45deg, rgb(11 69 127) 49%, #0b457f 49%);
}

.topRightHeader {
  padding-left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.marq-info{
  display: flex;
    align-items: center!important;
    background-color: #d3def5;
    flex-wrap: wrap;
    justify-content: center!important;
}

.about-bg {

  margin-top: 61px;
  
}

}



#dropdownBtn {
    padding: 10px 30px 10px 10px;
    background: #0b457f;
    line-height: 15px;
    height: auto;
}

#dropOpenArea ul { margin:0; padding:0; list-style:none;width:190px;  }
#dropOpenArea ul li{ border-bottom:1px solid #c1c1c1; }

#dropdownBtn.dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .4em solid;
    border-right: .4em solid transparent;
    border-bottom: 0;
    border-left: .5em solid transparent;
    right: 7px;
    top: 15px;
    left: auto;
}

.backhome-con .bi.bi-arrow-left{padding-right:2px; font-size:13px}
.backhome-con {
    float: right;
    position: absolute;
    right: 93px;
    padding: 4px 9px 4px 7px;
    height: auto;
    margin: 5px 0 0 0px;
    font-size: 14px;
    font-weight: 600;
    background: #000;
    border: 1px solid #999;
	
}

.searchmaini {
    position: relative;
    right: -10px;
	z-index: 9;
}

.searchmainii {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#searchBoxi {
      display: none;
      margin-top: 56px;
    }
    #searchBoxi {
     margin-top: 14px;
    position: absolute;
    right: 0;
    width: 283px;
    }
   #toggleButtonsearchi {
    cursor: pointer;
    padding: 0;
    background-color: none;
    color: white;
    border: none;
    border-radius: 50%;
    position: absolute;
    right: 22px;
    top: -13px;
    content: "\f002";
}
    #toggleButtonsearchi:hover {
      background-color: #0056b3;
    }
#searchBoxi button {
    padding: 2px 6px;
    border: none;
    margin: 3px -18px 0 -7px;
    font-size: 14px;
    border-radius: 0 4px 4px 0;
	background: #ffc107;
}
#searchBoxi input#searchInputi {
    border-radius: 4px 4px 4px 4px;
    border: none;
    padding: 2px 10px 3px 8px;
	outline: 0;
}


   .h-search-form{
      position: relative;
      padding: 2px;
      background: #0f467f;
     text-align:center;
	 border-radius: 40px;
   }
   

   .h-search-form input{
    width: 100%;
    padding: 1px 48px 1px 11px;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    font-size: 13px;
    text-transform: capitalize;
    position: relative;
    color: #000;
    outline: none;
      }
   .h-search-form button{
    color: #fff;
    background: #0f467f;
    top: 0px;
    border: none;
    position: absolute;
    right: 0px;
    top: 2px;
    padding: 2px 15px;
    border-radius: 0 30px 30px 0;
    z-index: 999;
   }
   
 .h-search-form ::placeholder {
    color: #000 !important;
}  
   
.h-search-form button:hover{
      background: #175fa9;
   }
#popup h3 {
    text-align: center;
	color:#ac180a !important;
	text-transform:uppercase;
	font-size: 22px; margin-bottom: 20px; text-decoration: underline;
	font-weight: 800;
}  

#closePopup{background-color: #cc1e2b;
    color: #fff;
    border: none;
    width: 31px;
    height: 30px;
    margin-top: 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    position: absolute;
    right: -7px;
    top: -30px;} 

#popup .whatsnew{ background:#2c5688; padding: 7px 23px; color:#fff; border-radius: 41px;}

#popup .whatsnew a{color:#fff;} 

#popup svg.bi.bi-calendar-fill {
    font-size: 10px;
    width: 11px;
    margin-right: 1px;
}





.gradient-border {
  --borderWidth: 6px;
  background: #1D1F20;
  position: relative;
  border-radius: var(--borderWidth);
}
.gradient-border:after {
  content: '';
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-1 * var(--borderWidth));
  height: calc(100% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
 background: conic-gradient(#3a7cec 0% 12.5%, #2ca24c 12.5% 25%, #f1b500 25% 37.5%, #e33e2b 37.5% 50%, #3a7cec 50% 62.5%, #2ca24c 62.5% 75%, #f1b500 75% 87.5%, #e33e2b 87.5% 100%);
    animation: border-animation 5s linear infinite;
    -webkit-animation: border-animation 5s linear infinite;
  border-radius: calc(2 * var(--borderWidth));
  z-index: -1;
  animation: animatedgradient 3s ease alternate infinite;
  background-size: 300% 300%;
}


@keyframes animatedgradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


.blinkanimationn img {
    background: #fff;
    /* width: 38px; */
    border-radius: 2px;
    padding: 1px 3px;
	margin-left:5px;
}


.upComungNews {
    padding-top: 0px;
    position: relative;
    z-index: 1;
}
.upComungNews .newsBoxArea {
    box-shadow: 0 2px 11px 3px rgba(0, 0, 0, 0.09);
    overflow: hidden;
    background: #fff;
    z-index: 9;
    position: relative;
}
.newsAreaHd {
    background: #0b457f;
    color: #fff;
    padding: 10px;
    font-weight: 700;
    width: 180px;
    font-size: 14px;
    text-align: center;
    position: relative;
}
.newsAreaHd:after{ width:15px; height:15px; background:#0b457f; position:absolute; right:-7px; top:15px; transform:rotate(45deg); content:''; }
.upComungNews .newsBoxArea a.btnPs {
    width: 25px;
    height: 25px;
    line-height: 25px;
    color: #fff;
    border-radius: 50px;
    position: absolute;
    font-size: 11px;
    right: -10px;
    background: #162f6a;
    top: 10px;
    border: 1px solid #fff;
}

.newsBoxAreaSd {padding-right: 15px;padding-left: 15px; background: #dbedff;}
.newsBoxAreaSd marquee{padding-top: 10px;color: #000;font-size: 14px;font-weight: 600;}
.newsBoxAreaSd marquee a{color: #000;font-size: 14px;}
.newsBoxAreaSd marquee i{ margin-left:20px; }

.box-design-content {
    /* padding: 20px; */
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
    margin-bottom: 20px;
    border-radius: 15px;
}

.part-content {
    background: #fdfdfd;
    line-height: 25px;
    border: 1px solid #ddd;
    padding: 10px 18px 15px 18px !important;
    border-radius: 0 0 9px 9px;
}

.head-polices {
    border: none;
    color: #fff;
    background: #162F6A;
    border-radius: 0;
    border-radius: 9px 9px 0 0;
    padding: 7px 10px;
    font-weight: 400;
    text-align: left !important;
    font-size: 19px;
    margin-bottom: 0;
}

.box-design-content .form-control:focus {
    color: transparent;
    background-color: #ccc;
    border-color: #eee;
    outline: 0 solid;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #000;
}

.box-design-content .form-control{-webkit-appearance: auto; appearance: auto; min-height:40px; line-height: 32px;}

.policestophead {
    padding-top: 24px;
    padding-bottom: 18px;
    display: flex;
    justify-content: flex-end;
    color: white;
    font-size: 14px;
    font-weight: 400;
    color: rgb(22 47 106);
    align-items: center;
}
.policestophead strong {
    font-weight: 500;
}
.box-design-content .table thead th {
    color: #000 !important;
    font-weight: 600 !important;
    font-size: 12px !important;
	border-top: 1px solid #33333329;
    background-color: #f2f5ff !important;
	padding: 4px 9px;
}
.box-design-content .table thead th:first-child {
    min-width: fit-content;
}

.box-design-content .table thead th:last-child {
    text-align:right;
}

.box-design-content .table tbody td:last-child {
    text-align:right;
}

.box-design-content table.dataTable td {
    font-size: 12px;
	border: 1px solid #dee2e6;
}

.box-design-content table {
    caption-side: bottom;
    border-collapse: collapse !important;
}

.box-design-content a.paginate_button.current {
    background: #116ac3 !important;
    color: #fff !important;
    padding: 2px 14px !important;
}
.box-design-content .dataTables_wrapper .dataTables_length {
    float: left;
    width: 77%;
    position: relative;
    z-index: 1;
}

i.fa.fa-user.user-iconbro {
    background: #ccc;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    margin-left: 7px;
    font-size: 21px;
}
.box-design-content .dataTables_wrapper .dataTables_paginate .paginate_button.current { color: #fff !important;}

.box-design-content .table-bordered>:not(caption)>*>* {
    border-width: 0 var(--bs-border-width);
}
.box-design-content .dataTables_wrapper .dataTables_filter {
    margin-top: -33px;
}
.box-design-content .dataTables_wrapper .dataTables_filter input {
    border: 1px solid #dee2e6;
    border-radius: 3px;
    padding: 5px;
    background-color: transparent;
    color: inherit;
    margin-left: 3px;
    margin-bottom: 8px;
}

.box-design-content .dataTables_wrapper .dataTables_length select{border: 1px solid #dee2e6;}

a.btn.btn-sm.btn-secondary.table-btn:hover {
    background: #2f71b3;
    border: 1px solid transparent;
}

a.btn.btn-sm.btn-secondary.table-btn {
    padding: 3px 10px;
    height: auto;
    text-transform: capitalize;
    border-radius: 4px;
	background:#0b457f;
	font-weight: 400;
    font-size: 13px;
}

button#resetFilters {
    padding: 7px 36px;
    height: auto;
    text-transform: capitalize;
    border-radius: 6px;
    background: #1d1d1e;
    font-weight: 500;
}


button#resetFilters:hover{
	background: #f00001;
    border: 1px solid transparent;
}
button#btnBack {
    right: 21px;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 14px;
	position: relative;
}
.box-design-content .table {
    --bs-table-color-type: initial;
    --bs-table-bg-type: initial;
    --bs-table-color-state: initial;
    --bs-table-bg-state: initial;
    --bs-table-color: var(--bs-emphasis-color);
    --bs-table-bg: var(--bs-body-bg);
    --bs-table-border-color: var(--bs-border-color);
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: var(--bs-emphasis-color);
    --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
    --bs-table-active-color: var(--bs-emphasis-color);
    --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
    --bs-table-hover-color: var(--bs-emphasis-color);
    --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
    width: 100%;
    margin-bottom: 1rem;
    vertical-align: top;
    border-color: var(--bs-table-border-color);
}

.dataTables_wrapper {
    --bs-card-spacer-y: 1rem;
    --bs-card-spacer-x: 1rem;
    --bs-card-title-spacer-y: 0.5rem;
    --bs-card-title-color: ;
    --bs-card-subtitle-color: ;
    --bs-card-border-width: var(--bs-border-width);
    --bs-card-border-color: var(--bs-border-color-translucent);
    --bs-card-border-radius: var(--bs-border-radius);
    --bs-card-box-shadow: ;
    --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    --bs-card-cap-padding-y: 0.5rem;
    --bs-card-cap-padding-x: 1rem;
    --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
    --bs-card-cap-color: ;
    --bs-card-height: ;
    --bs-card-color: ;
    --bs-card-bg: var(--bs-body-bg);
    --bs-card-img-overlay-padding: 1rem;
    --bs-card-group-margin: 0.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: var(--bs-card-height);
    color: var(--bs-body-color);
    word-wrap: break-word;
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    border-radius: var(--bs-card-border-radius);
	Padding:12px 14px;
}

.btn-verify{
  background-color: #0c3587;
}
.btn-verify:hover{
  background-color: #ffcc00;
  color: #000;
}