h1 {
  font-size: 1.5rem;
  color: #111;
  line-height: 1.5;
  margin-top: 0;
  font-weight: 600;
}

h1 span {
  color: #333333;


}

h2 {
  font-size: 1.25rem;
  color: #111;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  margin-top: 0;
  font-weight: 600;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #f04c39;
  line-height: 1.4;
  margin-top: 0;
  font-weight: 600;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  font-size: 0.9rem;
  color: #333;
  background: #f7f9fc;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  overflow-x: hidden;
}

a {
  color: #ffffff;
  outline: none;
  text-decoration: none;
}

a:hover {
  color: #27346A;
}

.a:focus {
  border: none;
  outline: none;
}

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

.btn {
  background: #13b05f;
  font-size: 18px;
  border-radius: 8px;
  border: none;
  padding: 0.75rem 2.25rem 0.75rem 2.25rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #fff;
  margin-right: 20px;
}

.btn i {
  font-size: 1rem;
  margin-left: -23px;
  margin-top: 4px;
  /* margin-left: 0.5rem; */
  position: absolute;
}

.btn .bi-arrow-right {
  margin-left: 0.25rem;
}

.btn:hover {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #fff !important;
  background: #27346A;
}

.btn-border {
  color: #0e4e91;
  border: 1px solid #0e4e91;
  background: none;
}

.btn-border:hover {
  background: #0e4e91;
  color: #fff;
}

.sources-btn .btn:hover{
  background: #08773C;

}

.asterisk {
  color: #e40909;
}





/* Search */
.search-btn{
  background-color: #f52f2f;
  height: 45px;
  width: 45px;
  border-radius: 8px;
  text-align: center;
  margin-left:15px;
  margin-top:16px;
}
.search-btn .fas{
  font-size: 18px;
  padding-top: 13px;

}

.search-btn:hover {
  border: 0px solid #f52f2f;
  color: #fff;
  background-color: #f52f2f;
}


/* Search  */
.searchwrapper, .search-data{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.searchwrapper{
  position: fixed;
  height: 0px;
  width: 0px;
  background: #000000bd;
  transition: all 0.4s linear;
  z-index: 999999;
}
.searchwrapper.active{
  height: 100vh;
  width: 100vw;
}

 .search-data{
  position: absolute;
  height: 50px;
  width: 400px;
  display: flex;
  text-align: center;
   /* display: none;  */
}
.search-data input{
  height: 100%;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-top: -18px;
}
.search-data .line{
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  bottom: 0;
  transform: scaleX(0);
  transition: transform 0.4s 0.3s linear;
}
.search-data .line.active{
  transform: scaleX(1);
}
.search-data label{
  position: absolute;
  top: 22%;
  left: 0;
  font-size: 22px;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(255,255,255,0.7);
}
.search-data input:valid ~ label{
  opacity: 0;
}
.search-data span{
  color: #fff;
  position: absolute;
  width: 50px;
  font-size: 25px;
  right: 0;
  top: -10px;
  line-height: 45px;
  cursor: pointer;
}
.close-btn{
  position: fixed;
  z-index: 9999999;
  right: 25px;
  top: 25px;
  font-size: 25px;
  color: #fff;
  cursor: pointer;
}
.search-data, .search-data span,
.search-data label, .close-btn{
  display: none;
}
/* Search--end---- */









.bdrradius {
  border-radius: 0.5rem;
}

.card-box {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  /* margin-bottom: 1.5rem; */
  background: #fff;
  border-radius: 0.5rem;

  transition: 0.3s all ease-in-out !important;
  animation-fill-mode: none  !important;
}

.iconblock .card-box {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  background: #fff;
  border-radius: 0.5rem;

  transition: 0.3s all ease-in-out !important;
  animation-fill-mode: none  !important;
}

.iconblock .card-box:hover{
  transform: translateY(-5px) !important;
  animation-fill-mode: none  !important;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
}



.clear {
  clear: both;
}

.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb li {
  margin-bottom: 0.75rem !important;
  font-size: 0.85rem;
}

p {
  margin-bottom: 1.5rem;
}
.text-center {
  text-align: center !important;
  width: 250px;
}


img {
  width: 100%;
}

.mgb1 {
  margin-bottom: 1rem;
}

.pdb0 {
  padding-bottom: 0 !important;
}

.pdt0 {
  padding-top: 0 !important;
}

.pd-right {
  padding-right: 2rem;
}

.pd-left {
  padding-left: 2rem;
}

.positionrelative {
  position: relative;
}

.form-control {
  font-size: 0.9rem;
}

textarea.form-control {
  min-height: calc(7em + 0.75rem + 2px);
}

.form-select {
  height: calc(2.75rem + 8px);
  padding: 1rem;
  font-size: 0.9rem;
}

.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(2.75rem + 8px);
  padding: 1rem;
  border-radius: 0.35rem;
}

.form-floating > label {
  padding: 0.75rem 1rem;
  color: #333;
}

.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
  color: #333;
}

.form-control[type="file"] {
  font-size: 0.9rem;
}

.hasDatepicker::-webkit-input-placeholder {
  opacity: 1 !important;
  color: #333 !important;
}

.hasDatepicker:-ms-input-placeholder {
  opacity: 1 !important;
  color: #333 !important;
}

.hasDatepicker::-ms-input-placeholder {
  opacity: 1 !important;
  color: #333 !important;
}

.hasDatepicker::placeholder {
  opacity: 1 !important;
  color: #333 !important;
}

.radio-input {
  visibility: hidden;
  display: none;
}

.radio-label {
  position: relative;
  padding-left: 2rem;
  margin-right: 1.5rem;
}

.radio-label:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 5px;
  top: 5px;
  border-radius: 50%;
}

.radio-border {
  width: 24px;
  height: 24px;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  left: -2px;
  top: -2px;
  border: 1px solid #999;
}

.radio-input:checked + .radio-label:after {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #08773C;
}

.form-check {
  padding-left: 2em;
  margin-bottom: 1rem;
}

.form-check-input {
  width: 1.25em;
  height: 1.25em;
}

.form-check .form-check-input {
  margin-left: -2em;
}

.form-check-input[type="checkbox"] {
  border-radius: 0.2em;
}

.table td,
.table th {
  padding: 0.5rem 1rem;
}

table th {
  background: #27346A !important;
  color: #fff !important;
}

.tbody, td, tfoot, th, thead, tr{
  border-bottom:none;
}

.table-title{
  font-size:18px;
  font-weight: 600;
  padding-bottom: 8px;
}

.note{
  font-weight: 600;
}

.scroll-top-wrapper {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  text-align: center;
  z-index: 999;
  background: #08773C;
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  right: 1rem;
  bottom: 6rem;
  border-radius: 50%;
  padding-top: 0.15rem;
}

.scroll-top-wrapper i {
  font-size: 1.3rem;
}

.scroll-top-wrapper.show {
  visibility: visible;
  cursor: pointer;
  opacity: 1 !important;
}

.search-wrapper {
  background: -webkit-gradient(linear, left top, right top, from(#f04c39), to(#faa41b));
  background: linear-gradient(90deg, #f04c39 0%, #faa41b 100%);
  color: #fff;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999999;
  display: none;
}

.search-wrapper .search-close {
  position: absolute;
  right: 1.5rem;
  top: 0.5rem;
  font-size: 3rem;
  cursor: pointer;
}

.search-wrapper .search-close:hover {
  opacity: 0.6;
}

.search-wrapper .search-container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search-wrapper .search-container .search {
  width: 40rem;
  margin: auto;
}

.search-wrapper .search-container .search .search-field {
  margin-bottom: 2rem;
}

.search-wrapper .search-container .search .search-field .form-floating button {
  background: none;
  float: right;
  color: #666;
  border: none;
  position: absolute;
  right: 1rem;
  padding-top: 0.65rem;
  font-size: 1.4rem;
  cursor: pointer;
}

.search-wrapper .search-container .search .search-field .form-floating button:hover {
  color: #0e4e91;
}

.search-wrapper .search-container .search .search-field .form-floating input {
  padding-left: 2rem;
  height: 4rem;
}

.search-wrapper .search-container .search .search-field .form-floating label {
  padding-left: 2rem;
  padding-top: 1.25rem;
  font-size: 1rem;
}

.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999999;
}

.loader img {
  width: 18rem;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -9rem;
  margin-top: -4rem;
}

.iconactive {
  background: linear-gradient(-45deg, #f04c39, #faa41b);
  background-size: 300% 300%;
  -webkit-animation: gradient 2s ease infinite;
          animation: gradient 2s ease infinite;
  color: #fff;
}

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

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

 /* header .header-topbar {
  padding: 0.5rem 0;
  color: #fff;
  font-size: 0.8rem;
  background: #0e4e91;
}  */



header .header-topbar .top-menu {
  float: left;
  
}



header .header-topbar .top-menu ul {
  margin: 0;
  padding: 0;
}

header .header-topbar .top-menu ul li {
  float: left;
  display: block;
  font-size:13px;
  color:#fff;
}

header .header-topbar .top-menu ul li a {
  color: #fff;
  padding-right: 20px;
 
}

header .header-topbar .top-menu ul li a:hover {
  opacity: 0.5;
}

header .header-topbar .top-menu ul li a i {
  margin-right: 0.2rem;
  font-size: 13px;
  padding-top: 12px;
  padding-right: 8px;
  padding-left: 14px;
}

header .header-topbar .top-menu ul li i {
font-size: 14px;
    line-height: 18px;
    padding-right: 5px;
    padding-top: 7px;
    position: relative;
    top: 1px;
}

header .header-topbar .top-menu ul li:last-child {
  margin-right: 0;
  padding-top: 7px;
}

header .header-topbar .header-right {
  float: right;


}



.straight-line{
  border-right:1px solid #fff;
  margin-left:15px;
}



header .header-topbar .header-right .bi-bell {
  position: absolute;
  margin-left: -15px;
}

header .header-topbar .lan-switch-dropdown {
  float: left;
}

header .header-topbar .lan-switch-dropdown select {
  border: 1px solid #f04c39;
  border-radius: 0.2rem;
  background: #f04c39;
  color: #fff;
}

header .header-topbar .lan-switch-dropdown .wide {
  background: none;
  border: none;
  height: 24px;
  line-height: 2;
  padding-left: 0;
  font-size: 0.8rem;
}

header .header-topbar .lan-switch-dropdown .wide .list {
  color: #333;
}

header .header-topbar .lan-switch-dropdown .nice-select::after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

.slideshow {
  overflow: hidden;
}

.slideshow .carousel-indicators {
  display: none;
}

.slideshow .slidecaptionwrapper {
  position: relative;
}

.slideshow .slidecaptionwrapper .slidecaption {
  color: #fff;
  text-align: left;
  z-index: 3;
  position: absolute;
  top: 5rem;
}

.slideshow .slidecaptionwrapper .slidecaption h1 {
  margin-bottom: 1rem;
  color: #fff;
}

.slideshow .slidecaptionwrapper .slidecaption h3 {
  color: #fff;
  margin-bottom: 6px;
  line-height: 60px;
  font-weight: 600;
}

.dropdown-menu.show {
  box-shadow: 0px 7px 5px 0px rgb(0 0 0 / 5%);
  border-radius: 0 0 5px 5px;
  background: #fff;
  margin-top: 10px !important;
  border:none;
}
.dropdown-item:focus, .dropdown-item{
  color: #111;
  background-color: transparent;
  font-size: 15px;
}


.dropdown-item:focus, .dropdown-item:hover{
  color: #08763C;
  background-color: transparent;
}

.carousel-item:before{
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;  
  background:#000000;  
  opacity: 40%;
}


.banner-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  padding-right: 50px;
}
.sources-btn{
  position: relative;
 
}

.sources-btn .btn{
  background: #27346A;
  font-size: 18px;
  border-radius: 8px;
  border: none;
  padding: 13px 26px 13px 26px;
  position: absolute;
  bottom: 0px;
  left:32%;
}

.content-pd {
  padding: 3.5rem 0;
}

.title {
  text-align: center;
}

.title h1 {
  color:#333333;
  font-size: 38px;
  font-weight: 400; 
  margin-bottom: 12px;
}
.title h1 span {
  font-weight: 600;
}

.title p {
  color:#888888;
  font-size:16px;
  font-weight: 400;
  margin: auto;
  width: 50%;
  padding-bottom: 26px;

}

.under-line{
  border-top: 2px solid #27346A;
  margin:auto;
  width: 50px;
  margin-bottom: 15px;
}

 .iconblock {
  margin-top: -4.5rem;
  margin-bottom: 0px;
  padding-top: 0;
  position: relative;
  width: 100%;
  font-size: 0.85rem;
  z-index: 4;
} 



/* .title h1 span::after {
  content: '';
  width: 25px;
  height: 1px;
  background: #f04c39;
  position: absolute;
  margin-top: 20px;
  right: -30px;
}

.title h1 span::before {
  content: '';
  width: 25px;
  height: 1px;
  background: #f04c39;
  position: absolute;
  margin-top: 20px;
  left: -30px;
} */

.card-box-title:hover {
  color:#08763C;

}

.iconblock a {
  color: #212529;
  line-height:38px;
  font-size:18px;
  font-weight: 600;
}

.iconblock a .card-box {
  padding: 1.5rem 0.25rem 1rem 0.25rem;
  text-align: center;
  margin-bottom: 1rem;
  min-height: 9rem;
  line-height: 1.4;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

 .iconblock img {
  width: 3.5rem;
  margin-bottom: 6px;


} 
.card-box p{
  color:#888888;
  font-size:16px;
  font-weight: 400;
  line-height:24px;
  margin-bottom: 0;

}



.iconblock a .card-box img {
  width: 3.5rem;
  margin-bottom: 0.5rem;
}

.iconblock a:hover .card-box {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.promotional-offer img {
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.ceomessage {
  padding-bottom: 0;
  color: #111;
  background-size: cover;
}

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

.ceomessage .comma {
  width: 5rem;
  position: absolute;
  margin-top: -1rem;
}

/* Services start */

.services {
  background: url(images/ourservicesbg.png);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.services-block{
  background-color: #ffffff;
  display: block;
  box-shadow: 0px 2px 15px #07070720;
  margin-bottom: 20px;
  padding: 18px;
  border-radius: 10px;
  position: relative;
  
}

.services-title{
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  display: inline-block;
  margin-top: 10px;

}

.stock-text p{
  font-size:16px;
  font-weight: 400;
  line-height:24px;
  color:#888888;
  padding-right: 65px;
  margin-bottom: 0;
  padding-bottom: 0;
}



.next-arrow-btn{

  background-color: #08773C;
  height: 35px;
  width: 35px;
  border-radius: 8px;
  text-align: center;
  position: absolute;
  right: 20px;
  bottom: 23px;
  border: 0px solid #08773C;
}
.next-arrow-btn:hover{
  border: 0px solid #08773C;
  color: #fff;
  background-color: #27346A;
}

.next-arrow-btn i{
  padding-top:10px;
}










/* Services End */

.product .product-single {
  margin: 1rem 0.5rem;
  display: block;
  overflow: hidden;
  box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 15%);
  border-radius: 0.5rem;
}

.product .product-single img {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 250px;
  object-fit: cover;
}

.product .product-single img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.card-desc {
  padding: 0px 18px 18px 18px;
  position:relative;
} 

.card-desc h2 {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  display: block;
  padding-top: 30px;
  color: #333333;
  margin-bottom: 0px;
  height: 5.75rem;
  overflow: hidden;
}

.card-desc p{
  font-size:16px;
  color:#888888;
  margin-bottom: 0;
  


}


.product .product-single .card-desc h2:hover {
  color: #27346A;
}

.product .product-single .card-desc .beief-desc {
  height: 4.5rem;
  overflow: hidden;
}

.mobileapp .mobileappdownload {
  margin-top: 1.5rem;
}

.mobileapp .mobileappdownload h3 {
  margin-bottom: 1rem;
  color: #111;
}

.mobileapp .mobileappdownload img {
  height: 4.5rem;
  width: auto;
  margin-bottom: 1rem;
}

.mobileapp .mobileappdownload img:hover {
  opacity: 0.7;
}

.mobileapp .mobileappdownload .appcount {
  float: left;
  margin-right: 2rem;
  margin-top: 1.5rem;
}

.mobileapp .mobileappdownload .appcount h1 {
  font-size: 3rem;
  margin-bottom: 0;
  line-height: 0.5;
}

.mobileapp .mobileappdownload .appcount h1 span {
  color: #f04c39;
  font-size: 1rem;
}

.mobileapp .mobileappdownload .qrcode {
  margin-top: 1rem;
  float: left;
  margin-right: 1rem;
}

.mobileapp .mobileappdownload .qrcode img {
  width: 5rem;
  height: auto;
}

.mobileapp .appfeatures {
  margin-top: 2.5rem;
}

.mobileapp .appfeatures ul {
  padding: 0;
  margin: 0;
}

.mobileapp .appfeatures ul li {
  display: inline-block;
  text-align: center;
  margin: 0 1.65rem;
}

.mobileapp .appfeatures ul li .featuresicon {
  border: 1px solid #ccc;
  border-radius: 50%;
  padding-top: 1rem;
  width: 5rem;
  height: 5rem;
  margin: auto;
  margin-bottom: 0.5rem;
}

.mobileapp .appfeatures ul li .featuresicon img {
  width: 3rem;
}

.overview {
  padding: 6.5rem 0 7.5rem 0;
}

.overview .overview-details {
  text-align: center;
  font-size: 1rem;
}

.overview .overview-details img {
  width: 4.5rem;
  margin-bottom: 0.5rem;
}

.overview .overview-details h2 {
  color: #f04c39;
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.news {
  padding-top: 3rem;
}

.news .card-desc .newsdate {
  position: absolute;
  top: -16px;
}

.date{
  background-color:#08773C ;
  padding:10px 12px;
  color:#fff;
  border-radius:5px;
  font-size:14px;
  margin-right:10px;
  font-weight: 400;
}

.news-details{
  background-color:#27346A ;
  padding:10px 12px;
  color:#fff;
  border-radius:5px;
  font-size:14px;
  font-weight: 400;
}
.news-details:hover{
  background-color:#27346A ;
  color:#fff;

}

.owl-theme .owl-dots .owl-dot span {
  width: 26px;
  height: 5px;
  margin: 5px 7px;
  background: #d0d6e4;
  border-radius:0;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #08773C;
}








.video img {
  border-radius: 0.5rem;
}

.infoofficer {
  margin-bottom: 1.5rem;
}

.infoofficer h2 {
  margin-bottom: 0.5rem;
}

.infoofficer h3 {
  color: #f04c39;
  margin-bottom: 0;
}

.infoofficer h3 span {
  color: #111;
  font-weight: 400;
}

.infoofficer .infoofficerphoto {
  float: left;
  margin-right: 1rem;
  width: 7rem;
}

.infoofficer .infoofficerphoto img {
  border: 1px solid #ccc;
  padding: 0.25rem;
  border-radius: 0.25rem;
}

.infoofficer .infoofficerdesc {
  float: left;
}

.infoofficer .infoofficerdesc ul {
  margin: 0;
  padding: 0;
}

.infoofficer .infoofficerdesc ul li {
  display: block;
  color: #333;
}

.infoofficer .infoofficerdesc ul li i {
  margin-right: 0.25rem;
}

.infoofficer .infoofficerdesc ul li a {
  color: #333;
}

.reinsurer .card-box {
  margin-bottom: 0;
}

.reinsurer .card-box h2 {
  margin-bottom: 0.5rem;
}

.reinsurer .card-box .reinsurer-list {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.reinsurer .card-box .reinsurer-list a img {
  padding: 0 1.5rem;
}

.testimonials {
  padding-top: 3rem;
}

.testimonials .card-box {
  padding: 2rem 1.5rem 1.5rem 2rem;
  margin-top: 0.75rem;
}

.testimonials .card-box .comma {
  width: 5.5rem !important;
  position: absolute;
  margin-top: -1.5rem;
  margin-left: -1.5rem;
}

.testimonials .card-box .testperson-photo {
  float: left;
  margin-right: 1rem;
  width: 4.5rem;
}

.testimonials .card-box .testperson-photo img {
  border-radius: 50%;
}

.testimonials .card-box .test-name {
  float: left;
}

.testimonials .card-box .test-name h4 {
  font-size: 1.1rem;
  color: #f04c39;
}

.testimonials .card-box .test-name h4 span {
  color: #333;
  font-size: 0.9rem;
}

.paymentpartner .owl-item {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1rem;
  margin-bottom: 0.75rem;
  margin-top: 0.75rem;
  border-radius: 0.25rem;
}

.paymentpartner img {
  height: 40px;
  width: auto !important;
  margin: auto;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.paymentpartner img:hover {
  -webkit-filter: gray;
          filter: gray;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.blockwidget {

 background: #F5F5F5;
 background-attachment: fixed;
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
 position: relative;
 overflow: hidden;
 /* margin-bottom: -3rem;    */
}

.blockwidget h2 {
  color: #f04c39;
}

.blockwidget .helpbox {
  background: #f04c39;
  color: #fff;
  padding: 2rem 2rem 0 5rem;
  border-radius: 0.5rem;
  min-height: 18.2rem;
  font-size: 0.8rem;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
 box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.blockwidget .helpbox i {
  float: left;
  font-size: 2rem;
  margin-left: -3rem;
}

.blockwidget .helpbox h1 {
  color: #fff;
  font-size: 1rem;
}

.blockwidget .helpbox a {
  color: #fff !important;
}

.blockwidget .or {
  position: absolute;
  background: #fff;
  width: 3rem;
  height: 3rem;
  font-size: 1rem;
  font-weight: 600;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 3;
  margin-top: 7rem;
  z-index: 2;
  margin-left: -2.3rem;
}

.blockwidget .or span {
  border: 1px solid #f04c39;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  padding: 0.5rem 0.4rem;
  color: #f04c39;
}

.blockwidget .card-box {
  margin-bottom: 0;
  background: #faa41b;
  color: #fff;
  min-height: 18.2rem;
}

.blockwidget .card-box .btn {
  background: #f04c39;
}

.blockwidget .connectbox {
  min-height: 18.2rem;
}

.blockwidget .connectbox .card-box {
  background: #fff;
  padding-bottom: 1rem;
}

.blockwidget .connectbox .card-box .connectanimated {
  text-align: center;
}

.blockwidget .connectbox .card-box .connectanimated a img {
  width: 13rem;
  margin: auto;
}

.blockwidget iframe {
  width: 100%;
  border-radius: 0.5rem;
}

footer {
  color: #fff;
  border-top:4px solid #08773C;
  background: url(images/footer-bg.png);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 0 !important;
  padding-top: 4rem !important;
  font-size: 0.8rem;
}


footer a {
  color: #fff;
  font-size:15px;
  font-weight: 400;
  line-height:34px;
}



footer .footer-head {
  font-size: 23px;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #fff;
}

.line {
  margin-bottom: 28px;
  border-top: 1px solid #D9D9D9;
  width: 50px;
}

.footer-line{
  border-top: 1px solid #424e83;
  margin-bottom: 25px;
  margin-top: 50px;
  

}

.poweredby{
  float: right;
  font-size:16px;

}
.about-footer{
  margin-right:40px;

}


.about-footer h2{
  color:#ffffff;
  font-size:23px;
  font-weight:600;
}
.about-footer p{
  font-size:15px;
  font-weight: 400;
  line-height:28px;
  padding-bottom: 15px;
}


.social-media li{
  display:inline-block;
}

.social-media li {
  margin-right: 2px;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  margin-bottom: 12px;
  text-align: center;
}
.social-media li a{
  display: inline-block;
  margin-top: 2px;
}
.social-media li a i {
  color: #fff;
  line-height: 2;
  font-size: 18px;
}
.social-media li a:hover{
  opacity: 0.7;
}


.facebook{
  background-color: #1773EA;

}

.twitter{
  background-color: #1C9BE9;

}

.youtube{
  background-color: #F70000;

}

.linked-in {
  background-color: #0C61BF;

}

.pinterest{
  background-color: #E60023;

}

.viber{
  background-color: #59267c;

}

.instagram{
  background-image: linear-gradient(60deg, #ffa74c , #ff6f43, #f04c5b,#c636a7, #a431bf );

}

.tittok{
  background-color: #333333;

}
footer .footer-listing ul li {
 font-size:15px
}


/* footer .footer-logo {
  margin-bottom: 0.5rem;
}

footer .footer-logo img {
  width: 12rem;
}

footer .footer-listing {
  margin-bottom: 1rem;
}

footer .footer-listing ul {
  margin: 0;
  padding: 0;
}

footer .footer-listing ul li {
  list-style-type: none;
  display: block;
  margin-bottom: 0.5rem;
}

footer .footer-listing ul li small {
  opacity: 0.8;
}

footer .bottom-footer {
  background: #0e4e91;
  padding: 0.5rem 0;
  margin-top: 1.5rem;
  color: #fff;
} */

footer .bottom-footer a {
  color: #fff;
}



footer .bottom-footer .social-link {
  margin-top: 0.4rem;
}

footer .bottom-footer .social-link ul {
  margin: 0;
  padding: 0;
}

footer .bottom-footer .social-link ul li {
  display: inline;
  margin-right: 0.5rem;
}

footer .bottom-footer .social-link ul li a i {
  color: #fff;
  border: 1px solid #fff;
  font-size: 0.85rem;
  line-height: 2.3;
  text-align: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

footer .bottom-footer .social-link ul li a i:hover {
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

footer .bottom-footer .lastupdated {
  text-align: center;
}

footer .bottom-footer .copyright {
  margin-top: 0.25rem;
  font-size:15px;
  padding-bottom: 25px;
}


footer .footer-listing .newsletter{
  font-size:16px;
  font-weight: 600;
  margin:25px 0px 6px;
}
#subscription-email-text{
  background-color: #555e89;
  border-radius: 6px;
  margin-right: 10px;
  border:none;
}
.input-group-text {
  color:#fff;
  background-color:#08773C ;
  border:none;
}
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
  color:#fff;
}
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  border-radius: 8px;
}
.input-group input::-webkit-input-placeholder {
  color:#fff !important;
  }
   
  input:-moz-placeholder { /* Firefox 18- */
  color: #fff !important;  
  }
   
  input::-moz-placeholder {  /* Firefox 19+ */
  color: #fff !important;  
  }
   
  input:-ms-input-placeholder {  
  color: #fff !important;  
  }



footer .bottom-footer .poweredby {
  text-align: right;
  font-size: 15px;
}

.inner-content {
  padding: 2rem 0 !important;
  min-height: 25rem;
}

.inner-content h3 {
  color: #27346A;
}

ul.cont-list {
  padding-left: 1.5rem;
}

ul.cont-list li {
  margin-bottom: 0.75rem;
  list-style-type: none;
  position: relative;
}

ul.cont-list li::after {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background: #27346A;
  position: absolute;
  top: 0.5rem;
  left: -1.25rem;
}

.contact-details ul {
  margin: 0;
  padding: 0;
}

.contact-details ul li {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  padding-left: 1.75rem;
}

.contact-details ul li i {
  margin-left: -1.75rem;
  position: absolute;
  margin-top: -5px;
  font-size: 20px
}

.contact-details ul li a {
  color: #333;
}

.contact-details ul li a:hover {
  color: #0e4e91;
}
.branch-btn{
  margin-top: 30px;

}

.branch-block {
  background-color: var(--white);
  display: block;
  color: var(--secondary);
  padding: 15px 15px 15px;
  box-shadow: 0px 2px 15px #07070720;
  margin-bottom: 25px;
  position: relative;
}
.branch-block div {
  font-size: 16px;
  color: #27346A;
  font-weight: 500;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.branch-block li {
  padding-bottom: 5px;
}

.branch-block li a {
  color: #666666;
  font-size: 14px;
}

.branch-block li a:hover {
  color: #27346A;
}

#branches_filter .title{
  padding-bottom: 25px;
}

.contactpage .branch-btn a{
color:white;
}

.branch-block .branchlocation {
  position: absolute;
  top: 20px;
  right: 15px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 50px;
  background: #f3f3f3;
  border-radius: 50px;
}

.branch-block .branchlocation:hover i {
  color:#08773C;
}

.branch-block .branchlocation i {
  font-size:26px;
}




.breadcrumb-wrap {
  padding: 2.5rem 0 2.5rem 0 !important;
  background: #f3f3f3;
  background-image: url(../frontend/images/banner-image.jpg);
  background-position: center center;
}

.breadcrumb-wrap h1 {
  margin-bottom: 0;
}

.side-menu {
  margin-bottom: 2rem;
  background: #f0f0f0;
  border-radius: 0.5rem;
  overflow: hidden;
}

.side-menu ul {
  margin: 0;
  padding: 0;
}

.side-menu ul li {
  display: block;
  border-bottom: 1px solid #ccc;
  margin-bottom: 0;
  font-size: 18px;
}

.side-menu ul li:hover {
  background: #27346A;
}

.side-menu ul li a {
  display: block;
  color: #111;
  padding: 0.75rem 0.5rem 0.75rem 1rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.side-menu ul li a:hover {
  color: #fff;
}

.side-menu ul li a img {
  width: 3.5rem;
  margin-right: 1rem;
}

.side-menu ul li:last-child {
  border-bottom: none;
}

.gridlist .grid {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  background: #fff;
  border-radius: 0.5rem;
}

.gridlist .grid .grid-desc {
  padding: 1.5rem;
}

.gridlist .grid .grid-desc h2 {
  font-size: 1rem;
  color: #000;
  margin-bottom: 0.5rem;
  height: 25px;
  overflow: hidden;

}

.gridlist .grid .grid-desc h2 a {
  color: #000;
  font-size: 18px;
}

.gridlist .grid .grid-desc h2 a:hover {
  color: #27346A;
}

.team .grid img {
  cursor: pointer;
}

.team h2 {
  font-size: 1.1rem !important;
  color: #777 !important;
}

.team h3 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.team .contact-details {
  font-size: 0.85rem;
}

.teampopup img {
  width: 15rem;
  margin-bottom: 1rem;
}

.teampopup .contact-details {
  margin-bottom: 1rem;
}

.downloadtbl a {
  color: #111;
}

.downloadtbl a:hover {
  color: #27346A;
}

.downloadtbl .btn {
  color: #fff;
}

.newslist {
  padding-top: 0;
  background: none;
}

.newslist .product-single {
  margin-top: 25px;
  margin-bottom: 1rem;
}

.newslist .product-single .card-desc h2 {
  margin-bottom: 0 !important;
}

.news-img{
  height: 250px;
  display: block;
}

.services-img{
  height: 250px;
  display: block;

}

.stock-text img{
  border-radius:10px;
}












.contactpage .contact-details ul {
  margin-bottom: 1rem;
}

.contactpage .contact-details ul li {
  margin-bottom: 1rem;
}

.contactpage .contactlocationmap {
  margin-top: 2rem;
}

.networkpoints .networkpoints-filter {
  margin-bottom: 0.5rem;
}

.networkpoints .networkpoints-filter .searchfilter {
  position: absolute;
  right: 1rem;
  top: 0.7rem;
  cursor: pointer;
}

.networkpoints .networkdesc-wrap {
  height: 450px;
  overflow: scroll;
  overflow-x: hidden;
}

.networkpoints .networkdesc-wrap .networkdesc {
  border-bottom: 1px solid #ccc;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  padding-left: 7rem;
  position: relative;
}

.networkpoints .networkdesc-wrap .networkdesc .personphoto {
  width: 6rem;
  position: absolute;
  margin-left: -7rem;
}

.networkpoints .networkdesc-wrap .networkdesc h3 {
  margin-bottom: 0;
  font-size: 1rem;
}

.networkpoints .networkdesc-wrap .networkdesc .contact-details {
  font-size: 0.85rem;
}

.networkpoints .networkdesc-wrap .networkdesc .contact-details ul li {
  margin-bottom: 0.25rem;
}

.search-result ul {
  margin: 0;
  padding: 0;
}

.search-result ul li {
  display: block;
}

.search-result ul li h3 a {
  color: #333;
}

.search-result ul li h3 a:hover {
  color: #0e4e91;
}

.publicnotice .newsdate {
  margin-bottom: 1rem;
}

.gallerylist .card-desc {
  height: 4.5rem !important;
  padding-bottom: 0 !important;
}

.gallerylist .card-desc h2 {
  margin-bottom: 0 !important;
}

.showsidecontent {
  display: none !important;
}

.sticky .showsidecontent {
  /* display: block !important; */
  cursor: pointer;
  font-size: 1.5rem;
  background: #f04c39;
  color: #fff;
  margin-top: -20px;
  border-radius: 0.25rem;
  padding: 0.25rem;
  line-height: 1;
  position: absolute;
}

.sidecontentwrap {
  background: rgba(246, 76, 57, 0.95);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.sidecontentwrap .sidecontent {
  background: #fff;
  width: 24rem;
  right: 0;
  height: 100%;
  position: fixed;
  z-index: 9996;
  padding: 3rem 1rem 1rem 1.5rem;
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.3);
}

.sidecontentwrap .sidecontent .sidecontent-close {
  position: absolute;
  right: 1rem;
  top: 0;
  font-size: 2rem;
  cursor: pointer;
}

.sidecontentwrap .sidecontent .search-field {
  margin-bottom: 2rem;
}

.sidecontentwrap .sidecontent .search-field button {
  background: none;
  float: right;
  color: #666;
  border: none;
  position: absolute;
  right: 1rem;
  padding-top: 0.4rem;
  font-size: 1.4rem;
  cursor: pointer;
}

.bottomicon {
  display: none;
  background: #fff;
  position: fixed;
  bottom: 0;
  text-align: center;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
  font-size: 0.6rem;
}

.bottomicon ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bottomicon ul li {
  display: inline-block;
  margin: 0.5rem;
  line-height: 1.4;
  width: 15%;
}

.bottomicon ul li a {
  color: #111;
}

.bottomicon ul li a img {
  width: 2.5rem;
  opacity: 0.6;
}

.bottomicon ul li a img:hover {
  opacity: 1;
}

/* Top-header-menu */


.top-menu-blue{
  background-color: #27346A;
  height:35px;
  padding-left: 15px;
}

.top-menu-green{
  background-color: #08773C;
  height:35px;
  padding-right: 15px;
  padding-left: 10px;
  padding-top: 7px;
}

.shape-green img{ height: 35px;}
.shape-blue img{ height: 35px;}
.header-topbar{
  position: relative;
}
.header-topbar:before{
  content: '';
  display: block;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  width: 500px;
  background-color: #27346A;
  z-index: -1;
}

header .navik-header .logo img {
  width: auto;
  max-width: inherit;
  max-height: 80px;
  margin-top: -25px;
}

.dropdown-toggle::after {
  color: #27346A;
}

.dropdown-toggle{
  margin-top: 16px;
  border: 1px solid #27346A;
  background-color: #fff;
  color: #27346A;
  padding: 10px 16px;
  border-radius: 6px;

}

.dropdown-toggle-menu{
  margin-top: 12px;
  border: 1px solid #27346A;
  background-color: #27346A;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
}

.sticky.newsticky .dropdown-toggle{
  margin-top: 24px !important;
}
.navik-header.sticky .navik-menu>ul>li>a {
  height: 80px;
  line-height: 93px;
}


.navik-right-btn{
  float:right;
  position: relative;
  display: inline-flex;
  vertical-align: middle; 
}

.application-btn .dropdown-toggle{
  border: 1px solid #27346A;
  background-color: #27346A;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  margin-left: 10px;
}

.application-btn .dropdown-toggle::after {
  color: #fff;
}

.login-btn{
  margin:0 16px 0 15px;
}








/* Leading-stock */
.broking-company{
  color: #ffffff;
  padding: 40px 30px;
}

.broking-company .weare{
  font-size:16px;
  font-weight: 600;
  text-transform: capitalize;
}

.vision-title h2{
  font-size: 38px;
  font-weight: 600;
  line-height: 44px;
  color: #fff;
  padding-right: 50px;
  margin-top: 12px;

}

.broking-company p{
  font-size:16px;
  line-height:26px;
  font-weight: 600;

}


.broking-company p.vision-paragraph-text{
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;

}

.navik-menu.submenu-top-border li>ul {
  box-shadow: 0px 7px 5px 0px rgb(0 0 0 / 5%);
  border-radius: 0 0 5px 5px;
  background: #fff;
}

.navik-menu ul ul li a {
  color: #111;
  background-color: transparent;
}
.navik-menu ul ul li:hover>a {
  color: #08763C;
  background-color: transparent;
}

.home-aboutus{
  background-color: #27346A;
  border-radius: 10px;
  overflow: hidden;
  background-image: url(http://localhost/surya-jyoti/public/frontend/images/aboutbottom.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 320px;
}


.view-btn .btn{
  border:1px solid #ffffff;
  background-color:#27346A;

}

.view-btn .btn:hover{
  border:none;
  background-color:#08773C;
  border:1px solid #08773C;
}

.aboutus-bg{
  position: relative;
}

.aboutus-bg img{
  position: absolute;
  position: absolute;
  display: block;
  width: 56%;
  right:0;
  bottom: 0;
}
/* Leading-stock--end */

/* footer.content-pd{
  padding-top: 5rem;
} */

.navik-menu ul ul li>a {
  font-size: 15px;
}
.btn-white{
  background: none;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  padding: 10px 26px 10px 26px;
  transition: all 0.3s ease 0s;
  color: #fff;
  margin-right: 20px;
  border: 1px solid #e3e3e3;
}
.btn-white:hover,
.btn-white:focus,
.btn-white:active{
  background: rgba(255, 255, 255, 0.103);
}

.sidefixedicon{
  display: none !important;
}

.patternright{
  position: absolute;
  width: 830px;
  top: 0;
  right: -100px;
  z-index: 0;
}
.patternleft{
  position: absolute;
  width: 830px;
  bottom: 0;
  left: -100px;
  z-index: 0;
}
/* Report start */

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: #27346A;
  font-weight: 600;
}




/* Report start ---End */





/* Home-page--- Vision-- securities-- end*/

/* Inner-page-start */

.breadcrumb li a{
  color:#08773C;

}



/* Downloads--start */

.grid .grid-desc a{
  color:#08773C;
}

.grid .grid-desc a i{
  font-size:14px;
}

.modal-title {
  font-weight: 600;
}

.inner-content a{
  color:#27346A; 
}

.inner-content .search-result .btn{
  color:#fff;
}

.inner-content .pd-right .btn{
  color:#fff;
}








/* Downloads--End */


/* Vacancy--start */
.requirements li{
  position: relative;
  padding-left:12px;
  margin-bottom: 5px;
  
}


.Vacancy-text div{
  font-size:18px;
  font-weight: 600;
 
}

ul.requirements li::after {
  content: "";
  display: block;
  background: #08773C;
  position: absolute;
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 4px;
 
}
.vacancy-form a{
  color:#333;
  font-weight: 600;
  font-size:18px;
}
.vacancy-form a:hover{
  color:#27346A;
  ;
}




.sticky .navik-right-btn{
  margin-top: 8px;
}
#accordionExample{
  position: relative;
  z-index: 3;
}

.accordion-body {
  padding: 1rem 1.25rem;
}



/* Vacancy--start--end */



/* Calculator-page--start */

.check-box{
  display: flex;
} 


.active-list {
  background-color:#27346A;
 
}
.side-menu ul li.active-list >a{
 color:#fff;
 
}
.form-group{
  margin-bottom: 25px;

}
.form-box{
 padding-left:40px;
}
.clear-btn{
  background-color:#f0f0f0;
  color:#333;

}

.title p {
  width: 80%;
}
.slideshow .slidecaption h2 {
font-size: 20px;
margin-bottom: 0px;
}
.iconblock {
margin-top: 0px;
padding-top: 40px;
}

.slideshow .slidecaptionwrapper .slidecaption h3 {
font-size: 48px;
}
/* .about-footer{
margin-top: 25px;
} */
.footer-listing{
padding-bottom: 25px;
}
.line {
margin-bottom: 15px;
}





/* Calculator-page--End */



/* Inner-page-End */

.apply-now {
  background: #017f42;
  padding: 13px 10px 15px 10px;
  font-size: 15px;
  color: #fff;
  float: left;
  border-radius: 5px 5px 0 0;
  position: relative;
  left: -106px;
  width: 158px;
  transform: rotate(-90deg);
  box-shadow: 0 0 5px #00000024;
  top: 106px;
  text-align: center;
}
.apply-now:hover{
  color: #fff;
}

.applynow-wrapper {
  width: 30px;
  min-height: 250px;
  transition: width 0.5s, height 1s;
  position: fixed;
  right: -32px;
  z-index: 88;
  top: 130px;
}
.applynow-wrapper:hover {
  width: 300px;
  height: 300px;
}
.applynow-wrapper:after {
  content: "";
  clear: both;
}
.main-block-apply {
  padding: 20px 25px;
  float: left;
  background: white;
  width: 270px;
  min-height: 157px;
  box-shadow: 0 0 10px #0000001c;
}
.main-block-apply ul {
  padding: 0;
  margin: 0;
  float: left;
}
.main-block-apply ul li {
  list-style: none;
}
.main-block-apply ul li a {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: #22262a;
}
.main-block-apply ul li:last-child a {
  margin-bottom: 0;
}
.main-block-apply ul li a:hover {
  color: #017f42;
}
.main-block-apply ul li a span {
  font-size: 13px;
  color: #0c569f;
  animation: blink 1s linear infinite;
  margin-left: 5px;
}

header .header-address ul {
  margin: 0;
  padding: 0;
}

header .header-address ul li {
  display: block;
  padding-left: 2rem;
  float: left;
  margin-right: 3rem;
}

header .header-address ul li i {
  float: left;
  margin-left: -2rem;
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 0.25rem;
}

header .header-address ul li:last-child {
  margin-right: 0;
}

.ill {
  margin-top: 3rem;
  text-align: center;
}

.ill img {
  width: 90%;
}

.side-info {
  position: -webkit-sticky;
  position: sticky;
  top: 5vh;
}

.content-pd {
  padding: 3rem;
  /* min-height: 40rem; */
}

.form-content-pd {
  padding: 0 3rem;
  min-height: 40rem;
  background: url(images/bg.png) no-repeat right top;
  background-size: 50%;
}

footer {
  padding: 1.5rem 3rem;
  margin-top: 3rem;
}

footer a:hover {
  color: #b4bcdf;
}

footer .bottom-footer {
  opacity: 0.8;
}

footer .bottom-footer .copyright {
  float: left;
}

footer .bottom-footer .poweredby {
  float: right;
}

ul.cont-list {
  padding-left: 1.5rem;
}

ul.cont-list li {
  margin-bottom: 0.75rem;
  list-style-type: none;
  position: relative;
}

ul.cont-list li::after {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background: #27346A;
  position: absolute;
  top: 0.5rem;
  left: -1.25rem;
}

.form-content-pd {
  padding: 0 3rem;
  min-height: 40rem;
  background: url(images/bg.png) no-repeat right top;
  background-size: 50%;
}

footer a:hover {
  color: #b4bcdf;
}

footer .bottom-footer {
  opacity: 0.8;
}

footer .bottom-footer .copyright {
  float: left;
}

footer .bottom-footer .poweredby {
  float: right;
}

ul.cont-list {
  padding-left: 1.5rem;
}

ul.cont-list li {
  margin-bottom: 0.75rem;
  list-style-type: none;
  position: relative;
}

.sidebar h1,
.sidebar h2,
.sidebar h3 {
  color: #fff;
}


.form-content-pd {
  padding: 0 3rem;
  min-height: 40rem;
  background: url(images/bg.png) no-repeat right top;
  background-size: 50%;
}

footer {
  padding: 1.5rem 3rem;
  margin-top: 3rem;
}

footer a:hover {
  color: #b4bcdf;
}

footer .bottom-footer {
  opacity: 0.8;
}

footer .bottom-footer .copyright {
  float: left;
}

footer .bottom-footer .poweredby {
  float: right;
}

ul.cont-list {
  padding-left: 1.5rem;
}

ul.cont-list li {
  margin-bottom: 0.75rem;
  list-style-type: none;
  position: relative;
}

ul.cont-list li::after {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background: #27346A;
  position: absolute;
  top: 0.5rem;
  left: -1.25rem;
} 

.sidebar h1,
.sidebar h2,
.sidebar h3 {
  color: #fff;
}






.box {
  background: #fff;
  padding: 30px;
  box-shadow: 0 4px 24px 0 rgb(34 41 47 / 10%);
  margin-bottom: 20px;
  border-radius: 8px;
  margin-bottom: 2rem;

}

/* .ranking-line:after{
  position: absolute;
  content: '';
  border:1px dashed #b9b4b4;
  width: 50%;
  top: 60%;
  right:1rem
} */
/* .ranking-line2:after{
  position: absolute;
  content: '';
  border:1px dashed #b9b4b4;
  width: 50%;
  top: 58%;
  right: 1rem;
} */
.ranking-line3{
  margin-top: -25px;
}

/* .ranking-line3:after{
  position: absolute;
  content: '';
  border:1px dashed #b9b4b4;
  width: 86%;
  right: 2rem;
  top: -7px;
} */

.relation{
  margin-top: -20px;
}

/* .relation:after{
  position: absolute;
  content: '';
  border:1px dashed #b9b4b4;
  width: 25%;
  margin-left: 11px;
  margin-top: 14px;
} */

.instruction{
  margin-top:17px;
}

#details-field{
  border: none;
  outline: none;
  width: 50%;
}
.ranking-line .line-input{
  border: 0;
  border-bottom: 2px dotted #b9b4b4;
  background: none;
  padding: 0px 5px 2px 5px;
  outline: none;
  width: 250px;
  margin-left: 10px;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

table.table.calculator-table th{
 background: none !important;
 color:#333 !important;
 width: 40%;
}

table.table.calculator-table{
  border-bottom:1px solid #DEE2E6 ;
}

table.table.calculator-table tr:nth-child(odd){
  background: #f6f6f6 !important;
}

select option .asterisk{
  color: red !important;
}


/* Vision- Securities- Responsive-- start */

 @media (max-width: 1480px) {
  .slideshow .slidecaptionwrapper .slidecaption{
    top:4rem;
  }
} 
@media (max-width: 1400px) {

  .slideshow .slidecaptionwrapper .slidecaption h3 {
    line-height: 54px;
  }

  .sources-btn .btn {
    left: 40%;

  }

  .banner-text p{
    line-height: 26px;
  }
  footer .footer-head {
    font-size: 22px;
  }

  .services-img {
    height: 220px;
  }
  .ranking-line:after {
    width: 45%;
  }

}

@media (max-width: 1300px) {
  .banner-text p{
    margin-bottom: 15px;
  }
  .services-img {
    height: 210px;
  }
  
  }


@media (max-width: 1200px) {
  .ranking-line:after {
    width: 30%;
  }
  .relation:after {
    width: 20%;
  }
  .ranking-line3:after {
    width: 80%;
  }

  .burger-menu {
    top: 28px;

  }
  .shape-green img{
    display:none;

  }

  .shape-blue img{
    display:none;

  }
  .top-menu-green{
    margin-left: -15px;
  
   }
   .navik-right-btn{
    margin-right: 45px;
    bottom: 5px;
  }

  .card-desc h2 {
    line-height: 20px;
    padding-top: 35px;
    padding-bottom: 32px;
    
  }

  .slideshow .slidecaptionwrapper .slidecaption h3 {
   font-size: 32px;
   line-height: 44px;
   margin-bottom: 6px;
  }
  .banner-text p{
    font-size: 16px;

  }

  .sources-btn .btn {
    left: 50%;
  }
  .banner-text p {
    line-height: 22px;
  }
  .vision-title h2 {
    font-size: 30px;
    line-height: 38px;
  }
  footer .footer-head {
    font-size: 18px;
  }
  .about-footer h2 {
    font-size: 18px;
  }
  .services-img {
    height: 170px;
  }
  .product .product-single img {
    height: 170px; 
  }

  .news-img {
    height: 175px;
  }

@media (max-width: 1100px) {
  .slideshow .slidecaptionwrapper .slidecaption {
    top: 2.5rem;
}

.sources-btn .btn {
  left: 50%;
}
.dropdown-plus {
  right: 36px;
}



}
}


@media (max-width: 1000px) {
  
  .ranking-line3:after {
    width: 74%;
}
.ranking-line:after {
  width: 35%;
  right: 0rem;
}
.relation:after {
  width: 20%;
  right: 4rem;
}

.ranking-line2:after {
  width: 35%;
  right: 0rem;

}
  .burger-menu {
    top: 40px;
  }
  .navik-right-btn {
    bottom: -8px;
  }
  .card-desc h2 {
    font-size: 18px;
    line-height: 28px;
    height: 98px;
    overflow: hidden;

  }
  .card-desc p {
    font-size: 14px;
    line-height: 20px;
  }

  .services-block {
    margin-bottom: 40px;

  }
  .slideshow .slidecaptionwrapper .slidecaption {
    top: 4rem;
    /* padding-left: 50px; */
  }
  .slideshow .slidecaptionwrapper .slidecaption h3 {
    font-size: 29px;
    line-height: 36px;
    margin-bottom: 18px;
  }
  .banner-text p {
    display:none
  }
  .slideshow .slidecaption h2 {
    font-size: 20px;
    margin-bottom: 8px;
  } 
  header .navik-header .logo img{
  margin-top:0;
  }

 .card-box{
  margin-bottom: 36px;

  }
  .title p {
    width: 80%;

  }
  .poweredby{
    float: left;
    margin-bottom: 10px;
  }
  footer .bottom-footer .copyright {
    padding-bottom: 0px; 
  }
  .footer-line {
    margin-bottom: 18px;
    margin-top:0px;
  }
  .footer-listing{
    padding-bottom: 25px;
  }

  .passport{
    padding-top: 20px;
  }

  .identity-card{
    padding-top: 20px;
  }
  .demat{
    padding-top: 20px;

  }

  .services-img {
    height: 162px;
  }

  .services-title {
    font-size: 18px;
  }

  .news-img {
    height: 162px;
  }

  .product .product-single img {
    height: 162px; 
  }


}
@media (max-width: 850px) {
  
 .slideshow .slidecaption h2 {
  font-size: 16px;
  margin-bottom: 0px;
  display: none;
 }
  .services-img {
    height: 150px;
}

}

@media (max-width: 995px) {
  .ranking-line:after {
    width: 45%;
  }
  .relation:after {
    width: 55%;
    right: 8rem;
  }
  .ranking-line2:after {
    width: 50%;
  }

}




@media (max-width: 800px) {
 
  .navik-right-btn {
   margin-right: 0%;
  }
  .navik-right-btn{
    float:none;
  }
  header .navik-header .logo img {
    max-height: 65px; 
  }
  .navik-right-btn {
    bottom: 0px;
  }
  .branch-btn {
    margin-bottom: 25px;

   

    color:#fff;
  } 
  .contactpage  .branch-btn .btn a {
    color:#fff;
  } 
  
  

  .services-img {
    height: 155px;
  }

  }

    

@media (max-width: 770px) {
.ranking-line:after {
    width: 34%;
}
.relation:after {
  width: 44%;
  right: 9rem;
}
.ranking-line3:after {
  width: 70%;
  right: 0rem;
}

.navik-right-btn {
    bottom: 14px;
  }
.navik-right-btn {
    position: absolute;
    right: 50px;
    top: 0px;
}
.burger-menu {
  top: 32px;
}
.slidecaption{
  display: none;
}
.iconblock {
  margin-top: 0px;
  padding: 40px 0 0px 0;
 }
 .title p {
  width: 90%;
}
.title h1 {
  font-size: 32px;
}
.owl-theme .owl-nav.disabled+.owl-dots{
  margin-top: 0;
}

div.dataTables_wrapper div.dataTables_filter { 
  margin-top: -38px;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
  margin-top: -30px;
}

.services-img {
  height: 245px;
}
.product .product-single img {
  height: 140px;
}
.news-img {
  height: 140px;
}

.about-footer{
  margin-top:40px;
}



}

@media (max-width: 700px) {
  .slideshow .slidecaptionwrapper .slidecaption h3 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  .dropdown-plus {
    right: 36px;
  } 
}

@media (max-width: 600px) {
  .services-img {
    height: 245px;
}

}
@media (max-width: 575px) {
  .container,
  .container-fluid,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    width: 100%;
    padding-right: var(--bs-gutter-x, 1.25rem);
    padding-left: var(--bs-gutter-x, 1.25rem);
    margin-right: auto;
    margin-left: auto;
  }

  .product .product-single img {
    height: 240px;
  }

.news-img {
  height: 240px;
} 
.ranking-line:after {
  width: 62%;
  margin-top: 24px;
  left: 1rem;
}
.relation:after {
  width: 50%;
  right: 2rem;
}
.ranking-line2:after {
  width: 63%;
}
.ranking-line2:after {
  width: 58%;
  right: 0rem;
}
.concerned-political {
  margin-top: 22px;
}
.ranking-line3:after {
  width: 62%;
}

}

@media (max-width: 500px) {
  .slideshow .slidecaption h2 {
    font-size: 14px;
  }
  .slideshow .slidecaptionwrapper .slidecaption h3 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 6px;
  }
  .slideshow .slidecaptionwrapper .slidecaption {
    top: 34px;
  }
 .vision-title h2 {
  font-size: 26px;
  line-height: 32px;
  }
  footer .xs{
    width: 50%;
  }
  .title p, .under-line, .card-box p{
    display: none;
  }
  .iconblock .col-xs-12{
    width: 50%;
  }
  .iconblock a.card-box-title{
    line-height: 22px;
    margin-top: 5px;
    display: block;
    font-size: 17px;
    padding-right: 25px;
  }

  .card-desc h2 {
    padding-bottom: 30px;
  }

  .services-img {
    height: 210px;
  }

}

@media (max-width: 480px) {
  .slideshow .btn {
    font-size: 12px;
    padding: 8px 24px 8px 24px;
  } 
  footer .bottom-footer .copyright{
    font-size: 12px;
   
  }
  .poweredby{
    font-size: 12px;
  }
  footer .bottom-footer a {
    font-size: 12px;
  }
  .title h1 {
    font-size: 28px;
  }
  footer a {
    font-size: 14px;

  }
  footer .footer-listing ul li {
    font-size: 14px;
 }
 
  .navik-menu.submenu-top-border li>ul {
   box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 5%);
   border-radius: 0 0 5px 5px;
   background: #fff;
}
 .applynow-wrapper .apply-now {
   padding: 6px 10px 8px 10px;
   font-size: 15px;
   left: -99px;
   top: 99px; 
}
 .applynow-wrapper{
   display: none; 
}
 
}

@media (max-width: 380px) {
  .ranking-line:after {
    width: 84%;
    margin-top: 38px;
  }
  .relation:after {
    width: 45%;
  }
  .ranking-line2:after {
    width: 50%;
  }
  .ranking-line3:after {
    width: 56%;
}

  .slideshow .slidecaptionwrapper .slidecaption {
    top: 16px;
 }
 .slideshow .slidecaptionwrapper .slidecaption h3 {
   font-size: 18px;
   line-height: 20px;
   margin-bottom: 8px;
 }
 .vision-title h2 {
  font-size: 22px;
  line-height: 28px;
 }

 
 .form-control {
  margin-left:0px;
 }
}





/* Vision- Securities- Responsive-- End*/



/* Form---CSS */

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #0267b4;
  line-height: 1.4;
  margin-top: 0;
}

.btn i {
  font-size: 1rem;
}


.btn:hover {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #fff !important;
}

.btn-border {
  color: #0267b4;
  border: 1px solid #0267b4;
  background: none;
}

.btn-border:hover {
  background: #0267b4;
  color: #fff;
}

.card-box {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
 box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2.5rem;
  background: #fff;
  border-radius: 0.5rem;
}

.clear {
  clear: both;
}

.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb li {
  margin-bottom: 1rem !important;
}

p {
  margin-bottom: 1.5rem;
}

img {
  width: 100%;
}

.mgb1 {
  margin-bottom: 1rem;
}

.pdb0 {
  padding-bottom: 0 !important;
}

.pdt0 {
  padding-top: 0 !important;
}

.pd-right {
  padding-right: 2rem;
}

.pd-left {
  padding-left: 2rem;
}

.positionrelative {
  position: relative;
}

.form-control {
  font-size: 0.9rem;
  padding: 14px 25px;

}

textarea.form-control {
  min-height: calc(7em + 0.75rem + 2px);
}

.form-select {
  height: calc(2.75rem + 9px);
  padding: 1rem;
  font-size: 0.9rem;
}

.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(2.75rem + 8px);
  padding: 1rem;
  border-radius: 0.35rem;
}

.form-floating > label {
  padding: 0.75rem 1rem;
  color: #333;
}

.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
  color: #333;
}

.form-control[type="file"] {
  font-size: 0.9rem;
}

.hasDatepicker::-webkit-input-placeholder {
  opacity: 1 !important;
  color: #333 !important;
}

.hasDatepicker:-ms-input-placeholder {
  opacity: 1 !important;
  color: #333 !important;
}

.hasDatepicker::-ms-input-placeholder {
  opacity: 1 !important;
  color: #333 !important;
}

.hasDatepicker::placeholder {
  opacity: 1 !important;
  color: #333 !important;
}

.radio-input {
  visibility: hidden;
  display: none;
}

.radio-label {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  margin-right: 1.5rem;
}

.radio-label:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 5px;
  top: 5px;
  border-radius: 50%;
}

.radio-border {
  width: 24px;
  height: 24px;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  left: -2px;
  top: -2px;
  border: 1px solid #999;
}

.radio-input:checked + .radio-label:after {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #38af83;
}

.form-check {
  padding-left: 3em;
  margin-bottom: 1rem;
}

.form-check-input {
  width: 1.25em;
  height: 1.25em;
}

.form-check .form-check-input {
  margin-left: -2em;
}

.form-check-input[type="checkbox"] {
  border-radius: 0.2em;
} 


.block-bg {
  background: linear-gradient(-45deg, #1f976b, #02a8b4);
  background-size: 400% 400%;
  -webkit-animation: gradient 5s ease infinite;
   animation: gradient 5s ease infinite;
  padding: 3rem !important;
  color: #fff;
}

.block-bg h1,
.block-bg h3,
.block-bg a {
  color: #fff;
}

.block-bg h3 {
  margin-bottom: 0;
  font-size: 1rem;
}



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

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


.sidebar h1,
.sidebar h2,
.sidebar h3 {
  color: #fff;
} */

.main-block-apply {
  padding: 20px 25px;
  float: left;
  background: white;
  width: 270px;
  min-height: 157px;
  box-shadow: 0 0 10px #0000001c;
}
.main-block-apply ul {
  padding: 0;
  margin: 0;
  float: left;
}
.main-block-apply ul li {
  list-style: none;
}
.main-block-apply ul li a {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: #22262a;
}
.main-block-apply ul li:last-child a {
  margin-bottom: 0;
}
.main-block-apply ul li a:hover {
  color: #017f42;
}
.main-block-apply ul li a span {
  font-size: 13px;
  color: #0c569f;
  animation: blink 1s linear infinite;
  margin-left: 5px;
}
.needs-validation input, 
.needs-validation select,
#formFile {
  background-color: #f9f9f9;
}


@media (max-width: 1200px) {
  .content-pd {
    padding: 2rem 0;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 15px;
  }
  .mob-br {
    margin-bottom: 1.5rem;
  }
  header {
    padding: 0rem;
  }
  header .header-address {
    float: left;
  }
  footer {
    padding: 1rem 0;
  }
  .form-content-pd {
    padding: 0 2rem;
  }
  .block-bg {
    padding: 2rem !important;
  }
  .iconblock {
    margin-top: 0rem;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .pd-left {
    padding-left: 1rem;
  }
  .pd-right {
    padding-right: 1rem;
  }
  .mob-none {
    display: none;
  }
  header .header-address ul li {
    margin-bottom: 0.5rem;
  }
  footer .bottom-footer .poweredby {
    float: left;
  }
  .form-content-pd {
    padding: 1.5rem 1rem;
  }
  .sidebar {
    padding: 1rem;
  }

  .dataTables_info{
    text-align: left;
  }

  .dataTables_length{
    text-align: left;

  }
}
/*# sourceMappingURL=main.css.map */











@media (min-width: 1680px) {
  .overview {
    padding: 9rem 0 10rem 0;
  }
  .mobileapp .mobileappdownload {
    margin-top: 2.5rem;
  }
  .mobileapp .mobileappdownload h3 {
    margin-bottom: 1.5rem;
  }
  .mobileapp .mobileappdownload .qrcode {
    margin-top: 1rem;
  }
  .mobileapp .mobileappdownload .qrcode img {
    margin-bottom: 2rem;
  }
  .mobileapp .mobileappdownload .appcount {
    margin-top: 1.5rem;
  }
  .mobileapp .appfeatures ul li {
    margin: 0 1.65rem;
  }
}

@media (max-width: 1368px) {
  .mobileapp .appfeatures ul li {
    margin: 0 1.15rem;
  }
}

@media (max-width: 1280px) {
  .overview {
    padding: 4rem 0 5.5rem 0;
  }
  .mobileapp .appfeatures ul li {
    margin: 0 1.1rem;
  }
}


@media (max-width: 991px) {
  html {
    font-size: 15px;
  }
  .mob-br {
    margin-bottom: 1.5rem;
  }
  .overview {
    background: none;
  }
  header .header-topbar .top-menu {
    margin-bottom: 1rem;
  }
  header .header-topbar .header-right {
    display: block;
    margin-left: 1rem;
    margin-bottom: 0;
    float: left;
  }
  .iconblock .col-lg-2 {
    width: 50%;
  }
  .reinsurer .card-box .reinsurer-list a img {
    padding: 0 0.25rem;
  }
}


@media (max-width: 980px) {
  .copyright,
  footer .bottom-footer .poweredby { width: 100%; text-align: center; font-size: 14px !important;}
  footer .bottom-footer a{ font-size: 14px !important;}
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .pd-left {
    padding-left: 1rem;
  }
  .pd-right {
    padding-right: 1rem;
  }
  .mob-none {
    display: none;
  }
  .card-box {
    padding: 1.5rem;
  }
  .content-pd {
    padding: 2rem 0;
  }
  .top-menu ul li {
    margin-right: 1rem !important;
  }
  .ceomessage .col-md-4 {
    text-align: center;
  }
  .ceomessage .col-md-4 img {
    background: #fff;
    width: 10rem;
    border-radius: 0.5rem;
    margin: auto;
    margin-bottom: 1rem;
    padding: 0.5rem;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
     box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  }
  .overview .overview-details .col-md-3 {
    width: 50%;
  }
  .overview .overview-details .col-md-3 h2 {
    font-size: 1.5rem;
  }
  .infoofficer .infoofficerphoto {
    width: 5rem;
    margin-bottom: 0.5rem;
  }
  .mobileapp .mobileappdownload {
    margin-top: 0;
  }
  .mobileapp .mobileappdownload .qrcode img {
    margin-bottom: 0;
  }
  .mobileapp .appfeatures {
    margin-top: 0;
  }
  .mobileapp .appfeatures ul li {
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
    width: 32%;
  }
  .blockwidget .helpbox {
    padding: 2rem 1rem 1rem 5rem;
    min-height: auto;
  }
  .blockwidget .helpbox i {
    font-size: 2rem;
    margin-left: -3.5rem;
  }
  .blockwidget .or {
    display: none;
  }
  footer {
    padding-top: 0 !important;
  }
  footer .bottom-footer {
    margin-top: 1rem;
    /* margin-bottom: 4.5rem; */
    padding-bottom: 1rem;
  }
  footer .bottom-footer .copyright {
    float: none;
    width: 100%;
  }
  footer .bottom-footer .lastupdated {
    text-align: left;
  }
  footer .bottom-footer .poweredby {
    text-align: center;
  }
  .newsticky {
    position: fixed !important;
    top: 0;
  }
  .gridlist .grid .grid-desc {
    padding: 1rem;
  }
  .bottomicon {
    display: block;
    padding: 0 0.5rem;
  }
}
@media (max-width: 575px) {
  .container,
  .container-fluid,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    width: 100%;
    padding-right: var(--bs-gutter-x, 1.25rem);
    padding-left: var(--bs-gutter-x, 1.25rem);
    margin-right: auto;
    margin-left: auto;
  }
}
/*# sourceMappingURL=main.css.map */








